r23704: Add pam_pwd_expire feature as discussed on samba-technical.
[Samba.git] / source3 / nsswitch / pam_winbind.c
blob836822a8a9b4d818c3e47dc27f8b57fbeef42ecb
1 /* pam_winbind module
3 Copyright Andrew Tridgell <tridge@samba.org> 2000
4 Copyright Tim Potter <tpot@samba.org> 2000
5 Copyright Andrew Bartlett <abartlet@samba.org> 2002
6 Copyright Guenther Deschner <gd@samba.org> 2005-2007
8 largely based on pam_userdb by Cristian Gafton <gafton@redhat.com>
9 also contains large slabs of code from pam_unix by Elliot Lee <sopwith@redhat.com>
10 (see copyright below for full details)
13 #include "pam_winbind.h"
15 #define _PAM_LOG_FUNCTION_ENTER(function, pamh, ctrl, flags) \
16 do { \
17 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] ENTER: " function " (flags: 0x%04x)", (uint32) pamh, flags); \
18 _pam_log_state(pamh, ctrl); \
19 } while (0)
21 #define _PAM_LOG_FUNCTION_LEAVE(function, pamh, ctrl, retval) \
22 do { \
23 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] LEAVE: " function " returning %d", (uint32) pamh, retval); \
24 _pam_log_state(pamh, ctrl); \
25 } while (0)
27 /* data tokens */
29 #define MAX_PASSWD_TRIES 3
32 * Work around the pam API that has functions with void ** as parameters.
33 * These lead to strict aliasing warnings with gcc.
35 static int _pam_get_item(const pam_handle_t *pamh, int item_type,
36 const void *_item)
38 const void **item = (const void **)_item;
39 return pam_get_item(pamh, item_type, item);
41 static int _pam_get_data(const pam_handle_t *pamh,
42 const char *module_data_name, const void *_data)
44 const void **data = (const void **)_data;
45 return pam_get_data(pamh, module_data_name, data);
48 /* some syslogging */
50 #ifdef HAVE_PAM_VSYSLOG
51 static void _pam_log_int(const pam_handle_t *pamh, int err, const char *format, va_list args)
53 pam_vsyslog(pamh, err, format, args);
55 #else
56 static void _pam_log_int(const pam_handle_t *pamh, int err, const char *format, va_list args)
58 char *format2 = NULL;
59 const char *service;
61 _pam_get_item(pamh, PAM_SERVICE, &service);
63 format2 = malloc(strlen(MODULE_NAME)+strlen(format)+strlen(service)+5);
64 if (format2 == NULL) {
65 /* what else todo ? */
66 vsyslog(err, format, args);
67 return;
70 sprintf(format2, "%s(%s): %s", MODULE_NAME, service, format);
71 vsyslog(err, format2, args);
72 SAFE_FREE(format2);
74 #endif /* HAVE_PAM_VSYSLOG */
76 static BOOL _pam_log_is_silent(int ctrl)
78 return on(ctrl, WINBIND_SILENT);
81 static void _pam_log(const pam_handle_t *pamh, int ctrl, int err, const char *format, ...) PRINTF_ATTRIBUTE(4,5);
82 static void _pam_log(const pam_handle_t *pamh, int ctrl, int err, const char *format, ...)
84 va_list args;
86 if (_pam_log_is_silent(ctrl)) {
87 return;
90 va_start(args, format);
91 _pam_log_int(pamh, err, format, args);
92 va_end(args);
95 static BOOL _pam_log_is_debug_enabled(int ctrl)
97 if (ctrl == -1) {
98 return False;
101 if (_pam_log_is_silent(ctrl)) {
102 return False;
105 if (!(ctrl & WINBIND_DEBUG_ARG)) {
106 return False;
109 return True;
112 static BOOL _pam_log_is_debug_state_enabled(int ctrl)
114 if (!(ctrl & WINBIND_DEBUG_STATE)) {
115 return False;
118 return _pam_log_is_debug_enabled(ctrl);
121 static void _pam_log_debug(const pam_handle_t *pamh, int ctrl, int err, const char *format, ...) PRINTF_ATTRIBUTE(4,5);
122 static void _pam_log_debug(const pam_handle_t *pamh, int ctrl, int err, const char *format, ...)
124 va_list args;
126 if (!_pam_log_is_debug_enabled(ctrl)) {
127 return;
130 va_start(args, format);
131 _pam_log_int(pamh, err, format, args);
132 va_end(args);
135 static void _pam_log_state_datum(const pam_handle_t *pamh, int ctrl, int item_type, const char *key, int is_string)
137 const void *data = NULL;
138 if (item_type != 0) {
139 pam_get_item(pamh, item_type, &data);
140 } else {
141 pam_get_data(pamh, key, &data);
143 if (data != NULL) {
144 const char *type = (item_type != 0) ? "ITEM" : "DATA";
145 if (is_string != 0) {
146 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] STATE: %s(%s) = \"%s\" (0x%08x)", (uint32) pamh, type, key, (const char *) data, (uint32) data);
147 } else {
148 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] STATE: %s(%s) = 0x%08x", (uint32) pamh, type, key, (uint32) data);
153 #define _PAM_LOG_STATE_DATA_POINTER(pamh, ctrl, module_data_name) \
154 _pam_log_state_datum(pamh, ctrl, 0, module_data_name, 0)
156 #define _PAM_LOG_STATE_DATA_STRING(pamh, ctrl, module_data_name) \
157 _pam_log_state_datum(pamh, ctrl, 0, module_data_name, 1)
159 #define _PAM_LOG_STATE_ITEM_POINTER(pamh, ctrl, item_type) \
160 _pam_log_state_datum(pamh, ctrl, item_type, #item_type, 0)
162 #define _PAM_LOG_STATE_ITEM_STRING(pamh, ctrl, item_type) \
163 _pam_log_state_datum(pamh, ctrl, item_type, #item_type, 1)
165 #ifdef DEBUG_PASSWORD
166 #define _LOG_PASSWORD_AS_STRING 1
167 #else
168 #define _LOG_PASSWORD_AS_STRING 0
169 #endif
171 #define _PAM_LOG_STATE_ITEM_PASSWORD(pamh, ctrl, item_type) \
172 _pam_log_state_datum(pamh, ctrl, item_type, #item_type, _LOG_PASSWORD_AS_STRING)
174 static void _pam_log_state(const pam_handle_t *pamh, int ctrl)
176 if (!_pam_log_is_debug_state_enabled(ctrl)) {
177 return;
180 _PAM_LOG_STATE_ITEM_STRING(pamh, ctrl, PAM_SERVICE);
181 _PAM_LOG_STATE_ITEM_STRING(pamh, ctrl, PAM_USER);
182 _PAM_LOG_STATE_ITEM_STRING(pamh, ctrl, PAM_TTY);
183 _PAM_LOG_STATE_ITEM_STRING(pamh, ctrl, PAM_RHOST);
184 _PAM_LOG_STATE_ITEM_STRING(pamh, ctrl, PAM_RUSER);
185 _PAM_LOG_STATE_ITEM_PASSWORD(pamh, ctrl, PAM_OLDAUTHTOK);
186 _PAM_LOG_STATE_ITEM_PASSWORD(pamh, ctrl, PAM_AUTHTOK);
187 _PAM_LOG_STATE_ITEM_STRING(pamh, ctrl, PAM_USER_PROMPT);
188 _PAM_LOG_STATE_ITEM_POINTER(pamh, ctrl, PAM_CONV);
189 #ifdef PAM_FAIL_DELAY
190 _PAM_LOG_STATE_ITEM_POINTER(pamh, ctrl, PAM_FAIL_DELAY);
191 #endif
192 #ifdef PAM_REPOSITORY
193 _PAM_LOG_STATE_ITEM_POINTER(pamh, ctrl, PAM_REPOSITORY);
194 #endif
196 _PAM_LOG_STATE_DATA_STRING(pamh, ctrl, PAM_WINBIND_HOMEDIR);
197 _PAM_LOG_STATE_DATA_STRING(pamh, ctrl, PAM_WINBIND_LOGONSCRIPT);
198 _PAM_LOG_STATE_DATA_STRING(pamh, ctrl, PAM_WINBIND_LOGONSERVER);
199 _PAM_LOG_STATE_DATA_STRING(pamh, ctrl, PAM_WINBIND_PROFILEPATH);
200 _PAM_LOG_STATE_DATA_STRING(pamh, ctrl, PAM_WINBIND_NEW_AUTHTOK_REQD); /* Use atoi to get PAM result code */
201 _PAM_LOG_STATE_DATA_STRING(pamh, ctrl, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH);
202 _PAM_LOG_STATE_DATA_POINTER(pamh, ctrl, PAM_WINBIND_PWD_LAST_SET);
205 static int _pam_parse(const pam_handle_t *pamh, int flags, int argc, const char **argv, dictionary **result_d)
207 int ctrl = 0;
208 const char *config_file = NULL;
209 int i;
210 const char **v;
211 dictionary *d = NULL;
213 if (flags & PAM_SILENT) {
214 ctrl |= WINBIND_SILENT;
217 for (i=argc,v=argv; i-- > 0; ++v) {
218 if (!strncasecmp(*v, "config", strlen("config"))) {
219 ctrl |= WINBIND_CONFIG_FILE;
220 config_file = v[i];
221 break;
225 if (config_file == NULL) {
226 config_file = PAM_WINBIND_CONFIG_FILE;
229 d = iniparser_load(config_file);
230 if (d == NULL) {
231 goto config_from_pam;
234 if (iniparser_getboolean(d, "global:debug", False)) {
235 ctrl |= WINBIND_DEBUG_ARG;
238 if (iniparser_getboolean(d, "global:debug_state", False)) {
239 ctrl |= WINBIND_DEBUG_STATE;
242 if (iniparser_getboolean(d, "global:cached_login", False)) {
243 ctrl |= WINBIND_CACHED_LOGIN;
246 if (iniparser_getboolean(d, "global:krb5_auth", False)) {
247 ctrl |= WINBIND_KRB5_AUTH;
250 if (iniparser_getboolean(d, "global:silent", False)) {
251 ctrl |= WINBIND_SILENT;
254 if (iniparser_getstr(d, "global:krb5_ccache_type") != NULL) {
255 ctrl |= WINBIND_KRB5_CCACHE_TYPE;
258 if ((iniparser_getstr(d, "global:require-membership-of") != NULL) ||
259 (iniparser_getstr(d, "global:require_membership_of") != NULL)) {
260 ctrl |= WINBIND_REQUIRED_MEMBERSHIP;
263 if (iniparser_getboolean(d, "global:try_first_pass", False)) {
264 ctrl |= WINBIND_TRY_FIRST_PASS_ARG;
267 config_from_pam:
268 /* step through arguments */
269 for (i=argc,v=argv; i-- > 0; ++v) {
271 /* generic options */
272 if (!strcmp(*v,"debug"))
273 ctrl |= WINBIND_DEBUG_ARG;
274 else if (!strcasecmp(*v, "debug_state"))
275 ctrl |= WINBIND_DEBUG_STATE;
276 else if (!strcasecmp(*v, "silent"))
277 ctrl |= WINBIND_SILENT;
278 else if (!strcasecmp(*v, "use_authtok"))
279 ctrl |= WINBIND_USE_AUTHTOK_ARG;
280 else if (!strcasecmp(*v, "use_first_pass"))
281 ctrl |= WINBIND_USE_FIRST_PASS_ARG;
282 else if (!strcasecmp(*v, "try_first_pass"))
283 ctrl |= WINBIND_TRY_FIRST_PASS_ARG;
284 else if (!strcasecmp(*v, "unknown_ok"))
285 ctrl |= WINBIND_UNKNOWN_OK_ARG;
286 else if (!strncasecmp(*v, "require_membership_of", strlen("require_membership_of")))
287 ctrl |= WINBIND_REQUIRED_MEMBERSHIP;
288 else if (!strncasecmp(*v, "require-membership-of", strlen("require-membership-of")))
289 ctrl |= WINBIND_REQUIRED_MEMBERSHIP;
290 else if (!strcasecmp(*v, "krb5_auth"))
291 ctrl |= WINBIND_KRB5_AUTH;
292 else if (!strncasecmp(*v, "krb5_ccache_type", strlen("krb5_ccache_type")))
293 ctrl |= WINBIND_KRB5_CCACHE_TYPE;
294 else if (!strcasecmp(*v, "cached_login"))
295 ctrl |= WINBIND_CACHED_LOGIN;
296 else {
297 _pam_log(pamh, ctrl, LOG_ERR, "pam_parse: unknown option: %s", *v);
298 return -1;
303 if (result_d) {
304 *result_d = d;
305 } else {
306 if (d) {
307 iniparser_freedict(d);
311 return ctrl;
314 static void _pam_winbind_cleanup_func(pam_handle_t *pamh, void *data, int error_status)
316 int ctrl = _pam_parse(pamh, 0, 0, NULL, NULL);
317 if (_pam_log_is_debug_state_enabled(ctrl)) {
318 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "[pamh: 0x%08x] CLEAN: cleaning up PAM data 0x%08x (error_status = %d)", (uint32) pamh, (uint32) data, error_status);
320 SAFE_FREE(data);
324 static const struct ntstatus_errors {
325 const char *ntstatus_string;
326 const char *error_string;
327 } ntstatus_errors[] = {
328 {"NT_STATUS_OK", "Success"},
329 {"NT_STATUS_BACKUP_CONTROLLER", "No primary Domain Controler available"},
330 {"NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND", "No domain controllers found"},
331 {"NT_STATUS_NO_LOGON_SERVERS", "No logon servers"},
332 {"NT_STATUS_PWD_TOO_SHORT", "Password too short"},
333 {"NT_STATUS_PWD_TOO_RECENT", "The password of this user is too recent to change"},
334 {"NT_STATUS_PWD_HISTORY_CONFLICT", "Password is already in password history"},
335 {"NT_STATUS_PASSWORD_EXPIRED", "Your password has expired"},
336 {"NT_STATUS_PASSWORD_MUST_CHANGE", "You need to change your password now"},
337 {"NT_STATUS_INVALID_WORKSTATION", "You are not allowed to logon from this workstation"},
338 {"NT_STATUS_INVALID_LOGON_HOURS", "You are not allowed to logon at this time"},
339 {"NT_STATUS_ACCOUNT_EXPIRED", "Your account has expired. Please contact your System administrator"}, /* SCNR */
340 {"NT_STATUS_ACCOUNT_DISABLED", "Your account is disabled. Please contact your System administrator"}, /* SCNR */
341 {"NT_STATUS_ACCOUNT_LOCKED_OUT", "Your account has been locked. Please contact your System administrator"}, /* SCNR */
342 {"NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT", "Invalid Trust Account"},
343 {"NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT", "Invalid Trust Account"},
344 {"NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT", "Invalid Trust Account"},
345 {"NT_STATUS_ACCESS_DENIED", "Access is denied"},
346 {NULL, NULL}
349 const char *_get_ntstatus_error_string(const char *nt_status_string)
351 int i;
352 for (i=0; ntstatus_errors[i].ntstatus_string != NULL; i++) {
353 if (!strcasecmp(ntstatus_errors[i].ntstatus_string, nt_status_string)) {
354 return ntstatus_errors[i].error_string;
357 return NULL;
360 /* --- authentication management functions --- */
362 /* Attempt a conversation */
364 static int converse(pam_handle_t *pamh, int nargs,
365 struct pam_message **message,
366 struct pam_response **response)
368 int retval;
369 struct pam_conv *conv;
371 retval = _pam_get_item(pamh, PAM_CONV, &conv );
372 if (retval == PAM_SUCCESS) {
373 retval = conv->conv(nargs, (const struct pam_message **)message,
374 response, conv->appdata_ptr);
377 return retval; /* propagate error status */
381 static int _make_remark(pam_handle_t * pamh, int flags, int type, const char *text)
383 int retval = PAM_SUCCESS;
385 struct pam_message *pmsg[1], msg[1];
386 struct pam_response *resp;
388 if (flags & WINBIND_SILENT) {
389 return PAM_SUCCESS;
392 pmsg[0] = &msg[0];
393 msg[0].msg = CONST_DISCARD(char *, text);
394 msg[0].msg_style = type;
396 resp = NULL;
397 retval = converse(pamh, 1, pmsg, &resp);
399 if (resp) {
400 _pam_drop_reply(resp, 1);
402 return retval;
405 static int _make_remark_v(pam_handle_t * pamh, int flags, int type, const char *format, va_list args)
407 char *var;
408 int ret;
410 ret = vasprintf(&var, format, args);
411 if (ret < 0) {
412 _pam_log(pamh, 0, LOG_ERR, "memory allocation failure");
413 return ret;
416 ret = _make_remark(pamh, flags, type, var);
417 SAFE_FREE(var);
418 return ret;
421 static int _make_remark_format(pam_handle_t * pamh, int flags, int type, const char *format, ...) PRINTF_ATTRIBUTE(4,5);
422 static int _make_remark_format(pam_handle_t * pamh, int flags, int type, const char *format, ...)
424 int ret;
425 va_list args;
427 va_start(args, format);
428 ret = _make_remark_v(pamh, flags, type, format, args);
429 va_end(args);
430 return ret;
433 static int pam_winbind_request(pam_handle_t * pamh, int ctrl,
434 enum winbindd_cmd req_type,
435 struct winbindd_request *request,
436 struct winbindd_response *response)
438 /* Fill in request and send down pipe */
439 init_request(request, req_type);
441 if (write_sock(request, sizeof(*request), 0, 0) == -1) {
442 _pam_log(pamh, ctrl, LOG_ERR, "pam_winbind_request: write to socket failed!");
443 close_sock();
444 return PAM_SERVICE_ERR;
447 /* Wait for reply */
448 if (read_reply(response) == -1) {
449 _pam_log(pamh, ctrl, LOG_ERR, "pam_winbind_request: read from socket failed!");
450 close_sock();
451 return PAM_SERVICE_ERR;
454 /* We are done with the socket - close it and avoid mischeif */
455 close_sock();
457 /* Copy reply data from socket */
458 if (response->result == WINBINDD_OK) {
459 return PAM_SUCCESS;
462 /* no need to check for pam_error codes for getpwnam() */
463 switch (req_type) {
465 case WINBINDD_GETPWNAM:
466 case WINBINDD_LOOKUPNAME:
467 if (strlen(response->data.auth.nt_status_string) > 0) {
468 _pam_log(pamh, ctrl, LOG_ERR, "request failed, NT error was %s",
469 response->data.auth.nt_status_string);
470 } else {
471 _pam_log(pamh, ctrl, LOG_ERR, "request failed");
473 return PAM_USER_UNKNOWN;
474 default:
475 break;
478 if (response->data.auth.pam_error != PAM_SUCCESS) {
479 _pam_log(pamh, ctrl, LOG_ERR, "request failed: %s, PAM error was %s (%d), NT error was %s",
480 response->data.auth.error_string,
481 pam_strerror(pamh, response->data.auth.pam_error),
482 response->data.auth.pam_error,
483 response->data.auth.nt_status_string);
484 return response->data.auth.pam_error;
487 _pam_log(pamh, ctrl, LOG_ERR, "request failed, but PAM error 0!");
489 return PAM_SERVICE_ERR;
492 static int pam_winbind_request_log(pam_handle_t * pamh,
493 int ctrl,
494 enum winbindd_cmd req_type,
495 struct winbindd_request *request,
496 struct winbindd_response *response,
497 const char *user)
499 int retval;
501 retval = pam_winbind_request(pamh, ctrl, req_type, request, response);
503 switch (retval) {
504 case PAM_AUTH_ERR:
505 /* incorrect password */
506 _pam_log(pamh, ctrl, LOG_WARNING, "user '%s' denied access (incorrect password or invalid membership)", user);
507 return retval;
508 case PAM_ACCT_EXPIRED:
509 /* account expired */
510 _pam_log(pamh, ctrl, LOG_WARNING, "user '%s' account expired", user);
511 return retval;
512 case PAM_AUTHTOK_EXPIRED:
513 /* password expired */
514 _pam_log(pamh, ctrl, LOG_WARNING, "user '%s' password expired", user);
515 return retval;
516 case PAM_NEW_AUTHTOK_REQD:
517 /* new password required */
518 _pam_log(pamh, ctrl, LOG_WARNING, "user '%s' new password required", user);
519 return retval;
520 case PAM_USER_UNKNOWN:
521 /* the user does not exist */
522 _pam_log_debug(pamh, ctrl, LOG_NOTICE, "user '%s' not found", user);
523 if (ctrl & WINBIND_UNKNOWN_OK_ARG) {
524 return PAM_IGNORE;
526 return retval;
527 case PAM_SUCCESS:
528 /* Otherwise, the authentication looked good */
529 switch (req_type) {
530 case WINBINDD_INFO:
531 break;
532 case WINBINDD_PAM_AUTH:
533 _pam_log(pamh, ctrl, LOG_NOTICE, "user '%s' granted access", user);
534 break;
535 case WINBINDD_PAM_CHAUTHTOK:
536 _pam_log(pamh, ctrl, LOG_NOTICE, "user '%s' password changed", user);
537 break;
538 default:
539 _pam_log(pamh, ctrl, LOG_NOTICE, "user '%s' OK", user);
540 break;
543 return retval;
544 default:
545 /* we don't know anything about this return value */
546 _pam_log(pamh, ctrl, LOG_ERR, "internal module error (retval = %d, user = '%s')",
547 retval, user);
548 return retval;
553 * send a password expiry message if required
555 * @param pamh PAM handle
556 * @param ctrl PAM winbind options.
557 * @param next_change expected (calculated) next expiry date.
558 * @param already_expired pointer to a boolean to indicate if the password is
559 * already expired.
561 * @return boolean Returns True if message has been sent, False if not.
564 static BOOL _pam_send_password_expiry_message(pam_handle_t *pamh,
565 int ctrl,
566 time_t next_change,
567 time_t now,
568 int warn_pwd_expire,
569 BOOL *already_expired)
571 int days = 0;
572 struct tm tm_now, tm_next_change;
574 if (already_expired) {
575 *already_expired = False;
578 if (next_change <= now) {
579 PAM_WB_REMARK_DIRECT(pamh, ctrl, "NT_STATUS_PASSWORD_EXPIRED");
580 if (already_expired) {
581 *already_expired = True;
583 return True;
586 if ((next_change < 0) ||
587 (next_change > now + warn_pwd_expire * SECONDS_PER_DAY)) {
588 return False;
591 if ((localtime_r(&now, &tm_now) == NULL) ||
592 (localtime_r(&next_change, &tm_next_change) == NULL)) {
593 return False;
596 days = (tm_next_change.tm_yday+tm_next_change.tm_year*365) - (tm_now.tm_yday+tm_now.tm_year*365);
598 if (days == 0) {
599 _make_remark(pamh, ctrl, PAM_TEXT_INFO, "Your password expires today");
600 return True;
603 if (days > 0 && days < warn_pwd_expire) {
604 _make_remark_format(pamh, ctrl, PAM_TEXT_INFO, "Your password will expire in %d %s",
605 days, (days > 1) ? "days":"day");
606 return True;
609 return False;
613 * Send a warning if the password expires in the near future
615 * @param pamh PAM handle
616 * @param ctrl PAM winbind options.
617 * @param response The full authentication response structure.
618 * @param already_expired boolean, is the pwd already expired?
620 * @return void.
623 static void _pam_warn_password_expiry(pam_handle_t *pamh,
624 int flags,
625 const struct winbindd_response *response,
626 int warn_pwd_expire,
627 BOOL *already_expired)
629 time_t now = time(NULL);
630 time_t next_change = 0;
632 if (already_expired) {
633 *already_expired = False;
636 /* accounts with ACB_PWNOEXP set never receive a warning */
637 if (response->data.auth.info3.acct_flags & ACB_PWNOEXP) {
638 return;
641 /* no point in sending a warning if this is a grace logon */
642 if (PAM_WB_GRACE_LOGON(response->data.auth.info3.user_flgs)) {
643 return;
646 /* check if the info3 must change timestamp has been set */
647 next_change = response->data.auth.info3.pass_must_change_time;
649 if (_pam_send_password_expiry_message(pamh, flags, next_change, now,
650 warn_pwd_expire,
651 already_expired)) {
652 return;
655 /* now check for the global password policy */
656 /* good catch from Ralf Haferkamp: an expiry of "never" is translated
657 * to -1 */
658 if (response->data.auth.policy.expire <= 0) {
659 return;
662 next_change = response->data.auth.info3.pass_last_set_time +
663 response->data.auth.policy.expire;
665 if (_pam_send_password_expiry_message(pamh, flags, next_change, now,
666 warn_pwd_expire,
667 already_expired)) {
668 return;
671 /* no warning sent */
674 #define IS_SID_STRING(name) (strncmp("S-", name, 2) == 0)
676 static BOOL safe_append_string(char *dest,
677 const char *src,
678 int dest_buffer_size)
680 * Append a string, making sure not to overflow and to always return a NULL-terminated
681 * string.
683 * @param dest Destination string buffer (must already be NULL-terminated).
684 * @param src Source string buffer.
685 * @param dest_buffer_size Size of dest buffer in bytes.
687 * @return False if dest buffer is not big enough (no bytes copied), True on success.
690 int dest_length = strlen(dest);
691 int src_length = strlen(src);
693 if ( dest_length + src_length + 1 > dest_buffer_size ) {
694 return False;
697 memcpy(dest + dest_length, src, src_length + 1);
698 return True;
701 static BOOL winbind_name_to_sid_string(pam_handle_t *pamh,
702 int ctrl,
703 const char *user,
704 const char *name,
705 char *sid_list_buffer,
706 int sid_list_buffer_size)
708 * Convert a names into a SID string, appending it to a buffer.
710 * @param pamh PAM handle
711 * @param ctrl PAM winbind options.
712 * @param user User in PAM request.
713 * @param name Name to convert.
714 * @param sid_list_buffer Where to append the string sid.
715 * @param sid_list_buffer Size of sid_list_buffer (in bytes).
717 * @return False on failure, True on success.
720 const char* sid_string;
721 struct winbindd_response sid_response;
723 /* lookup name? */
724 if (IS_SID_STRING(name)) {
725 sid_string = name;
726 } else {
727 struct winbindd_request sid_request;
729 ZERO_STRUCT(sid_request);
730 ZERO_STRUCT(sid_response);
732 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "no sid given, looking up: %s\n", name);
734 /* fortunatly winbindd can handle non-separated names */
735 strncpy(sid_request.data.name.name, name,
736 sizeof(sid_request.data.name.name) - 1);
738 if (pam_winbind_request_log(pamh, ctrl, WINBINDD_LOOKUPNAME, &sid_request, &sid_response, user)) {
739 _pam_log(pamh, ctrl, LOG_INFO, "could not lookup name: %s\n", name);
740 return False;
743 sid_string = sid_response.data.sid.sid;
746 if (!safe_append_string(sid_list_buffer, sid_string, sid_list_buffer_size)) {
747 return False;
750 return True;
753 static BOOL winbind_name_list_to_sid_string_list(pam_handle_t *pamh,
754 int ctrl,
755 const char *user,
756 const char *name_list,
757 char *sid_list_buffer,
758 int sid_list_buffer_size)
760 * Convert a list of names into a list of sids.
762 * @param pamh PAM handle
763 * @param ctrl PAM winbind options.
764 * @param user User in PAM request.
765 * @param name_list List of names or string sids, separated by commas.
766 * @param sid_list_buffer Where to put the list of string sids.
767 * @param sid_list_buffer Size of sid_list_buffer (in bytes).
769 * @return False on failure, True on success.
772 BOOL result = False;
773 char *current_name = NULL;
774 const char *search_location;
775 const char *comma;
777 if ( sid_list_buffer_size > 0 ) {
778 sid_list_buffer[0] = 0;
781 search_location = name_list;
782 while ( (comma = strstr(search_location, ",")) != NULL ) {
783 current_name = strndup(search_location, comma - search_location);
784 if (NULL == current_name) {
785 goto out;
788 if (!winbind_name_to_sid_string(pamh, ctrl, user, current_name, sid_list_buffer, sid_list_buffer_size)) {
789 goto out;
792 SAFE_FREE(current_name);
794 if (!safe_append_string(sid_list_buffer, ",", sid_list_buffer_size)) {
795 goto out;
798 search_location = comma + 1;
801 if (!winbind_name_to_sid_string(pamh, ctrl, user, search_location, sid_list_buffer, sid_list_buffer_size)) {
802 goto out;
805 result = True;
807 out:
808 SAFE_FREE(current_name);
809 return result;
813 * put krb5ccname variable into environment
815 * @param pamh PAM handle
816 * @param ctrl PAM winbind options.
817 * @param krb5ccname env variable retrieved from winbindd.
819 * @return void.
822 static void _pam_setup_krb5_env(pam_handle_t *pamh, int ctrl, const char *krb5ccname)
824 char var[PATH_MAX];
825 int ret;
827 if (off(ctrl, WINBIND_KRB5_AUTH)) {
828 return;
831 if (!krb5ccname || (strlen(krb5ccname) == 0)) {
832 return;
835 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "request returned KRB5CCNAME: %s", krb5ccname);
837 if (snprintf(var, sizeof(var), "KRB5CCNAME=%s", krb5ccname) == -1) {
838 return;
841 ret = pam_putenv(pamh, var);
842 if (ret) {
843 _pam_log(pamh, ctrl, LOG_ERR, "failed to set KRB5CCNAME to %s: %s",
844 var, pam_strerror(pamh, ret));
849 * Set string into the PAM stack.
851 * @param pamh PAM handle
852 * @param ctrl PAM winbind options.
853 * @param data_name Key name for pam_set_data.
854 * @param value String value.
856 * @return void.
859 static void _pam_set_data_string(pam_handle_t *pamh, int ctrl, const char *data_name, const char *value)
861 int ret;
863 if ( !data_name || !value || (strlen(data_name) == 0) || (strlen(value) == 0) ) {
864 return;
867 ret = pam_set_data(pamh, data_name, (void *)strdup(value), _pam_winbind_cleanup_func);
868 if (ret) {
869 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "Could not set data %s: %s\n",
870 data_name, pam_strerror(pamh, ret));
876 * Set info3 strings into the PAM stack.
878 * @param pamh PAM handle
879 * @param ctrl PAM winbind options.
880 * @param data_name Key name for pam_set_data.
881 * @param value String value.
883 * @return void.
886 static void _pam_set_data_info3(pam_handle_t *pamh, int ctrl, struct winbindd_response *response)
888 _pam_set_data_string(pamh, ctrl, PAM_WINBIND_HOMEDIR, response->data.auth.info3.home_dir);
889 _pam_set_data_string(pamh, ctrl, PAM_WINBIND_LOGONSCRIPT, response->data.auth.info3.logon_script);
890 _pam_set_data_string(pamh, ctrl, PAM_WINBIND_LOGONSERVER, response->data.auth.info3.logon_srv);
891 _pam_set_data_string(pamh, ctrl, PAM_WINBIND_PROFILEPATH, response->data.auth.info3.profile_path);
895 * Free info3 strings in the PAM stack.
897 * @param pamh PAM handle
899 * @return void.
902 static void _pam_free_data_info3(pam_handle_t *pamh)
904 pam_set_data(pamh, PAM_WINBIND_HOMEDIR, NULL, NULL);
905 pam_set_data(pamh, PAM_WINBIND_LOGONSCRIPT, NULL, NULL);
906 pam_set_data(pamh, PAM_WINBIND_LOGONSERVER, NULL, NULL);
907 pam_set_data(pamh, PAM_WINBIND_PROFILEPATH, NULL, NULL);
911 * Send PAM_ERROR_MSG for cached or grace logons.
913 * @param pamh PAM handle
914 * @param ctrl PAM winbind options.
915 * @param username User in PAM request.
916 * @param info3_user_flgs Info3 flags containing logon type bits.
918 * @return void.
921 static void _pam_warn_logon_type(pam_handle_t *pamh, int ctrl, const char *username, uint32 info3_user_flgs)
923 /* inform about logon type */
924 if (PAM_WB_GRACE_LOGON(info3_user_flgs)) {
926 _make_remark(pamh, ctrl, PAM_ERROR_MSG,
927 "Grace login. Please change your password as soon you're online again");
928 _pam_log_debug(pamh, ctrl, LOG_DEBUG,
929 "User %s logged on using grace logon\n", username);
931 } else if (PAM_WB_CACHED_LOGON(info3_user_flgs)) {
933 _make_remark(pamh, ctrl, PAM_ERROR_MSG,
934 "Domain Controller unreachable, using cached credentials instead. Network resources may be unavailable");
935 _pam_log_debug(pamh, ctrl, LOG_DEBUG,
936 "User %s logged on using cached credentials\n", username);
941 * Send PAM_ERROR_MSG for krb5 errors.
943 * @param pamh PAM handle
944 * @param ctrl PAM winbind options.
945 * @param username User in PAM request.
946 * @param info3_user_flgs Info3 flags containing logon type bits.
948 * @return void.
951 static void _pam_warn_krb5_failure(pam_handle_t *pamh, int ctrl, const char *username, uint32 info3_user_flgs)
953 if (PAM_WB_KRB5_CLOCK_SKEW(info3_user_flgs)) {
954 _make_remark(pamh, ctrl, PAM_ERROR_MSG,
955 "Failed to establish your Kerberos Ticket cache "
956 "due time differences\n"
957 "with the domain controller. "
958 "Please verify the system time.\n");
959 _pam_log_debug(pamh, ctrl, LOG_DEBUG,
960 "User %s: Clock skew when getting Krb5 TGT\n", username);
965 * Compose Password Restriction String for a PAM_ERROR_MSG conversation.
967 * @param response The struct winbindd_response.
969 * @return string (caller needs to free).
972 static char *_pam_compose_pwd_restriction_string(struct winbindd_response *response)
974 char *str = NULL;
975 size_t offset = 0, ret = 0, str_size = 1024;
977 str = (char *)malloc(str_size);
978 if (!str) {
979 return NULL;
982 memset(str, '\0', str_size);
984 offset = snprintf(str, str_size, "Your password ");
985 if (offset == -1) {
986 goto failed;
989 if (response->data.auth.policy.min_length_password > 0) {
990 ret = snprintf(str+offset, str_size-offset,
991 "must be at least %d characters; ",
992 response->data.auth.policy.min_length_password);
993 if (ret == -1) {
994 goto failed;
996 offset += ret;
999 if (response->data.auth.policy.password_history > 0) {
1000 ret = snprintf(str+offset, str_size-offset,
1001 "cannot repeat any of your previous %d passwords; ",
1002 response->data.auth.policy.password_history);
1003 if (ret == -1) {
1004 goto failed;
1006 offset += ret;
1009 if (response->data.auth.policy.password_properties & DOMAIN_PASSWORD_COMPLEX) {
1010 ret = snprintf(str+offset, str_size-offset,
1011 "must contain capitals, numerals or punctuation; "
1012 "and cannot contain your account or full name; ");
1013 if (ret == -1) {
1014 goto failed;
1016 offset += ret;
1019 ret = snprintf(str+offset, str_size-offset,
1020 "Please type a different password. "
1021 "Type a password which meets these requirements in both text boxes.");
1022 if (ret == -1) {
1023 goto failed;
1026 return str;
1028 failed:
1029 SAFE_FREE(str);
1030 return NULL;
1033 /* talk to winbindd */
1034 static int winbind_auth_request(pam_handle_t * pamh,
1035 int ctrl,
1036 const char *user,
1037 const char *pass,
1038 const char *member,
1039 const char *cctype,
1040 const int warn_pwd_expire,
1041 struct winbindd_response *p_response,
1042 time_t *pwd_last_set,
1043 char **user_ret)
1045 struct winbindd_request request;
1046 struct winbindd_response response;
1047 int ret;
1048 BOOL already_expired = False;
1050 ZERO_STRUCT(request);
1051 ZERO_STRUCT(response);
1053 if (pwd_last_set) {
1054 *pwd_last_set = 0;
1057 strncpy(request.data.auth.user, user,
1058 sizeof(request.data.auth.user)-1);
1060 strncpy(request.data.auth.pass, pass,
1061 sizeof(request.data.auth.pass)-1);
1063 request.data.auth.krb5_cc_type[0] = '\0';
1064 request.data.auth.uid = -1;
1066 request.flags = WBFLAG_PAM_INFO3_TEXT | WBFLAG_PAM_CONTACT_TRUSTDOM;
1068 if (ctrl & (WINBIND_KRB5_AUTH|WINBIND_CACHED_LOGIN)) {
1069 struct passwd *pwd = NULL;
1071 pwd = getpwnam(user);
1072 if (pwd == NULL) {
1073 return PAM_USER_UNKNOWN;
1075 request.data.auth.uid = pwd->pw_uid;
1078 if (ctrl & WINBIND_KRB5_AUTH) {
1080 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "enabling krb5 login flag\n");
1082 request.flags |= WBFLAG_PAM_KRB5 | WBFLAG_PAM_FALLBACK_AFTER_KRB5;
1085 if (ctrl & WINBIND_CACHED_LOGIN) {
1086 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "enabling cached login flag\n");
1087 request.flags |= WBFLAG_PAM_CACHED_LOGIN;
1090 if (user_ret) {
1091 *user_ret = NULL;
1092 request.flags |= WBFLAG_PAM_UNIX_NAME;
1095 if (cctype != NULL) {
1096 strncpy(request.data.auth.krb5_cc_type, cctype,
1097 sizeof(request.data.auth.krb5_cc_type) - 1);
1098 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "enabling request for a %s krb5 ccache\n", cctype);
1101 request.data.auth.require_membership_of_sid[0] = '\0';
1103 if (member != NULL) {
1105 if (!winbind_name_list_to_sid_string_list(pamh, ctrl, user, member,
1106 request.data.auth.require_membership_of_sid,
1107 sizeof(request.data.auth.require_membership_of_sid))) {
1109 _pam_log_debug(pamh, ctrl, LOG_ERR, "failed to serialize membership of sid \"%s\"\n", member);
1110 return PAM_AUTH_ERR;
1114 ret = pam_winbind_request_log(pamh, ctrl, WINBINDD_PAM_AUTH, &request, &response, user);
1116 if (pwd_last_set) {
1117 *pwd_last_set = response.data.auth.info3.pass_last_set_time;
1120 if (p_response) {
1121 /* We want to process the response in the caller. */
1122 *p_response = response;
1123 return ret;
1126 if (ret) {
1127 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_PASSWORD_EXPIRED");
1128 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_PASSWORD_MUST_CHANGE");
1129 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_INVALID_WORKSTATION");
1130 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_INVALID_LOGON_HOURS");
1131 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_ACCOUNT_EXPIRED");
1132 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_ACCOUNT_DISABLED");
1133 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_ACCOUNT_LOCKED_OUT");
1134 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT");
1135 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT");
1136 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT");
1137 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND");
1138 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_NO_LOGON_SERVERS");
1139 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_WRONG_PASSWORD");
1140 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_ACCESS_DENIED");
1143 if (ret == PAM_SUCCESS) {
1145 /* warn a user if the password is about to expire soon */
1146 _pam_warn_password_expiry(pamh, ctrl, &response,
1147 warn_pwd_expire,
1148 &already_expired);
1150 if (already_expired == True) {
1151 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "Password has expired "
1152 "(Password was last set: %lld, the policy says "
1153 "it should expire here %lld (now it's: %lu))\n",
1154 response.data.auth.info3.pass_last_set_time,
1155 response.data.auth.info3.pass_last_set_time +
1156 response.data.auth.policy.expire,
1157 time(NULL));
1159 return PAM_AUTHTOK_EXPIRED;
1162 /* inform about logon type */
1163 _pam_warn_logon_type(pamh, ctrl, user, response.data.auth.info3.user_flgs);
1165 /* inform about krb5 failures */
1166 _pam_warn_krb5_failure(pamh, ctrl, user, response.data.auth.info3.user_flgs);
1168 /* set some info3 info for other modules in the stack */
1169 _pam_set_data_info3(pamh, ctrl, &response);
1171 /* put krb5ccname into env */
1172 _pam_setup_krb5_env(pamh, ctrl, response.data.auth.krb5ccname);
1174 /* If winbindd returned a username, return the pointer to it here. */
1175 if (user_ret && response.extra_data.data) {
1176 /* We have to trust it's a null terminated string. */
1177 *user_ret = (char *)response.extra_data.data;
1181 return ret;
1184 /* talk to winbindd */
1185 static int winbind_chauthtok_request(pam_handle_t * pamh,
1186 int ctrl,
1187 const char *user,
1188 const char *oldpass,
1189 const char *newpass,
1190 time_t pwd_last_set)
1192 struct winbindd_request request;
1193 struct winbindd_response response;
1194 int ret;
1196 ZERO_STRUCT(request);
1197 ZERO_STRUCT(response);
1199 if (request.data.chauthtok.user == NULL) return -2;
1201 strncpy(request.data.chauthtok.user, user,
1202 sizeof(request.data.chauthtok.user) - 1);
1204 if (oldpass != NULL) {
1205 strncpy(request.data.chauthtok.oldpass, oldpass,
1206 sizeof(request.data.chauthtok.oldpass) - 1);
1207 } else {
1208 request.data.chauthtok.oldpass[0] = '\0';
1211 if (newpass != NULL) {
1212 strncpy(request.data.chauthtok.newpass, newpass,
1213 sizeof(request.data.chauthtok.newpass) - 1);
1214 } else {
1215 request.data.chauthtok.newpass[0] = '\0';
1218 if (ctrl & WINBIND_KRB5_AUTH) {
1219 request.flags = WBFLAG_PAM_KRB5 | WBFLAG_PAM_CONTACT_TRUSTDOM;
1222 ret = pam_winbind_request_log(pamh, ctrl, WINBINDD_PAM_CHAUTHTOK, &request, &response, user);
1224 if (ret == PAM_SUCCESS) {
1225 return ret;
1228 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_BACKUP_CONTROLLER");
1229 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND");
1230 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_NO_LOGON_SERVERS");
1231 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_ACCESS_DENIED");
1233 /* TODO: tell the min pwd length ? */
1234 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_PWD_TOO_SHORT");
1236 /* TODO: tell the minage ? */
1237 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_PWD_TOO_RECENT");
1239 /* TODO: tell the history length ? */
1240 PAM_WB_REMARK_CHECK_RESPONSE_RET(pamh, ctrl, response, "NT_STATUS_PWD_HISTORY_CONFLICT");
1242 if (!strcasecmp(response.data.auth.nt_status_string, "NT_STATUS_PASSWORD_RESTRICTION")) {
1244 char *pwd_restriction_string = NULL;
1246 /* FIXME: avoid to send multiple PAM messages after another */
1247 switch (response.data.auth.reject_reason) {
1248 case -1:
1249 break;
1250 case REJECT_REASON_OTHER:
1251 if ((response.data.auth.policy.min_passwordage > 0) &&
1252 (pwd_last_set + response.data.auth.policy.min_passwordage > time(NULL))) {
1253 PAM_WB_REMARK_DIRECT(pamh, ctrl, "NT_STATUS_PWD_TOO_RECENT");
1255 break;
1256 case REJECT_REASON_TOO_SHORT:
1257 PAM_WB_REMARK_DIRECT(pamh, ctrl, "NT_STATUS_PWD_TOO_SHORT");
1258 break;
1259 case REJECT_REASON_IN_HISTORY:
1260 PAM_WB_REMARK_DIRECT(pamh, ctrl, "NT_STATUS_PWD_HISTORY_CONFLICT");
1261 break;
1262 case REJECT_REASON_NOT_COMPLEX:
1263 _make_remark(pamh, ctrl, PAM_ERROR_MSG, "Password does not meet complexity requirements");
1264 break;
1265 default:
1266 _pam_log_debug(pamh, ctrl, LOG_DEBUG,
1267 "unknown password change reject reason: %d",
1268 response.data.auth.reject_reason);
1269 break;
1272 pwd_restriction_string = _pam_compose_pwd_restriction_string(&response);
1273 if (pwd_restriction_string) {
1274 _make_remark(pamh, ctrl, PAM_ERROR_MSG, pwd_restriction_string);
1275 SAFE_FREE(pwd_restriction_string);
1279 return ret;
1283 * Checks if a user has an account
1285 * return values:
1286 * 1 = User not found
1287 * 0 = OK
1288 * -1 = System error
1290 static int valid_user(pam_handle_t *pamh, int ctrl, const char *user)
1292 /* check not only if the user is available over NSS calls, also make
1293 * sure it's really a winbind user, this is important when stacking PAM
1294 * modules in the 'account' or 'password' facility. */
1296 struct passwd *pwd = NULL;
1297 struct winbindd_request request;
1298 struct winbindd_response response;
1299 int ret;
1301 ZERO_STRUCT(request);
1302 ZERO_STRUCT(response);
1304 pwd = getpwnam(user);
1305 if (pwd == NULL) {
1306 return 1;
1309 strncpy(request.data.username, user,
1310 sizeof(request.data.username) - 1);
1312 ret = pam_winbind_request_log(pamh, ctrl, WINBINDD_GETPWNAM, &request, &response, user);
1314 switch (ret) {
1315 case PAM_USER_UNKNOWN:
1316 return 1;
1317 case PAM_SUCCESS:
1318 return 0;
1319 default:
1320 break;
1322 return -1;
1325 static char *_pam_delete(register char *xx)
1327 _pam_overwrite(xx);
1328 _pam_drop(xx);
1329 return NULL;
1333 * obtain a password from the user
1336 static int _winbind_read_password(pam_handle_t * pamh,
1337 unsigned int ctrl,
1338 const char *comment,
1339 const char *prompt1,
1340 const char *prompt2,
1341 const char **pass)
1343 int authtok_flag;
1344 int retval;
1345 const char *item;
1346 char *token;
1348 _pam_log(pamh, ctrl, LOG_DEBUG, "getting password (0x%08x)", ctrl);
1351 * make sure nothing inappropriate gets returned
1354 *pass = token = NULL;
1357 * which authentication token are we getting?
1360 authtok_flag = on(WINBIND__OLD_PASSWORD, ctrl) ? PAM_OLDAUTHTOK : PAM_AUTHTOK;
1363 * should we obtain the password from a PAM item ?
1366 if (on(WINBIND_TRY_FIRST_PASS_ARG, ctrl) || on(WINBIND_USE_FIRST_PASS_ARG, ctrl)) {
1367 retval = _pam_get_item(pamh, authtok_flag, &item);
1368 if (retval != PAM_SUCCESS) {
1369 /* very strange. */
1370 _pam_log(pamh, ctrl, LOG_ALERT,
1371 "pam_get_item returned error to unix-read-password"
1373 return retval;
1374 } else if (item != NULL) { /* we have a password! */
1375 *pass = item;
1376 item = NULL;
1377 _pam_log(pamh, ctrl, LOG_DEBUG,
1378 "pam_get_item returned a password");
1379 return PAM_SUCCESS;
1380 } else if (on(WINBIND_USE_FIRST_PASS_ARG, ctrl)) {
1381 return PAM_AUTHTOK_RECOVER_ERR; /* didn't work */
1382 } else if (on(WINBIND_USE_AUTHTOK_ARG, ctrl)
1383 && off(WINBIND__OLD_PASSWORD, ctrl)) {
1384 return PAM_AUTHTOK_RECOVER_ERR;
1388 * getting here implies we will have to get the password from the
1389 * user directly.
1393 struct pam_message msg[3], *pmsg[3];
1394 struct pam_response *resp;
1395 int i, replies;
1397 /* prepare to converse */
1399 if (comment != NULL && off(ctrl, WINBIND_SILENT)) {
1400 pmsg[0] = &msg[0];
1401 msg[0].msg_style = PAM_TEXT_INFO;
1402 msg[0].msg = CONST_DISCARD(char *, comment);
1403 i = 1;
1404 } else {
1405 i = 0;
1408 pmsg[i] = &msg[i];
1409 msg[i].msg_style = PAM_PROMPT_ECHO_OFF;
1410 msg[i++].msg = CONST_DISCARD(char *, prompt1);
1411 replies = 1;
1413 if (prompt2 != NULL) {
1414 pmsg[i] = &msg[i];
1415 msg[i].msg_style = PAM_PROMPT_ECHO_OFF;
1416 msg[i++].msg = CONST_DISCARD(char *, prompt2);
1417 ++replies;
1419 /* so call the conversation expecting i responses */
1420 resp = NULL;
1421 retval = converse(pamh, i, pmsg, &resp);
1423 if (resp != NULL) {
1425 /* interpret the response */
1427 if (retval == PAM_SUCCESS) { /* a good conversation */
1429 token = x_strdup(resp[i - replies].resp);
1430 if (token != NULL) {
1431 if (replies == 2) {
1432 /* verify that password entered correctly */
1433 if (!resp[i - 1].resp
1434 || strcmp(token, resp[i - 1].resp)) {
1435 _pam_delete(token); /* mistyped */
1436 retval = PAM_AUTHTOK_RECOVER_ERR;
1437 _make_remark(pamh, ctrl, PAM_ERROR_MSG, MISTYPED_PASS);
1440 } else {
1441 _pam_log(pamh, ctrl, LOG_NOTICE, "could not recover authentication token");
1442 retval = PAM_AUTHTOK_RECOVER_ERR;
1447 * tidy up the conversation (resp_retcode) is ignored
1448 * -- what is it for anyway? AGM
1451 _pam_drop_reply(resp, i);
1453 } else {
1454 retval = (retval == PAM_SUCCESS)
1455 ? PAM_AUTHTOK_RECOVER_ERR : retval;
1459 if (retval != PAM_SUCCESS) {
1460 _pam_log_debug(pamh, ctrl, LOG_DEBUG,
1461 "unable to obtain a password");
1462 return retval;
1464 /* 'token' is the entered password */
1466 /* we store this password as an item */
1468 retval = pam_set_item(pamh, authtok_flag, token);
1469 _pam_delete(token); /* clean it up */
1470 if (retval != PAM_SUCCESS ||
1471 (retval = _pam_get_item(pamh, authtok_flag, &item)) != PAM_SUCCESS) {
1473 _pam_log(pamh, ctrl, LOG_CRIT, "error manipulating password");
1474 return retval;
1478 *pass = item;
1479 item = NULL; /* break link to password */
1481 return PAM_SUCCESS;
1484 const char *get_conf_item_string(const pam_handle_t *pamh,
1485 int argc,
1486 const char **argv,
1487 int ctrl,
1488 dictionary *d,
1489 const char *item,
1490 int config_flag)
1492 int i = 0;
1493 const char *parm_opt = NULL;
1494 char *key = NULL;
1496 if (!(ctrl & config_flag)) {
1497 goto out;
1500 /* let the pam opt take precedence over the pam_winbind.conf option */
1502 if (d != NULL) {
1504 if (!asprintf(&key, "global:%s", item)) {
1505 goto out;
1508 parm_opt = iniparser_getstr(d, key);
1509 SAFE_FREE(key);
1512 for ( i=0; i<argc; i++ ) {
1514 if ((strncmp(argv[i], item, strlen(item)) == 0)) {
1515 char *p;
1517 if ( (p = strchr( argv[i], '=' )) == NULL) {
1518 _pam_log(pamh, ctrl, LOG_INFO, "no \"=\" delimiter for \"%s\" found\n", item);
1519 goto out;
1521 _pam_log_debug(pamh, ctrl, LOG_INFO, "PAM config: %s '%s'\n", item, p+1);
1522 return p + 1;
1526 if (d != NULL) {
1527 _pam_log_debug(pamh, ctrl, LOG_INFO, "CONFIG file: %s '%s'\n", item, parm_opt);
1529 out:
1530 return parm_opt;
1533 int get_config_item_int(const pam_handle_t *pamh,
1534 int argc,
1535 const char **argv,
1536 int ctrl,
1537 dictionary *d,
1538 const char *item)
1540 int parm_opt = -1, i = 0;
1541 char *key = NULL;
1543 /* let the pam opt take precedence over the pam_winbind.conf option */
1544 for (i = 0; i < argc; i++) {
1546 if ((strncmp(argv[i], item, strlen(item)) == 0)) {
1547 char *p;
1549 if ( (p = strchr( argv[i], '=' )) == NULL) {
1550 _pam_log(pamh, ctrl, LOG_INFO,
1551 "no \"=\" delimiter for \"%s\" found\n",
1552 item);
1553 goto out;
1555 parm_opt = atoi(p + 1);
1556 _pam_log_debug(pamh, ctrl, LOG_INFO,
1557 "PAM config: %s '%d'\n",
1558 item, parm_opt);
1559 return parm_opt;
1563 if (d != NULL) {
1564 if (!asprintf(&key, "global:%s", item)) {
1565 goto out;
1568 parm_opt = iniparser_getint(d, key, -1);
1569 SAFE_FREE(key);
1571 _pam_log_debug(pamh, ctrl, LOG_INFO,
1572 "CONFIG file: %s '%d'\n",
1573 item, parm_opt);
1575 out:
1576 return parm_opt;
1579 const char *get_krb5_cc_type_from_config(const pam_handle_t *pamh, int argc, const char **argv, int ctrl, dictionary *d)
1581 return get_conf_item_string(pamh, argc, argv, ctrl, d, "krb5_ccache_type", WINBIND_KRB5_CCACHE_TYPE);
1584 const char *get_member_from_config(const pam_handle_t *pamh, int argc, const char **argv, int ctrl, dictionary *d)
1586 const char *ret = NULL;
1587 ret = get_conf_item_string(pamh, argc, argv, ctrl, d, "require_membership_of", WINBIND_REQUIRED_MEMBERSHIP);
1588 if (ret) {
1589 return ret;
1591 return get_conf_item_string(pamh, argc, argv, ctrl, d, "require-membership-of", WINBIND_REQUIRED_MEMBERSHIP);
1594 int get_warn_pwd_expire_from_config(const pam_handle_t *pamh,
1595 int argc,
1596 const char **argv,
1597 int ctrl,
1598 dictionary *d)
1600 int ret;
1601 ret = get_config_item_int(pamh, argc, argv, ctrl, d,
1602 "warn_pwd_expire");
1603 /* no or broken setting */
1604 if (ret <= 0) {
1605 return DEFAULT_DAYS_TO_WARN_BEFORE_PWD_EXPIRES;
1607 return ret;
1610 PAM_EXTERN
1611 int pam_sm_authenticate(pam_handle_t *pamh, int flags,
1612 int argc, const char **argv)
1614 const char *username;
1615 const char *password;
1616 const char *member = NULL;
1617 const char *cctype = NULL;
1618 int warn_pwd_expire;
1619 int retval = PAM_AUTH_ERR;
1620 dictionary *d = NULL;
1621 char *username_ret = NULL;
1622 char *new_authtok_required = NULL;
1623 char *real_username = NULL;
1625 /* parse arguments */
1626 int ctrl = _pam_parse(pamh, flags, argc, argv, &d);
1627 if (ctrl == -1) {
1628 retval = PAM_SYSTEM_ERR;
1629 goto out;
1632 _PAM_LOG_FUNCTION_ENTER("pam_sm_authenticate", pamh, ctrl, flags);
1634 /* Get the username */
1635 retval = pam_get_user(pamh, &username, NULL);
1636 if ((retval != PAM_SUCCESS) || (!username)) {
1637 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "can not get the username");
1638 retval = PAM_SERVICE_ERR;
1639 goto out;
1642 #if defined(AIX)
1643 /* Decode the user name since AIX does not support logn user
1644 names by default. The name is encoded as _#uid. */
1646 if ( username[0] == '_' ) {
1647 uid_t id = atoi( &username[1] );
1648 struct passwd *pw = NULL;
1650 if ( (id!=0) && ((pw = getpwuid( id )) != NULL) ) {
1651 real_username = strdup( pw->pw_name );
1654 #endif
1656 if ( !real_username ) {
1657 /* Just making a copy of the username we got from PAM */
1658 if ( (real_username = strdup( username )) == NULL ) {
1659 _pam_log_debug(pamh, ctrl, LOG_DEBUG,
1660 "memory allocation failure when copying username");
1661 retval = PAM_SERVICE_ERR;
1662 goto out;
1666 retval = _winbind_read_password(pamh, ctrl, NULL,
1667 "Password: ", NULL,
1668 &password);
1670 if (retval != PAM_SUCCESS) {
1671 _pam_log(pamh, ctrl, LOG_ERR, "Could not retrieve user's password");
1672 retval = PAM_AUTHTOK_ERR;
1673 goto out;
1676 /* Let's not give too much away in the log file */
1678 #ifdef DEBUG_PASSWORD
1679 _pam_log_debug(pamh, ctrl, LOG_INFO, "Verify user '%s' with password '%s'",
1680 real_username, password);
1681 #else
1682 _pam_log_debug(pamh, ctrl, LOG_INFO, "Verify user '%s'", real_username);
1683 #endif
1685 member = get_member_from_config(pamh, argc, argv, ctrl, d);
1687 cctype = get_krb5_cc_type_from_config(pamh, argc, argv, ctrl, d);
1689 warn_pwd_expire = get_warn_pwd_expire_from_config(pamh, argc, argv,
1690 ctrl, d);
1692 /* Now use the username to look up password */
1693 retval = winbind_auth_request(pamh, ctrl, username, password, member,
1694 cctype, warn_pwd_expire, NULL, NULL,
1695 &username_ret);
1697 if (retval == PAM_NEW_AUTHTOK_REQD ||
1698 retval == PAM_AUTHTOK_EXPIRED) {
1700 char *new_authtok_required_during_auth = NULL;
1702 if (!asprintf(&new_authtok_required, "%d", retval)) {
1703 retval = PAM_BUF_ERR;
1704 goto out;
1707 pam_set_data(pamh, PAM_WINBIND_NEW_AUTHTOK_REQD, new_authtok_required, _pam_winbind_cleanup_func);
1709 retval = PAM_SUCCESS;
1711 if (!asprintf(&new_authtok_required_during_auth, "%d", True)) {
1712 retval = PAM_BUF_ERR;
1713 goto out;
1716 pam_set_data(pamh, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH,
1717 new_authtok_required_during_auth, _pam_winbind_cleanup_func);
1719 goto out;
1722 out:
1723 if (username_ret) {
1724 pam_set_item (pamh, PAM_USER, username_ret);
1725 _pam_log_debug(pamh, ctrl, LOG_INFO, "Returned user was '%s'", username_ret);
1726 free(username_ret);
1729 if ( real_username ) {
1730 free( real_username );
1733 if (d) {
1734 iniparser_freedict(d);
1737 if (!new_authtok_required) {
1738 pam_set_data(pamh, PAM_WINBIND_NEW_AUTHTOK_REQD, NULL, NULL);
1741 if (retval != PAM_SUCCESS) {
1742 _pam_free_data_info3(pamh);
1745 _PAM_LOG_FUNCTION_LEAVE("pam_sm_authenticate", pamh, ctrl, retval);
1747 return retval;
1750 PAM_EXTERN
1751 int pam_sm_setcred(pam_handle_t *pamh, int flags,
1752 int argc, const char **argv)
1754 int ret = PAM_SYSTEM_ERR;
1755 dictionary *d = NULL;
1757 /* parse arguments */
1758 int ctrl = _pam_parse(pamh, flags, argc, argv, &d);
1759 if (ctrl == -1) {
1760 ret = PAM_SYSTEM_ERR;
1761 goto out;
1764 _PAM_LOG_FUNCTION_ENTER("pam_sm_setcred", pamh, ctrl, flags);
1766 switch (flags & ~PAM_SILENT) {
1768 case PAM_DELETE_CRED:
1769 ret = pam_sm_close_session(pamh, flags, argc, argv);
1770 break;
1771 case PAM_REFRESH_CRED:
1772 _pam_log_debug(pamh, ctrl, LOG_WARNING, "PAM_REFRESH_CRED not implemented");
1773 ret = PAM_SUCCESS;
1774 break;
1775 case PAM_REINITIALIZE_CRED:
1776 _pam_log_debug(pamh, ctrl, LOG_WARNING, "PAM_REINITIALIZE_CRED not implemented");
1777 ret = PAM_SUCCESS;
1778 break;
1779 case PAM_ESTABLISH_CRED:
1780 _pam_log_debug(pamh, ctrl, LOG_WARNING, "PAM_ESTABLISH_CRED not implemented");
1781 ret = PAM_SUCCESS;
1782 break;
1783 default:
1784 ret = PAM_SYSTEM_ERR;
1785 break;
1788 out:
1789 if (d) {
1790 iniparser_freedict(d);
1793 _PAM_LOG_FUNCTION_LEAVE("pam_sm_setcred", pamh, ctrl, ret);
1795 return ret;
1799 * Account management. We want to verify that the account exists
1800 * before returning PAM_SUCCESS
1802 PAM_EXTERN
1803 int pam_sm_acct_mgmt(pam_handle_t *pamh, int flags,
1804 int argc, const char **argv)
1806 const char *username;
1807 int ret = PAM_USER_UNKNOWN;
1808 void *tmp = NULL;
1809 dictionary *d = NULL;
1811 /* parse arguments */
1812 int ctrl = _pam_parse(pamh, flags, argc, argv, &d);
1813 if (ctrl == -1) {
1814 return PAM_SYSTEM_ERR;
1817 _PAM_LOG_FUNCTION_ENTER("pam_sm_acct_mgmt", pamh, ctrl, flags);
1820 /* Get the username */
1821 ret = pam_get_user(pamh, &username, NULL);
1822 if ((ret != PAM_SUCCESS) || (!username)) {
1823 _pam_log_debug(pamh, ctrl, LOG_DEBUG,"can not get the username");
1824 ret = PAM_SERVICE_ERR;
1825 goto out;
1828 /* Verify the username */
1829 ret = valid_user(pamh, ctrl, username);
1830 switch (ret) {
1831 case -1:
1832 /* some sort of system error. The log was already printed */
1833 ret = PAM_SERVICE_ERR;
1834 goto out;
1835 case 1:
1836 /* the user does not exist */
1837 _pam_log_debug(pamh, ctrl, LOG_NOTICE, "user '%s' not found", username);
1838 if (ctrl & WINBIND_UNKNOWN_OK_ARG) {
1839 ret = PAM_IGNORE;
1840 goto out;
1842 ret = PAM_USER_UNKNOWN;
1843 goto out;
1844 case 0:
1845 pam_get_data( pamh, PAM_WINBIND_NEW_AUTHTOK_REQD, (const void **)&tmp);
1846 if (tmp != NULL) {
1847 ret = atoi((const char *)tmp);
1848 switch (ret) {
1849 case PAM_AUTHTOK_EXPIRED:
1850 /* fall through, since new token is required in this case */
1851 case PAM_NEW_AUTHTOK_REQD:
1852 _pam_log(pamh, ctrl, LOG_WARNING, "pam_sm_acct_mgmt success but %s is set",
1853 PAM_WINBIND_NEW_AUTHTOK_REQD);
1854 _pam_log(pamh, ctrl, LOG_NOTICE, "user '%s' needs new password", username);
1855 /* PAM_AUTHTOKEN_REQD does not exist, but is documented in the manpage */
1856 ret = PAM_NEW_AUTHTOK_REQD;
1857 goto out;
1858 default:
1859 _pam_log(pamh, ctrl, LOG_WARNING, "pam_sm_acct_mgmt success");
1860 _pam_log(pamh, ctrl, LOG_NOTICE, "user '%s' granted access", username);
1861 ret = PAM_SUCCESS;
1862 goto out;
1866 /* Otherwise, the authentication looked good */
1867 _pam_log(pamh, ctrl, LOG_NOTICE, "user '%s' granted access", username);
1868 ret = PAM_SUCCESS;
1869 goto out;
1870 default:
1871 /* we don't know anything about this return value */
1872 _pam_log(pamh, ctrl, LOG_ERR, "internal module error (ret = %d, user = '%s')",
1873 ret, username);
1874 ret = PAM_SERVICE_ERR;
1875 goto out;
1878 /* should not be reached */
1879 ret = PAM_IGNORE;
1881 out:
1883 if (d) {
1884 iniparser_freedict(d);
1887 _PAM_LOG_FUNCTION_LEAVE("pam_sm_acct_mgmt", pamh, ctrl, ret);
1889 return ret;
1892 PAM_EXTERN
1893 int pam_sm_open_session(pam_handle_t *pamh, int flags,
1894 int argc, const char **argv)
1896 int ret = PAM_SYSTEM_ERR;
1897 dictionary *d = NULL;
1899 /* parse arguments */
1900 int ctrl = _pam_parse(pamh, flags, argc, argv, &d);
1901 if (ctrl == -1) {
1902 ret = PAM_SYSTEM_ERR;
1903 goto out;
1906 _PAM_LOG_FUNCTION_ENTER("pam_sm_open_session", pamh, ctrl, flags);
1908 ret = PAM_SUCCESS;
1910 out:
1911 if (d) {
1912 iniparser_freedict(d);
1915 _PAM_LOG_FUNCTION_LEAVE("pam_sm_open_session", pamh, ctrl, ret);
1917 return ret;
1920 PAM_EXTERN
1921 int pam_sm_close_session(pam_handle_t *pamh, int flags,
1922 int argc, const char **argv)
1924 dictionary *d = NULL;
1925 int retval = PAM_SUCCESS;
1927 /* parse arguments */
1928 int ctrl = _pam_parse(pamh, flags, argc, argv, &d);
1929 if (ctrl == -1) {
1930 retval = PAM_SYSTEM_ERR;
1931 goto out;
1934 _PAM_LOG_FUNCTION_ENTER("pam_sm_close_session", pamh, ctrl, flags);
1936 if (!(flags & PAM_DELETE_CRED)) {
1937 retval = PAM_SUCCESS;
1938 goto out;
1941 if (ctrl & WINBIND_KRB5_AUTH) {
1943 /* destroy the ccache here */
1944 struct winbindd_request request;
1945 struct winbindd_response response;
1946 const char *user;
1947 const char *ccname = NULL;
1948 struct passwd *pwd = NULL;
1950 ZERO_STRUCT(request);
1951 ZERO_STRUCT(response);
1953 retval = pam_get_user(pamh, &user, "Username: ");
1954 if (retval) {
1955 _pam_log(pamh, ctrl, LOG_ERR, "could not identify user");
1956 goto out;
1959 if (user == NULL) {
1960 _pam_log(pamh, ctrl, LOG_ERR, "username was NULL!");
1961 retval = PAM_USER_UNKNOWN;
1962 goto out;
1965 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "username [%s] obtained", user);
1967 ccname = pam_getenv(pamh, "KRB5CCNAME");
1968 if (ccname == NULL) {
1969 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "user has no KRB5CCNAME environment");
1972 strncpy(request.data.logoff.user, user,
1973 sizeof(request.data.logoff.user) - 1);
1975 if (ccname) {
1976 strncpy(request.data.logoff.krb5ccname, ccname,
1977 sizeof(request.data.logoff.krb5ccname) - 1);
1980 pwd = getpwnam(user);
1981 if (pwd == NULL) {
1982 retval = PAM_USER_UNKNOWN;
1983 goto out;
1985 request.data.logoff.uid = pwd->pw_uid;
1987 request.flags = WBFLAG_PAM_KRB5 | WBFLAG_PAM_CONTACT_TRUSTDOM;
1989 retval = pam_winbind_request_log(pamh, ctrl, WINBINDD_PAM_LOGOFF, &request, &response, user);
1992 out:
1993 if (d) {
1994 iniparser_freedict(d);
1997 _PAM_LOG_FUNCTION_LEAVE("pam_sm_close_session", pamh, ctrl, retval);
1999 return retval;
2003 * evaluate whether we need to re-authenticate with kerberos after a password change
2005 * @param pamh PAM handle
2006 * @param ctrl PAM winbind options.
2007 * @param user The username
2009 * @return boolean Returns True if required, False if not.
2012 static BOOL _pam_require_krb5_auth_after_chauthtok(pam_handle_t *pamh, int ctrl, const char *user)
2015 /* Make sure that we only do this if
2016 * a) the chauthtok got initiated during a logon attempt (authenticate->acct_mgmt->chauthtok)
2017 * b) any later password change via the "passwd" command if done by the user itself
2020 char *new_authtok_reqd_during_auth = NULL;
2021 struct passwd *pwd = NULL;
2023 if (!(ctrl & WINBIND_KRB5_AUTH)) {
2024 return False;
2027 _pam_get_data(pamh, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH, &new_authtok_reqd_during_auth);
2028 pam_set_data(pamh, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH, NULL, NULL);
2030 if (new_authtok_reqd_during_auth) {
2031 return True;
2034 pwd = getpwnam(user);
2035 if (!pwd) {
2036 return False;
2039 if (getuid() == pwd->pw_uid) {
2040 return True;
2043 return False;
2047 PAM_EXTERN
2048 int pam_sm_chauthtok(pam_handle_t * pamh, int flags,
2049 int argc, const char **argv)
2051 unsigned int lctrl;
2052 int ret;
2053 unsigned int ctrl;
2055 /* <DO NOT free() THESE> */
2056 const char *user;
2057 char *pass_old, *pass_new;
2058 /* </DO NOT free() THESE> */
2060 char *Announce;
2062 int retry = 0;
2063 dictionary *d = NULL;
2064 char *username_ret = NULL;
2065 struct winbindd_response response;
2067 ZERO_STRUCT(response);
2069 ctrl = _pam_parse(pamh, flags, argc, argv, &d);
2070 if (ctrl == -1) {
2071 ret = PAM_SYSTEM_ERR;
2072 goto out;
2075 _PAM_LOG_FUNCTION_ENTER("pam_sm_chauthtok", pamh, ctrl, flags);
2077 /* clearing offline bit for the auth in the password change */
2078 ctrl &= ~WINBIND_CACHED_LOGIN;
2081 * First get the name of a user
2083 ret = pam_get_user(pamh, &user, "Username: ");
2084 if (ret) {
2085 _pam_log(pamh, ctrl, LOG_ERR,
2086 "password - could not identify user");
2087 goto out;
2090 if (user == NULL) {
2091 _pam_log(pamh, ctrl, LOG_ERR, "username was NULL!");
2092 ret = PAM_USER_UNKNOWN;
2093 goto out;
2096 _pam_log_debug(pamh, ctrl, LOG_DEBUG, "username [%s] obtained", user);
2098 /* check if this is really a user in winbindd, not only in NSS */
2099 ret = valid_user(pamh, ctrl, user);
2100 switch (ret) {
2101 case 1:
2102 ret = PAM_USER_UNKNOWN;
2103 goto out;
2104 case -1:
2105 ret = PAM_SYSTEM_ERR;
2106 goto out;
2107 default:
2108 break;
2112 * obtain and verify the current password (OLDAUTHTOK) for
2113 * the user.
2116 if (flags & PAM_PRELIM_CHECK) {
2117 time_t pwdlastset_prelim = 0;
2119 /* instruct user what is happening */
2120 #define greeting "Changing password for "
2121 Announce = (char *) malloc(sizeof(greeting) + strlen(user));
2122 if (Announce == NULL) {
2123 _pam_log(pamh, ctrl, LOG_CRIT, "password - out of memory");
2124 ret = PAM_BUF_ERR;
2125 goto out;
2127 (void) strcpy(Announce, greeting);
2128 (void) strcpy(Announce + sizeof(greeting) - 1, user);
2129 #undef greeting
2131 lctrl = ctrl | WINBIND__OLD_PASSWORD;
2132 ret = _winbind_read_password(pamh, lctrl,
2133 Announce,
2134 "(current) NT password: ",
2135 NULL,
2136 (const char **) &pass_old);
2137 if (ret != PAM_SUCCESS) {
2138 _pam_log(pamh, ctrl, LOG_NOTICE, "password - (old) token not obtained");
2139 goto out;
2142 /* verify that this is the password for this user */
2144 ret = winbind_auth_request(pamh, ctrl, user, pass_old,
2145 NULL, NULL, 0, &response,
2146 &pwdlastset_prelim, NULL);
2148 if (ret != PAM_ACCT_EXPIRED &&
2149 ret != PAM_AUTHTOK_EXPIRED &&
2150 ret != PAM_NEW_AUTHTOK_REQD &&
2151 ret != PAM_SUCCESS) {
2152 pass_old = NULL;
2153 goto out;
2156 pam_set_data(pamh, PAM_WINBIND_PWD_LAST_SET, (void *)pwdlastset_prelim, NULL);
2158 ret = pam_set_item(pamh, PAM_OLDAUTHTOK, (const void *) pass_old);
2159 pass_old = NULL;
2160 if (ret != PAM_SUCCESS) {
2161 _pam_log(pamh, ctrl, LOG_CRIT, "failed to set PAM_OLDAUTHTOK");
2163 } else if (flags & PAM_UPDATE_AUTHTOK) {
2165 time_t pwdlastset_update = 0;
2168 * obtain the proposed password
2172 * get the old token back.
2175 ret = _pam_get_item(pamh, PAM_OLDAUTHTOK, &pass_old);
2177 if (ret != PAM_SUCCESS) {
2178 _pam_log(pamh, ctrl, LOG_NOTICE, "user not authenticated");
2179 goto out;
2182 lctrl = ctrl & ~WINBIND_TRY_FIRST_PASS_ARG;
2184 if (on(WINBIND_USE_AUTHTOK_ARG, lctrl)) {
2185 lctrl |= WINBIND_USE_FIRST_PASS_ARG;
2187 retry = 0;
2188 ret = PAM_AUTHTOK_ERR;
2189 while ((ret != PAM_SUCCESS) && (retry++ < MAX_PASSWD_TRIES)) {
2191 * use_authtok is to force the use of a previously entered
2192 * password -- needed for pluggable password strength checking
2195 ret = _winbind_read_password(pamh, lctrl,
2196 NULL,
2197 "Enter new NT password: ",
2198 "Retype new NT password: ",
2199 (const char **) &pass_new);
2201 if (ret != PAM_SUCCESS) {
2202 _pam_log_debug(pamh, ctrl, LOG_ALERT
2203 ,"password - new password not obtained");
2204 pass_old = NULL;/* tidy up */
2205 goto out;
2209 * At this point we know who the user is and what they
2210 * propose as their new password. Verify that the new
2211 * password is acceptable.
2214 if (pass_new[0] == '\0') {/* "\0" password = NULL */
2215 pass_new = NULL;
2220 * By reaching here we have approved the passwords and must now
2221 * rebuild the password database file.
2223 _pam_get_data( pamh, PAM_WINBIND_PWD_LAST_SET,
2224 &pwdlastset_update);
2226 ret = winbind_chauthtok_request(pamh, ctrl, user, pass_old, pass_new, pwdlastset_update);
2227 if (ret) {
2228 _pam_overwrite(pass_new);
2229 _pam_overwrite(pass_old);
2230 pass_old = pass_new = NULL;
2231 goto out;
2234 if (_pam_require_krb5_auth_after_chauthtok(pamh, ctrl, user)) {
2236 const char *member = get_member_from_config(pamh, argc, argv, ctrl, d);
2237 const char *cctype = get_krb5_cc_type_from_config(pamh, argc, argv, ctrl, d);
2238 const int warn_pwd_expire =
2239 get_warn_pwd_expire_from_config(pamh, argc, argv, ctrl,
2242 ret = winbind_auth_request(pamh, ctrl, user, pass_new,
2243 member, cctype, 0, &response,
2244 NULL, &username_ret);
2245 _pam_overwrite(pass_new);
2246 _pam_overwrite(pass_old);
2247 pass_old = pass_new = NULL;
2249 if (ret == PAM_SUCCESS) {
2251 /* warn a user if the password is about to expire soon */
2252 _pam_warn_password_expiry(pamh, ctrl, &response,
2253 warn_pwd_expire , NULL);
2255 /* set some info3 info for other modules in the stack */
2256 _pam_set_data_info3(pamh, ctrl, &response);
2258 /* put krb5ccname into env */
2259 _pam_setup_krb5_env(pamh, ctrl, response.data.auth.krb5ccname);
2261 if (username_ret) {
2262 pam_set_item (pamh, PAM_USER, username_ret);
2263 _pam_log_debug(pamh, ctrl, LOG_INFO, "Returned user was '%s'", username_ret);
2264 free(username_ret);
2268 goto out;
2270 } else {
2271 ret = PAM_SERVICE_ERR;
2274 out:
2275 if (d) {
2276 iniparser_freedict(d);
2279 /* Deal with offline errors. */
2280 PAM_WB_REMARK_CHECK_RESPONSE(pamh, ctrl, response, "NT_STATUS_NO_LOGON_SERVERS");
2281 PAM_WB_REMARK_CHECK_RESPONSE(pamh, ctrl, response, "NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND");
2282 PAM_WB_REMARK_CHECK_RESPONSE(pamh, ctrl, response, "NT_STATUS_ACCESS_DENIED");
2284 _PAM_LOG_FUNCTION_LEAVE("pam_sm_chauthtok", pamh, ctrl, ret);
2286 return ret;
2289 #ifdef PAM_STATIC
2291 /* static module data */
2293 struct pam_module _pam_winbind_modstruct = {
2294 MODULE_NAME,
2295 pam_sm_authenticate,
2296 pam_sm_setcred,
2297 pam_sm_acct_mgmt,
2298 pam_sm_open_session,
2299 pam_sm_close_session,
2300 pam_sm_chauthtok
2303 #endif
2306 * Copyright (c) Andrew Tridgell <tridge@samba.org> 2000
2307 * Copyright (c) Tim Potter <tpot@samba.org> 2000
2308 * Copyright (c) Andrew Bartlettt <abartlet@samba.org> 2002
2309 * Copyright (c) Guenther Deschner <gd@samba.org> 2005-2007
2310 * Copyright (c) Jan Rêkorajski 1999.
2311 * Copyright (c) Andrew G. Morgan 1996-8.
2312 * Copyright (c) Alex O. Yuriev, 1996.
2313 * Copyright (c) Cristian Gafton 1996.
2314 * Copyright (C) Elliot Lee <sopwith@redhat.com> 1996, Red Hat Software.
2316 * Redistribution and use in source and binary forms, with or without
2317 * modification, are permitted provided that the following conditions
2318 * are met:
2319 * 1. Redistributions of source code must retain the above copyright
2320 * notice, and the entire permission notice in its entirety,
2321 * including the disclaimer of warranties.
2322 * 2. Redistributions in binary form must reproduce the above copyright
2323 * notice, this list of conditions and the following disclaimer in the
2324 * documentation and/or other materials provided with the distribution.
2325 * 3. The name of the author may not be used to endorse or promote
2326 * products derived from this software without specific prior
2327 * written permission.
2329 * ALTERNATIVELY, this product may be distributed under the terms of
2330 * the GNU Public License, in which case the provisions of the GPL are
2331 * required INSTEAD OF the above restrictions. (This clause is
2332 * necessary due to a potential bad interaction between the GPL and
2333 * the restrictions contained in a BSD-style copyright.)
2335 * THIS SOFTWARE IS PROVIDED `AS IS'' AND ANY EXPRESS OR IMPLIED
2336 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2337 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
2338 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
2339 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
2340 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
2341 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2342 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
2343 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2344 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
2345 * OF THE POSSIBILITY OF SUCH DAMAGE.