2004-06-17 04:31:24 +04:00
/*
Unix SMB / CIFS implementation .
dcerpc torture tests
Copyright ( C ) Andrew Tridgell 2003
Copyright ( C ) Andrew Bartlett < abartlet @ samba . org 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 13:30:34 +03:00
# include "librpc/gen_ndr/ndr_lsa.h"
2006-05-28 01:39:56 +04:00
# include "librpc/gen_ndr/ndr_lsa_c.h"
2005-03-22 00:22:07 +03:00
# include "lib/cmdline/popt_common.h"
2006-03-18 18:42:57 +03:00
# include "librpc/rpc/dcerpc.h"
2006-03-14 18:02:05 +03:00
# include "torture/rpc/rpc.h"
2006-05-28 01:39:56 +04:00
# include "libcli/libcli.h"
# include "libcli/composite/composite.h"
# include "libcli/smb_composite/smb_composite.h"
2004-06-17 04:31:24 +04:00
2004-06-18 15:58:43 +04:00
/*
This test is ' bogus ' in that it doesn ' t actually perform to the
spec . We need to deal with other things inside the DCERPC layer ,
before we could have multiple binds .
2004-06-17 04:31:24 +04:00
2004-06-18 15:58:43 +04:00
We should never pass this test , until such details are fixed in our
client , and it looks like multible binds are never used anyway .
*/
2004-06-17 04:31:24 +04:00
2006-03-25 19:01:28 +03:00
BOOL torture_multi_bind ( struct torture_context * torture )
2004-06-17 04:31:24 +04:00
{
struct dcerpc_pipe * p ;
struct dcerpc_binding * binding ;
2006-10-18 18:23:19 +04:00
const char * binding_string = torture_setting_string ( torture , " binding " , NULL ) ;
2004-06-17 04:31:24 +04:00
TALLOC_CTX * mem_ctx ;
NTSTATUS status ;
BOOL ret ;
2004-06-19 08:31:12 +04:00
mem_ctx = talloc_init ( " torture_multi_bind " ) ;
r5902: A rather large change...
I wanted to add a simple 'workstation' argument to the DCERPC
authenticated binding calls, but this patch kind of grew from there.
With SCHANNEL, the 'workstation' name (the netbios name of the client)
matters, as this is what ties the session between the NETLOGON ops and
the SCHANNEL bind. This changes a lot of files, and these will again
be changed when jelmer does the credentials work.
I also correct some schannel IDL to distinguish between workstation
names and account names. The distinction matters for domain trust
accounts.
Issues in handling this (issues with lifetime of talloc pointers)
caused me to change the 'creds_CredentialsState' and 'struct
dcerpc_binding' pointers to always be talloc()ed pointers.
In the schannel DB, we now store both the domain and computername, and
query on both. This should ensure we fault correctly when the domain
is specified incorrectly in the SCHANNEL bind.
In the RPC-SCHANNEL test, I finally fixed a bug that vl pointed out,
where the comment claimed we re-used a connection, but in fact we made
a new connection.
This was achived by breaking apart some of the
dcerpc_secondary_connection() logic.
The addition of workstation handling was also propogated to NTLMSSP
and GENSEC, for completeness.
The RPC-SAMSYNC test has been cleaned up a little, using a loop over
usernames/passwords rather than manually expanded tests. This will be
expanded further (the code in #if 0 in this patch) to use a newly
created user account for testing.
In making this test pass test_rpc.sh, I found a bug in the RPC-ECHO
server, caused by the removal of [ref] and the assoicated pointer from
the IDL. This has been re-added, until the underlying pidl issues are
solved.
(This used to be commit 824289dcc20908ddec957a4a892a103eec2da9b9)
2005-03-19 11:34:43 +03:00
status = dcerpc_parse_binding ( mem_ctx , binding_string , & binding ) ;
2004-06-17 04:31:24 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2005-03-01 19:08:36 +03:00
printf ( " Failed to parse dcerpc binding '%s' \n " , binding_string ) ;
2005-01-27 10:08:20 +03:00
talloc_free ( mem_ctx ) ;
2004-06-17 04:31:24 +04:00
return False ;
}
2005-12-27 17:28:01 +03:00
status = torture_rpc_connection ( mem_ctx , & p , & dcerpc_table_lsarpc ) ;
2004-06-17 04:31:24 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2005-03-22 11:00:45 +03:00
talloc_free ( mem_ctx ) ;
2004-06-17 04:31:24 +04:00
return False ;
}
2006-05-07 23:55:14 +04:00
status = dcerpc_pipe_auth ( mem_ctx , & p , binding , & dcerpc_table_lsarpc , cmdline_credentials ) ;
2004-06-17 04:31:24 +04:00
if ( NT_STATUS_IS_OK ( status ) ) {
2005-03-01 19:08:36 +03:00
printf ( " (incorrectly) allowed re-bind to uuid %s - %s \n " ,
2006-03-26 04:59:17 +04:00
GUID_string ( mem_ctx , & dcerpc_table_lsarpc . syntax_id . uuid ) , nt_errstr ( status ) ) ;
2004-06-17 04:31:24 +04:00
ret = False ;
} else {
2005-03-01 19:08:36 +03:00
printf ( " \n " ) ;
2004-06-17 04:31:24 +04:00
ret = True ;
}
2005-01-27 10:08:20 +03:00
talloc_free ( mem_ctx ) ;
2004-06-17 04:31:24 +04:00
return ret ;
}