2 Unix SMB/Netbios implementation.
5 Copyright (C) Andrew Tridgell 1994-1998
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 extern pstring global_myname;
35 extern pstring user_socket_options;
38 extern pstring debugf;
39 extern int DEBUGLEVEL;
42 extern file_info def_finfo;
44 #define CNV_LANG(s) dos2unix_format(s,False)
45 #define CNV_INPUT(s) unix2dos_format(s,True)
47 static struct cli_state smbcli;
48 struct cli_state *smb_cli = &smbcli;
52 static pstring password; /* local copy only, if one is entered */
54 /****************************************************************************
55 initialise smb client structure
56 ****************************************************************************/
57 void rpcclient_init(void)
59 bzero(smb_cli, sizeof(smb_cli));
60 cli_initialise(smb_cli);
61 smb_cli->capabilities |= CAP_NT_SMBS;
64 /****************************************************************************
65 make smb client connection
66 ****************************************************************************/
67 static BOOL rpcclient_connect(struct client_info *info)
69 struct nmb_name calling;
70 struct nmb_name called;
72 make_nmb_name(&called , dns_to_netbios_name(info->dest_host ), info->name_type, scope);
73 make_nmb_name(&calling, dns_to_netbios_name(info->myhostname), 0x0 , scope);
75 if (!cli_establish_connection(smb_cli,
76 info->dest_host, &info->dest_ip,
78 info->share, info->svc_type,
81 DEBUG(0,("rpcclient_connect: connection failed\n"));
82 cli_shutdown(smb_cli);
89 /****************************************************************************
90 stop the smb connection(s?)
91 ****************************************************************************/
92 static void rpcclient_stop(void)
94 cli_shutdown(smb_cli);
97 /****************************************************************************
98 log in as an nt user, log out again.
99 ****************************************************************************/
100 void run_enums_test(int num_ops, struct client_info *cli_info, struct cli_state *cli)
104 /* establish connections. nothing to stop these being re-established. */
105 rpcclient_connect(cli_info);
107 DEBUG(5,("rpcclient_connect: cli->fd:%d\n", cli->fd));
110 fprintf(out_hnd, "warning: connection could not be established to %s<%02x>\n",
111 cli_info->dest_host, cli_info->name_type);
115 for (i = 0; i < num_ops; i++)
117 cmd_srv_enum_sess(cli_info);
118 cmd_srv_enum_shares(cli_info);
119 cmd_srv_enum_files(cli_info);
120 cmd_srv_enum_conn(cli_info);
127 /****************************************************************************
128 log in as an nt user, log out again.
129 ****************************************************************************/
130 void run_ntlogin_test(int num_ops, struct client_info *cli_info, struct cli_state *cli)
135 /* establish connections. nothing to stop these being re-established. */
136 rpcclient_connect(cli_info);
138 DEBUG(5,("rpcclient_connect: cli->fd:%d\n", cli->fd));
141 fprintf(out_hnd, "warning: connection could not be established to %s<%02x>\n",
142 cli_info->dest_host, cli_info->name_type);
146 for (i = 0; i < num_ops; i++)
148 slprintf(cmd, sizeof(cmd)-1, "%s %s", cli->user_name, password);
149 set_first_token(cmd);
151 cmd_netlogon_login_test(cli_info);
158 /****************************************************************************
159 runs n simultaneous functions.
160 ****************************************************************************/
161 static void create_procs(int nprocs, int numops,
162 struct client_info *cli_info, struct cli_state *cli,
163 void (*fn)(int, struct client_info *, struct cli_state *))
167 for (i=0;i<nprocs;i++)
171 int mypid = getpid();
172 sys_srandom(mypid ^ time(NULL));
173 fn(numops, cli_info, cli);
179 for (i=0;i<nprocs;i++)
181 waitpid(0, &status, 0);
184 /****************************************************************************
185 usage on the program - OUT OF DATE!
186 ****************************************************************************/
187 static void usage(char *pname)
189 fprintf(out_hnd, "Usage: %s service <password> [-d debuglevel] [-l log] ",
192 fprintf(out_hnd, "\nVersion %s\n",VERSION);
193 fprintf(out_hnd, "\t-d debuglevel set the debuglevel\n");
194 fprintf(out_hnd, "\t-l log basename. Basename for log/debug files\n");
195 fprintf(out_hnd, "\t-n netbios name. Use this name as my netbios name\n");
196 fprintf(out_hnd, "\t-m max protocol set the max protocol level\n");
197 fprintf(out_hnd, "\t-I dest IP use this IP to connect to\n");
198 fprintf(out_hnd, "\t-E write messages to stderr instead of stdout\n");
199 fprintf(out_hnd, "\t-U username set the network username\n");
200 fprintf(out_hnd, "\t-W workgroup set the workgroup name\n");
201 fprintf(out_hnd, "\t-t terminal code terminal i/o code {sjis|euc|jis7|jis8|junet|hex}\n");
202 fprintf(out_hnd, "\n");
212 /****************************************************************************
214 ****************************************************************************/
215 int main(int argc,char *argv[])
217 char *pname = argv[0];
222 static pstring servicesf = CONFIGFILE;
224 BOOL got_pass = False;
226 mode_t myumask = 0755;
227 enum client_action cli_action = CLIENT_NONE;
231 struct client_info cli_info;
238 pstrcpy(term_code, KANJI);
243 if (!lp_load(servicesf,True, False, False))
245 fprintf(stderr, "Can't load %s - run testparm to debug it\n", servicesf);
248 codepage_initialise(lp_client_code_page());
252 cli_info.put_total_size = 0;
253 cli_info.put_total_time_ms = 0;
254 cli_info.get_total_size = 0;
255 cli_info.get_total_time_ms = 0;
257 cli_info.dir_total = 0;
258 cli_info.newer_than = 0;
259 cli_info.archive_level = 0;
260 cli_info.print_mode = 1;
262 cli_info.translation = False;
263 cli_info.recurse_dir = False;
264 cli_info.lowercase = False;
265 cli_info.prompt = True;
266 cli_info.abort_mget = True;
268 cli_info.dest_ip.s_addr = 0;
269 cli_info.name_type = 0x20;
271 pstrcpy(cli_info.cur_dir , "\\");
272 pstrcpy(cli_info.file_sel, "");
273 pstrcpy(cli_info.base_dir, "");
274 pstrcpy(smb_cli->domain, "");
275 pstrcpy(smb_cli->user_name, "");
276 pstrcpy(cli_info.myhostname, "");
277 pstrcpy(cli_info.dest_host, "");
279 pstrcpy(cli_info.svc_type, "A:");
280 pstrcpy(cli_info.share, "");
281 pstrcpy(cli_info.service, "");
283 pstrcpy(cli_info.dom.level3_sid, "");
284 pstrcpy(cli_info.dom.level3_dom, "");
285 pstrcpy(cli_info.dom.level5_sid, "");
286 pstrcpy(cli_info.dom.level5_dom, "");
288 smb_cli->nt_pipe_fnum = 0xffff;
290 setup_logging(pname, True);
293 charset_initialise();
298 if (!get_myname(global_myname, NULL))
300 fprintf(stderr, "Failed to get my hostname.\n");
313 pstrcpy(cli_info.service, argv[1]);
314 /* Convert any '/' characters in the service name to '\' characters */
315 string_replace( cli_info.service, '/','\\');
319 DEBUG(1,("service: %s\n", cli_info.service));
321 if (count_chars(cli_info.service,'\\') < 3)
324 printf("\n%s: Not enough '\\' characters in service\n", cli_info.service);
329 if (count_chars(cli_info.service,'\\') > 3)
332 printf("\n%s: Too many '\\' characters in service\n", cli_info.service);
337 if (argc > 1 && (*argv[1] != '-'))
340 pstrcpy(password,argv[1]);
341 memset(argv[1],'X',strlen(argv[1]));
346 cli_action = CLIENT_SVC;
349 while ((opt = getopt(argc, argv,"s:B:O:M:S:i:N:o:n:d:l:hI:EB:U:L:t:m:W:T:D:c:")) != EOF)
355 /* FIXME ... max_protocol seems to be funny here */
357 int max_protocol = 0;
358 max_protocol = interpret_protocol(optarg,max_protocol);
359 fprintf(stderr, "max protocol not currently supported\n");
365 pstrcpy(user_socket_options,optarg);
371 pstrcpy(cli_info.dest_host,optarg);
372 strupper(cli_info.dest_host);
373 cli_action = CLIENT_IPC;
379 iface_set_default(NULL,optarg,NULL);
385 pstrcpy(scope, optarg);
392 pstrcpy(smb_cli->user_name,optarg);
393 if ((lp=strchr(smb_cli->user_name,'%')))
396 pstrcpy(password,lp+1);
398 memset(strchr(optarg,'%')+1,'X',strlen(password));
405 pstrcpy(smb_cli->domain,optarg);
417 cli_info.dest_ip = *interpret_addr2(optarg);
418 if (zero_ip(cli_info.dest_ip))
427 nprocs = atoi(optarg);
433 numops = atoi(optarg);
439 fstrcpy(global_myname, optarg);
448 DEBUGLEVEL = atoi(optarg);
454 slprintf(debugf, sizeof(debugf)-1,
475 pstrcpy(servicesf, optarg);
481 pstrcpy(term_code, optarg);
494 if (cli_action == CLIENT_NONE)
500 strupper(global_myname);
501 fstrcpy(cli_info.myhostname, global_myname);
503 DEBUG(3,("%s client started (version %s)\n",timestring(),VERSION));
505 if (*smb_cli->domain == 0)
507 pstrcpy(smb_cli->domain,lp_workgroup());
509 strupper(smb_cli->domain);
513 if (cli_action == CLIENT_IPC)
515 pstrcpy(cli_info.share, "IPC$");
516 pstrcpy(cli_info.svc_type, "IPC");
519 fstrcpy(cli_info.mach_acct, cli_info.myhostname);
520 strupper(cli_info.mach_acct);
521 fstrcat(cli_info.mach_acct, "$");
523 /* set the password cache info */
526 if (password[0] == 0)
528 pwd_set_nullpwd(&(smb_cli->pwd));
532 pwd_make_lm_nt_16(&(smb_cli->pwd), password); /* generate 16 byte hashes */
537 char *pwd = getpass("Enter Password:");
538 safe_strcpy(password, pwd, sizeof(password));
539 pwd_make_lm_nt_16(&(smb_cli->pwd), password); /* generate 16 byte hashes */
542 create_procs(nprocs, numops, &cli_info, smb_cli, run_enums_test);
544 if (password[0] != 0)
546 create_procs(nprocs, numops, &cli_info, smb_cli, run_ntlogin_test);