2003-08-13 05:53:07 +04:00
/*
Unix SMB / CIFS implementation .
mask_match tester
Copyright ( C ) Andrew Tridgell 1999
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
2003-08-13 05:53:07 +04: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 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-08-13 05:53:07 +04:00
*/
# include "includes.h"
2020-12-17 19:12:10 +03:00
# include "lib/cmdline/cmdline.h"
2005-02-10 08:09:35 +03:00
# include "system/filesys.h"
2006-04-24 04:16:51 +04:00
# include "system/dir.h"
2006-01-03 18:40:05 +03:00
# include "libcli/libcli.h"
2004-11-02 03:24:21 +03:00
# include "system/time.h"
2006-11-07 03:48:36 +03:00
# include "auth/credentials/credentials.h"
2005-12-31 01:46:16 +03:00
# include "auth/gensec/gensec.h"
2007-09-08 16:42:09 +04:00
# include "param/param.h"
2008-01-03 03:39:01 +03:00
# include "libcli/resolve/resolve.h"
2008-04-22 01:58:23 +04:00
# include "lib/events/events.h"
2003-08-13 05:53:07 +04:00
2007-10-07 02:28:14 +04:00
static bool showall = false ;
static bool old_list = false ;
2003-08-13 05:53:07 +04:00
static const char * maskchars = " <> \" ?*abc. " ;
static const char * filechars = " abcdefghijklm. " ;
static int die_on_error ;
static int NumLoops = 0 ;
2004-10-02 05:42:41 +04:00
static int max_length = 20 ;
2007-12-26 20:38:49 +03:00
struct masktest_state {
TALLOC_CTX * mem_ctx ;
} ;
2003-08-13 05:53:07 +04:00
2007-10-07 02:28:14 +04:00
static bool reg_match_one ( struct smbcli_state * cli , const char * pattern , const char * file )
2003-08-13 05:53:07 +04:00
{
/* oh what a weird world this is */
2007-10-07 02:28:14 +04:00
if ( old_list & & strcmp ( pattern , " *.* " ) = = 0 ) return true ;
2003-08-13 05:53:07 +04:00
2007-10-07 02:28:14 +04:00
if ( ISDOT ( pattern ) ) return false ;
2003-08-13 05:53:07 +04:00
2006-04-24 04:16:51 +04:00
if ( ISDOTDOT ( file ) ) file = " . " ;
2003-08-13 05:53:07 +04:00
2016-10-25 12:53:53 +03:00
return ms_fnmatch_protocol (
2017-02-12 22:12:10 +03:00
pattern , file , cli - > transport - > negotiate . protocol , false ) = = 0 ;
2003-08-13 05:53:07 +04:00
}
2008-10-22 07:14:14 +04:00
static char * reg_test ( struct smbcli_state * cli , TALLOC_CTX * mem_ctx , const char * pattern , const char * long_name , const char * short_name )
2003-08-13 05:53:07 +04:00
{
2008-10-22 07:14:14 +04:00
char * ret ;
ret = talloc_strdup ( mem_ctx , " --- " ) ;
2003-08-13 05:53:07 +04:00
pattern = 1 + strrchr_m ( pattern , ' \\ ' ) ;
if ( reg_match_one ( cli , pattern , " . " ) ) ret [ 0 ] = ' + ' ;
if ( reg_match_one ( cli , pattern , " .. " ) ) ret [ 1 ] = ' + ' ;
if ( reg_match_one ( cli , pattern , long_name ) | |
( * short_name & & reg_match_one ( cli , pattern , short_name ) ) ) ret [ 2 ] = ' + ' ;
return ret ;
}
/*****************************************************
return a connection to a server
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-01-03 03:39:01 +03:00
static struct smbcli_state * connect_one ( struct resolve_context * resolve_ctx ,
2008-12-29 22:24:57 +03:00
struct tevent_context * ev ,
2008-10-22 18:56:06 +04:00
TALLOC_CTX * mem_ctx ,
2008-01-04 02:22:12 +03:00
char * share , const char * * ports ,
2008-11-02 04:50:22 +03:00
const char * socket_options ,
2008-09-30 05:07:08 +04:00
struct smbcli_options * options ,
2008-10-24 15:13:27 +04:00
struct smbcli_session_options * session_options ,
2008-11-02 18:07:28 +03:00
struct gensec_settings * gensec_settings )
2003-08-13 05:53:07 +04:00
{
2004-08-04 17:23:35 +04:00
struct smbcli_state * c ;
2008-10-22 18:56:06 +04:00
char * server ;
2003-08-13 05:53:07 +04:00
NTSTATUS status ;
2020-12-17 19:12:10 +03:00
struct cli_credentials * creds = samba_cmdline_get_creds ( ) ;
2003-08-13 05:53:07 +04:00
2008-10-22 18:56:06 +04:00
server = talloc_strdup ( mem_ctx , share + 2 ) ;
2003-08-13 05:53:07 +04:00
share = strchr_m ( server , ' \\ ' ) ;
2008-10-22 18:49:56 +04:00
if ( ! share ) return NULL ;
2003-08-13 05:53:07 +04:00
* share = 0 ;
share + + ;
2020-12-17 19:12:10 +03:00
cli_credentials_set_workstation ( creds ,
2017-05-10 02:10:03 +03:00
" masktest " , CRED_SPECIFIED ) ;
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 = smbcli_full_connection ( NULL , & c ,
2005-01-15 14:58:52 +03:00
server ,
2007-12-12 04:15:29 +03:00
ports ,
2005-01-15 14:58:52 +03:00
share , NULL ,
2008-11-02 04:50:22 +03:00
socket_options ,
2020-12-17 19:12:10 +03:00
creds ,
2017-05-10 02:10:03 +03:00
resolve_ctx , ev ,
2008-10-24 15:13:27 +04:00
options , session_options ,
2008-11-02 18:07:28 +03:00
gensec_settings ) ;
2003-08-13 05:53:07 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
return NULL ;
}
return c ;
}
static char * resultp ;
static struct {
2007-12-26 19:25:07 +03:00
char * long_name ;
char * short_name ;
2003-08-13 05:53:07 +04:00
} last_hit ;
2007-10-07 02:28:14 +04:00
static bool f_info_hit ;
2003-08-13 05:53:07 +04:00
2004-11-30 08:37:57 +03:00
static void listfn ( struct clilist_file_info * f , const char * s , void * state )
2003-08-13 05:53:07 +04:00
{
2008-02-15 07:26:20 +03:00
struct masktest_state * m = ( struct masktest_state * ) state ;
2007-12-26 20:38:49 +03:00
2006-04-24 04:16:51 +04:00
if ( ISDOT ( f - > name ) ) {
2003-08-13 05:53:07 +04:00
resultp [ 0 ] = ' + ' ;
2006-04-24 04:16:51 +04:00
} else if ( ISDOTDOT ( f - > name ) ) {
2007-12-26 19:25:07 +03:00
resultp [ 1 ] = ' + ' ;
2003-08-13 05:53:07 +04:00
} else {
resultp [ 2 ] = ' + ' ;
}
2007-12-26 20:38:49 +03:00
last_hit . long_name = talloc_strdup ( m - > mem_ctx , f - > name ) ;
last_hit . short_name = talloc_strdup ( m - > mem_ctx , f - > short_name ) ;
2007-10-07 02:28:14 +04:00
f_info_hit = true ;
2003-08-13 05:53:07 +04:00
}
2007-12-26 19:25:07 +03:00
static void get_real_name ( TALLOC_CTX * mem_ctx , struct smbcli_state * cli ,
2008-10-22 07:14:14 +04:00
char * * long_name , char * * short_name )
2003-08-13 05:53:07 +04:00
{
const char * mask ;
2007-12-26 20:38:49 +03:00
struct masktest_state state ;
2004-08-10 00:51:16 +04:00
if ( cli - > transport - > negotiate . protocol < = PROTOCOL_LANMAN1 ) {
2003-08-13 05:53:07 +04:00
mask = " \\ masktest \\ *.* " ;
} else {
mask = " \\ masktest \\ * " ;
}
2007-10-07 02:28:14 +04:00
f_info_hit = false ;
2007-12-26 20:38:49 +03:00
state . mem_ctx = mem_ctx ;
2003-08-13 05:53:07 +04:00
2007-12-26 19:25:07 +03:00
smbcli_list_new ( cli - > tree , mask ,
FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY ,
2006-07-06 12:00:24 +04:00
RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO ,
2007-12-26 20:38:49 +03:00
listfn , & state ) ;
2003-08-13 05:53:07 +04:00
if ( f_info_hit ) {
2011-05-03 06:16:16 +04:00
* short_name = strlower_talloc ( mem_ctx , last_hit . short_name ) ;
* long_name = strlower_talloc ( mem_ctx , last_hit . long_name ) ;
2003-08-13 05:53:07 +04:00
}
2017-06-01 15:28:08 +03:00
if ( * short_name [ 0 ] = = ' \0 ' ) {
2008-10-22 07:14:14 +04:00
* short_name = talloc_strdup ( mem_ctx , * long_name ) ;
2003-08-13 05:53:07 +04:00
}
}
2007-12-26 19:25:07 +03:00
static void testpair ( TALLOC_CTX * mem_ctx , struct smbcli_state * cli , char * mask ,
char * file )
2003-08-13 05:53:07 +04:00
{
int fnum ;
2008-10-22 18:49:56 +04:00
char res1 [ 256 ] ;
2003-08-13 05:53:07 +04:00
char * res2 ;
static int count ;
2008-10-22 07:14:14 +04:00
char * short_name = NULL ;
2008-02-15 07:26:20 +03:00
char * long_name = NULL ;
2007-12-26 20:38:49 +03:00
struct masktest_state state ;
2003-08-13 05:53:07 +04:00
count + + ;
2011-05-04 00:10:01 +04:00
strlcpy ( res1 , " --- " , sizeof ( res1 ) ) ;
2003-08-13 05:53:07 +04:00
2007-12-26 20:38:49 +03:00
state . mem_ctx = mem_ctx ;
2004-08-04 17:23:35 +04:00
fnum = smbcli_open ( cli - > tree , file , O_CREAT | O_TRUNC | O_RDWR , 0 ) ;
2003-08-13 05:53:07 +04:00
if ( fnum = = - 1 ) {
DEBUG ( 0 , ( " Can't create %s \n " , file ) ) ;
return ;
}
2004-08-04 17:23:35 +04:00
smbcli_close ( cli - > tree , fnum ) ;
2003-08-13 05:53:07 +04:00
resultp = res1 ;
2008-10-22 18:49:56 +04:00
short_name = talloc_strdup ( mem_ctx , " " ) ;
2008-10-22 07:14:14 +04:00
get_real_name ( mem_ctx , cli , & long_name , & short_name ) ;
2011-05-04 00:10:01 +04:00
strlcpy ( res1 , " --- " , sizeof ( res1 ) ) ;
2007-12-26 20:38:49 +03:00
smbcli_list_new ( cli - > tree , mask ,
FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY ,
2006-07-06 12:00:24 +04:00
RAW_SEARCH_DATA_BOTH_DIRECTORY_INFO ,
2007-12-26 20:38:49 +03:00
listfn , & state ) ;
2003-08-13 05:53:07 +04:00
2008-10-22 07:14:14 +04:00
res2 = reg_test ( cli , mem_ctx , mask , long_name , short_name ) ;
2003-08-13 05:53:07 +04:00
if ( showall | | strcmp ( res1 , res2 ) ) {
d_printf ( " %s %s %d mask=[%s] file=[%s] rfile=[%s/%s] \n " ,
res1 , res2 , count , mask , file , long_name , short_name ) ;
if ( die_on_error ) exit ( 1 ) ;
}
2004-08-04 17:23:35 +04:00
smbcli_unlink ( cli - > tree , file ) ;
2003-08-13 05:53:07 +04:00
if ( count % 100 = = 0 ) DEBUG ( 0 , ( " %d \n " , count ) ) ;
2006-04-08 06:55:16 +04:00
resultp = NULL ;
2003-08-13 05:53:07 +04:00
}
2007-12-26 19:25:07 +03:00
static void test_mask ( int argc , char * argv [ ] ,
2008-10-22 18:56:06 +04:00
TALLOC_CTX * mem_ctx ,
2004-08-04 17:23:35 +04:00
struct smbcli_state * cli )
2003-08-13 05:53:07 +04:00
{
2007-12-26 19:25:07 +03:00
char * mask , * file ;
2003-08-13 05:53:07 +04:00
int l1 , l2 , i , l ;
int mc_len = strlen ( maskchars ) ;
int fc_len = strlen ( filechars ) ;
2004-08-04 17:23:35 +04:00
smbcli_mkdir ( cli - > tree , " \\ masktest " ) ;
2003-08-13 05:53:07 +04:00
2021-12-02 05:08:32 +03:00
smbcli_unlink_wcard ( cli - > tree , " \\ masktest \\ * " ) ;
2003-08-13 05:53:07 +04:00
if ( argc > = 2 ) {
while ( argc > = 2 ) {
2007-12-26 20:38:49 +03:00
mask = talloc_strdup ( mem_ctx , " \\ masktest \\ " ) ;
file = talloc_strdup ( mem_ctx , " \\ masktest \\ " ) ;
mask = talloc_strdup_append ( mask , argv [ 0 ] ) ;
file = talloc_strdup_append ( file , argv [ 1 ] ) ;
2007-12-26 19:25:07 +03:00
testpair ( mem_ctx , cli , mask , file ) ;
2003-08-13 05:53:07 +04:00
argv + = 2 ;
argc - = 2 ;
}
goto finished ;
}
while ( 1 ) {
2004-10-02 05:42:41 +04:00
l1 = 1 + random ( ) % max_length ;
l2 = 1 + random ( ) % max_length ;
2007-12-26 20:38:49 +03:00
mask = talloc_strdup ( mem_ctx , " \\ masktest \\ " ) ;
file = talloc_strdup ( mem_ctx , " \\ masktest \\ " ) ;
2008-02-15 07:26:20 +03:00
mask = talloc_realloc_size ( mem_ctx , mask , strlen ( mask ) + l1 + 1 ) ;
file = talloc_realloc_size ( mem_ctx , file , strlen ( file ) + l2 + 1 ) ;
2003-08-13 05:53:07 +04:00
l = strlen ( mask ) ;
for ( i = 0 ; i < l1 ; i + + ) {
mask [ i + l ] = maskchars [ random ( ) % mc_len ] ;
}
mask [ l + l1 ] = 0 ;
for ( i = 0 ; i < l2 ; i + + ) {
file [ i + l ] = filechars [ random ( ) % fc_len ] ;
}
file [ l + l2 ] = 0 ;
2006-04-24 04:16:51 +04:00
if ( ISDOT ( file + l ) | | ISDOTDOT ( file + l ) | | ISDOTDOT ( mask + l ) ) {
continue ;
}
2003-08-13 05:53:07 +04:00
if ( strspn ( file + l , " . " ) = = strlen ( file + l ) ) continue ;
2007-12-26 19:25:07 +03:00
testpair ( mem_ctx , cli , mask , file ) ;
2003-08-13 05:53:07 +04:00
if ( NumLoops & & ( - - NumLoops = = 0 ) )
break ;
}
finished :
2004-08-04 17:23:35 +04:00
smbcli_rmdir ( cli - > tree , " \\ masktest " ) ;
2003-08-13 05:53:07 +04:00
}
2008-02-15 07:26:20 +03:00
static void usage ( poptContext pc )
2003-08-13 05:53:07 +04:00
{
printf (
" Usage: \n \
masktest / / server / share [ options . . ] \ n \
\ n \
This program tests wildcard matching between two servers . It generates \ n \
random pairs of filenames / masks and tests that they match in the same \ n \
2008-02-15 07:26:20 +03:00
way on the servers and internally \ n " );
poptPrintUsage ( pc , stdout , 0 ) ;
2003-08-13 05:53:07 +04:00
}
/****************************************************************************
main program
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2014-02-27 12:08:17 +04:00
int main ( int argc , const char * argv [ ] )
2003-08-13 05:53:07 +04:00
{
char * share ;
2004-08-04 17:23:35 +04:00
struct smbcli_state * cli ;
2003-08-13 05:53:07 +04:00
int opt ;
int seed ;
2008-12-29 22:24:57 +03:00
struct tevent_context * ev ;
2007-12-04 02:12:13 +03:00
struct loadparm_context * lp_ctx ;
2008-01-04 02:22:12 +03:00
struct smbcli_options options ;
2008-09-30 05:07:08 +04:00
struct smbcli_session_options session_options ;
2008-02-15 07:26:20 +03:00
poptContext pc ;
int argc_new , i ;
char * * argv_new ;
2017-04-25 02:11:22 +03:00
TALLOC_CTX * mem_ctx = NULL ;
2008-02-15 07:26:20 +03:00
enum { OPT_UNCLIST = 1000 } ;
struct poptOption long_options [ ] = {
POPT_AUTOHELP
{ " seed " , 0 , POPT_ARG_INT , & seed , 0 , " Seed to use for randomizer " , NULL } ,
{ " num-ops " , 0 , POPT_ARG_INT , & NumLoops , 0 , " num ops " , NULL } ,
{ " maxlength " , 0 , POPT_ARG_INT , & max_length , 0 , " maximum length " , NULL } ,
{ " dieonerror " , 0 , POPT_ARG_NONE , & die_on_error , 0 , " die on errors " , NULL } ,
{ " showall " , 0 , POPT_ARG_NONE , & showall , 0 , " display all operations " , NULL } ,
{ " oldlist " , 0 , POPT_ARG_NONE , & old_list , 0 , " use old list call " , NULL } ,
{ " maskchars " , 0 , POPT_ARG_STRING , & maskchars , 0 , " mask characters " , NULL } ,
{ " filechars " , 0 , POPT_ARG_STRING , & filechars , 0 , " file characters " , NULL } ,
POPT_COMMON_SAMBA
POPT_COMMON_CONNECTION
POPT_COMMON_CREDENTIALS
POPT_COMMON_VERSION
2020-12-17 19:12:10 +03:00
POPT_LEGACY_S4
POPT_TABLEEND
2008-02-15 07:26:20 +03:00
} ;
2020-12-17 19:12:10 +03:00
bool ok ;
2003-08-13 05:53:07 +04:00
setlinebuf ( stdout ) ;
2008-02-15 07:26:20 +03:00
seed = time ( NULL ) ;
2003-08-13 05:53:07 +04:00
2017-04-25 02:11:22 +03:00
mem_ctx = talloc_named_const ( NULL , 0 , " masktest_ctx " ) ;
if ( mem_ctx = = NULL ) {
exit ( 1 ) ;
}
2020-12-17 19:12:10 +03:00
ok = samba_cmdline_init ( mem_ctx ,
SAMBA_CMDLINE_CONFIG_CLIENT ,
false /* require_smbconf */ ) ;
if ( ! ok ) {
DBG_ERR ( " Failed to init cmdline parser! \n " ) ;
exit ( 1 ) ;
}
pc = samba_popt_get_context ( getprogname ( ) ,
argc ,
argv ,
long_options ,
POPT_CONTEXT_KEEP_FIRST ) ;
if ( pc = = NULL ) {
DBG_ERR ( " Failed to setup popt context! \n " ) ;
exit ( 1 ) ;
}
2003-08-13 05:53:07 +04:00
2008-02-15 07:26:20 +03:00
poptSetOtherOptionHelp ( pc , " <unc> " ) ;
2003-08-13 05:53:07 +04:00
2020-12-17 19:12:10 +03:00
lp_ctx = samba_cmdline_get_lp_ctx ( ) ;
2008-02-15 07:26:20 +03:00
while ( ( opt = poptGetNextOpt ( pc ) ) ! = - 1 ) {
switch ( opt ) {
case OPT_UNCLIST :
2020-12-17 19:12:10 +03:00
lpcfg_set_cmdline ( lp_ctx ,
" torture:unclist " ,
poptGetOptArg ( pc ) ) ;
2008-02-15 07:26:20 +03:00
break ;
2021-09-10 08:27:51 +03:00
case POPT_ERROR_BADOPT :
fprintf ( stderr , " \n Invalid option %s: %s \n \n " ,
poptBadOption ( pc , 0 ) , poptStrerror ( opt ) ) ;
poptPrintUsage ( pc , stderr , 0 ) ;
exit ( 1 ) ;
2008-02-15 07:26:20 +03:00
}
}
2003-08-13 05:53:07 +04:00
2008-02-15 07:26:20 +03:00
argv_new = discard_const_p ( char * , poptGetArgs ( pc ) ) ;
argc_new = argc ;
for ( i = 0 ; i < argc ; i + + ) {
if ( argv_new [ i ] = = NULL ) {
argc_new = i ;
break ;
}
}
2003-08-13 05:53:07 +04:00
2008-02-15 07:26:20 +03:00
if ( ! ( argc_new > = 2 ) ) {
usage ( pc ) ;
2017-04-25 02:11:22 +03:00
talloc_free ( mem_ctx ) ;
2008-02-15 07:26:20 +03:00
exit ( 1 ) ;
}
2003-08-13 05:53:07 +04:00
2008-02-15 07:26:20 +03:00
setup_logging ( " masktest " , DEBUG_STDOUT ) ;
2003-08-13 05:53:07 +04:00
2008-02-15 07:26:20 +03:00
share = argv_new [ 1 ] ;
2003-08-13 05:53:07 +04:00
2008-02-15 07:26:20 +03:00
all_string_sub ( share , " / " , " \\ " , 0 ) ;
2003-08-13 05:53:07 +04:00
2008-10-22 18:56:06 +04:00
ev = s4_event_context_init ( mem_ctx ) ;
2008-04-22 01:58:23 +04:00
2011-06-06 08:58:28 +04:00
gensec_init ( ) ;
2004-11-09 12:26:47 +03:00
2010-07-16 08:32:42 +04:00
lpcfg_smbcli_options ( lp_ctx , & options ) ;
lpcfg_smbcli_session_options ( lp_ctx , & session_options ) ;
2008-01-04 02:22:12 +03:00
2010-07-16 08:32:42 +04:00
cli = connect_one ( lpcfg_resolve_context ( lp_ctx ) , ev , mem_ctx , share ,
lpcfg_smb_ports ( lp_ctx ) , lpcfg_socket_options ( lp_ctx ) ,
2008-11-02 04:50:22 +03:00
& options , & session_options ,
2010-07-16 08:32:42 +04:00
lpcfg_gensec_settings ( mem_ctx , lp_ctx ) ) ;
2003-08-13 05:53:07 +04:00
if ( ! cli ) {
DEBUG ( 0 , ( " Failed to connect to %s \n " , share ) ) ;
2017-04-25 02:11:22 +03:00
talloc_free ( mem_ctx ) ;
2003-08-13 05:53:07 +04:00
exit ( 1 ) ;
}
/* need to init seed after connect as clientgen uses random numbers */
2004-08-10 00:51:16 +04:00
DEBUG ( 0 , ( " seed=%d format --- --- (server, correct) \n " , seed ) ) ;
2003-08-13 05:53:07 +04:00
srandom ( seed ) ;
2008-10-22 18:56:06 +04:00
test_mask ( argc_new - 1 , argv_new + 1 , mem_ctx , cli ) ;
2003-08-13 05:53:07 +04:00
2019-08-19 15:18:06 +03:00
poptFreeContext ( pc ) ;
2017-04-25 02:11:22 +03:00
talloc_free ( mem_ctx ) ;
2003-08-13 05:53:07 +04:00
return ( 0 ) ;
}