1997-07-08 20:54:44 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1997-07-08 20:54:44 +04:00
Samba utility functions
1998-01-22 16:27:43 +03:00
Copyright ( C ) Andrew Tridgell 1992 - 1998
2004-01-26 12:03:09 +03:00
Copyright ( C ) Andrew Bartlett 2001 - 2004
1997-07-08 20:54:44 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
2004-01-26 12:03:09 +03:00
/* These comments regard the code to change the user's unix password: */
1996-05-04 11:50:46 +04:00
/* fork a child process to exec passwd and write to its
2001-05-03 03:32:09 +04:00
* tty to change a users password . This is running as the
* user who is attempting to change the password .
*/
1996-05-04 11:50:46 +04:00
/*
* This code was copied / borrowed and stolen from various sources .
* The primary source was the poppasswd . c from the authors of POPMail . This software
* was included as a client to change passwords using the ' passwd ' program
* on the remote machine .
*
* This code has been hacked by Bob Nance ( nance @ niehs . nih . gov ) and Evan Patterson
* ( patters2 @ niehs . nih . gov ) at the National Institute of Environmental Health Sciences
* and rights to modify , distribute or incorporate this change to the CAP suite or
* using it for any other reason are granted , so long as this disclaimer is left intact .
*/
/*
This code was hacked considerably for inclusion in Samba , primarily
by Andrew . Tridgell @ anu . edu . au . The biggest change was the addition
of the " password chat " option , which allows the easy runtime
specification of the expected sequence of events to change a
password .
*/
# include "includes.h"
2000-11-14 02:03:34 +03:00
extern struct passdb_ops pdb_ops ;
1996-05-04 11:50:46 +04:00
2003-01-04 11:45:17 +03:00
static NTSTATUS check_oem_password ( const char * user ,
2004-01-26 12:03:09 +03:00
uchar password_encrypted_with_lm_hash [ 516 ] ,
const uchar old_lm_hash_encrypted [ 16 ] ,
uchar password_encrypted_with_nt_hash [ 516 ] ,
const uchar old_nt_hash_encrypted [ 16 ] ,
SAM_ACCOUNT * * hnd , char * new_passwd ,
int new_passwd_size ) ;
2001-09-10 15:23:41 +04:00
1998-07-29 07:08:05 +04:00
# if ALLOW_CHANGE_PASSWORD
1996-05-04 11:50:46 +04:00
static int findpty ( char * * slave )
{
2000-03-22 00:08:07 +03:00
int master ;
static fstring line ;
2000-04-18 06:09:50 +04:00
DIR * dirp ;
2003-03-18 01:56:13 +03:00
const char * dpname ;
2000-03-22 00:08:07 +03:00
1998-07-29 07:08:05 +04:00
# if defined(HAVE_GRANTPT)
2000-03-22 00:08:07 +03:00
/* Try to open /dev/ptmx. If that fails, fall through to old method. */
if ( ( master = sys_open ( " /dev/ptmx " , O_RDWR , 0 ) ) > = 0 )
{
grantpt ( master ) ;
unlockpt ( master ) ;
* slave = ( char * ) ptsname ( master ) ;
if ( * slave = = NULL )
{
DEBUG ( 0 ,
( " findpty: Unable to create master/slave pty pair. \n " ) ) ;
/* Stop fd leak on error. */
close ( master ) ;
return - 1 ;
}
else
{
DEBUG ( 10 ,
( " findpty: Allocated slave pty %s \n " , * slave ) ) ;
return ( master ) ;
}
}
1999-12-13 16:27:58 +03:00
# endif /* HAVE_GRANTPT */
2000-03-22 00:08:07 +03:00
fstrcpy ( line , " /dev/ptyXX " ) ;
2000-04-18 06:09:50 +04:00
dirp = opendir ( " /dev " ) ;
2000-03-22 00:08:07 +03:00
if ( ! dirp )
return ( - 1 ) ;
2000-04-18 06:09:50 +04:00
while ( ( dpname = readdirname ( dirp ) ) ! = NULL )
2000-03-22 00:08:07 +03:00
{
if ( strncmp ( dpname , " pty " , 3 ) = = 0 & & strlen ( dpname ) = = 5 )
{
DEBUG ( 3 ,
( " pty: try to open %s, line was %s \n " , dpname ,
line ) ) ;
line [ 8 ] = dpname [ 3 ] ;
line [ 9 ] = dpname [ 4 ] ;
if ( ( master = sys_open ( line , O_RDWR , 0 ) ) > = 0 )
{
DEBUG ( 3 , ( " pty: opened %s \n " , line ) ) ;
line [ 5 ] = ' t ' ;
* slave = line ;
2000-04-18 06:09:50 +04:00
closedir ( dirp ) ;
2000-03-22 00:08:07 +03:00
return ( master ) ;
}
}
}
2000-04-18 06:09:50 +04:00
closedir ( dirp ) ;
2000-03-22 00:08:07 +03:00
return ( - 1 ) ;
1996-05-04 11:50:46 +04:00
}
2001-10-29 10:28:32 +03:00
static int dochild ( int master , const char * slavedev , const struct passwd * pass ,
const char * passwordprogram , BOOL as_root )
1996-05-04 11:50:46 +04:00
{
2000-03-22 00:08:07 +03:00
int slave ;
struct termios stermios ;
gid_t gid ;
uid_t uid ;
if ( pass = = NULL )
{
DEBUG ( 0 ,
2001-10-29 10:28:32 +03:00
( " dochild: user doesn't exist in the UNIX password database. \n " ) ) ;
2000-03-22 00:08:07 +03:00
return False ;
}
gid = pass - > pw_gid ;
uid = pass - > pw_uid ;
gain_root_privilege ( ) ;
/* Start new session - gets rid of controlling terminal. */
if ( setsid ( ) < 0 )
{
DEBUG ( 3 ,
( " Weirdness, couldn't let go of controlling terminal \n " ) ) ;
return ( False ) ;
}
/* Open slave pty and acquire as new controlling terminal. */
if ( ( slave = sys_open ( slavedev , O_RDWR , 0 ) ) < 0 )
{
DEBUG ( 3 , ( " More weirdness, could not open %s \n " , slavedev ) ) ;
return ( False ) ;
}
1998-07-29 07:08:05 +04:00
# ifdef I_PUSH
2000-03-22 00:08:07 +03:00
ioctl ( slave , I_PUSH , " ptem " ) ;
ioctl ( slave , I_PUSH , " ldterm " ) ;
1998-07-29 07:08:05 +04:00
# elif defined(TIOCSCTTY)
2000-03-22 00:08:07 +03:00
if ( ioctl ( slave , TIOCSCTTY , 0 ) < 0 )
{
DEBUG ( 3 , ( " Error in ioctl call for slave pty \n " ) ) ;
/* return(False); */
}
# endif
/* Close master. */
close ( master ) ;
/* Make slave stdin/out/err of child. */
2002-08-17 19:27:10 +04:00
if ( sys_dup2 ( slave , STDIN_FILENO ) ! = STDIN_FILENO )
2000-03-22 00:08:07 +03:00
{
DEBUG ( 3 , ( " Could not re-direct stdin \n " ) ) ;
return ( False ) ;
}
2002-08-17 19:27:10 +04:00
if ( sys_dup2 ( slave , STDOUT_FILENO ) ! = STDOUT_FILENO )
2000-03-22 00:08:07 +03:00
{
DEBUG ( 3 , ( " Could not re-direct stdout \n " ) ) ;
return ( False ) ;
}
2002-08-17 19:27:10 +04:00
if ( sys_dup2 ( slave , STDERR_FILENO ) ! = STDERR_FILENO )
2000-03-22 00:08:07 +03:00
{
DEBUG ( 3 , ( " Could not re-direct stderr \n " ) ) ;
return ( False ) ;
}
if ( slave > 2 )
close ( slave ) ;
/* Set proper terminal attributes - no echo, canonical input processing,
no map NL to CR / NL on output . */
if ( tcgetattr ( 0 , & stermios ) < 0 )
{
DEBUG ( 3 ,
( " could not read default terminal attributes on pty \n " ) ) ;
return ( False ) ;
}
stermios . c_lflag & = ~ ( ECHO | ECHOE | ECHOK | ECHONL ) ;
stermios . c_lflag | = ICANON ;
2002-08-17 19:27:10 +04:00
# ifdef ONLCR
2001-10-03 01:58:09 +04:00
stermios . c_oflag & = ~ ( ONLCR ) ;
2002-08-17 19:27:10 +04:00
# endif
2000-03-22 00:08:07 +03:00
if ( tcsetattr ( 0 , TCSANOW , & stermios ) < 0 )
{
DEBUG ( 3 , ( " could not set attributes of pty \n " ) ) ;
return ( False ) ;
}
/* make us completely into the right uid */
if ( ! as_root )
{
become_user_permanently ( uid , gid ) ;
}
DEBUG ( 10 ,
( " Invoking '%s' as password change program. \n " ,
passwordprogram ) ) ;
/* execl() password-change application */
if ( execl ( " /bin/sh " , " sh " , " -c " , passwordprogram , NULL ) < 0 )
{
DEBUG ( 3 , ( " Bad status returned from %s \n " , passwordprogram ) ) ;
return ( False ) ;
}
return ( True ) ;
1996-05-04 11:50:46 +04:00
}
1999-12-13 16:27:58 +03:00
static int expect ( int master , char * issue , char * expected )
1996-05-04 11:50:46 +04:00
{
1999-12-13 16:27:58 +03:00
pstring buffer ;
int attempts , timeout , nread , len ;
BOOL match = False ;
1996-05-04 11:50:46 +04:00
2001-10-03 01:58:09 +04:00
for ( attempts = 0 ; attempts < 2 ; attempts + + ) {
if ( ! strequal ( issue , " . " ) ) {
1999-12-13 16:27:58 +03:00
if ( lp_passwd_chat_debug ( ) )
DEBUG ( 100 , ( " expect: sending [%s] \n " , issue ) ) ;
1996-05-04 11:50:46 +04:00
2001-10-03 01:58:09 +04:00
if ( ( len = write ( master , issue , strlen ( issue ) ) ) ! = strlen ( issue ) ) {
DEBUG ( 2 , ( " expect: (short) write returned %d \n " , len ) ) ;
return False ;
}
1999-12-13 16:27:58 +03:00
}
1996-05-04 11:50:46 +04:00
1999-12-13 16:27:58 +03:00
if ( strequal ( expected , " . " ) )
return True ;
2003-11-24 23:18:47 +03:00
/* Initial timeout. */
timeout = lp_passwd_chat_timeout ( ) * 1000 ;
1999-12-13 16:27:58 +03:00
nread = 0 ;
buffer [ nread ] = 0 ;
2003-01-15 21:57:41 +03:00
while ( ( len = read_socket_with_timeout ( master , buffer + nread , 1 ,
sizeof ( buffer ) - nread - 1 ,
timeout ) ) > 0 ) {
1999-12-13 16:27:58 +03:00
nread + = len ;
buffer [ nread ] = 0 ;
2001-10-03 01:58:09 +04:00
{
/* Eat leading/trailing whitespace before match. */
pstring str ;
pstrcpy ( str , buffer ) ;
2003-09-05 23:59:55 +04:00
trim_char ( str , ' ' , ' ' ) ;
2001-10-03 01:58:09 +04:00
2003-11-24 23:18:47 +03:00
if ( ( match = ( unix_wild_match ( expected , str ) = = 0 ) ) ) {
/* Now data has started to return, lower timeout. */
timeout = lp_passwd_chat_timeout ( ) * 100 ;
}
2001-10-03 01:58:09 +04:00
}
1999-12-13 16:27:58 +03:00
}
if ( lp_passwd_chat_debug ( ) )
2001-10-03 01:58:09 +04:00
DEBUG ( 100 , ( " expect: expected [%s] received [%s] match %s \n " ,
expected , buffer , match ? " yes " : " no " ) ) ;
1999-12-13 16:27:58 +03:00
if ( match )
break ;
2001-10-03 01:58:09 +04:00
if ( len < 0 ) {
1999-12-13 16:27:58 +03:00
DEBUG ( 2 , ( " expect: %s \n " , strerror ( errno ) ) ) ;
return False ;
}
}
2001-10-03 01:58:09 +04:00
DEBUG ( 10 , ( " expect: returning %s \n " , match ? " True " : " False " ) ) ;
1999-12-13 16:27:58 +03:00
return match ;
1996-05-04 11:50:46 +04:00
}
static void pwd_sub ( char * buf )
{
2000-03-22 00:08:07 +03:00
all_string_sub ( buf , " \\ n " , " \n " , 0 ) ;
all_string_sub ( buf , " \\ r " , " \r " , 0 ) ;
all_string_sub ( buf , " \\ s " , " " , 0 ) ;
all_string_sub ( buf , " \\ t " , " \t " , 0 ) ;
1996-05-04 11:50:46 +04:00
}
2002-11-13 02:20:50 +03:00
static int talktochild ( int master , const char * seq )
1996-05-04 11:50:46 +04:00
{
1999-12-13 16:27:58 +03:00
int count = 0 ;
fstring issue , expected ;
1996-05-04 11:50:46 +04:00
1999-12-13 16:27:58 +03:00
fstrcpy ( issue , " . " ) ;
1996-05-04 11:50:46 +04:00
1999-12-13 16:27:58 +03:00
while ( next_token ( & seq , expected , NULL , sizeof ( expected ) ) )
{
pwd_sub ( expected ) ;
count + + ;
1996-05-04 11:50:46 +04:00
1999-12-13 16:27:58 +03:00
if ( ! expect ( master , issue , expected ) )
{
2000-03-22 00:08:07 +03:00
DEBUG ( 3 , ( " Response %d incorrect \n " , count ) ) ;
1999-12-13 16:27:58 +03:00
return False ;
}
1996-05-04 11:50:46 +04:00
1999-12-13 16:27:58 +03:00
if ( ! next_token ( & seq , issue , NULL , sizeof ( issue ) ) )
fstrcpy ( issue , " . " ) ;
1996-05-04 11:50:46 +04:00
1999-12-13 16:27:58 +03:00
pwd_sub ( issue ) ;
}
2001-12-05 01:24:17 +03:00
if ( ! strequal ( issue , " . " ) ) {
/* we have one final issue to send */
fstrcpy ( expected , " . " ) ;
if ( ! expect ( master , issue , expected ) )
return False ;
}
1996-05-04 11:50:46 +04:00
1999-12-13 16:27:58 +03:00
return ( count > 0 ) ;
1996-05-04 11:50:46 +04:00
}
2004-08-24 16:38:00 +04:00
static BOOL chat_with_program ( char * passwordprogram , const struct passwd * pass ,
2000-03-22 00:08:07 +03:00
char * chatsequence , BOOL as_root )
1996-05-04 11:50:46 +04:00
{
2000-03-22 00:08:07 +03:00
char * slavedev ;
int master ;
pid_t pid , wpid ;
int wstat ;
BOOL chstat = False ;
2003-09-04 22:02:17 +04:00
if ( pass = = NULL ) {
DEBUG ( 0 , ( " chat_with_program: user doesn't exist in the UNIX password database. \n " ) ) ;
2001-10-29 10:28:32 +03:00
return False ;
}
2000-03-22 00:08:07 +03:00
/* allocate a pseudo-terminal device */
2003-09-04 22:02:17 +04:00
if ( ( master = findpty ( & slavedev ) ) < 0 ) {
2004-01-07 01:34:06 +03:00
DEBUG ( 3 , ( " chat_with_program: Cannot Allocate pty for password change: %s \n " , pass - > pw_name ) ) ;
2000-03-22 00:08:07 +03:00
return ( False ) ;
}
1998-03-27 22:59:14 +03:00
1999-12-13 16:27:58 +03:00
/*
2000-03-22 00:08:07 +03:00
* We need to temporarily stop CatchChild from eating
* SIGCLD signals as it also eats the exit status code . JRA .
1999-12-13 16:27:58 +03:00
*/
2000-03-22 00:08:07 +03:00
CatchChildLeaveStatus ( ) ;
2003-09-04 22:02:17 +04:00
if ( ( pid = sys_fork ( ) ) < 0 ) {
2004-01-07 01:34:06 +03:00
DEBUG ( 3 , ( " chat_with_program: Cannot fork() child for password change: %s \n " , pass - > pw_name ) ) ;
2000-03-22 00:08:07 +03:00
close ( master ) ;
CatchChild ( ) ;
return ( False ) ;
}
/* we now have a pty */
2003-09-04 22:02:17 +04:00
if ( pid > 0 ) { /* This is the parent process */
if ( ( chstat = talktochild ( master , chatsequence ) ) = = False ) {
2004-01-07 01:34:06 +03:00
DEBUG ( 3 , ( " chat_with_program: Child failed to change password: %s \n " , pass - > pw_name ) ) ;
2000-03-22 00:08:07 +03:00
kill ( pid , SIGKILL ) ; /* be sure to end this process */
}
2003-09-04 22:02:17 +04:00
while ( ( wpid = sys_waitpid ( pid , & wstat , 0 ) ) < 0 ) {
if ( errno = = EINTR ) {
2000-03-22 00:08:07 +03:00
errno = 0 ;
continue ;
}
break ;
}
2003-09-04 22:02:17 +04:00
if ( wpid < 0 ) {
2004-01-07 01:34:06 +03:00
DEBUG ( 3 , ( " chat_with_program: The process is no longer waiting! \n \n " ) ) ;
2000-03-22 00:08:07 +03:00
close ( master ) ;
CatchChild ( ) ;
return ( False ) ;
}
/*
* Go back to ignoring children .
*/
CatchChild ( ) ;
close ( master ) ;
2003-09-04 22:02:17 +04:00
if ( pid ! = wpid ) {
2004-01-07 01:34:06 +03:00
DEBUG ( 3 , ( " chat_with_program: We were waiting for the wrong process ID \n " ) ) ;
2000-03-22 00:08:07 +03:00
return ( False ) ;
}
2004-01-07 01:34:06 +03:00
if ( WIFEXITED ( wstat ) & & ( WEXITSTATUS ( wstat ) ! = 0 ) ) {
DEBUG ( 3 , ( " chat_with_program: The process exited with status %d \
while we were waiting \ n " , WEXITSTATUS(wstat)));
2000-03-22 00:08:07 +03:00
return ( False ) ;
}
2004-01-07 01:34:06 +03:00
# if defined(WIFSIGNALLED) && defined(WTERMSIG)
else if ( WIFSIGNALLED ( wstat ) ) {
DEBUG ( 3 , ( " chat_with_program: The process was killed by signal %d \
while we were waiting \ n " , WTERMSIG(wstat)));
2000-03-22 00:08:07 +03:00
return ( False ) ;
}
2004-01-07 01:34:06 +03:00
# endif
2003-09-04 22:02:17 +04:00
} else {
2000-03-22 00:08:07 +03:00
/* CHILD */
1998-07-27 22:50:45 +04:00
2000-03-22 00:08:07 +03:00
/*
* Lose any oplock capabilities .
*/
2000-06-09 10:58:06 +04:00
oplock_set_capability ( False , False ) ;
2000-03-22 00:08:07 +03:00
/* make sure it doesn't freeze */
alarm ( 20 ) ;
if ( as_root )
2000-06-23 09:57:48 +04:00
become_root ( ) ;
2004-01-07 01:34:06 +03:00
DEBUG ( 3 , ( " chat_with_program: Dochild for user %s (uid=%d,gid=%d) (as_root = %s) \n " , pass - > pw_name ,
2003-09-04 22:02:17 +04:00
( int ) getuid ( ) , ( int ) getgid ( ) , BOOLSTR ( as_root ) ) ) ;
chstat = dochild ( master , slavedev , pass , passwordprogram , as_root ) ;
2000-03-22 00:08:07 +03:00
2000-06-23 09:57:48 +04:00
if ( as_root )
unbecome_root ( ) ;
2000-03-22 00:08:07 +03:00
/*
* The child should never return from dochild ( ) . . . .
*/
2003-09-04 22:02:17 +04:00
DEBUG ( 0 , ( " chat_with_program: Error: dochild() returned %d \n " , chstat ) ) ;
2000-03-22 00:08:07 +03:00
exit ( 1 ) ;
}
if ( chstat )
2004-01-07 01:34:06 +03:00
DEBUG ( 3 , ( " chat_with_program: Password change %ssuccessful for user %s \n " ,
2001-10-29 10:28:32 +03:00
( chstat ? " " : " un " ) , pass - > pw_name ) ) ;
2000-03-22 00:08:07 +03:00
return ( chstat ) ;
1996-05-04 11:50:46 +04:00
}
2004-02-02 03:08:35 +03:00
BOOL chgpasswd ( const char * name , const struct passwd * pass ,
const char * oldpass , const char * newpass , BOOL as_root )
1996-05-04 11:50:46 +04:00
{
2000-03-22 00:08:07 +03:00
pstring passwordprogram ;
pstring chatsequence ;
size_t i ;
size_t len ;
1996-05-04 11:50:46 +04:00
2003-01-04 11:45:17 +03:00
if ( ! oldpass ) {
oldpass = " " ;
}
2004-01-07 01:34:06 +03:00
DEBUG ( 3 , ( " chgpasswd: Password change (as_root=%s) for user: %s \n " , BOOLSTR ( as_root ) , name ) ) ;
1996-05-04 11:50:46 +04:00
2004-10-11 04:32:31 +04:00
# ifdef DEBUG_PASSWORD
2004-01-07 01:34:06 +03:00
DEBUG ( 100 , ( " chgpasswd: Passwords: old=%s new=%s \n " , oldpass , newpass ) ) ;
1996-05-04 11:50:46 +04:00
# endif
2000-03-22 00:08:07 +03:00
/* Take the passed information and test it for minimum criteria */
1998-03-27 22:59:14 +03:00
2000-03-22 00:08:07 +03:00
/* Password is same as old password */
2001-05-03 03:32:09 +04:00
if ( strcmp ( oldpass , newpass ) = = 0 ) {
/* don't allow same password */
2004-01-07 01:34:06 +03:00
DEBUG ( 2 , ( " chgpasswd: Password Change: %s, New password is same as old \n " , name ) ) ; /* log the attempt */
2000-03-22 00:08:07 +03:00
return ( False ) ; /* inform the user */
}
/*
* Check the old and new passwords don ' t contain any control
* characters .
*/
len = strlen ( oldpass ) ;
2001-05-03 03:32:09 +04:00
for ( i = 0 ; i < len ; i + + ) {
if ( iscntrl ( ( int ) oldpass [ i ] ) ) {
2004-01-07 01:34:06 +03:00
DEBUG ( 0 , ( " chgpasswd: oldpass contains control characters (disallowed). \n " ) ) ;
2000-03-22 00:08:07 +03:00
return False ;
}
}
len = strlen ( newpass ) ;
2001-05-03 03:32:09 +04:00
for ( i = 0 ; i < len ; i + + ) {
if ( iscntrl ( ( int ) newpass [ i ] ) ) {
2004-01-07 01:34:06 +03:00
DEBUG ( 0 , ( " chgpasswd: newpass contains control characters (disallowed). \n " ) ) ;
2000-03-22 00:08:07 +03:00
return False ;
}
}
2001-10-29 10:28:32 +03:00
2001-05-03 03:32:09 +04:00
# ifdef WITH_PAM
if ( lp_pam_password_change ( ) ) {
BOOL ret ;
if ( as_root )
become_root ( ) ;
2001-10-29 10:28:32 +03:00
if ( pass ) {
ret = smb_pam_passchange ( pass - > pw_name , oldpass , newpass ) ;
} else {
ret = smb_pam_passchange ( name , oldpass , newpass ) ;
}
2001-05-03 03:32:09 +04:00
if ( as_root )
unbecome_root ( ) ;
return ret ;
}
# endif
2001-10-29 10:28:32 +03:00
/* A non-PAM password change just doen't make sense without a valid local user */
2003-09-04 22:02:17 +04:00
if ( pass = = NULL ) {
DEBUG ( 0 , ( " chgpasswd: user %s doesn't exist in the UNIX password database. \n " , name ) ) ;
2001-10-29 10:28:32 +03:00
return False ;
}
2001-05-03 03:32:09 +04:00
pstrcpy ( passwordprogram , lp_passwd_program ( ) ) ;
pstrcpy ( chatsequence , lp_passwd_chat ( ) ) ;
if ( ! * chatsequence ) {
2001-10-03 01:58:09 +04:00
DEBUG ( 2 , ( " chgpasswd: Null chat sequence - no password changing \n " ) ) ;
2001-05-03 03:32:09 +04:00
return ( False ) ;
}
if ( ! * passwordprogram ) {
2001-10-03 01:58:09 +04:00
DEBUG ( 2 , ( " chgpasswd: Null password program - no password changing \n " ) ) ;
2001-05-03 03:32:09 +04:00
return ( False ) ;
}
2001-10-03 01:58:09 +04:00
if ( as_root ) {
/* The password program *must* contain the user name to work. Fail if not. */
2004-03-09 03:17:14 +03:00
if ( strstr_m ( passwordprogram , " %u " ) = = NULL ) {
2001-10-03 01:58:09 +04:00
DEBUG ( 0 , ( " chgpasswd: Running as root the 'passwd program' parameter *MUST* contain \
the string % % u , and the given string % s does not . \ n " , passwordprogram ));
return False ;
}
}
2000-03-22 00:08:07 +03:00
pstring_sub ( passwordprogram , " %u " , name ) ;
/* note that we do NOT substitute the %o and %n in the password program
as this would open up a security hole where the user could use
a new password containing shell escape characters */
pstring_sub ( chatsequence , " %u " , name ) ;
all_string_sub ( chatsequence , " %o " , oldpass , sizeof ( pstring ) ) ;
all_string_sub ( chatsequence , " %n " , newpass , sizeof ( pstring ) ) ;
return ( chat_with_program
2001-10-29 10:28:32 +03:00
( passwordprogram , pass , chatsequence , as_root ) ) ;
1996-05-04 11:50:46 +04:00
}
1998-05-14 05:30:40 +04:00
# else /* ALLOW_CHANGE_PASSWORD */
2001-05-01 01:05:58 +04:00
2004-02-02 03:08:35 +03:00
BOOL chgpasswd ( const char * name , const struct passwd * pass ,
const char * oldpass , const char * newpass , BOOL as_root )
1996-05-04 11:50:46 +04:00
{
2004-01-26 12:03:09 +03:00
DEBUG ( 0 , ( " chgpasswd: Unix Password changing not compiled in (user=%s) \n " , name ) ) ;
2000-03-22 00:08:07 +03:00
return ( False ) ;
1996-05-04 11:50:46 +04:00
}
1998-05-14 05:30:40 +04:00
# endif /* ALLOW_CHANGE_PASSWORD */
1998-01-17 10:08:21 +03:00
/***********************************************************
Code to check the lanman hashed password .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-03-22 00:08:07 +03:00
BOOL check_lanman_password ( char * user , uchar * pass1 ,
2000-11-14 02:03:34 +03:00
uchar * pass2 , SAM_ACCOUNT * * hnd )
1998-01-17 10:08:21 +03:00
{
2000-03-22 00:08:07 +03:00
uchar unenc_new_pw [ 16 ] ;
uchar unenc_old_pw [ 16 ] ;
2000-11-14 02:03:34 +03:00
SAM_ACCOUNT * sampass = NULL ;
uint16 acct_ctrl ;
This commit is number 4 of 4.
In particular this commit focuses on:
Actually adding the 'const' to the passdb interface, and the flow-on changes.
Also kill off the 'disp_info' stuff, as its no longer used.
While these changes have been mildly tested, and are pretty small, any
assistance in this is appreciated.
----
These changes introduces a large dose of 'const' to the Samba tree.
There are a number of good reasons to do this:
- I want to allow the SAM_ACCOUNT structure to move from wasteful
pstrings and fstrings to allocated strings. We can't do that if
people are modifying these outputs, as they may well make
assumptions about getting pstrings and fstrings
- I want --with-pam_smbpass to compile with a slightly sane
volume of warnings, currently its pretty bad, even in 2.2
where is compiles at all.
- Tridge assures me that he no longer opposes 'const religion'
based on the ability to #define const the problem away.
- Changed Get_Pwnam(x,y) into two variants (so that the const
parameter can work correctly): - Get_Pwnam(const x) and
Get_Pwnam_Modify(x).
- Reworked smbd/chgpasswd.c to work with these mods, passing
around a 'struct passwd' rather than the modified username
---
This finishes this line of commits off, your tree should now compile again :-)
Andrew Bartlett
(This used to be commit c95f5aeb9327347674589ae313b75bee3bf8e317)
2001-10-29 10:35:11 +03:00
const uint8 * lanman_pw ;
2001-05-04 19:44:27 +04:00
BOOL ret ;
2000-06-23 09:57:48 +04:00
become_root ( ) ;
2001-05-04 19:44:27 +04:00
ret = pdb_getsampwnam ( sampass , user ) ;
2000-06-23 09:57:48 +04:00
unbecome_root ( ) ;
2000-03-22 00:08:07 +03:00
2001-05-04 19:44:27 +04:00
if ( ret = = False ) {
2000-11-14 02:03:34 +03:00
DEBUG ( 0 , ( " check_lanman_password: getsampwnam returned NULL \n " ) ) ;
2001-09-29 17:08:26 +04:00
pdb_free_sam ( & sampass ) ;
2000-03-22 00:08:07 +03:00
return False ;
}
2000-11-14 02:03:34 +03:00
acct_ctrl = pdb_get_acct_ctrl ( sampass ) ;
lanman_pw = pdb_get_lanman_passwd ( sampass ) ;
2000-03-22 00:08:07 +03:00
2001-05-04 19:44:27 +04:00
if ( acct_ctrl & ACB_DISABLED ) {
DEBUG ( 0 , ( " check_lanman_password: account %s disabled. \n " , user ) ) ;
2001-09-29 17:08:26 +04:00
pdb_free_sam ( & sampass ) ;
2000-03-22 00:08:07 +03:00
return False ;
}
2001-09-29 17:08:26 +04:00
if ( lanman_pw = = NULL ) {
if ( acct_ctrl & ACB_PWNOTREQ ) {
/* this saves the pointer for the caller */
* hnd = sampass ;
return True ;
} else {
DEBUG ( 0 , ( " check_lanman_password: no lanman password ! \n " ) ) ;
pdb_free_sam ( & sampass ) ;
return False ;
}
2000-03-22 00:08:07 +03:00
}
/* Get the new lanman hash. */
2000-11-14 02:03:34 +03:00
D_P16 ( lanman_pw , pass2 , unenc_new_pw ) ;
2000-03-22 00:08:07 +03:00
/* Use this to get the old lanman hash. */
D_P16 ( unenc_new_pw , pass1 , unenc_old_pw ) ;
/* Check that the two old passwords match. */
2001-05-04 19:44:27 +04:00
if ( memcmp ( lanman_pw , unenc_old_pw , 16 ) ) {
2000-11-14 02:03:34 +03:00
DEBUG ( 0 , ( " check_lanman_password: old password doesn't match. \n " ) ) ;
2001-09-29 17:08:26 +04:00
pdb_free_sam ( & sampass ) ;
2000-03-22 00:08:07 +03:00
return False ;
}
2000-11-14 02:03:34 +03:00
/* this saves the pointer for the caller */
* hnd = sampass ;
2000-03-22 00:08:07 +03:00
return True ;
1998-01-17 10:08:21 +03:00
}
/***********************************************************
Code to change the lanman hashed password .
It nulls out the NT hashed password as it will
no longer be valid .
2003-07-31 05:33:44 +04:00
NOTE this function is designed to be called as root . Check the old password
is correct before calling . JRA .
1998-01-17 10:08:21 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-01-14 10:49:15 +03:00
BOOL change_lanman_password ( SAM_ACCOUNT * sampass , uchar * pass2 )
1998-01-17 10:08:21 +03:00
{
2000-03-22 00:08:07 +03:00
static uchar null_pw [ 16 ] ;
uchar unenc_new_pw [ 16 ] ;
BOOL ret ;
2000-11-14 02:03:34 +03:00
uint16 acct_ctrl ;
This commit is number 4 of 4.
In particular this commit focuses on:
Actually adding the 'const' to the passdb interface, and the flow-on changes.
Also kill off the 'disp_info' stuff, as its no longer used.
While these changes have been mildly tested, and are pretty small, any
assistance in this is appreciated.
----
These changes introduces a large dose of 'const' to the Samba tree.
There are a number of good reasons to do this:
- I want to allow the SAM_ACCOUNT structure to move from wasteful
pstrings and fstrings to allocated strings. We can't do that if
people are modifying these outputs, as they may well make
assumptions about getting pstrings and fstrings
- I want --with-pam_smbpass to compile with a slightly sane
volume of warnings, currently its pretty bad, even in 2.2
where is compiles at all.
- Tridge assures me that he no longer opposes 'const religion'
based on the ability to #define const the problem away.
- Changed Get_Pwnam(x,y) into two variants (so that the const
parameter can work correctly): - Get_Pwnam(const x) and
Get_Pwnam_Modify(x).
- Reworked smbd/chgpasswd.c to work with these mods, passing
around a 'struct passwd' rather than the modified username
---
This finishes this line of commits off, your tree should now compile again :-)
Andrew Bartlett
(This used to be commit c95f5aeb9327347674589ae313b75bee3bf8e317)
2001-10-29 10:35:11 +03:00
const uint8 * pwd ;
2000-03-22 00:08:07 +03:00
2001-05-04 19:44:27 +04:00
if ( sampass = = NULL ) {
2000-11-14 02:03:34 +03:00
DEBUG ( 0 , ( " change_lanman_password: no smb password entry. \n " ) ) ;
2000-03-22 00:08:07 +03:00
return False ;
}
2001-05-04 19:44:27 +04:00
2000-11-14 02:03:34 +03:00
acct_ctrl = pdb_get_acct_ctrl ( sampass ) ;
pwd = pdb_get_lanman_passwd ( sampass ) ;
2000-03-22 00:08:07 +03:00
2001-05-04 19:44:27 +04:00
if ( acct_ctrl & ACB_DISABLED ) {
2000-11-14 02:03:34 +03:00
DEBUG ( 0 , ( " change_lanman_password: account %s disabled. \n " ,
pdb_get_username ( sampass ) ) ) ;
2000-03-22 00:08:07 +03:00
return False ;
}
2001-09-29 17:08:26 +04:00
if ( pwd = = NULL ) {
if ( acct_ctrl & ACB_PWNOTREQ ) {
uchar no_pw [ 14 ] ;
memset ( no_pw , ' \0 ' , 14 ) ;
E_P16 ( no_pw , null_pw ) ;
/* Get the new lanman hash. */
D_P16 ( null_pw , pass2 , unenc_new_pw ) ;
} else {
DEBUG ( 0 , ( " change_lanman_password: no lanman password ! \n " ) ) ;
return False ;
}
} else {
/* Get the new lanman hash. */
D_P16 ( pwd , pass2 , unenc_new_pw ) ;
2000-03-22 00:08:07 +03:00
}
2001-09-29 17:08:26 +04:00
2002-11-02 06:47:48 +03:00
if ( ! pdb_set_lanman_passwd ( sampass , unenc_new_pw , PDB_CHANGED ) ) {
2000-03-22 00:08:07 +03:00
return False ;
}
2002-11-02 06:47:48 +03:00
if ( ! pdb_set_nt_passwd ( sampass , NULL , PDB_CHANGED ) ) {
2001-09-29 17:08:26 +04:00
return False ; /* We lose the NT hash. Sorry. */
}
2000-03-22 00:08:07 +03:00
2001-10-29 10:15:51 +03:00
if ( ! pdb_set_pass_changed_now ( sampass ) ) {
pdb_free_sam ( & sampass ) ;
/* Not quite sure what this one qualifies as, but this will do */
return False ;
}
2000-11-14 02:03:34 +03:00
/* Now flush the sam_passwd struct to persistent storage */
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
ret = pdb_update_sam_account ( sampass ) ;
2000-03-22 00:08:07 +03:00
return ret ;
1998-01-17 10:08:21 +03:00
}
1998-03-18 22:07:53 +03:00
/***********************************************************
1998-10-19 21:32:10 +04:00
Code to check and change the OEM hashed password .
1998-03-18 22:07:53 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-07-31 05:33:44 +04:00
2003-01-04 11:45:17 +03:00
NTSTATUS pass_oem_change ( char * user ,
2004-01-26 12:03:09 +03:00
uchar password_encrypted_with_lm_hash [ 516 ] ,
const uchar old_lm_hash_encrypted [ 16 ] ,
uchar password_encrypted_with_nt_hash [ 516 ] ,
const uchar old_nt_hash_encrypted [ 16 ] )
1998-03-18 22:07:53 +03:00
{
2004-01-26 12:03:09 +03:00
pstring new_passwd ;
2000-11-14 02:03:34 +03:00
SAM_ACCOUNT * sampass = NULL ;
2004-01-26 12:03:09 +03:00
NTSTATUS nt_status = check_oem_password ( user , password_encrypted_with_lm_hash ,
old_lm_hash_encrypted ,
password_encrypted_with_nt_hash ,
old_nt_hash_encrypted ,
& sampass , new_passwd , sizeof ( new_passwd ) ) ;
2003-01-05 08:11:02 +03:00
if ( ! NT_STATUS_IS_OK ( nt_status ) )
2003-01-04 11:45:17 +03:00
return nt_status ;
1998-10-19 21:32:10 +04:00
2003-07-31 05:33:44 +04:00
/* We've already checked the old password here.... */
become_root ( ) ;
2003-09-04 22:02:17 +04:00
nt_status = change_oem_password ( sampass , NULL , new_passwd , True ) ;
2003-07-31 05:33:44 +04:00
unbecome_root ( ) ;
1998-10-19 21:32:10 +04:00
memset ( new_passwd , 0 , sizeof ( new_passwd ) ) ;
2001-09-29 17:08:26 +04:00
pdb_free_sam ( & sampass ) ;
2001-05-04 19:44:27 +04:00
2003-01-04 11:45:17 +03:00
return nt_status ;
1998-10-19 21:32:10 +04:00
}
1998-03-18 22:07:53 +03:00
1998-10-19 21:32:10 +04:00
/***********************************************************
2004-01-26 12:03:09 +03:00
Decrypt and verify a user password change .
1998-03-18 22:07:53 +03:00
2004-01-26 12:03:09 +03:00
The 516 byte long buffers are encrypted with the old NT and
old LM passwords , and if the NT passwords are present , both
buffers contain a unicode string .
1998-03-18 22:07:53 +03:00
2004-01-26 12:03:09 +03:00
After decrypting the buffers , check the password is correct by
matching the old hashed passwords with the passwords in the passdb .
1998-10-19 21:32:10 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-01-07 00:48:46 +03:00
2003-01-04 11:45:17 +03:00
static NTSTATUS check_oem_password ( const char * user ,
2004-01-26 12:03:09 +03:00
uchar password_encrypted_with_lm_hash [ 516 ] ,
const uchar old_lm_hash_encrypted [ 16 ] ,
uchar password_encrypted_with_nt_hash [ 516 ] ,
const uchar old_nt_hash_encrypted [ 16 ] ,
SAM_ACCOUNT * * hnd , char * new_passwd ,
int new_passwd_size )
1998-10-19 21:32:10 +04:00
{
1998-10-21 20:58:34 +04:00
static uchar null_pw [ 16 ] ;
static uchar null_ntpw [ 16 ] ;
2000-11-14 02:03:34 +03:00
SAM_ACCOUNT * sampass = NULL ;
2004-01-26 12:03:09 +03:00
char * password_encrypted ;
const char * encryption_key ;
This commit is number 4 of 4.
In particular this commit focuses on:
Actually adding the 'const' to the passdb interface, and the flow-on changes.
Also kill off the 'disp_info' stuff, as its no longer used.
While these changes have been mildly tested, and are pretty small, any
assistance in this is appreciated.
----
These changes introduces a large dose of 'const' to the Samba tree.
There are a number of good reasons to do this:
- I want to allow the SAM_ACCOUNT structure to move from wasteful
pstrings and fstrings to allocated strings. We can't do that if
people are modifying these outputs, as they may well make
assumptions about getting pstrings and fstrings
- I want --with-pam_smbpass to compile with a slightly sane
volume of warnings, currently its pretty bad, even in 2.2
where is compiles at all.
- Tridge assures me that he no longer opposes 'const religion'
based on the ability to #define const the problem away.
- Changed Get_Pwnam(x,y) into two variants (so that the const
parameter can work correctly): - Get_Pwnam(const x) and
Get_Pwnam_Modify(x).
- Reworked smbd/chgpasswd.c to work with these mods, passing
around a 'struct passwd' rather than the modified username
---
This finishes this line of commits off, your tree should now compile again :-)
Andrew Bartlett
(This used to be commit c95f5aeb9327347674589ae313b75bee3bf8e317)
2001-10-29 10:35:11 +03:00
const uint8 * lanman_pw , * nt_pw ;
2000-11-14 02:03:34 +03:00
uint16 acct_ctrl ;
2004-01-26 12:03:09 +03:00
uint32 new_pw_len ;
uchar new_nt_hash [ 16 ] ;
uchar new_lm_hash [ 16 ] ;
2004-11-25 07:10:19 +03:00
uchar verifier [ 16 ] ;
1998-10-21 20:28:44 +04:00
char no_pw [ 2 ] ;
2001-05-04 19:44:27 +04:00
BOOL ret ;
1998-10-21 20:58:34 +04:00
2004-01-26 12:03:09 +03:00
BOOL nt_pass_set = ( password_encrypted_with_nt_hash & & old_nt_hash_encrypted ) ;
BOOL lm_pass_set = ( password_encrypted_with_lm_hash & & old_lm_hash_encrypted ) ;
1998-10-19 21:32:10 +04:00
2003-01-08 10:02:21 +03:00
* hnd = NULL ;
2001-05-04 19:44:27 +04:00
pdb_init_sam ( & sampass ) ;
2000-06-23 09:57:48 +04:00
become_root ( ) ;
2001-05-04 19:44:27 +04:00
ret = pdb_getsampwnam ( sampass , user ) ;
2000-06-23 09:57:48 +04:00
unbecome_root ( ) ;
1998-10-19 21:32:10 +04:00
2001-05-04 19:44:27 +04:00
if ( ret = = False ) {
2000-03-22 00:08:07 +03:00
DEBUG ( 0 , ( " check_oem_password: getsmbpwnam returned NULL \n " ) ) ;
2003-01-07 00:48:46 +03:00
pdb_free_sam ( & sampass ) ;
2004-01-26 12:03:09 +03:00
return NT_STATUS_NO_SUCH_USER ;
1998-10-19 21:32:10 +04:00
}
2001-05-04 19:44:27 +04:00
2000-11-14 02:03:34 +03:00
acct_ctrl = pdb_get_acct_ctrl ( sampass ) ;
2001-05-04 19:44:27 +04:00
if ( acct_ctrl & ACB_DISABLED ) {
2004-01-26 12:03:09 +03:00
DEBUG ( 2 , ( " check_lanman_password: account %s disabled. \n " , user ) ) ;
2003-01-07 00:48:46 +03:00
pdb_free_sam ( & sampass ) ;
2003-01-04 11:45:17 +03:00
return NT_STATUS_ACCOUNT_DISABLED ;
1998-10-19 21:32:10 +04:00
}
2004-11-25 07:10:19 +03:00
if ( ( acct_ctrl & ACB_PWNOTREQ ) & & lp_null_passwords ( ) ) {
2004-01-26 12:03:09 +03:00
/* construct a null password (in case one is needed */
no_pw [ 0 ] = 0 ;
no_pw [ 1 ] = 0 ;
nt_lm_owf_gen ( no_pw , null_ntpw , null_pw ) ;
lanman_pw = null_pw ;
nt_pw = null_pw ;
1998-10-19 21:32:10 +04:00
2004-01-26 12:03:09 +03:00
} else {
/* save pointers to passwords so we don't have to keep looking them up */
if ( lp_lanman_auth ( ) ) {
lanman_pw = pdb_get_lanman_passwd ( sampass ) ;
} else {
lanman_pw = NULL ;
1998-10-19 21:32:10 +04:00
}
2004-01-26 12:03:09 +03:00
nt_pw = pdb_get_nt_passwd ( sampass ) ;
1998-10-19 21:32:10 +04:00
}
2004-01-26 12:03:09 +03:00
if ( nt_pw & & nt_pass_set ) {
/* IDEAL Case: passwords are in unicode, and we can
* read use the password encrypted with the NT hash
*/
password_encrypted = password_encrypted_with_nt_hash ;
encryption_key = nt_pw ;
} else if ( lanman_pw & & lm_pass_set ) {
/* password may still be in unicode, but use LM hash version */
password_encrypted = password_encrypted_with_lm_hash ;
encryption_key = lanman_pw ;
} else if ( nt_pass_set ) {
DEBUG ( 1 , ( " NT password change supplied for user %s, but we have no NT password to check it with \n " ,
user ) ) ;
pdb_free_sam ( & sampass ) ;
return NT_STATUS_WRONG_PASSWORD ;
} else if ( lm_pass_set ) {
DEBUG ( 1 , ( " LM password change supplied for user %s, but we have no LanMan password to check it with \n " ,
user ) ) ;
pdb_free_sam ( & sampass ) ;
return NT_STATUS_WRONG_PASSWORD ;
} else {
DEBUG ( 1 , ( " password change requested for user %s, but no password supplied! \n " ,
user ) ) ;
pdb_free_sam ( & sampass ) ;
return NT_STATUS_WRONG_PASSWORD ;
1998-10-19 21:32:10 +04:00
}
1999-12-13 16:27:58 +03:00
/*
2004-01-26 12:03:09 +03:00
* Decrypt the password with the key
1999-12-13 16:27:58 +03:00
*/
2004-01-26 12:03:09 +03:00
SamOEMhash ( password_encrypted , encryption_key , 516 ) ;
1999-12-13 16:27:58 +03:00
2004-01-26 12:03:09 +03:00
if ( ! decode_pw_buffer ( password_encrypted , new_passwd , new_passwd_size , & new_pw_len ,
nt_pass_set ? STR_UNICODE : STR_ASCII ) ) {
2003-01-07 00:48:46 +03:00
pdb_free_sam ( & sampass ) ;
2003-01-04 11:45:17 +03:00
return NT_STATUS_WRONG_PASSWORD ;
1998-10-19 21:32:10 +04:00
}
/*
* To ensure we got the correct new password , hash it and
* use it as a key to test the passed old password .
*/
2004-01-26 12:03:09 +03:00
if ( nt_pass_set ) {
/* NT passwords, verify the NT hash. */
/* Calculate the MD4 hash (NT compatible) of the password */
memset ( new_nt_hash , ' \0 ' , 16 ) ;
E_md4hash ( new_passwd , new_nt_hash ) ;
if ( nt_pw ) {
/*
2004-11-25 07:10:19 +03:00
* check the NT verifier
2004-01-26 12:03:09 +03:00
*/
2004-11-25 07:10:19 +03:00
E_old_pw_hash ( new_nt_hash , nt_pw , verifier ) ;
if ( memcmp ( verifier , old_nt_hash_encrypted , 16 ) ) {
2004-01-26 12:03:09 +03:00
DEBUG ( 0 , ( " check_oem_password: old lm password doesn't match. \n " ) ) ;
pdb_free_sam ( & sampass ) ;
return NT_STATUS_WRONG_PASSWORD ;
}
/* We could check the LM password here, but there is
* little point , we already know the password is
* correct , and the LM password might not even be
* present . */
/* Further, LM hash generation algorithms
* differ with charset , so we could
* incorrectly fail a perfectly valid password
* change */
# ifdef DEBUG_PASSWORD
DEBUG ( 100 ,
( " check_oem_password: password %s ok \n " , new_passwd ) ) ;
# endif
* hnd = sampass ;
return NT_STATUS_OK ;
}
if ( lanman_pw ) {
/*
2004-11-25 07:10:19 +03:00
* check the lm verifier
2004-01-26 12:03:09 +03:00
*/
2004-11-25 07:10:19 +03:00
E_old_pw_hash ( new_nt_hash , lanman_pw , verifier ) ;
if ( memcmp ( verifier , old_lm_hash_encrypted , 16 ) ) {
2004-01-26 12:03:09 +03:00
DEBUG ( 0 , ( " check_oem_password: old lm password doesn't match. \n " ) ) ;
pdb_free_sam ( & sampass ) ;
return NT_STATUS_WRONG_PASSWORD ;
}
# ifdef DEBUG_PASSWORD
DEBUG ( 100 ,
( " check_oem_password: password %s ok \n " , new_passwd ) ) ;
# endif
* hnd = sampass ;
return NT_STATUS_OK ;
}
}
if ( lanman_pw & & lm_pass_set ) {
E_deshash ( new_passwd , new_lm_hash ) ;
1998-10-19 21:32:10 +04:00
/*
2004-11-25 07:10:19 +03:00
* check the lm verifier
1998-10-19 21:32:10 +04:00
*/
2004-11-25 07:10:19 +03:00
E_old_pw_hash ( new_lm_hash , lanman_pw , verifier ) ;
if ( memcmp ( verifier , old_lm_hash_encrypted , 16 ) ) {
2000-11-14 02:03:34 +03:00
DEBUG ( 0 , ( " check_oem_password: old lm password doesn't match. \n " ) ) ;
2003-01-07 00:48:46 +03:00
pdb_free_sam ( & sampass ) ;
2003-01-04 11:45:17 +03:00
return NT_STATUS_WRONG_PASSWORD ;
1998-10-19 21:32:10 +04:00
}
2004-01-26 12:03:09 +03:00
1998-10-19 21:32:10 +04:00
# ifdef DEBUG_PASSWORD
2000-03-22 00:08:07 +03:00
DEBUG ( 100 ,
( " check_oem_password: password %s ok \n " , new_passwd ) ) ;
1998-10-19 21:32:10 +04:00
# endif
2003-01-08 10:02:21 +03:00
* hnd = sampass ;
2003-01-04 11:45:17 +03:00
return NT_STATUS_OK ;
1998-10-19 21:32:10 +04:00
}
2004-01-26 12:03:09 +03:00
/* should not be reached */
pdb_free_sam ( & sampass ) ;
return NT_STATUS_WRONG_PASSWORD ;
1998-03-18 22:07:53 +03:00
}
2004-07-08 02:46:51 +04:00
/***********************************************************
This routine takes the given password and checks it against
the password history . Returns True if this password has been
found in the history list .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static BOOL check_passwd_history ( SAM_ACCOUNT * sampass , const char * plaintext )
{
uchar new_nt_p16 [ NT_HASH_LEN ] ;
2004-08-05 23:57:41 +04:00
uchar zero_md5_nt_pw [ SALTED_MD5_HASH_LEN ] ;
2004-07-08 02:46:51 +04:00
const uint8 * nt_pw ;
const uint8 * pwhistory ;
BOOL found = False ;
int i , pwHisLen , curr_pwHisLen ;
account_policy_get ( AP_PASSWORD_HISTORY , & pwHisLen ) ;
if ( pwHisLen = = 0 ) {
return False ;
}
pwhistory = pdb_get_pw_history ( sampass , & curr_pwHisLen ) ;
if ( ! pwhistory | | curr_pwHisLen = = 0 ) {
return False ;
}
/* Only examine the minimum of the current history len and
the stored history len . Avoids race conditions . */
pwHisLen = MIN ( pwHisLen , curr_pwHisLen ) ;
nt_pw = pdb_get_nt_passwd ( sampass ) ;
E_md4hash ( plaintext , new_nt_p16 ) ;
if ( ! memcmp ( nt_pw , new_nt_p16 , NT_HASH_LEN ) ) {
DEBUG ( 10 , ( " check_passwd_history: proposed new password for user %s is the same as the current password ! \n " ,
pdb_get_username ( sampass ) ) ) ;
return True ;
}
dump_data ( 100 , new_nt_p16 , NT_HASH_LEN ) ;
2004-08-05 23:57:41 +04:00
dump_data ( 100 , pwhistory , PW_HISTORY_ENTRY_LEN * pwHisLen ) ;
2004-07-08 02:46:51 +04:00
2004-08-05 23:57:41 +04:00
memset ( zero_md5_nt_pw , ' \0 ' , SALTED_MD5_HASH_LEN ) ;
2004-07-08 02:46:51 +04:00
for ( i = 0 ; i < pwHisLen ; i + + ) {
2004-08-05 23:57:41 +04:00
uchar new_nt_pw_salted_md5_hash [ SALTED_MD5_HASH_LEN ] ;
const uchar * current_salt = & pwhistory [ i * PW_HISTORY_ENTRY_LEN ] ;
const uchar * old_nt_pw_salted_md5_hash = & pwhistory [ ( i * PW_HISTORY_ENTRY_LEN ) +
PW_HISTORY_SALT_LEN ] ;
if ( ! memcmp ( zero_md5_nt_pw , old_nt_pw_salted_md5_hash , SALTED_MD5_HASH_LEN ) ) {
/* Ignore zero valued entries. */
2004-07-08 02:46:51 +04:00
continue ;
}
2004-08-05 23:57:41 +04:00
/* Create salted versions of new to compare. */
E_md5hash ( current_salt , new_nt_p16 , new_nt_pw_salted_md5_hash ) ;
if ( ! memcmp ( new_nt_pw_salted_md5_hash , old_nt_pw_salted_md5_hash , SALTED_MD5_HASH_LEN ) ) {
2004-07-08 02:46:51 +04:00
DEBUG ( 1 , ( " check_passwd_history: proposed new password for user %s found in history list ! \n " ,
pdb_get_username ( sampass ) ) ) ;
found = True ;
break ;
}
}
return found ;
}
1998-03-18 22:07:53 +03:00
/***********************************************************
Code to change the oem password . Changes both the lanman
2003-01-04 11:45:17 +03:00
and NT hashes . Old_passwd is almost always NULL .
2003-07-31 05:33:44 +04:00
NOTE this function is designed to be called as root . Check the old password
is correct before calling . JRA .
1998-03-18 22:07:53 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2003-09-04 22:02:17 +04:00
NTSTATUS change_oem_password ( SAM_ACCOUNT * hnd , char * old_passwd , char * new_passwd , BOOL as_root )
1998-03-18 22:07:53 +03:00
{
2001-09-29 17:08:26 +04:00
BOOL ret ;
2003-01-04 11:45:17 +03:00
uint32 min_len ;
2004-07-08 02:46:51 +04:00
struct passwd * pass = NULL ;
const char * username = pdb_get_username ( hnd ) ;
time_t can_change_time = pdb_get_pass_can_change_time ( hnd ) ;
2003-01-04 11:45:17 +03:00
2004-07-08 02:46:51 +04:00
if ( ( can_change_time ! = 0 ) & & ( time ( NULL ) < can_change_time ) ) {
2003-01-04 11:45:17 +03:00
DEBUG ( 1 , ( " user %s cannot change password now, must wait until %s \n " ,
2004-07-08 02:46:51 +04:00
username , http_timestring ( can_change_time ) ) ) ;
return NT_STATUS_ACCOUNT_RESTRICTION ;
2003-01-04 11:45:17 +03:00
}
2004-10-02 04:13:21 +04:00
/* FIXME: AP_MIN_PASSWORD_LEN and lp_min_passwd_length() need to be merged - gd */
if ( account_policy_get ( AP_MIN_PASSWORD_LEN , & min_len ) & & ( str_charnum ( new_passwd ) < min_len ) ) {
2003-01-04 11:45:17 +03:00
DEBUG ( 1 , ( " user %s cannot change password - password too short \n " ,
2004-07-08 02:46:51 +04:00
username ) ) ;
2003-01-04 11:45:17 +03:00
DEBUGADD ( 1 , ( " account policy min password len = %d \n " , min_len ) ) ;
return NT_STATUS_PASSWORD_RESTRICTION ;
/* return NT_STATUS_PWD_TOO_SHORT; */
}
/* Take the passed information and test it for minimum criteria */
/* Minimum password length */
2004-10-02 04:13:21 +04:00
if ( str_charnum ( new_passwd ) < lp_min_passwd_length ( ) ) {
2003-01-04 11:45:17 +03:00
/* too short, must be at least MINPASSWDLENGTH */
DEBUG ( 1 , ( " Password Change: user %s, New password is shorter than minimum password length = %d \n " ,
2004-07-08 02:46:51 +04:00
username , lp_min_passwd_length ( ) ) ) ;
2003-01-04 11:45:17 +03:00
return NT_STATUS_PASSWORD_RESTRICTION ;
/* return NT_STATUS_PWD_TOO_SHORT; */
}
2004-07-08 02:46:51 +04:00
if ( check_passwd_history ( hnd , new_passwd ) ) {
return NT_STATUS_PASSWORD_RESTRICTION ;
}
pass = Get_Pwnam ( username ) ;
2004-02-02 03:08:35 +03:00
if ( ! pass ) {
2004-07-08 02:46:51 +04:00
DEBUG ( 1 , ( " check_oem_password: Username %s does not exist in system !?! \n " , username ) ) ;
return NT_STATUS_ACCESS_DENIED ;
2004-02-02 03:08:35 +03:00
}
2004-09-14 04:21:11 +04:00
/* Use external script to check password complexity */
2004-09-14 05:11:01 +04:00
if ( lp_check_password_script ( ) & & * ( lp_check_password_script ( ) ) ) {
2004-09-14 04:21:11 +04:00
int check_ret ;
check_ret = smbrunsecret ( lp_check_password_script ( ) , new_passwd ) ;
DEBUG ( 5 , ( " change_oem_password: check password script (%s) returned [%d] \n " , lp_check_password_script ( ) , check_ret ) ) ;
if ( check_ret ! = 0 ) {
DEBUG ( 1 , ( " change_oem_password: check password script said new password is not good enough! \n " ) ) ;
return NT_STATUS_PASSWORD_RESTRICTION ;
}
}
2003-01-04 11:45:17 +03:00
/*
* If unix password sync was requested , attempt to change
* the / etc / passwd database first . Return failure if this cannot
* be done .
*
2003-05-14 04:46:43 +04:00
* This occurs before the oem change , because we don ' t want to
2003-01-04 11:45:17 +03:00
* update it if chgpasswd failed .
*
2003-05-14 04:46:43 +04:00
* Conditional on lp_unix_password_sync ( ) because we don ' t want
2003-01-04 11:45:17 +03:00
* to touch the unix db unless we have admin permission .
*/
2003-05-12 22:12:31 +04:00
if ( lp_unix_password_sync ( ) & &
2004-07-08 02:46:51 +04:00
! chgpasswd ( username , pass , old_passwd , new_passwd , as_root ) ) {
2003-01-04 11:45:17 +03:00
return NT_STATUS_ACCESS_DENIED ;
}
1998-03-18 22:07:53 +03:00
2001-09-29 17:08:26 +04:00
if ( ! pdb_set_plaintext_passwd ( hnd , new_passwd ) ) {
2003-01-04 11:45:17 +03:00
return NT_STATUS_ACCESS_DENIED ;
2001-09-29 17:08:26 +04:00
}
1998-03-18 22:07:53 +03:00
2000-03-22 00:08:07 +03:00
/* Now write it into the file. */
This is another *BIG* change...
Samba now features a pluggable passdb interface, along the same lines as the
one in use in the auth subsystem. In this case, only one backend may be active
at a time by the 'normal' interface, and only one backend per passdb_context is
permitted outside that.
This pluggable interface is designed to allow any number of passdb backends to
be compiled in, with the selection at runtime. The 'passdb backend' paramater
has been created (and documented!) to support this.
As such, configure has been modfied to allow (for example) --with-ldap and the
old smbpasswd to be selected at the same time.
This patch also introduces two new backends: smbpasswd_nua and tdbsam_nua.
These two backends accept 'non unix accounts', where the user does *not* exist
in /etc/passwd. These accounts' don't have UIDs in the unix sense, but to
avoid conflicts in the algroitmic mapping of RIDs, they use the values
specified in the 'non unix account range' paramter - in the same way as the
winbind ranges are specifed.
While I was at it, I cleaned up some of the code in pdb_tdb (code copied
directly from smbpasswd and not really considered properly). Most of this was
to do with % macro expansion on stored data. It isn't easy to get the macros
into the tdb, and the first password change will 'expand' them. tdbsam needs
to use a similar system to pdb_ldap in this regard.
This patch only makes minor adjustments to pdb_nisplus and pdb_ldap, becouse I
don't have the test facilities for these. I plan to incoroprate at least
pdb_ldap into this scheme after consultation with Jerry.
Each (converted) passdb module now no longer has any 'static' variables, and
only exports 1 init function outside its .c file.
The non-unix-account support in this patch has been proven! It is now possible
to join a win2k machine to a Samba PDC without an account in /etc/passwd!
Other changes:
Minor interface adjustments:
pdb_delete_sam_account() now takes a SAM_ACCOUNT, not a char*.
pdb_update_sam_account() no longer takes the 'override' argument that was being
ignored so often (every other passdb backend). Extra checks have been added in
some places.
Minor code changes:
smbpasswd no longer attempts to initialise the passdb at startup, this is
now done on first use.
pdbedit has lost some of its 'machine account' logic, as this behaviour is now
controlled by the passdb subsystem directly.
The samr subsystem no longer calls 'local password change', but does the pdb
interactions directly. This allow the ACB_ flags specifed to be transferred
direct to the backend, without interference.
Doco:
I've updated the doco to reflect some of the changes, and removed some paramters
no longer applicable to HEAD.
(This used to be commit ff354c99c585068af6dc1ff35a1f109a806b326b)
2002-01-20 17:30:58 +03:00
ret = pdb_update_sam_account ( hnd ) ;
1998-03-18 22:07:53 +03:00
2003-01-04 11:45:17 +03:00
if ( ! ret ) {
return NT_STATUS_ACCESS_DENIED ;
}
return NT_STATUS_OK ;
1998-03-18 22:07:53 +03:00
}