2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
10 #include <afsconfig.h>
11 #include <afs/param.h>
15 #include <security/pam_appl.h>
16 #include <security/pam_modules.h>
18 #include <afs/sys_prototypes.h>
19 #include <afs/kautils.h>
21 #include "afs_message.h"
22 #include "afs_pam_msg.h"
27 #define RET(x) { retcode = (x); goto out; }
29 #if defined(AFS_KERBEROS_ENV)
30 extern char *ktc_tkt_string(void);
34 pam_sm_setcred(pam_handle_t
* pamh
, int flags
, int argc
, const char **argv
)
36 int retcode
= PAM_SUCCESS
;
37 int errcode
= PAM_SUCCESS
;
39 int logmask
= LOG_UPTO(LOG_INFO
);
41 int use_first_pass
= 1; /* use the password passed in by auth */
42 int try_first_pass
= 0;
44 uid_t ignore_uid_id
= 0;
45 int refresh_token
= 0;
46 int set_expires
= 0; /* the default is to not to set the env variable */
49 PAM_CONST
struct pam_conv
*pam_convp
= NULL
;
50 char my_password_buf
[256];
51 char *cell_ptr
= NULL
;
53 char *torch_password
= NULL
;
55 PAM_CONST
char *user
= NULL
;
56 const char *password
= NULL
;
57 int password_expires
= -1;
59 struct passwd
*upwd
= NULL
;
60 #if !(defined(AFS_LINUX20_ENV) || defined(AFS_FBSD_ENV) || defined(AFS_DFBSD_ENV) || defined(AFS_NBSD_ENV))
61 char upwd_buf
[2048]; /* size is a guess. */
62 struct passwd unix_pwd
;
66 openlog(pam_afs_ident
, LOG_CONS
, LOG_AUTH
);
68 origmask
= setlogmask(logmask
);
71 * Parse the user options. Log an error for any unknown options.
73 for (i
= 0; i
< argc
; i
++) {
74 if (strcasecmp(argv
[i
], "debug") == 0) {
75 logmask
|= LOG_MASK(LOG_DEBUG
);
76 (void)setlogmask(logmask
);
77 } else if (strcasecmp(argv
[i
], "nowarn") == 0) {
79 } else if (strcasecmp(argv
[i
], "use_first_pass") == 0) {
80 use_first_pass
= 1; /* practically redundant */
81 } else if (strcasecmp(argv
[i
], "try_first_pass") == 0) {
83 } else if (strcasecmp(argv
[i
], "ignore_root") == 0) {
86 } else if (strcasecmp(argv
[i
], "ignore_uid") == 0) {
89 pam_afs_syslog(LOG_ERR
, PAMAFS_IGNOREUID
,
90 "ignore_uid missing argument");
94 ignore_uid_id
= (uid_t
) strtol(argv
[i
], NULL
, 10);
95 if (ignore_uid_id
> IGNORE_MAX
) {
97 pam_afs_syslog(LOG_ERR
, PAMAFS_IGNOREUID
, argv
[i
]);
100 } else if (strcasecmp(argv
[i
], "cell") == 0) {
103 pam_afs_syslog(LOG_ERR
, PAMAFS_OTHERCELL
,
104 "cell missing argument");
106 cell_ptr
= (char *)argv
[i
];
107 pam_afs_syslog(LOG_INFO
, PAMAFS_OTHERCELL
, cell_ptr
);
109 } else if (strcasecmp(argv
[i
], "no_unlog") == 0) {
111 } else if (strcasecmp(argv
[i
], "refresh_token") == 0) {
113 } else if (strcasecmp(argv
[i
], "set_token") == 0) {
115 } else if (strcasecmp(argv
[i
], "dont_fork") == 0) {
117 } else if (strcasecmp(argv
[i
], "use_klog") == 0) {
119 } else if (strcasecmp(argv
[i
], "setenv_password_expires") == 0) {
122 pam_afs_syslog(LOG_ERR
, PAMAFS_UNKNOWNOPT
, argv
[i
]);
129 if (logmask
& LOG_MASK(LOG_DEBUG
))
130 pam_afs_syslog(LOG_DEBUG
, PAMAFS_OPTIONS
, nowarn
, use_first_pass
,
131 try_first_pass
, ignore_uid
, ignore_uid_id
, 8, 8, 8, 8);
132 /* Try to get the user-interaction info, if available. */
133 errcode
= pam_get_item(pamh
, PAM_CONV
, (PAM_CONST
void **)&pam_convp
);
134 if (errcode
!= PAM_SUCCESS
) {
135 if (logmask
& LOG_MASK(LOG_DEBUG
))
136 pam_afs_syslog(LOG_DEBUG
, PAMAFS_NO_USER_INT
);
140 /* Who are we trying to authenticate here? */
142 pam_get_user(pamh
, (PAM_CONST
char **)&user
,
143 "AFS username:")) != PAM_SUCCESS
) {
144 pam_afs_syslog(LOG_ERR
, PAMAFS_NOUSER
, errcode
);
145 RET(PAM_USER_UNKNOWN
);
148 * If the user has a "local" (or via nss, possibly nss_dce) pwent,
149 * and its uid==0, and "ignore_root" was given in pam.conf,
152 /* enhanced: use "ignore_uid <number>" to specify the largest uid
153 * which should be ignored by this module
155 #if defined(AFS_HPUX_ENV) || defined(AFS_DARWIN100_ENV) || defined(AFS_SUN5_ENV)
156 #if defined(AFS_HPUX110_ENV) || defined(AFS_DARWIN100_ENV) || defined(AFS_SUN5_ENV)
157 i
= getpwnam_r(user
, &unix_pwd
, upwd_buf
, sizeof(upwd_buf
), &upwd
);
158 #else /* AFS_HPUX110_ENV */
159 i
= getpwnam_r(user
, &unix_pwd
, upwd_buf
, sizeof(upwd_buf
));
160 if (i
== 0) /* getpwnam_r success */
162 #endif /* AFS_HPUX110_ENV */
163 if (ignore_uid
&& i
== 0 && upwd
&& upwd
->pw_uid
<= ignore_uid_id
) {
164 pam_afs_syslog(LOG_INFO
, PAMAFS_IGNORINGROOT
, user
);
168 #if defined(AFS_LINUX20_ENV) || defined(AFS_FBSD_ENV) || defined(AFS_DFBSD_ENV) || defined(AFS_NBSD_ENV)
169 upwd
= getpwnam(user
);
171 upwd
= getpwnam_r(user
, &unix_pwd
, upwd_buf
, sizeof(upwd_buf
));
173 if (ignore_uid
&& upwd
!= NULL
&& upwd
->pw_uid
<= ignore_uid_id
) {
174 pam_afs_syslog(LOG_INFO
, PAMAFS_IGNORINGROOT
, user
);
179 if (flags
& PAM_DELETE_CRED
) {
180 if (logmask
& LOG_MASK(LOG_DEBUG
))
181 pam_afs_syslog(LOG_DEBUG
, PAMAFS_DELCRED
, user
);
184 } else if (flags
& PAM_REINITIALIZE_CRED
) {
186 if (logmask
& LOG_MASK(LOG_DEBUG
))
187 pam_afs_syslog(LOG_DEBUG
, PAMAFS_REINITCRED
, user
);
190 } else { /* flags are PAM_REFRESH_CRED, PAM_ESTABLISH_CRED, unknown */
192 if (logmask
& LOG_MASK(LOG_DEBUG
))
193 pam_afs_syslog(LOG_DEBUG
, PAMAFS_ESTABCRED
, user
);
195 errcode
= pam_get_data(pamh
, pam_afs_lh
, (const void **)&password
);
196 if (errcode
!= PAM_SUCCESS
|| password
== NULL
) {
197 if (use_first_pass
) {
198 pam_afs_syslog(LOG_ERR
, PAMAFS_PASSWD_REQ
, user
);
201 password
= NULL
; /* In case it isn't already NULL */
202 if (logmask
& LOG_MASK(LOG_DEBUG
))
203 pam_afs_syslog(LOG_DEBUG
, PAMAFS_NOFIRSTPASS
, user
);
204 } else if (password
[0] == '\0') {
205 /* Actually we *did* get one but it was empty. */
206 /* So don't use it. */
208 if (use_first_pass
) {
209 pam_afs_syslog(LOG_ERR
, PAMAFS_PASSWD_REQ
, user
);
210 RET(PAM_NEW_AUTHTOK_REQD
);
212 if (logmask
& LOG_MASK(LOG_DEBUG
))
213 pam_afs_syslog(LOG_DEBUG
, PAMAFS_NILPASSWORD
, user
);
215 if (logmask
& LOG_MASK(LOG_DEBUG
))
216 pam_afs_syslog(LOG_DEBUG
, PAMAFS_GOTPASS
, user
);
218 if (!(use_first_pass
|| try_first_pass
)) {
223 if (password
== NULL
) {
224 char *prompt_password
;
227 RET(PAM_AUTH_ERR
); /* shouldn't happen */
229 try_first_pass
= 0; /* we come back if try_first_pass==1 below */
231 if (pam_convp
== NULL
|| pam_convp
->conv
== NULL
) {
232 pam_afs_syslog(LOG_ERR
, PAMAFS_CANNOT_PROMPT
);
237 pam_afs_prompt(pam_convp
, &prompt_password
, 0, PAMAFS_PWD_PROMPT
);
238 if (errcode
!= PAM_SUCCESS
|| prompt_password
== NULL
) {
239 pam_afs_syslog(LOG_ERR
, PAMAFS_GETPASS_FAILED
);
242 if (prompt_password
[0] == '\0') {
243 if (logmask
& LOG_MASK(LOG_DEBUG
))
244 pam_afs_syslog(LOG_DEBUG
, PAMAFS_NILPASSWORD
);
245 RET(PAM_NEW_AUTHTOK_REQD
);
248 * We aren't going to free the password later (we will wipe it,
249 * though), because the storage for it if we get it from other
250 * paths may belong to someone else. Since we do need to free
251 * this storage, copy it to a buffer that won't need to be freed
252 * later, and free this storage now.
255 strncpy(my_password_buf
, prompt_password
, sizeof(my_password_buf
));
256 my_password_buf
[sizeof(my_password_buf
) - 1] = '\0';
257 memset(prompt_password
, 0, strlen(prompt_password
));
258 free(prompt_password
);
259 password
= torch_password
= my_password_buf
;
262 * We only set a PAG here, if we haven't got one before in
263 * pam_sm_authenticate() or if it was destroyed by the application
265 if ((!refresh_token
) && (getPAG() == -1)) {
266 if (logmask
& LOG_MASK(LOG_DEBUG
))
267 syslog(LOG_DEBUG
, "New PAG created in pam_setcred()");
269 #ifdef AFS_KERBEROS_ENV
274 if (flags
& PAM_REFRESH_CRED
) {
276 auth_ok
= !do_klog(user
, password
, "00:00:01", cell_ptr
);
277 ktc_ForgetAllTokens();
279 if (ka_VerifyUserPassword(KA_USERAUTH_VERSION
, (char *)user
, /* kerberos name */
281 cell_ptr
, /* realm */
282 (char*)password
, /* password */
284 &reason
/* error string */
286 pam_afs_syslog(LOG_ERR
, PAMAFS_LOGIN_FAILED
, user
,
294 if (flags
& PAM_ESTABLISH_CRED
) {
296 auth_ok
= !do_klog(user
, password
, NULL
, cell_ptr
);
298 if (ka_UserAuthenticateGeneral(KA_USERAUTH_VERSION
, (char *)user
, /* kerberos name */
300 cell_ptr
, /* realm */
301 (char*)password
, /* password */
302 0, /* default lifetime */
303 &password_expires
, 0, /* spare 2 */
304 &reason
/* error string */
306 pam_afs_syslog(LOG_ERR
, PAMAFS_LOGIN_FAILED
, user
,
314 if (!auth_ok
&& try_first_pass
) {
319 /* pam_sm_authenticate should have set this
320 * if (auth_ok && !got_authtok) {
321 * torch_password = NULL;
322 * (void) pam_set_item(pamh, PAM_AUTHTOK, password);
327 if (set_expires
&& !use_klog
&& (password_expires
>= 0)) {
328 strcpy(sbuffer
, "PASSWORD_EXPIRES=");
329 strcat(sbuffer
, cv2string(&sbuffer
[100], password_expires
));
330 errcode
= pam_putenv(pamh
, sbuffer
);
331 if (errcode
!= PAM_SUCCESS
)
332 pam_afs_syslog(LOG_ERR
, PAMAFS_PASSEXPFAIL
, user
);
334 #if defined(AFS_KERBEROS_ENV)
336 if (chown(ktc_tkt_string(), upwd
->pw_uid
, upwd
->pw_gid
) < 0)
337 pam_afs_syslog(LOG_ERR
, PAMAFS_CHOWNKRB
, user
);
338 sprintf(sbuffer
, "KRBTKFILE=%s", ktc_tkt_string());
339 errcode
= pam_putenv(pamh
, sbuffer
);
340 if (errcode
!= PAM_SUCCESS
)
341 pam_afs_syslog(LOG_ERR
, PAMAFS_KRBFAIL
, user
);
352 if (password
&& torch_password
)
353 memset(torch_password
, 0, strlen(torch_password
));
354 (void)setlogmask(origmask
);