2023-08-04 08:21:18 +03:00
/*
2005-01-16 14:15:08 +03:00
Unix SMB / CIFS implementation .
Copyright ( C ) Andrew Tridgell 2005
2023-08-04 08:21:18 +03:00
2005-01-16 14:15:08 +03: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 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2005-01-16 14:15:08 +03:00
( at your option ) any later version .
2023-08-04 08:21:18 +03:00
2005-01-16 14:15:08 +03:00
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 .
2023-08-04 08:21:18 +03:00
2005-01-16 14:15:08 +03:00
You should have received a copy of the GNU General Public License
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2005-01-16 14:15:08 +03:00
*/
/*
a composite API for making handling a generic async session setup
*/
# include "includes.h"
2017-06-15 00:24:10 +03:00
# include <tevent.h>
2005-01-16 14:15:08 +03:00
# include "libcli/raw/libcliraw.h"
2008-04-02 06:53:27 +04:00
# include "libcli/raw/raw_proto.h"
2005-01-16 14:15:08 +03:00
# include "libcli/composite/composite.h"
2005-09-26 15:47:55 +04:00
# include "libcli/smb_composite/smb_composite.h"
2006-03-14 18:03:25 +03:00
# include "libcli/auth/libcli_auth.h"
2005-01-16 14:15:08 +03:00
# include "auth/auth.h"
2006-11-07 03:48:36 +03:00
# include "auth/gensec/gensec.h"
# include "auth/credentials/credentials.h"
2005-06-19 17:26:32 +04:00
# include "version.h"
2007-09-08 16:42:09 +04:00
# include "param/param.h"
2011-09-23 10:35:17 +04:00
# include "libcli/smb/smbXcli_base.h"
2005-01-16 14:15:08 +03:00
struct sesssetup_state {
2017-06-15 00:24:10 +03:00
struct smbcli_session * session ;
2005-01-16 14:15:08 +03:00
union smb_sesssetup setup ;
2017-06-15 00:24:10 +03:00
const char * chosen_oid ;
2008-09-09 20:02:07 +04:00
NTSTATUS remote_status ;
2005-08-23 09:29:37 +04:00
NTSTATUS gensec_status ;
2005-01-17 00:58:28 +03:00
struct smb_composite_sesssetup * io ;
2005-01-17 01:22:13 +03:00
struct smbcli_request * req ;
2017-06-15 01:03:14 +03:00
struct smbcli_request * check_req ;
2012-10-31 10:59:54 +04:00
unsigned int logon_retries ;
2005-01-16 14:15:08 +03:00
} ;
2007-05-01 13:06:25 +04:00
static int sesssetup_state_destructor ( struct sesssetup_state * state )
{
if ( state - > req ) {
talloc_free ( state - > req ) ;
state - > req = NULL ;
}
return 0 ;
}
2006-05-03 18:54:57 +04:00
static NTSTATUS session_setup_old ( struct composite_context * c ,
2023-08-04 08:21:18 +03:00
struct smbcli_session * session ,
2006-05-03 18:54:57 +04:00
struct smb_composite_sesssetup * io ,
2023-08-04 08:21:18 +03:00
struct smbcli_request * * req ) ;
2006-05-03 18:54:57 +04:00
static NTSTATUS session_setup_nt1 ( struct composite_context * c ,
2023-08-04 08:21:18 +03:00
struct smbcli_session * session ,
2006-05-03 18:54:57 +04:00
struct smb_composite_sesssetup * io ,
2023-08-04 08:21:18 +03:00
struct smbcli_request * * req ) ;
2017-05-16 01:16:14 +03:00
static NTSTATUS session_setup_spnego_restart ( struct composite_context * c ,
struct smbcli_session * session ,
struct smb_composite_sesssetup * io ) ;
2006-05-03 18:54:57 +04:00
static NTSTATUS session_setup_spnego ( struct composite_context * c ,
2023-08-04 08:21:18 +03:00
struct smbcli_session * session ,
2006-05-03 18:54:57 +04:00
struct smb_composite_sesssetup * io ,
struct smbcli_request * * req ) ;
2017-06-15 00:24:10 +03:00
static void smb_composite_sesssetup_spnego_done1 ( struct tevent_req * subreq ) ;
2017-06-15 01:03:14 +03:00
static void smb_composite_sesssetup_spnego_done2 ( struct tevent_req * subreq ) ;
2017-06-15 00:24:10 +03:00
2005-01-16 14:15:08 +03:00
/*
handler for completion of a smbcli_request sub - request
*/
static void request_handler ( struct smbcli_request * req )
{
2009-02-02 12:17:00 +03:00
struct composite_context * c = ( struct composite_context * ) req - > async . private_data ;
2005-09-26 15:47:55 +04:00
struct sesssetup_state * state = talloc_get_type ( c - > private_data , struct sesssetup_state ) ;
2005-01-16 14:15:08 +03:00
struct smbcli_session * session = req - > session ;
DATA_BLOB null_data_blob = data_blob ( NULL , 0 ) ;
2006-05-03 18:54:57 +04:00
NTSTATUS session_key_err , nt_status ;
2008-09-09 20:02:07 +04:00
struct smbcli_request * check_req = NULL ;
2009-05-01 17:03:33 +04:00
const char * os = NULL ;
const char * lanman = NULL ;
2005-01-16 14:15:08 +03:00
2008-09-09 20:02:07 +04:00
if ( req - > sign_caller_checks ) {
req - > do_not_free = true ;
check_req = req ;
}
state - > remote_status = smb_raw_sesssetup_recv ( req , state , & state - > setup ) ;
c - > status = state - > remote_status ;
2007-05-01 13:06:25 +04:00
state - > req = NULL ;
2005-01-16 14:15:08 +03:00
2008-09-24 05:59:53 +04:00
/*
* we only need to check the signature if the
* NT_STATUS_OK is returned
*/
if ( ! NT_STATUS_IS_OK ( state - > remote_status ) ) {
talloc_free ( check_req ) ;
check_req = NULL ;
}
2005-01-16 14:15:08 +03:00
switch ( state - > setup . old . level ) {
case RAW_SESSSETUP_OLD :
2005-01-17 00:58:28 +03:00
state - > io - > out . vuid = state - > setup . old . out . vuid ;
2006-05-03 18:59:55 +04:00
/* This doesn't work, as this only happens on old
* protocols , where this comparison won ' t match . */
2006-05-03 18:54:57 +04:00
if ( NT_STATUS_EQUAL ( c - > status , NT_STATUS_LOGON_FAILURE ) ) {
2023-08-03 15:34:51 +03:00
/* we need to reset the vuid for a new try */
2006-10-24 20:16:31 +04:00
session - > vuid = 0 ;
2006-05-03 18:54:57 +04:00
if ( cli_credentials_wrong_password ( state - > io - > in . credentials ) ) {
2023-08-04 08:21:18 +03:00
nt_status = session_setup_old ( c , session ,
state - > io ,
2006-05-03 18:54:57 +04:00
& state - > req ) ;
if ( NT_STATUS_IS_OK ( nt_status ) ) {
2008-09-09 20:02:07 +04:00
talloc_free ( check_req ) ;
2006-05-03 18:54:57 +04:00
c - > status = nt_status ;
2007-05-01 13:06:25 +04:00
composite_continue_smb ( c , state - > req , request_handler , c ) ;
2006-05-03 18:54:57 +04:00
return ;
}
}
}
2017-06-15 00:33:04 +03:00
if ( ! NT_STATUS_IS_OK ( c - > status ) ) {
composite_error ( c , c - > status ) ;
return ;
}
2009-05-01 17:03:33 +04:00
os = state - > setup . old . out . os ;
lanman = state - > setup . old . out . lanman ;
2005-01-16 14:15:08 +03:00
break ;
case RAW_SESSSETUP_NT1 :
2005-01-17 00:58:28 +03:00
state - > io - > out . vuid = state - > setup . nt1 . out . vuid ;
2006-05-03 18:54:57 +04:00
if ( NT_STATUS_EQUAL ( c - > status , NT_STATUS_LOGON_FAILURE ) ) {
2012-10-31 10:59:54 +04:00
/* we need to reset the vuid for a new try */
2006-10-24 20:16:31 +04:00
session - > vuid = 0 ;
2006-05-03 18:54:57 +04:00
if ( cli_credentials_wrong_password ( state - > io - > in . credentials ) ) {
2023-08-04 08:21:18 +03:00
nt_status = session_setup_nt1 ( c , session ,
state - > io ,
2006-05-03 18:54:57 +04:00
& state - > req ) ;
if ( NT_STATUS_IS_OK ( nt_status ) ) {
2008-09-09 20:02:07 +04:00
talloc_free ( check_req ) ;
2006-05-03 18:54:57 +04:00
c - > status = nt_status ;
2007-05-01 13:06:25 +04:00
composite_continue_smb ( c , state - > req , request_handler , c ) ;
2006-05-03 18:54:57 +04:00
return ;
}
}
}
2017-06-15 00:33:04 +03:00
if ( ! NT_STATUS_IS_OK ( c - > status ) ) {
composite_error ( c , c - > status ) ;
return ;
}
2009-05-01 17:03:33 +04:00
os = state - > setup . nt1 . out . os ;
lanman = state - > setup . nt1 . out . lanman ;
2005-01-16 14:15:08 +03:00
break ;
case RAW_SESSSETUP_SPNEGO :
2006-10-24 20:16:31 +04:00
state - > io - > out . vuid = state - > setup . spnego . out . vuid ;
2006-05-03 18:54:57 +04:00
if ( NT_STATUS_EQUAL ( c - > status , NT_STATUS_LOGON_FAILURE ) ) {
2012-10-31 10:59:54 +04:00
const char * principal ;
2008-01-07 07:01:31 +03:00
/* we need to reset the vuid for a new try */
2006-10-24 20:16:31 +04:00
session - > vuid = 0 ;
2012-10-31 10:59:54 +04:00
principal = gensec_get_target_principal ( session - > gensec ) ;
if ( principal = = NULL ) {
const char * hostname = gensec_get_target_hostname ( session - > gensec ) ;
const char * service = gensec_get_target_service ( session - > gensec ) ;
if ( hostname ! = NULL & & service ! = NULL ) {
principal = talloc_asprintf ( state , " %s/%s " , service , hostname ) ;
}
}
if ( cli_credentials_failed_kerberos_login ( state - > io - > in . credentials , principal , & state - > logon_retries ) | |
cli_credentials_wrong_password ( state - > io - > in . credentials ) ) {
2017-06-15 00:24:10 +03:00
struct tevent_req * subreq = NULL ;
2017-05-16 01:16:14 +03:00
nt_status = session_setup_spnego_restart ( c , session , state - > io ) ;
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
DEBUG ( 1 , ( " session_setup_spnego_restart() failed: %s \n " ,
nt_errstr ( nt_status ) ) ) ;
c - > status = nt_status ;
composite_error ( c , c - > status ) ;
return ;
}
2017-06-15 00:24:10 +03:00
subreq = gensec_update_send ( state , c - > event_ctx ,
session - > gensec ,
state - > setup . spnego . out . secblob ) ;
if ( composite_nomem ( subreq , c ) ) {
2006-05-03 18:54:57 +04:00
return ;
}
2017-06-15 00:24:10 +03:00
tevent_req_set_callback ( subreq ,
smb_composite_sesssetup_spnego_done1 ,
c ) ;
return ;
2006-05-03 18:54:57 +04:00
}
}
2017-06-15 00:33:04 +03:00
if ( GENSEC_UPDATE_IS_NTERROR ( c - > status ) ) {
composite_error ( c , c - > status ) ;
return ;
2005-01-16 14:15:08 +03:00
}
2005-08-23 09:29:37 +04:00
if ( NT_STATUS_EQUAL ( state - > gensec_status , NT_STATUS_MORE_PROCESSING_REQUIRED ) ) {
2017-06-15 01:03:14 +03:00
struct tevent_req * subreq = NULL ;
2005-08-23 09:29:37 +04:00
/* The status value here, from the earlier pass at GENSEC is
* vital to the security of the system . Even if the other end
* accepts , if GENSEC claims ' MORE_PROCESSING_REQUIRED ' then
* you must keep feeding it blobs , or else the remote
2023-07-21 03:43:07 +03:00
* host / attacker might avoid mutual authentication
2005-08-23 09:29:37 +04:00
* requirements */
2017-06-15 01:03:14 +03:00
subreq = gensec_update_send ( state , c - > event_ctx ,
session - > gensec ,
state - > setup . spnego . out . secblob ) ;
if ( composite_nomem ( subreq , c ) ) {
2017-06-15 00:33:04 +03:00
return ;
2005-08-23 09:29:37 +04:00
}
2017-06-15 01:03:14 +03:00
tevent_req_set_callback ( subreq ,
smb_composite_sesssetup_spnego_done2 ,
c ) ;
if ( NT_STATUS_IS_OK ( state - > remote_status ) ) {
state - > check_req = check_req ;
} else {
TALLOC_FREE ( check_req ) ;
}
return ;
2005-08-23 09:29:37 +04:00
} else {
state - > setup . spnego . in . secblob = data_blob ( NULL , 0 ) ;
2005-01-16 14:15:08 +03:00
}
2007-05-01 13:06:25 +04:00
2014-03-28 16:05:49 +04:00
if ( cli_credentials_is_anonymous ( state - > io - > in . credentials ) ) {
/*
* anonymous = > no signing
*/
} else if ( NT_STATUS_IS_OK ( state - > remote_status ) ) {
2012-08-01 10:55:49 +04:00
DATA_BLOB session_key ;
2008-09-09 20:02:07 +04:00
if ( state - > setup . spnego . in . secblob . length ) {
c - > status = NT_STATUS_INTERNAL_ERROR ;
2017-06-15 00:33:04 +03:00
composite_error ( c , c - > status ) ;
return ;
2008-09-09 20:02:07 +04:00
}
2012-08-01 10:55:49 +04:00
session_key_err = gensec_session_key ( session - > gensec , session , & session_key ) ;
2008-09-09 20:02:07 +04:00
if ( NT_STATUS_IS_OK ( session_key_err ) ) {
2011-09-23 10:35:17 +04:00
smb1cli_conn_activate_signing ( session - > transport - > conn ,
2012-08-01 10:55:49 +04:00
session_key ,
2011-09-23 10:35:17 +04:00
null_data_blob ) ;
2008-09-09 20:02:07 +04:00
}
2012-08-01 10:57:40 +04:00
c - > status = smb1cli_session_set_session_key ( session - > smbXcli ,
session_key ) ;
2012-08-01 10:55:49 +04:00
data_blob_free ( & session_key ) ;
2012-08-01 10:57:40 +04:00
if ( ! NT_STATUS_IS_OK ( c - > status ) ) {
2017-06-15 00:33:04 +03:00
composite_error ( c , c - > status ) ;
return ;
2012-08-01 10:57:40 +04:00
}
2005-01-16 14:15:08 +03:00
}
2009-05-01 17:03:33 +04:00
os = state - > setup . spnego . out . os ;
lanman = state - > setup . spnego . out . lanman ;
2006-05-20 14:46:38 +04:00
break ;
case RAW_SESSSETUP_SMB2 :
c - > status = NT_STATUS_INTERNAL_ERROR ;
2017-06-15 00:33:04 +03:00
composite_error ( c , c - > status ) ;
return ;
2005-01-16 14:15:08 +03:00
}
2008-09-09 20:02:07 +04:00
if ( check_req ) {
2011-09-23 10:35:17 +04:00
bool ok ;
2008-09-09 20:02:07 +04:00
check_req - > sign_caller_checks = false ;
2011-09-23 10:35:17 +04:00
ok = smb1cli_conn_check_signing ( check_req - > transport - > conn ,
check_req - > in . buffer , 1 ) ;
2017-06-15 00:33:04 +03:00
TALLOC_FREE ( check_req ) ;
2011-09-23 10:35:17 +04:00
if ( ! ok ) {
2008-09-09 20:02:07 +04:00
c - > status = NT_STATUS_ACCESS_DENIED ;
2017-06-15 00:33:04 +03:00
composite_error ( c , c - > status ) ;
return ;
2008-09-09 20:02:07 +04:00
}
}
2007-05-01 13:06:25 +04:00
if ( ! NT_STATUS_IS_OK ( c - > status ) ) {
composite_error ( c , c - > status ) ;
return ;
2005-01-16 14:15:08 +03:00
}
2007-05-01 13:06:25 +04:00
2009-05-01 17:03:33 +04:00
if ( os ) {
session - > os = talloc_strdup ( session , os ) ;
if ( composite_nomem ( session - > os , c ) ) return ;
} else {
session - > os = NULL ;
}
if ( lanman ) {
session - > lanman = talloc_strdup ( session , lanman ) ;
if ( composite_nomem ( session - > lanman , c ) ) return ;
} else {
session - > lanman = NULL ;
}
2007-05-01 13:06:25 +04:00
composite_done ( c ) ;
2005-01-16 14:15:08 +03:00
}
/*
send a nt1 style session setup
*/
2005-08-23 09:29:37 +04:00
static NTSTATUS session_setup_nt1 ( struct composite_context * c ,
2023-08-04 08:21:18 +03:00
struct smbcli_session * session ,
2005-08-23 09:29:37 +04:00
struct smb_composite_sesssetup * io ,
2023-08-04 08:21:18 +03:00
struct smbcli_request * * req )
2005-01-16 14:15:08 +03:00
{
2008-09-09 20:02:07 +04:00
NTSTATUS nt_status = NT_STATUS_INTERNAL_ERROR ;
2011-04-07 16:05:04 +04:00
struct sesssetup_state * state = talloc_get_type ( c - > private_data ,
struct sesssetup_state ) ;
const char * domain = cli_credentials_get_domain ( io - > in . credentials ) ;
/*
* domain controllers tend to reject the NTLM v2 blob
* if the netbiosname is not valid ( e . g . IP address or FQDN )
* so just leave it away ( as Windows client do )
*/
DATA_BLOB names_blob = NTLMv2_generate_names_blob ( state , NULL , domain ) ;
2008-09-09 20:02:07 +04:00
DATA_BLOB session_key = data_blob ( NULL , 0 ) ;
2005-10-14 07:57:35 +04:00
int flags = CLI_CRED_NTLM_AUTH ;
2008-09-09 20:02:07 +04:00
2008-02-21 20:09:47 +03:00
if ( session - > options . lanman_auth ) {
2005-10-14 07:57:35 +04:00
flags | = CLI_CRED_LANMAN_AUTH ;
}
2008-02-21 20:09:47 +03:00
if ( session - > options . ntlmv2_auth ) {
2005-10-14 07:57:35 +04:00
flags | = CLI_CRED_NTLMv2_AUTH ;
}
2005-01-16 14:15:08 +03:00
state - > setup . nt1 . level = RAW_SESSSETUP_NT1 ;
state - > setup . nt1 . in . bufsize = session - > transport - > options . max_xmit ;
state - > setup . nt1 . in . mpx_max = session - > transport - > options . max_mux ;
state - > setup . nt1 . in . vc_num = 1 ;
state - > setup . nt1 . in . sesskey = io - > in . sesskey ;
state - > setup . nt1 . in . capabilities = io - > in . capabilities ;
state - > setup . nt1 . in . os = " Unix " ;
2005-06-19 17:26:32 +04:00
state - > setup . nt1 . in . lanman = talloc_asprintf ( state , " Samba %s " , SAMBA_VERSION_STRING ) ;
2005-10-14 07:57:35 +04:00
2023-08-04 08:21:18 +03:00
cli_credentials_get_ntlm_username_domain ( io - > in . credentials , state ,
2005-09-22 05:50:58 +04:00
& state - > setup . nt1 . in . user ,
& state - > setup . nt1 . in . domain ) ;
2023-08-04 08:21:18 +03:00
2005-01-16 14:15:08 +03:00
2005-10-14 07:57:35 +04:00
if ( session - > transport - > negotiate . sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE ) {
2016-03-26 20:08:16 +03:00
if ( ! cli_credentials_is_anonymous ( io - > in . credentials ) & &
session - > options . ntlmv2_auth & &
session - > transport - > options . use_spnego )
{
/*
* Don ' t send an NTLMv2_RESPONSE without NTLMSSP
* if we want to use spnego
*/
return NT_STATUS_INVALID_PARAMETER ;
}
2023-08-04 08:21:18 +03:00
nt_status = cli_credentials_get_ntlm_response ( io - > in . credentials , state ,
& flags ,
session - > transport - > negotiate . secblob ,
2015-11-20 11:29:11 +03:00
NULL , /* server_timestamp */
2005-10-14 07:57:35 +04:00
names_blob ,
& state - > setup . nt1 . in . password1 ,
& state - > setup . nt1 . in . password2 ,
NULL , & session_key ) ;
2006-03-15 05:42:21 +03:00
NT_STATUS_NOT_OK_RETURN ( nt_status ) ;
2008-02-21 20:09:47 +03:00
} else if ( session - > options . plaintext_auth ) {
2008-04-25 18:08:52 +04:00
const char * password = cli_credentials_get_password ( io - > in . credentials ) ;
r6028: A MAJOR update to intergrate the new credentails system fully with
GENSEC, and to pull SCHANNEL into GENSEC, by making it less 'special'.
GENSEC now no longer has it's own handling of 'set username' etc,
instead it uses cli_credentials calls.
In order to link the credentails code right though Samba, a lot of
interfaces have changed to remove 'username, domain, password'
arguments, and these have been replaced with a single 'struct
cli_credentials'.
In the session setup code, a new parameter 'workgroup' contains the
client/server current workgroup, which seems unrelated to the
authentication exchange (it was being filled in from the auth info).
This allows in particular kerberos to only call back for passwords
when it actually needs to perform the kinit.
The kerberos code has been modified not to use the SPNEGO provided
'principal name' (in the mechListMIC), but to instead use the name the
host was connected to as. This better matches Microsoft behaviour,
is more secure and allows better use of standard kerberos functions.
To achieve this, I made changes to our socket code so that the
hostname (before name resolution) is now recorded on the socket.
In schannel, most of the code from librpc/rpc/dcerpc_schannel.c is now
in libcli/auth/schannel.c, and it looks much more like a standard
GENSEC module. The actual sign/seal code moved to
libcli/auth/schannel_sign.c in a previous commit.
The schannel credentails structure is now merged with the rest of the
credentails, as many of the values (username, workstation, domain)
where already present there. This makes handling this in a generic
manner much easier, as there is no longer a custom entry-point.
The auth_domain module continues to be developed, but is now just as
functional as auth_winbind. The changes here are consequential to the
schannel changes.
The only removed function at this point is the RPC-LOGIN test
(simulating the load of a WinXP login), which needs much more work to
clean it up (it contains copies of too much code from all over the
torture suite, and I havn't been able to penetrate its 'structure').
Andrew Bartlett
(This used to be commit 2301a4b38a21aa60917973451687063d83d18d66)
2005-03-24 07:14:06 +03:00
state - > setup . nt1 . in . password1 = data_blob_talloc ( state , password , strlen ( password ) ) ;
2005-01-16 14:15:08 +03:00
state - > setup . nt1 . in . password2 = data_blob ( NULL , 0 ) ;
2005-06-19 17:26:32 +04:00
} else {
/* could match windows client and return 'cannot logon from this workstation', but it just confuses everybody */
2005-08-23 09:29:37 +04:00
return NT_STATUS_INVALID_PARAMETER ;
2005-01-16 14:15:08 +03:00
}
2005-08-23 09:29:37 +04:00
* req = smb_raw_sesssetup_send ( session , & state - > setup ) ;
if ( ! * req ) {
return NT_STATUS_NO_MEMORY ;
}
2008-09-09 20:02:07 +04:00
2014-03-28 16:05:49 +04:00
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
/*
* plain text = > no signing
*/
return ( * req ) - > status ;
}
2011-09-23 10:35:17 +04:00
2014-03-28 16:05:49 +04:00
if ( cli_credentials_is_anonymous ( io - > in . credentials ) ) {
/*
* anonymous = > no signing
*/
return ( * req ) - > status ;
}
smb1cli_conn_activate_signing ( session - > transport - > conn ,
session_key ,
state - > setup . nt1 . in . password2 ) ;
nt_status = smb1cli_session_set_session_key ( session - > smbXcli ,
session_key ) ;
data_blob_free ( & session_key ) ;
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
return nt_status ;
2008-09-09 20:02:07 +04:00
}
2005-08-23 09:29:37 +04:00
return ( * req ) - > status ;
2005-01-16 14:15:08 +03:00
}
/*
old style session setup ( pre NT1 protocol level )
*/
2005-08-23 09:29:37 +04:00
static NTSTATUS session_setup_old ( struct composite_context * c ,
2023-08-04 08:21:18 +03:00
struct smbcli_session * session ,
2005-08-23 09:29:37 +04:00
struct smb_composite_sesssetup * io ,
2023-08-04 08:21:18 +03:00
struct smbcli_request * * req )
2005-01-16 14:15:08 +03:00
{
2005-10-14 07:57:35 +04:00
NTSTATUS nt_status ;
2011-04-07 16:05:04 +04:00
struct sesssetup_state * state = talloc_get_type ( c - > private_data ,
struct sesssetup_state ) ;
r6028: A MAJOR update to intergrate the new credentails system fully with
GENSEC, and to pull SCHANNEL into GENSEC, by making it less 'special'.
GENSEC now no longer has it's own handling of 'set username' etc,
instead it uses cli_credentials calls.
In order to link the credentails code right though Samba, a lot of
interfaces have changed to remove 'username, domain, password'
arguments, and these have been replaced with a single 'struct
cli_credentials'.
In the session setup code, a new parameter 'workgroup' contains the
client/server current workgroup, which seems unrelated to the
authentication exchange (it was being filled in from the auth info).
This allows in particular kerberos to only call back for passwords
when it actually needs to perform the kinit.
The kerberos code has been modified not to use the SPNEGO provided
'principal name' (in the mechListMIC), but to instead use the name the
host was connected to as. This better matches Microsoft behaviour,
is more secure and allows better use of standard kerberos functions.
To achieve this, I made changes to our socket code so that the
hostname (before name resolution) is now recorded on the socket.
In schannel, most of the code from librpc/rpc/dcerpc_schannel.c is now
in libcli/auth/schannel.c, and it looks much more like a standard
GENSEC module. The actual sign/seal code moved to
libcli/auth/schannel_sign.c in a previous commit.
The schannel credentails structure is now merged with the rest of the
credentails, as many of the values (username, workstation, domain)
where already present there. This makes handling this in a generic
manner much easier, as there is no longer a custom entry-point.
The auth_domain module continues to be developed, but is now just as
functional as auth_winbind. The changes here are consequential to the
schannel changes.
The only removed function at this point is the RPC-LOGIN test
(simulating the load of a WinXP login), which needs much more work to
clean it up (it contains copies of too much code from all over the
torture suite, and I havn't been able to penetrate its 'structure').
Andrew Bartlett
(This used to be commit 2301a4b38a21aa60917973451687063d83d18d66)
2005-03-24 07:14:06 +03:00
const char * password = cli_credentials_get_password ( io - > in . credentials ) ;
2011-04-07 16:05:04 +04:00
/*
* domain controllers tend to reject the NTLM v2 blob
* if the netbiosname is not valid ( e . g . IP address or FQDN )
* so just leave it away ( as Windows client do )
*/
2005-10-14 07:57:35 +04:00
DATA_BLOB session_key ;
2005-01-16 14:15:08 +03:00
state - > setup . old . level = RAW_SESSSETUP_OLD ;
state - > setup . old . in . bufsize = session - > transport - > options . max_xmit ;
state - > setup . old . in . mpx_max = session - > transport - > options . max_mux ;
state - > setup . old . in . vc_num = 1 ;
state - > setup . old . in . sesskey = io - > in . sesskey ;
state - > setup . old . in . os = " Unix " ;
2005-06-19 17:26:32 +04:00
state - > setup . old . in . lanman = talloc_asprintf ( state , " Samba %s " , SAMBA_VERSION_STRING ) ;
2023-08-04 08:21:18 +03:00
cli_credentials_get_ntlm_username_domain ( io - > in . credentials , state ,
2005-09-22 05:50:58 +04:00
& state - > setup . old . in . user ,
& state - > setup . old . in . domain ) ;
2023-08-04 08:21:18 +03:00
2005-10-14 07:57:35 +04:00
if ( session - > transport - > negotiate . sec_mode & NEGOTIATE_SECURITY_CHALLENGE_RESPONSE ) {
2016-03-26 20:08:16 +03:00
DATA_BLOB names_blob = data_blob_null ;
int flags = 0 ;
if ( ! cli_credentials_is_anonymous ( io - > in . credentials ) & &
! session - > options . lanman_auth )
{
return NT_STATUS_INVALID_PARAMETER ;
}
flags | = CLI_CRED_LANMAN_AUTH ;
2023-08-04 08:21:18 +03:00
nt_status = cli_credentials_get_ntlm_response ( io - > in . credentials , state ,
& flags ,
session - > transport - > negotiate . secblob ,
2015-11-20 11:29:11 +03:00
NULL , /* server_timestamp */
2005-10-14 07:57:35 +04:00
names_blob ,
& state - > setup . old . in . password ,
NULL ,
NULL , & session_key ) ;
2006-03-15 05:42:21 +03:00
NT_STATUS_NOT_OK_RETURN ( nt_status ) ;
2012-08-01 10:57:40 +04:00
nt_status = smb1cli_session_set_session_key ( session - > smbXcli ,
session_key ) ;
2005-10-14 07:57:35 +04:00
data_blob_free ( & session_key ) ;
2012-08-01 10:57:40 +04:00
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
return nt_status ;
}
2008-02-21 20:09:47 +03:00
} else if ( session - > options . plaintext_auth ) {
2005-10-14 07:57:35 +04:00
state - > setup . old . in . password = data_blob_talloc ( state , password , strlen ( password ) ) ;
2005-01-16 14:15:08 +03:00
} else {
2005-10-14 07:57:35 +04:00
/* could match windows client and return 'cannot logon from this workstation', but it just confuses everybody */
return NT_STATUS_INVALID_PARAMETER ;
2005-01-16 14:15:08 +03:00
}
2023-08-04 08:21:18 +03:00
2005-08-23 09:29:37 +04:00
* req = smb_raw_sesssetup_send ( session , & state - > setup ) ;
if ( ! * req ) {
return NT_STATUS_NO_MEMORY ;
}
return ( * req ) - > status ;
2005-01-16 14:15:08 +03:00
}
2017-05-16 01:10:33 +03:00
static NTSTATUS session_setup_spnego_restart ( struct composite_context * c ,
struct smbcli_session * session ,
struct smb_composite_sesssetup * io )
2005-01-16 14:15:08 +03:00
{
2005-09-26 15:47:55 +04:00
struct sesssetup_state * state = talloc_get_type ( c - > private_data , struct sesssetup_state ) ;
2008-09-09 20:02:07 +04:00
NTSTATUS status ;
r6028: A MAJOR update to intergrate the new credentails system fully with
GENSEC, and to pull SCHANNEL into GENSEC, by making it less 'special'.
GENSEC now no longer has it's own handling of 'set username' etc,
instead it uses cli_credentials calls.
In order to link the credentails code right though Samba, a lot of
interfaces have changed to remove 'username, domain, password'
arguments, and these have been replaced with a single 'struct
cli_credentials'.
In the session setup code, a new parameter 'workgroup' contains the
client/server current workgroup, which seems unrelated to the
authentication exchange (it was being filled in from the auth info).
This allows in particular kerberos to only call back for passwords
when it actually needs to perform the kinit.
The kerberos code has been modified not to use the SPNEGO provided
'principal name' (in the mechListMIC), but to instead use the name the
host was connected to as. This better matches Microsoft behaviour,
is more secure and allows better use of standard kerberos functions.
To achieve this, I made changes to our socket code so that the
hostname (before name resolution) is now recorded on the socket.
In schannel, most of the code from librpc/rpc/dcerpc_schannel.c is now
in libcli/auth/schannel.c, and it looks much more like a standard
GENSEC module. The actual sign/seal code moved to
libcli/auth/schannel_sign.c in a previous commit.
The schannel credentails structure is now merged with the rest of the
credentails, as many of the values (username, workstation, domain)
where already present there. This makes handling this in a generic
manner much easier, as there is no longer a custom entry-point.
The auth_domain module continues to be developed, but is now just as
functional as auth_winbind. The changes here are consequential to the
schannel changes.
The only removed function at this point is the RPC-LOGIN test
(simulating the load of a WinXP login), which needs much more work to
clean it up (it contains copies of too much code from all over the
torture suite, and I havn't been able to penetrate its 'structure').
Andrew Bartlett
(This used to be commit 2301a4b38a21aa60917973451687063d83d18d66)
2005-03-24 07:14:06 +03:00
2011-10-17 11:22:33 +04:00
status = gensec_client_start ( session , & session - > gensec ,
2008-11-02 04:05:48 +03:00
io - > in . gensec_settings ) ;
2005-01-16 14:15:08 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 1 , ( " Failed to start GENSEC client mode: %s \n " , nt_errstr ( status ) ) ) ;
2005-08-23 09:29:37 +04:00
return status ;
2005-01-16 14:15:08 +03:00
}
gensec_want_feature ( session - > gensec , GENSEC_FEATURE_SESSION_KEY ) ;
r6028: A MAJOR update to intergrate the new credentails system fully with
GENSEC, and to pull SCHANNEL into GENSEC, by making it less 'special'.
GENSEC now no longer has it's own handling of 'set username' etc,
instead it uses cli_credentials calls.
In order to link the credentails code right though Samba, a lot of
interfaces have changed to remove 'username, domain, password'
arguments, and these have been replaced with a single 'struct
cli_credentials'.
In the session setup code, a new parameter 'workgroup' contains the
client/server current workgroup, which seems unrelated to the
authentication exchange (it was being filled in from the auth info).
This allows in particular kerberos to only call back for passwords
when it actually needs to perform the kinit.
The kerberos code has been modified not to use the SPNEGO provided
'principal name' (in the mechListMIC), but to instead use the name the
host was connected to as. This better matches Microsoft behaviour,
is more secure and allows better use of standard kerberos functions.
To achieve this, I made changes to our socket code so that the
hostname (before name resolution) is now recorded on the socket.
In schannel, most of the code from librpc/rpc/dcerpc_schannel.c is now
in libcli/auth/schannel.c, and it looks much more like a standard
GENSEC module. The actual sign/seal code moved to
libcli/auth/schannel_sign.c in a previous commit.
The schannel credentails structure is now merged with the rest of the
credentails, as many of the values (username, workstation, domain)
where already present there. This makes handling this in a generic
manner much easier, as there is no longer a custom entry-point.
The auth_domain module continues to be developed, but is now just as
functional as auth_winbind. The changes here are consequential to the
schannel changes.
The only removed function at this point is the RPC-LOGIN test
(simulating the load of a WinXP login), which needs much more work to
clean it up (it contains copies of too much code from all over the
torture suite, and I havn't been able to penetrate its 'structure').
Andrew Bartlett
(This used to be commit 2301a4b38a21aa60917973451687063d83d18d66)
2005-03-24 07:14:06 +03:00
status = gensec_set_credentials ( session - > gensec , io - > in . credentials ) ;
2005-01-16 14:15:08 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2023-08-04 08:21:18 +03:00
DEBUG ( 1 , ( " Failed to start set GENSEC client credentials: %s \n " ,
r6028: A MAJOR update to intergrate the new credentails system fully with
GENSEC, and to pull SCHANNEL into GENSEC, by making it less 'special'.
GENSEC now no longer has it's own handling of 'set username' etc,
instead it uses cli_credentials calls.
In order to link the credentails code right though Samba, a lot of
interfaces have changed to remove 'username, domain, password'
arguments, and these have been replaced with a single 'struct
cli_credentials'.
In the session setup code, a new parameter 'workgroup' contains the
client/server current workgroup, which seems unrelated to the
authentication exchange (it was being filled in from the auth info).
This allows in particular kerberos to only call back for passwords
when it actually needs to perform the kinit.
The kerberos code has been modified not to use the SPNEGO provided
'principal name' (in the mechListMIC), but to instead use the name the
host was connected to as. This better matches Microsoft behaviour,
is more secure and allows better use of standard kerberos functions.
To achieve this, I made changes to our socket code so that the
hostname (before name resolution) is now recorded on the socket.
In schannel, most of the code from librpc/rpc/dcerpc_schannel.c is now
in libcli/auth/schannel.c, and it looks much more like a standard
GENSEC module. The actual sign/seal code moved to
libcli/auth/schannel_sign.c in a previous commit.
The schannel credentails structure is now merged with the rest of the
credentails, as many of the values (username, workstation, domain)
where already present there. This makes handling this in a generic
manner much easier, as there is no longer a custom entry-point.
The auth_domain module continues to be developed, but is now just as
functional as auth_winbind. The changes here are consequential to the
schannel changes.
The only removed function at this point is the RPC-LOGIN test
(simulating the load of a WinXP login), which needs much more work to
clean it up (it contains copies of too much code from all over the
torture suite, and I havn't been able to penetrate its 'structure').
Andrew Bartlett
(This used to be commit 2301a4b38a21aa60917973451687063d83d18d66)
2005-03-24 07:14:06 +03:00
nt_errstr ( status ) ) ) ;
2005-08-23 09:29:37 +04:00
return status ;
2005-01-16 14:15:08 +03:00
}
2011-09-23 10:35:17 +04:00
status = gensec_set_target_hostname ( session - > gensec ,
smbXcli_conn_remote_name ( session - > transport - > conn ) ) ;
2005-01-16 14:15:08 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2023-08-04 08:21:18 +03:00
DEBUG ( 1 , ( " Failed to start set GENSEC target hostname: %s \n " ,
2005-01-16 14:15:08 +03:00
nt_errstr ( status ) ) ) ;
2005-08-23 09:29:37 +04:00
return status ;
2005-01-16 14:15:08 +03:00
}
2005-05-10 14:07:18 +04:00
status = gensec_set_target_service ( session - > gensec , " cifs " ) ;
2005-01-16 14:15:08 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2023-08-04 08:21:18 +03:00
DEBUG ( 1 , ( " Failed to start set GENSEC target service: %s \n " ,
2005-01-16 14:15:08 +03:00
nt_errstr ( status ) ) ) ;
2005-08-23 09:29:37 +04:00
return status ;
2005-01-16 14:15:08 +03:00
}
2017-05-16 01:01:07 +03:00
state - > setup . spnego . out . secblob =
session - > transport - > negotiate . secblob ;
2005-01-16 14:15:08 +03:00
if ( session - > transport - > negotiate . secblob . length ) {
2017-06-15 00:24:10 +03:00
state - > chosen_oid = GENSEC_OID_SPNEGO ;
status = gensec_start_mech_by_oid ( session - > gensec ,
state - > chosen_oid ) ;
2006-03-06 02:06:37 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 1 , ( " Failed to start set GENSEC client mechanism %s: %s \n " ,
2017-06-15 00:24:10 +03:00
gensec_get_name_by_oid ( session - > gensec ,
state - > chosen_oid ) ,
nt_errstr ( status ) ) ) ;
2017-05-16 01:01:07 +03:00
state - > setup . spnego . out . secblob = data_blob_null ;
2017-06-15 00:24:10 +03:00
state - > chosen_oid = GENSEC_OID_NTLMSSP ;
status = gensec_start_mech_by_oid ( session - > gensec ,
state - > chosen_oid ) ;
2006-03-06 02:06:37 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 1 , ( " Failed to start set (fallback) GENSEC client mechanism %s: %s \n " ,
2017-06-15 00:24:10 +03:00
gensec_get_name_by_oid ( session - > gensec ,
state - > chosen_oid ) ,
2008-11-03 01:58:49 +03:00
nt_errstr ( status ) ) ) ;
2017-05-16 01:01:07 +03:00
return status ;
2006-03-06 02:06:37 +03:00
}
}
2005-01-16 14:15:08 +03:00
} else {
/* without a sec blob, means raw NTLMSSP */
2017-06-15 00:24:10 +03:00
state - > chosen_oid = GENSEC_OID_NTLMSSP ;
status = gensec_start_mech_by_oid ( session - > gensec ,
state - > chosen_oid ) ;
2006-02-09 06:06:02 +03:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2006-03-06 02:06:37 +03:00
DEBUG ( 1 , ( " Failed to start set GENSEC client mechanism %s: %s \n " ,
2017-06-15 00:24:10 +03:00
gensec_get_name_by_oid ( session - > gensec ,
state - > chosen_oid ) ,
nt_errstr ( status ) ) ) ;
2017-05-16 01:10:33 +03:00
return status ;
2006-02-09 06:06:02 +03:00
}
2005-01-16 14:15:08 +03:00
}
2006-03-06 02:06:37 +03:00
2017-05-16 01:10:33 +03:00
state - > gensec_status = NT_STATUS_MORE_PROCESSING_REQUIRED ;
state - > remote_status = NT_STATUS_MORE_PROCESSING_REQUIRED ;
return NT_STATUS_OK ;
}
/*
Modern , all singing , all dancing extended security ( and possibly SPNEGO ) request
*/
static NTSTATUS session_setup_spnego ( struct composite_context * c ,
struct smbcli_session * session ,
struct smb_composite_sesssetup * io ,
struct smbcli_request * * req )
{
struct sesssetup_state * state = talloc_get_type ( c - > private_data , struct sesssetup_state ) ;
state - > setup . spnego . level = RAW_SESSSETUP_SPNEGO ;
state - > setup . spnego . in . bufsize = session - > transport - > options . max_xmit ;
state - > setup . spnego . in . mpx_max = session - > transport - > options . max_mux ;
state - > setup . spnego . in . vc_num = 1 ;
state - > setup . spnego . in . sesskey = io - > in . sesskey ;
state - > setup . spnego . in . capabilities = io - > in . capabilities ;
state - > setup . spnego . in . os = " Unix " ;
state - > setup . spnego . in . lanman = talloc_asprintf ( state , " Samba %s " , SAMBA_VERSION_STRING ) ;
state - > setup . spnego . in . workgroup = io - > in . workgroup ;
2005-08-23 09:29:37 +04:00
* req = smb_raw_sesssetup_send ( session , & state - > setup ) ;
if ( ! * req ) {
return NT_STATUS_NO_MEMORY ;
}
2008-09-09 20:02:07 +04:00
/*
* we need to check the signature ourself
* as the session key might be the acceptor subkey
* which comes within the response itself
*/
2011-09-23 10:35:17 +04:00
if ( ! smb1cli_conn_signing_is_active ( ( * req ) - > transport - > conn ) ) {
( * req ) - > sign_caller_checks = true ;
}
2008-09-09 20:02:07 +04:00
2005-08-23 09:29:37 +04:00
return ( * req ) - > status ;
2005-01-16 14:15:08 +03:00
}
/*
composite session setup function that hides the details of all the
2023-08-03 15:34:51 +03:00
different session setup variants , including the multi - pass nature of
the spnego variant
2005-01-16 14:15:08 +03:00
*/
2023-08-04 08:21:18 +03:00
struct composite_context * smb_composite_sesssetup_send ( struct smbcli_session * session ,
2005-03-26 13:22:02 +03:00
struct smb_composite_sesssetup * io )
2005-01-16 14:15:08 +03:00
{
2005-01-31 11:30:44 +03:00
struct composite_context * c ;
2005-01-16 14:15:08 +03:00
struct sesssetup_state * state ;
2005-08-23 09:29:37 +04:00
NTSTATUS status ;
2020-07-07 13:54:26 +03:00
enum smb_encryption_setting encryption_state =
cli_credentials_get_smb_encryption ( io - > in . credentials ) ;
2016-11-24 11:12:59 +03:00
enum credentials_use_kerberos krb5_state =
cli_credentials_get_kerberos_state ( io - > in . credentials ) ;
2005-01-16 14:15:08 +03:00
2011-11-22 12:36:30 +04:00
c = composite_create ( session , session - > transport - > ev ) ;
2005-08-23 09:29:37 +04:00
if ( c = = NULL ) return NULL ;
2005-01-16 14:15:08 +03:00
2020-07-07 13:54:26 +03:00
if ( encryption_state > SMB_ENCRYPTION_DESIRED ) {
composite_error ( c , NT_STATUS_PROTOCOL_NOT_SUPPORTED ) ;
return c ;
}
2007-05-01 13:06:25 +04:00
state = talloc_zero ( c , struct sesssetup_state ) ;
if ( composite_nomem ( state , c ) ) return c ;
c - > private_data = state ;
2005-01-16 14:15:08 +03:00
2017-06-15 00:24:10 +03:00
state - > session = session ;
2005-01-17 00:58:28 +03:00
state - > io = io ;
2007-05-01 13:06:25 +04:00
talloc_set_destructor ( state , sesssetup_state_destructor ) ;
2005-01-16 14:15:08 +03:00
2023-08-03 15:34:51 +03:00
/* no session setup at all in earliest protocol variants */
2005-01-16 14:15:08 +03:00
if ( session - > transport - > negotiate . protocol < PROTOCOL_LANMAN1 ) {
2016-11-24 11:12:59 +03:00
if ( krb5_state = = CRED_USE_KERBEROS_REQUIRED ) {
composite_error ( c , NT_STATUS_NETWORK_CREDENTIAL_CONFLICT ) ;
return c ;
}
2005-01-16 14:15:08 +03:00
ZERO_STRUCT ( io - > out ) ;
2006-07-27 20:20:59 +04:00
composite_done ( c ) ;
2005-01-16 14:15:08 +03:00
return c ;
}
/* see what session setup interface we will use */
if ( session - > transport - > negotiate . protocol < PROTOCOL_NT1 ) {
2016-11-24 11:12:59 +03:00
if ( krb5_state = = CRED_USE_KERBEROS_REQUIRED ) {
composite_error ( c , NT_STATUS_NETWORK_CREDENTIAL_CONFLICT ) ;
return c ;
}
2005-08-23 09:29:37 +04:00
status = session_setup_old ( c , session , io , & state - > req ) ;
2005-01-16 14:15:08 +03:00
} else if ( ! session - > transport - > options . use_spnego | |
! ( io - > in . capabilities & CAP_EXTENDED_SECURITY ) ) {
2016-11-24 11:12:59 +03:00
if ( krb5_state = = CRED_USE_KERBEROS_REQUIRED ) {
composite_error ( c , NT_STATUS_NETWORK_CREDENTIAL_CONFLICT ) ;
return c ;
}
2005-08-23 09:29:37 +04:00
status = session_setup_nt1 ( c , session , io , & state - > req ) ;
2005-01-16 14:15:08 +03:00
} else {
2017-06-15 00:24:10 +03:00
struct tevent_req * subreq = NULL ;
2017-05-16 01:16:14 +03:00
status = session_setup_spnego_restart ( c , session , io ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 1 , ( " session_setup_spnego_restart() failed: %s \n " ,
nt_errstr ( status ) ) ) ;
c - > status = status ;
composite_error ( c , c - > status ) ;
return c ;
}
2017-06-15 00:24:10 +03:00
subreq = gensec_update_send ( state , c - > event_ctx ,
session - > gensec ,
state - > setup . spnego . out . secblob ) ;
if ( composite_nomem ( subreq , c ) ) {
2017-05-16 01:25:45 +03:00
return c ;
}
2017-06-15 00:24:10 +03:00
tevent_req_set_callback ( subreq ,
smb_composite_sesssetup_spnego_done1 ,
c ) ;
return c ;
2005-01-16 14:15:08 +03:00
}
2023-08-04 08:21:18 +03:00
if ( NT_STATUS_EQUAL ( status , NT_STATUS_MORE_PROCESSING_REQUIRED ) | |
2005-08-23 09:29:37 +04:00
NT_STATUS_IS_OK ( status ) ) {
2023-08-04 08:21:18 +03:00
composite_continue_smb ( c , state - > req , request_handler , c ) ;
2005-08-23 09:29:37 +04:00
return c ;
}
2005-01-16 14:15:08 +03:00
2007-05-01 13:06:25 +04:00
composite_error ( c , status ) ;
2005-01-16 14:15:08 +03:00
return c ;
}
2017-06-15 00:24:10 +03:00
static void smb_composite_sesssetup_spnego_done1 ( struct tevent_req * subreq )
{
struct composite_context * c =
tevent_req_callback_data ( subreq ,
struct composite_context ) ;
struct sesssetup_state * state =
talloc_get_type_abort ( c - > private_data ,
struct sesssetup_state ) ;
NTSTATUS status ;
status = gensec_update_recv ( subreq , state ,
& state - > setup . spnego . in . secblob ) ;
TALLOC_FREE ( subreq ) ;
if ( GENSEC_UPDATE_IS_NTERROR ( status ) ) {
DEBUG ( 1 , ( " Failed initial gensec_update with mechanism %s: %s \n " ,
gensec_get_name_by_oid ( state - > session - > gensec ,
state - > chosen_oid ) ,
nt_errstr ( status ) ) ) ;
c - > status = status ;
composite_error ( c , c - > status ) ;
return ;
}
state - > gensec_status = status ;
status = session_setup_spnego ( c , state - > session , state - > io , & state - > req ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
c - > status = status ;
composite_error ( c , c - > status ) ;
return ;
}
composite_continue_smb ( c , state - > req , request_handler , c ) ;
}
2005-01-16 14:15:08 +03:00
2017-06-15 01:03:14 +03:00
static void smb_composite_sesssetup_spnego_done2 ( struct tevent_req * subreq )
{
struct composite_context * c =
tevent_req_callback_data ( subreq ,
struct composite_context ) ;
struct sesssetup_state * state =
talloc_get_type_abort ( c - > private_data ,
struct sesssetup_state ) ;
struct smbcli_session * session = state - > session ;
NTSTATUS status ;
const char * os = NULL ;
const char * lanman = NULL ;
status = gensec_update_recv ( subreq , state ,
& state - > setup . spnego . in . secblob ) ;
TALLOC_FREE ( subreq ) ;
if ( GENSEC_UPDATE_IS_NTERROR ( status ) ) {
DEBUG ( 1 , ( " Failed initial gensec_update with mechanism %s: %s \n " ,
gensec_get_name_by_oid ( state - > session - > gensec ,
state - > chosen_oid ) ,
nt_errstr ( status ) ) ) ;
c - > status = status ;
composite_error ( c , c - > status ) ;
return ;
}
state - > gensec_status = status ;
if ( NT_STATUS_IS_OK ( state - > remote_status ) ) {
if ( state - > setup . spnego . in . secblob . length ) {
c - > status = NT_STATUS_INTERNAL_ERROR ;
composite_error ( c , c - > status ) ;
return ;
}
}
if ( state - > setup . spnego . in . secblob . length ) {
/*
* set the session - > vuid value only for calling
* smb_raw_sesssetup_send ( )
*/
uint16_t vuid = session - > vuid ;
session - > vuid = state - > io - > out . vuid ;
state - > req = smb_raw_sesssetup_send ( session , & state - > setup ) ;
session - > vuid = vuid ;
if ( state - > req & &
! smb1cli_conn_signing_is_active ( state - > req - > transport - > conn ) ) {
state - > req - > sign_caller_checks = true ;
}
composite_continue_smb ( c , state - > req , request_handler , c ) ;
return ;
}
if ( cli_credentials_is_anonymous ( state - > io - > in . credentials ) ) {
/*
* anonymous = > no signing
*/
} else if ( NT_STATUS_IS_OK ( state - > remote_status ) ) {
NTSTATUS session_key_err ;
DATA_BLOB session_key ;
session_key_err = gensec_session_key ( session - > gensec , session , & session_key ) ;
if ( NT_STATUS_IS_OK ( session_key_err ) ) {
smb1cli_conn_activate_signing ( session - > transport - > conn ,
session_key ,
data_blob_null ) ;
}
c - > status = smb1cli_session_set_session_key ( session - > smbXcli ,
session_key ) ;
data_blob_free ( & session_key ) ;
if ( ! NT_STATUS_IS_OK ( c - > status ) ) {
composite_error ( c , c - > status ) ;
return ;
}
}
os = state - > setup . spnego . out . os ;
lanman = state - > setup . spnego . out . lanman ;
if ( state - > check_req ) {
struct smbcli_request * check_req = state - > check_req ;
bool ok ;
check_req - > sign_caller_checks = false ;
ok = smb1cli_conn_check_signing ( check_req - > transport - > conn ,
check_req - > in . buffer , 1 ) ;
TALLOC_FREE ( check_req ) ;
if ( ! ok ) {
c - > status = NT_STATUS_ACCESS_DENIED ;
composite_error ( c , c - > status ) ;
return ;
}
}
if ( os ) {
session - > os = talloc_strdup ( session , os ) ;
if ( composite_nomem ( session - > os , c ) ) return ;
} else {
session - > os = NULL ;
}
if ( lanman ) {
session - > lanman = talloc_strdup ( session , lanman ) ;
if ( composite_nomem ( session - > lanman , c ) ) return ;
} else {
session - > lanman = NULL ;
}
composite_done ( c ) ;
}
2005-01-16 14:15:08 +03:00
/*
receive a composite session setup reply
*/
2005-01-31 11:30:44 +03:00
NTSTATUS smb_composite_sesssetup_recv ( struct composite_context * c )
2005-01-16 14:15:08 +03:00
{
NTSTATUS status ;
2005-01-31 11:30:44 +03:00
status = composite_wait ( c ) ;
2005-01-16 14:15:08 +03:00
talloc_free ( c ) ;
return status ;
}
/*
2023-08-04 08:21:18 +03:00
sync version of smb_composite_sesssetup
2005-01-16 14:15:08 +03:00
*/
NTSTATUS smb_composite_sesssetup ( struct smbcli_session * session , struct smb_composite_sesssetup * io )
{
2005-01-31 11:30:44 +03:00
struct composite_context * c = smb_composite_sesssetup_send ( session , io ) ;
2005-01-16 14:15:08 +03:00
return smb_composite_sesssetup_recv ( c ) ;
}