2003-08-13 01:53:07 +00:00
/*
Unix SMB / CIFS implementation .
Password and authentication handling
Copyright ( C ) Andrew Bartlett 2001 - 2002
2005-01-09 12:55:25 +00:00
Copyright ( C ) Stefan Metzmacher 2005
2003-08-13 01:53:07 +00: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
2007-07-10 02:07:03 +00:00
the Free Software Foundation ; either version 3 of the License , or
2003-08-13 01:53:07 +00:00
( 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
2007-07-10 02:07:03 +00:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-08-13 01:53:07 +00:00
*/
# include "includes.h"
2009-12-23 09:09:37 +01:00
# include <tevent.h>
# include "../lib/util/tevent_ntstatus.h"
2008-10-11 21:31:42 +02:00
# include "../lib/util/dlinklist.h"
2004-11-02 02:57:18 +00:00
# include "auth/auth.h"
2008-05-05 19:28:38 +10:00
# include "auth/ntlm/auth_proto.h"
2007-09-08 12:42:09 +00:00
# include "param/param.h"
2010-04-13 12:00:06 +10:00
# include "dsdb/samdb/samdb.h"
2011-07-21 17:06:17 +10:00
# include "libcli/wbclient/wbclient.h"
2011-12-03 07:03:35 +01:00
# include "lib/util/samba_modules.h"
2011-12-28 17:48:45 +11:00
# include "auth/credentials/credentials.h"
# include "system/kerberos.h"
# include "auth/kerberos/kerberos.h"
# include "auth/kerberos/kerberos_util.h"
2012-02-04 17:49:49 +11:00
static NTSTATUS auth_generate_session_info_wrapper ( struct auth4_context * auth_context ,
TALLOC_CTX * mem_ctx ,
void * server_returned_info ,
2012-01-30 21:49:33 +11:00
const char * original_user_name ,
uint32_t session_info_flags ,
2011-12-28 17:48:45 +11:00
struct auth_session_info * * session_info ) ;
2003-08-13 01:53:07 +00:00
2005-01-09 12:55:25 +00:00
/***************************************************************************
Set a fixed challenge
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2011-05-07 08:14:06 +02:00
_PUBLIC_ NTSTATUS auth_context_set_challenge ( struct auth4_context * auth_ctx , const uint8_t chal [ 8 ] , const char * set_by )
2005-01-09 12:55:25 +00:00
{
auth_ctx - > challenge . set_by = talloc_strdup ( auth_ctx , set_by ) ;
NT_STATUS_HAVE_NO_MEMORY ( auth_ctx - > challenge . set_by ) ;
auth_ctx - > challenge . data = data_blob_talloc ( auth_ctx , chal , 8 ) ;
NT_STATUS_HAVE_NO_MEMORY ( auth_ctx - > challenge . data . data ) ;
return NT_STATUS_OK ;
}
2003-08-13 01:53:07 +00:00
/****************************************************************************
Try to get a challenge out of the various authentication modules .
Returns a const char of length 8 bytes .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2011-05-07 08:14:06 +02:00
_PUBLIC_ NTSTATUS auth_get_challenge ( struct auth4_context * auth_ctx , uint8_t chal [ 8 ] )
2003-08-13 01:53:07 +00:00
{
2005-01-09 12:55:25 +00:00
2009-12-14 20:32:47 +11:00
if ( auth_ctx - > challenge . data . length = = 8 ) {
2005-01-09 12:55:25 +00:00
DEBUG ( 5 , ( " auth_get_challenge: returning previous challenge by module %s (normal) \n " ,
auth_ctx - > challenge . set_by ) ) ;
2009-12-14 20:32:47 +11:00
memcpy ( chal , auth_ctx - > challenge . data . data , 8 ) ;
2005-01-09 12:55:25 +00:00
return NT_STATUS_OK ;
2003-08-13 01:53:07 +00:00
}
2005-01-09 12:55:25 +00:00
if ( ! auth_ctx - > challenge . set_by ) {
generate_random_buffer ( chal , 8 ) ;
2003-08-13 01:53:07 +00:00
2005-01-09 12:55:25 +00:00
auth_ctx - > challenge . data = data_blob_talloc ( auth_ctx , chal , 8 ) ;
NT_STATUS_HAVE_NO_MEMORY ( auth_ctx - > challenge . data . data ) ;
auth_ctx - > challenge . set_by = " random " ;
2003-08-13 01:53:07 +00:00
}
2005-01-09 12:55:25 +00:00
DEBUG ( 10 , ( " auth_get_challenge: challenge set by %s \n " ,
auth_ctx - > challenge . set_by ) ) ;
return NT_STATUS_OK ;
2003-08-13 01:53:07 +00:00
}
2009-02-13 14:02:49 +11:00
/****************************************************************************
2010-04-15 11:58:05 +10:00
Used in the gensec_gssapi and gensec_krb5 server - side code , where the
PAC isn ' t available , and for tokenGroups in the DSDB stack .
Supply either a principal or a DN
2009-02-13 14:02:49 +11:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2011-12-28 17:48:45 +11:00
static NTSTATUS auth_generate_session_info_principal ( struct auth4_context * auth_ctx ,
TALLOC_CTX * mem_ctx ,
const char * principal ,
struct ldb_dn * user_dn ,
uint32_t session_info_flags ,
struct auth_session_info * * session_info )
2009-02-13 14:02:49 +11:00
{
NTSTATUS nt_status ;
struct auth_method_context * method ;
2011-12-28 17:48:45 +11:00
struct auth_user_info_dc * user_info_dc ;
2009-02-13 14:02:49 +11:00
for ( method = auth_ctx - > methods ; method ; method = method - > next ) {
2011-02-08 16:53:13 +11:00
if ( ! method - > ops - > get_user_info_dc_principal ) {
2009-02-13 14:02:49 +11:00
continue ;
}
2011-12-28 17:48:45 +11:00
nt_status = method - > ops - > get_user_info_dc_principal ( mem_ctx , auth_ctx , principal , user_dn , & user_info_dc ) ;
2009-02-13 14:02:49 +11:00
if ( NT_STATUS_EQUAL ( nt_status , NT_STATUS_NOT_IMPLEMENTED ) ) {
continue ;
}
2011-12-28 17:48:45 +11:00
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
return nt_status ;
}
2012-02-04 17:49:49 +11:00
nt_status = auth_generate_session_info_wrapper ( auth_ctx , mem_ctx ,
2011-12-28 17:48:45 +11:00
user_info_dc ,
2012-01-30 21:49:33 +11:00
user_info_dc - > info - > account_name ,
2011-12-28 17:48:45 +11:00
session_info_flags , session_info ) ;
talloc_free ( user_info_dc ) ;
2009-02-13 14:02:49 +11:00
2011-01-19 22:27:51 +11:00
return nt_status ;
2009-02-13 14:02:49 +11:00
}
2011-01-19 22:27:51 +11:00
return NT_STATUS_NOT_IMPLEMENTED ;
2009-02-13 14:02:49 +11:00
}
2003-08-13 01:53:07 +00:00
/**
* Check a user ' s Plaintext , LM or NTLM password .
2006-07-27 13:02:27 +00:00
* ( sync version )
2003-08-13 01:53:07 +00:00
*
* Check a user ' s password , as given in the user_info struct and return various
2011-02-08 16:53:13 +11:00
* interesting details in the user_info_dc struct .
2003-08-13 01:53:07 +00:00
*
2011-02-08 16:53:13 +11:00
* The return value takes precedence over the contents of the user_info_dc
2003-08-13 01:53:07 +00:00
* struct . When the return is other than NT_STATUS_OK the contents
* of that structure is undefined .
*
2006-07-27 13:02:27 +00:00
* @ param auth_ctx Supplies the challenges and some other data .
* Must be created with auth_context_create ( ) , and the challenges should be
2003-08-13 01:53:07 +00:00
* filled in , either at creation or by calling the challenge geneation
* function auth_get_challenge ( ) .
*
2006-07-27 13:02:27 +00:00
* @ param user_info Contains the user supplied components , including the passwords .
*
2011-02-08 16:53:13 +11:00
* @ param mem_ctx The parent memory context for the user_info_dc structure
2006-07-27 13:02:27 +00:00
*
2011-02-08 16:53:13 +11:00
* @ param user_info_dc If successful , contains information about the authentication ,
2003-08-13 01:53:07 +00:00
* including a SAM_ACCOUNT struct describing the user .
*
* @ return An NTSTATUS with NT_STATUS_OK or an appropriate error .
*
* */
2011-05-07 08:14:06 +02:00
_PUBLIC_ NTSTATUS auth_check_password ( struct auth4_context * auth_ctx ,
2005-01-09 12:55:25 +00:00
TALLOC_CTX * mem_ctx ,
const struct auth_usersupplied_info * user_info ,
2011-02-08 16:53:13 +11:00
struct auth_user_info_dc * * user_info_dc )
2006-07-27 13:02:27 +00:00
{
2009-12-23 09:09:37 +01:00
struct tevent_req * subreq ;
struct tevent_context * ev ;
bool ok ;
2006-07-27 13:02:27 +00:00
NTSTATUS status ;
2009-12-23 09:09:37 +01:00
/*TODO: create a new event context here! */
ev = auth_ctx - > event_ctx ;
2006-07-27 13:02:27 +00:00
2009-12-23 09:09:37 +01:00
subreq = auth_check_password_send ( mem_ctx ,
ev ,
auth_ctx ,
user_info ) ;
if ( subreq = = NULL ) {
return NT_STATUS_NO_MEMORY ;
2006-07-27 13:02:27 +00:00
}
2009-12-23 09:09:37 +01:00
ok = tevent_req_poll ( subreq , ev ) ;
if ( ! ok ) {
return NT_STATUS_INTERNAL_ERROR ;
2006-07-27 13:02:27 +00:00
}
2011-02-08 16:53:13 +11:00
status = auth_check_password_recv ( subreq , mem_ctx , user_info_dc ) ;
2009-12-23 09:09:37 +01:00
TALLOC_FREE ( subreq ) ;
2006-07-27 13:02:27 +00:00
return status ;
}
2012-01-30 11:17:44 +11:00
_PUBLIC_ NTSTATUS auth_check_password_wrapper ( struct auth4_context * auth_ctx ,
TALLOC_CTX * mem_ctx ,
const struct auth_usersupplied_info * user_info ,
void * * server_returned_info ,
DATA_BLOB * user_session_key , DATA_BLOB * lm_session_key )
{
struct auth_user_info_dc * user_info_dc ;
NTSTATUS status = auth_check_password ( auth_ctx , mem_ctx , user_info , & user_info_dc ) ;
if ( NT_STATUS_IS_OK ( status ) ) {
* server_returned_info = user_info_dc ;
if ( user_session_key ) {
DEBUG ( 10 , ( " Got NT session key of length %u \n " ,
( unsigned ) user_info_dc - > user_session_key . length ) ) ;
* user_session_key = user_info_dc - > user_session_key ;
talloc_steal ( mem_ctx , user_session_key - > data ) ;
user_info_dc - > user_session_key = data_blob_null ;
}
if ( lm_session_key ) {
DEBUG ( 10 , ( " Got LM session key of length %u \n " ,
( unsigned ) user_info_dc - > lm_session_key . length ) ) ;
* lm_session_key = user_info_dc - > lm_session_key ;
talloc_steal ( mem_ctx , lm_session_key - > data ) ;
user_info_dc - > lm_session_key = data_blob_null ;
}
}
return status ;
}
2009-12-23 09:09:37 +01:00
struct auth_check_password_state {
2011-05-07 08:14:06 +02:00
struct auth4_context * auth_ctx ;
2006-07-27 13:02:27 +00:00
const struct auth_usersupplied_info * user_info ;
2011-02-08 16:53:13 +11:00
struct auth_user_info_dc * user_info_dc ;
2006-07-27 13:02:27 +00:00
struct auth_method_context * method ;
} ;
2009-12-23 09:09:37 +01:00
static void auth_check_password_async_trigger ( struct tevent_context * ev ,
struct tevent_immediate * im ,
void * private_data ) ;
2006-07-27 13:02:27 +00:00
/**
* Check a user ' s Plaintext , LM or NTLM password .
* async send hook
*
* Check a user ' s password , as given in the user_info struct and return various
2011-02-08 16:53:13 +11:00
* interesting details in the user_info_dc struct .
2006-07-27 13:02:27 +00:00
*
2011-02-08 16:53:13 +11:00
* The return value takes precedence over the contents of the user_info_dc
2006-07-27 13:02:27 +00:00
* struct . When the return is other than NT_STATUS_OK the contents
* of that structure is undefined .
*
2009-12-23 09:09:37 +01:00
* @ param mem_ctx The memory context the request should operate on
*
* @ param ev The tevent context the request should operate on
*
2006-07-27 13:02:27 +00:00
* @ param auth_ctx Supplies the challenges and some other data .
* Must be created with make_auth_context ( ) , and the challenges should be
* filled in , either at creation or by calling the challenge geneation
* function auth_get_challenge ( ) .
*
* @ param user_info Contains the user supplied components , including the passwords .
*
2009-12-23 09:09:37 +01:00
* @ return The request handle or NULL on no memory error .
2006-07-27 13:02:27 +00:00
*
* */
2009-12-23 09:09:37 +01:00
_PUBLIC_ struct tevent_req * auth_check_password_send ( TALLOC_CTX * mem_ctx ,
struct tevent_context * ev ,
2011-05-07 08:14:06 +02:00
struct auth4_context * auth_ctx ,
2009-12-23 09:09:37 +01:00
const struct auth_usersupplied_info * user_info )
2003-08-13 01:53:07 +00:00
{
2009-12-23 09:09:37 +01:00
struct tevent_req * req ;
struct auth_check_password_state * state ;
2004-05-02 08:45:00 +00:00
/* if all the modules say 'not for me' this is reasonable */
2005-07-22 04:10:07 +00:00
NTSTATUS nt_status ;
2009-12-14 20:32:47 +11:00
uint8_t chal [ 8 ] ;
2006-07-27 13:02:27 +00:00
struct auth_usersupplied_info * user_info_tmp ;
2009-12-23 09:09:37 +01:00
struct tevent_immediate * im ;
2003-08-13 01:53:07 +00:00
2009-12-23 09:09:37 +01:00
DEBUG ( 3 , ( " auth_check_password_send: "
" Checking password for unmapped user [%s] \\ [%s]@[%s] \n " ,
user_info - > client . domain_name , user_info - > client . account_name ,
user_info - > workstation_name ) ) ;
2003-08-13 01:53:07 +00:00
2009-12-23 09:09:37 +01:00
req = tevent_req_create ( mem_ctx , & state ,
struct auth_check_password_state ) ;
if ( req = = NULL ) {
return NULL ;
2006-07-27 13:02:27 +00:00
}
2009-12-23 09:09:37 +01:00
state - > auth_ctx = auth_ctx ;
state - > user_info = user_info ;
2006-07-27 13:02:27 +00:00
2005-07-22 04:10:07 +00:00
if ( ! user_info - > mapped_state ) {
2011-09-29 17:44:28 +10:00
nt_status = map_user_info ( auth_ctx - > sam_ctx , req , lpcfg_workgroup ( auth_ctx - > lp_ctx ) ,
2009-12-23 09:09:37 +01:00
user_info , & user_info_tmp ) ;
if ( tevent_req_nterror ( req , nt_status ) ) {
return tevent_req_post ( req , ev ) ;
}
2005-07-22 04:10:07 +00:00
user_info = user_info_tmp ;
2009-12-23 09:09:37 +01:00
state - > user_info = user_info_tmp ;
2005-07-22 04:10:07 +00:00
}
2009-12-23 09:09:37 +01:00
DEBUGADD ( 3 , ( " auth_check_password_send: "
" mapped user is: [%s] \\ [%s]@[%s] \n " ,
user_info - > mapped . domain_name ,
user_info - > mapped . account_name ,
user_info - > workstation_name ) ) ;
2003-08-13 01:53:07 +00:00
2009-12-14 20:32:47 +11:00
nt_status = auth_get_challenge ( auth_ctx , chal ) ;
2009-12-23 09:09:37 +01:00
if ( tevent_req_nterror ( req , nt_status ) ) {
DEBUG ( 0 , ( " auth_check_password_send: "
" Invalid challenge (length %u) stored for "
" this auth context set_by %s - cannot continue: %s \n " ,
( unsigned ) auth_ctx - > challenge . data . length ,
auth_ctx - > challenge . set_by ,
nt_errstr ( nt_status ) ) ) ;
return tevent_req_post ( req , ev ) ;
2004-06-07 03:46:32 +00:00
}
2005-01-09 12:55:25 +00:00
if ( auth_ctx - > challenge . set_by ) {
2009-12-23 09:09:37 +01:00
DEBUG ( 10 , ( " auth_check_password_send: "
" auth_context challenge created by %s \n " ,
auth_ctx - > challenge . set_by ) ) ;
2003-08-13 01:53:07 +00:00
}
2006-07-27 13:02:27 +00:00
DEBUG ( 10 , ( " auth_check_password_send: challenge is: \n " ) ) ;
2009-12-23 09:09:37 +01:00
dump_data ( 5 , auth_ctx - > challenge . data . data ,
auth_ctx - > challenge . data . length ) ;
im = tevent_create_immediate ( state ) ;
if ( tevent_req_nomem ( im , req ) ) {
return tevent_req_post ( req , ev ) ;
}
2003-08-13 01:53:07 +00:00
2010-09-13 07:41:56 +10:00
tevent_schedule_immediate ( im ,
auth_ctx - > event_ctx ,
auth_check_password_async_trigger ,
req ) ;
return req ;
2009-12-23 09:09:37 +01:00
}
static void auth_check_password_async_trigger ( struct tevent_context * ev ,
struct tevent_immediate * im ,
void * private_data )
{
struct tevent_req * req =
talloc_get_type_abort ( private_data , struct tevent_req ) ;
struct auth_check_password_state * state =
tevent_req_data ( req , struct auth_check_password_state ) ;
NTSTATUS status ;
2010-09-13 07:41:56 +10:00
struct auth_method_context * method ;
status = NT_STATUS_OK ;
for ( method = state - > auth_ctx - > methods ; method ; method = method - > next ) {
/* we fill in state->method here so debug messages in
the callers know which method failed */
state - > method = method ;
/* check if the module wants to check the password */
status = method - > ops - > want_check ( method , req , state - > user_info ) ;
if ( NT_STATUS_EQUAL ( status , NT_STATUS_NOT_IMPLEMENTED ) ) {
DEBUG ( 11 , ( " auth_check_password_send: "
" %s had nothing to say \n " ,
method - > ops - > name ) ) ;
continue ;
}
if ( tevent_req_nterror ( req , status ) ) {
return ;
}
status = method - > ops - > check_password ( method ,
state ,
state - > user_info ,
2011-02-08 16:53:13 +11:00
& state - > user_info_dc ) ;
2010-09-13 07:41:56 +10:00
if ( ! NT_STATUS_EQUAL ( status , NT_STATUS_NOT_IMPLEMENTED ) ) {
/* the backend has handled the request */
break ;
}
}
if ( NT_STATUS_EQUAL ( status , NT_STATUS_NOT_IMPLEMENTED ) ) {
/* don't expose the NT_STATUS_NOT_IMPLEMENTED
internals */
status = NT_STATUS_NO_SUCH_USER ;
}
2009-12-23 09:09:37 +01:00
if ( tevent_req_nterror ( req , status ) ) {
2006-07-27 13:02:27 +00:00
return ;
2003-08-13 01:53:07 +00:00
}
2009-12-23 09:09:37 +01:00
tevent_req_done ( req ) ;
2006-07-27 13:02:27 +00:00
}
/**
* Check a user ' s Plaintext , LM or NTLM password .
* async receive function
*
2011-02-08 16:53:13 +11:00
* The return value takes precedence over the contents of the user_info_dc
2006-07-27 13:02:27 +00:00
* struct . When the return is other than NT_STATUS_OK the contents
* of that structure is undefined .
*
*
2009-12-23 09:09:37 +01:00
* @ param req The async request state
2006-07-27 13:02:27 +00:00
*
2011-02-08 16:53:13 +11:00
* @ param mem_ctx The parent memory context for the user_info_dc structure
2006-07-27 13:02:27 +00:00
*
2011-02-08 16:53:13 +11:00
* @ param user_info_dc If successful , contains information about the authentication ,
2006-07-27 13:02:27 +00:00
* including a SAM_ACCOUNT struct describing the user .
*
* @ return An NTSTATUS with NT_STATUS_OK or an appropriate error .
*
* */
2009-12-23 09:09:37 +01:00
_PUBLIC_ NTSTATUS auth_check_password_recv ( struct tevent_req * req ,
2006-07-27 13:02:27 +00:00
TALLOC_CTX * mem_ctx ,
2011-02-08 16:53:13 +11:00
struct auth_user_info_dc * * user_info_dc )
2006-07-27 13:02:27 +00:00
{
2009-12-23 09:09:37 +01:00
struct auth_check_password_state * state =
tevent_req_data ( req , struct auth_check_password_state ) ;
2006-07-27 13:02:27 +00:00
NTSTATUS status ;
2009-12-23 09:09:37 +01:00
if ( tevent_req_is_nterror ( req , & status ) ) {
DEBUG ( 2 , ( " auth_check_password_recv: "
2010-08-26 20:07:53 +02:00
" %s authentication for user [%s \\ %s] "
2009-12-23 09:09:37 +01:00
" FAILED with error %s \n " ,
( state - > method ? state - > method - > ops - > name : " NO_METHOD " ) ,
state - > user_info - > mapped . domain_name ,
state - > user_info - > mapped . account_name ,
nt_errstr ( status ) ) ) ;
tevent_req_received ( req ) ;
return status ;
}
2006-07-27 13:02:27 +00:00
2009-12-23 09:09:37 +01:00
DEBUG ( 5 , ( " auth_check_password_recv: "
" %s authentication for user [%s \\ %s] succeeded \n " ,
state - > method - > ops - > name ,
2011-02-08 16:53:13 +11:00
state - > user_info_dc - > info - > domain_name ,
state - > user_info_dc - > info - > account_name ) ) ;
2006-07-27 13:02:27 +00:00
2011-02-08 16:53:13 +11:00
* user_info_dc = talloc_move ( mem_ctx , & state - > user_info_dc ) ;
2003-08-13 01:53:07 +00:00
2009-12-23 09:09:37 +01:00
tevent_req_received ( req ) ;
return NT_STATUS_OK ;
2003-08-13 01:53:07 +00:00
}
2011-12-28 17:48:45 +11:00
/* Wrapper because we don't want to expose all callers to needing to
* know that session_info is generated from the main ldb , and because
* we need to break a depenency loop between the DCE / RPC layer and the
* generation of unix tokens via IRPC */
2012-02-04 17:49:49 +11:00
static NTSTATUS auth_generate_session_info_wrapper ( struct auth4_context * auth_context ,
TALLOC_CTX * mem_ctx ,
2012-01-30 11:17:44 +11:00
void * server_returned_info ,
2012-01-30 21:49:33 +11:00
const char * original_user_name ,
2011-12-28 17:48:45 +11:00
uint32_t session_info_flags ,
struct auth_session_info * * session_info )
2010-12-21 10:19:53 +11:00
{
2012-01-30 11:53:04 +11:00
NTSTATUS status ;
2012-01-30 11:17:44 +11:00
struct auth_user_info_dc * user_info_dc = talloc_get_type_abort ( server_returned_info , struct auth_user_info_dc ) ;
2012-01-30 11:53:04 +11:00
if ( user_info_dc - > info - > authenticated ) {
session_info_flags | = AUTH_SESSION_INFO_AUTHENTICATED ;
}
status = auth_generate_session_info ( mem_ctx , auth_context - > lp_ctx ,
auth_context - > sam_ctx , user_info_dc ,
session_info_flags , session_info ) ;
2011-12-28 17:48:45 +11:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
return status ;
}
2011-07-21 18:21:19 +10:00
2011-07-21 17:06:17 +10:00
if ( ( session_info_flags & AUTH_SESSION_INFO_UNIX_TOKEN )
& & NT_STATUS_IS_OK ( status ) ) {
struct wbc_context * wbc_ctx = wbc_init ( auth_context ,
auth_context - > msg_ctx ,
auth_context - > event_ctx ) ;
if ( ! wbc_ctx ) {
TALLOC_FREE ( * session_info ) ;
2011-07-21 18:21:19 +10:00
DEBUG ( 1 , ( " Cannot contact winbind to provide unix token \n " ) ) ;
2011-07-21 17:06:17 +10:00
return NT_STATUS_INVALID_SERVER_STATE ;
}
2011-07-21 18:21:19 +10:00
status = auth_session_info_fill_unix ( wbc_ctx , auth_context - > lp_ctx ,
2012-01-30 21:49:33 +11:00
original_user_name , * session_info ) ;
2011-07-21 17:06:17 +10:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
TALLOC_FREE ( * session_info ) ;
}
TALLOC_FREE ( wbc_ctx ) ;
}
return status ;
2010-12-21 10:19:53 +11:00
}
2011-12-28 17:48:45 +11:00
/* Wrapper because we don't want to expose all callers to needing to
* know anything about the PAC or auth subsystem internal structures
* before we output a struct auth session_info */
static NTSTATUS auth_generate_session_info_pac ( struct auth4_context * auth_ctx ,
2011-12-29 22:30:07 +11:00
TALLOC_CTX * mem_ctx ,
2011-12-28 17:48:45 +11:00
struct smb_krb5_context * smb_krb5_context ,
DATA_BLOB * pac_blob ,
const char * principal_name ,
const struct tsocket_address * remote_address ,
uint32_t session_info_flags ,
struct auth_session_info * * session_info )
{
NTSTATUS status ;
struct auth_user_info_dc * user_info_dc ;
2011-12-29 22:30:07 +11:00
TALLOC_CTX * tmp_ctx ;
2011-12-28 17:48:45 +11:00
if ( ! pac_blob ) {
2011-12-29 22:30:07 +11:00
return auth_generate_session_info_principal ( auth_ctx , mem_ctx , principal_name ,
2011-12-28 17:48:45 +11:00
NULL , session_info_flags , session_info ) ;
}
2011-12-29 22:30:07 +11:00
tmp_ctx = talloc_named ( mem_ctx , 0 , " gensec_gssapi_session_info context " ) ;
NT_STATUS_HAVE_NO_MEMORY ( tmp_ctx ) ;
2011-12-28 17:48:45 +11:00
2011-12-29 22:30:07 +11:00
status = kerberos_pac_blob_to_user_info_dc ( tmp_ctx ,
2011-12-28 17:48:45 +11:00
* pac_blob ,
smb_krb5_context - > krb5_context ,
& user_info_dc , NULL , NULL ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
2011-12-29 22:30:07 +11:00
talloc_free ( tmp_ctx ) ;
2011-12-28 17:48:45 +11:00
return status ;
}
if ( user_info_dc - > info - > authenticated ) {
session_info_flags | = AUTH_SESSION_INFO_AUTHENTICATED ;
}
2012-02-04 17:49:49 +11:00
status = auth_generate_session_info_wrapper ( auth_ctx , mem_ctx ,
2011-12-28 17:48:45 +11:00
user_info_dc ,
2012-01-30 21:49:33 +11:00
user_info_dc - > info - > account_name ,
2011-12-28 17:48:45 +11:00
session_info_flags , session_info ) ;
2011-12-29 22:30:07 +11:00
talloc_free ( tmp_ctx ) ;
2011-12-28 17:48:45 +11:00
return status ;
}
2003-08-13 01:53:07 +00:00
/***************************************************************************
Make a auth_info struct for the auth subsystem
2010-04-15 11:58:05 +10:00
- Allow the caller to specify the methods to use , including optionally the SAM to use
2003-08-13 01:53:07 +00:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-04-02 04:53:27 +02:00
_PUBLIC_ NTSTATUS auth_context_create_methods ( TALLOC_CTX * mem_ctx , const char * * methods ,
2010-04-15 11:58:05 +10:00
struct tevent_context * ev ,
2011-05-03 10:40:33 +10:00
struct imessaging_context * msg ,
2010-04-15 11:58:05 +10:00
struct loadparm_context * lp_ctx ,
struct ldb_context * sam_ctx ,
2011-05-07 08:14:06 +02:00
struct auth4_context * * auth_ctx )
2003-08-13 01:53:07 +00:00
{
2005-01-09 12:55:25 +00:00
int i ;
2011-05-07 08:14:06 +02:00
struct auth4_context * ctx ;
2003-08-13 01:53:07 +00:00
2011-02-15 16:30:35 +11:00
auth4_init ( ) ;
2009-02-13 10:24:16 +11:00
2006-07-31 14:05:08 +00:00
if ( ! ev ) {
DEBUG ( 0 , ( " auth_context_create: called with out event context \n " ) ) ;
return NT_STATUS_INTERNAL_ERROR ;
}
2011-12-28 17:48:45 +11:00
ctx = talloc_zero ( mem_ctx , struct auth4_context ) ;
2005-01-09 12:55:25 +00:00
NT_STATUS_HAVE_NO_MEMORY ( ctx ) ;
ctx - > challenge . data = data_blob ( NULL , 0 ) ;
ctx - > methods = NULL ;
2006-07-31 14:05:08 +00:00
ctx - > event_ctx = ev ;
ctx - > msg_ctx = msg ;
2007-12-02 17:56:09 +01:00
ctx - > lp_ctx = lp_ctx ;
2003-08-13 01:53:07 +00:00
2010-04-15 11:58:05 +10:00
if ( sam_ctx ) {
ctx - > sam_ctx = sam_ctx ;
} else {
2010-10-10 17:00:45 +02:00
ctx - > sam_ctx = samdb_connect ( ctx , ctx - > event_ctx , ctx - > lp_ctx , system_session ( ctx - > lp_ctx ) , 0 ) ;
2010-04-15 11:58:05 +10:00
}
2010-04-13 12:00:06 +10:00
2011-01-19 22:27:51 +11:00
for ( i = 0 ; methods & & methods [ i ] ; i + + ) {
2005-01-09 12:55:25 +00:00
struct auth_method_context * method ;
2003-08-13 01:53:07 +00:00
2005-01-09 12:55:25 +00:00
method = talloc ( ctx , struct auth_method_context ) ;
NT_STATUS_HAVE_NO_MEMORY ( method ) ;
2003-08-13 01:53:07 +00:00
2005-01-09 12:55:25 +00:00
method - > ops = auth_backend_byname ( methods [ i ] ) ;
if ( ! method - > ops ) {
DEBUG ( 1 , ( " auth_context_create: failed to find method=%s \n " ,
methods [ i ] ) ) ;
return NT_STATUS_INTERNAL_ERROR ;
}
method - > auth_ctx = ctx ;
method - > depth = i ;
DLIST_ADD_END ( ctx - > methods , method , struct auth_method_context * ) ;
2003-08-13 01:53:07 +00:00
}
2012-02-03 16:33:44 +11:00
ctx - > check_ntlm_password = auth_check_password_wrapper ;
ctx - > get_ntlm_challenge = auth_get_challenge ;
ctx - > set_ntlm_challenge = auth_context_set_challenge ;
2010-12-21 10:19:53 +11:00
ctx - > generate_session_info = auth_generate_session_info_wrapper ;
2011-12-28 17:48:45 +11:00
ctx - > generate_session_info_pac = auth_generate_session_info_pac ;
2009-02-13 10:24:16 +11:00
2005-01-09 12:55:25 +00:00
* auth_ctx = ctx ;
2003-08-13 01:53:07 +00:00
2005-01-09 12:55:25 +00:00
return NT_STATUS_OK ;
2003-08-13 01:53:07 +00:00
}
2010-04-15 11:58:05 +10:00
2011-01-18 19:13:19 +11:00
const char * * auth_methods_from_lp ( TALLOC_CTX * mem_ctx , struct loadparm_context * lp_ctx )
2007-07-03 08:05:55 +00:00
{
2011-06-08 09:36:59 +02:00
char * * auth_methods = NULL ;
2011-06-07 09:07:52 +10:00
2010-07-16 14:32:42 +10:00
switch ( lpcfg_server_role ( lp_ctx ) ) {
2007-07-03 08:05:55 +00:00
case ROLE_STANDALONE :
2011-06-07 09:07:52 +10:00
auth_methods = str_list_make ( mem_ctx , " anonymous sam_ignoredomain " , NULL ) ;
2007-07-03 08:05:55 +00:00
break ;
case ROLE_DOMAIN_MEMBER :
2011-06-07 09:07:52 +10:00
auth_methods = str_list_make ( mem_ctx , " anonymous sam winbind " , NULL ) ;
2007-07-03 08:05:55 +00:00
break ;
2011-06-07 09:07:52 +10:00
case ROLE_DOMAIN_BDC :
case ROLE_DOMAIN_PDC :
2012-06-10 22:08:20 +10:00
case ROLE_ACTIVE_DIRECTORY_DC :
2011-06-07 09:07:52 +10:00
auth_methods = str_list_make ( mem_ctx , " anonymous sam_ignoredomain winbind " , NULL ) ;
2007-07-03 08:05:55 +00:00
break ;
}
2011-06-08 09:36:59 +02:00
return ( const char * * ) auth_methods ;
2007-07-03 08:05:55 +00:00
}
2010-04-15 11:58:05 +10:00
/***************************************************************************
Make a auth_info struct for the auth subsystem
- Uses default auth_methods , depending on server role and smb . conf settings
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
_PUBLIC_ NTSTATUS auth_context_create ( TALLOC_CTX * mem_ctx ,
struct tevent_context * ev ,
2011-05-03 10:40:33 +10:00
struct imessaging_context * msg ,
2010-04-15 11:58:05 +10:00
struct loadparm_context * lp_ctx ,
2011-05-07 08:14:06 +02:00
struct auth4_context * * auth_ctx )
2010-04-15 11:58:05 +10:00
{
NTSTATUS status ;
const char * * auth_methods ;
TALLOC_CTX * tmp_ctx = talloc_new ( mem_ctx ) ;
if ( ! tmp_ctx ) {
return NT_STATUS_NO_MEMORY ;
}
auth_methods = auth_methods_from_lp ( tmp_ctx , lp_ctx ) ;
if ( ! auth_methods ) {
return NT_STATUS_INVALID_PARAMETER ;
}
status = auth_context_create_methods ( mem_ctx , auth_methods , ev , msg , lp_ctx , NULL , auth_ctx ) ;
talloc_free ( tmp_ctx ) ;
return status ;
}
2004-02-03 11:10:56 +00:00
/* the list of currently registered AUTH backends */
2004-12-03 06:24:38 +00:00
static struct auth_backend {
2004-02-03 11:10:56 +00:00
const struct auth_operations * ops ;
} * backends = NULL ;
static int num_backends ;
/*
register a AUTH backend .
The ' name ' can be later used by other backends to find the operations
structure for this backend .
*/
2008-04-02 04:53:27 +02:00
_PUBLIC_ NTSTATUS auth_register ( const struct auth_operations * ops )
2004-02-03 11:10:56 +00:00
{
struct auth_operations * new_ops ;
if ( auth_backend_byname ( ops - > name ) ! = NULL ) {
/* its already registered! */
DEBUG ( 0 , ( " AUTH backend '%s' already registered \n " ,
ops - > name ) ) ;
return NT_STATUS_OBJECT_NAME_COLLISION ;
}
2007-09-09 19:34:30 +00:00
backends = talloc_realloc ( talloc_autofree_context ( ) , backends ,
struct auth_backend , num_backends + 1 ) ;
NT_STATUS_HAVE_NO_MEMORY ( backends ) ;
2009-02-05 18:18:09 +01:00
new_ops = ( struct auth_operations * ) talloc_memdup ( backends , ops , sizeof ( * ops ) ) ;
2007-09-09 19:34:30 +00:00
NT_STATUS_HAVE_NO_MEMORY ( new_ops ) ;
new_ops - > name = talloc_strdup ( new_ops , ops - > name ) ;
NT_STATUS_HAVE_NO_MEMORY ( new_ops - > name ) ;
2004-02-03 11:10:56 +00:00
backends [ num_backends ] . ops = new_ops ;
num_backends + + ;
DEBUG ( 3 , ( " AUTH backend '%s' registered \n " ,
ops - > name ) ) ;
return NT_STATUS_OK ;
}
/*
return the operations structure for a named backend of the specified type
*/
const struct auth_operations * auth_backend_byname ( const char * name )
{
int i ;
for ( i = 0 ; i < num_backends ; i + + ) {
if ( strcmp ( backends [ i ] . ops - > name , name ) = = 0 ) {
return backends [ i ] . ops ;
}
}
return NULL ;
}
/*
return the AUTH interface version , and the size of some critical types
This can be used by backends to either detect compilation errors , or provide
multiple implementations for different smbd compilation options in one module
*/
const struct auth_critical_sizes * auth_interface_version ( void )
{
2007-12-20 00:02:15 +01:00
static const struct auth_critical_sizes critical_sizes = {
2011-05-07 08:14:06 +02:00
AUTH4_INTERFACE_VERSION ,
2004-02-03 11:10:56 +00:00
sizeof ( struct auth_operations ) ,
2005-01-09 12:55:25 +00:00
sizeof ( struct auth_method_context ) ,
2011-05-07 08:14:06 +02:00
sizeof ( struct auth4_context ) ,
2004-02-03 11:10:56 +00:00
sizeof ( struct auth_usersupplied_info ) ,
2011-02-08 16:53:13 +11:00
sizeof ( struct auth_user_info_dc )
2004-02-03 11:10:56 +00:00
} ;
return & critical_sizes ;
}
2011-02-15 16:30:35 +11:00
_PUBLIC_ NTSTATUS auth4_init ( void )
2004-07-13 21:04:56 +00:00
{
2007-10-06 22:16:19 +00:00
static bool initialized = false ;
2010-11-01 15:38:37 +11:00
# define _MODULE_PROTO(init) extern NTSTATUS init(void);
2011-02-15 16:30:35 +11:00
STATIC_auth4_MODULES_PROTO ;
2011-12-03 07:03:35 +01:00
init_module_fn static_init [ ] = { STATIC_auth4_MODULES } ;
2006-04-06 16:08:46 +00:00
if ( initialized ) return NT_STATUS_OK ;
2007-10-06 22:16:19 +00:00
initialized = true ;
2006-04-06 16:08:46 +00:00
2011-12-03 07:03:35 +01:00
run_init_functions ( static_init ) ;
2005-12-26 16:46:55 +00:00
2004-07-13 21:04:56 +00:00
return NT_STATUS_OK ;
}