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-2008
8 largely based on pam_userdb by Cristian Gafton <gafton@redhat.com> also
9 contains large slabs of code from pam_unix by Elliot Lee
10 <sopwith@redhat.com> (see copyright below for full details)
13 #define UID_WRAPPER_NOT_REPLACE
15 #include "pam_winbind.h"
17 static int wbc_error_to_pam_error(wbcErr status
)
22 case WBC_ERR_NOT_IMPLEMENTED
:
23 return PAM_SERVICE_ERR
;
24 case WBC_ERR_UNKNOWN_FAILURE
:
26 case WBC_ERR_NO_MEMORY
:
28 case WBC_ERR_INVALID_SID
:
29 case WBC_ERR_INVALID_PARAM
:
31 case WBC_ERR_WINBIND_NOT_AVAILABLE
:
32 return PAM_AUTHINFO_UNAVAIL
;
33 case WBC_ERR_DOMAIN_NOT_FOUND
:
34 return PAM_AUTHINFO_UNAVAIL
;
35 case WBC_ERR_INVALID_RESPONSE
:
37 case WBC_ERR_NSS_ERROR
:
38 return PAM_USER_UNKNOWN
;
39 case WBC_ERR_AUTH_ERROR
:
41 case WBC_ERR_UNKNOWN_USER
:
42 return PAM_USER_UNKNOWN
;
43 case WBC_ERR_UNKNOWN_GROUP
:
44 return PAM_USER_UNKNOWN
;
45 case WBC_ERR_PWD_CHANGE_FAILED
:
53 static const char *_pam_error_code_str(int err
)
59 return "PAM_OPEN_ERR";
61 return "PAM_SYMBOL_ERR";
63 return "PAM_SERVICE_ERR";
65 return "PAM_SYSTEM_ERR";
69 return "PAM_PERM_DENIED";
71 return "PAM_AUTH_ERR";
72 case PAM_CRED_INSUFFICIENT
:
73 return "PAM_CRED_INSUFFICIENT";
74 case PAM_AUTHINFO_UNAVAIL
:
75 return "PAM_AUTHINFO_UNAVAIL";
76 case PAM_USER_UNKNOWN
:
77 return "PAM_USER_UNKNOWN";
79 return "PAM_MAXTRIES";
80 case PAM_NEW_AUTHTOK_REQD
:
81 return "PAM_NEW_AUTHTOK_REQD";
82 case PAM_ACCT_EXPIRED
:
83 return "PAM_ACCT_EXPIRED";
85 return "PAM_SESSION_ERR";
86 case PAM_CRED_UNAVAIL
:
87 return "PAM_CRED_UNAVAIL";
88 case PAM_CRED_EXPIRED
:
89 return "PAM_CRED_EXPIRED";
91 return "PAM_CRED_ERR";
92 case PAM_NO_MODULE_DATA
:
93 return "PAM_NO_MODULE_DATA";
95 return "PAM_CONV_ERR";
97 return "PAM_AUTHTOK_ERR";
98 case PAM_AUTHTOK_RECOVER_ERR
:
99 return "PAM_AUTHTOK_RECOVER_ERR";
100 case PAM_AUTHTOK_LOCK_BUSY
:
101 return "PAM_AUTHTOK_LOCK_BUSY";
102 case PAM_AUTHTOK_DISABLE_AGING
:
103 return "PAM_AUTHTOK_DISABLE_AGING";
105 return "PAM_TRY_AGAIN";
110 case PAM_AUTHTOK_EXPIRED
:
111 return "PAM_AUTHTOK_EXPIRED";
112 #ifdef PAM_MODULE_UNKNOWN
113 case PAM_MODULE_UNKNOWN
:
114 return "PAM_MODULE_UNKNOWN";
118 return "PAM_BAD_ITEM";
120 #ifdef PAM_CONV_AGAIN
122 return "PAM_CONV_AGAIN";
124 #ifdef PAM_INCOMPLETE
126 return "PAM_INCOMPLETE";
133 #define _PAM_LOG_FUNCTION_ENTER(function, ctx) \
135 _pam_log_debug(ctx, LOG_DEBUG, "[pamh: %p] ENTER: " \
136 function " (flags: 0x%04x)", ctx->pamh, ctx->flags); \
137 _pam_log_state(ctx); \
140 #define _PAM_LOG_FUNCTION_LEAVE(function, ctx, retval) \
142 _pam_log_debug(ctx, LOG_DEBUG, "[pamh: %p] LEAVE: " \
143 function " returning %d (%s)", ctx->pamh, retval, \
144 _pam_error_code_str(retval)); \
145 _pam_log_state(ctx); \
150 #define MAX_PASSWD_TRIES 3
153 static char initialized
= 0;
155 static inline void textdomain_init(void);
156 static inline void textdomain_init(void)
159 bindtextdomain(MODULE_NAME
, LOCALEDIR
);
168 * Work around the pam API that has functions with void ** as parameters
169 * These lead to strict aliasing warnings with gcc.
171 static int _pam_get_item(const pam_handle_t
*pamh
,
175 const void **item
= (const void **)_item
;
176 return pam_get_item(pamh
, item_type
, item
);
178 static int _pam_get_data(const pam_handle_t
*pamh
,
179 const char *module_data_name
,
182 const void **data
= (const void **)_data
;
183 return pam_get_data(pamh
, module_data_name
, data
);
186 /* some syslogging */
188 #ifdef HAVE_PAM_VSYSLOG
189 static void _pam_log_int(const pam_handle_t
*pamh
,
194 pam_vsyslog(pamh
, err
, format
, args
);
197 static void _pam_log_int(const pam_handle_t
*pamh
,
202 char *format2
= NULL
;
205 _pam_get_item(pamh
, PAM_SERVICE
, &service
);
207 format2
= (char *)malloc(strlen(MODULE_NAME
)+strlen(format
)+strlen(service
)+5);
208 if (format2
== NULL
) {
209 /* what else todo ? */
210 vsyslog(err
, format
, args
);
214 sprintf(format2
, "%s(%s): %s", MODULE_NAME
, service
, format
);
215 vsyslog(err
, format2
, args
);
218 #endif /* HAVE_PAM_VSYSLOG */
220 static bool _pam_log_is_silent(int ctrl
)
222 return on(ctrl
, WINBIND_SILENT
);
225 static void _pam_log(struct pwb_context
*r
, int err
, const char *format
, ...) PRINTF_ATTRIBUTE(3,4);
226 static void _pam_log(struct pwb_context
*r
, int err
, const char *format
, ...)
230 if (_pam_log_is_silent(r
->ctrl
)) {
234 va_start(args
, format
);
235 _pam_log_int(r
->pamh
, err
, format
, args
);
238 static void __pam_log(const pam_handle_t
*pamh
, int ctrl
, int err
, const char *format
, ...) PRINTF_ATTRIBUTE(4,5);
239 static void __pam_log(const pam_handle_t
*pamh
, int ctrl
, int err
, const char *format
, ...)
243 if (_pam_log_is_silent(ctrl
)) {
247 va_start(args
, format
);
248 _pam_log_int(pamh
, err
, format
, args
);
252 static bool _pam_log_is_debug_enabled(int ctrl
)
258 if (_pam_log_is_silent(ctrl
)) {
262 if (!(ctrl
& WINBIND_DEBUG_ARG
)) {
269 static bool _pam_log_is_debug_state_enabled(int ctrl
)
271 if (!(ctrl
& WINBIND_DEBUG_STATE
)) {
275 return _pam_log_is_debug_enabled(ctrl
);
278 static void _pam_log_debug(struct pwb_context
*r
, int err
, const char *format
, ...) PRINTF_ATTRIBUTE(3,4);
279 static void _pam_log_debug(struct pwb_context
*r
, int err
, const char *format
, ...)
283 if (!_pam_log_is_debug_enabled(r
->ctrl
)) {
287 va_start(args
, format
);
288 _pam_log_int(r
->pamh
, err
, format
, args
);
291 static void __pam_log_debug(const pam_handle_t
*pamh
, int ctrl
, int err
, const char *format
, ...) PRINTF_ATTRIBUTE(4,5);
292 static void __pam_log_debug(const pam_handle_t
*pamh
, int ctrl
, int err
, const char *format
, ...)
296 if (!_pam_log_is_debug_enabled(ctrl
)) {
300 va_start(args
, format
);
301 _pam_log_int(pamh
, err
, format
, args
);
305 static void _pam_log_state_datum(struct pwb_context
*ctx
,
310 const void *data
= NULL
;
311 if (item_type
!= 0) {
312 pam_get_item(ctx
->pamh
, item_type
, &data
);
314 pam_get_data(ctx
->pamh
, key
, &data
);
317 const char *type
= (item_type
!= 0) ? "ITEM" : "DATA";
318 if (is_string
!= 0) {
319 _pam_log_debug(ctx
, LOG_DEBUG
,
320 "[pamh: %p] STATE: %s(%s) = \"%s\" (%p)",
321 ctx
->pamh
, type
, key
, (const char *)data
,
324 _pam_log_debug(ctx
, LOG_DEBUG
,
325 "[pamh: %p] STATE: %s(%s) = %p",
326 ctx
->pamh
, type
, key
, data
);
331 #define _PAM_LOG_STATE_DATA_POINTER(ctx, module_data_name) \
332 _pam_log_state_datum(ctx, 0, module_data_name, 0)
334 #define _PAM_LOG_STATE_DATA_STRING(ctx, module_data_name) \
335 _pam_log_state_datum(ctx, 0, module_data_name, 1)
337 #define _PAM_LOG_STATE_ITEM_POINTER(ctx, item_type) \
338 _pam_log_state_datum(ctx, item_type, #item_type, 0)
340 #define _PAM_LOG_STATE_ITEM_STRING(ctx, item_type) \
341 _pam_log_state_datum(ctx, item_type, #item_type, 1)
343 #ifdef DEBUG_PASSWORD
344 #define _LOG_PASSWORD_AS_STRING 1
346 #define _LOG_PASSWORD_AS_STRING 0
349 #define _PAM_LOG_STATE_ITEM_PASSWORD(ctx, item_type) \
350 _pam_log_state_datum(ctx, item_type, #item_type, \
351 _LOG_PASSWORD_AS_STRING)
353 static void _pam_log_state(struct pwb_context
*ctx
)
355 if (!_pam_log_is_debug_state_enabled(ctx
->ctrl
)) {
359 _PAM_LOG_STATE_ITEM_STRING(ctx
, PAM_SERVICE
);
360 _PAM_LOG_STATE_ITEM_STRING(ctx
, PAM_USER
);
361 _PAM_LOG_STATE_ITEM_STRING(ctx
, PAM_TTY
);
362 _PAM_LOG_STATE_ITEM_STRING(ctx
, PAM_RHOST
);
363 _PAM_LOG_STATE_ITEM_STRING(ctx
, PAM_RUSER
);
364 _PAM_LOG_STATE_ITEM_PASSWORD(ctx
, PAM_OLDAUTHTOK
);
365 _PAM_LOG_STATE_ITEM_PASSWORD(ctx
, PAM_AUTHTOK
);
366 _PAM_LOG_STATE_ITEM_STRING(ctx
, PAM_USER_PROMPT
);
367 _PAM_LOG_STATE_ITEM_POINTER(ctx
, PAM_CONV
);
368 #ifdef PAM_FAIL_DELAY
369 _PAM_LOG_STATE_ITEM_POINTER(ctx
, PAM_FAIL_DELAY
);
371 #ifdef PAM_REPOSITORY
372 _PAM_LOG_STATE_ITEM_POINTER(ctx
, PAM_REPOSITORY
);
375 _PAM_LOG_STATE_DATA_STRING(ctx
, PAM_WINBIND_HOMEDIR
);
376 _PAM_LOG_STATE_DATA_STRING(ctx
, PAM_WINBIND_LOGONSCRIPT
);
377 _PAM_LOG_STATE_DATA_STRING(ctx
, PAM_WINBIND_LOGONSERVER
);
378 _PAM_LOG_STATE_DATA_STRING(ctx
, PAM_WINBIND_PROFILEPATH
);
379 _PAM_LOG_STATE_DATA_STRING(ctx
,
380 PAM_WINBIND_NEW_AUTHTOK_REQD
);
381 /* Use atoi to get PAM result code */
382 _PAM_LOG_STATE_DATA_STRING(ctx
,
383 PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH
);
384 _PAM_LOG_STATE_DATA_POINTER(ctx
, PAM_WINBIND_PWD_LAST_SET
);
387 static int _pam_parse(const pam_handle_t
*pamh
,
391 dictionary
**result_d
)
394 const char *config_file
= NULL
;
397 dictionary
*d
= NULL
;
399 if (flags
& PAM_SILENT
) {
400 ctrl
|= WINBIND_SILENT
;
403 for (i
=argc
,v
=argv
; i
-- > 0; ++v
) {
404 if (!strncasecmp(*v
, "config", strlen("config"))) {
405 ctrl
|= WINBIND_CONFIG_FILE
;
411 if (config_file
== NULL
) {
412 config_file
= PAM_WINBIND_CONFIG_FILE
;
415 d
= iniparser_load(discard_const_p(char, config_file
));
417 goto config_from_pam
;
420 if (iniparser_getboolean(d
, discard_const_p(char, "global:debug"), false)) {
421 ctrl
|= WINBIND_DEBUG_ARG
;
424 if (iniparser_getboolean(d
, discard_const_p(char, "global:debug_state"), false)) {
425 ctrl
|= WINBIND_DEBUG_STATE
;
428 if (iniparser_getboolean(d
, discard_const_p(char, "global:cached_login"), false)) {
429 ctrl
|= WINBIND_CACHED_LOGIN
;
432 if (iniparser_getboolean(d
, discard_const_p(char, "global:krb5_auth"), false)) {
433 ctrl
|= WINBIND_KRB5_AUTH
;
436 if (iniparser_getboolean(d
, discard_const_p(char, "global:silent"), false)) {
437 ctrl
|= WINBIND_SILENT
;
440 if (iniparser_getstring(d
, discard_const_p(char, "global:krb5_ccache_type"), NULL
) != NULL
) {
441 ctrl
|= WINBIND_KRB5_CCACHE_TYPE
;
444 if ((iniparser_getstring(d
, discard_const_p(char, "global:require-membership-of"), NULL
)
446 (iniparser_getstring(d
, discard_const_p(char, "global:require_membership_of"), NULL
)
448 ctrl
|= WINBIND_REQUIRED_MEMBERSHIP
;
451 if (iniparser_getboolean(d
, discard_const_p(char, "global:try_first_pass"), false)) {
452 ctrl
|= WINBIND_TRY_FIRST_PASS_ARG
;
455 if (iniparser_getint(d
, discard_const_p(char, "global:warn_pwd_expire"), 0)) {
456 ctrl
|= WINBIND_WARN_PWD_EXPIRE
;
459 if (iniparser_getboolean(d
, discard_const_p(char, "global:mkhomedir"), false)) {
460 ctrl
|= WINBIND_MKHOMEDIR
;
464 /* step through arguments */
465 for (i
=argc
,v
=argv
; i
-- > 0; ++v
) {
467 /* generic options */
468 if (!strcmp(*v
,"debug"))
469 ctrl
|= WINBIND_DEBUG_ARG
;
470 else if (!strcasecmp(*v
, "debug_state"))
471 ctrl
|= WINBIND_DEBUG_STATE
;
472 else if (!strcasecmp(*v
, "silent"))
473 ctrl
|= WINBIND_SILENT
;
474 else if (!strcasecmp(*v
, "use_authtok"))
475 ctrl
|= WINBIND_USE_AUTHTOK_ARG
;
476 else if (!strcasecmp(*v
, "use_first_pass"))
477 ctrl
|= WINBIND_USE_FIRST_PASS_ARG
;
478 else if (!strcasecmp(*v
, "try_first_pass"))
479 ctrl
|= WINBIND_TRY_FIRST_PASS_ARG
;
480 else if (!strcasecmp(*v
, "unknown_ok"))
481 ctrl
|= WINBIND_UNKNOWN_OK_ARG
;
482 else if (!strncasecmp(*v
, "require_membership_of",
483 strlen("require_membership_of")))
484 ctrl
|= WINBIND_REQUIRED_MEMBERSHIP
;
485 else if (!strncasecmp(*v
, "require-membership-of",
486 strlen("require-membership-of")))
487 ctrl
|= WINBIND_REQUIRED_MEMBERSHIP
;
488 else if (!strcasecmp(*v
, "krb5_auth"))
489 ctrl
|= WINBIND_KRB5_AUTH
;
490 else if (!strncasecmp(*v
, "krb5_ccache_type",
491 strlen("krb5_ccache_type")))
492 ctrl
|= WINBIND_KRB5_CCACHE_TYPE
;
493 else if (!strcasecmp(*v
, "cached_login"))
494 ctrl
|= WINBIND_CACHED_LOGIN
;
495 else if (!strcasecmp(*v
, "mkhomedir"))
496 ctrl
|= WINBIND_MKHOMEDIR
;
498 __pam_log(pamh
, ctrl
, LOG_ERR
,
499 "pam_parse: unknown option: %s", *v
);
509 iniparser_freedict(d
);
516 static int _pam_winbind_free_context(struct pwb_context
*ctx
)
523 iniparser_freedict(ctx
->dict
);
529 static int _pam_winbind_init_context(pam_handle_t
*pamh
,
533 struct pwb_context
**ctx_p
)
535 struct pwb_context
*r
= NULL
;
541 r
= talloc_zero(NULL
, struct pwb_context
);
546 talloc_set_destructor(r
, _pam_winbind_free_context
);
552 r
->ctrl
= _pam_parse(pamh
, flags
, argc
, argv
, &r
->dict
);
555 return PAM_SYSTEM_ERR
;
563 static void _pam_winbind_cleanup_func(pam_handle_t
*pamh
,
567 int ctrl
= _pam_parse(pamh
, 0, 0, NULL
, NULL
);
568 if (_pam_log_is_debug_state_enabled(ctrl
)) {
569 __pam_log_debug(pamh
, ctrl
, LOG_DEBUG
,
570 "[pamh: %p] CLEAN: cleaning up PAM data %p "
571 "(error_status = %d)", pamh
, data
,
578 static const struct ntstatus_errors
{
579 const char *ntstatus_string
;
580 const char *error_string
;
581 } ntstatus_errors
[] = {
584 {"NT_STATUS_BACKUP_CONTROLLER",
585 N_("No primary Domain Controler available")},
586 {"NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND",
587 N_("No domain controllers found")},
588 {"NT_STATUS_NO_LOGON_SERVERS",
589 N_("No logon servers")},
590 {"NT_STATUS_PWD_TOO_SHORT",
591 N_("Password too short")},
592 {"NT_STATUS_PWD_TOO_RECENT",
593 N_("The password of this user is too recent to change")},
594 {"NT_STATUS_PWD_HISTORY_CONFLICT",
595 N_("Password is already in password history")},
596 {"NT_STATUS_PASSWORD_EXPIRED",
597 N_("Your password has expired")},
598 {"NT_STATUS_PASSWORD_MUST_CHANGE",
599 N_("You need to change your password now")},
600 {"NT_STATUS_INVALID_WORKSTATION",
601 N_("You are not allowed to logon from this workstation")},
602 {"NT_STATUS_INVALID_LOGON_HOURS",
603 N_("You are not allowed to logon at this time")},
604 {"NT_STATUS_ACCOUNT_EXPIRED",
605 N_("Your account has expired. "
606 "Please contact your System administrator")}, /* SCNR */
607 {"NT_STATUS_ACCOUNT_DISABLED",
608 N_("Your account is disabled. "
609 "Please contact your System administrator")}, /* SCNR */
610 {"NT_STATUS_ACCOUNT_LOCKED_OUT",
611 N_("Your account has been locked. "
612 "Please contact your System administrator")}, /* SCNR */
613 {"NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT",
614 N_("Invalid Trust Account")},
615 {"NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT",
616 N_("Invalid Trust Account")},
617 {"NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT",
618 N_("Invalid Trust Account")},
619 {"NT_STATUS_ACCESS_DENIED",
620 N_("Access is denied")},
624 static const char *_get_ntstatus_error_string(const char *nt_status_string
)
627 for (i
=0; ntstatus_errors
[i
].ntstatus_string
!= NULL
; i
++) {
628 if (!strcasecmp(ntstatus_errors
[i
].ntstatus_string
,
630 return _(ntstatus_errors
[i
].error_string
);
636 /* --- authentication management functions --- */
638 /* Attempt a conversation */
640 static int converse(const pam_handle_t
*pamh
,
642 struct pam_message
**message
,
643 struct pam_response
**response
)
646 struct pam_conv
*conv
;
648 retval
= _pam_get_item(pamh
, PAM_CONV
, &conv
);
649 if (retval
== PAM_SUCCESS
) {
650 retval
= conv
->conv(nargs
,
651 (const struct pam_message
**)message
,
652 response
, conv
->appdata_ptr
);
655 return retval
; /* propagate error status */
659 static int _make_remark(struct pwb_context
*ctx
,
663 int retval
= PAM_SUCCESS
;
665 struct pam_message
*pmsg
[1], msg
[1];
666 struct pam_response
*resp
;
668 if (ctx
->flags
& WINBIND_SILENT
) {
673 msg
[0].msg
= discard_const_p(char, text
);
674 msg
[0].msg_style
= type
;
677 retval
= converse(ctx
->pamh
, 1, pmsg
, &resp
);
680 _pam_drop_reply(resp
, 1);
685 static int _make_remark_v(struct pwb_context
*ctx
,
693 ret
= vasprintf(&var
, format
, args
);
695 _pam_log(ctx
, LOG_ERR
, "memory allocation failure");
699 ret
= _make_remark(ctx
, type
, var
);
704 static int _make_remark_format(struct pwb_context
*ctx
, int type
, const char *format
, ...) PRINTF_ATTRIBUTE(3,4);
705 static int _make_remark_format(struct pwb_context
*ctx
, int type
, const char *format
, ...)
710 va_start(args
, format
);
711 ret
= _make_remark_v(ctx
, type
, format
, args
);
716 static int pam_winbind_request_log(struct pwb_context
*ctx
,
723 /* incorrect password */
724 _pam_log(ctx
, LOG_WARNING
, "user '%s' denied access "
725 "(incorrect password or invalid membership)", user
);
727 case PAM_ACCT_EXPIRED
:
728 /* account expired */
729 _pam_log(ctx
, LOG_WARNING
, "user '%s' account expired",
732 case PAM_AUTHTOK_EXPIRED
:
733 /* password expired */
734 _pam_log(ctx
, LOG_WARNING
, "user '%s' password expired",
737 case PAM_NEW_AUTHTOK_REQD
:
738 /* new password required */
739 _pam_log(ctx
, LOG_WARNING
, "user '%s' new password "
742 case PAM_USER_UNKNOWN
:
743 /* the user does not exist */
744 _pam_log_debug(ctx
, LOG_NOTICE
, "user '%s' not found",
746 if (ctx
->ctrl
& WINBIND_UNKNOWN_OK_ARG
) {
751 /* Otherwise, the authentication looked good */
752 if (strcmp(fn
, "wbcLogonUser") == 0) {
753 _pam_log(ctx
, LOG_NOTICE
,
754 "user '%s' granted access", user
);
756 _pam_log(ctx
, LOG_NOTICE
,
757 "user '%s' OK", user
);
761 /* we don't know anything about this return value */
762 _pam_log(ctx
, LOG_ERR
,
763 "internal module error (retval = %s(%d), user = '%s')",
764 _pam_error_code_str(retval
), retval
, user
);
769 static int wbc_auth_error_to_pam_error(struct pwb_context
*ctx
,
770 struct wbcAuthErrorInfo
*e
,
772 const char *username
,
775 int ret
= PAM_AUTH_ERR
;
777 if (WBC_ERROR_IS_OK(status
)) {
778 _pam_log_debug(ctx
, LOG_DEBUG
, "request %s succeeded",
781 return pam_winbind_request_log(ctx
, ret
, username
, fn
);
785 if (e
->pam_error
!= PAM_SUCCESS
) {
786 _pam_log(ctx
, LOG_ERR
,
787 "request %s failed: %s, "
788 "PAM error: %s (%d), NTSTATUS: %s, "
789 "Error message was: %s",
791 wbcErrorString(status
),
792 _pam_error_code_str(e
->pam_error
),
797 return pam_winbind_request_log(ctx
, ret
, username
, fn
);
800 _pam_log(ctx
, LOG_ERR
, "request %s failed, but PAM error 0!", fn
);
802 ret
= PAM_SERVICE_ERR
;
803 return pam_winbind_request_log(ctx
, ret
, username
, fn
);
806 ret
= wbc_error_to_pam_error(status
);
807 return pam_winbind_request_log(ctx
, ret
, username
, fn
);
810 #if defined(HAVE_PAM_RADIO_TYPE)
811 static bool _pam_winbind_change_pwd(struct pwb_context
*ctx
)
813 struct pam_message msg
, *pmsg
;
814 struct pam_response
*resp
= NULL
;
818 prompt
= _("Do you want to change your password now?");
820 msg
.msg_style
= PAM_RADIO_TYPE
;
822 ret
= converse(ctx
->pamh
, 1, &pmsg
, &resp
);
824 if (ret
== PAM_SUCCESS
) {
825 _pam_log(ctx
, LOG_CRIT
, "pam_winbind: system error!\n");
829 if (ret
!= PAM_SUCCESS
) {
832 _pam_log(ctx
, LOG_CRIT
, "Received [%s] reply from application.\n", resp
->resp
);
834 if ((resp
->resp
!= NULL
) && (strcasecmp(resp
->resp
, "yes") == 0)) {
838 _pam_drop_reply(resp
, 1);
842 static bool _pam_winbind_change_pwd(struct pwb_context
*ctx
)
849 * send a password expiry message if required
851 * @param ctx PAM winbind context.
852 * @param next_change expected (calculated) next expiry date.
853 * @param already_expired pointer to a boolean to indicate if the password is
856 * @return boolean Returns true if message has been sent, false if not.
859 static bool _pam_send_password_expiry_message(struct pwb_context
*ctx
,
863 bool *already_expired
,
867 struct tm tm_now
, tm_next_change
;
871 if (already_expired
) {
872 *already_expired
= false;
879 if (next_change
<= now
) {
880 PAM_WB_REMARK_DIRECT(ctx
, "NT_STATUS_PASSWORD_EXPIRED");
881 if (already_expired
) {
882 *already_expired
= true;
887 if ((next_change
< 0) ||
888 (next_change
> now
+ warn_pwd_expire
* SECONDS_PER_DAY
)) {
892 if ((localtime_r(&now
, &tm_now
) == NULL
) ||
893 (localtime_r(&next_change
, &tm_next_change
) == NULL
)) {
897 days
= (tm_next_change
.tm_yday
+tm_next_change
.tm_year
*365) -
898 (tm_now
.tm_yday
+tm_now
.tm_year
*365);
901 ret
= _make_remark(ctx
, PAM_TEXT_INFO
,
902 _("Your password expires today.\n"));
905 * If change_pwd and already_expired is null.
906 * We are just sending a notification message.
907 * We don't expect any response in this case.
910 if (!change_pwd
&& !already_expired
) {
915 * successfully sent the warning message.
916 * Give the user a chance to change pwd.
918 if (ret
== PAM_SUCCESS
) {
920 retval
= _pam_winbind_change_pwd(ctx
);
929 if (days
> 0 && days
< warn_pwd_expire
) {
931 ret
= _make_remark_format(ctx
, PAM_TEXT_INFO
,
932 _("Your password will expire in %d %s.\n"),
933 days
, (days
> 1) ? _("days"):_("day"));
935 * If change_pwd and already_expired is null.
936 * We are just sending a notification message.
937 * We don't expect any response in this case.
940 if (!change_pwd
&& !already_expired
) {
945 * successfully sent the warning message.
946 * Give the user a chance to change pwd.
948 if (ret
== PAM_SUCCESS
) {
950 retval
= _pam_winbind_change_pwd(ctx
);
963 * Send a warning if the password expires in the near future
965 * @param ctx PAM winbind context.
966 * @param response The full authentication response structure.
967 * @param already_expired boolean, is the pwd already expired?
972 static void _pam_warn_password_expiry(struct pwb_context
*ctx
,
973 const struct wbcAuthUserInfo
*info
,
974 const struct wbcUserPasswordPolicyInfo
*policy
,
976 bool *already_expired
,
979 time_t now
= time(NULL
);
980 time_t next_change
= 0;
982 if (!info
|| !policy
) {
986 if (already_expired
) {
987 *already_expired
= false;
994 /* accounts with WBC_ACB_PWNOEXP set never receive a warning */
995 if (info
->acct_flags
& WBC_ACB_PWNOEXP
) {
999 /* no point in sending a warning if this is a grace logon */
1000 if (PAM_WB_GRACE_LOGON(info
->user_flags
)) {
1004 /* check if the info3 must change timestamp has been set */
1005 next_change
= info
->pass_must_change_time
;
1007 if (_pam_send_password_expiry_message(ctx
, next_change
, now
,
1014 /* now check for the global password policy */
1015 /* good catch from Ralf Haferkamp: an expiry of "never" is translated
1017 if ((policy
->expire
== (int64_t)-1) ||
1018 (policy
->expire
== 0)) {
1022 next_change
= info
->pass_last_set_time
+ policy
->expire
;
1024 if (_pam_send_password_expiry_message(ctx
, next_change
, now
,
1031 /* no warning sent */
1034 #define IS_SID_STRING(name) (strncmp("S-", name, 2) == 0)
1037 * Append a string, making sure not to overflow and to always return a
1038 * NULL-terminated string.
1040 * @param dest Destination string buffer (must already be NULL-terminated).
1041 * @param src Source string buffer.
1042 * @param dest_buffer_size Size of dest buffer in bytes.
1044 * @return false if dest buffer is not big enough (no bytes copied), true on
1048 static bool safe_append_string(char *dest
,
1050 int dest_buffer_size
)
1052 int dest_length
= strlen(dest
);
1053 int src_length
= strlen(src
);
1055 if (dest_length
+ src_length
+ 1 > dest_buffer_size
) {
1059 memcpy(dest
+ dest_length
, src
, src_length
+ 1);
1064 * Convert a names into a SID string, appending it to a buffer.
1066 * @param ctx PAM winbind context.
1067 * @param user User in PAM request.
1068 * @param name Name to convert.
1069 * @param sid_list_buffer Where to append the string sid.
1070 * @param sid_list_buffer Size of sid_list_buffer (in bytes).
1072 * @return false on failure, true on success.
1074 static bool winbind_name_to_sid_string(struct pwb_context
*ctx
,
1077 char *sid_list_buffer
,
1078 int sid_list_buffer_size
)
1080 char sid_string
[WBC_SID_STRING_BUFLEN
];
1083 if (IS_SID_STRING(name
)) {
1084 strlcpy(sid_string
, name
, sizeof(sid_string
));
1087 struct wbcDomainSid sid
;
1088 enum wbcSidType type
;
1090 _pam_log_debug(ctx
, LOG_DEBUG
,
1091 "no sid given, looking up: %s\n", name
);
1093 wbc_status
= wbcLookupName("", name
, &sid
, &type
);
1094 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1095 _pam_log(ctx
, LOG_INFO
,
1096 "could not lookup name: %s\n", name
);
1100 wbcSidToStringBuf(&sid
, sid_string
, sizeof(sid_string
));
1103 if (!safe_append_string(sid_list_buffer
, sid_string
,
1104 sid_list_buffer_size
)) {
1111 * Convert a list of names into a list of sids.
1113 * @param ctx PAM winbind context.
1114 * @param user User in PAM request.
1115 * @param name_list List of names or string sids, separated by commas.
1116 * @param sid_list_buffer Where to put the list of string sids.
1117 * @param sid_list_buffer Size of sid_list_buffer (in bytes).
1119 * @return false on failure, true on success.
1121 static bool winbind_name_list_to_sid_string_list(struct pwb_context
*ctx
,
1123 const char *name_list
,
1124 char *sid_list_buffer
,
1125 int sid_list_buffer_size
)
1127 bool result
= false;
1128 char *current_name
= NULL
;
1129 const char *search_location
;
1133 if (sid_list_buffer_size
> 0) {
1134 sid_list_buffer
[0] = 0;
1137 search_location
= name_list
;
1138 while ((comma
= strchr(search_location
, ',')) != NULL
) {
1139 current_name
= strndup(search_location
,
1140 comma
- search_location
);
1141 if (NULL
== current_name
) {
1145 if (!winbind_name_to_sid_string(ctx
, user
,
1148 sid_list_buffer_size
)) {
1150 * If one group name failed, we must not fail
1151 * the authentication totally, continue with
1152 * the following group names. If user belongs to
1153 * one of the valid groups, we must allow it
1157 _pam_log(ctx
, LOG_INFO
, "cannot convert group %s to sid, "
1158 "check if group %s is valid group.", current_name
,
1160 _make_remark_format(ctx
, PAM_TEXT_INFO
, _("Cannot convert group %s "
1161 "to sid, please contact your administrator to see "
1162 "if group %s is valid."), current_name
, current_name
);
1163 SAFE_FREE(current_name
);
1164 search_location
= comma
+ 1;
1168 SAFE_FREE(current_name
);
1170 if (!safe_append_string(sid_list_buffer
, ",",
1171 sid_list_buffer_size
)) {
1175 search_location
= comma
+ 1;
1178 if (!winbind_name_to_sid_string(ctx
, user
, search_location
,
1180 sid_list_buffer_size
)) {
1181 _pam_log(ctx
, LOG_INFO
, "cannot convert group %s to sid, "
1182 "check if group %s is valid group.", search_location
,
1184 _make_remark_format(ctx
, PAM_TEXT_INFO
, _("Cannot convert group %s "
1185 "to sid, please contact your administrator to see "
1186 "if group %s is valid."), search_location
, search_location
);
1188 * The lookup of the last name failed..
1189 * It results in require_member_of_sid ends with ','
1190 * It is malformated parameter here, overwrite the last ','.
1192 len
= strlen(sid_list_buffer
);
1193 if ((len
!= 0) && (sid_list_buffer
[len
- 1] == ',')) {
1194 sid_list_buffer
[len
- 1] = '\0';
1201 SAFE_FREE(current_name
);
1206 * put krb5ccname variable into environment
1208 * @param ctx PAM winbind context.
1209 * @param krb5ccname env variable retrieved from winbindd.
1214 static void _pam_setup_krb5_env(struct pwb_context
*ctx
,
1215 struct wbcLogonUserInfo
*info
)
1220 const char *krb5ccname
= NULL
;
1222 if (off(ctx
->ctrl
, WINBIND_KRB5_AUTH
)) {
1230 for (i
=0; i
< info
->num_blobs
; i
++) {
1231 if (strcasecmp(info
->blobs
[i
].name
, "krb5ccname") == 0) {
1232 krb5ccname
= (const char *)info
->blobs
[i
].blob
.data
;
1237 if (!krb5ccname
|| (strlen(krb5ccname
) == 0)) {
1241 _pam_log_debug(ctx
, LOG_DEBUG
,
1242 "request returned KRB5CCNAME: %s", krb5ccname
);
1244 if (asprintf(&var
, "KRB5CCNAME=%s", krb5ccname
) == -1) {
1248 ret
= pam_putenv(ctx
->pamh
, var
);
1250 _pam_log(ctx
, LOG_ERR
,
1251 "failed to set KRB5CCNAME to %s: %s",
1252 var
, pam_strerror(ctx
->pamh
, ret
));
1258 * Copy unix username if available (further processed in PAM).
1260 * @param ctx PAM winbind context
1261 * @param user_ret A pointer that holds a pointer to a string
1262 * @param unix_username A username
1267 static void _pam_setup_unix_username(struct pwb_context
*ctx
,
1269 struct wbcLogonUserInfo
*info
)
1271 const char *unix_username
= NULL
;
1274 if (!user_ret
|| !info
) {
1278 for (i
=0; i
< info
->num_blobs
; i
++) {
1279 if (strcasecmp(info
->blobs
[i
].name
, "unix_username") == 0) {
1280 unix_username
= (const char *)info
->blobs
[i
].blob
.data
;
1285 if (!unix_username
|| !unix_username
[0]) {
1289 *user_ret
= strdup(unix_username
);
1293 * Set string into the PAM stack.
1295 * @param ctx PAM winbind context.
1296 * @param data_name Key name for pam_set_data.
1297 * @param value String value.
1302 static void _pam_set_data_string(struct pwb_context
*ctx
,
1303 const char *data_name
,
1308 if (!data_name
|| !value
|| (strlen(data_name
) == 0) ||
1309 (strlen(value
) == 0)) {
1313 ret
= pam_set_data(ctx
->pamh
, data_name
, talloc_strdup(NULL
, value
),
1314 _pam_winbind_cleanup_func
);
1316 _pam_log_debug(ctx
, LOG_DEBUG
,
1317 "Could not set data %s: %s\n",
1318 data_name
, pam_strerror(ctx
->pamh
, ret
));
1323 * Set info3 strings into the PAM stack.
1325 * @param ctx PAM winbind context.
1326 * @param data_name Key name for pam_set_data.
1327 * @param value String value.
1332 static void _pam_set_data_info3(struct pwb_context
*ctx
,
1333 const struct wbcAuthUserInfo
*info
)
1335 _pam_set_data_string(ctx
, PAM_WINBIND_HOMEDIR
,
1336 info
->home_directory
);
1337 _pam_set_data_string(ctx
, PAM_WINBIND_LOGONSCRIPT
,
1338 info
->logon_script
);
1339 _pam_set_data_string(ctx
, PAM_WINBIND_LOGONSERVER
,
1340 info
->logon_server
);
1341 _pam_set_data_string(ctx
, PAM_WINBIND_PROFILEPATH
,
1342 info
->profile_path
);
1346 * Free info3 strings in the PAM stack.
1348 * @param pamh PAM handle
1353 static void _pam_free_data_info3(pam_handle_t
*pamh
)
1355 pam_set_data(pamh
, PAM_WINBIND_HOMEDIR
, NULL
, NULL
);
1356 pam_set_data(pamh
, PAM_WINBIND_LOGONSCRIPT
, NULL
, NULL
);
1357 pam_set_data(pamh
, PAM_WINBIND_LOGONSERVER
, NULL
, NULL
);
1358 pam_set_data(pamh
, PAM_WINBIND_PROFILEPATH
, NULL
, NULL
);
1362 * Send PAM_ERROR_MSG for cached or grace logons.
1364 * @param ctx PAM winbind context.
1365 * @param username User in PAM request.
1366 * @param info3_user_flgs Info3 flags containing logon type bits.
1371 static void _pam_warn_logon_type(struct pwb_context
*ctx
,
1372 const char *username
,
1373 uint32_t info3_user_flgs
)
1375 /* inform about logon type */
1376 if (PAM_WB_GRACE_LOGON(info3_user_flgs
)) {
1378 _make_remark(ctx
, PAM_ERROR_MSG
,
1380 "Please change your password as soon you're "
1382 _pam_log_debug(ctx
, LOG_DEBUG
,
1383 "User %s logged on using grace logon\n",
1386 } else if (PAM_WB_CACHED_LOGON(info3_user_flgs
)) {
1388 _make_remark(ctx
, PAM_ERROR_MSG
,
1389 _("Domain Controller unreachable, "
1390 "using cached credentials instead. "
1391 "Network resources may be unavailable"));
1392 _pam_log_debug(ctx
, LOG_DEBUG
,
1393 "User %s logged on using cached credentials\n",
1399 * Send PAM_ERROR_MSG for krb5 errors.
1401 * @param ctx PAM winbind context.
1402 * @param username User in PAM request.
1403 * @param info3_user_flgs Info3 flags containing logon type bits.
1408 static void _pam_warn_krb5_failure(struct pwb_context
*ctx
,
1409 const char *username
,
1410 uint32_t info3_user_flgs
)
1412 if (PAM_WB_KRB5_CLOCK_SKEW(info3_user_flgs
)) {
1413 _make_remark(ctx
, PAM_ERROR_MSG
,
1414 _("Failed to establish your Kerberos Ticket cache "
1415 "due time differences\n"
1416 "with the domain controller. "
1417 "Please verify the system time.\n"));
1418 _pam_log_debug(ctx
, LOG_DEBUG
,
1419 "User %s: Clock skew when getting Krb5 TGT\n",
1424 static bool _pam_check_remark_auth_err(struct pwb_context
*ctx
,
1425 const struct wbcAuthErrorInfo
*e
,
1426 const char *nt_status_string
,
1429 const char *ntstatus
= NULL
;
1430 const char *error_string
= NULL
;
1432 if (!e
|| !pam_err
) {
1436 ntstatus
= e
->nt_string
;
1441 if (strcasecmp(ntstatus
, nt_status_string
) == 0) {
1443 error_string
= _get_ntstatus_error_string(nt_status_string
);
1445 _make_remark(ctx
, PAM_ERROR_MSG
, error_string
);
1446 *pam_err
= e
->pam_error
;
1450 if (e
->display_string
) {
1451 _make_remark(ctx
, PAM_ERROR_MSG
, _(e
->display_string
));
1452 *pam_err
= e
->pam_error
;
1456 _make_remark(ctx
, PAM_ERROR_MSG
, nt_status_string
);
1457 *pam_err
= e
->pam_error
;
1466 * Compose Password Restriction String for a PAM_ERROR_MSG conversation.
1468 * @param i The wbcUserPasswordPolicyInfo struct.
1470 * @return string (caller needs to talloc_free).
1473 static char *_pam_compose_pwd_restriction_string(struct pwb_context
*ctx
,
1474 struct wbcUserPasswordPolicyInfo
*i
)
1482 str
= talloc_asprintf(ctx
, _("Your password "));
1487 if (i
->min_length_password
> 0) {
1488 str
= talloc_asprintf_append(str
,
1489 _("must be at least %d characters; "),
1490 i
->min_length_password
);
1496 if (i
->password_history
> 0) {
1497 str
= talloc_asprintf_append(str
,
1498 _("cannot repeat any of your previous %d "
1500 i
->password_history
);
1506 if (i
->password_properties
& WBC_DOMAIN_PASSWORD_COMPLEX
) {
1507 str
= talloc_asprintf_append(str
,
1508 _("must contain capitals, numerals "
1510 "and cannot contain your account "
1517 str
= talloc_asprintf_append(str
,
1518 _("Please type a different password. "
1519 "Type a password which meets these requirements in "
1520 "both text boxes."));
1532 static int _pam_create_homedir(struct pwb_context
*ctx
,
1533 const char *dirname
,
1538 if (stat(dirname
, &sbuf
) == 0) {
1542 if (mkdir(dirname
, mode
) != 0) {
1544 _make_remark_format(ctx
, PAM_TEXT_INFO
,
1545 _("Creating directory: %s failed: %s"),
1546 dirname
, strerror(errno
));
1547 _pam_log(ctx
, LOG_ERR
, "could not create dir: %s (%s)",
1548 dirname
, strerror(errno
));
1549 return PAM_PERM_DENIED
;
1555 static int _pam_chown_homedir(struct pwb_context
*ctx
,
1556 const char *dirname
,
1560 if (chown(dirname
, uid
, gid
) != 0) {
1561 _pam_log(ctx
, LOG_ERR
, "failed to chown user homedir: %s (%s)",
1562 dirname
, strerror(errno
));
1563 return PAM_PERM_DENIED
;
1569 static int _pam_mkhomedir(struct pwb_context
*ctx
)
1571 struct passwd
*pwd
= NULL
;
1573 char *create_dir
= NULL
;
1574 char *user_dir
= NULL
;
1576 const char *username
;
1578 char *safe_ptr
= NULL
;
1581 /* Get the username */
1582 ret
= pam_get_user(ctx
->pamh
, &username
, NULL
);
1583 if ((ret
!= PAM_SUCCESS
) || (!username
)) {
1584 _pam_log_debug(ctx
, LOG_DEBUG
, "can not get the username");
1585 return PAM_SERVICE_ERR
;
1588 pwd
= getpwnam(username
);
1590 _pam_log_debug(ctx
, LOG_DEBUG
, "can not get the username");
1591 return PAM_USER_UNKNOWN
;
1593 _pam_log_debug(ctx
, LOG_DEBUG
, "homedir is: %s", pwd
->pw_dir
);
1595 ret
= _pam_create_homedir(ctx
, pwd
->pw_dir
, 0700);
1596 if (ret
== PAM_SUCCESS
) {
1597 ret
= _pam_chown_homedir(ctx
, pwd
->pw_dir
,
1602 if (ret
== PAM_SUCCESS
) {
1606 /* maybe we need to create parent dirs */
1607 create_dir
= talloc_strdup(ctx
, "/");
1612 /* find final directory */
1613 user_dir
= strrchr(pwd
->pw_dir
, '/');
1619 _pam_log(ctx
, LOG_DEBUG
, "final directory: %s", user_dir
);
1623 while ((token
= strtok_r(p
, "/", &safe_ptr
)) != NULL
) {
1629 _pam_log_debug(ctx
, LOG_DEBUG
, "token is %s", token
);
1631 create_dir
= talloc_asprintf_append(create_dir
, "%s/", token
);
1635 _pam_log_debug(ctx
, LOG_DEBUG
, "current_dir is %s", create_dir
);
1637 if (strcmp(token
, user_dir
) == 0) {
1638 _pam_log_debug(ctx
, LOG_DEBUG
, "assuming last directory: %s", token
);
1642 ret
= _pam_create_homedir(ctx
, create_dir
, mode
);
1648 return _pam_chown_homedir(ctx
, create_dir
,
1653 /* talk to winbindd */
1654 static int winbind_auth_request(struct pwb_context
*ctx
,
1659 const int warn_pwd_expire
,
1660 struct wbcAuthErrorInfo
**p_error
,
1661 struct wbcLogonUserInfo
**p_info
,
1662 struct wbcUserPasswordPolicyInfo
**p_policy
,
1663 time_t *pwd_last_set
,
1668 struct wbcLogonUserParams logon
;
1669 char membership_of
[1024];
1670 uid_t user_uid
= -1;
1671 uint32_t flags
= WBFLAG_PAM_INFO3_TEXT
|
1672 WBFLAG_PAM_GET_PWD_POLICY
;
1674 struct wbcLogonUserInfo
*info
= NULL
;
1675 struct wbcAuthUserInfo
*user_info
= NULL
;
1676 struct wbcAuthErrorInfo
*error
= NULL
;
1677 struct wbcUserPasswordPolicyInfo
*policy
= NULL
;
1679 int ret
= PAM_AUTH_ERR
;
1681 const char *codes
[] = {
1682 "NT_STATUS_PASSWORD_EXPIRED",
1683 "NT_STATUS_PASSWORD_MUST_CHANGE",
1684 "NT_STATUS_INVALID_WORKSTATION",
1685 "NT_STATUS_INVALID_LOGON_HOURS",
1686 "NT_STATUS_ACCOUNT_EXPIRED",
1687 "NT_STATUS_ACCOUNT_DISABLED",
1688 "NT_STATUS_ACCOUNT_LOCKED_OUT",
1689 "NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT",
1690 "NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT",
1691 "NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT",
1692 "NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND",
1693 "NT_STATUS_NO_LOGON_SERVERS",
1694 "NT_STATUS_WRONG_PASSWORD",
1695 "NT_STATUS_ACCESS_DENIED"
1702 /* Krb5 auth always has to go against the KDC of the user's realm */
1704 if (ctx
->ctrl
& WINBIND_KRB5_AUTH
) {
1705 flags
|= WBFLAG_PAM_CONTACT_TRUSTDOM
;
1708 if (ctx
->ctrl
& (WINBIND_KRB5_AUTH
|WINBIND_CACHED_LOGIN
)) {
1709 struct passwd
*pwd
= NULL
;
1711 pwd
= getpwnam(user
);
1713 return PAM_USER_UNKNOWN
;
1715 user_uid
= pwd
->pw_uid
;
1718 if (ctx
->ctrl
& WINBIND_KRB5_AUTH
) {
1720 _pam_log_debug(ctx
, LOG_DEBUG
,
1721 "enabling krb5 login flag\n");
1723 flags
|= WBFLAG_PAM_KRB5
|
1724 WBFLAG_PAM_FALLBACK_AFTER_KRB5
;
1727 if (ctx
->ctrl
& WINBIND_CACHED_LOGIN
) {
1728 _pam_log_debug(ctx
, LOG_DEBUG
,
1729 "enabling cached login flag\n");
1730 flags
|= WBFLAG_PAM_CACHED_LOGIN
;
1735 flags
|= WBFLAG_PAM_UNIX_NAME
;
1738 if (cctype
!= NULL
) {
1739 _pam_log_debug(ctx
, LOG_DEBUG
,
1740 "enabling request for a %s krb5 ccache\n",
1744 if (member
!= NULL
) {
1746 ZERO_STRUCT(membership_of
);
1748 if (!winbind_name_list_to_sid_string_list(ctx
, user
, member
,
1750 sizeof(membership_of
))) {
1751 _pam_log_debug(ctx
, LOG_ERR
,
1752 "failed to serialize membership of sid "
1753 "\"%s\"\n", member
);
1754 return PAM_AUTH_ERR
;
1760 logon
.username
= user
;
1761 logon
.password
= pass
;
1764 wbc_status
= wbcAddNamedBlob(&logon
.num_blobs
,
1768 discard_const_p(uint8_t, cctype
),
1770 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1775 wbc_status
= wbcAddNamedBlob(&logon
.num_blobs
,
1781 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1785 wbc_status
= wbcAddNamedBlob(&logon
.num_blobs
,
1789 (uint8_t *)&user_uid
,
1791 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1796 wbc_status
= wbcAddNamedBlob(&logon
.num_blobs
,
1800 (uint8_t *)membership_of
,
1801 sizeof(membership_of
));
1802 if (!WBC_ERROR_IS_OK(wbc_status
)) {
1807 wbc_status
= wbcLogonUser(&logon
, &info
, &error
, &policy
);
1808 ret
= wbc_auth_error_to_pam_error(ctx
, error
, wbc_status
,
1809 user
, "wbcLogonUser");
1810 wbcFreeMemory(logon
.blobs
);
1813 if (info
&& info
->info
) {
1814 user_info
= info
->info
;
1817 if (pwd_last_set
&& user_info
) {
1818 *pwd_last_set
= user_info
->pass_last_set_time
;
1821 if (p_info
&& info
) {
1825 if (p_policy
&& policy
) {
1829 if (p_error
&& error
) {
1830 /* We want to process the error in the caller. */
1835 for (i
=0; i
<ARRAY_SIZE(codes
); i
++) {
1837 if (_pam_check_remark_auth_err(ctx
, error
, codes
[i
], &_ret
)) {
1843 if ((ret
== PAM_SUCCESS
) && user_info
&& policy
&& info
) {
1845 bool already_expired
= false;
1846 bool change_pwd
= false;
1848 /* warn a user if the password is about to expire soon */
1849 _pam_warn_password_expiry(ctx
, user_info
, policy
,
1854 if (already_expired
== true) {
1856 SMB_TIME_T last_set
= user_info
->pass_last_set_time
;
1858 _pam_log_debug(ctx
, LOG_DEBUG
,
1859 "Password has expired "
1860 "(Password was last set: %lld, "
1861 "the policy says it should expire here "
1862 "%lld (now it's: %ld))\n",
1863 (long long int)last_set
,
1864 (long long int)last_set
+
1868 return PAM_AUTHTOK_EXPIRED
;
1872 ret
= PAM_NEW_AUTHTOK_REQD
;
1876 /* inform about logon type */
1877 _pam_warn_logon_type(ctx
, user
, user_info
->user_flags
);
1879 /* inform about krb5 failures */
1880 _pam_warn_krb5_failure(ctx
, user
, user_info
->user_flags
);
1882 /* set some info3 info for other modules in the stack */
1883 _pam_set_data_info3(ctx
, user_info
);
1885 /* put krb5ccname into env */
1886 _pam_setup_krb5_env(ctx
, info
);
1888 /* If winbindd returned a username, return the pointer to it
1890 _pam_setup_unix_username(ctx
, user_ret
, info
);
1894 wbcFreeMemory(logon
.blobs
);
1895 if (info
&& info
->blobs
&& !p_info
) {
1896 wbcFreeMemory(info
->blobs
);
1898 if (error
&& !p_error
) {
1899 wbcFreeMemory(error
);
1901 if (info
&& !p_info
) {
1902 wbcFreeMemory(info
);
1904 if (policy
&& !p_policy
) {
1905 wbcFreeMemory(policy
);
1911 /* talk to winbindd */
1912 static int winbind_chauthtok_request(struct pwb_context
*ctx
,
1914 const char *oldpass
,
1915 const char *newpass
,
1916 time_t pwd_last_set
)
1919 struct wbcChangePasswordParams params
;
1920 struct wbcAuthErrorInfo
*error
= NULL
;
1921 struct wbcUserPasswordPolicyInfo
*policy
= NULL
;
1922 enum wbcPasswordChangeRejectReason reject_reason
= -1;
1926 const char *codes
[] = {
1927 "NT_STATUS_BACKUP_CONTROLLER",
1928 "NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND",
1929 "NT_STATUS_NO_LOGON_SERVERS",
1930 "NT_STATUS_ACCESS_DENIED",
1931 "NT_STATUS_PWD_TOO_SHORT", /* TODO: tell the min pwd length ? */
1932 "NT_STATUS_PWD_TOO_RECENT", /* TODO: tell the minage ? */
1933 "NT_STATUS_PWD_HISTORY_CONFLICT" /* TODO: tell the history length ? */
1935 int ret
= PAM_AUTH_ERR
;
1937 ZERO_STRUCT(params
);
1939 if (ctx
->ctrl
& WINBIND_KRB5_AUTH
) {
1940 flags
|= WBFLAG_PAM_KRB5
|
1941 WBFLAG_PAM_CONTACT_TRUSTDOM
;
1944 if (ctx
->ctrl
& WINBIND_CACHED_LOGIN
) {
1945 flags
|= WBFLAG_PAM_CACHED_LOGIN
;
1948 params
.account_name
= user
;
1949 params
.level
= WBC_CHANGE_PASSWORD_LEVEL_PLAIN
;
1950 params
.old_password
.plaintext
= oldpass
;
1951 params
.new_password
.plaintext
= newpass
;
1952 params
.flags
= flags
;
1954 wbc_status
= wbcChangeUserPasswordEx(¶ms
, &error
, &reject_reason
, &policy
);
1955 ret
= wbc_auth_error_to_pam_error(ctx
, error
, wbc_status
,
1956 user
, "wbcChangeUserPasswordEx");
1958 if (WBC_ERROR_IS_OK(wbc_status
)) {
1959 _pam_log(ctx
, LOG_NOTICE
,
1960 "user '%s' password changed", user
);
1965 wbcFreeMemory(policy
);
1969 for (i
=0; i
<ARRAY_SIZE(codes
); i
++) {
1971 if (_pam_check_remark_auth_err(ctx
, error
, codes
[i
], &_ret
)) {
1977 if (!strcasecmp(error
->nt_string
,
1978 "NT_STATUS_PASSWORD_RESTRICTION")) {
1980 char *pwd_restriction_string
= NULL
;
1981 SMB_TIME_T min_pwd_age
= 0;
1984 min_pwd_age
= policy
->min_passwordage
;
1987 /* FIXME: avoid to send multiple PAM messages after another */
1988 switch (reject_reason
) {
1991 case WBC_PWD_CHANGE_NO_ERROR
:
1992 if ((min_pwd_age
> 0) &&
1993 (pwd_last_set
+ min_pwd_age
> time(NULL
))) {
1994 PAM_WB_REMARK_DIRECT(ctx
,
1995 "NT_STATUS_PWD_TOO_RECENT");
1998 case WBC_PWD_CHANGE_PASSWORD_TOO_SHORT
:
1999 PAM_WB_REMARK_DIRECT(ctx
,
2000 "NT_STATUS_PWD_TOO_SHORT");
2002 case WBC_PWD_CHANGE_PWD_IN_HISTORY
:
2003 PAM_WB_REMARK_DIRECT(ctx
,
2004 "NT_STATUS_PWD_HISTORY_CONFLICT");
2006 case WBC_PWD_CHANGE_NOT_COMPLEX
:
2007 _make_remark(ctx
, PAM_ERROR_MSG
,
2008 _("Password does not meet "
2009 "complexity requirements"));
2012 _pam_log_debug(ctx
, LOG_DEBUG
,
2013 "unknown password change "
2014 "reject reason: %d",
2019 pwd_restriction_string
=
2020 _pam_compose_pwd_restriction_string(ctx
, policy
);
2021 if (pwd_restriction_string
) {
2022 _make_remark(ctx
, PAM_ERROR_MSG
,
2023 pwd_restriction_string
);
2024 TALLOC_FREE(pwd_restriction_string
);
2028 wbcFreeMemory(error
);
2029 wbcFreeMemory(policy
);
2035 * Checks if a user has an account
2038 * 1 = User not found
2042 static int valid_user(struct pwb_context
*ctx
,
2045 /* check not only if the user is available over NSS calls, also make
2046 * sure it's really a winbind user, this is important when stacking PAM
2047 * modules in the 'account' or 'password' facility. */
2050 struct passwd
*pwd
= NULL
;
2051 struct passwd
*wb_pwd
= NULL
;
2053 pwd
= getpwnam(user
);
2058 wbc_status
= wbcGetpwnam(user
, &wb_pwd
);
2059 wbcFreeMemory(wb_pwd
);
2060 if (!WBC_ERROR_IS_OK(wbc_status
)) {
2061 _pam_log(ctx
, LOG_DEBUG
, "valid_user: wbcGetpwnam gave %s\n",
2062 wbcErrorString(wbc_status
));
2065 switch (wbc_status
) {
2066 case WBC_ERR_UNKNOWN_USER
:
2067 /* match other insane libwbclient return codes */
2068 case WBC_ERR_WINBIND_NOT_AVAILABLE
:
2069 case WBC_ERR_DOMAIN_NOT_FOUND
:
2071 case WBC_ERR_SUCCESS
:
2079 static char *_pam_delete(register char *xx
)
2087 * obtain a password from the user
2090 static int _winbind_read_password(struct pwb_context
*ctx
,
2092 const char *comment
,
2093 const char *prompt1
,
2094 const char *prompt2
,
2102 _pam_log(ctx
, LOG_DEBUG
, "getting password (0x%08x)", ctrl
);
2105 * make sure nothing inappropriate gets returned
2108 *pass
= token
= NULL
;
2111 * which authentication token are we getting?
2114 if (on(WINBIND__OLD_PASSWORD
, ctrl
)) {
2115 authtok_flag
= PAM_OLDAUTHTOK
;
2117 authtok_flag
= PAM_AUTHTOK
;
2121 * should we obtain the password from a PAM item ?
2124 if (on(WINBIND_TRY_FIRST_PASS_ARG
, ctrl
) ||
2125 on(WINBIND_USE_FIRST_PASS_ARG
, ctrl
)) {
2126 retval
= _pam_get_item(ctx
->pamh
, authtok_flag
, &item
);
2127 if (retval
!= PAM_SUCCESS
) {
2129 _pam_log(ctx
, LOG_ALERT
,
2130 "pam_get_item returned error "
2131 "to unix-read-password");
2133 } else if (item
!= NULL
) { /* we have a password! */
2136 _pam_log(ctx
, LOG_DEBUG
,
2137 "pam_get_item returned a password");
2139 } else if (on(WINBIND_USE_FIRST_PASS_ARG
, ctrl
)) {
2140 return PAM_AUTHTOK_RECOVER_ERR
; /* didn't work */
2141 } else if (on(WINBIND_USE_AUTHTOK_ARG
, ctrl
)
2142 && off(WINBIND__OLD_PASSWORD
, ctrl
)) {
2143 return PAM_AUTHTOK_RECOVER_ERR
;
2147 * getting here implies we will have to get the password from the
2152 struct pam_message msg
[3], *pmsg
[3];
2153 struct pam_response
*resp
;
2156 /* prepare to converse */
2158 if (comment
!= NULL
&& off(ctrl
, WINBIND_SILENT
)) {
2160 msg
[0].msg_style
= PAM_TEXT_INFO
;
2161 msg
[0].msg
= discard_const_p(char, comment
);
2168 msg
[i
].msg_style
= PAM_PROMPT_ECHO_OFF
;
2169 msg
[i
++].msg
= discard_const_p(char, prompt1
);
2172 if (prompt2
!= NULL
) {
2174 msg
[i
].msg_style
= PAM_PROMPT_ECHO_OFF
;
2175 msg
[i
++].msg
= discard_const_p(char, prompt2
);
2178 /* so call the conversation expecting i responses */
2180 retval
= converse(ctx
->pamh
, i
, pmsg
, &resp
);
2182 if (retval
== PAM_SUCCESS
) {
2183 retval
= PAM_AUTHTOK_RECOVER_ERR
;
2187 if (retval
!= PAM_SUCCESS
) {
2188 _pam_drop_reply(resp
, i
);
2192 /* interpret the response */
2194 token
= x_strdup(resp
[i
- replies
].resp
);
2196 _pam_log(ctx
, LOG_NOTICE
,
2197 "could not recover "
2198 "authentication token");
2199 retval
= PAM_AUTHTOK_RECOVER_ERR
;
2204 /* verify that password entered correctly */
2205 if (!resp
[i
- 1].resp
||
2206 strcmp(token
, resp
[i
- 1].resp
)) {
2207 _pam_delete(token
); /* mistyped */
2208 retval
= PAM_AUTHTOK_RECOVER_ERR
;
2209 _make_remark(ctx
, PAM_ERROR_MSG
,
2215 * tidy up the conversation (resp_retcode) is ignored
2216 * -- what is it for anyway? AGM
2218 _pam_drop_reply(resp
, i
);
2222 if (retval
!= PAM_SUCCESS
) {
2223 _pam_log_debug(ctx
, LOG_DEBUG
,
2224 "unable to obtain a password");
2227 /* 'token' is the entered password */
2229 /* we store this password as an item */
2231 retval
= pam_set_item(ctx
->pamh
, authtok_flag
, token
);
2232 _pam_delete(token
); /* clean it up */
2233 if (retval
!= PAM_SUCCESS
||
2234 (retval
= _pam_get_item(ctx
->pamh
, authtok_flag
, &item
)) != PAM_SUCCESS
) {
2236 _pam_log(ctx
, LOG_CRIT
, "error manipulating password");
2242 item
= NULL
; /* break link to password */
2247 static const char *get_conf_item_string(struct pwb_context
*ctx
,
2252 const char *parm_opt
= NULL
;
2254 if (!(ctx
->ctrl
& config_flag
)) {
2258 /* let the pam opt take precedence over the pam_winbind.conf option */
2259 for (i
=0; i
<ctx
->argc
; i
++) {
2261 if ((strncmp(ctx
->argv
[i
], item
, strlen(item
)) == 0)) {
2264 if ((p
= strchr(ctx
->argv
[i
], '=')) == NULL
) {
2265 _pam_log(ctx
, LOG_INFO
,
2266 "no \"=\" delimiter for \"%s\" found\n",
2270 _pam_log_debug(ctx
, LOG_INFO
,
2271 "PAM config: %s '%s'\n", item
, p
+1);
2279 key
= talloc_asprintf(ctx
, "global:%s", item
);
2284 parm_opt
= iniparser_getstring(ctx
->dict
, key
, NULL
);
2287 _pam_log_debug(ctx
, LOG_INFO
, "CONFIG file: %s '%s'\n",
2294 static int get_config_item_int(struct pwb_context
*ctx
,
2298 int i
, parm_opt
= -1;
2300 if (!(ctx
->ctrl
& config_flag
)) {
2304 /* let the pam opt take precedence over the pam_winbind.conf option */
2305 for (i
= 0; i
< ctx
->argc
; i
++) {
2307 if ((strncmp(ctx
->argv
[i
], item
, strlen(item
)) == 0)) {
2310 if ((p
= strchr(ctx
->argv
[i
], '=')) == NULL
) {
2311 _pam_log(ctx
, LOG_INFO
,
2312 "no \"=\" delimiter for \"%s\" found\n",
2316 parm_opt
= atoi(p
+ 1);
2317 _pam_log_debug(ctx
, LOG_INFO
,
2318 "PAM config: %s '%d'\n",
2327 key
= talloc_asprintf(ctx
, "global:%s", item
);
2332 parm_opt
= iniparser_getint(ctx
->dict
, key
, -1);
2335 _pam_log_debug(ctx
, LOG_INFO
,
2336 "CONFIG file: %s '%d'\n",
2343 static const char *get_krb5_cc_type_from_config(struct pwb_context
*ctx
)
2345 return get_conf_item_string(ctx
, "krb5_ccache_type",
2346 WINBIND_KRB5_CCACHE_TYPE
);
2349 static const char *get_member_from_config(struct pwb_context
*ctx
)
2351 const char *ret
= NULL
;
2352 ret
= get_conf_item_string(ctx
, "require_membership_of",
2353 WINBIND_REQUIRED_MEMBERSHIP
);
2357 return get_conf_item_string(ctx
, "require-membership-of",
2358 WINBIND_REQUIRED_MEMBERSHIP
);
2361 static int get_warn_pwd_expire_from_config(struct pwb_context
*ctx
)
2364 ret
= get_config_item_int(ctx
, "warn_pwd_expire",
2365 WINBIND_WARN_PWD_EXPIRE
);
2366 /* no or broken setting */
2368 return DEFAULT_DAYS_TO_WARN_BEFORE_PWD_EXPIRES
;
2374 * Retrieve the winbind separator.
2376 * @param ctx PAM winbind context.
2378 * @return string separator character. NULL on failure.
2381 static char winbind_get_separator(struct pwb_context
*ctx
)
2384 static struct wbcInterfaceDetails
*details
= NULL
;
2386 wbc_status
= wbcInterfaceDetails(&details
);
2387 if (!WBC_ERROR_IS_OK(wbc_status
)) {
2388 _pam_log(ctx
, LOG_ERR
,
2389 "Could not retrieve winbind interface details: %s",
2390 wbcErrorString(wbc_status
));
2398 return details
->winbind_separator
;
2403 * Convert a upn to a name.
2405 * @param ctx PAM winbind context.
2406 * @param upn USer UPN to be trabslated.
2408 * @return converted name. NULL pointer on failure. Caller needs to free.
2411 static char* winbind_upn_to_username(struct pwb_context
*ctx
,
2415 wbcErr wbc_status
= WBC_ERR_UNKNOWN_FAILURE
;
2416 struct wbcDomainSid sid
;
2417 enum wbcSidType type
;
2418 char *domain
= NULL
;
2422 /* This cannot work when the winbind separator = @ */
2424 sep
= winbind_get_separator(ctx
);
2425 if (!sep
|| sep
== '@') {
2429 name
= talloc_strdup(ctx
, upn
);
2433 if ((p
= strchr(name
, '@')) != NULL
) {
2438 /* Convert the UPN to a SID */
2440 wbc_status
= wbcLookupName(domain
, name
, &sid
, &type
);
2441 if (!WBC_ERROR_IS_OK(wbc_status
)) {
2445 /* Convert the the SID back to the sAMAccountName */
2447 wbc_status
= wbcLookupSid(&sid
, &domain
, &name
, &type
);
2448 if (!WBC_ERROR_IS_OK(wbc_status
)) {
2452 return talloc_asprintf(ctx
, "%s\\%s", domain
, name
);
2455 static int _pam_delete_cred(pam_handle_t
*pamh
, int flags
,
2456 int argc
, const char **argv
)
2458 int retval
= PAM_SUCCESS
;
2459 struct pwb_context
*ctx
= NULL
;
2460 struct wbcLogoffUserParams logoff
;
2461 struct wbcAuthErrorInfo
*error
= NULL
;
2463 wbcErr wbc_status
= WBC_ERR_SUCCESS
;
2465 ZERO_STRUCT(logoff
);
2467 retval
= _pam_winbind_init_context(pamh
, flags
, argc
, argv
, &ctx
);
2472 _PAM_LOG_FUNCTION_ENTER("_pam_delete_cred", ctx
);
2474 if (ctx
->ctrl
& WINBIND_KRB5_AUTH
) {
2476 /* destroy the ccache here */
2478 uint32_t wbc_flags
= 0;
2479 const char *ccname
= NULL
;
2480 struct passwd
*pwd
= NULL
;
2482 retval
= pam_get_user(pamh
, &user
, _("Username: "));
2484 _pam_log(ctx
, LOG_ERR
,
2485 "could not identify user");
2490 _pam_log(ctx
, LOG_ERR
,
2491 "username was NULL!");
2492 retval
= PAM_USER_UNKNOWN
;
2496 _pam_log_debug(ctx
, LOG_DEBUG
,
2497 "username [%s] obtained", user
);
2499 ccname
= pam_getenv(pamh
, "KRB5CCNAME");
2500 if (ccname
== NULL
) {
2501 _pam_log_debug(ctx
, LOG_DEBUG
,
2502 "user has no KRB5CCNAME environment");
2505 pwd
= getpwnam(user
);
2507 retval
= PAM_USER_UNKNOWN
;
2511 wbc_flags
= WBFLAG_PAM_KRB5
|
2512 WBFLAG_PAM_CONTACT_TRUSTDOM
;
2514 logoff
.username
= user
;
2517 wbc_status
= wbcAddNamedBlob(&logoff
.num_blobs
,
2521 discard_const_p(uint8_t, ccname
),
2523 if (!WBC_ERROR_IS_OK(wbc_status
)) {
2528 wbc_status
= wbcAddNamedBlob(&logoff
.num_blobs
,
2532 (uint8_t *)&wbc_flags
,
2534 if (!WBC_ERROR_IS_OK(wbc_status
)) {
2538 wbc_status
= wbcAddNamedBlob(&logoff
.num_blobs
,
2542 (uint8_t *)&pwd
->pw_uid
,
2543 sizeof(pwd
->pw_uid
));
2544 if (!WBC_ERROR_IS_OK(wbc_status
)) {
2548 wbc_status
= wbcLogoffUserEx(&logoff
, &error
);
2549 retval
= wbc_auth_error_to_pam_error(ctx
, error
, wbc_status
,
2550 user
, "wbcLogoffUser");
2551 wbcFreeMemory(error
);
2552 wbcFreeMemory(logoff
.blobs
);
2553 logoff
.blobs
= NULL
;
2555 if (!WBC_ERROR_IS_OK(wbc_status
)) {
2556 _pam_log(ctx
, LOG_INFO
,
2557 "failed to logoff user %s: %s\n",
2558 user
, wbcErrorString(wbc_status
));
2564 wbcFreeMemory(logoff
.blobs
);
2567 if (!WBC_ERROR_IS_OK(wbc_status
)) {
2568 retval
= wbc_auth_error_to_pam_error(ctx
, error
, wbc_status
,
2569 user
, "wbcLogoffUser");
2573 * Delete the krb5 ccname variable from the PAM environment
2574 * if it was set by winbind.
2576 if ((ctx
->ctrl
& WINBIND_KRB5_AUTH
) && pam_getenv(pamh
, "KRB5CCNAME")) {
2577 pam_putenv(pamh
, "KRB5CCNAME");
2580 _PAM_LOG_FUNCTION_LEAVE("_pam_delete_cred", ctx
, retval
);
2588 int pam_sm_authenticate(pam_handle_t
*pamh
, int flags
,
2589 int argc
, const char **argv
)
2591 const char *username
;
2592 const char *password
;
2593 const char *member
= NULL
;
2594 const char *cctype
= NULL
;
2595 int warn_pwd_expire
;
2596 int retval
= PAM_AUTH_ERR
;
2597 char *username_ret
= NULL
;
2598 char *new_authtok_required
= NULL
;
2599 char *real_username
= NULL
;
2600 struct pwb_context
*ctx
= NULL
;
2602 retval
= _pam_winbind_init_context(pamh
, flags
, argc
, argv
, &ctx
);
2607 _PAM_LOG_FUNCTION_ENTER("pam_sm_authenticate", ctx
);
2609 /* Get the username */
2610 retval
= pam_get_user(pamh
, &username
, NULL
);
2611 if ((retval
!= PAM_SUCCESS
) || (!username
)) {
2612 _pam_log_debug(ctx
, LOG_DEBUG
,
2613 "can not get the username");
2614 retval
= PAM_SERVICE_ERR
;
2620 /* Decode the user name since AIX does not support logn user
2621 names by default. The name is encoded as _#uid. */
2623 if (username
[0] == '_') {
2624 uid_t id
= atoi(&username
[1]);
2625 struct passwd
*pw
= NULL
;
2627 if ((id
!=0) && ((pw
= getpwuid(id
)) != NULL
)) {
2628 real_username
= strdup(pw
->pw_name
);
2633 if (!real_username
) {
2634 /* Just making a copy of the username we got from PAM */
2635 if ((real_username
= strdup(username
)) == NULL
) {
2636 _pam_log_debug(ctx
, LOG_DEBUG
,
2637 "memory allocation failure when copying "
2639 retval
= PAM_SERVICE_ERR
;
2644 /* Maybe this was a UPN */
2646 if (strchr(real_username
, '@') != NULL
) {
2647 char *samaccountname
= NULL
;
2649 samaccountname
= winbind_upn_to_username(ctx
,
2651 if (samaccountname
) {
2652 free(real_username
);
2653 real_username
= strdup(samaccountname
);
2657 retval
= _winbind_read_password(ctx
, ctx
->ctrl
, NULL
,
2658 _("Password: "), NULL
,
2661 if (retval
!= PAM_SUCCESS
) {
2662 _pam_log(ctx
, LOG_ERR
,
2663 "Could not retrieve user's password");
2664 retval
= PAM_AUTHTOK_ERR
;
2668 /* Let's not give too much away in the log file */
2670 #ifdef DEBUG_PASSWORD
2671 _pam_log_debug(ctx
, LOG_INFO
,
2672 "Verify user '%s' with password '%s'",
2673 real_username
, password
);
2675 _pam_log_debug(ctx
, LOG_INFO
,
2676 "Verify user '%s'", real_username
);
2679 member
= get_member_from_config(ctx
);
2680 cctype
= get_krb5_cc_type_from_config(ctx
);
2681 warn_pwd_expire
= get_warn_pwd_expire_from_config(ctx
);
2683 /* Now use the username to look up password */
2684 retval
= winbind_auth_request(ctx
, real_username
, password
,
2685 member
, cctype
, warn_pwd_expire
,
2687 NULL
, &username_ret
);
2689 if (retval
== PAM_NEW_AUTHTOK_REQD
||
2690 retval
== PAM_AUTHTOK_EXPIRED
) {
2692 char *new_authtok_required_during_auth
= NULL
;
2694 new_authtok_required
= talloc_asprintf(NULL
, "%d", retval
);
2695 if (!new_authtok_required
) {
2696 retval
= PAM_BUF_ERR
;
2700 pam_set_data(pamh
, PAM_WINBIND_NEW_AUTHTOK_REQD
,
2701 new_authtok_required
,
2702 _pam_winbind_cleanup_func
);
2704 retval
= PAM_SUCCESS
;
2706 new_authtok_required_during_auth
= talloc_asprintf(NULL
, "%d", true);
2707 if (!new_authtok_required_during_auth
) {
2708 retval
= PAM_BUF_ERR
;
2712 pam_set_data(pamh
, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH
,
2713 new_authtok_required_during_auth
,
2714 _pam_winbind_cleanup_func
);
2721 pam_set_item (pamh
, PAM_USER
, username_ret
);
2722 _pam_log_debug(ctx
, LOG_INFO
,
2723 "Returned user was '%s'", username_ret
);
2727 if (real_username
) {
2728 free(real_username
);
2731 if (!new_authtok_required
) {
2732 pam_set_data(pamh
, PAM_WINBIND_NEW_AUTHTOK_REQD
, NULL
, NULL
);
2735 if (retval
!= PAM_SUCCESS
) {
2736 _pam_free_data_info3(pamh
);
2739 _PAM_LOG_FUNCTION_LEAVE("pam_sm_authenticate", ctx
, retval
);
2747 int pam_sm_setcred(pam_handle_t
*pamh
, int flags
,
2748 int argc
, const char **argv
)
2750 int ret
= PAM_SYSTEM_ERR
;
2751 struct pwb_context
*ctx
= NULL
;
2753 ret
= _pam_winbind_init_context(pamh
, flags
, argc
, argv
, &ctx
);
2758 _PAM_LOG_FUNCTION_ENTER("pam_sm_setcred", ctx
);
2760 switch (flags
& ~PAM_SILENT
) {
2762 case PAM_DELETE_CRED
:
2763 ret
= _pam_delete_cred(pamh
, flags
, argc
, argv
);
2765 case PAM_REFRESH_CRED
:
2766 _pam_log_debug(ctx
, LOG_WARNING
,
2767 "PAM_REFRESH_CRED not implemented");
2770 case PAM_REINITIALIZE_CRED
:
2771 _pam_log_debug(ctx
, LOG_WARNING
,
2772 "PAM_REINITIALIZE_CRED not implemented");
2775 case PAM_ESTABLISH_CRED
:
2776 _pam_log_debug(ctx
, LOG_WARNING
,
2777 "PAM_ESTABLISH_CRED not implemented");
2781 ret
= PAM_SYSTEM_ERR
;
2787 _PAM_LOG_FUNCTION_LEAVE("pam_sm_setcred", ctx
, ret
);
2795 * Account management. We want to verify that the account exists
2796 * before returning PAM_SUCCESS
2799 int pam_sm_acct_mgmt(pam_handle_t
*pamh
, int flags
,
2800 int argc
, const char **argv
)
2802 const char *username
;
2803 int ret
= PAM_USER_UNKNOWN
;
2805 struct pwb_context
*ctx
= NULL
;
2807 ret
= _pam_winbind_init_context(pamh
, flags
, argc
, argv
, &ctx
);
2812 _PAM_LOG_FUNCTION_ENTER("pam_sm_acct_mgmt", ctx
);
2815 /* Get the username */
2816 ret
= pam_get_user(pamh
, &username
, NULL
);
2817 if ((ret
!= PAM_SUCCESS
) || (!username
)) {
2818 _pam_log_debug(ctx
, LOG_DEBUG
,
2819 "can not get the username");
2820 ret
= PAM_SERVICE_ERR
;
2824 /* Verify the username */
2825 ret
= valid_user(ctx
, username
);
2828 /* some sort of system error. The log was already printed */
2829 ret
= PAM_SERVICE_ERR
;
2832 /* the user does not exist */
2833 _pam_log_debug(ctx
, LOG_NOTICE
, "user '%s' not found",
2835 if (ctx
->ctrl
& WINBIND_UNKNOWN_OK_ARG
) {
2839 ret
= PAM_USER_UNKNOWN
;
2842 pam_get_data(pamh
, PAM_WINBIND_NEW_AUTHTOK_REQD
,
2843 (const void **)&tmp
);
2845 ret
= atoi((const char *)tmp
);
2847 case PAM_AUTHTOK_EXPIRED
:
2848 /* fall through, since new token is required in this case */
2849 case PAM_NEW_AUTHTOK_REQD
:
2850 _pam_log(ctx
, LOG_WARNING
,
2851 "pam_sm_acct_mgmt success but %s is set",
2852 PAM_WINBIND_NEW_AUTHTOK_REQD
);
2853 _pam_log(ctx
, LOG_NOTICE
,
2854 "user '%s' needs new password",
2856 /* PAM_AUTHTOKEN_REQD does not exist, but is documented in the manpage */
2857 ret
= PAM_NEW_AUTHTOK_REQD
;
2860 _pam_log(ctx
, LOG_WARNING
,
2861 "pam_sm_acct_mgmt success");
2862 _pam_log(ctx
, LOG_NOTICE
,
2863 "user '%s' granted access", username
);
2869 /* Otherwise, the authentication looked good */
2870 _pam_log(ctx
, LOG_NOTICE
,
2871 "user '%s' granted access", username
);
2875 /* we don't know anything about this return value */
2876 _pam_log(ctx
, LOG_ERR
,
2877 "internal module error (ret = %d, user = '%s')",
2879 ret
= PAM_SERVICE_ERR
;
2883 /* should not be reached */
2888 _PAM_LOG_FUNCTION_LEAVE("pam_sm_acct_mgmt", ctx
, ret
);
2896 int pam_sm_open_session(pam_handle_t
*pamh
, int flags
,
2897 int argc
, const char **argv
)
2899 int ret
= PAM_SUCCESS
;
2900 struct pwb_context
*ctx
= NULL
;
2902 ret
= _pam_winbind_init_context(pamh
, flags
, argc
, argv
, &ctx
);
2907 _PAM_LOG_FUNCTION_ENTER("pam_sm_open_session", ctx
);
2909 if (ctx
->ctrl
& WINBIND_MKHOMEDIR
) {
2910 /* check and create homedir */
2911 ret
= _pam_mkhomedir(ctx
);
2914 _PAM_LOG_FUNCTION_LEAVE("pam_sm_open_session", ctx
, ret
);
2922 int pam_sm_close_session(pam_handle_t
*pamh
, int flags
,
2923 int argc
, const char **argv
)
2925 int ret
= PAM_SUCCESS
;
2926 struct pwb_context
*ctx
= NULL
;
2928 ret
= _pam_winbind_init_context(pamh
, flags
, argc
, argv
, &ctx
);
2933 _PAM_LOG_FUNCTION_ENTER("pam_sm_close_session", ctx
);
2936 _PAM_LOG_FUNCTION_LEAVE("pam_sm_close_session", ctx
, ret
);
2944 * evaluate whether we need to re-authenticate with kerberos after a
2947 * @param ctx PAM winbind context.
2948 * @param user The username
2950 * @return boolean Returns true if required, false if not.
2953 static bool _pam_require_krb5_auth_after_chauthtok(struct pwb_context
*ctx
,
2957 /* Make sure that we only do this if a) the chauthtok got initiated
2958 * during a logon attempt (authenticate->acct_mgmt->chauthtok) b) any
2959 * later password change via the "passwd" command if done by the user
2961 * NB. If we login from gdm or xdm and the password expires,
2962 * we change the password, but there is no memory cache.
2963 * Thus, even for passthrough login, we should do the
2964 * authentication again to update memory cache.
2968 char *new_authtok_reqd_during_auth
= NULL
;
2969 struct passwd
*pwd
= NULL
;
2971 _pam_get_data(ctx
->pamh
, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH
,
2972 &new_authtok_reqd_during_auth
);
2973 pam_set_data(ctx
->pamh
, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH
,
2976 if (new_authtok_reqd_during_auth
) {
2980 pwd
= getpwnam(user
);
2985 if (getuid() == pwd
->pw_uid
) {
2994 int pam_sm_chauthtok(pam_handle_t
* pamh
, int flags
,
2995 int argc
, const char **argv
)
2999 bool cached_login
= false;
3001 /* <DO NOT free() THESE> */
3003 char *pass_old
, *pass_new
;
3004 /* </DO NOT free() THESE> */
3009 char *username_ret
= NULL
;
3010 struct wbcAuthErrorInfo
*error
= NULL
;
3011 struct pwb_context
*ctx
= NULL
;
3013 ret
= _pam_winbind_init_context(pamh
, flags
, argc
, argv
, &ctx
);
3018 _PAM_LOG_FUNCTION_ENTER("pam_sm_chauthtok", ctx
);
3020 cached_login
= (ctx
->ctrl
& WINBIND_CACHED_LOGIN
);
3022 /* clearing offline bit for auth */
3023 ctx
->ctrl
&= ~WINBIND_CACHED_LOGIN
;
3026 * First get the name of a user
3028 ret
= pam_get_user(pamh
, &user
, _("Username: "));
3030 _pam_log(ctx
, LOG_ERR
,
3031 "password - could not identify user");
3036 _pam_log(ctx
, LOG_ERR
, "username was NULL!");
3037 ret
= PAM_USER_UNKNOWN
;
3041 _pam_log_debug(ctx
, LOG_DEBUG
, "username [%s] obtained", user
);
3043 /* check if this is really a user in winbindd, not only in NSS */
3044 ret
= valid_user(ctx
, user
);
3047 ret
= PAM_USER_UNKNOWN
;
3050 ret
= PAM_SYSTEM_ERR
;
3057 * obtain and verify the current password (OLDAUTHTOK) for
3061 if (flags
& PAM_PRELIM_CHECK
) {
3062 time_t pwdlastset_prelim
= 0;
3064 /* instruct user what is happening */
3066 #define greeting _("Changing password for")
3067 Announce
= talloc_asprintf(ctx
, "%s %s", greeting
, user
);
3069 _pam_log(ctx
, LOG_CRIT
,
3070 "password - out of memory");
3076 lctrl
= ctx
->ctrl
| WINBIND__OLD_PASSWORD
;
3077 ret
= _winbind_read_password(ctx
, lctrl
,
3079 _("(current) NT password: "),
3081 (const char **) &pass_old
);
3082 TALLOC_FREE(Announce
);
3083 if (ret
!= PAM_SUCCESS
) {
3084 _pam_log(ctx
, LOG_NOTICE
,
3085 "password - (old) token not obtained");
3089 /* verify that this is the password for this user */
3091 ret
= winbind_auth_request(ctx
, user
, pass_old
,
3094 &pwdlastset_prelim
, NULL
);
3096 if (ret
!= PAM_ACCT_EXPIRED
&&
3097 ret
!= PAM_AUTHTOK_EXPIRED
&&
3098 ret
!= PAM_NEW_AUTHTOK_REQD
&&
3099 ret
!= PAM_SUCCESS
) {
3104 pam_set_data(pamh
, PAM_WINBIND_PWD_LAST_SET
,
3105 (void *)pwdlastset_prelim
, NULL
);
3107 ret
= pam_set_item(pamh
, PAM_OLDAUTHTOK
,
3108 (const void *) pass_old
);
3110 if (ret
!= PAM_SUCCESS
) {
3111 _pam_log(ctx
, LOG_CRIT
,
3112 "failed to set PAM_OLDAUTHTOK");
3114 } else if (flags
& PAM_UPDATE_AUTHTOK
) {
3116 time_t pwdlastset_update
= 0;
3119 * obtain the proposed password
3123 * get the old token back.
3126 ret
= _pam_get_item(pamh
, PAM_OLDAUTHTOK
, &pass_old
);
3128 if (ret
!= PAM_SUCCESS
) {
3129 _pam_log(ctx
, LOG_NOTICE
,
3130 "user not authenticated");
3134 lctrl
= ctx
->ctrl
& ~WINBIND_TRY_FIRST_PASS_ARG
;
3136 if (on(WINBIND_USE_AUTHTOK_ARG
, lctrl
)) {
3137 lctrl
|= WINBIND_USE_FIRST_PASS_ARG
;
3140 ret
= PAM_AUTHTOK_ERR
;
3141 while ((ret
!= PAM_SUCCESS
) && (retry
++ < MAX_PASSWD_TRIES
)) {
3143 * use_authtok is to force the use of a previously entered
3144 * password -- needed for pluggable password strength checking
3147 ret
= _winbind_read_password(ctx
, lctrl
,
3149 _("Enter new NT password: "),
3150 _("Retype new NT password: "),
3151 (const char **)&pass_new
);
3153 if (ret
!= PAM_SUCCESS
) {
3154 _pam_log_debug(ctx
, LOG_ALERT
,
3156 "new password not obtained");
3157 pass_old
= NULL
;/* tidy up */
3162 * At this point we know who the user is and what they
3163 * propose as their new password. Verify that the new
3164 * password is acceptable.
3167 if (pass_new
[0] == '\0') {/* "\0" password = NULL */
3173 * By reaching here we have approved the passwords and must now
3174 * rebuild the password database file.
3176 _pam_get_data(pamh
, PAM_WINBIND_PWD_LAST_SET
,
3177 &pwdlastset_update
);
3180 * if cached creds were enabled, make sure to set the
3181 * WINBIND_CACHED_LOGIN bit here in order to have winbindd
3182 * update the cached creds storage - gd
3185 ctx
->ctrl
|= WINBIND_CACHED_LOGIN
;
3188 ret
= winbind_chauthtok_request(ctx
, user
, pass_old
,
3189 pass_new
, pwdlastset_update
);
3191 pass_old
= pass_new
= NULL
;
3195 if (_pam_require_krb5_auth_after_chauthtok(ctx
, user
)) {
3197 const char *member
= NULL
;
3198 const char *cctype
= NULL
;
3199 int warn_pwd_expire
;
3200 struct wbcLogonUserInfo
*info
= NULL
;
3201 struct wbcUserPasswordPolicyInfo
*policy
= NULL
;
3203 member
= get_member_from_config(ctx
);
3204 cctype
= get_krb5_cc_type_from_config(ctx
);
3205 warn_pwd_expire
= get_warn_pwd_expire_from_config(ctx
);
3207 /* Keep WINBIND_CACHED_LOGIN bit for
3208 * authentication after changing the password.
3209 * This will update the cached credentials in case
3210 * that winbindd_dual_pam_chauthtok() fails
3215 ret
= winbind_auth_request(ctx
, user
, pass_new
,
3217 &error
, &info
, &policy
,
3218 NULL
, &username_ret
);
3219 pass_old
= pass_new
= NULL
;
3221 if (ret
== PAM_SUCCESS
) {
3223 struct wbcAuthUserInfo
*user_info
= NULL
;
3225 if (info
&& info
->info
) {
3226 user_info
= info
->info
;
3229 /* warn a user if the password is about to
3231 _pam_warn_password_expiry(ctx
, user_info
, policy
,
3235 /* set some info3 info for other modules in the
3237 _pam_set_data_info3(ctx
, user_info
);
3239 /* put krb5ccname into env */
3240 _pam_setup_krb5_env(ctx
, info
);
3243 pam_set_item(pamh
, PAM_USER
,
3245 _pam_log_debug(ctx
, LOG_INFO
,
3246 "Returned user was '%s'",
3253 if (info
&& info
->blobs
) {
3254 wbcFreeMemory(info
->blobs
);
3256 wbcFreeMemory(info
);
3257 wbcFreeMemory(policy
);
3262 ret
= PAM_SERVICE_ERR
;
3267 /* Deal with offline errors. */
3269 const char *codes
[] = {
3270 "NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND",
3271 "NT_STATUS_NO_LOGON_SERVERS",
3272 "NT_STATUS_ACCESS_DENIED"
3275 for (i
=0; i
<ARRAY_SIZE(codes
); i
++) {
3277 if (_pam_check_remark_auth_err(ctx
, error
, codes
[i
], &_ret
)) {
3283 wbcFreeMemory(error
);
3285 _PAM_LOG_FUNCTION_LEAVE("pam_sm_chauthtok", ctx
, ret
);
3294 /* static module data */
3296 struct pam_module _pam_winbind_modstruct
= {
3298 pam_sm_authenticate
,
3301 pam_sm_open_session
,
3302 pam_sm_close_session
,
3309 * Copyright (c) Andrew Tridgell <tridge@samba.org> 2000
3310 * Copyright (c) Tim Potter <tpot@samba.org> 2000
3311 * Copyright (c) Andrew Bartlettt <abartlet@samba.org> 2002
3312 * Copyright (c) Guenther Deschner <gd@samba.org> 2005-2008
3313 * Copyright (c) Jan Rêkorajski 1999.
3314 * Copyright (c) Andrew G. Morgan 1996-8.
3315 * Copyright (c) Alex O. Yuriev, 1996.
3316 * Copyright (c) Cristian Gafton 1996.
3317 * Copyright (C) Elliot Lee <sopwith@redhat.com> 1996, Red Hat Software.
3319 * Redistribution and use in source and binary forms, with or without
3320 * modification, are permitted provided that the following conditions
3322 * 1. Redistributions of source code must retain the above copyright
3323 * notice, and the entire permission notice in its entirety,
3324 * including the disclaimer of warranties.
3325 * 2. Redistributions in binary form must reproduce the above copyright
3326 * notice, this list of conditions and the following disclaimer in the
3327 * documentation and/or other materials provided with the distribution.
3328 * 3. The name of the author may not be used to endorse or promote
3329 * products derived from this software without specific prior
3330 * written permission.
3332 * ALTERNATIVELY, this product may be distributed under the terms of
3333 * the GNU Public License, in which case the provisions of the GPL are
3334 * required INSTEAD OF the above restrictions. (This clause is
3335 * necessary due to a potential bad interaction between the GPL and
3336 * the restrictions contained in a BSD-style copyright.)
3338 * THIS SOFTWARE IS PROVIDED `AS IS'' AND ANY EXPRESS OR IMPLIED
3339 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
3340 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
3341 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
3342 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
3343 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
3344 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3345 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
3346 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3347 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
3348 * OF THE POSSIBILITY OF SUCH DAMAGE.