I can't get away without a 'length' arg. :-).
[ira/wip.git] / source3 / auth / pampass.c
1 /* 
2    Unix SMB/CIFS implementation.
3    PAM Password checking
4    Copyright (C) Andrew Tridgell 1992-2001
5    Copyright (C) John H Terpsta 1999-2001
6    Copyright (C) Andrew Bartlett 2001
7    Copyright (C) Jeremy Allison 2001
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 /*
24  * This module provides PAM based functions for validation of
25  * username/password pairs, account managment, session and access control.
26  * Note: SMB password checking is done in smbpass.c
27  */
28
29 #include "includes.h"
30
31 #undef DBGC_CLASS
32 #define DBGC_CLASS DBGC_AUTH
33
34 #ifdef WITH_PAM
35
36 /*******************************************************************
37  * Handle PAM authentication 
38  *      - Access, Authentication, Session, Password
39  *   Note: See PAM Documentation and refer to local system PAM implementation
40  *   which determines what actions/limitations/allowances become affected.
41  *********************************************************************/
42
43 #if defined(HAVE_SECURITY_PAM_APPL_H)
44 #include <security/pam_appl.h>
45 #elif defined(HAVE_PAM_PAM_APPL_H)
46 #include <pam/pam_appl.h>
47 #endif
48
49 /*
50  * Structure used to communicate between the conversation function
51  * and the server_login/change password functions.
52  */
53
54 struct smb_pam_userdata {
55         const char *PAM_username;
56         const char *PAM_password;
57         const char *PAM_newpassword;
58 };
59
60 typedef int (*smb_pam_conv_fn)(int, const struct pam_message **, struct pam_response **, void *appdata_ptr);
61
62 /*
63  *  Macros to help make life easy
64  */
65 #define COPY_STRING(s) (s) ? SMB_STRDUP(s) : NULL
66
67 /*******************************************************************
68  PAM error handler.
69  *********************************************************************/
70
71 static bool smb_pam_error_handler(pam_handle_t *pamh, int pam_error, const char *msg, int dbglvl)
72 {
73
74         if( pam_error != PAM_SUCCESS) {
75                 DEBUG(dbglvl, ("smb_pam_error_handler: PAM: %s : %s\n",
76                                 msg, pam_strerror(pamh, pam_error)));
77                 
78                 return False;
79         }
80         return True;
81 }
82
83 /*******************************************************************
84  This function is a sanity check, to make sure that we NEVER report
85  failure as sucess.
86 *********************************************************************/
87
88 static bool smb_pam_nt_status_error_handler(pam_handle_t *pamh, int pam_error,
89                                             const char *msg, int dbglvl, 
90                                             NTSTATUS *nt_status)
91 {
92         *nt_status = pam_to_nt_status(pam_error);
93
94         if (smb_pam_error_handler(pamh, pam_error, msg, dbglvl))
95                 return True;
96
97         if (NT_STATUS_IS_OK(*nt_status)) {
98                 /* Complain LOUDLY */
99                 DEBUG(0, ("smb_pam_nt_status_error_handler: PAM: BUG: PAM and NT_STATUS \
100 error MISMATCH, forcing to NT_STATUS_LOGON_FAILURE"));
101                 *nt_status = NT_STATUS_LOGON_FAILURE;
102         }
103         return False;
104 }
105
106 /*
107  * PAM conversation function
108  * Here we assume (for now, at least) that echo on means login name, and
109  * echo off means password.
110  */
111
112 static int smb_pam_conv(int num_msg,
113                     const struct pam_message **msg,
114                     struct pam_response **resp,
115                     void *appdata_ptr)
116 {
117         int replies = 0;
118         struct pam_response *reply = NULL;
119         struct smb_pam_userdata *udp = (struct smb_pam_userdata *)appdata_ptr;
120
121         *resp = NULL;
122
123         if (num_msg <= 0)
124                 return PAM_CONV_ERR;
125
126         /*
127          * Apparantly HPUX has a buggy PAM that doesn't support the
128          * appdata_ptr. Fail if this is the case. JRA.
129          */
130
131         if (udp == NULL) {
132                 DEBUG(0,("smb_pam_conv: PAM on this system is broken - appdata_ptr == NULL !\n"));
133                 return PAM_CONV_ERR;
134         }
135
136         reply = SMB_MALLOC_ARRAY(struct pam_response, num_msg);
137         if (!reply)
138                 return PAM_CONV_ERR;
139
140         memset(reply, '\0', sizeof(struct pam_response) * num_msg);
141
142         for (replies = 0; replies < num_msg; replies++) {
143                 switch (msg[replies]->msg_style) {
144                         case PAM_PROMPT_ECHO_ON:
145                                 reply[replies].resp_retcode = PAM_SUCCESS;
146                                 reply[replies].resp = COPY_STRING(udp->PAM_username);
147                                 /* PAM frees resp */
148                                 break;
149
150                         case PAM_PROMPT_ECHO_OFF:
151                                 reply[replies].resp_retcode = PAM_SUCCESS;
152                                 reply[replies].resp = COPY_STRING(udp->PAM_password);
153                                 /* PAM frees resp */
154                                 break;
155
156                         case PAM_TEXT_INFO:
157                                 /* fall through */
158
159                         case PAM_ERROR_MSG:
160                                 /* ignore it... */
161                                 reply[replies].resp_retcode = PAM_SUCCESS;
162                                 reply[replies].resp = NULL;
163                                 break;
164
165                         default:
166                                 /* Must be an error of some sort... */
167                                 SAFE_FREE(reply);
168                                 return PAM_CONV_ERR;
169                 }
170         }
171         if (reply)
172                 *resp = reply;
173         return PAM_SUCCESS;
174 }
175
176 /*
177  * PAM password change conversation function
178  * Here we assume (for now, at least) that echo on means login name, and
179  * echo off means password.
180  */
181
182 static void special_char_sub(char *buf)
183 {
184         all_string_sub(buf, "\\n", "", 0);
185         all_string_sub(buf, "\\r", "", 0);
186         all_string_sub(buf, "\\s", " ", 0);
187         all_string_sub(buf, "\\t", "\t", 0);
188 }
189
190 static void pwd_sub(char *buf, const char *username, const char *oldpass, const char *newpass)
191 {
192         fstring_sub(buf, "%u", username);
193         all_string_sub(buf, "%o", oldpass, sizeof(fstring));
194         all_string_sub(buf, "%n", newpass, sizeof(fstring));
195 }
196
197
198 struct chat_struct {
199         struct chat_struct *next, *prev;
200         fstring prompt;
201         fstring reply;
202 };
203
204 /**************************************************************
205  Create a linked list containing chat data.
206 ***************************************************************/
207
208 static struct chat_struct *make_pw_chat(const char *p) 
209 {
210         fstring prompt;
211         fstring reply;
212         struct chat_struct *list = NULL;
213         struct chat_struct *t;
214
215         while (1) {
216                 t = SMB_MALLOC_P(struct chat_struct);
217                 if (!t) {
218                         DEBUG(0,("make_pw_chat: malloc failed!\n"));
219                         return NULL;
220                 }
221
222                 ZERO_STRUCTP(t);
223
224                 DLIST_ADD_END(list, t, struct chat_struct*);
225
226                 if (!next_token(&p, prompt, NULL, sizeof(fstring)))
227                         break;
228
229                 if (strequal(prompt,"."))
230                         fstrcpy(prompt,"*");
231
232                 special_char_sub(prompt);
233                 fstrcpy(t->prompt, prompt);
234                 strlower_m(t->prompt);
235                 trim_char(t->prompt, ' ', ' ');
236
237                 if (!next_token(&p, reply, NULL, sizeof(fstring)))
238                         break;
239
240                 if (strequal(reply,"."))
241                                 fstrcpy(reply,"");
242
243                 special_char_sub(reply);
244                 fstrcpy(t->reply, reply);
245                 strlower_m(t->reply);
246                 trim_char(t->reply, ' ', ' ');
247
248         }
249         return list;
250 }
251
252 static void free_pw_chat(struct chat_struct *list)
253 {
254     while (list) {
255         struct chat_struct *old_head = list;
256         DLIST_REMOVE(list, list);
257         SAFE_FREE(old_head);
258     }
259 }
260
261 static int smb_pam_passchange_conv(int num_msg,
262                                 const struct pam_message **msg,
263                                 struct pam_response **resp,
264                                 void *appdata_ptr)
265 {
266         int replies = 0;
267         struct pam_response *reply = NULL;
268         fstring current_prompt;
269         fstring current_reply;
270         struct smb_pam_userdata *udp = (struct smb_pam_userdata *)appdata_ptr;
271         struct chat_struct *pw_chat= make_pw_chat(lp_passwd_chat());
272         struct chat_struct *t;
273         bool found; 
274         *resp = NULL;
275         
276         DEBUG(10,("smb_pam_passchange_conv: starting converstation for %d messages\n", num_msg));
277
278         if (num_msg <= 0)
279                 return PAM_CONV_ERR;
280
281         if (pw_chat == NULL)
282                 return PAM_CONV_ERR;
283
284         /*
285          * Apparantly HPUX has a buggy PAM that doesn't support the
286          * appdata_ptr. Fail if this is the case. JRA.
287          */
288
289         if (udp == NULL) {
290                 DEBUG(0,("smb_pam_passchange_conv: PAM on this system is broken - appdata_ptr == NULL !\n"));
291                 free_pw_chat(pw_chat);
292                 return PAM_CONV_ERR;
293         }
294
295         reply = SMB_MALLOC_ARRAY(struct pam_response, num_msg);
296         if (!reply) {
297                 DEBUG(0,("smb_pam_passchange_conv: malloc for reply failed!\n"));
298                 free_pw_chat(pw_chat);
299                 return PAM_CONV_ERR;
300         }
301
302         for (replies = 0; replies < num_msg; replies++) {
303                 found = False;
304                 DEBUG(10,("smb_pam_passchange_conv: Processing message %d\n", replies));
305                 switch (msg[replies]->msg_style) {
306                 case PAM_PROMPT_ECHO_ON:
307                         DEBUG(10,("smb_pam_passchange_conv: PAM_PROMPT_ECHO_ON: PAM said: %s\n", msg[replies]->msg));
308                         fstrcpy(current_prompt, msg[replies]->msg);
309                         trim_char(current_prompt, ' ', ' ');
310                         for (t=pw_chat; t; t=t->next) {
311
312                                 DEBUG(10,("smb_pam_passchange_conv: PAM_PROMPT_ECHO_ON: trying to match |%s| to |%s|\n",
313                                                 t->prompt, current_prompt ));
314
315                                 if (unix_wild_match(t->prompt, current_prompt)) {
316                                         fstrcpy(current_reply, t->reply);
317                                         DEBUG(10,("smb_pam_passchange_conv: PAM_PROMPT_ECHO_ON: We sent: %s\n", current_reply));
318                                         pwd_sub(current_reply, udp->PAM_username, udp->PAM_password, udp->PAM_newpassword);
319 #ifdef DEBUG_PASSWORD
320                                         DEBUG(100,("smb_pam_passchange_conv: PAM_PROMPT_ECHO_ON: We actualy sent: %s\n", current_reply));
321 #endif
322                                         reply[replies].resp_retcode = PAM_SUCCESS;
323                                         reply[replies].resp = COPY_STRING(current_reply);
324                                         found = True;
325                                         break;
326                                 }
327                         }
328                         /* PAM frees resp */
329                         if (!found) {
330                                 DEBUG(3,("smb_pam_passchange_conv: Could not find reply for PAM prompt: %s\n",msg[replies]->msg));
331                                 free_pw_chat(pw_chat);
332                                 SAFE_FREE(reply);
333                                 return PAM_CONV_ERR;
334                         }
335                         break;
336
337                 case PAM_PROMPT_ECHO_OFF:
338                         DEBUG(10,("smb_pam_passchange_conv: PAM_PROMPT_ECHO_OFF: PAM said: %s\n", msg[replies]->msg));
339                         fstrcpy(current_prompt, msg[replies]->msg);
340                         trim_char(current_prompt, ' ', ' ');
341                         for (t=pw_chat; t; t=t->next) {
342
343                                 DEBUG(10,("smb_pam_passchange_conv: PAM_PROMPT_ECHO_OFF: trying to match |%s| to |%s|\n",
344                                                 t->prompt, current_prompt ));
345
346                                 if (unix_wild_match(t->prompt, current_prompt)) {
347                                         fstrcpy(current_reply, t->reply);
348                                         DEBUG(10,("smb_pam_passchange_conv: PAM_PROMPT_ECHO_OFF: We sent: %s\n", current_reply));
349                                         pwd_sub(current_reply, udp->PAM_username, udp->PAM_password, udp->PAM_newpassword);
350                                         reply[replies].resp_retcode = PAM_SUCCESS;
351                                         reply[replies].resp = COPY_STRING(current_reply);
352 #ifdef DEBUG_PASSWORD
353                                         DEBUG(100,("smb_pam_passchange_conv: PAM_PROMPT_ECHO_OFF: We actualy sent: %s\n", current_reply));
354 #endif
355                                         found = True;
356                                         break;
357                                 }
358                         }
359                         /* PAM frees resp */
360                         
361                         if (!found) {
362                                 DEBUG(3,("smb_pam_passchange_conv: Could not find reply for PAM prompt: %s\n",msg[replies]->msg));
363                                 free_pw_chat(pw_chat);
364                                 SAFE_FREE(reply);
365                                 return PAM_CONV_ERR;
366                         }
367                         break;
368
369                 case PAM_TEXT_INFO:
370                         /* fall through */
371
372                 case PAM_ERROR_MSG:
373                         /* ignore it... */
374                         reply[replies].resp_retcode = PAM_SUCCESS;
375                         reply[replies].resp = NULL;
376                         break;
377                         
378                 default:
379                         /* Must be an error of some sort... */
380                         free_pw_chat(pw_chat);
381                         SAFE_FREE(reply);
382                         return PAM_CONV_ERR;
383                 }
384         }
385                 
386         free_pw_chat(pw_chat);
387         if (reply)
388                 *resp = reply;
389         return PAM_SUCCESS;
390 }
391
392 /***************************************************************************
393  Free up a malloced pam_conv struct.
394 ****************************************************************************/
395
396 static void smb_free_pam_conv(struct pam_conv *pconv)
397 {
398         if (pconv)
399                 SAFE_FREE(pconv->appdata_ptr);
400
401         SAFE_FREE(pconv);
402 }
403
404 /***************************************************************************
405  Allocate a pam_conv struct.
406 ****************************************************************************/
407
408 static struct pam_conv *smb_setup_pam_conv(smb_pam_conv_fn smb_pam_conv_fnptr, const char *user,
409                                         const char *passwd, const char *newpass)
410 {
411         struct pam_conv *pconv = SMB_MALLOC_P(struct pam_conv);
412         struct smb_pam_userdata *udp = SMB_MALLOC_P(struct smb_pam_userdata);
413
414         if (pconv == NULL || udp == NULL) {
415                 SAFE_FREE(pconv);
416                 SAFE_FREE(udp);
417                 return NULL;
418         }
419
420         udp->PAM_username = user;
421         udp->PAM_password = passwd;
422         udp->PAM_newpassword = newpass;
423
424         pconv->conv = smb_pam_conv_fnptr;
425         pconv->appdata_ptr = (void *)udp;
426         return pconv;
427 }
428
429 /* 
430  * PAM Closing out cleanup handler
431  */
432
433 static bool smb_pam_end(pam_handle_t *pamh, struct pam_conv *smb_pam_conv_ptr)
434 {
435         int pam_error;
436
437         smb_free_pam_conv(smb_pam_conv_ptr);
438        
439         if( pamh != NULL ) {
440                 pam_error = pam_end(pamh, 0);
441                 if(smb_pam_error_handler(pamh, pam_error, "End Cleanup Failed", 2) == True) {
442                         DEBUG(4, ("smb_pam_end: PAM: PAM_END OK.\n"));
443                         return True;
444                 }
445         }
446         DEBUG(2,("smb_pam_end: PAM: not initialised"));
447         return False;
448 }
449
450 /*
451  * Start PAM authentication for specified account
452  */
453
454 static bool smb_pam_start(pam_handle_t **pamh, const char *user, const char *rhost, struct pam_conv *pconv)
455 {
456         int pam_error;
457         const char *our_rhost;
458         char addr[INET6_ADDRSTRLEN];
459
460         *pamh = (pam_handle_t *)NULL;
461
462         DEBUG(4,("smb_pam_start: PAM: Init user: %s\n", user));
463
464         pam_error = pam_start("samba", user, pconv, pamh);
465         if( !smb_pam_error_handler(*pamh, pam_error, "Init Failed", 0)) {
466                 *pamh = (pam_handle_t *)NULL;
467                 return False;
468         }
469
470         if (rhost == NULL) {
471                 our_rhost = client_name();
472                 if (strequal(our_rhost,"UNKNOWN"))
473                         our_rhost = client_addr(addr,sizeof(addr));
474         } else {
475                 our_rhost = rhost;
476         }
477
478 #ifdef PAM_RHOST
479         DEBUG(4,("smb_pam_start: PAM: setting rhost to: %s\n", our_rhost));
480         pam_error = pam_set_item(*pamh, PAM_RHOST, our_rhost);
481         if(!smb_pam_error_handler(*pamh, pam_error, "set rhost failed", 0)) {
482                 smb_pam_end(*pamh, pconv);
483                 *pamh = (pam_handle_t *)NULL;
484                 return False;
485         }
486 #endif
487 #ifdef PAM_TTY
488         DEBUG(4,("smb_pam_start: PAM: setting tty\n"));
489         pam_error = pam_set_item(*pamh, PAM_TTY, "samba");
490         if (!smb_pam_error_handler(*pamh, pam_error, "set tty failed", 0)) {
491                 smb_pam_end(*pamh, pconv);
492                 *pamh = (pam_handle_t *)NULL;
493                 return False;
494         }
495 #endif
496         DEBUG(4,("smb_pam_start: PAM: Init passed for user: %s\n", user));
497         return True;
498 }
499
500 /*
501  * PAM Authentication Handler
502  */
503 static NTSTATUS smb_pam_auth(pam_handle_t *pamh, const char *user)
504 {
505         int pam_error;
506         NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
507
508         /*
509          * To enable debugging set in /etc/pam.d/samba:
510          *      auth required /lib/security/pam_pwdb.so nullok shadow audit
511          */
512         
513         DEBUG(4,("smb_pam_auth: PAM: Authenticate User: %s\n", user));
514         pam_error = pam_authenticate(pamh, PAM_SILENT | lp_null_passwords() ? 0 : PAM_DISALLOW_NULL_AUTHTOK);
515         switch( pam_error ){
516                 case PAM_AUTH_ERR:
517                         DEBUG(2, ("smb_pam_auth: PAM: Authentication Error for user %s\n", user));
518                         break;
519                 case PAM_CRED_INSUFFICIENT:
520                         DEBUG(2, ("smb_pam_auth: PAM: Insufficient Credentials for user %s\n", user));
521                         break;
522                 case PAM_AUTHINFO_UNAVAIL:
523                         DEBUG(2, ("smb_pam_auth: PAM: Authentication Information Unavailable for user %s\n", user));
524                         break;
525                 case PAM_USER_UNKNOWN:
526                         DEBUG(2, ("smb_pam_auth: PAM: Username %s NOT known to Authentication system\n", user));
527                         break;
528                 case PAM_MAXTRIES:
529                         DEBUG(2, ("smb_pam_auth: PAM: One or more authentication modules reports user limit for user %s exceeeded\n", user));
530                         break;
531                 case PAM_ABORT:
532                         DEBUG(0, ("smb_pam_auth: PAM: One or more PAM modules failed to load for user %s\n", user));
533                         break;
534                 case PAM_SUCCESS:
535                         DEBUG(4, ("smb_pam_auth: PAM: User %s Authenticated OK\n", user));
536                         break;
537                 default:
538                         DEBUG(0, ("smb_pam_auth: PAM: UNKNOWN ERROR while authenticating user %s\n", user));
539                         break;
540         }
541
542         smb_pam_nt_status_error_handler(pamh, pam_error, "Authentication Failure", 2, &nt_status);
543         return nt_status;
544 }
545
546 /* 
547  * PAM Account Handler
548  */
549 static NTSTATUS smb_pam_account(pam_handle_t *pamh, const char * user)
550 {
551         int pam_error;
552         NTSTATUS nt_status = NT_STATUS_ACCOUNT_DISABLED;
553
554         DEBUG(4,("smb_pam_account: PAM: Account Management for User: %s\n", user));
555         pam_error = pam_acct_mgmt(pamh, PAM_SILENT); /* Is user account enabled? */
556         switch( pam_error ) {
557                 case PAM_AUTHTOK_EXPIRED:
558                         DEBUG(2, ("smb_pam_account: PAM: User %s is valid but password is expired\n", user));
559                         break;
560                 case PAM_ACCT_EXPIRED:
561                         DEBUG(2, ("smb_pam_account: PAM: User %s no longer permitted to access system\n", user));
562                         break;
563                 case PAM_AUTH_ERR:
564                         DEBUG(2, ("smb_pam_account: PAM: There was an authentication error for user %s\n", user));
565                         break;
566                 case PAM_PERM_DENIED:
567                         DEBUG(0, ("smb_pam_account: PAM: User %s is NOT permitted to access system at this time\n", user));
568                         break;
569                 case PAM_USER_UNKNOWN:
570                         DEBUG(0, ("smb_pam_account: PAM: User \"%s\" is NOT known to account management\n", user));
571                         break;
572                 case PAM_SUCCESS:
573                         DEBUG(4, ("smb_pam_account: PAM: Account OK for User: %s\n", user));
574                         break;
575                 default:
576                         DEBUG(0, ("smb_pam_account: PAM: UNKNOWN PAM ERROR (%d) during Account Management for User: %s\n", pam_error, user));
577                         break;
578         }
579
580         smb_pam_nt_status_error_handler(pamh, pam_error, "Account Check Failed", 2, &nt_status);
581         return nt_status;
582 }
583
584 /*
585  * PAM Credential Setting
586  */
587
588 static NTSTATUS smb_pam_setcred(pam_handle_t *pamh, const char * user)
589 {
590         int pam_error;
591         NTSTATUS nt_status = NT_STATUS_NO_TOKEN;
592
593         /*
594          * This will allow samba to aquire a kerberos token. And, when
595          * exporting an AFS cell, be able to /write/ to this cell.
596          */
597
598         DEBUG(4,("PAM: Account Management SetCredentials for User: %s\n", user));
599         pam_error = pam_setcred(pamh, (PAM_ESTABLISH_CRED|PAM_SILENT)); 
600         switch( pam_error ) {
601                 case PAM_CRED_UNAVAIL:
602                         DEBUG(0, ("smb_pam_setcred: PAM: Credentials not found for user:%s\n", user ));
603                         break;
604                 case PAM_CRED_EXPIRED:
605                         DEBUG(0, ("smb_pam_setcred: PAM: Credentials for user: \"%s\" EXPIRED!\n", user ));
606                         break;
607                 case PAM_USER_UNKNOWN:
608                         DEBUG(0, ("smb_pam_setcred: PAM: User: \"%s\" is NOT known so can not set credentials!\n", user ));
609                         break;
610                 case PAM_CRED_ERR:
611                         DEBUG(0, ("smb_pam_setcred: PAM: Unknown setcredentials error - unable to set credentials for %s\n", user ));
612                         break;
613                 case PAM_SUCCESS:
614                         DEBUG(4, ("smb_pam_setcred: PAM: SetCredentials OK for User: %s\n", user));
615                         break;
616                 default:
617                         DEBUG(0, ("smb_pam_setcred: PAM: UNKNOWN PAM ERROR (%d) during SetCredentials for User: %s\n", pam_error, user));
618                         break;
619         }
620
621         smb_pam_nt_status_error_handler(pamh, pam_error, "Set Credential Failure", 2, &nt_status);
622         return nt_status;
623 }
624
625 /*
626  * PAM Internal Session Handler
627  */
628 static bool smb_internal_pam_session(pam_handle_t *pamh, const char *user, const char *tty, bool flag)
629 {
630         int pam_error;
631
632 #ifdef PAM_TTY
633         DEBUG(4,("smb_internal_pam_session: PAM: tty set to: %s\n", tty));
634         pam_error = pam_set_item(pamh, PAM_TTY, tty);
635         if (!smb_pam_error_handler(pamh, pam_error, "set tty failed", 0))
636                 return False;
637 #endif
638
639         if (flag) {
640                 pam_error = pam_open_session(pamh, PAM_SILENT);
641                 if (!smb_pam_error_handler(pamh, pam_error, "session setup failed", 0))
642                         return False;
643         } else {
644                 pam_setcred(pamh, (PAM_DELETE_CRED|PAM_SILENT)); /* We don't care if this fails */
645                 pam_error = pam_close_session(pamh, PAM_SILENT); /* This will probably pick up the error anyway */
646                 if (!smb_pam_error_handler(pamh, pam_error, "session close failed", 0))
647                         return False;
648         }
649         return (True);
650 }
651
652 /*
653  * Internal PAM Password Changer.
654  */
655
656 static bool smb_pam_chauthtok(pam_handle_t *pamh, const char * user)
657 {
658         int pam_error;
659
660         DEBUG(4,("smb_pam_chauthtok: PAM: Password Change for User: %s\n", user));
661
662         pam_error = pam_chauthtok(pamh, PAM_SILENT); /* Change Password */
663
664         switch( pam_error ) {
665         case PAM_AUTHTOK_ERR:
666                 DEBUG(2, ("PAM: unable to obtain the new authentication token - is password to weak?\n"));
667                 break;
668
669         /* This doesn't seem to be defined on Solaris. JRA */
670 #ifdef PAM_AUTHTOK_RECOVER_ERR
671         case PAM_AUTHTOK_RECOVER_ERR:
672                 DEBUG(2, ("PAM: unable to obtain the old authentication token - was the old password wrong?.\n"));
673                 break;
674 #endif
675
676         case PAM_AUTHTOK_LOCK_BUSY:
677                 DEBUG(2, ("PAM: unable to change the authentication token since it is currently locked.\n"));
678                 break;
679         case PAM_AUTHTOK_DISABLE_AGING:
680                 DEBUG(2, ("PAM: Authentication token aging has been disabled.\n"));
681                 break;
682         case PAM_PERM_DENIED:
683                 DEBUG(0, ("PAM: Permission denied.\n"));
684                 break;
685         case PAM_TRY_AGAIN:
686                 DEBUG(0, ("PAM: Could not update all authentication token(s). No authentication tokens were updated.\n"));
687                 break;
688         case PAM_USER_UNKNOWN:
689                 DEBUG(0, ("PAM: User not known to PAM\n"));
690                 break;
691         case PAM_SUCCESS:
692                 DEBUG(4, ("PAM: Account OK for User: %s\n", user));
693                 break;
694         default:
695                 DEBUG(0, ("PAM: UNKNOWN PAM ERROR (%d) for User: %s\n", pam_error, user));
696         }
697  
698         if(!smb_pam_error_handler(pamh, pam_error, "Password Change Failed", 2)) {
699                 return False;
700         }
701
702         /* If this point is reached, the password has changed. */
703         return True;
704 }
705
706 /*
707  * PAM Externally accessible Session handler
708  */
709
710 bool smb_pam_claim_session(char *user, char *tty, char *rhost)
711 {
712         pam_handle_t *pamh = NULL;
713         struct pam_conv *pconv = NULL;
714
715         /* Ignore PAM if told to. */
716
717         if (!lp_obey_pam_restrictions())
718                 return True;
719
720         if ((pconv = smb_setup_pam_conv(smb_pam_conv, user, NULL, NULL)) == NULL)
721                 return False;
722
723         if (!smb_pam_start(&pamh, user, rhost, pconv))
724                 return False;
725
726         if (!smb_internal_pam_session(pamh, user, tty, True)) {
727                 smb_pam_end(pamh, pconv);
728                 return False;
729         }
730
731         return smb_pam_end(pamh, pconv);
732 }
733
734 /*
735  * PAM Externally accessible Session handler
736  */
737
738 bool smb_pam_close_session(char *user, char *tty, char *rhost)
739 {
740         pam_handle_t *pamh = NULL;
741         struct pam_conv *pconv = NULL;
742
743         /* Ignore PAM if told to. */
744
745         if (!lp_obey_pam_restrictions())
746                 return True;
747
748         if ((pconv = smb_setup_pam_conv(smb_pam_conv, user, NULL, NULL)) == NULL)
749                 return False;
750
751         if (!smb_pam_start(&pamh, user, rhost, pconv))
752                 return False;
753
754         if (!smb_internal_pam_session(pamh, user, tty, False)) {
755                 smb_pam_end(pamh, pconv);
756                 return False;
757         }
758
759         return smb_pam_end(pamh, pconv);
760 }
761
762 /*
763  * PAM Externally accessible Account handler
764  */
765
766 NTSTATUS smb_pam_accountcheck(const char * user)
767 {
768         NTSTATUS nt_status = NT_STATUS_ACCOUNT_DISABLED;
769         pam_handle_t *pamh = NULL;
770         struct pam_conv *pconv = NULL;
771
772         /* Ignore PAM if told to. */
773
774         if (!lp_obey_pam_restrictions())
775                 return NT_STATUS_OK;
776
777         if ((pconv = smb_setup_pam_conv(smb_pam_conv, user, NULL, NULL)) == NULL)
778                 return NT_STATUS_NO_MEMORY;
779
780         if (!smb_pam_start(&pamh, user, NULL, pconv))
781                 return NT_STATUS_ACCOUNT_DISABLED;
782
783         if (!NT_STATUS_IS_OK(nt_status = smb_pam_account(pamh, user)))
784                 DEBUG(0, ("smb_pam_accountcheck: PAM: Account Validation Failed - Rejecting User %s!\n", user));
785
786         smb_pam_end(pamh, pconv);
787         return nt_status;
788 }
789
790 /*
791  * PAM Password Validation Suite
792  */
793
794 NTSTATUS smb_pam_passcheck(const char * user, const char * password)
795 {
796         pam_handle_t *pamh = NULL;
797         NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
798         struct pam_conv *pconv = NULL;
799
800         /*
801          * Note we can't ignore PAM here as this is the only
802          * way of doing auths on plaintext passwords when
803          * compiled --with-pam.
804          */
805
806         if ((pconv = smb_setup_pam_conv(smb_pam_conv, user, password, NULL)) == NULL)
807                 return NT_STATUS_LOGON_FAILURE;
808
809         if (!smb_pam_start(&pamh, user, NULL, pconv))
810                 return NT_STATUS_LOGON_FAILURE;
811
812         if (!NT_STATUS_IS_OK(nt_status = smb_pam_auth(pamh, user))) {
813                 DEBUG(0, ("smb_pam_passcheck: PAM: smb_pam_auth failed - Rejecting User %s !\n", user));
814                 smb_pam_end(pamh, pconv);
815                 return nt_status;
816         }
817
818         if (!NT_STATUS_IS_OK(nt_status = smb_pam_account(pamh, user))) {
819                 DEBUG(0, ("smb_pam_passcheck: PAM: smb_pam_account failed - Rejecting User %s !\n", user));
820                 smb_pam_end(pamh, pconv);
821                 return nt_status;
822         }
823
824         if (!NT_STATUS_IS_OK(nt_status = smb_pam_setcred(pamh, user))) {
825                 DEBUG(0, ("smb_pam_passcheck: PAM: smb_pam_setcred failed - Rejecting User %s !\n", user));
826                 smb_pam_end(pamh, pconv);
827                 return nt_status;
828         }
829
830         smb_pam_end(pamh, pconv);
831         return nt_status;
832 }
833
834 /*
835  * PAM Password Change Suite
836  */
837
838 bool smb_pam_passchange(const char * user, const char * oldpassword, const char * newpassword)
839 {
840         /* Appropriate quantities of root should be obtained BEFORE calling this function */
841         struct pam_conv *pconv = NULL;
842         pam_handle_t *pamh = NULL;
843
844         if ((pconv = smb_setup_pam_conv(smb_pam_passchange_conv, user, oldpassword, newpassword)) == NULL)
845                 return False;
846
847         if(!smb_pam_start(&pamh, user, NULL, pconv))
848                 return False;
849
850         if (!smb_pam_chauthtok(pamh, user)) {
851                 DEBUG(0, ("smb_pam_passchange: PAM: Password Change Failed for user %s!\n", user));
852                 smb_pam_end(pamh, pconv);
853                 return False;
854         }
855
856         return smb_pam_end(pamh, pconv);
857 }
858
859 #else
860
861 /* If PAM not used, no PAM restrictions on accounts. */
862 NTSTATUS smb_pam_accountcheck(const char * user)
863 {
864         return NT_STATUS_OK;
865 }
866
867 /* If PAM not used, also no PAM restrictions on sessions. */
868 bool smb_pam_claim_session(char *user, char *tty, char *rhost)
869 {
870         return True;
871 }
872
873 /* If PAM not used, also no PAM restrictions on sessions. */
874 bool smb_pam_close_session(char *in_user, char *tty, char *rhost)
875 {
876         return True;
877 }
878 #endif /* WITH_PAM */