1 /* Unix NT password database implementation, version 0.6.
3 * This program is free software; you can redistribute it and/or modify it under
4 * the terms of the GNU General Public License as published by the Free
5 * Software Foundation; either version 3 of the License, or (at your option)
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, see <http://www.gnu.org/licenses/>.
24 #include "../libcli/auth/libcli_auth.h"
25 #if defined(HAVE_SECURITY_PAM_EXT_H)
26 #include <security/pam_ext.h>
27 #elif defined(HAVE_PAM_PAM_EXT_H)
28 #include <pam/pam_ext.h>
31 #if defined(HAVE_SECURITY__PAM_MACROS_H)
32 #include <security/_pam_macros.h>
33 #elif defined(HAVE_PAM__PAM_MACROS_H)
34 #include <pam/_pam_macros.h>
41 #define _pam_overwrite(x) \
43 register char *__xx__; \
50 * Don't just free it, forget it too.
53 #define _pam_drop(X) \
61 #define _pam_drop_reply(/* struct pam_response * */ reply, /* int */ replies) \
65 for (reply_i=0; reply_i<replies; ++reply_i) { \
66 if (reply[reply_i].resp) { \
67 _pam_overwrite(reply[reply_i].resp); \
68 free(reply[reply_i].resp); \
76 int converse(pam_handle_t
*, int, int, struct pam_message
**,
77 struct pam_response
**);
78 int make_remark(pam_handle_t
*, unsigned int, int, const char *);
79 void _cleanup(pam_handle_t
*, void *, int);
80 char *_pam_delete(register char *);
82 /* syslogging function for errors and other information */
83 #ifdef HAVE_PAM_VSYSLOG
84 void _log_err( pam_handle_t
*pamh
, int err
, const char *format
, ... )
88 va_start(args
, format
);
89 pam_vsyslog(pamh
, err
, format
, args
);
93 void _log_err( pam_handle_t
*pamh
, int err
, const char *format
, ... )
96 const char tag
[] = "(pam_smbpass) ";
99 mod_format
= SMB_MALLOC_ARRAY(char, sizeof(tag
) + strlen(format
));
100 /* try really, really hard to log something, since this may have
101 been a message about a malloc() failure... */
102 if (mod_format
== NULL
) {
103 va_start(args
, format
);
104 vsyslog(err
| LOG_AUTH
, format
, args
);
109 strncpy(mod_format
, tag
, strlen(tag
)+1);
110 strlcat(mod_format
, format
, strlen(format
)+1);
112 va_start(args
, format
);
113 vsyslog(err
| LOG_AUTH
, mod_format
, args
);
120 /* this is a front-end for module-application conversations */
122 int converse( pam_handle_t
* pamh
, int ctrl
, int nargs
123 , struct pam_message
**message
124 , struct pam_response
**response
)
127 struct pam_conv
*conv
;
129 retval
= _pam_get_item(pamh
, PAM_CONV
, &conv
);
130 if (retval
== PAM_SUCCESS
) {
132 retval
= conv
->conv(nargs
, (const struct pam_message
**) message
133 ,response
, conv
->appdata_ptr
);
135 if (retval
!= PAM_SUCCESS
&& on(SMB_DEBUG
, ctrl
)) {
136 _log_err(pamh
, LOG_DEBUG
, "conversation failure [%s]"
137 ,pam_strerror(pamh
, retval
));
140 _log_err(pamh
, LOG_ERR
, "couldn't obtain coversation function [%s]"
141 ,pam_strerror(pamh
, retval
));
144 return retval
; /* propagate error status */
147 int make_remark( pam_handle_t
* pamh
, unsigned int ctrl
148 , int type
, const char *text
)
150 if (off(SMB__QUIET
, ctrl
)) {
151 struct pam_message
*pmsg
[1], msg
[1];
152 struct pam_response
*resp
;
155 msg
[0].msg
= CONST_DISCARD(char *, text
);
156 msg
[0].msg_style
= type
;
159 return converse(pamh
, ctrl
, 1, pmsg
, &resp
);
165 /* set the control flags for the SMB module. */
167 int set_ctrl( pam_handle_t
*pamh
, int flags
, int argc
, const char **argv
)
170 const char *service_file
= NULL
;
173 ctrl
= SMB_DEFAULTS
; /* the default selection of options */
175 /* set some flags manually */
177 /* A good, sane default (matches Samba's behavior). */
178 set( SMB__NONULL
, ctrl
);
180 /* initialize service file location */
181 service_file
=get_dyn_CONFIGFILE();
183 if (flags
& PAM_SILENT
) {
184 set( SMB__QUIET
, ctrl
);
187 /* Run through the arguments once, looking for an alternate smb config
192 for (j
= 0; j
< SMB_CTRLS_
; ++j
) {
193 if (smb_args
[j
].token
194 && !strncmp(argv
[i
], smb_args
[j
].token
, strlen(smb_args
[j
].token
)))
200 if (j
== SMB_CONF_FILE
) {
201 service_file
= argv
[i
] + 8;
206 /* Read some options from the Samba config. Can be overridden by
208 if(lp_load(service_file
,True
,False
,False
,True
) == False
) {
209 _log_err(pamh
, LOG_ERR
, "Error loading service file %s", service_file
);
214 if (lp_null_passwords()) {
215 set( SMB__NULLOK
, ctrl
);
218 /* now parse the rest of the arguments to this module */
223 for (j
= 0; j
< SMB_CTRLS_
; ++j
) {
224 if (smb_args
[j
].token
225 && !strncmp(*argv
, smb_args
[j
].token
, strlen(smb_args
[j
].token
)))
231 if (j
>= SMB_CTRLS_
) {
232 _log_err(pamh
, LOG_ERR
, "unrecognized option [%s]", *argv
);
234 ctrl
&= smb_args
[j
].mask
; /* for turning things off */
235 ctrl
|= smb_args
[j
].flag
; /* for turning things on */
238 ++argv
; /* step to next argument */
241 /* auditing is a more sensitive version of debug */
243 if (on( SMB_AUDIT
, ctrl
)) {
244 set( SMB_DEBUG
, ctrl
);
246 /* return the set of flags */
251 /* use this to free strings. ESPECIALLY password strings */
253 char * _pam_delete( register char *xx
)
255 _pam_overwrite( xx
);
260 void _cleanup( pam_handle_t
* pamh
, void *x
, int error_status
)
262 x
= _pam_delete( (char *) x
);
267 * Safe duplication of character strings. "Paranoid"; don't leave
268 * evidence of old token around for later stack analysis.
271 char * smbpXstrDup( pam_handle_t
*pamh
, const char *x
)
273 register char *newstr
= NULL
;
278 for (i
= 0; x
[i
]; ++i
); /* length of string */
279 if ((newstr
= SMB_MALLOC_ARRAY(char, ++i
)) == NULL
) {
281 _log_err(pamh
, LOG_CRIT
, "out of memory in smbpXstrDup");
289 return newstr
; /* return the duplicate or NULL on error */
292 /* ************************************************************** *
293 * Useful non-trivial functions *
294 * ************************************************************** */
296 void _cleanup_failures( pam_handle_t
* pamh
, void *fl
, int err
)
299 const char *service
= NULL
;
300 struct _pam_failed_auth
*failure
;
302 #ifdef PAM_DATA_SILENT
303 quiet
= err
& PAM_DATA_SILENT
; /* should we log something? */
307 #ifdef PAM_DATA_REPLACE
308 err
&= PAM_DATA_REPLACE
; /* are we just replacing data? */
310 failure
= (struct _pam_failed_auth
*) fl
;
312 if (failure
!= NULL
) {
314 #ifdef PAM_DATA_SILENT
315 if (!quiet
&& !err
) { /* under advisement from Sun,may go away */
317 if (!quiet
) { /* under advisement from Sun,may go away */
320 /* log the number of authentication failures */
321 if (failure
->count
!= 0) {
322 _pam_get_item( pamh
, PAM_SERVICE
, &service
);
323 _log_err(pamh
, LOG_NOTICE
324 , "%d authentication %s "
325 "from %s for service %s as %s(%d)"
327 , failure
->count
== 1 ? "failure" : "failures"
329 , service
== NULL
? "**unknown**" : service
330 , failure
->user
, failure
->id
);
331 if (failure
->count
> SMB_MAX_RETRIES
) {
332 _log_err(pamh
, LOG_ALERT
333 , "service(%s) ignoring max retries; %d > %d"
334 , service
== NULL
? "**unknown**" : service
340 _pam_delete( failure
->agent
); /* tidy up */
341 _pam_delete( failure
->user
); /* tidy up */
342 SAFE_FREE( failure
);
346 int _smb_verify_password( pam_handle_t
* pamh
, struct samu
*sampass
,
347 const char *p
, unsigned int ctrl
)
351 int retval
= PAM_AUTH_ERR
;
358 name
= pdb_get_username(sampass
);
360 #ifdef HAVE_PAM_FAIL_DELAY
361 if (off( SMB_NODELAY
, ctrl
)) {
362 (void) pam_fail_delay( pamh
, 1000000 ); /* 1 sec delay for on failure */
366 if (!pdb_get_nt_passwd(sampass
))
368 _log_err(pamh
, LOG_DEBUG
, "user %s has null SMB password", name
);
370 if (off( SMB__NONULL
, ctrl
)
371 && (pdb_get_acct_ctrl(sampass
) & ACB_PWNOTREQ
))
372 { /* this means we've succeeded */
377 _pam_get_item( pamh
, PAM_SERVICE
, &service
);
378 _log_err(pamh
, LOG_NOTICE
, "failed auth request by %s for service %s as %s",
379 uidtoname(getuid()), service
? service
: "**unknown**", name
);
384 data_name
= SMB_MALLOC_ARRAY(char, sizeof(FAIL_PREFIX
) + strlen( name
));
385 if (data_name
== NULL
) {
386 _log_err(pamh
, LOG_CRIT
, "no memory for data-name" );
389 strncpy( data_name
, FAIL_PREFIX
, sizeof(FAIL_PREFIX
) );
390 strncpy( data_name
+ sizeof(FAIL_PREFIX
) - 1, name
, strlen( name
) + 1 );
393 * The password we were given wasn't an encrypted password, or it
394 * didn't match the one we have. We encrypt the password now and try
398 nt_lm_owf_gen(p
, nt_pw
, lm_pw
);
400 /* the moment of truth -- do we agree with the password? */
402 if (!memcmp( nt_pw
, pdb_get_nt_passwd(sampass
), 16 )) {
404 retval
= PAM_SUCCESS
;
405 if (data_name
) { /* reset failures */
406 pam_set_data(pamh
, data_name
, NULL
, _cleanup_failures
);
412 _pam_get_item( pamh
, PAM_SERVICE
, &service
);
414 if (data_name
!= NULL
) {
415 struct _pam_failed_auth
*newauth
= NULL
;
416 const struct _pam_failed_auth
*old
= NULL
;
418 /* get a failure recorder */
420 newauth
= SMB_MALLOC_P( struct _pam_failed_auth
);
422 if (newauth
!= NULL
) {
424 /* any previous failures for this user ? */
425 _pam_get_data(pamh
, data_name
, &old
);
428 newauth
->count
= old
->count
+ 1;
429 if (newauth
->count
>= SMB_MAX_RETRIES
) {
430 retval
= PAM_MAXTRIES
;
433 _log_err(pamh
, LOG_NOTICE
,
434 "failed auth request by %s for service %s as %s",
436 service
? service
: "**unknown**", name
);
439 if (!sid_to_uid(pdb_get_user_sid(sampass
), &(newauth
->id
))) {
440 _log_err(pamh
, LOG_NOTICE
,
441 "failed auth request by %s for service %s as %s",
443 service
? service
: "**unknown**", name
);
445 newauth
->user
= smbpXstrDup( pamh
, name
);
446 newauth
->agent
= smbpXstrDup( pamh
, uidtoname( getuid() ) );
447 pam_set_data( pamh
, data_name
, newauth
, _cleanup_failures
);
450 _log_err(pamh
, LOG_CRIT
, "no memory for failure recorder" );
451 _log_err(pamh
, LOG_NOTICE
,
452 "failed auth request by %s for service %s as %s(%d)",
454 service
? service
: "**unknown**", name
);
457 _log_err(pamh
, LOG_NOTICE
,
458 "failed auth request by %s for service %s as %s(%d)",
460 service
? service
: "**unknown**", name
);
461 retval
= PAM_AUTH_ERR
;
464 _pam_delete( data_name
);
471 * _smb_blankpasswd() is a quick check for a blank password
473 * returns TRUE if user does not have a password
474 * - to avoid prompting for one in such cases (CG)
477 int _smb_blankpasswd( unsigned int ctrl
, struct samu
*sampass
)
482 * This function does not have to be too smart if something goes
483 * wrong, return FALSE and let this case to be treated somewhere
487 if (on( SMB__NONULL
, ctrl
))
488 return 0; /* will fail but don't let on yet */
490 if (!(pdb_get_acct_ctrl(sampass
) & ACB_PWNOTREQ
))
493 if (pdb_get_nt_passwd(sampass
) == NULL
)
502 * obtain a password from the user
505 int _smb_read_password( pam_handle_t
* pamh
, unsigned int ctrl
,
506 const char *comment
, const char *prompt1
,
507 const char *prompt2
, const char *data_name
, char **pass
)
514 struct pam_message msg
[3], *pmsg
[3];
515 struct pam_response
*resp
;
519 /* make sure nothing inappropriate gets returned */
521 *pass
= token
= NULL
;
523 /* which authentication token are we getting? */
525 authtok_flag
= on(SMB__OLD_PASSWD
, ctrl
) ? PAM_OLDAUTHTOK
: PAM_AUTHTOK
;
527 /* should we obtain the password from a PAM item ? */
529 if (on(SMB_TRY_FIRST_PASS
, ctrl
) || on(SMB_USE_FIRST_PASS
, ctrl
)) {
530 retval
= _pam_get_item( pamh
, authtok_flag
, &item
);
531 if (retval
!= PAM_SUCCESS
) {
533 _log_err(pamh
, LOG_ALERT
,
534 "pam_get_item returned error to smb_read_password");
536 } else if (item
!= NULL
) { /* we have a password! */
540 } else if (on( SMB_USE_FIRST_PASS
, ctrl
)) {
541 return PAM_AUTHTOK_RECOVER_ERR
; /* didn't work */
542 } else if (on( SMB_USE_AUTHTOK
, ctrl
)
543 && off( SMB__OLD_PASSWD
, ctrl
))
545 return PAM_AUTHTOK_RECOVER_ERR
;
550 * getting here implies we will have to get the password from the
554 /* prepare to converse */
555 if (comment
!= NULL
&& off(SMB__QUIET
, ctrl
)) {
557 msg
[0].msg_style
= PAM_TEXT_INFO
;
558 msg
[0].msg
= CONST_DISCARD(char *, comment
);
565 msg
[i
].msg_style
= PAM_PROMPT_ECHO_OFF
;
566 msg
[i
++].msg
= CONST_DISCARD(char *, prompt1
);
568 if (prompt2
!= NULL
) {
570 msg
[i
].msg_style
= PAM_PROMPT_ECHO_OFF
;
571 msg
[i
++].msg
= CONST_DISCARD(char *, prompt2
);
578 retval
= converse( pamh
, ctrl
, i
, pmsg
, &resp
);
581 int j
= comment
? 1 : 0;
582 /* interpret the response */
584 if (retval
== PAM_SUCCESS
) { /* a good conversation */
586 token
= smbpXstrDup(pamh
, resp
[j
++].resp
);
589 /* verify that password entered correctly */
590 if (!resp
[j
].resp
|| strcmp( token
, resp
[j
].resp
)) {
591 _pam_delete( token
);
592 retval
= PAM_AUTHTOK_RECOVER_ERR
;
593 make_remark( pamh
, ctrl
, PAM_ERROR_MSG
598 _log_err(pamh
, LOG_NOTICE
,
599 "could not recover authentication token");
604 _pam_drop_reply( resp
, expect
);
607 retval
= (retval
== PAM_SUCCESS
) ? PAM_AUTHTOK_RECOVER_ERR
: retval
;
610 if (retval
!= PAM_SUCCESS
) {
611 if (on( SMB_DEBUG
, ctrl
))
612 _log_err(pamh
, LOG_DEBUG
, "unable to obtain a password");
615 /* 'token' is the entered password */
617 if (off( SMB_NOT_SET_PASS
, ctrl
)) {
619 /* we store this password as an item */
621 retval
= pam_set_item( pamh
, authtok_flag
, (const void *)token
);
622 _pam_delete( token
); /* clean it up */
623 if (retval
!= PAM_SUCCESS
624 || (retval
= _pam_get_item( pamh
, authtok_flag
625 ,&item
)) != PAM_SUCCESS
)
627 _log_err(pamh
, LOG_CRIT
, "error manipulating password");
632 * then store it as data specific to this module. pam_end()
633 * will arrange to clean it up.
636 retval
= pam_set_data( pamh
, data_name
, (void *) token
, _cleanup
);
637 if (retval
!= PAM_SUCCESS
638 || (retval
= _pam_get_data( pamh
, data_name
, &item
))
641 _log_err(pamh
, LOG_CRIT
, "error manipulating password data [%s]",
642 pam_strerror( pamh
, retval
));
643 _pam_delete( token
);
647 token
= NULL
; /* break link to password */
651 item
= NULL
; /* break link to password */
656 int _pam_smb_approve_pass(pam_handle_t
* pamh
,
658 const char *pass_old
,
659 const char *pass_new
)
662 /* Further checks should be handled through module stacking. -SRL */
663 if (pass_new
== NULL
|| (pass_old
&& !strcmp( pass_old
, pass_new
)))
665 if (on(SMB_DEBUG
, ctrl
)) {
666 _log_err(pamh
, LOG_DEBUG
,
667 "passwd: bad authentication token (null or unchanged)");
669 make_remark( pamh
, ctrl
, PAM_ERROR_MSG
, pass_new
== NULL
?
670 "No password supplied" : "Password unchanged" );
671 return PAM_AUTHTOK_ERR
;
678 * Work around the pam API that has functions with void ** as parameters
679 * These lead to strict aliasing warnings with gcc.
681 int _pam_get_item(const pam_handle_t
*pamh
,
685 const void **item
= (const void **)_item
;
686 return pam_get_item(pamh
, item_type
, item
);
689 int _pam_get_data(const pam_handle_t
*pamh
,
690 const char *module_data_name
,
693 const void **data
= (const void **)_data
;
694 return pam_get_data(pamh
, module_data_name
, data
);