f692316fc63d6a1469581025e28fb144d0a722d4
[kai/samba.git] / nsswitch / pam_winbind.c
1 /* pam_winbind module
2
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
7
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)
11 */
12
13 #include "pam_winbind.h"
14 #define CONST_DISCARD(type,ptr) ((type)(void *)ptr)
15
16
17 static int wbc_error_to_pam_error(wbcErr status)
18 {
19         switch (status) {
20                 case WBC_ERR_SUCCESS:
21                         return PAM_SUCCESS;
22                 case WBC_ERR_NOT_IMPLEMENTED:
23                         return PAM_SERVICE_ERR;
24                 case WBC_ERR_UNKNOWN_FAILURE:
25                         break;
26                 case WBC_ERR_NO_MEMORY:
27                         return PAM_BUF_ERR;
28                 case WBC_ERR_INVALID_SID:
29                 case WBC_ERR_INVALID_PARAM:
30                         break;
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:
36                         return PAM_BUF_ERR;
37                 case WBC_ERR_NSS_ERROR:
38                         return PAM_USER_UNKNOWN;
39                 case WBC_ERR_AUTH_ERROR:
40                         return PAM_AUTH_ERR;
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:
46                         break;
47         }
48
49         /* be paranoid */
50         return PAM_AUTH_ERR;
51 }
52
53 static const char *_pam_error_code_str(int err)
54 {
55         switch (err) {
56                 case PAM_SUCCESS:
57                         return "PAM_SUCCESS";
58                 case PAM_OPEN_ERR:
59                         return "PAM_OPEN_ERR";
60                 case PAM_SYMBOL_ERR:
61                         return "PAM_SYMBOL_ERR";
62                 case PAM_SERVICE_ERR:
63                         return "PAM_SERVICE_ERR";
64                 case PAM_SYSTEM_ERR:
65                         return "PAM_SYSTEM_ERR";
66                 case PAM_BUF_ERR:
67                         return "PAM_BUF_ERR";
68                 case PAM_PERM_DENIED:
69                         return "PAM_PERM_DENIED";
70                 case PAM_AUTH_ERR:
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";
78                 case PAM_MAXTRIES:
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";
84                 case PAM_SESSION_ERR:
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";
90                 case PAM_CRED_ERR:
91                         return "PAM_CRED_ERR";
92                 case PAM_NO_MODULE_DATA:
93                         return "PAM_NO_MODULE_DATA";
94                 case PAM_CONV_ERR:
95                         return "PAM_CONV_ERR";
96                 case PAM_AUTHTOK_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";
104                 case PAM_TRY_AGAIN:
105                         return "PAM_TRY_AGAIN";
106                 case PAM_IGNORE:
107                         return "PAM_IGNORE";
108                 case PAM_ABORT:
109                         return "PAM_ABORT";
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";
115 #endif
116 #ifdef PAM_BAD_ITEM
117                 case PAM_BAD_ITEM:
118                         return "PAM_BAD_ITEM";
119 #endif
120 #ifdef PAM_CONV_AGAIN
121                 case PAM_CONV_AGAIN:
122                         return "PAM_CONV_AGAIN";
123 #endif
124 #ifdef PAM_INCOMPLETE
125                 case PAM_INCOMPLETE:
126                         return "PAM_INCOMPLETE";
127 #endif
128                 default:
129                         return NULL;
130         }
131 }
132
133 #define _PAM_LOG_FUNCTION_ENTER(function, ctx) \
134         do { \
135                 _pam_log_debug(ctx, LOG_DEBUG, "[pamh: %p] ENTER: " \
136                                function " (flags: 0x%04x)", ctx->pamh, ctx->flags); \
137                 _pam_log_state(ctx); \
138         } while (0)
139
140 #define _PAM_LOG_FUNCTION_LEAVE(function, ctx, retval) \
141         do { \
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); \
146         } while (0)
147
148 /* data tokens */
149
150 #define MAX_PASSWD_TRIES        3
151
152 #ifdef HAVE_GETTEXT
153 static char initialized = 0;
154
155 static inline void textdomain_init(void);
156 static inline void textdomain_init(void)
157 {
158         if (!initialized) {
159                 bindtextdomain(MODULE_NAME, dyn_LOCALEDIR);
160                 initialized = 1;
161         }
162         return;
163 }
164 #endif
165
166
167 /*
168  * Work around the pam API that has functions with void ** as parameters
169  * These lead to strict aliasing warnings with gcc.
170  */
171 static int _pam_get_item(const pam_handle_t *pamh,
172                          int item_type,
173                          const void *_item)
174 {
175         const void **item = (const void **)_item;
176         return pam_get_item(pamh, item_type, item);
177 }
178 static int _pam_get_data(const pam_handle_t *pamh,
179                          const char *module_data_name,
180                          const void *_data)
181 {
182         const void **data = (const void **)_data;
183         return pam_get_data(pamh, module_data_name, data);
184 }
185
186 /* some syslogging */
187
188 #ifdef HAVE_PAM_VSYSLOG
189 static void _pam_log_int(const pam_handle_t *pamh,
190                          int err,
191                          const char *format,
192                          va_list args)
193 {
194         pam_vsyslog(pamh, err, format, args);
195 }
196 #else
197 static void _pam_log_int(const pam_handle_t *pamh,
198                          int err,
199                          const char *format,
200                          va_list args)
201 {
202         char *format2 = NULL;
203         const char *service;
204
205         _pam_get_item(pamh, PAM_SERVICE, &service);
206
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);
211                 return;
212         }
213
214         sprintf(format2, "%s(%s): %s", MODULE_NAME, service, format);
215         vsyslog(err, format2, args);
216         SAFE_FREE(format2);
217 }
218 #endif /* HAVE_PAM_VSYSLOG */
219
220 static bool _pam_log_is_silent(int ctrl)
221 {
222         return on(ctrl, WINBIND_SILENT);
223 }
224
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, ...)
227 {
228         va_list args;
229
230         if (_pam_log_is_silent(r->ctrl)) {
231                 return;
232         }
233
234         va_start(args, format);
235         _pam_log_int(r->pamh, err, format, args);
236         va_end(args);
237 }
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, ...)
240 {
241         va_list args;
242
243         if (_pam_log_is_silent(ctrl)) {
244                 return;
245         }
246
247         va_start(args, format);
248         _pam_log_int(pamh, err, format, args);
249         va_end(args);
250 }
251
252 static bool _pam_log_is_debug_enabled(int ctrl)
253 {
254         if (ctrl == -1) {
255                 return false;
256         }
257
258         if (_pam_log_is_silent(ctrl)) {
259                 return false;
260         }
261
262         if (!(ctrl & WINBIND_DEBUG_ARG)) {
263                 return false;
264         }
265
266         return true;
267 }
268
269 static bool _pam_log_is_debug_state_enabled(int ctrl)
270 {
271         if (!(ctrl & WINBIND_DEBUG_STATE)) {
272                 return false;
273         }
274
275         return _pam_log_is_debug_enabled(ctrl);
276 }
277
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, ...)
280 {
281         va_list args;
282
283         if (!_pam_log_is_debug_enabled(r->ctrl)) {
284                 return;
285         }
286
287         va_start(args, format);
288         _pam_log_int(r->pamh, err, format, args);
289         va_end(args);
290 }
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, ...)
293 {
294         va_list args;
295
296         if (!_pam_log_is_debug_enabled(ctrl)) {
297                 return;
298         }
299
300         va_start(args, format);
301         _pam_log_int(pamh, err, format, args);
302         va_end(args);
303 }
304
305 static void _pam_log_state_datum(struct pwb_context *ctx,
306                                  int item_type,
307                                  const char *key,
308                                  int is_string)
309 {
310         const void *data = NULL;
311         if (item_type != 0) {
312                 pam_get_item(ctx->pamh, item_type, &data);
313         } else {
314                 pam_get_data(ctx->pamh, key, &data);
315         }
316         if (data != NULL) {
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,
322                                        data);
323                 } else {
324                         _pam_log_debug(ctx, LOG_DEBUG,
325                                        "[pamh: %p] STATE: %s(%s) = %p",
326                                        ctx->pamh, type, key, data);
327                 }
328         }
329 }
330
331 #define _PAM_LOG_STATE_DATA_POINTER(ctx, module_data_name) \
332         _pam_log_state_datum(ctx, 0, module_data_name, 0)
333
334 #define _PAM_LOG_STATE_DATA_STRING(ctx, module_data_name) \
335         _pam_log_state_datum(ctx, 0, module_data_name, 1)
336
337 #define _PAM_LOG_STATE_ITEM_POINTER(ctx, item_type) \
338         _pam_log_state_datum(ctx, item_type, #item_type, 0)
339
340 #define _PAM_LOG_STATE_ITEM_STRING(ctx, item_type) \
341         _pam_log_state_datum(ctx, item_type, #item_type, 1)
342
343 #ifdef DEBUG_PASSWORD
344 #define _LOG_PASSWORD_AS_STRING 1
345 #else
346 #define _LOG_PASSWORD_AS_STRING 0
347 #endif
348
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)
352
353 static void _pam_log_state(struct pwb_context *ctx)
354 {
355         if (!_pam_log_is_debug_state_enabled(ctx->ctrl)) {
356                 return;
357         }
358
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);
370 #endif
371 #ifdef PAM_REPOSITORY
372         _PAM_LOG_STATE_ITEM_POINTER(ctx, PAM_REPOSITORY);
373 #endif
374
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);
385 }
386
387 static int _pam_parse(const pam_handle_t *pamh,
388                       int flags,
389                       int argc,
390                       const char **argv,
391                       dictionary **result_d)
392 {
393         int ctrl = 0;
394         const char *config_file = NULL;
395         int i;
396         const char **v;
397         dictionary *d = NULL;
398
399         if (flags & PAM_SILENT) {
400                 ctrl |= WINBIND_SILENT;
401         }
402
403         for (i=argc,v=argv; i-- > 0; ++v) {
404                 if (!strncasecmp(*v, "config", strlen("config"))) {
405                         ctrl |= WINBIND_CONFIG_FILE;
406                         config_file = v[i];
407                         break;
408                 }
409         }
410
411         if (config_file == NULL) {
412                 config_file = PAM_WINBIND_CONFIG_FILE;
413         }
414
415         d = iniparser_load(CONST_DISCARD(char *, config_file));
416         if (d == NULL) {
417                 goto config_from_pam;
418         }
419
420         if (iniparser_getboolean(d, CONST_DISCARD(char *, "global:debug"), false)) {
421                 ctrl |= WINBIND_DEBUG_ARG;
422         }
423
424         if (iniparser_getboolean(d, CONST_DISCARD(char *, "global:debug_state"), false)) {
425                 ctrl |= WINBIND_DEBUG_STATE;
426         }
427
428         if (iniparser_getboolean(d, CONST_DISCARD(char *, "global:cached_login"), false)) {
429                 ctrl |= WINBIND_CACHED_LOGIN;
430         }
431
432         if (iniparser_getboolean(d, CONST_DISCARD(char *, "global:krb5_auth"), false)) {
433                 ctrl |= WINBIND_KRB5_AUTH;
434         }
435
436         if (iniparser_getboolean(d, CONST_DISCARD(char *, "global:silent"), false)) {
437                 ctrl |= WINBIND_SILENT;
438         }
439
440         if (iniparser_getstr(d, CONST_DISCARD(char *, "global:krb5_ccache_type")) != NULL) {
441                 ctrl |= WINBIND_KRB5_CCACHE_TYPE;
442         }
443
444         if ((iniparser_getstr(d, CONST_DISCARD(char *, "global:require-membership-of"))
445              != NULL) ||
446             (iniparser_getstr(d, CONST_DISCARD(char *, "global:require_membership_of"))
447              != NULL)) {
448                 ctrl |= WINBIND_REQUIRED_MEMBERSHIP;
449         }
450
451         if (iniparser_getboolean(d, CONST_DISCARD(char *, "global:try_first_pass"), false)) {
452                 ctrl |= WINBIND_TRY_FIRST_PASS_ARG;
453         }
454
455         if (iniparser_getint(d, CONST_DISCARD(char *, "global:warn_pwd_expire"), 0)) {
456                 ctrl |= WINBIND_WARN_PWD_EXPIRE;
457         }
458
459         if (iniparser_getboolean(d, CONST_DISCARD(char *, "global:mkhomedir"), false)) {
460                 ctrl |= WINBIND_MKHOMEDIR;
461         }
462
463 config_from_pam:
464         /* step through arguments */
465         for (i=argc,v=argv; i-- > 0; ++v) {
466
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;
497                 else {
498                         __pam_log(pamh, ctrl, LOG_ERR,
499                                  "pam_parse: unknown option: %s", *v);
500                         return -1;
501                 }
502
503         }
504
505         if (result_d) {
506                 *result_d = d;
507         } else {
508                 if (d) {
509                         iniparser_freedict(d);
510                 }
511         }
512
513         return ctrl;
514 };
515
516 static int _pam_winbind_free_context(struct pwb_context *ctx)
517 {
518         if (!ctx) {
519                 return 0;
520         }
521
522         if (ctx->dict) {
523                 iniparser_freedict(ctx->dict);
524         }
525
526         return 0;
527 }
528
529 static int _pam_winbind_init_context(pam_handle_t *pamh,
530                                      int flags,
531                                      int argc,
532                                      const char **argv,
533                                      struct pwb_context **ctx_p)
534 {
535         struct pwb_context *r = NULL;
536
537 #ifdef HAVE_GETTEXT
538         textdomain_init();
539 #endif
540
541         r = TALLOC_ZERO_P(NULL, struct pwb_context);
542         if (!r) {
543                 return PAM_BUF_ERR;
544         }
545
546         talloc_set_destructor(r, _pam_winbind_free_context);
547
548         r->pamh = pamh;
549         r->flags = flags;
550         r->argc = argc;
551         r->argv = argv;
552         r->ctrl = _pam_parse(pamh, flags, argc, argv, &r->dict);
553         if (r->ctrl == -1) {
554                 TALLOC_FREE(r);
555                 return PAM_SYSTEM_ERR;
556         }
557
558         *ctx_p = r;
559
560         return PAM_SUCCESS;
561 }
562
563 static void _pam_winbind_cleanup_func(pam_handle_t *pamh,
564                                       void *data,
565                                       int error_status)
566 {
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,
572                                error_status);
573         }
574         TALLOC_FREE(data);
575 }
576
577
578 static const struct ntstatus_errors {
579         const char *ntstatus_string;
580         const char *error_string;
581 } ntstatus_errors[] = {
582         {"NT_STATUS_OK",
583                 N_("Success")},
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")},
621         {NULL, NULL}
622 };
623
624 static const char *_get_ntstatus_error_string(const char *nt_status_string)
625 {
626         int i;
627         for (i=0; ntstatus_errors[i].ntstatus_string != NULL; i++) {
628                 if (!strcasecmp(ntstatus_errors[i].ntstatus_string,
629                                 nt_status_string)) {
630                         return _(ntstatus_errors[i].error_string);
631                 }
632         }
633         return NULL;
634 }
635
636 /* --- authentication management functions --- */
637
638 /* Attempt a conversation */
639
640 static int converse(const pam_handle_t *pamh,
641                     int nargs,
642                     struct pam_message **message,
643                     struct pam_response **response)
644 {
645         int retval;
646         struct pam_conv *conv;
647
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);
653         }
654
655         return retval; /* propagate error status */
656 }
657
658
659 static int _make_remark(struct pwb_context *ctx,
660                         int type,
661                         const char *text)
662 {
663         int retval = PAM_SUCCESS;
664
665         struct pam_message *pmsg[1], msg[1];
666         struct pam_response *resp;
667
668         if (ctx->flags & WINBIND_SILENT) {
669                 return PAM_SUCCESS;
670         }
671
672         pmsg[0] = &msg[0];
673         msg[0].msg = discard_const_p(char, text);
674         msg[0].msg_style = type;
675
676         resp = NULL;
677         retval = converse(ctx->pamh, 1, pmsg, &resp);
678
679         if (resp) {
680                 _pam_drop_reply(resp, 1);
681         }
682         return retval;
683 }
684
685 static int _make_remark_v(struct pwb_context *ctx,
686                           int type,
687                           const char *format,
688                           va_list args)
689 {
690         char *var;
691         int ret;
692
693         ret = vasprintf(&var, format, args);
694         if (ret < 0) {
695                 _pam_log(ctx, LOG_ERR, "memory allocation failure");
696                 return ret;
697         }
698
699         ret = _make_remark(ctx, type, var);
700         SAFE_FREE(var);
701         return ret;
702 }
703
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, ...)
706 {
707         int ret;
708         va_list args;
709
710         va_start(args, format);
711         ret = _make_remark_v(ctx, type, format, args);
712         va_end(args);
713         return ret;
714 }
715
716 static int pam_winbind_request_log(struct pwb_context *ctx,
717                                    int retval,
718                                    const char *user,
719                                    const char *fn)
720 {
721         switch (retval) {
722         case PAM_AUTH_ERR:
723                 /* incorrect password */
724                 _pam_log(ctx, LOG_WARNING, "user '%s' denied access "
725                          "(incorrect password or invalid membership)", user);
726                 return retval;
727         case PAM_ACCT_EXPIRED:
728                 /* account expired */
729                 _pam_log(ctx, LOG_WARNING, "user '%s' account expired",
730                          user);
731                 return retval;
732         case PAM_AUTHTOK_EXPIRED:
733                 /* password expired */
734                 _pam_log(ctx, LOG_WARNING, "user '%s' password expired",
735                          user);
736                 return retval;
737         case PAM_NEW_AUTHTOK_REQD:
738                 /* new password required */
739                 _pam_log(ctx, LOG_WARNING, "user '%s' new password "
740                          "required", user);
741                 return retval;
742         case PAM_USER_UNKNOWN:
743                 /* the user does not exist */
744                 _pam_log_debug(ctx, LOG_NOTICE, "user '%s' not found",
745                                user);
746                 if (ctx->ctrl & WINBIND_UNKNOWN_OK_ARG) {
747                         return PAM_IGNORE;
748                 }
749                 return retval;
750         case PAM_SUCCESS:
751                 /* Otherwise, the authentication looked good */
752                 if (strcmp(fn, "wbcLogonUser") == 0) {
753                         _pam_log(ctx, LOG_NOTICE,
754                                  "user '%s' granted access", user);
755                 } else {
756                         _pam_log(ctx, LOG_NOTICE,
757                                  "user '%s' OK", user);
758                 }
759                 return retval;
760         default:
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);
765                 return retval;
766         }
767 }
768
769 static int wbc_auth_error_to_pam_error(struct pwb_context *ctx,
770                                        struct wbcAuthErrorInfo *e,
771                                        wbcErr status,
772                                        const char *username,
773                                        const char *fn)
774 {
775         int ret = PAM_AUTH_ERR;
776
777         if (WBC_ERROR_IS_OK(status)) {
778                 _pam_log_debug(ctx, LOG_DEBUG, "request %s succeeded",
779                         fn);
780                 ret = PAM_SUCCESS;
781                 return pam_winbind_request_log(ctx, ret, username, fn);
782         }
783
784         if (e) {
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",
790                                  fn,
791                                  wbcErrorString(status),
792                                  _pam_error_code_str(e->pam_error),
793                                  e->pam_error,
794                                  e->nt_string,
795                                  e->display_string);
796                         ret = e->pam_error;
797                         return pam_winbind_request_log(ctx, ret, username, fn);
798                 }
799
800                 _pam_log(ctx, LOG_ERR, "request %s failed, but PAM error 0!", fn);
801
802                 ret = PAM_SERVICE_ERR;
803                 return pam_winbind_request_log(ctx, ret, username, fn);
804         }
805
806         ret = wbc_error_to_pam_error(status);
807         return pam_winbind_request_log(ctx, ret, username, fn);
808 }
809
810
811 /**
812  * send a password expiry message if required
813  *
814  * @param ctx PAM winbind context.
815  * @param next_change expected (calculated) next expiry date.
816  * @param already_expired pointer to a boolean to indicate if the password is
817  *        already expired.
818  *
819  * @return boolean Returns true if message has been sent, false if not.
820  */
821
822 static bool _pam_send_password_expiry_message(struct pwb_context *ctx,
823                                               time_t next_change,
824                                               time_t now,
825                                               int warn_pwd_expire,
826                                               bool *already_expired)
827 {
828         int days = 0;
829         struct tm tm_now, tm_next_change;
830
831         if (already_expired) {
832                 *already_expired = false;
833         }
834
835         if (next_change <= now) {
836                 PAM_WB_REMARK_DIRECT(ctx, "NT_STATUS_PASSWORD_EXPIRED");
837                 if (already_expired) {
838                         *already_expired = true;
839                 }
840                 return true;
841         }
842
843         if ((next_change < 0) ||
844             (next_change > now + warn_pwd_expire * SECONDS_PER_DAY)) {
845                 return false;
846         }
847
848         if ((localtime_r(&now, &tm_now) == NULL) ||
849             (localtime_r(&next_change, &tm_next_change) == NULL)) {
850                 return false;
851         }
852
853         days = (tm_next_change.tm_yday+tm_next_change.tm_year*365) -
854                (tm_now.tm_yday+tm_now.tm_year*365);
855
856         if (days == 0) {
857                 _make_remark(ctx, PAM_TEXT_INFO,
858                              _("Your password expires today"));
859                 return true;
860         }
861
862         if (days > 0 && days < warn_pwd_expire) {
863                 _make_remark_format(ctx, PAM_TEXT_INFO,
864                                     _("Your password will expire in %d %s"),
865                                     days, (days > 1) ? _("days"):_("day"));
866                 return true;
867         }
868
869         return false;
870 }
871
872 /**
873  * Send a warning if the password expires in the near future
874  *
875  * @param ctx PAM winbind context.
876  * @param response The full authentication response structure.
877  * @param already_expired boolean, is the pwd already expired?
878  *
879  * @return void.
880  */
881
882 static void _pam_warn_password_expiry(struct pwb_context *ctx,
883                                       const struct wbcAuthUserInfo *info,
884                                       const struct wbcUserPasswordPolicyInfo *policy,
885                                       int warn_pwd_expire,
886                                       bool *already_expired)
887 {
888         time_t now = time(NULL);
889         time_t next_change = 0;
890
891         if (!info || !policy) {
892                 return;
893         }
894
895         if (already_expired) {
896                 *already_expired = false;
897         }
898
899         /* accounts with WBC_ACB_PWNOEXP set never receive a warning */
900         if (info->acct_flags & WBC_ACB_PWNOEXP) {
901                 return;
902         }
903
904         /* no point in sending a warning if this is a grace logon */
905         if (PAM_WB_GRACE_LOGON(info->user_flags)) {
906                 return;
907         }
908
909         /* check if the info3 must change timestamp has been set */
910         next_change = info->pass_must_change_time;
911
912         if (_pam_send_password_expiry_message(ctx, next_change, now,
913                                               warn_pwd_expire,
914                                               already_expired)) {
915                 return;
916         }
917
918         /* now check for the global password policy */
919         /* good catch from Ralf Haferkamp: an expiry of "never" is translated
920          * to -1 */
921         if ((policy->expire == (int64_t)-1) ||
922             (policy->expire == 0)) {
923                 return;
924         }
925
926         next_change = info->pass_last_set_time + policy->expire;
927
928         if (_pam_send_password_expiry_message(ctx, next_change, now,
929                                               warn_pwd_expire,
930                                               already_expired)) {
931                 return;
932         }
933
934         /* no warning sent */
935 }
936
937 #define IS_SID_STRING(name) (strncmp("S-", name, 2) == 0)
938
939 /**
940  * Append a string, making sure not to overflow and to always return a
941  * NULL-terminated string.
942  *
943  * @param dest Destination string buffer (must already be NULL-terminated).
944  * @param src Source string buffer.
945  * @param dest_buffer_size Size of dest buffer in bytes.
946  *
947  * @return false if dest buffer is not big enough (no bytes copied), true on
948  * success.
949  */
950
951 static bool safe_append_string(char *dest,
952                                const char *src,
953                                int dest_buffer_size)
954 {
955         int dest_length = strlen(dest);
956         int src_length = strlen(src);
957
958         if (dest_length + src_length + 1 > dest_buffer_size) {
959                 return false;
960         }
961
962         memcpy(dest + dest_length, src, src_length + 1);
963         return true;
964 }
965
966 /**
967  * Convert a names into a SID string, appending it to a buffer.
968  *
969  * @param ctx PAM winbind context.
970  * @param user User in PAM request.
971  * @param name Name to convert.
972  * @param sid_list_buffer Where to append the string sid.
973  * @param sid_list_buffer Size of sid_list_buffer (in bytes).
974  *
975  * @return false on failure, true on success.
976  */
977 static bool winbind_name_to_sid_string(struct pwb_context *ctx,
978                                        const char *user,
979                                        const char *name,
980                                        char *sid_list_buffer,
981                                        int sid_list_buffer_size)
982 {
983         const char* sid_string;
984
985         /* lookup name? */
986         if (IS_SID_STRING(name)) {
987                 sid_string = name;
988         } else {
989                 wbcErr wbc_status;
990                 struct wbcDomainSid sid;
991                 enum wbcSidType type;
992                 char *sid_str;
993
994                 _pam_log_debug(ctx, LOG_DEBUG,
995                                "no sid given, looking up: %s\n", name);
996
997                 wbc_status = wbcLookupName("", name, &sid, &type);
998                 if (!WBC_ERROR_IS_OK(wbc_status)) {
999                         _pam_log(ctx, LOG_INFO,
1000                                  "could not lookup name: %s\n", name);
1001                         return false;
1002                 }
1003
1004                 wbc_status = wbcSidToString(&sid, &sid_str);
1005                 if (!WBC_ERROR_IS_OK(wbc_status)) {
1006                         return false;
1007                 }
1008
1009                 wbcFreeMemory(sid_str);
1010                 sid_string = sid_str;
1011         }
1012
1013         if (!safe_append_string(sid_list_buffer, sid_string,
1014                                 sid_list_buffer_size)) {
1015                 return false;
1016         }
1017
1018         return true;
1019 }
1020
1021 /**
1022  * Convert a list of names into a list of sids.
1023  *
1024  * @param ctx PAM winbind context.
1025  * @param user User in PAM request.
1026  * @param name_list List of names or string sids, separated by commas.
1027  * @param sid_list_buffer Where to put the list of string sids.
1028  * @param sid_list_buffer Size of sid_list_buffer (in bytes).
1029  *
1030  * @return false on failure, true on success.
1031  */
1032 static bool winbind_name_list_to_sid_string_list(struct pwb_context *ctx,
1033                                                  const char *user,
1034                                                  const char *name_list,
1035                                                  char *sid_list_buffer,
1036                                                  int sid_list_buffer_size)
1037 {
1038         bool result = false;
1039         char *current_name = NULL;
1040         const char *search_location;
1041         const char *comma;
1042
1043         if (sid_list_buffer_size > 0) {
1044                 sid_list_buffer[0] = 0;
1045         }
1046
1047         search_location = name_list;
1048         while ((comma = strstr(search_location, ",")) != NULL) {
1049                 current_name = strndup(search_location,
1050                                        comma - search_location);
1051                 if (NULL == current_name) {
1052                         goto out;
1053                 }
1054
1055                 if (!winbind_name_to_sid_string(ctx, user,
1056                                                 current_name,
1057                                                 sid_list_buffer,
1058                                                 sid_list_buffer_size)) {
1059                         goto out;
1060                 }
1061
1062                 SAFE_FREE(current_name);
1063
1064                 if (!safe_append_string(sid_list_buffer, ",",
1065                                         sid_list_buffer_size)) {
1066                         goto out;
1067                 }
1068
1069                 search_location = comma + 1;
1070         }
1071
1072         if (!winbind_name_to_sid_string(ctx, user, search_location,
1073                                         sid_list_buffer,
1074                                         sid_list_buffer_size)) {
1075                 goto out;
1076         }
1077
1078         result = true;
1079
1080 out:
1081         SAFE_FREE(current_name);
1082         return result;
1083 }
1084
1085 /**
1086  * put krb5ccname variable into environment
1087  *
1088  * @param ctx PAM winbind context.
1089  * @param krb5ccname env variable retrieved from winbindd.
1090  *
1091  * @return void.
1092  */
1093
1094 static void _pam_setup_krb5_env(struct pwb_context *ctx,
1095                                 struct wbcLogonUserInfo *info)
1096 {
1097         char var[PATH_MAX];
1098         int ret;
1099         uint32_t i;
1100         const char *krb5ccname = NULL;
1101
1102         if (off(ctx->ctrl, WINBIND_KRB5_AUTH)) {
1103                 return;
1104         }
1105
1106         if (!info) {
1107                 return;
1108         }
1109
1110         for (i=0; i < info->num_blobs; i++) {
1111                 if (strcasecmp(info->blobs[i].name, "krb5ccname") == 0) {
1112                         krb5ccname = (const char *)info->blobs[i].blob.data;
1113                         break;
1114                 }
1115         }
1116
1117         if (!krb5ccname || (strlen(krb5ccname) == 0)) {
1118                 return;
1119         }
1120
1121         _pam_log_debug(ctx, LOG_DEBUG,
1122                        "request returned KRB5CCNAME: %s", krb5ccname);
1123
1124         if (snprintf(var, sizeof(var), "KRB5CCNAME=%s", krb5ccname) == -1) {
1125                 return;
1126         }
1127
1128         ret = pam_putenv(ctx->pamh, var);
1129         if (ret) {
1130                 _pam_log(ctx, LOG_ERR,
1131                          "failed to set KRB5CCNAME to %s: %s",
1132                          var, pam_strerror(ctx->pamh, ret));
1133         }
1134 }
1135
1136 /**
1137  * Copy unix username if available (further processed in PAM).
1138  *
1139  * @param ctx PAM winbind context
1140  * @param user_ret A pointer that holds a pointer to a string
1141  * @param unix_username A username
1142  *
1143  * @return void.
1144  */
1145
1146 static void _pam_setup_unix_username(struct pwb_context *ctx,
1147                                      char **user_ret,
1148                                      struct wbcLogonUserInfo *info)
1149 {
1150         const char *unix_username = NULL;
1151         uint32_t i;
1152
1153         if (!user_ret || !info) {
1154                 return;
1155         }
1156
1157         for (i=0; i < info->num_blobs; i++) {
1158                 if (strcasecmp(info->blobs[i].name, "unix_username") == 0) {
1159                         unix_username = (const char *)info->blobs[i].blob.data;
1160                         break;
1161                 }
1162         }
1163
1164         if (!unix_username || !unix_username[0]) {
1165                 return;
1166         }
1167
1168         *user_ret = strdup(unix_username);
1169 }
1170
1171 /**
1172  * Set string into the PAM stack.
1173  *
1174  * @param ctx PAM winbind context.
1175  * @param data_name Key name for pam_set_data.
1176  * @param value String value.
1177  *
1178  * @return void.
1179  */
1180
1181 static void _pam_set_data_string(struct pwb_context *ctx,
1182                                  const char *data_name,
1183                                  const char *value)
1184 {
1185         int ret;
1186
1187         if (!data_name || !value || (strlen(data_name) == 0) ||
1188              (strlen(value) == 0)) {
1189                 return;
1190         }
1191
1192         ret = pam_set_data(ctx->pamh, data_name, talloc_strdup(NULL, value),
1193                            _pam_winbind_cleanup_func);
1194         if (ret) {
1195                 _pam_log_debug(ctx, LOG_DEBUG,
1196                                "Could not set data %s: %s\n",
1197                                data_name, pam_strerror(ctx->pamh, ret));
1198         }
1199 }
1200
1201 /**
1202  * Set info3 strings into the PAM stack.
1203  *
1204  * @param ctx PAM winbind context.
1205  * @param data_name Key name for pam_set_data.
1206  * @param value String value.
1207  *
1208  * @return void.
1209  */
1210
1211 static void _pam_set_data_info3(struct pwb_context *ctx,
1212                                 const struct wbcAuthUserInfo *info)
1213 {
1214         _pam_set_data_string(ctx, PAM_WINBIND_HOMEDIR,
1215                              info->home_directory);
1216         _pam_set_data_string(ctx, PAM_WINBIND_LOGONSCRIPT,
1217                              info->logon_script);
1218         _pam_set_data_string(ctx, PAM_WINBIND_LOGONSERVER,
1219                              info->logon_server);
1220         _pam_set_data_string(ctx, PAM_WINBIND_PROFILEPATH,
1221                              info->profile_path);
1222 }
1223
1224 /**
1225  * Free info3 strings in the PAM stack.
1226  *
1227  * @param pamh PAM handle
1228  *
1229  * @return void.
1230  */
1231
1232 static void _pam_free_data_info3(pam_handle_t *pamh)
1233 {
1234         pam_set_data(pamh, PAM_WINBIND_HOMEDIR, NULL, NULL);
1235         pam_set_data(pamh, PAM_WINBIND_LOGONSCRIPT, NULL, NULL);
1236         pam_set_data(pamh, PAM_WINBIND_LOGONSERVER, NULL, NULL);
1237         pam_set_data(pamh, PAM_WINBIND_PROFILEPATH, NULL, NULL);
1238 }
1239
1240 /**
1241  * Send PAM_ERROR_MSG for cached or grace logons.
1242  *
1243  * @param ctx PAM winbind context.
1244  * @param username User in PAM request.
1245  * @param info3_user_flgs Info3 flags containing logon type bits.
1246  *
1247  * @return void.
1248  */
1249
1250 static void _pam_warn_logon_type(struct pwb_context *ctx,
1251                                  const char *username,
1252                                  uint32_t info3_user_flgs)
1253 {
1254         /* inform about logon type */
1255         if (PAM_WB_GRACE_LOGON(info3_user_flgs)) {
1256
1257                 _make_remark(ctx, PAM_ERROR_MSG,
1258                              _("Grace login. "
1259                                "Please change your password as soon you're "
1260                                "online again"));
1261                 _pam_log_debug(ctx, LOG_DEBUG,
1262                                "User %s logged on using grace logon\n",
1263                                username);
1264
1265         } else if (PAM_WB_CACHED_LOGON(info3_user_flgs)) {
1266
1267                 _make_remark(ctx, PAM_ERROR_MSG,
1268                              _("Domain Controller unreachable, "
1269                                "using cached credentials instead. "
1270                                "Network resources may be unavailable"));
1271                 _pam_log_debug(ctx, LOG_DEBUG,
1272                                "User %s logged on using cached credentials\n",
1273                                username);
1274         }
1275 }
1276
1277 /**
1278  * Send PAM_ERROR_MSG for krb5 errors.
1279  *
1280  * @param ctx PAM winbind context.
1281  * @param username User in PAM request.
1282  * @param info3_user_flgs Info3 flags containing logon type bits.
1283  *
1284  * @return void.
1285  */
1286
1287 static void _pam_warn_krb5_failure(struct pwb_context *ctx,
1288                                    const char *username,
1289                                    uint32_t info3_user_flgs)
1290 {
1291         if (PAM_WB_KRB5_CLOCK_SKEW(info3_user_flgs)) {
1292                 _make_remark(ctx, PAM_ERROR_MSG,
1293                              _("Failed to establish your Kerberos Ticket cache "
1294                                "due time differences\n"
1295                                "with the domain controller.  "
1296                                "Please verify the system time.\n"));
1297                 _pam_log_debug(ctx, LOG_DEBUG,
1298                                "User %s: Clock skew when getting Krb5 TGT\n",
1299                                username);
1300         }
1301 }
1302
1303 static bool _pam_check_remark_auth_err(struct pwb_context *ctx,
1304                                        const struct wbcAuthErrorInfo *e,
1305                                        const char *nt_status_string,
1306                                        int *pam_error)
1307 {
1308         const char *ntstatus = NULL;
1309         const char *error_string = NULL;
1310
1311         if (!e || !pam_error) {
1312                 return false;
1313         }
1314
1315         ntstatus = e->nt_string;
1316         if (!ntstatus) {
1317                 return false;
1318         }
1319
1320         if (strcasecmp(ntstatus, nt_status_string) == 0) {
1321
1322                 error_string = _get_ntstatus_error_string(nt_status_string);
1323                 if (error_string) {
1324                         _make_remark(ctx, PAM_ERROR_MSG, error_string);
1325                         *pam_error = e->pam_error;
1326                         return true;
1327                 }
1328
1329                 if (e->display_string) {
1330                         _make_remark(ctx, PAM_ERROR_MSG, e->display_string);
1331                         *pam_error = e->pam_error;
1332                         return true;
1333                 }
1334
1335                 _make_remark(ctx, PAM_ERROR_MSG, nt_status_string);
1336                 *pam_error = e->pam_error;
1337
1338                 return true;
1339         }
1340
1341         return false;
1342 };
1343
1344 /**
1345  * Compose Password Restriction String for a PAM_ERROR_MSG conversation.
1346  *
1347  * @param i The wbcUserPasswordPolicyInfo struct.
1348  *
1349  * @return string (caller needs to talloc_free).
1350  */
1351
1352 static char *_pam_compose_pwd_restriction_string(struct pwb_context *ctx,
1353                                                  struct wbcUserPasswordPolicyInfo *i)
1354 {
1355         char *str = NULL;
1356
1357         if (!i) {
1358                 goto failed;
1359         }
1360
1361         str = talloc_asprintf(ctx, _("Your password "));
1362         if (!str) {
1363                 goto failed;
1364         }
1365
1366         if (i->min_length_password > 0) {
1367                 str = talloc_asprintf_append(str,
1368                                _("must be at least %d characters; "),
1369                                i->min_length_password);
1370                 if (!str) {
1371                         goto failed;
1372                 }
1373         }
1374
1375         if (i->password_history > 0) {
1376                 str = talloc_asprintf_append(str,
1377                                _("cannot repeat any of your previous %d "
1378                                 "passwords; "),
1379                                i->password_history);
1380                 if (!str) {
1381                         goto failed;
1382                 }
1383         }
1384
1385         if (i->password_properties & WBC_DOMAIN_PASSWORD_COMPLEX) {
1386                 str = talloc_asprintf_append(str,
1387                                _("must contain capitals, numerals "
1388                                  "or punctuation; "
1389                                  "and cannot contain your account "
1390                                  "or full name; "));
1391                 if (!str) {
1392                         goto failed;
1393                 }
1394         }
1395
1396         str = talloc_asprintf_append(str,
1397                        _("Please type a different password. "
1398                          "Type a password which meets these requirements in "
1399                          "both text boxes."));
1400         if (!str) {
1401                 goto failed;
1402         }
1403
1404         return str;
1405
1406  failed:
1407         TALLOC_FREE(str);
1408         return NULL;
1409 }
1410
1411 static int _pam_create_homedir(struct pwb_context *ctx,
1412                                const char *dirname,
1413                                mode_t mode)
1414 {
1415         struct stat sbuf;
1416
1417         if (stat(dirname, &sbuf) == 0) {
1418                 return PAM_SUCCESS;
1419         }
1420
1421         if (mkdir(dirname, mode) != 0) {
1422
1423                 _make_remark_format(ctx, PAM_TEXT_INFO,
1424                                     _("Creating directory: %s failed: %s"),
1425                                     dirname, strerror(errno));
1426                 _pam_log(ctx, LOG_ERR, "could not create dir: %s (%s)",
1427                  dirname, strerror(errno));
1428                  return PAM_PERM_DENIED;
1429         }
1430
1431         return PAM_SUCCESS;
1432 }
1433
1434 static int _pam_chown_homedir(struct pwb_context *ctx,
1435                               const char *dirname,
1436                               uid_t uid,
1437                               gid_t gid)
1438 {
1439         if (chown(dirname, uid, gid) != 0) {
1440                 _pam_log(ctx, LOG_ERR, "failed to chown user homedir: %s (%s)",
1441                          dirname, strerror(errno));
1442                 return PAM_PERM_DENIED;
1443         }
1444
1445         return PAM_SUCCESS;
1446 }
1447
1448 static int _pam_mkhomedir(struct pwb_context *ctx)
1449 {
1450         struct passwd *pwd = NULL;
1451         char *token = NULL;
1452         char *create_dir = NULL;
1453         char *user_dir = NULL;
1454         int ret;
1455         const char *username;
1456         mode_t mode = 0700;
1457         char *safe_ptr = NULL;
1458         char *p = NULL;
1459
1460         /* Get the username */
1461         ret = pam_get_user(ctx->pamh, &username, NULL);
1462         if ((ret != PAM_SUCCESS) || (!username)) {
1463                 _pam_log_debug(ctx, LOG_DEBUG, "can not get the username");
1464                 return PAM_SERVICE_ERR;
1465         }
1466
1467         pwd = getpwnam(username);
1468         if (pwd == NULL) {
1469                 _pam_log_debug(ctx, LOG_DEBUG, "can not get the username");
1470                 return PAM_USER_UNKNOWN;
1471         }
1472         _pam_log_debug(ctx, LOG_DEBUG, "homedir is: %s", pwd->pw_dir);
1473
1474         ret = _pam_create_homedir(ctx, pwd->pw_dir, 0700);
1475         if (ret == PAM_SUCCESS) {
1476                 ret = _pam_chown_homedir(ctx, pwd->pw_dir,
1477                                          pwd->pw_uid,
1478                                          pwd->pw_gid);
1479         }
1480
1481         if (ret == PAM_SUCCESS) {
1482                 return ret;
1483         }
1484
1485         /* maybe we need to create parent dirs */
1486         create_dir = talloc_strdup(ctx, "/");
1487         if (!create_dir) {
1488                 return PAM_BUF_ERR;
1489         }
1490
1491         /* find final directory */
1492         user_dir = strrchr(pwd->pw_dir, '/');
1493         if (!user_dir) {
1494                 return PAM_BUF_ERR;
1495         }
1496         user_dir++;
1497
1498         _pam_log(ctx, LOG_DEBUG, "final directory: %s", user_dir);
1499
1500         p = pwd->pw_dir;
1501
1502         while ((token = strtok_r(p, "/", &safe_ptr)) != NULL) {
1503
1504                 mode = 0755;
1505
1506                 p = NULL;
1507
1508                 _pam_log_debug(ctx, LOG_DEBUG, "token is %s", token);
1509
1510                 create_dir = talloc_asprintf_append(create_dir, "%s/", token);
1511                 if (!create_dir) {
1512                         return PAM_BUF_ERR;
1513                 }
1514                 _pam_log_debug(ctx, LOG_DEBUG, "current_dir is %s", create_dir);
1515
1516                 if (strcmp(token, user_dir) == 0) {
1517                         _pam_log_debug(ctx, LOG_DEBUG, "assuming last directory: %s", token);
1518                         mode = 0700;
1519                 }
1520
1521                 ret = _pam_create_homedir(ctx, create_dir, mode);
1522                 if (ret) {
1523                         return ret;
1524                 }
1525         }
1526
1527         return _pam_chown_homedir(ctx, create_dir,
1528                                   pwd->pw_uid,
1529                                   pwd->pw_gid);
1530 }
1531
1532 /* talk to winbindd */
1533 static int winbind_auth_request(struct pwb_context *ctx,
1534                                 const char *user,
1535                                 const char *pass,
1536                                 const char *member,
1537                                 const char *cctype,
1538                                 const int warn_pwd_expire,
1539                                 struct wbcAuthErrorInfo **p_error,
1540                                 struct wbcLogonUserInfo **p_info,
1541                                 struct wbcUserPasswordPolicyInfo **p_policy,
1542                                 time_t *pwd_last_set,
1543                                 char **user_ret)
1544 {
1545         wbcErr wbc_status;
1546
1547         struct wbcLogonUserParams logon;
1548         char membership_of[1024];
1549         uid_t user_uid = -1;
1550         uint32_t flags = WBFLAG_PAM_INFO3_TEXT |
1551                          WBFLAG_PAM_GET_PWD_POLICY;
1552
1553         struct wbcLogonUserInfo *info = NULL;
1554         struct wbcAuthUserInfo *user_info = NULL;
1555         struct wbcAuthErrorInfo *error = NULL;
1556         struct wbcUserPasswordPolicyInfo *policy = NULL;
1557
1558         int ret = PAM_AUTH_ERR;
1559         int i;
1560         const char *codes[] = {
1561                 "NT_STATUS_PASSWORD_EXPIRED",
1562                 "NT_STATUS_PASSWORD_MUST_CHANGE",
1563                 "NT_STATUS_INVALID_WORKSTATION",
1564                 "NT_STATUS_INVALID_LOGON_HOURS",
1565                 "NT_STATUS_ACCOUNT_EXPIRED",
1566                 "NT_STATUS_ACCOUNT_DISABLED",
1567                 "NT_STATUS_ACCOUNT_LOCKED_OUT",
1568                 "NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT",
1569                 "NT_STATUS_NOLOGON_SERVER_TRUST_ACCOUNT",
1570                 "NT_STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT",
1571                 "NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND",
1572                 "NT_STATUS_NO_LOGON_SERVERS",
1573                 "NT_STATUS_WRONG_PASSWORD",
1574                 "NT_STATUS_ACCESS_DENIED"
1575         };
1576
1577         if (pwd_last_set) {
1578                 *pwd_last_set = 0;
1579         }
1580
1581         /* Krb5 auth always has to go against the KDC of the user's realm */
1582
1583         if (ctx->ctrl & WINBIND_KRB5_AUTH) {
1584                 flags           |= WBFLAG_PAM_CONTACT_TRUSTDOM;
1585         }
1586
1587         if (ctx->ctrl & (WINBIND_KRB5_AUTH|WINBIND_CACHED_LOGIN)) {
1588                 struct passwd *pwd = NULL;
1589
1590                 pwd = getpwnam(user);
1591                 if (pwd == NULL) {
1592                         return PAM_USER_UNKNOWN;
1593                 }
1594                 user_uid        = pwd->pw_uid;
1595         }
1596
1597         if (ctx->ctrl & WINBIND_KRB5_AUTH) {
1598
1599                 _pam_log_debug(ctx, LOG_DEBUG,
1600                                "enabling krb5 login flag\n");
1601
1602                 flags           |= WBFLAG_PAM_KRB5 |
1603                                    WBFLAG_PAM_FALLBACK_AFTER_KRB5;
1604         }
1605
1606         if (ctx->ctrl & WINBIND_CACHED_LOGIN) {
1607                 _pam_log_debug(ctx, LOG_DEBUG,
1608                                "enabling cached login flag\n");
1609                 flags           |= WBFLAG_PAM_CACHED_LOGIN;
1610         }
1611
1612         if (user_ret) {
1613                 *user_ret = NULL;
1614                 flags           |= WBFLAG_PAM_UNIX_NAME;
1615         }
1616
1617         if (cctype != NULL) {
1618                 _pam_log_debug(ctx, LOG_DEBUG,
1619                                "enabling request for a %s krb5 ccache\n",
1620                                cctype);
1621         }
1622
1623         if (member != NULL) {
1624
1625                 ZERO_STRUCT(membership_of);
1626
1627                 if (!winbind_name_list_to_sid_string_list(ctx, user, member,
1628                                                           membership_of,
1629                                                           sizeof(membership_of))) {
1630                         _pam_log_debug(ctx, LOG_ERR,
1631                                        "failed to serialize membership of sid "
1632                                        "\"%s\"\n", member);
1633                         return PAM_AUTH_ERR;
1634                 }
1635         }
1636
1637         ZERO_STRUCT(logon);
1638
1639         logon.username                  = user;
1640         logon.password                  = pass;
1641
1642         if (cctype) {
1643                 wbc_status = wbcAddNamedBlob(&logon.num_blobs,
1644                                              &logon.blobs,
1645                                              "krb5_cc_type",
1646                                              0,
1647                                              (uint8_t *)cctype,
1648                                              strlen(cctype)+1);
1649                 if (!WBC_ERROR_IS_OK(wbc_status)) {
1650                         goto done;
1651                 }
1652         }
1653
1654         wbc_status = wbcAddNamedBlob(&logon.num_blobs,
1655                                      &logon.blobs,
1656                                      "flags",
1657                                      0,
1658                                      (uint8_t *)&flags,
1659                                      sizeof(flags));
1660         if (!WBC_ERROR_IS_OK(wbc_status)) {
1661                 goto done;
1662         }
1663
1664         wbc_status = wbcAddNamedBlob(&logon.num_blobs,
1665                                      &logon.blobs,
1666                                      "user_uid",
1667                                      0,
1668                                      (uint8_t *)&user_uid,
1669                                      sizeof(user_uid));
1670         if (!WBC_ERROR_IS_OK(wbc_status)) {
1671                 goto done;
1672         }
1673
1674         if (member) {
1675                 wbc_status = wbcAddNamedBlob(&logon.num_blobs,
1676                                              &logon.blobs,
1677                                              "membership_of",
1678                                              0,
1679                                              (uint8_t *)membership_of,
1680                                              sizeof(membership_of));
1681                 if (!WBC_ERROR_IS_OK(wbc_status)) {
1682                         goto done;
1683                 }
1684         }
1685
1686         wbc_status = wbcLogonUser(&logon, &info, &error, &policy);
1687         ret = wbc_auth_error_to_pam_error(ctx, error, wbc_status,
1688                                           user, "wbcLogonUser");
1689         wbcFreeMemory(logon.blobs);
1690         logon.blobs = NULL;
1691
1692         if (info && info->info) {
1693                 user_info = info->info;
1694         }
1695
1696         if (pwd_last_set && user_info) {
1697                 *pwd_last_set = user_info->pass_last_set_time;
1698         }
1699
1700         if (p_info && info) {
1701                 *p_info = info;
1702         }
1703
1704         if (p_policy && policy) {
1705                 *p_policy = policy;
1706         }
1707
1708         if (p_error && error) {
1709                 /* We want to process the error in the caller. */
1710                 *p_error = error;
1711                 return ret;
1712         }
1713
1714         for (i=0; i<ARRAY_SIZE(codes); i++) {
1715                 int _ret = ret;
1716                 if (_pam_check_remark_auth_err(ctx, error, codes[i], &_ret)) {
1717                         ret = _ret;
1718                         goto done;
1719                 }
1720         }
1721
1722         if ((ret == PAM_SUCCESS) && user_info && policy && info) {
1723
1724                 bool already_expired = false;
1725
1726                 /* warn a user if the password is about to expire soon */
1727                 _pam_warn_password_expiry(ctx, user_info, policy,
1728                                           warn_pwd_expire,
1729                                           &already_expired);
1730
1731                 if (already_expired == true) {
1732
1733                         SMB_TIME_T last_set = user_info->pass_last_set_time;
1734
1735                         _pam_log_debug(ctx, LOG_DEBUG,
1736                                        "Password has expired "
1737                                        "(Password was last set: %lld, "
1738                                        "the policy says it should expire here "
1739                                        "%lld (now it's: %lu))\n",
1740                                        (long long int)last_set,
1741                                        (long long int)last_set +
1742                                        policy->expire,
1743                                        time(NULL));
1744
1745                         return PAM_AUTHTOK_EXPIRED;
1746                 }
1747
1748                 /* inform about logon type */
1749                 _pam_warn_logon_type(ctx, user, user_info->user_flags);
1750
1751                 /* inform about krb5 failures */
1752                 _pam_warn_krb5_failure(ctx, user, user_info->user_flags);
1753
1754                 /* set some info3 info for other modules in the stack */
1755                 _pam_set_data_info3(ctx, user_info);
1756
1757                 /* put krb5ccname into env */
1758                 _pam_setup_krb5_env(ctx, info);
1759
1760                 /* If winbindd returned a username, return the pointer to it
1761                  * here. */
1762                 _pam_setup_unix_username(ctx, user_ret, info);
1763         }
1764
1765  done:
1766         if (logon.blobs) {
1767                 wbcFreeMemory(logon.blobs);
1768         }
1769         if (info && info->blobs) {
1770                 wbcFreeMemory(info->blobs);
1771         }
1772         if (error && !p_error) {
1773                 wbcFreeMemory(error);
1774         }
1775         if (info && !p_info) {
1776                 wbcFreeMemory(info);
1777         }
1778         if (policy && !p_policy) {
1779                 wbcFreeMemory(policy);
1780         }
1781
1782         return ret;
1783 }
1784
1785 /* talk to winbindd */
1786 static int winbind_chauthtok_request(struct pwb_context *ctx,
1787                                      const char *user,
1788                                      const char *oldpass,
1789                                      const char *newpass,
1790                                      time_t pwd_last_set)
1791 {
1792         wbcErr wbc_status;
1793         struct wbcChangePasswordParams params;
1794         struct wbcAuthErrorInfo *error = NULL;
1795         struct wbcUserPasswordPolicyInfo *policy = NULL;
1796         enum wbcPasswordChangeRejectReason reject_reason = -1;
1797         uint32_t flags = 0;
1798
1799         int i;
1800         const char *codes[] = {
1801                 "NT_STATUS_BACKUP_CONTROLLER",
1802                 "NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND",
1803                 "NT_STATUS_NO_LOGON_SERVERS",
1804                 "NT_STATUS_ACCESS_DENIED",
1805                 "NT_STATUS_PWD_TOO_SHORT", /* TODO: tell the min pwd length ? */
1806                 "NT_STATUS_PWD_TOO_RECENT", /* TODO: tell the minage ? */
1807                 "NT_STATUS_PWD_HISTORY_CONFLICT" /* TODO: tell the history length ? */
1808         };
1809         int ret = PAM_AUTH_ERR;
1810
1811         ZERO_STRUCT(params);
1812
1813         if (ctx->ctrl & WINBIND_KRB5_AUTH) {
1814                 flags |= WBFLAG_PAM_KRB5 |
1815                          WBFLAG_PAM_CONTACT_TRUSTDOM;
1816         }
1817
1818         if (ctx->ctrl & WINBIND_CACHED_LOGIN) {
1819                 flags |= WBFLAG_PAM_CACHED_LOGIN;
1820         }
1821
1822         params.account_name             = user;
1823         params.level                    = WBC_AUTH_USER_LEVEL_PLAIN;
1824         params.old_password.plaintext   = oldpass;
1825         params.new_password.plaintext   = newpass;
1826         params.flags                    = flags;
1827
1828         wbc_status = wbcChangeUserPasswordEx(&params, &error, &reject_reason, &policy);
1829         ret = wbc_auth_error_to_pam_error(ctx, error, wbc_status,
1830                                           user, "wbcChangeUserPasswordEx");
1831
1832         if (WBC_ERROR_IS_OK(wbc_status)) {
1833                 _pam_log(ctx, LOG_NOTICE,
1834                          "user '%s' password changed", user);
1835                 return PAM_SUCCESS;
1836         }
1837
1838         if (!error) {
1839                 wbcFreeMemory(policy);
1840                 return ret;
1841         }
1842
1843         for (i=0; i<ARRAY_SIZE(codes); i++) {
1844                 int _ret = ret;
1845                 if (_pam_check_remark_auth_err(ctx, error, codes[i], &_ret)) {
1846                         ret = _ret;
1847                         goto done;
1848                 }
1849         }
1850
1851         if (!strcasecmp(error->nt_string,
1852                         "NT_STATUS_PASSWORD_RESTRICTION")) {
1853
1854                 char *pwd_restriction_string = NULL;
1855                 SMB_TIME_T min_pwd_age = 0;
1856
1857                 if (policy) {
1858                         min_pwd_age     = policy->min_passwordage;
1859                 }
1860
1861                 /* FIXME: avoid to send multiple PAM messages after another */
1862                 switch (reject_reason) {
1863                         case -1:
1864                                 break;
1865                         case WBC_PWD_CHANGE_REJECT_OTHER:
1866                                 if ((min_pwd_age > 0) &&
1867                                     (pwd_last_set + min_pwd_age > time(NULL))) {
1868                                         PAM_WB_REMARK_DIRECT(ctx,
1869                                              "NT_STATUS_PWD_TOO_RECENT");
1870                                 }
1871                                 break;
1872                         case WBC_PWD_CHANGE_REJECT_TOO_SHORT:
1873                                 PAM_WB_REMARK_DIRECT(ctx,
1874                                         "NT_STATUS_PWD_TOO_SHORT");
1875                                 break;
1876                         case WBC_PWD_CHANGE_REJECT_IN_HISTORY:
1877                                 PAM_WB_REMARK_DIRECT(ctx,
1878                                         "NT_STATUS_PWD_HISTORY_CONFLICT");
1879                                 break;
1880                         case WBC_PWD_CHANGE_REJECT_COMPLEXITY:
1881                                 _make_remark(ctx, PAM_ERROR_MSG,
1882                                              _("Password does not meet "
1883                                                "complexity requirements"));
1884                                 break;
1885                         default:
1886                                 _pam_log_debug(ctx, LOG_DEBUG,
1887                                                "unknown password change "
1888                                                "reject reason: %d",
1889                                                reject_reason);
1890                                 break;
1891                 }
1892
1893                 pwd_restriction_string =
1894                         _pam_compose_pwd_restriction_string(ctx, policy);
1895                 if (pwd_restriction_string) {
1896                         _make_remark(ctx, PAM_ERROR_MSG,
1897                                      pwd_restriction_string);
1898                         TALLOC_FREE(pwd_restriction_string);
1899                 }
1900         }
1901  done:
1902         wbcFreeMemory(error);
1903         wbcFreeMemory(policy);
1904
1905         return ret;
1906 }
1907
1908 /*
1909  * Checks if a user has an account
1910  *
1911  * return values:
1912  *       1  = User not found
1913  *       0  = OK
1914  *      -1  = System error
1915  */
1916 static int valid_user(struct pwb_context *ctx,
1917                       const char *user)
1918 {
1919         /* check not only if the user is available over NSS calls, also make
1920          * sure it's really a winbind user, this is important when stacking PAM
1921          * modules in the 'account' or 'password' facility. */
1922
1923         wbcErr wbc_status;
1924         struct passwd *pwd = NULL;
1925         struct passwd *wb_pwd = NULL;
1926
1927         pwd = getpwnam(user);
1928         if (pwd == NULL) {
1929                 return 1;
1930         }
1931
1932         wbc_status = wbcGetpwnam(user, &wb_pwd);
1933         wbcFreeMemory(wb_pwd);
1934         if (!WBC_ERROR_IS_OK(wbc_status)) {
1935                 _pam_log(ctx, LOG_DEBUG, "valid_user: wbcGetpwnam gave %s\n",
1936                         wbcErrorString(wbc_status));
1937         }
1938
1939         switch (wbc_status) {
1940                 case WBC_ERR_UNKNOWN_USER:
1941                         return 1;
1942                 case WBC_ERR_SUCCESS:
1943                         return 0;
1944                 default:
1945                         break;
1946         }
1947         return -1;
1948 }
1949
1950 static char *_pam_delete(register char *xx)
1951 {
1952         _pam_overwrite(xx);
1953         _pam_drop(xx);
1954         return NULL;
1955 }
1956
1957 /*
1958  * obtain a password from the user
1959  */
1960
1961 static int _winbind_read_password(struct pwb_context *ctx,
1962                                   unsigned int ctrl,
1963                                   const char *comment,
1964                                   const char *prompt1,
1965                                   const char *prompt2,
1966                                   const char **pass)
1967 {
1968         int authtok_flag;
1969         int retval;
1970         const char *item;
1971         char *token;
1972
1973         _pam_log(ctx, LOG_DEBUG, "getting password (0x%08x)", ctrl);
1974
1975         /*
1976          * make sure nothing inappropriate gets returned
1977          */
1978
1979         *pass = token = NULL;
1980
1981         /*
1982          * which authentication token are we getting?
1983          */
1984
1985         if (on(WINBIND__OLD_PASSWORD, ctrl)) {
1986                 authtok_flag = PAM_OLDAUTHTOK;
1987         } else {
1988                 authtok_flag = PAM_AUTHTOK;
1989         }
1990
1991         /*
1992          * should we obtain the password from a PAM item ?
1993          */
1994
1995         if (on(WINBIND_TRY_FIRST_PASS_ARG, ctrl) ||
1996             on(WINBIND_USE_FIRST_PASS_ARG, ctrl)) {
1997                 retval = _pam_get_item(ctx->pamh, authtok_flag, &item);
1998                 if (retval != PAM_SUCCESS) {
1999                         /* very strange. */
2000                         _pam_log(ctx, LOG_ALERT,
2001                                  "pam_get_item returned error "
2002                                  "to unix-read-password");
2003                         return retval;
2004                 } else if (item != NULL) {      /* we have a password! */
2005                         *pass = item;
2006                         item = NULL;
2007                         _pam_log(ctx, LOG_DEBUG,
2008                                  "pam_get_item returned a password");
2009                         return PAM_SUCCESS;
2010                 } else if (on(WINBIND_USE_FIRST_PASS_ARG, ctrl)) {
2011                         return PAM_AUTHTOK_RECOVER_ERR; /* didn't work */
2012                 } else if (on(WINBIND_USE_AUTHTOK_ARG, ctrl)
2013                            && off(WINBIND__OLD_PASSWORD, ctrl)) {
2014                         return PAM_AUTHTOK_RECOVER_ERR;
2015                 }
2016         }
2017         /*
2018          * getting here implies we will have to get the password from the
2019          * user directly.
2020          */
2021
2022         {
2023                 struct pam_message msg[3], *pmsg[3];
2024                 struct pam_response *resp;
2025                 int i, replies;
2026
2027                 /* prepare to converse */
2028
2029                 if (comment != NULL && off(ctrl, WINBIND_SILENT)) {
2030                         pmsg[0] = &msg[0];
2031                         msg[0].msg_style = PAM_TEXT_INFO;
2032                         msg[0].msg = discard_const_p(char, comment);
2033                         i = 1;
2034                 } else {
2035                         i = 0;
2036                 }
2037
2038                 pmsg[i] = &msg[i];
2039                 msg[i].msg_style = PAM_PROMPT_ECHO_OFF;
2040                 msg[i++].msg = discard_const_p(char, prompt1);
2041                 replies = 1;
2042
2043                 if (prompt2 != NULL) {
2044                         pmsg[i] = &msg[i];
2045                         msg[i].msg_style = PAM_PROMPT_ECHO_OFF;
2046                         msg[i++].msg = discard_const_p(char, prompt2);
2047                         ++replies;
2048                 }
2049                 /* so call the conversation expecting i responses */
2050                 resp = NULL;
2051                 retval = converse(ctx->pamh, i, pmsg, &resp);
2052                 if (resp == NULL) {
2053                         if (retval == PAM_SUCCESS) {
2054                                 retval = PAM_AUTHTOK_RECOVER_ERR;
2055                         }
2056                         goto done;
2057                 }
2058                 if (retval != PAM_SUCCESS) {
2059                         _pam_drop_reply(resp, i);
2060                         goto done;
2061                 }
2062
2063                 /* interpret the response */
2064
2065                 token = x_strdup(resp[i - replies].resp);
2066                 if (!token) {
2067                         _pam_log(ctx, LOG_NOTICE,
2068                                  "could not recover "
2069                                  "authentication token");
2070                         retval = PAM_AUTHTOK_RECOVER_ERR;
2071                         goto done;
2072                 }
2073
2074                 if (replies == 2) {
2075                         /* verify that password entered correctly */
2076                         if (!resp[i - 1].resp ||
2077                             strcmp(token, resp[i - 1].resp)) {
2078                                 _pam_delete(token);     /* mistyped */
2079                                 retval = PAM_AUTHTOK_RECOVER_ERR;
2080                                 _make_remark(ctx, PAM_ERROR_MSG,
2081                                              MISTYPED_PASS);
2082                         }
2083                 }
2084
2085                 /*
2086                  * tidy up the conversation (resp_retcode) is ignored
2087                  * -- what is it for anyway? AGM
2088                  */
2089                 _pam_drop_reply(resp, i);
2090         }
2091
2092  done:
2093         if (retval != PAM_SUCCESS) {
2094                 _pam_log_debug(ctx, LOG_DEBUG,
2095                                "unable to obtain a password");
2096                 return retval;
2097         }
2098         /* 'token' is the entered password */
2099
2100         /* we store this password as an item */
2101
2102         retval = pam_set_item(ctx->pamh, authtok_flag, token);
2103         _pam_delete(token);     /* clean it up */
2104         if (retval != PAM_SUCCESS ||
2105             (retval = _pam_get_item(ctx->pamh, authtok_flag, &item)) != PAM_SUCCESS) {
2106
2107                 _pam_log(ctx, LOG_CRIT, "error manipulating password");
2108                 return retval;
2109
2110         }
2111
2112         *pass = item;
2113         item = NULL;            /* break link to password */
2114
2115         return PAM_SUCCESS;
2116 }
2117
2118 static const char *get_conf_item_string(struct pwb_context *ctx,
2119                                         const char *item,
2120                                         int config_flag)
2121 {
2122         int i = 0;
2123         const char *parm_opt = NULL;
2124
2125         if (!(ctx->ctrl & config_flag)) {
2126                 goto out;
2127         }
2128
2129         /* let the pam opt take precedence over the pam_winbind.conf option */
2130         for (i=0; i<ctx->argc; i++) {
2131
2132                 if ((strncmp(ctx->argv[i], item, strlen(item)) == 0)) {
2133                         char *p;
2134
2135                         if ((p = strchr(ctx->argv[i], '=')) == NULL) {
2136                                 _pam_log(ctx, LOG_INFO,
2137                                          "no \"=\" delimiter for \"%s\" found\n",
2138                                          item);
2139                                 goto out;
2140                         }
2141                         _pam_log_debug(ctx, LOG_INFO,
2142                                        "PAM config: %s '%s'\n", item, p+1);
2143                         return p + 1;
2144                 }
2145         }
2146
2147         if (ctx->dict) {
2148                 char *key = NULL;
2149
2150                 key = talloc_asprintf(ctx, "global:%s", item);
2151                 if (!key) {
2152                         goto out;
2153                 }
2154
2155                 parm_opt = iniparser_getstr(ctx->dict, key);
2156                 TALLOC_FREE(key);
2157
2158                 _pam_log_debug(ctx, LOG_INFO, "CONFIG file: %s '%s'\n",
2159                                item, parm_opt);
2160         }
2161 out:
2162         return parm_opt;
2163 }
2164
2165 static int get_config_item_int(struct pwb_context *ctx,
2166                                const char *item,
2167                                int config_flag)
2168 {
2169         int i, parm_opt = -1;
2170
2171         if (!(ctx->ctrl & config_flag)) {
2172                 goto out;
2173         }
2174
2175         /* let the pam opt take precedence over the pam_winbind.conf option */
2176         for (i = 0; i < ctx->argc; i++) {
2177
2178                 if ((strncmp(ctx->argv[i], item, strlen(item)) == 0)) {
2179                         char *p;
2180
2181                         if ((p = strchr(ctx->argv[i], '=')) == NULL) {
2182                                 _pam_log(ctx, LOG_INFO,
2183                                          "no \"=\" delimiter for \"%s\" found\n",
2184                                          item);
2185                                 goto out;
2186                         }
2187                         parm_opt = atoi(p + 1);
2188                         _pam_log_debug(ctx, LOG_INFO,
2189                                        "PAM config: %s '%d'\n",
2190                                        item, parm_opt);
2191                         return parm_opt;
2192                 }
2193         }
2194
2195         if (ctx->dict) {
2196                 char *key = NULL;
2197
2198                 key = talloc_asprintf(ctx, "global:%s", item);
2199                 if (!key) {
2200                         goto out;
2201                 }
2202
2203                 parm_opt = iniparser_getint(ctx->dict, key, -1);
2204                 TALLOC_FREE(key);
2205
2206                 _pam_log_debug(ctx, LOG_INFO,
2207                                "CONFIG file: %s '%d'\n",
2208                                item, parm_opt);
2209         }
2210 out:
2211         return parm_opt;
2212 }
2213
2214 static const char *get_krb5_cc_type_from_config(struct pwb_context *ctx)
2215 {
2216         return get_conf_item_string(ctx, "krb5_ccache_type",
2217                                     WINBIND_KRB5_CCACHE_TYPE);
2218 }
2219
2220 static const char *get_member_from_config(struct pwb_context *ctx)
2221 {
2222         const char *ret = NULL;
2223         ret = get_conf_item_string(ctx, "require_membership_of",
2224                                    WINBIND_REQUIRED_MEMBERSHIP);
2225         if (ret) {
2226                 return ret;
2227         }
2228         return get_conf_item_string(ctx, "require-membership-of",
2229                                     WINBIND_REQUIRED_MEMBERSHIP);
2230 }
2231
2232 static int get_warn_pwd_expire_from_config(struct pwb_context *ctx)
2233 {
2234         int ret;
2235         ret = get_config_item_int(ctx, "warn_pwd_expire",
2236                                   WINBIND_WARN_PWD_EXPIRE);
2237         /* no or broken setting */
2238         if (ret <= 0) {
2239                 return DEFAULT_DAYS_TO_WARN_BEFORE_PWD_EXPIRES;
2240         }
2241         return ret;
2242 }
2243
2244 /**
2245  * Retrieve the winbind separator.
2246  *
2247  * @param ctx PAM winbind context.
2248  *
2249  * @return string separator character. NULL on failure.
2250  */
2251
2252 static char winbind_get_separator(struct pwb_context *ctx)
2253 {
2254         wbcErr wbc_status;
2255         static struct wbcInterfaceDetails *details = NULL;
2256
2257         wbc_status = wbcInterfaceDetails(&details);
2258         if (!WBC_ERROR_IS_OK(wbc_status)) {
2259                 _pam_log(ctx, LOG_ERR,
2260                          "Could not retrieve winbind interface details: %s",
2261                          wbcErrorString(wbc_status));
2262                 return '\0';
2263         }
2264
2265         if (!details) {
2266                 return '\0';
2267         }
2268
2269         return details->winbind_separator;
2270 }
2271
2272
2273 /**
2274  * Convert a upn to a name.
2275  *
2276  * @param ctx PAM winbind context.
2277  * @param upn  USer UPN to be trabslated.
2278  *
2279  * @return converted name. NULL pointer on failure. Caller needs to free.
2280  */
2281
2282 static char* winbind_upn_to_username(struct pwb_context *ctx,
2283                                      const char *upn)
2284 {
2285         char sep;
2286         wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE;
2287         struct wbcDomainSid sid;
2288         enum wbcSidType type;
2289         char *domain;
2290         char *name;
2291         char *p;
2292
2293         /* This cannot work when the winbind separator = @ */
2294
2295         sep = winbind_get_separator(ctx);
2296         if (!sep || sep == '@') {
2297                 return NULL;
2298         }
2299
2300         name = talloc_strdup(ctx, upn);
2301         if ((p = strchr(name, '@')) != NULL) {
2302                 *p = 0;
2303                 domain = talloc_strdup(ctx, p + 1);
2304         }
2305
2306         /* Convert the UPN to a SID */
2307
2308         wbc_status = wbcLookupName(domain, name, &sid, &type);
2309         if (!WBC_ERROR_IS_OK(wbc_status)) {
2310                 return NULL;
2311         }
2312
2313         /* Convert the the SID back to the sAMAccountName */
2314
2315         wbc_status = wbcLookupSid(&sid, &domain, &name, &type);
2316         if (!WBC_ERROR_IS_OK(wbc_status)) {
2317                 return NULL;
2318         }
2319
2320         return talloc_asprintf(ctx, "%s\\%s", domain, name);
2321 }
2322
2323 static int _pam_delete_cred(pam_handle_t *pamh, int flags,
2324                          int argc, const char **argv)
2325 {
2326         int retval = PAM_SUCCESS;
2327         struct pwb_context *ctx = NULL;
2328         struct wbcLogoffUserParams logoff;
2329         struct wbcAuthErrorInfo *error = NULL;
2330         const char *user;
2331         wbcErr wbc_status = WBC_ERR_SUCCESS;
2332
2333         ZERO_STRUCT(logoff);
2334
2335         retval = _pam_winbind_init_context(pamh, flags, argc, argv, &ctx);
2336         if (retval) {
2337                 goto out;
2338         }
2339
2340         _PAM_LOG_FUNCTION_ENTER("_pam_delete_cred", ctx);
2341
2342         if (ctx->ctrl & WINBIND_KRB5_AUTH) {
2343
2344                 /* destroy the ccache here */
2345
2346                 uint32_t wbc_flags = 0;
2347                 const char *ccname = NULL;
2348                 struct passwd *pwd = NULL;
2349
2350                 retval = pam_get_user(pamh, &user, _("Username: "));
2351                 if (retval) {
2352                         _pam_log(ctx, LOG_ERR,
2353                                  "could not identify user");
2354                         goto out;
2355                 }
2356
2357                 if (user == NULL) {
2358                         _pam_log(ctx, LOG_ERR,
2359                                  "username was NULL!");
2360                         retval = PAM_USER_UNKNOWN;
2361                         goto out;
2362                 }
2363
2364                 _pam_log_debug(ctx, LOG_DEBUG,
2365                                "username [%s] obtained", user);
2366
2367                 ccname = pam_getenv(pamh, "KRB5CCNAME");
2368                 if (ccname == NULL) {
2369                         _pam_log_debug(ctx, LOG_DEBUG,
2370                                        "user has no KRB5CCNAME environment");
2371                 }
2372
2373                 pwd = getpwnam(user);
2374                 if (pwd == NULL) {
2375                         retval = PAM_USER_UNKNOWN;
2376                         goto out;
2377                 }
2378
2379                 wbc_flags = WBFLAG_PAM_KRB5 |
2380                         WBFLAG_PAM_CONTACT_TRUSTDOM;
2381
2382                 logoff.username         = user;
2383
2384                 if (ccname) {
2385                         wbc_status = wbcAddNamedBlob(&logoff.num_blobs,
2386                                                      &logoff.blobs,
2387                                                      "ccfilename",
2388                                                      0,
2389                                                      (uint8_t *)ccname,
2390                                                      strlen(ccname)+1);
2391                         if (!WBC_ERROR_IS_OK(wbc_status)) {
2392                                 goto out;
2393                         }
2394                 }
2395
2396                 wbc_status = wbcAddNamedBlob(&logoff.num_blobs,
2397                                              &logoff.blobs,
2398                                              "flags",
2399                                              0,
2400                                              (uint8_t *)&wbc_flags,
2401                                              sizeof(wbc_flags));
2402                 if (!WBC_ERROR_IS_OK(wbc_status)) {
2403                         goto out;
2404                 }
2405
2406                 wbc_status = wbcAddNamedBlob(&logoff.num_blobs,
2407                                              &logoff.blobs,
2408                                              "user_uid",
2409                                              0,
2410                                              (uint8_t *)&pwd->pw_uid,
2411                                              sizeof(pwd->pw_uid));
2412                 if (!WBC_ERROR_IS_OK(wbc_status)) {
2413                         goto out;
2414                 }
2415
2416                 wbc_status = wbcLogoffUserEx(&logoff, &error);
2417                 retval = wbc_auth_error_to_pam_error(ctx, error, wbc_status,
2418                                                      user, "wbcLogoffUser");
2419                 wbcFreeMemory(error);
2420                 wbcFreeMemory(logoff.blobs);
2421                 logoff.blobs = NULL;
2422
2423                 if (!WBC_ERROR_IS_OK(wbc_status)) {
2424                         _pam_log(ctx, LOG_INFO,
2425                                  "failed to logoff user %s: %s\n",
2426                                          user, wbcErrorString(wbc_status));
2427                 }
2428         }
2429
2430 out:
2431         if (logoff.blobs) {
2432                 wbcFreeMemory(logoff.blobs);
2433         }
2434
2435         if (!WBC_ERROR_IS_OK(wbc_status)) {
2436                 retval = wbc_auth_error_to_pam_error(ctx, error, wbc_status,
2437                      user, "wbcLogoffUser");
2438         }
2439
2440         /*
2441          * Delete the krb5 ccname variable from the PAM environment
2442          * if it was set by winbind.
2443          */
2444         if ((ctx->ctrl & WINBIND_KRB5_AUTH) && pam_getenv(pamh, "KRB5CCNAME")) {
2445                 pam_putenv(pamh, "KRB5CCNAME");
2446         }
2447
2448         _PAM_LOG_FUNCTION_LEAVE("_pam_delete_cred", ctx, retval);
2449
2450         TALLOC_FREE(ctx);
2451
2452         return retval;
2453 }
2454
2455 PAM_EXTERN
2456 int pam_sm_authenticate(pam_handle_t *pamh, int flags,
2457                         int argc, const char **argv)
2458 {
2459         const char *username;
2460         const char *password;
2461         const char *member = NULL;
2462         const char *cctype = NULL;
2463         int warn_pwd_expire;
2464         int retval = PAM_AUTH_ERR;
2465         char *username_ret = NULL;
2466         char *new_authtok_required = NULL;
2467         char *real_username = NULL;
2468         struct pwb_context *ctx = NULL;
2469
2470         retval = _pam_winbind_init_context(pamh, flags, argc, argv, &ctx);
2471         if (retval) {
2472                 goto out;
2473         }
2474
2475         _PAM_LOG_FUNCTION_ENTER("pam_sm_authenticate", ctx);
2476
2477         /* Get the username */
2478         retval = pam_get_user(pamh, &username, NULL);
2479         if ((retval != PAM_SUCCESS) || (!username)) {
2480                 _pam_log_debug(ctx, LOG_DEBUG,
2481                                "can not get the username");
2482                 retval = PAM_SERVICE_ERR;
2483                 goto out;
2484         }
2485
2486
2487 #if defined(AIX)
2488         /* Decode the user name since AIX does not support logn user
2489            names by default.  The name is encoded as _#uid.  */
2490
2491         if (username[0] == '_') {
2492                 uid_t id = atoi(&username[1]);
2493                 struct passwd *pw = NULL;
2494
2495                 if ((id!=0) && ((pw = getpwuid(id)) != NULL)) {
2496                         real_username = strdup(pw->pw_name);
2497                 }
2498         }
2499 #endif
2500
2501         if (!real_username) {
2502                 /* Just making a copy of the username we got from PAM */
2503                 if ((real_username = strdup(username)) == NULL) {
2504                         _pam_log_debug(ctx, LOG_DEBUG,
2505                                        "memory allocation failure when copying "
2506                                        "username");
2507                         retval = PAM_SERVICE_ERR;
2508                         goto out;
2509                 }
2510         }
2511
2512         /* Maybe this was a UPN */
2513
2514         if (strchr(real_username, '@') != NULL) {
2515                 char *samaccountname = NULL;
2516
2517                 samaccountname = winbind_upn_to_username(ctx,
2518                                                          real_username);
2519                 if (samaccountname) {
2520                         free(real_username);
2521                         real_username = strdup(samaccountname);
2522                 }
2523         }
2524
2525         retval = _winbind_read_password(ctx, ctx->ctrl, NULL,
2526                                         _("Password: "), NULL,
2527                                         &password);
2528
2529         if (retval != PAM_SUCCESS) {
2530                 _pam_log(ctx, LOG_ERR,
2531                          "Could not retrieve user's password");
2532                 retval = PAM_AUTHTOK_ERR;
2533                 goto out;
2534         }
2535
2536         /* Let's not give too much away in the log file */
2537
2538 #ifdef DEBUG_PASSWORD
2539         _pam_log_debug(ctx, LOG_INFO,
2540                        "Verify user '%s' with password '%s'",
2541                        real_username, password);
2542 #else
2543         _pam_log_debug(ctx, LOG_INFO,
2544                        "Verify user '%s'", real_username);
2545 #endif
2546
2547         member = get_member_from_config(ctx);
2548         cctype = get_krb5_cc_type_from_config(ctx);
2549         warn_pwd_expire = get_warn_pwd_expire_from_config(ctx);
2550
2551         /* Now use the username to look up password */
2552         retval = winbind_auth_request(ctx, real_username, password,
2553                                       member, cctype, warn_pwd_expire,
2554                                       NULL, NULL, NULL,
2555                                       NULL, &username_ret);
2556
2557         if (retval == PAM_NEW_AUTHTOK_REQD ||
2558             retval == PAM_AUTHTOK_EXPIRED) {
2559
2560                 char *new_authtok_required_during_auth = NULL;
2561
2562                 new_authtok_required = talloc_asprintf(NULL, "%d", retval);
2563                 if (!new_authtok_required) {
2564                         retval = PAM_BUF_ERR;
2565                         goto out;
2566                 }
2567
2568                 pam_set_data(pamh, PAM_WINBIND_NEW_AUTHTOK_REQD,
2569                              new_authtok_required,
2570                              _pam_winbind_cleanup_func);
2571
2572                 retval = PAM_SUCCESS;
2573
2574                 new_authtok_required_during_auth = talloc_asprintf(NULL, "%d", true);
2575                 if (!new_authtok_required_during_auth) {
2576                         retval = PAM_BUF_ERR;
2577                         goto out;
2578                 }
2579
2580                 pam_set_data(pamh, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH,
2581                              new_authtok_required_during_auth,
2582                              _pam_winbind_cleanup_func);
2583
2584                 goto out;
2585         }
2586
2587 out:
2588         if (username_ret) {
2589                 pam_set_item (pamh, PAM_USER, username_ret);
2590                 _pam_log_debug(ctx, LOG_INFO,
2591                                "Returned user was '%s'", username_ret);
2592                 free(username_ret);
2593         }
2594
2595         if (real_username) {
2596                 free(real_username);
2597         }
2598
2599         if (!new_authtok_required) {
2600                 pam_set_data(pamh, PAM_WINBIND_NEW_AUTHTOK_REQD, NULL, NULL);
2601         }
2602
2603         if (retval != PAM_SUCCESS) {
2604                 _pam_free_data_info3(pamh);
2605         }
2606
2607         _PAM_LOG_FUNCTION_LEAVE("pam_sm_authenticate", ctx, retval);
2608
2609         TALLOC_FREE(ctx);
2610
2611         return retval;
2612 }
2613
2614 PAM_EXTERN
2615 int pam_sm_setcred(pam_handle_t *pamh, int flags,
2616                    int argc, const char **argv)
2617 {
2618         int ret = PAM_SYSTEM_ERR;
2619         struct pwb_context *ctx = NULL;
2620
2621         ret = _pam_winbind_init_context(pamh, flags, argc, argv, &ctx);
2622         if (ret) {
2623                 goto out;
2624         }
2625
2626         _PAM_LOG_FUNCTION_ENTER("pam_sm_setcred", ctx);
2627
2628         switch (flags & ~PAM_SILENT) {
2629
2630                 case PAM_DELETE_CRED:
2631                         ret = _pam_delete_cred(pamh, flags, argc, argv);
2632                         break;
2633                 case PAM_REFRESH_CRED:
2634                         _pam_log_debug(ctx, LOG_WARNING,
2635                                        "PAM_REFRESH_CRED not implemented");
2636                         ret = PAM_SUCCESS;
2637                         break;
2638                 case PAM_REINITIALIZE_CRED:
2639                         _pam_log_debug(ctx, LOG_WARNING,
2640                                        "PAM_REINITIALIZE_CRED not implemented");
2641                         ret = PAM_SUCCESS;
2642                         break;
2643                 case PAM_ESTABLISH_CRED:
2644                         _pam_log_debug(ctx, LOG_WARNING,
2645                                        "PAM_ESTABLISH_CRED not implemented");
2646                         ret = PAM_SUCCESS;
2647                         break;
2648                 default:
2649                         ret = PAM_SYSTEM_ERR;
2650                         break;
2651         }
2652
2653  out:
2654
2655         _PAM_LOG_FUNCTION_LEAVE("pam_sm_setcred", ctx, ret);
2656
2657         TALLOC_FREE(ctx);
2658
2659         return ret;
2660 }
2661
2662 /*
2663  * Account management. We want to verify that the account exists
2664  * before returning PAM_SUCCESS
2665  */
2666 PAM_EXTERN
2667 int pam_sm_acct_mgmt(pam_handle_t *pamh, int flags,
2668                    int argc, const char **argv)
2669 {
2670         const char *username;
2671         int ret = PAM_USER_UNKNOWN;
2672         void *tmp = NULL;
2673         struct pwb_context *ctx = NULL;
2674
2675         ret = _pam_winbind_init_context(pamh, flags, argc, argv, &ctx);
2676         if (ret) {
2677                 goto out;
2678         }
2679
2680         _PAM_LOG_FUNCTION_ENTER("pam_sm_acct_mgmt", ctx);
2681
2682
2683         /* Get the username */
2684         ret = pam_get_user(pamh, &username, NULL);
2685         if ((ret != PAM_SUCCESS) || (!username)) {
2686                 _pam_log_debug(ctx, LOG_DEBUG,
2687                                "can not get the username");
2688                 ret = PAM_SERVICE_ERR;
2689                 goto out;
2690         }
2691
2692         /* Verify the username */
2693         ret = valid_user(ctx, username);
2694         switch (ret) {
2695         case -1:
2696                 /* some sort of system error. The log was already printed */
2697                 ret = PAM_SERVICE_ERR;
2698                 goto out;
2699         case 1:
2700                 /* the user does not exist */
2701                 _pam_log_debug(ctx, LOG_NOTICE, "user '%s' not found",
2702                                username);
2703                 if (ctx->ctrl & WINBIND_UNKNOWN_OK_ARG) {
2704                         ret = PAM_IGNORE;
2705                         goto out;
2706                 }
2707                 ret = PAM_USER_UNKNOWN;
2708                 goto out;
2709         case 0:
2710                 pam_get_data(pamh, PAM_WINBIND_NEW_AUTHTOK_REQD,
2711                              (const void **)&tmp);
2712                 if (tmp != NULL) {
2713                         ret = atoi((const char *)tmp);
2714                         switch (ret) {
2715                         case PAM_AUTHTOK_EXPIRED:
2716                                 /* fall through, since new token is required in this case */
2717                         case PAM_NEW_AUTHTOK_REQD:
2718                                 _pam_log(ctx, LOG_WARNING,
2719                                          "pam_sm_acct_mgmt success but %s is set",
2720                                          PAM_WINBIND_NEW_AUTHTOK_REQD);
2721                                 _pam_log(ctx, LOG_NOTICE,
2722                                          "user '%s' needs new password",
2723                                          username);
2724                                 /* PAM_AUTHTOKEN_REQD does not exist, but is documented in the manpage */
2725                                 ret = PAM_NEW_AUTHTOK_REQD;
2726                                 goto out;
2727                         default:
2728                                 _pam_log(ctx, LOG_WARNING,
2729                                          "pam_sm_acct_mgmt success");
2730                                 _pam_log(ctx, LOG_NOTICE,
2731                                          "user '%s' granted access", username);
2732                                 ret = PAM_SUCCESS;
2733                                 goto out;
2734                         }
2735                 }
2736
2737                 /* Otherwise, the authentication looked good */
2738                 _pam_log(ctx, LOG_NOTICE,
2739                          "user '%s' granted access", username);
2740                 ret = PAM_SUCCESS;
2741                 goto out;
2742         default:
2743                 /* we don't know anything about this return value */
2744                 _pam_log(ctx, LOG_ERR,
2745                          "internal module error (ret = %d, user = '%s')",
2746                          ret, username);
2747                 ret = PAM_SERVICE_ERR;
2748                 goto out;
2749         }
2750
2751         /* should not be reached */
2752         ret = PAM_IGNORE;
2753
2754  out:
2755
2756         _PAM_LOG_FUNCTION_LEAVE("pam_sm_acct_mgmt", ctx, ret);
2757
2758         TALLOC_FREE(ctx);
2759
2760         return ret;
2761 }
2762
2763 PAM_EXTERN
2764 int pam_sm_open_session(pam_handle_t *pamh, int flags,
2765                         int argc, const char **argv)
2766 {
2767         int ret = PAM_SUCCESS;
2768         struct pwb_context *ctx = NULL;
2769
2770         ret = _pam_winbind_init_context(pamh, flags, argc, argv, &ctx);
2771         if (ret) {
2772                 goto out;
2773         }
2774
2775         _PAM_LOG_FUNCTION_ENTER("pam_sm_open_session", ctx);
2776
2777         if (ctx->ctrl & WINBIND_MKHOMEDIR) {
2778                 /* check and create homedir */
2779                 ret = _pam_mkhomedir(ctx);
2780         }
2781  out:
2782         _PAM_LOG_FUNCTION_LEAVE("pam_sm_open_session", ctx, ret);
2783
2784         TALLOC_FREE(ctx);
2785
2786         return ret;
2787 }
2788
2789 PAM_EXTERN
2790 int pam_sm_close_session(pam_handle_t *pamh, int flags,
2791                          int argc, const char **argv)
2792 {
2793         int ret = PAM_SUCCESS;
2794         struct pwb_context *ctx = NULL;
2795
2796         ret = _pam_winbind_init_context(pamh, flags, argc, argv, &ctx);
2797         if (ret) {
2798                 goto out;
2799         }
2800
2801         _PAM_LOG_FUNCTION_ENTER("pam_sm_close_session", ctx);
2802
2803 out:
2804         _PAM_LOG_FUNCTION_LEAVE("pam_sm_close_session", ctx, ret);
2805
2806         TALLOC_FREE(ctx);
2807
2808         return ret;
2809 }
2810
2811 /**
2812  * evaluate whether we need to re-authenticate with kerberos after a
2813  * password change
2814  *
2815  * @param ctx PAM winbind context.
2816  * @param user The username
2817  *
2818  * @return boolean Returns true if required, false if not.
2819  */
2820
2821 static bool _pam_require_krb5_auth_after_chauthtok(struct pwb_context *ctx,
2822                                                    const char *user)
2823 {
2824
2825         /* Make sure that we only do this if a) the chauthtok got initiated
2826          * during a logon attempt (authenticate->acct_mgmt->chauthtok) b) any
2827          * later password change via the "passwd" command if done by the user
2828          * itself
2829          * NB. If we login from gdm or xdm and the password expires,
2830          * we change the password, but there is no memory cache.
2831          * Thus, even for passthrough login, we should do the
2832          * authentication again to update memory cache.
2833          * --- BoYang
2834          * */
2835
2836         char *new_authtok_reqd_during_auth = NULL;
2837         struct passwd *pwd = NULL;
2838
2839         _pam_get_data(ctx->pamh, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH,
2840                       &new_authtok_reqd_during_auth);
2841         pam_set_data(ctx->pamh, PAM_WINBIND_NEW_AUTHTOK_REQD_DURING_AUTH,
2842                      NULL, NULL);
2843
2844         if (new_authtok_reqd_during_auth) {
2845                 return true;
2846         }
2847
2848         pwd = getpwnam(user);
2849         if (!pwd) {
2850                 return false;
2851         }
2852
2853         if (getuid() == pwd->pw_uid) {
2854                 return true;
2855         }
2856
2857         return false;
2858 }
2859
2860
2861 PAM_EXTERN
2862 int pam_sm_chauthtok(pam_handle_t * pamh, int flags,
2863                      int argc, const char **argv)
2864 {
2865         unsigned int lctrl;
2866         int ret;
2867         bool cached_login = false;
2868
2869         /* <DO NOT free() THESE> */
2870         const char *user;
2871         char *pass_old, *pass_new;
2872         /* </DO NOT free() THESE> */
2873
2874         char *Announce;
2875
2876         int retry = 0;
2877         char *username_ret = NULL;
2878         struct wbcAuthErrorInfo *error = NULL;
2879         struct pwb_context *ctx = NULL;
2880
2881         ret = _pam_winbind_init_context(pamh, flags, argc, argv, &ctx);
2882         if (ret) {
2883                 goto out;
2884         }
2885
2886         _PAM_LOG_FUNCTION_ENTER("pam_sm_chauthtok", ctx);
2887
2888         cached_login = (ctx->ctrl & WINBIND_CACHED_LOGIN);
2889
2890         /* clearing offline bit for auth */
2891         ctx->ctrl &= ~WINBIND_CACHED_LOGIN;
2892
2893         /*
2894          * First get the name of a user
2895          */
2896         ret = pam_get_user(pamh, &user, _("Username: "));
2897         if (ret) {
2898                 _pam_log(ctx, LOG_ERR,
2899                          "password - could not identify user");
2900                 goto out;
2901         }
2902
2903         if (user == NULL) {
2904                 _pam_log(ctx, LOG_ERR, "username was NULL!");
2905                 ret = PAM_USER_UNKNOWN;
2906                 goto out;
2907         }
2908
2909         _pam_log_debug(ctx, LOG_DEBUG, "username [%s] obtained", user);
2910
2911         /* check if this is really a user in winbindd, not only in NSS */
2912         ret = valid_user(ctx, user);
2913         switch (ret) {
2914                 case 1:
2915                         ret = PAM_USER_UNKNOWN;
2916                         goto out;
2917                 case -1:
2918                         ret = PAM_SYSTEM_ERR;
2919                         goto out;
2920                 default:
2921                         break;
2922         }
2923
2924         /*
2925          * obtain and verify the current password (OLDAUTHTOK) for
2926          * the user.
2927          */
2928
2929         if (flags & PAM_PRELIM_CHECK) {
2930                 time_t pwdlastset_prelim = 0;
2931
2932                 /* instruct user what is happening */
2933
2934 #define greeting _("Changing password for")
2935                 Announce = talloc_asprintf(ctx, "%s %s", greeting, user);
2936                 if (!Announce) {
2937                         _pam_log(ctx, LOG_CRIT,
2938                                  "password - out of memory");
2939                         ret = PAM_BUF_ERR;
2940                         goto out;
2941                 }
2942 #undef greeting
2943
2944                 lctrl = ctx->ctrl | WINBIND__OLD_PASSWORD;
2945                 ret = _winbind_read_password(ctx, lctrl,
2946                                                 Announce,
2947                                                 _("(current) NT password: "),
2948                                                 NULL,
2949                                                 (const char **) &pass_old);
2950                 TALLOC_FREE(Announce);
2951                 if (ret != PAM_SUCCESS) {
2952                         _pam_log(ctx, LOG_NOTICE,
2953                                  "password - (old) token not obtained");
2954                         goto out;
2955                 }
2956
2957                 /* verify that this is the password for this user */
2958
2959                 ret = winbind_auth_request(ctx, user, pass_old,
2960                                            NULL, NULL, 0,
2961                                            &error, NULL, NULL,
2962                                            &pwdlastset_prelim, NULL);
2963
2964                 if (ret != PAM_ACCT_EXPIRED &&
2965                     ret != PAM_AUTHTOK_EXPIRED &&
2966                     ret != PAM_NEW_AUTHTOK_REQD &&
2967                     ret != PAM_SUCCESS) {
2968                         pass_old = NULL;
2969                         goto out;
2970                 }
2971
2972                 pam_set_data(pamh, PAM_WINBIND_PWD_LAST_SET,
2973                              (void *)pwdlastset_prelim, NULL);
2974
2975                 ret = pam_set_item(pamh, PAM_OLDAUTHTOK,
2976                                    (const void *) pass_old);
2977                 pass_old = NULL;
2978                 if (ret != PAM_SUCCESS) {
2979                         _pam_log(ctx, LOG_CRIT,
2980                                  "failed to set PAM_OLDAUTHTOK");
2981                 }
2982         } else if (flags & PAM_UPDATE_AUTHTOK) {
2983
2984                 time_t pwdlastset_update = 0;
2985
2986                 /*
2987                  * obtain the proposed password
2988                  */
2989
2990                 /*
2991                  * get the old token back.
2992                  */
2993
2994                 ret = _pam_get_item(pamh, PAM_OLDAUTHTOK, &pass_old);
2995
2996                 if (ret != PAM_SUCCESS) {
2997                         _pam_log(ctx, LOG_NOTICE,
2998                                  "user not authenticated");
2999                         goto out;
3000                 }
3001
3002                 lctrl = ctx->ctrl & ~WINBIND_TRY_FIRST_PASS_ARG;
3003
3004                 if (on(WINBIND_USE_AUTHTOK_ARG, lctrl)) {
3005                         lctrl |= WINBIND_USE_FIRST_PASS_ARG;
3006                 }
3007                 retry = 0;
3008                 ret = PAM_AUTHTOK_ERR;
3009                 while ((ret != PAM_SUCCESS) && (retry++ < MAX_PASSWD_TRIES)) {
3010                         /*
3011                          * use_authtok is to force the use of a previously entered
3012                          * password -- needed for pluggable password strength checking
3013                          */
3014
3015                         ret = _winbind_read_password(ctx, lctrl,
3016                                                      NULL,
3017                                                      _("Enter new NT password: "),
3018                                                      _("Retype new NT password: "),
3019                                                      (const char **)&pass_new);
3020
3021                         if (ret != PAM_SUCCESS) {
3022                                 _pam_log_debug(ctx, LOG_ALERT,
3023                                                "password - "
3024                                                "new password not obtained");
3025                                 pass_old = NULL;/* tidy up */
3026                                 goto out;
3027                         }
3028
3029                         /*
3030                          * At this point we know who the user is and what they
3031                          * propose as their new password. Verify that the new
3032                          * password is acceptable.
3033                          */
3034
3035                         if (pass_new[0] == '\0') {/* "\0" password = NULL */
3036                                 pass_new = NULL;
3037                         }
3038                 }
3039
3040                 /*
3041                  * By reaching here we have approved the passwords and must now
3042                  * rebuild the password database file.
3043                  */
3044                 _pam_get_data(pamh, PAM_WINBIND_PWD_LAST_SET,
3045                               &pwdlastset_update);
3046
3047                 /*
3048                  * if cached creds were enabled, make sure to set the
3049                  * WINBIND_CACHED_LOGIN bit here in order to have winbindd
3050                  * update the cached creds storage - gd
3051                  */
3052                 if (cached_login) {
3053                         ctx->ctrl |= WINBIND_CACHED_LOGIN;
3054                 }
3055
3056                 ret = winbind_chauthtok_request(ctx, user, pass_old,
3057                                                 pass_new, pwdlastset_update);
3058                 if (ret) {
3059                         _pam_overwrite(pass_new);
3060                         _pam_overwrite(pass_old);
3061                         pass_old = pass_new = NULL;
3062                         goto out;
3063                 }
3064
3065                 if (_pam_require_krb5_auth_after_chauthtok(ctx, user)) {
3066
3067                         const char *member = NULL;
3068                         const char *cctype = NULL;
3069                         int warn_pwd_expire;
3070                         struct wbcLogonUserInfo *info = NULL;
3071                         struct wbcUserPasswordPolicyInfo *policy = NULL;
3072
3073                         member = get_member_from_config(ctx);
3074                         cctype = get_krb5_cc_type_from_config(ctx);
3075                         warn_pwd_expire = get_warn_pwd_expire_from_config(ctx);
3076
3077                         /* Keep WINBIND_CACHED_LOGIN bit for
3078                          * authentication after changing the password.
3079                          * This will update the cached credentials in case
3080                          * that winbindd_dual_pam_chauthtok() fails
3081                          * to update them.
3082                          * --- BoYang
3083                          * */
3084
3085                         ret = winbind_auth_request(ctx, user, pass_new,
3086                                                    member, cctype, 0,
3087                                                    &error, &info, &policy,
3088                                                    NULL, &username_ret);
3089                         _pam_overwrite(pass_new);
3090                         _pam_overwrite(pass_old);
3091                         pass_old = pass_new = NULL;
3092
3093                         if (ret == PAM_SUCCESS) {
3094
3095                                 struct wbcAuthUserInfo *user_info = NULL;
3096
3097                                 if (info && info->info) {
3098                                         user_info = info->info;
3099                                 }
3100
3101                                 /* warn a user if the password is about to
3102                                  * expire soon */
3103                                 _pam_warn_password_expiry(ctx, user_info, policy,
3104                                                           warn_pwd_expire,
3105                                                           NULL);
3106
3107                                 /* set some info3 info for other modules in the
3108                                  * stack */
3109                                 _pam_set_data_info3(ctx, user_info);
3110
3111                                 /* put krb5ccname into env */
3112                                 _pam_setup_krb5_env(ctx, info);
3113
3114                                 if (username_ret) {
3115                                         pam_set_item(pamh, PAM_USER,
3116                                                      username_ret);
3117                                         _pam_log_debug(ctx, LOG_INFO,
3118                                                        "Returned user was '%s'",
3119                                                        username_ret);
3120                                         free(username_ret);
3121                                 }
3122
3123                                 wbcFreeMemory(info);
3124                                 wbcFreeMemory(policy);
3125                         }
3126
3127                         goto out;
3128                 }
3129         } else {
3130                 ret = PAM_SERVICE_ERR;
3131         }
3132
3133 out:
3134         {
3135                 /* Deal with offline errors. */
3136                 int i;
3137                 const char *codes[] = {
3138                         "NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND",
3139                         "NT_STATUS_NO_LOGON_SERVERS",
3140                         "NT_STATUS_ACCESS_DENIED"
3141                 };
3142
3143                 for (i=0; i<ARRAY_SIZE(codes); i++) {
3144                         int _ret;
3145                         if (_pam_check_remark_auth_err(ctx, error, codes[i], &_ret)) {
3146                                 break;
3147                         }
3148                 }
3149         }
3150
3151         wbcFreeMemory(error);
3152
3153         _PAM_LOG_FUNCTION_LEAVE("pam_sm_chauthtok", ctx, ret);
3154
3155         TALLOC_FREE(ctx);
3156
3157         return ret;
3158 }
3159
3160 #ifdef PAM_STATIC
3161
3162 /* static module data */
3163
3164 struct pam_module _pam_winbind_modstruct = {
3165         MODULE_NAME,
3166         pam_sm_authenticate,
3167         pam_sm_setcred,
3168         pam_sm_acct_mgmt,
3169         pam_sm_open_session,
3170         pam_sm_close_session,
3171         pam_sm_chauthtok
3172 };
3173
3174 #endif
3175
3176 /*
3177  * Copyright (c) Andrew Tridgell  <tridge@samba.org>   2000
3178  * Copyright (c) Tim Potter       <tpot@samba.org>     2000
3179  * Copyright (c) Andrew Bartlettt <abartlet@samba.org> 2002
3180  * Copyright (c) Guenther Deschner <gd@samba.org>      2005-2008
3181  * Copyright (c) Jan Rêkorajski 1999.
3182  * Copyright (c) Andrew G. Morgan 1996-8.
3183  * Copyright (c) Alex O. Yuriev, 1996.
3184  * Copyright (c) Cristian Gafton 1996.
3185  * Copyright (C) Elliot Lee <sopwith@redhat.com> 1996, Red Hat Software.
3186  *
3187  * Redistribution and use in source and binary forms, with or without
3188  * modification, are permitted provided that the following conditions
3189  * are met:
3190  * 1. Redistributions of source code must retain the above copyright
3191  *    notice, and the entire permission notice in its entirety,
3192  *    including the disclaimer of warranties.
3193  * 2. Redistributions in binary form must reproduce the above copyright
3194  *    notice, this list of conditions and the following disclaimer in the
3195  *    documentation and/or other materials provided with the distribution.
3196  * 3. The name of the author may not be used to endorse or promote
3197  *    products derived from this software without specific prior
3198  *    written permission.
3199  *
3200  * ALTERNATIVELY, this product may be distributed under the terms of
3201  * the GNU Public License, in which case the provisions of the GPL are
3202  * required INSTEAD OF the above restrictions.  (This clause is
3203  * necessary due to a potential bad interaction between the GPL and
3204  * the restrictions contained in a BSD-style copyright.)
3205  *
3206  * THIS SOFTWARE IS PROVIDED `AS IS'' AND ANY EXPRESS OR IMPLIED
3207  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
3208  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
3209  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
3210  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
3211  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
3212  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
3213  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
3214  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
3215  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
3216  * OF THE POSSIBILITY OF SUCH DAMAGE.
3217  */