This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
Authentication utility functions
Copyright ( C ) Andrew Tridgell 1992 - 1998
Copyright ( C ) Andrew Bartlett 2001
2001-11-04 02:34:24 +03:00
Copyright ( C ) Jeremy Allison 2000 - 2001
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +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 .
*/
2001-10-02 08:29:50 +04:00
# include "includes.h"
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
2001-10-31 13:46:25 +03:00
extern fstring remote_machine ;
extern pstring global_myname ;
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
/****************************************************************************
Create a UNIX user on demand .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-31 13:46:25 +03:00
static int smb_create_user ( const char * unix_user , const char * homedir )
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
{
pstring add_script ;
int ret ;
pstrcpy ( add_script , lp_adduser_script ( ) ) ;
2001-11-04 02:34:24 +03:00
if ( ! * add_script )
return - 1 ;
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
all_string_sub ( add_script , " %u " , unix_user , sizeof ( pstring ) ) ;
if ( homedir )
all_string_sub ( add_script , " %H " , homedir , sizeof ( pstring ) ) ;
ret = smbrun ( add_script , NULL ) ;
DEBUG ( 3 , ( " smb_create_user: Running the command `%s' gave %d \n " , add_script , ret ) ) ;
return ret ;
}
/****************************************************************************
Delete a UNIX user on demand .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-01-02 09:55:21 +03:00
int smb_delete_user ( const char * unix_user )
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
{
pstring del_script ;
int ret ;
pstrcpy ( del_script , lp_deluser_script ( ) ) ;
2001-11-04 02:34:24 +03:00
if ( ! * del_script )
return - 1 ;
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
all_string_sub ( del_script , " %u " , unix_user , sizeof ( pstring ) ) ;
ret = smbrun ( del_script , NULL ) ;
DEBUG ( 3 , ( " smb_delete_user: Running the command `%s' gave %d \n " , del_script , ret ) ) ;
return ret ;
}
/****************************************************************************
2001-09-14 14:38:40 +04:00
Add and Delete UNIX users on demand , based on NTSTATUS codes .
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-31 13:46:25 +03:00
void smb_user_control ( const auth_usersupplied_info * user_info , auth_serversupplied_info * server_info , NTSTATUS nt_status )
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
{
struct passwd * pwd = NULL ;
2001-09-04 11:13:01 +04:00
if ( NT_STATUS_IS_OK ( nt_status ) ) {
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
2001-10-31 13:46:25 +03:00
if ( ! ( server_info - > sam_fill_level & SAM_FILL_UNIX ) ) {
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
/*
2001-10-31 13:46:25 +03:00
* User validated ok against Domain controller .
* If the admin wants us to try and create a UNIX
* user on the fly , do so .
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
*/
2001-10-31 13:46:25 +03:00
if ( lp_adduser_script ( ) & & ! ( pwd = Get_Pwnam ( user_info - > internal_username . str ) ) ) {
smb_create_user ( user_info - > internal_username . str , NULL ) ;
}
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
}
2001-10-31 13:46:25 +03:00
} else if ( NT_STATUS_EQUAL ( nt_status , NT_STATUS_NO_SUCH_USER ) ) {
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
/*
* User failed to validate ok against Domain controller .
* If the failure was " user doesn't exist " and admin
* wants us to try and delete that UNIX user on the fly ,
* do so .
*/
2001-10-31 13:46:25 +03:00
if ( lp_deluser_script ( ) ) {
smb_delete_user ( user_info - > internal_username . str ) ;
}
}
}
/****************************************************************************
Create an auth_usersupplied_data structure
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-11 14:34:46 +03:00
static BOOL make_user_info ( auth_usersupplied_info * * user_info ,
const char * smb_name ,
const char * internal_username ,
const char * client_domain ,
const char * domain ,
const char * wksta_name ,
DATA_BLOB lm_pwd , DATA_BLOB nt_pwd ,
DATA_BLOB plaintext ,
2002-01-11 08:29:09 +03:00
uint32 auth_flags , BOOL encrypted )
2001-10-31 13:46:25 +03:00
{
DEBUG ( 5 , ( " attempting to make a user_info for %s (%s) \n " , internal_username , smb_name ) ) ;
* user_info = malloc ( sizeof ( * * user_info ) ) ;
if ( ! user_info ) {
DEBUG ( 0 , ( " malloc failed for user_info (size %d) \n " , sizeof ( * user_info ) ) ) ;
return False ;
}
ZERO_STRUCTP ( * user_info ) ;
2002-03-01 04:24:30 +03:00
DEBUG ( 5 , ( " making strings for %s's user_info struct \n " , internal_username ) ) ;
2001-10-31 13:46:25 +03:00
( * user_info ) - > smb_name . str = strdup ( smb_name ) ;
if ( ( * user_info ) - > smb_name . str ) {
( * user_info ) - > smb_name . len = strlen ( smb_name ) ;
} else {
free_user_info ( user_info ) ;
return False ;
}
( * user_info ) - > internal_username . str = strdup ( internal_username ) ;
if ( ( * user_info ) - > internal_username . str ) {
( * user_info ) - > internal_username . len = strlen ( internal_username ) ;
} else {
free_user_info ( user_info ) ;
return False ;
}
( * user_info ) - > domain . str = strdup ( domain ) ;
if ( ( * user_info ) - > domain . str ) {
( * user_info ) - > domain . len = strlen ( domain ) ;
} else {
free_user_info ( user_info ) ;
return False ;
}
( * user_info ) - > client_domain . str = strdup ( client_domain ) ;
if ( ( * user_info ) - > client_domain . str ) {
( * user_info ) - > client_domain . len = strlen ( client_domain ) ;
} else {
free_user_info ( user_info ) ;
return False ;
}
( * user_info ) - > wksta_name . str = strdup ( wksta_name ) ;
if ( ( * user_info ) - > wksta_name . str ) {
( * user_info ) - > wksta_name . len = strlen ( wksta_name ) ;
} else {
free_user_info ( user_info ) ;
return False ;
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
}
2001-10-31 13:46:25 +03:00
DEBUG ( 5 , ( " makeing blobs for %s's user_info struct \n " , internal_username ) ) ;
( * user_info ) - > lm_resp = data_blob ( lm_pwd . data , lm_pwd . length ) ;
( * user_info ) - > nt_resp = data_blob ( nt_pwd . data , nt_pwd . length ) ;
( * user_info ) - > plaintext_password = data_blob ( plaintext . data , plaintext . length ) ;
( * user_info ) - > encrypted = encrypted ;
2002-01-11 08:29:09 +03:00
( * user_info ) - > auth_flags = auth_flags ;
2001-10-31 13:46:25 +03:00
DEBUG ( 10 , ( " made an %sencrypted user_info for %s (%s) \n " , encrypted ? " " : " un " , internal_username , smb_name ) ) ;
return True ;
This is my 'Authentication Rewrite' version 1.01, mostly as submitted to
samba-technical a few weeks ago.
The idea here is to standardize the checking of user names and passwords,
thereby ensuring that all authtentications pass the same standards. The
interface currently implemented in as
nt_status = check_password(user_info, server_info)
where user_info contains (mostly) the authentication data, and server_info
contains things like the user-id they got, and their resolved user name.
The current ugliness with the way the structures are created will be killed
the next revision, when they will be created and malloced by creator functions.
This patch also includes the first implementation of NTLMv2 in HEAD, but which
needs some more testing. We also add a hack to allow plaintext passwords to be
compared with smbpasswd, not the system password database.
Finally, this patch probably reintroduces the PAM accounts bug we had in
2.2.0, I'll fix that once this hits the tree. (I've just finished testing
it on a wide variety of platforms, so I want to get this patch in).
(This used to be commit b30b6202f31d339b48d51c0d38174cafd1cfcd42)
2001-08-03 17:09:23 +04:00
}
2001-10-31 13:46:25 +03:00
/****************************************************************************
Create an auth_usersupplied_data structure after appropriate mapping .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL make_user_info_map ( auth_usersupplied_info * * user_info ,
2001-11-11 14:34:46 +03:00
const char * smb_name ,
const char * client_domain ,
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
const char * wksta_name ,
2001-10-31 13:46:25 +03:00
DATA_BLOB lm_pwd , DATA_BLOB nt_pwd ,
DATA_BLOB plaintext ,
uint32 ntlmssp_flags , BOOL encrypted )
{
2001-11-11 14:34:46 +03:00
const char * domain ;
2001-10-31 13:46:25 +03:00
fstring internal_username ;
fstrcpy ( internal_username , smb_name ) ;
map_username ( internal_username ) ;
2002-03-23 12:01:30 +03:00
DEBUG ( 5 , ( " make_user_info_map: Mapping user [%s] \\ [%s] from workstation [%s] \n " ,
client_domain , smb_name , wksta_name ) ) ;
2001-10-31 13:46:25 +03:00
2002-03-13 04:51:01 +03:00
if ( lp_allow_trusted_domains ( ) & & * client_domain ) {
2001-12-19 12:53:30 +03:00
/* the client could have given us a workstation name
or other crap for the workgroup - we really need a
way of telling if this domain name is one of our
trusted domain names
2002-03-13 04:51:01 +03:00
Also don ' t allow " " as a domain , fixes a Win9X bug
where it doens ' t supply a domain for logon script
' net use ' commands .
2001-12-19 12:53:30 +03:00
The way I do it here is by checking if the fully
qualified username exists . This is rather reliant
on winbind , but until we have a better method this
will have to do
*/
2002-01-18 11:12:10 +03:00
domain = client_domain ;
if ( ( smb_name ) & & ( * smb_name ) ) { /* Don't do this for guests */
2002-03-23 12:01:30 +03:00
char * user = NULL ;
if ( asprintf ( & user , " %s%s%s " ,
2002-01-18 11:12:10 +03:00
client_domain , lp_winbind_separator ( ) ,
2002-03-23 12:01:30 +03:00
smb_name ) < 0 ) {
DEBUG ( 0 , ( " make_user_info_map: asprintf() failed! \n " ) ) ;
return False ;
}
DEBUG ( 5 , ( " make_user_info_map: testing for user %s \n " , user ) ) ;
2002-01-18 11:12:10 +03:00
if ( Get_Pwnam ( user ) = = NULL ) {
2002-03-23 12:01:30 +03:00
DEBUG ( 5 , ( " make_user_info_map: test for user %s failed \n " , user ) ) ;
2002-01-18 11:12:10 +03:00
domain = lp_workgroup ( ) ;
2002-03-23 12:01:30 +03:00
DEBUG ( 5 , ( " make_user_info_map: trusted domain %s doesn't appear to exist, using %s \n " ,
client_domain , domain ) ) ;
} else {
DEBUG ( 5 , ( " make_user_info_map: using trusted domain %s \n " , domain ) ) ;
2002-01-18 11:12:10 +03:00
}
2002-03-23 12:01:30 +03:00
SAFE_FREE ( user ) ;
2001-12-19 12:53:30 +03:00
}
2001-10-31 13:46:25 +03:00
} else {
domain = lp_workgroup ( ) ;
}
return make_user_info ( user_info ,
smb_name , internal_username ,
client_domain , domain ,
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
wksta_name ,
2001-10-31 13:46:25 +03:00
lm_pwd , nt_pwd ,
plaintext ,
ntlmssp_flags , encrypted ) ;
}
/****************************************************************************
Create an auth_usersupplied_data , making the DATA_BLOBs here .
2001-11-22 00:10:13 +03:00
Decrypt and encrypt the passwords .
2001-10-31 13:46:25 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL make_user_info_netlogon_network ( auth_usersupplied_info * * user_info ,
2002-01-20 11:58:21 +03:00
const char * smb_name ,
const char * client_domain ,
const char * wksta_name ,
const uchar * lm_network_pwd , int lm_pwd_len ,
const uchar * nt_network_pwd , int nt_pwd_len )
2001-10-31 13:46:25 +03:00
{
BOOL ret ;
DATA_BLOB lm_blob = data_blob ( lm_network_pwd , lm_pwd_len ) ;
DATA_BLOB nt_blob = data_blob ( nt_network_pwd , nt_pwd_len ) ;
DATA_BLOB plaintext_blob = data_blob ( NULL , 0 ) ;
2002-01-11 08:29:09 +03:00
uint32 auth_flags = AUTH_FLAG_NONE ;
2001-10-31 13:46:25 +03:00
if ( lm_pwd_len )
2002-01-11 08:29:09 +03:00
auth_flags | = AUTH_FLAG_LM_RESP ;
2001-11-01 08:02:41 +03:00
if ( nt_pwd_len = = 24 ) {
2002-01-11 08:29:09 +03:00
auth_flags | = AUTH_FLAG_NTLM_RESP ;
2001-11-01 08:02:41 +03:00
} else if ( nt_pwd_len ! = 0 ) {
2002-01-11 08:29:09 +03:00
auth_flags | = AUTH_FLAG_NTLMv2_RESP ;
2001-11-01 08:02:41 +03:00
}
2001-10-31 13:46:25 +03:00
ret = make_user_info_map ( user_info ,
smb_name , client_domain ,
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
wksta_name ,
lm_blob , nt_blob ,
2001-10-31 13:46:25 +03:00
plaintext_blob ,
2002-01-11 08:29:09 +03:00
auth_flags , True ) ;
2001-10-31 13:46:25 +03:00
data_blob_free ( & lm_blob ) ;
data_blob_free ( & nt_blob ) ;
return ret ;
}
/****************************************************************************
Create an auth_usersupplied_data , making the DATA_BLOBs here .
2001-11-22 00:10:13 +03:00
Decrypt and encrypt the passwords .
2001-10-31 13:46:25 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL make_user_info_netlogon_interactive ( auth_usersupplied_info * * user_info ,
2002-01-05 07:55:41 +03:00
const char * smb_name ,
const char * client_domain ,
const char * wksta_name ,
const uchar chal [ 8 ] ,
const uchar lm_interactive_pwd [ 16 ] ,
const uchar nt_interactive_pwd [ 16 ] ,
const uchar * dc_sess_key )
2001-10-31 13:46:25 +03:00
{
char lm_pwd [ 16 ] ;
2001-11-01 08:02:41 +03:00
char nt_pwd [ 16 ] ;
2001-10-31 13:46:25 +03:00
unsigned char local_lm_response [ 24 ] ;
unsigned char local_nt_response [ 24 ] ;
unsigned char key [ 16 ] ;
2002-01-11 08:29:09 +03:00
uint32 auth_flags = AUTH_FLAG_NONE ;
2001-10-31 13:46:25 +03:00
2001-11-01 08:02:41 +03:00
ZERO_STRUCT ( key ) ;
2001-10-31 13:46:25 +03:00
memcpy ( key , dc_sess_key , 8 ) ;
2001-11-01 08:02:41 +03:00
if ( lm_interactive_pwd ) memcpy ( lm_pwd , lm_interactive_pwd , sizeof ( lm_pwd ) ) ;
if ( nt_interactive_pwd ) memcpy ( nt_pwd , nt_interactive_pwd , sizeof ( nt_pwd ) ) ;
2001-10-31 13:46:25 +03:00
# ifdef DEBUG_PASSWORD
DEBUG ( 100 , ( " key: " ) ) ;
2001-11-01 08:02:41 +03:00
dump_data ( 100 , ( char * ) key , sizeof ( key ) ) ;
2001-10-31 13:46:25 +03:00
DEBUG ( 100 , ( " lm owf password: " ) ) ;
2001-11-01 08:02:41 +03:00
dump_data ( 100 , lm_pwd , sizeof ( lm_pwd ) ) ;
2001-10-31 13:46:25 +03:00
DEBUG ( 100 , ( " nt owf password: " ) ) ;
2001-11-01 08:02:41 +03:00
dump_data ( 100 , nt_pwd , sizeof ( nt_pwd ) ) ;
2001-10-31 13:46:25 +03:00
# endif
2001-11-01 08:02:41 +03:00
SamOEMhash ( ( uchar * ) lm_pwd , key , sizeof ( lm_pwd ) ) ;
SamOEMhash ( ( uchar * ) nt_pwd , key , sizeof ( nt_pwd ) ) ;
2001-10-31 13:46:25 +03:00
# ifdef DEBUG_PASSWORD
DEBUG ( 100 , ( " decrypt of lm owf password: " ) ) ;
2001-11-01 08:02:41 +03:00
dump_data ( 100 , lm_pwd , sizeof ( lm_pwd ) ) ;
2001-10-31 13:46:25 +03:00
DEBUG ( 100 , ( " decrypt of nt owf password: " ) ) ;
2001-11-01 08:02:41 +03:00
dump_data ( 100 , nt_pwd , sizeof ( nt_pwd ) ) ;
2001-10-31 13:46:25 +03:00
# endif
SMBOWFencrypt ( ( const unsigned char * ) lm_pwd , chal , local_lm_response ) ;
SMBOWFencrypt ( ( const unsigned char * ) nt_pwd , chal , local_nt_response ) ;
2002-03-25 02:25:05 +03:00
/* Password info paranoia */
2001-10-31 13:46:25 +03:00
ZERO_STRUCT ( lm_pwd ) ;
ZERO_STRUCT ( nt_pwd ) ;
ZERO_STRUCT ( key ) ;
{
BOOL ret ;
DATA_BLOB local_lm_blob = data_blob ( local_lm_response , sizeof ( local_lm_response ) ) ;
DATA_BLOB local_nt_blob = data_blob ( local_nt_response , sizeof ( local_nt_response ) ) ;
DATA_BLOB plaintext_blob = data_blob ( NULL , 0 ) ;
2001-11-01 08:02:41 +03:00
if ( lm_interactive_pwd )
2002-01-11 08:29:09 +03:00
auth_flags | = AUTH_FLAG_LM_RESP ;
2001-11-01 08:02:41 +03:00
if ( nt_interactive_pwd )
2002-01-11 08:29:09 +03:00
auth_flags | = AUTH_FLAG_NTLM_RESP ;
2001-11-01 08:02:41 +03:00
2001-10-31 13:46:25 +03:00
ret = make_user_info_map ( user_info ,
smb_name , client_domain ,
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
wksta_name ,
2001-10-31 13:46:25 +03:00
local_lm_blob ,
2001-10-31 15:07:59 +03:00
local_nt_blob ,
2001-10-31 13:46:25 +03:00
plaintext_blob ,
2002-01-11 08:29:09 +03:00
auth_flags , True ) ;
2001-10-31 13:46:25 +03:00
data_blob_free ( & local_lm_blob ) ;
data_blob_free ( & local_nt_blob ) ;
return ret ;
}
}
/****************************************************************************
Create an auth_usersupplied_data structure
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL make_user_info_for_reply ( auth_usersupplied_info * * user_info ,
2002-01-20 11:58:21 +03:00
const char * smb_name ,
const char * client_domain ,
2002-01-05 07:55:41 +03:00
const uint8 chal [ 8 ] ,
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
DATA_BLOB plaintext_password )
2001-10-31 13:46:25 +03:00
{
DATA_BLOB local_lm_blob ;
DATA_BLOB local_nt_blob ;
BOOL ret = False ;
2002-01-11 08:29:09 +03:00
uint32 auth_flags = AUTH_FLAG_NONE ;
2001-10-31 13:46:25 +03:00
/*
* Not encrypted - do so .
*/
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
DEBUG ( 5 , ( " make_user_info_for_reply: User passwords not in encrypted format. \n " ) ) ;
2001-10-31 13:46:25 +03:00
if ( plaintext_password . data ) {
unsigned char local_lm_response [ 24 ] ;
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
# ifdef DEBUG_PASSWORD
DEBUG ( 10 , ( " Unencrypted password (len %d): \n " , plaintext_password . length ) ) ;
dump_data ( 100 , plaintext_password . data , plaintext_password . length ) ;
# endif
2001-10-31 13:46:25 +03:00
2002-01-05 07:55:41 +03:00
SMBencrypt ( ( const uchar * ) plaintext_password . data , ( const uchar * ) chal , local_lm_response ) ;
2001-10-31 13:46:25 +03:00
local_lm_blob = data_blob ( local_lm_response , 24 ) ;
2001-11-22 00:10:13 +03:00
/* We can't do an NT hash here, as the password needs to be
case insensitive */
2001-10-31 13:46:25 +03:00
local_nt_blob = data_blob ( NULL , 0 ) ;
2002-01-11 08:29:09 +03:00
auth_flags = ( AUTH_FLAG_PLAINTEXT | AUTH_FLAG_LM_RESP ) ;
2001-10-31 13:46:25 +03:00
} else {
local_lm_blob = data_blob ( NULL , 0 ) ;
local_nt_blob = data_blob ( NULL , 0 ) ;
}
ret = make_user_info_map ( user_info , smb_name ,
client_domain ,
remote_machine ,
local_lm_blob ,
local_nt_blob ,
plaintext_password ,
2002-01-11 08:29:09 +03:00
auth_flags , False ) ;
2001-10-31 13:46:25 +03:00
data_blob_free ( & local_lm_blob ) ;
return ret ;
}
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
/****************************************************************************
Create an auth_usersupplied_data structure
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL make_user_info_for_reply_enc ( auth_usersupplied_info * * user_info ,
2002-01-20 11:58:21 +03:00
const char * smb_name ,
const char * client_domain ,
DATA_BLOB lm_resp , DATA_BLOB nt_resp )
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
{
2002-01-11 08:29:09 +03:00
uint32 auth_flags = AUTH_FLAG_NONE ;
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
DATA_BLOB no_plaintext_blob = data_blob ( NULL , 0 ) ;
if ( lm_resp . length = = 24 ) {
2002-01-11 08:29:09 +03:00
auth_flags | = AUTH_FLAG_LM_RESP ;
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
}
if ( nt_resp . length = = 0 ) {
} else if ( nt_resp . length = = 24 ) {
2002-01-11 08:29:09 +03:00
auth_flags | = AUTH_FLAG_NTLM_RESP ;
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
} else {
2002-01-11 08:29:09 +03:00
auth_flags | = AUTH_FLAG_NTLMv2_RESP ;
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
}
return make_user_info_map ( user_info , smb_name ,
client_domain ,
remote_machine ,
lm_resp ,
nt_resp ,
no_plaintext_blob ,
2002-01-11 08:29:09 +03:00
auth_flags , True ) ;
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
}
2001-11-09 01:19:01 +03:00
/****************************************************************************
Create a guest user_info blob , for anonymous authenticaion .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL make_user_info_guest ( auth_usersupplied_info * * user_info )
{
DATA_BLOB lm_blob = data_blob ( NULL , 0 ) ;
DATA_BLOB nt_blob = data_blob ( NULL , 0 ) ;
DATA_BLOB plaintext_blob = data_blob ( NULL , 0 ) ;
2002-01-11 08:29:09 +03:00
uint32 auth_flags = AUTH_FLAG_NONE ;
2001-11-09 01:19:01 +03:00
return make_user_info ( user_info ,
" " , " " ,
" " , " " ,
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
" " ,
2001-11-09 01:19:01 +03:00
nt_blob , lm_blob ,
plaintext_blob ,
2002-01-11 08:29:09 +03:00
auth_flags , True ) ;
2001-11-09 01:19:01 +03:00
}
2001-11-11 14:34:46 +03:00
/***************************************************************************
Make a user_info struct
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-31 13:46:25 +03:00
BOOL make_server_info ( auth_serversupplied_info * * server_info )
{
* server_info = malloc ( sizeof ( * * server_info ) ) ;
if ( ! * server_info ) {
2001-11-11 14:34:46 +03:00
DEBUG ( 0 , ( " make_server_info: malloc failed! \n " ) ) ;
2001-10-31 13:46:25 +03:00
return False ;
}
ZERO_STRUCTP ( * server_info ) ;
return True ;
}
2001-11-11 14:34:46 +03:00
/***************************************************************************
Make ( and fill ) a user_info struct from a SAM_ACCOUNT
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-31 13:46:25 +03:00
BOOL make_server_info_sam ( auth_serversupplied_info * * server_info , SAM_ACCOUNT * sampass )
{
if ( ! make_server_info ( server_info ) ) {
return False ;
}
( * server_info ) - > sam_fill_level = SAM_FILL_ALL ;
( * server_info ) - > sam_account = sampass ;
2001-11-11 14:34:46 +03:00
DEBUG ( 5 , ( " make_server_info_sam: made server info for user %s \n " ,
2001-10-31 13:46:25 +03:00
pdb_get_username ( ( * server_info ) - > sam_account ) ) ) ;
return True ;
}
2001-11-11 14:34:46 +03:00
/***************************************************************************
Make ( and fill ) a user_info struct from a ' struct passwd ' by conversion
to a SAM_ACCOUNT
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
BOOL make_server_info_pw ( auth_serversupplied_info * * server_info , const struct passwd * pwd )
2001-10-31 13:46:25 +03:00
{
SAM_ACCOUNT * sampass = NULL ;
2002-01-15 04:14:58 +03:00
if ( ! NT_STATUS_IS_OK ( pdb_init_sam_pw ( & sampass , pwd ) ) ) {
2001-10-31 13:46:25 +03:00
return False ;
}
return make_server_info_sam ( server_info , sampass ) ;
}
2001-11-11 14:34:46 +03:00
/***************************************************************************
Free a user_info struct
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-31 13:46:25 +03:00
void free_user_info ( auth_usersupplied_info * * user_info )
{
DEBUG ( 5 , ( " attempting to free (and zero) a user_info structure \n " ) ) ;
if ( * user_info ! = NULL ) {
if ( ( * user_info ) - > smb_name . str ) {
DEBUG ( 10 , ( " structure was created for %s \n " , ( * user_info ) - > smb_name . str ) ) ;
}
SAFE_FREE ( ( * user_info ) - > smb_name . str ) ;
SAFE_FREE ( ( * user_info ) - > internal_username . str ) ;
SAFE_FREE ( ( * user_info ) - > client_domain . str ) ;
SAFE_FREE ( ( * user_info ) - > domain . str ) ;
2001-11-27 07:07:57 +03:00
SAFE_FREE ( ( * user_info ) - > wksta_name . str ) ;
2001-10-31 13:46:25 +03:00
data_blob_free ( & ( * user_info ) - > lm_resp ) ;
data_blob_free ( & ( * user_info ) - > nt_resp ) ;
SAFE_FREE ( ( * user_info ) - > interactive_password ) ;
data_blob_clear_free ( & ( * user_info ) - > plaintext_password ) ;
ZERO_STRUCT ( * * user_info ) ;
}
SAFE_FREE ( * user_info ) ;
}
/***************************************************************************
Clear out a server_info struct that has been allocated
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-04 02:34:24 +03:00
2001-10-31 13:46:25 +03:00
void free_server_info ( auth_serversupplied_info * * server_info )
{
if ( * server_info ! = NULL ) {
pdb_free_sam ( & ( * server_info ) - > sam_account ) ;
/* call pam_end here, unless we know we are keeping it */
2001-11-04 02:34:24 +03:00
delete_nt_token ( & ( * server_info ) - > ptok ) ;
2001-10-31 13:46:25 +03:00
ZERO_STRUCT ( * * server_info ) ;
}
SAFE_FREE ( * server_info ) ;
}
/***************************************************************************
Make a server_info struct for a guest user
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-04 02:34:24 +03:00
2001-11-09 01:19:01 +03:00
BOOL make_server_info_guest ( auth_serversupplied_info * * server_info )
2001-10-31 13:46:25 +03:00
{
2002-01-17 11:45:58 +03:00
struct passwd * pass = getpwnam_alloc ( lp_guestaccount ( ) ) ;
2001-10-31 13:46:25 +03:00
if ( pass ) {
2001-11-09 01:19:01 +03:00
if ( ! make_server_info_pw ( server_info , pass ) ) {
2002-01-17 11:45:58 +03:00
passwd_free ( & pass ) ;
2001-11-09 01:19:01 +03:00
return False ;
}
( * server_info ) - > guest = True ;
2002-01-17 11:45:58 +03:00
passwd_free ( & pass ) ;
2001-11-09 01:19:01 +03:00
return True ;
2001-10-31 13:46:25 +03:00
}
2002-01-17 11:45:58 +03:00
DEBUG ( 0 , ( " make_server_info_guest: getpwnam_alloc() failed on guest account! \n " ) ) ;
2001-11-09 01:19:01 +03:00
return False ;
2001-10-31 13:46:25 +03:00
}
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
/***************************************************************************
Make an auth_methods struct
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2002-01-05 07:55:41 +03:00
BOOL make_auth_methods ( struct auth_context * auth_context , auth_methods * * auth_method )
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
{
2002-01-05 07:55:41 +03:00
if ( ! auth_context ) {
smb_panic ( " no auth_context supplied to make_auth_methods()! \n " ) ;
}
if ( ! auth_method ) {
smb_panic ( " make_auth_methods: pointer to auth_method pointer is NULL! \n " ) ;
}
* auth_method = talloc ( auth_context - > mem_ctx , sizeof ( * * auth_method ) ) ;
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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
if ( ! * auth_method ) {
DEBUG ( 0 , ( " make_auth_method: malloc failed! \n " ) ) ;
return False ;
}
ZERO_STRUCTP ( * auth_method ) ;
return True ;
}
2001-11-04 02:34:24 +03:00
/****************************************************************************
Delete a SID token .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void delete_nt_token ( NT_USER_TOKEN * * pptoken )
{
if ( * pptoken ) {
NT_USER_TOKEN * ptoken = * pptoken ;
SAFE_FREE ( ptoken - > user_sids ) ;
ZERO_STRUCTP ( ptoken ) ;
}
SAFE_FREE ( * pptoken ) ;
}
/****************************************************************************
Duplicate a SID token .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NT_USER_TOKEN * dup_nt_token ( NT_USER_TOKEN * ptoken )
{
NT_USER_TOKEN * token ;
if ( ! ptoken )
return NULL ;
if ( ( token = ( NT_USER_TOKEN * ) malloc ( sizeof ( NT_USER_TOKEN ) ) ) = = NULL )
return NULL ;
ZERO_STRUCTP ( token ) ;
if ( ( token - > user_sids = ( DOM_SID * ) memdup ( ptoken - > user_sids , sizeof ( DOM_SID ) * ptoken - > num_sids ) ) = = NULL ) {
SAFE_FREE ( token ) ;
return NULL ;
}
token - > num_sids = ptoken - > num_sids ;
return token ;
}
2002-01-05 07:55:41 +03:00
/**
* Squash an NT_STATUS in line with security requirements .
* In an attempt to avoid giving the whole game away when users
* are authenticating , NT replaces both NT_STATUS_NO_SUCH_USER and
* NT_STATUS_WRONG_PASSWORD with NT_STATUS_LOGON_FAILURE in certain situations
* ( session setups in particular ) .
*
* @ param nt_status NTSTATUS input for squashing .
* @ return the ' squashed ' nt_status
* */
NTSTATUS nt_status_squash ( NTSTATUS nt_status )
{
if NT_STATUS_IS_OK ( nt_status ) {
return nt_status ;
} else if NT_STATUS_EQUAL ( nt_status , NT_STATUS_NO_SUCH_USER ) {
/* Match WinXP and don't give the game away */
return NT_STATUS_LOGON_FAILURE ;
} else if NT_STATUS_EQUAL ( nt_status , NT_STATUS_WRONG_PASSWORD ) {
/* Match WinXP and don't give the game away */
return NT_STATUS_LOGON_FAILURE ;
} else {
return nt_status ;
}
}