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
Password and authentication handling
2002-01-05 07:55:41 +03:00
Copyright ( C ) Andrew Bartlett 2001 - 2002
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 .
*/
# include "includes.h"
2002-07-15 14:35:28 +04:00
# undef DBGC_CLASS
# define DBGC_CLASS DBGC_AUTH
2002-01-05 07:55:41 +03:00
2003-04-16 16:13:07 +04:00
static struct auth_init_function_entry * backends = NULL ;
2003-04-28 21:48:48 +04:00
static struct auth_init_function_entry * auth_find_backend_entry ( const char * name ) ;
2003-05-01 03:06:44 +04:00
NTSTATUS smb_register_auth ( int version , const char * name , auth_init_function init )
2003-04-16 16:13:07 +04:00
{
struct auth_init_function_entry * entry = backends ;
2003-04-28 21:48:48 +04:00
if ( version ! = AUTH_INTERFACE_VERSION ) {
DEBUG ( 0 , ( " Can't register auth_method! \n "
" You tried to register an auth module with AUTH_INTERFACE_VERSION %d, while this version of samba uses %d \n " ,
version , AUTH_INTERFACE_VERSION ) ) ;
return NT_STATUS_OBJECT_TYPE_MISMATCH ;
}
if ( ! name | | ! init ) {
return NT_STATUS_INVALID_PARAMETER ;
}
2003-04-16 16:13:07 +04:00
DEBUG ( 5 , ( " Attempting to register auth backend %s \n " , name ) ) ;
2003-04-28 21:48:48 +04:00
if ( auth_find_backend_entry ( name ) ) {
DEBUG ( 0 , ( " There already is an auth method registered with the name %s! \n " , name ) ) ;
return NT_STATUS_OBJECT_NAME_COLLISION ;
2003-04-16 16:13:07 +04:00
}
entry = smb_xmalloc ( sizeof ( struct auth_init_function_entry ) ) ;
entry - > name = smb_xstrdup ( name ) ;
entry - > init = init ;
DLIST_ADD ( backends , entry ) ;
2003-04-28 21:48:48 +04:00
DEBUG ( 5 , ( " Successfully added auth method '%s' \n " , name ) ) ;
return NT_STATUS_OK ;
2003-04-16 16:13:07 +04:00
}
static struct auth_init_function_entry * auth_find_backend_entry ( const char * name )
{
struct auth_init_function_entry * entry = backends ;
while ( entry ) {
2003-05-16 10:20:57 +04:00
if ( strcmp ( entry - > name , name ) = = 0 ) return entry ;
2003-04-16 16:13:07 +04:00
entry = entry - > next ;
}
return NULL ;
}
2002-01-05 07:55:41 +03:00
/****************************************************************************
2002-07-15 14:35:28 +04:00
Try to get a challenge out of the various authentication modules .
2002-01-05 07:55:41 +03:00
Returns a const char of length 8 bytes .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static const uint8 * get_ntlm_challenge ( struct auth_context * auth_context )
{
DATA_BLOB challenge = data_blob ( NULL , 0 ) ;
2003-01-03 11:28:12 +03:00
const char * challenge_set_by = NULL ;
2002-01-05 07:55:41 +03:00
auth_methods * auth_method ;
TALLOC_CTX * mem_ctx ;
if ( auth_context - > challenge . length ) {
2003-01-28 15:07:02 +03:00
DEBUG ( 5 , ( " get_ntlm_challenge (auth subsystem): returning previous challenge by module %s (normal) \n " ,
auth_context - > challenge_set_by ) ) ;
2002-01-05 07:55:41 +03:00
return auth_context - > challenge . data ;
}
Changes all over the shop, but all towards:
- NTLM2 support in the server
- KEY_EXCH support in the server
- variable length session keys.
In detail:
- NTLM2 is an extension of NTLMv1, that is compatible with existing
domain controllers (unlike NTLMv2, which requires a DC upgrade).
* This is known as 'NTLMv2 session security' *
(This is not yet implemented on the RPC pipes however, so there may
well still be issues for PDC setups, particuarly around password
changes. We do not fully understand the sign/seal implications of
NTLM2 on RPC pipes.)
This requires modifications to our authentication subsystem, as we
must handle the 'challege' input into the challenge-response algorithm
being changed. This also needs to be turned off for
'security=server', which does not support this.
- KEY_EXCH is another 'security' mechanism, whereby the session key
actually used by the server is sent by the client, rather than being
the shared-secret directly or indirectly.
- As both these methods change the session key, the auth subsystem
needed to be changed, to 'override' session keys provided by the
backend.
- There has also been a major overhaul of the NTLMSSP subsystem, to merge the 'client' and 'server' functions, so they both operate on a single structure. This should help the SPNEGO implementation.
- The 'names blob' in NTLMSSP is always in unicode - never in ascii.
Don't make an ascii version ever.
- The other big change is to allow variable length session keys. We
have always assumed that session keys are 16 bytes long - and padded
to this length if shorter. However, Kerberos session keys are 8 bytes
long, when the krb5 login uses DES.
* This fix allows SMB signging on machines not yet running MIT KRB5 1.3.1. *
- Add better DEBUG() messages to ntlm_auth, warning administrators of
misconfigurations that prevent access to the privileged pipe. This
should help reduce some of the 'it just doesn't work' issues.
- Fix data_blob_talloc() to behave the same way data_blob() does when
passed a NULL data pointer. (just allocate)
REMEMBER to make clean after this commit - I have changed plenty of data structures...
(This used to be commit f3bbc87b0dac63426cda6fac7a295d3aad810ecc)
2003-11-22 16:19:38 +03:00
auth_context - > challenge_may_be_modified = False ;
2002-12-12 02:54:40 +03:00
for ( auth_method = auth_context - > auth_method_list ; auth_method ; auth_method = auth_method - > next ) {
2002-01-05 07:55:41 +03:00
if ( auth_method - > get_chal = = NULL ) {
DEBUG ( 5 , ( " auth_get_challenge: module %s did not want to specify a challenge \n " , auth_method - > name ) ) ;
continue ;
}
DEBUG ( 5 , ( " auth_get_challenge: getting challenge from module %s \n " , auth_method - > name ) ) ;
if ( challenge_set_by ! = NULL ) {
2002-07-15 14:35:28 +04:00
DEBUG ( 1 , ( " auth_get_challenge: CONFIGURATION ERROR: authentication method %s has already specified a challenge. Challenge by %s ignored. \n " ,
2002-01-05 07:55:41 +03:00
challenge_set_by , auth_method - > name ) ) ;
continue ;
}
2002-12-20 23:21:31 +03:00
mem_ctx = talloc_init ( " auth_get_challenge for module %s " , auth_method - > name ) ;
2002-01-05 07:55:41 +03:00
if ( ! mem_ctx ) {
2002-12-20 23:21:31 +03:00
smb_panic ( " talloc_init() failed! " ) ;
2002-01-05 07:55:41 +03:00
}
challenge = auth_method - > get_chal ( auth_context , & auth_method - > private_data , mem_ctx ) ;
if ( ! challenge . length ) {
2002-07-15 14:35:28 +04:00
DEBUG ( 3 , ( " auth_get_challenge: getting challenge from authentication method %s FAILED. \n " ,
2002-01-05 07:55:41 +03:00
auth_method - > name ) ) ;
} else {
DEBUG ( 5 , ( " auth_get_challenge: sucessfully got challenge from module %s \n " , auth_method - > name ) ) ;
auth_context - > challenge = challenge ;
challenge_set_by = auth_method - > name ;
auth_context - > challenge_set_method = auth_method ;
}
talloc_destroy ( mem_ctx ) ;
}
if ( ! challenge_set_by ) {
uchar chal [ 8 ] ;
generate_random_buffer ( chal , sizeof ( chal ) , False ) ;
auth_context - > challenge = data_blob_talloc ( auth_context - > mem_ctx ,
chal , sizeof ( chal ) ) ;
challenge_set_by = " random " ;
Changes all over the shop, but all towards:
- NTLM2 support in the server
- KEY_EXCH support in the server
- variable length session keys.
In detail:
- NTLM2 is an extension of NTLMv1, that is compatible with existing
domain controllers (unlike NTLMv2, which requires a DC upgrade).
* This is known as 'NTLMv2 session security' *
(This is not yet implemented on the RPC pipes however, so there may
well still be issues for PDC setups, particuarly around password
changes. We do not fully understand the sign/seal implications of
NTLM2 on RPC pipes.)
This requires modifications to our authentication subsystem, as we
must handle the 'challege' input into the challenge-response algorithm
being changed. This also needs to be turned off for
'security=server', which does not support this.
- KEY_EXCH is another 'security' mechanism, whereby the session key
actually used by the server is sent by the client, rather than being
the shared-secret directly or indirectly.
- As both these methods change the session key, the auth subsystem
needed to be changed, to 'override' session keys provided by the
backend.
- There has also been a major overhaul of the NTLMSSP subsystem, to merge the 'client' and 'server' functions, so they both operate on a single structure. This should help the SPNEGO implementation.
- The 'names blob' in NTLMSSP is always in unicode - never in ascii.
Don't make an ascii version ever.
- The other big change is to allow variable length session keys. We
have always assumed that session keys are 16 bytes long - and padded
to this length if shorter. However, Kerberos session keys are 8 bytes
long, when the krb5 login uses DES.
* This fix allows SMB signging on machines not yet running MIT KRB5 1.3.1. *
- Add better DEBUG() messages to ntlm_auth, warning administrators of
misconfigurations that prevent access to the privileged pipe. This
should help reduce some of the 'it just doesn't work' issues.
- Fix data_blob_talloc() to behave the same way data_blob() does when
passed a NULL data pointer. (just allocate)
REMEMBER to make clean after this commit - I have changed plenty of data structures...
(This used to be commit f3bbc87b0dac63426cda6fac7a295d3aad810ecc)
2003-11-22 16:19:38 +03:00
auth_context - > challenge_may_be_modified = True ;
2002-01-05 07:55:41 +03:00
}
DEBUG ( 5 , ( " auth_context challenge created by %s \n " , challenge_set_by ) ) ;
DEBUG ( 5 , ( " challenge is: \n " ) ) ;
2003-08-15 08:42:05 +04:00
dump_data ( 5 , ( const char * ) auth_context - > challenge . data , auth_context - > challenge . length ) ;
2002-01-05 07:55:41 +03:00
SMB_ASSERT ( auth_context - > challenge . length = = 8 ) ;
auth_context - > challenge_set_by = challenge_set_by ;
return auth_context - > challenge . data ;
}
2001-12-30 13:54:58 +03:00
/**
* Check user is in correct domain ( if required )
*
* @ param user Only used to fill in the debug message
*
* @ param domain The domain to be verified
*
* @ return True if the user can connect with that domain ,
* False otherwise .
* */
static BOOL check_domain_match ( const char * user , const char * domain )
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-12-19 12:53:30 +03:00
/*
* If we aren ' t serving to trusted domains , we must make sure that
* the validation request comes from an account in the same domain
* as the Samba server
*/
if ( ! lp_allow_trusted_domains ( ) & &
! ( strequal ( " " , domain ) | |
strequal ( lp_workgroup ( ) , domain ) | |
2002-11-13 02:20:50 +03:00
is_myname ( domain ) ) ) {
2001-12-19 12:53:30 +03:00
DEBUG ( 1 , ( " check_domain_match: Attempt to connect as user %s from domain %s denied. \n " , user , domain ) ) ;
return False ;
} else {
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-12-30 13:54:58 +03:00
/**
* Check a user ' s Plaintext , LM or NTLM password .
*
* Check a user ' s password , as given in the user_info struct and return various
* interesting details in the server_info struct .
*
* This function does NOT need to be in a become_root ( ) / unbecome_root ( ) pair
* as it makes the calls itself when needed .
*
* The return value takes precedence over the contents of the server_info
* struct . When the return is other than NT_STATUS_OK the contents
* of that structure is undefined .
*
* @ param user_info Contains the user supplied components , including the passwords .
* Must be created with make_user_info ( ) or one of its wrappers .
*
2003-03-18 01:43:57 +03:00
* @ param auth_context Supplies the challenges and some other data .
* Must be created with make_auth_context ( ) , and the challenges should be
2002-01-21 01:50:23 +03:00
* filled in , either at creation or by calling the challenge geneation
* function auth_get_challenge ( ) .
2001-12-30 13:54:58 +03:00
*
2002-07-15 14:35:28 +04:00
* @ param server_info If successful , contains information about the authentication ,
2001-12-30 13:54:58 +03:00
* including a SAM_ACCOUNT struct describing the user .
*
* @ return An NTSTATUS with NT_STATUS_OK or an appropriate error .
*
* */
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-05 07:55:41 +03:00
static NTSTATUS check_ntlm_password ( const struct auth_context * auth_context ,
const struct auth_usersupplied_info * user_info ,
struct auth_serversupplied_info * * server_info )
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
{
2003-07-03 18:36:42 +04:00
/* if all the modules say 'not for me' this is reasonable */
NTSTATUS nt_status = NT_STATUS_NO_SUCH_USER ;
2003-07-05 12:05:06 +04:00
const char * unix_username ;
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
auth_methods * auth_method ;
2002-01-01 06:10:32 +03:00
TALLOC_CTX * mem_ctx ;
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-12-12 02:54:40 +03:00
if ( ! user_info | | ! auth_context | | ! server_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
return NT_STATUS_LOGON_FAILURE ;
2001-10-31 13:46:25 +03:00
2002-12-12 02:54:40 +03:00
DEBUG ( 3 , ( " check_ntlm_password: Checking password for unmapped user [%s] \\ [%s]@[%s] with the new password interface \n " ,
2001-11-09 01:19:01 +03:00
user_info - > client_domain . str , user_info - > smb_name . str , user_info - > wksta_name . str ) ) ;
2002-12-12 02:54:40 +03:00
DEBUG ( 3 , ( " check_ntlm_password: mapped user is: [%s] \\ [%s]@[%s] \n " ,
2001-11-09 01:19:01 +03:00
user_info - > domain . str , user_info - > internal_username . str , user_info - > wksta_name . str ) ) ;
2003-01-28 15:07:02 +03:00
if ( auth_context - > challenge . length ! = 8 ) {
DEBUG ( 0 , ( " check_ntlm_password: Invalid challenge stored for this auth context - cannot continue \n " ) ) ;
return NT_STATUS_LOGON_FAILURE ;
}
2002-12-12 02:54:40 +03:00
if ( auth_context - > challenge_set_by )
DEBUG ( 10 , ( " check_ntlm_password: auth_context challenge created by %s \n " ,
auth_context - > challenge_set_by ) ) ;
2001-11-26 07:05:28 +03:00
DEBUG ( 10 , ( " challenge is: \n " ) ) ;
2003-08-15 08:42:05 +04:00
dump_data ( 5 , ( const char * ) auth_context - > challenge . data , auth_context - > challenge . length ) ;
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 ( 100 , ( " user_info has passwords of length %d and %d \n " ,
user_info - > lm_resp . length , user_info - > nt_resp . length ) ) ;
DEBUG ( 100 , ( " lm: \n " ) ) ;
dump_data ( 100 , user_info - > lm_resp . data , user_info - > lm_resp . length ) ;
DEBUG ( 100 , ( " nt: \n " ) ) ;
dump_data ( 100 , user_info - > nt_resp . data , user_info - > nt_resp . length ) ;
# endif
2001-12-30 13:54:58 +03:00
/* This needs to be sorted: If it doesn't match, what should we do? */
2002-12-12 02:54:40 +03:00
if ( ! check_domain_match ( user_info - > smb_name . str , user_info - > domain . str ) )
2001-12-30 13:54:58 +03:00
return NT_STATUS_LOGON_FAILURE ;
2002-12-12 02:54:40 +03:00
for ( auth_method = auth_context - > auth_method_list ; auth_method ; auth_method = auth_method - > next ) {
2003-06-28 12:29:42 +04:00
NTSTATUS result ;
2002-12-20 23:21:31 +03:00
mem_ctx = talloc_init ( " %s authentication for user %s \\ %s " , auth_method - > name ,
2002-01-01 06:10:32 +03:00
user_info - > domain . str , user_info - > smb_name . str ) ;
2003-06-28 12:29:42 +04:00
result = auth_method - > auth ( auth_context , auth_method - > private_data , mem_ctx , user_info , server_info ) ;
/* check if the module did anything */
if ( NT_STATUS_V ( result ) = = NT_STATUS_V ( NT_STATUS_NOT_IMPLEMENTED ) ) {
DEBUG ( 10 , ( " check_ntlm_password: %s had nothing to say \n " , auth_method - > name ) ) ;
talloc_destroy ( mem_ctx ) ;
continue ;
}
nt_status = result ;
2001-11-09 01:19:01 +03:00
if ( NT_STATUS_IS_OK ( nt_status ) ) {
2003-06-23 22:27:59 +04:00
DEBUG ( 3 , ( " check_ntlm_password: %s authentication for user [%s] succeeded \n " ,
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
auth_method - > name , user_info - > smb_name . str ) ) ;
2001-11-09 01:19:01 +03:00
} else {
2002-12-12 02:54:40 +03:00
DEBUG ( 5 , ( " check_ntlm_password: %s authentication for user [%s] FAILED with error %s \n " ,
2002-03-17 07:36:35 +03:00
auth_method - > name , user_info - > smb_name . str , nt_errstr ( 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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
}
2002-01-01 06:10:32 +03:00
talloc_destroy ( mem_ctx ) ;
2003-07-03 18:36:42 +04:00
if ( NT_STATUS_IS_OK ( nt_status ) )
Here's the code to make winbindd work on a Samba DC
to handle domain trusts. Jeremy and I talked about this
and it's going in as working code. It keeps winbind clean
and solves the trust problem with minimal changes.
To summarize, there are 2 basic cases where the deadlock would
occur. (1) lookuping up secondary groups for a user, and
(2) get[gr|pw]nam() calls that fall through the NSS layer because
they don't exist anywhere.
o To handle case #1, we bypass winbindd in sys_getgrouplist() unless
the username includes the 'winbind separator'.
o Case #2 is handled by adding checks in winbindd to return failure
if we are a DC and the domain matches our own.
This code has been tested using basic share connections, domain
logons, and with pam_winbind (both with and without 'winbind
use default domain'). The 'trustdomain' auth module should work
as well if an admin wants to manually create UNIX users for
acounts in the trusted domains.
Other misc fixes:
* we need to fix check_ntlm_password() to be able to determine
if an auth module is authoritative over a user (NT_STATUS_WRONG_PASSWORD,
etc...). I worked around my specific situation, but this needs to be
fixed. the winbindd auth module was causing delays.
* fix named server mutex deadlock between trust domain auth module
and winbindd looking up a uid
* make sure SAM_ACCOUNT gets stored in the server_info struct for the
_net_sam_logon() reply.
Configuration details:
The recommended method for supporting trusts is to use winbind.
The gets us around some of the server mutex issues as well.
* set 'files winbind' for passwd: and group: in /etc/nsswitch.conf
* create domain trusts like normal
* join winbind on the pdc to the Samba domain using 'net rpc join'
* add normal parameters to smb.conf for winbind
* set 'auth method = guest sam winbind'
* start smbd, nmbd, & winbindd
Problems that remain:
* join a Windows 2k/XP box to a Samba domain.
* create a 2-way trust between the Samba domain
and an NT domain
* logon to the windows client as a user from theh trusted
domain
* try to browse server in the trusted domain (or other
workstations). an NT client seems to work ok, but 2k
and XP either prompt for passwords or fail with errors.
apparanently this never got tested since no one has ever been
able to logon as a trusted user to a Samba domain from a Windows
client.
(This used to be commit f804b590f9dbf1f0147c06a0a2f12e221ae6fc3b)
2003-06-29 07:39:50 +04:00
{
break ;
}
2001-11-09 01:19:01 +03:00
}
2001-10-31 13:46:25 +03:00
2001-11-09 01:19:01 +03:00
if ( NT_STATUS_IS_OK ( nt_status ) ) {
2003-07-05 12:05:06 +04:00
unix_username = ( * server_info ) - > unix_name ;
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 ( ! ( * server_info ) - > guest ) {
2001-11-09 01:19:01 +03:00
/* We might not be root if we are an RPC call */
become_root ( ) ;
2003-07-05 12:05:06 +04:00
nt_status = smb_pam_accountcheck ( unix_username ) ;
2001-11-09 01:19:01 +03:00
unbecome_root ( ) ;
2001-10-31 13:46:25 +03:00
2001-11-09 01:19:01 +03:00
if ( NT_STATUS_IS_OK ( nt_status ) ) {
2003-07-01 09:45:16 +04:00
DEBUG ( 5 , ( " check_ntlm_password: PAM Account for user [%s] succeeded \n " ,
2003-07-05 12:05:06 +04:00
unix_username ) ) ;
2001-11-09 01:19:01 +03:00
} else {
2002-12-12 02:54:40 +03:00
DEBUG ( 3 , ( " check_ntlm_password: PAM Account for user [%s] FAILED with error %s \n " ,
2003-07-05 12:05:06 +04:00
unix_username , nt_errstr ( nt_status ) ) ) ;
2001-11-09 01:19:01 +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
if ( NT_STATUS_IS_OK ( nt_status ) ) {
DEBUG ( ( * server_info ) - > guest ? 5 : 2 ,
2003-07-01 09:45:16 +04:00
( " check_ntlm_password: %sauthentication for user [%s] -> [%s] -> [%s] succeeded \n " ,
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
( * server_info ) - > guest ? " guest " : " " ,
user_info - > smb_name . str ,
user_info - > internal_username . str ,
2003-07-05 12:05:06 +04:00
unix_username ) ) ;
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-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
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
2002-12-12 02:54:40 +03:00
DEBUG ( 2 , ( " check_ntlm_password: Authentication for user [%s] -> [%s] FAILED with error %s \n " ,
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
user_info - > smb_name . str , user_info - > internal_username . str ,
2002-03-17 07:36:35 +03:00
nt_errstr ( nt_status ) ) ) ;
2001-10-31 13:46:25 +03:00
ZERO_STRUCTP ( server_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
}
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
return nt_status ;
}
2002-01-05 07:55:41 +03:00
/***************************************************************************
Clear out a auth_context , and destroy the attached TALLOC_CTX
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
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-05 07:55:41 +03:00
static void free_auth_context ( struct auth_context * * auth_context )
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-12-12 02:54:40 +03:00
if ( * auth_context ! = NULL )
2002-01-05 07:55:41 +03:00
talloc_destroy ( ( * auth_context ) - > mem_ctx ) ;
* auth_context = NULL ;
2001-10-31 13:46:25 +03:00
}
2001-09-29 17:08:26 +04:00
2002-01-05 07:55:41 +03:00
/***************************************************************************
Make a auth_info struct
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
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-05 07:55:41 +03:00
static NTSTATUS make_auth_context ( struct auth_context * * auth_context )
{
TALLOC_CTX * mem_ctx ;
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-12-20 23:21:31 +03:00
mem_ctx = talloc_init ( " authentication context " ) ;
2002-01-05 07:55:41 +03:00
* auth_context = talloc ( mem_ctx , sizeof ( * * auth_context ) ) ;
if ( ! * auth_context ) {
DEBUG ( 0 , ( " make_auth_context: talloc failed! \n " ) ) ;
talloc_destroy ( mem_ctx ) ;
return NT_STATUS_NO_MEMORY ;
}
ZERO_STRUCTP ( * auth_context ) ;
2001-10-31 09:20:58 +03:00
2002-01-05 07:55:41 +03:00
( * auth_context ) - > mem_ctx = mem_ctx ;
( * auth_context ) - > check_ntlm_password = check_ntlm_password ;
( * auth_context ) - > get_ntlm_challenge = get_ntlm_challenge ;
( * auth_context ) - > free = free_auth_context ;
return NT_STATUS_OK ;
}
2001-10-31 09:20:58 +03:00
2003-04-24 15:56:09 +04:00
BOOL load_auth_module ( struct auth_context * auth_context ,
const char * module , auth_methods * * ret )
{
static BOOL initialised_static_modules = False ;
struct auth_init_function_entry * entry ;
char * module_name = smb_xstrdup ( module ) ;
char * module_params = NULL ;
char * p ;
BOOL good = False ;
/* Initialise static modules if not done so yet */
if ( ! initialised_static_modules ) {
static_init_auth ;
initialised_static_modules = True ;
}
DEBUG ( 5 , ( " load_auth_module: Attempting to find an auth method to match %s \n " ,
module ) ) ;
p = strchr ( module_name , ' : ' ) ;
if ( p ) {
* p = 0 ;
module_params = p + 1 ;
2003-09-05 23:59:55 +04:00
trim_char ( module_params , ' ' , ' ' ) ;
2003-04-24 15:56:09 +04:00
}
2003-09-05 23:59:55 +04:00
trim_char ( module_name , ' ' , ' ' ) ;
2003-04-24 15:56:09 +04:00
entry = auth_find_backend_entry ( module_name ) ;
2003-05-15 12:47:28 +04:00
if ( entry = = NULL ) {
if ( NT_STATUS_IS_OK ( smb_probe_module ( " auth " , module_name ) ) ) {
entry = auth_find_backend_entry ( module_name ) ;
}
}
if ( entry ! = NULL ) {
if ( ! NT_STATUS_IS_OK ( entry - > init ( auth_context , module_params , ret ) ) ) {
DEBUG ( 0 , ( " load_auth_module: auth method %s did not correctly init \n " ,
module_name ) ) ;
} else {
DEBUG ( 5 , ( " load_auth_module: auth method %s has a valid init \n " ,
module_name ) ) ;
good = True ;
}
2003-04-24 15:56:09 +04:00
} else {
2003-05-15 12:47:28 +04:00
DEBUG ( 0 , ( " load_auth_module: can't find auth method %s! \n " , module_name ) ) ;
2003-04-24 15:56:09 +04:00
}
2003-05-15 12:47:28 +04:00
2003-04-24 15:56:09 +04:00
SAFE_FREE ( module_name ) ;
return good ;
}
2002-01-05 07:55:41 +03:00
/***************************************************************************
Make a auth_info struct for the auth subsystem
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
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-05 07:55:41 +03:00
static NTSTATUS make_auth_context_text_list ( struct auth_context * * auth_context , char * * text_list )
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-05 07:55:41 +03:00
auth_methods * list = NULL ;
auth_methods * t = NULL ;
auth_methods * tmp ;
2001-10-31 13:46:25 +03:00
NTSTATUS 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
(This used to be commit 8d31eae52a9757739711dbb82035a4dfe6b40c99)
2001-11-24 15:12:38 +03:00
2002-01-05 07:55:41 +03:00
if ( ! text_list ) {
2002-12-12 02:54:40 +03:00
DEBUG ( 2 , ( " make_auth_context_text_list: No auth method list!? \n " ) ) ;
2002-01-05 07:55:41 +03:00
return NT_STATUS_UNSUCCESSFUL ;
}
2002-12-12 02:54:40 +03:00
if ( ! NT_STATUS_IS_OK ( nt_status = make_auth_context ( auth_context ) ) )
2002-01-05 07:55:41 +03:00
return nt_status ;
2003-04-16 16:13:07 +04:00
2002-12-12 02:54:40 +03:00
for ( ; * text_list ; text_list + + ) {
2003-04-24 15:56:09 +04:00
if ( load_auth_module ( * auth_context , * text_list , & t ) ) {
DLIST_ADD_END ( list , t , tmp ) ;
}
2002-01-05 07:55:41 +03:00
}
( * auth_context ) - > auth_method_list = list ;
2001-10-31 13:46:25 +03:00
return 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
}
2002-01-05 07:55:41 +03:00
/***************************************************************************
Make a auth_context struct for the auth subsystem
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NTSTATUS make_auth_context_subsystem ( struct auth_context * * auth_context )
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-05 07:55:41 +03:00
char * * auth_method_list = NULL ;
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
2002-07-15 14:35:28 +04:00
if ( lp_auth_methods ( ) & & ! str_list_copy ( & auth_method_list , lp_auth_methods ( ) ) ) {
2002-01-05 07:55:41 +03:00
return NT_STATUS_NO_MEMORY ;
}
if ( auth_method_list = = NULL ) {
switch ( lp_security ( ) )
{
case SEC_DOMAIN :
DEBUG ( 5 , ( " Making default auth method list for security=domain \n " ) ) ;
2003-04-24 15:56:09 +04:00
auth_method_list = str_list_make ( " guest sam winbind:ntdomain " , NULL ) ;
2002-01-05 07:55:41 +03:00
break ;
case SEC_SERVER :
DEBUG ( 5 , ( " Making default auth method list for security=server \n " ) ) ;
2002-08-17 21:00:51 +04:00
auth_method_list = str_list_make ( " guest sam smbserver " , NULL ) ;
2002-01-05 07:55:41 +03:00
break ;
case SEC_USER :
if ( lp_encrypted_passwords ( ) ) {
2003-07-03 18:36:42 +04:00
if ( ( lp_server_role ( ) = = ROLE_DOMAIN_PDC ) | | ( lp_server_role ( ) = = ROLE_DOMAIN_BDC ) ) {
DEBUG ( 5 , ( " Making default auth method list for DC, security=user, encrypt passwords = yes \n " ) ) ;
auth_method_list = str_list_make ( " guest sam winbind:trustdomain " , NULL ) ;
} else {
DEBUG ( 5 , ( " Making default auth method list for standalone security=user, encrypt passwords = yes \n " ) ) ;
auth_method_list = str_list_make ( " guest sam " , NULL ) ;
}
2002-01-05 07:55:41 +03:00
} else {
DEBUG ( 5 , ( " Making default auth method list for security=user, encrypt passwords = no \n " ) ) ;
2002-08-17 21:00:51 +04:00
auth_method_list = str_list_make ( " guest unix " , NULL ) ;
2002-01-05 07:55:41 +03:00
}
break ;
case SEC_SHARE :
if ( lp_encrypted_passwords ( ) ) {
DEBUG ( 5 , ( " Making default auth method list for security=share, encrypt passwords = yes \n " ) ) ;
2002-08-17 21:00:51 +04:00
auth_method_list = str_list_make ( " guest sam " , NULL ) ;
2002-01-05 07:55:41 +03:00
} else {
DEBUG ( 5 , ( " Making default auth method list for security=share, encrypt passwords = no \n " ) ) ;
2002-08-17 21:00:51 +04:00
auth_method_list = str_list_make ( " guest unix " , NULL ) ;
2002-01-05 07:55:41 +03:00
}
break ;
case SEC_ADS :
DEBUG ( 5 , ( " Making default auth method list for security=ADS \n " ) ) ;
2003-04-24 15:56:09 +04:00
auth_method_list = str_list_make ( " guest sam winbind:ntdomain " , NULL ) ;
2002-01-05 07:55:41 +03:00
break ;
default :
DEBUG ( 5 , ( " Unknown auth method! \n " ) ) ;
return NT_STATUS_UNSUCCESSFUL ;
2001-10-31 13:46:25 +03:00
}
} else {
2002-01-05 07:55:41 +03:00
DEBUG ( 5 , ( " Using specified auth order \n " ) ) ;
}
if ( ! NT_STATUS_IS_OK ( nt_status = make_auth_context_text_list ( auth_context , auth_method_list ) ) ) {
2002-07-15 14:35:28 +04:00
str_list_free ( & auth_method_list ) ;
2002-01-05 07:55:41 +03:00
return nt_status ;
}
2002-07-15 14:35:28 +04:00
str_list_free ( & auth_method_list ) ;
2002-01-05 07:55:41 +03:00
return nt_status ;
}
/***************************************************************************
Make a auth_info struct with a fixed challenge
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
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-05 07:55:41 +03:00
NTSTATUS make_auth_context_fixed ( struct auth_context * * auth_context , uchar chal [ 8 ] )
{
NTSTATUS nt_status ;
if ( ! NT_STATUS_IS_OK ( nt_status = make_auth_context_subsystem ( auth_context ) ) ) {
return nt_status ;
}
2003-07-18 15:36:16 +04:00
( * auth_context ) - > challenge = data_blob_talloc ( ( * auth_context ) - > mem_ctx , chal , 8 ) ;
2003-01-28 15:07:02 +03:00
( * auth_context ) - > challenge_set_by = " fixed " ;
2002-01-05 07:55:41 +03:00
return 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 09:20:58 +03:00