2004-09-24 10:56:11 +04:00
/*
Unix SMB / CIFS implementation .
find security related memory leaks
Copyright ( C ) Andrew Tridgell 2004
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"
2006-01-03 16:41:17 +03:00
# include "torture/torture.h"
2004-11-01 04:03:22 +03:00
# include "libcli/raw/libcliraw.h"
2006-01-03 18:40:05 +03:00
# include "libcli/libcli.h"
2006-03-17 20:59:58 +03:00
# include "torture/util.h"
2004-11-02 03:24:21 +03:00
# include "system/time.h"
2005-09-26 15:47:55 +04:00
# include "libcli/smb_composite/smb_composite.h"
2006-03-14 04:29:56 +03:00
# include "auth/credentials/credentials.h"
2004-09-24 10:56:11 +04:00
static BOOL try_failed_login ( struct smbcli_state * cli )
{
NTSTATUS status ;
2005-01-16 14:15:08 +03:00
struct smb_composite_sesssetup setup ;
2004-09-24 10:56:11 +04:00
struct smbcli_session * session ;
2005-01-24 03:57:14 +03:00
session = smbcli_session_init ( cli - > transport , cli , False ) ;
2005-01-16 14:15:08 +03:00
setup . in . sesskey = cli - > transport - > negotiate . sesskey ;
setup . in . capabilities = cli - > transport - > negotiate . capabilities ;
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
setup . in . workgroup = lp_workgroup ( ) ;
2005-07-26 16:41:29 +04:00
setup . in . credentials = cli_credentials_init ( session ) ;
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
cli_credentials_set_conf ( setup . in . credentials ) ;
cli_credentials_set_domain ( setup . in . credentials , " INVALID-DOMAIN " , CRED_SPECIFIED ) ;
cli_credentials_set_username ( setup . in . credentials , " INVALID-USERNAME " , CRED_SPECIFIED ) ;
cli_credentials_set_password ( setup . in . credentials , " INVALID-PASSWORD " , CRED_SPECIFIED ) ;
2004-09-24 10:56:11 +04:00
2005-01-16 14:15:08 +03:00
status = smb_composite_sesssetup ( session , & setup ) ;
2004-09-27 12:41:39 +04:00
talloc_free ( session ) ;
2004-09-24 10:56:11 +04:00
if ( NT_STATUS_IS_OK ( status ) ) {
printf ( " Allowed session setup with invalid credentials?! \n " ) ;
return False ;
}
return True ;
}
2006-03-25 19:01:28 +03:00
BOOL torture_sec_leak ( struct torture_context * torture )
2004-09-24 10:56:11 +04:00
{
struct smbcli_state * cli ;
time_t t1 = time ( NULL ) ;
2005-07-26 16:41:29 +04:00
int timelimit = lp_parm_int ( - 1 , " torture " , " timelimit " , 20 ) ;
2004-09-24 10:56:11 +04:00
2006-07-10 12:00:06 +04:00
if ( ! torture_open_connection ( & cli , 0 ) ) {
2004-09-24 10:56:11 +04:00
return False ;
}
2005-07-26 16:41:29 +04:00
while ( time ( NULL ) < t1 + timelimit ) {
2004-09-24 10:56:11 +04:00
if ( ! try_failed_login ( cli ) ) {
return False ;
}
2005-07-26 16:41:29 +04:00
talloc_report ( NULL , stdout ) ;
2004-09-24 10:56:11 +04:00
}
return True ;
}