/*
Unix SMB / Netbios implementation .
Version 2.2
Password and authentication handling
Copyright ( C ) Andrew Bartlett 2001
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 .
*/
# include "includes.h"
/**
* update the encrypted smbpasswd file from the plaintext username and password
*
* this ugly hack needs to die , but not quite yet , I think people still use it . . .
* */
static BOOL update_smbpassword_file ( char * user , char * password )
{
SAM_ACCOUNT * sampass = NULL ;
BOOL ret ;
pdb_init_sam ( & sampass ) ;
become_root ( ) ;
ret = pdb_getsampwnam ( sampass , user ) ;
unbecome_root ( ) ;
if ( ret = = False ) {
DEBUG ( 0 , ( " pdb_getsampwnam returned NULL \n " ) ) ;
pdb_free_sam ( & sampass ) ;
return False ;
}
/*
* Remove the account disabled flag - we are updating the
* users password from a login .
*/
if ( ! pdb_set_acct_ctrl ( sampass , pdb_get_acct_ctrl ( sampass ) & ~ ACB_DISABLED ) ) {
pdb_free_sam ( & sampass ) ;
return False ;
}
if ( ! pdb_set_plaintext_passwd ( sampass , password ) ) {
pdb_free_sam ( & sampass ) ;
return False ;
}
/* Now write it into the file. */
become_root ( ) ;
/* Here, the override flag is True, because we want to ignore the
XXXXXXX ' d out password */
ret = pdb_update_sam_account ( sampass , True ) ;
unbecome_root ( ) ;
if ( ret ) {
DEBUG ( 3 , ( " pdb_update_sam_account returned %d \n " , ret ) ) ;
}
memset ( password , ' \0 ' , strlen ( password ) ) ;
pdb_free_sam ( & sampass ) ;
return ret ;
}
/** Check a plaintext username/password
*
* Cannot deal with an encrupted password in any manner whatsoever ,
* unless the account has a null password .
* */
This is another rather major change to the samba authenticaion
subystem.
The particular aim is to modularized the interface - so that we
can have arbitrary password back-ends.
This code adds one such back-end, a 'winbind' module to authenticate
against the winbind_auth_crap functionality. While fully-functional
this code is mainly useful as a demonstration, because we don't get
back the info3 as we would for direct ntdomain authentication.
This commit introduced the new 'auth methods' parameter, in the
spirit of the 'auth order' discussed on the lists. It is renamed
because not all the methods may be consulted, even if previous
methods fail - they may not have a suitable challenge for example.
Also, we have a 'local' authentication method, for old-style
'unix if plaintext, sam if encrypted' authentication and a
'guest' module to handle guest logins in a single place.
While this current design is not ideal, I feel that it does
provide a better infrastructure than the current design, and can
be built upon.
The following parameters have changed:
- use rhosts =
This has been replaced by the 'rhosts' authentication method,
and can be specified like 'auth methods = guest rhosts'
- hosts equiv =
This needs both this parameter and an 'auth methods' entry
to be effective. (auth methods = guest hostsequiv ....)
- plaintext to smbpasswd =
This is replaced by specifying 'sam' rather than 'local'
in the auth methods.
The security = parameter is unchanged, and now provides defaults
for the 'auth methods' parameter.
The available auth methods are:
guest
rhosts
hostsequiv
sam (passdb direct hash access)
unix (PAM, crypt() etc)
local (the combination of the above, based on encryption)
smbserver (old security=server)
ntdomain (old security=domain)
winbind (use winbind to cache DC connections)
Assistance in testing, or the production of new and interesting
authentication modules is always appreciated.
Andrew Bartlett
-
NTSTATUS check_unix_security ( void * my_private_data ,
const auth_usersupplied_info * user_info ,
const auth_authsupplied_info * auth_info ,
auth_serversupplied_info * * server_info )
{
NTSTATUS nt_status ;
struct passwd * pass = NULL ;
become_root ( ) ;
pass = Get_Pwnam ( user_info - > internal_username . str ) ;
/** This call assumes a ASCII password, no charset transformation is
done . We may need to revisit this * */
nt_status = pass_check ( pass ,
pass ? pass - > pw_name : user_info - > internal_username . str ,
( char * ) user_info - > plaintext_password . data ,
user_info - > plaintext_password . length - 1 ,
lp_update_encrypted ( ) ?
update_smbpassword_file : NULL ,
True ) ;
unbecome_root ( ) ;
if NT_STATUS_IS_OK ( nt_status ) {
if ( pass ) {
make_server_info_pw ( server_info , pass ) ;
} else {
This is another rather major change to the samba authenticaion
subystem.
The particular aim is to modularized the interface - so that we
can have arbitrary password back-ends.
This code adds one such back-end, a 'winbind' module to authenticate
against the winbind_auth_crap functionality. While fully-functional
this code is mainly useful as a demonstration, because we don't get
back the info3 as we would for direct ntdomain authentication.
This commit introduced the new 'auth methods' parameter, in the
spirit of the 'auth order' discussed on the lists. It is renamed
because not all the methods may be consulted, even if previous
methods fail - they may not have a suitable challenge for example.
Also, we have a 'local' authentication method, for old-style
'unix if plaintext, sam if encrypted' authentication and a
'guest' module to handle guest logins in a single place.
While this current design is not ideal, I feel that it does
provide a better infrastructure than the current design, and can
be built upon.
The following parameters have changed:
- use rhosts =
This has been replaced by the 'rhosts' authentication method,
and can be specified like 'auth methods = guest rhosts'
- hosts equiv =
This needs both this parameter and an 'auth methods' entry
to be effective. (auth methods = guest hostsequiv ....)
- plaintext to smbpasswd =
This is replaced by specifying 'sam' rather than 'local'
in the auth methods.
The security = parameter is unchanged, and now provides defaults
for the 'auth methods' parameter.
The available auth methods are:
guest
rhosts
hostsequiv
sam (passdb direct hash access)
unix (PAM, crypt() etc)
local (the combination of the above, based on encryption)
smbserver (old security=server)
ntdomain (old security=domain)
winbind (use winbind to cache DC connections)
Assistance in testing, or the production of new and interesting
authentication modules is always appreciated.
Andrew Bartlett
-
/* we need to do somthing more useful here */
nt_status = NT_STATUS_NO_SUCH_USER ;
}
}
return nt_status ;
}
This is another rather major change to the samba authenticaion
subystem.
The particular aim is to modularized the interface - so that we
can have arbitrary password back-ends.
This code adds one such back-end, a 'winbind' module to authenticate
against the winbind_auth_crap functionality. While fully-functional
this code is mainly useful as a demonstration, because we don't get
back the info3 as we would for direct ntdomain authentication.
This commit introduced the new 'auth methods' parameter, in the
spirit of the 'auth order' discussed on the lists. It is renamed
because not all the methods may be consulted, even if previous
methods fail - they may not have a suitable challenge for example.
Also, we have a 'local' authentication method, for old-style
'unix if plaintext, sam if encrypted' authentication and a
'guest' module to handle guest logins in a single place.
While this current design is not ideal, I feel that it does
provide a better infrastructure than the current design, and can
be built upon.
The following parameters have changed:
- use rhosts =
This has been replaced by the 'rhosts' authentication method,
and can be specified like 'auth methods = guest rhosts'
- hosts equiv =
This needs both this parameter and an 'auth methods' entry
to be effective. (auth methods = guest hostsequiv ....)
- plaintext to smbpasswd =
This is replaced by specifying 'sam' rather than 'local'
in the auth methods.
The security = parameter is unchanged, and now provides defaults
for the 'auth methods' parameter.
The available auth methods are:
guest
rhosts
hostsequiv
sam (passdb direct hash access)
unix (PAM, crypt() etc)
local (the combination of the above, based on encryption)
smbserver (old security=server)
ntdomain (old security=domain)
winbind (use winbind to cache DC connections)
Assistance in testing, or the production of new and interesting
authentication modules is always appreciated.
Andrew Bartlett
-
BOOL auth_init_unix ( auth_methods * * auth_method )
{
if ( ! make_auth_methods ( auth_method ) ) {
return False ;
}
( * auth_method ) - > auth = check_unix_security ;
return True ;
}