fixing domain join and domain login problems
[samba.git] / source3 / utils / rpctorture.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    SMB client
5    Copyright (C) Andrew Tridgell 1994-1998
6    
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.
11    
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.
16    
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.
20 */
21
22 #ifdef SYSLOG
23 #undef SYSLOG
24 #endif
25
26 #include "includes.h"
27
28 #ifndef REGISTER
29 #define REGISTER 0
30 #endif
31
32 extern pstring scope;
33 extern pstring global_myname;
34
35 extern pstring user_socket_options;
36
37
38 extern pstring debugf;
39 extern int DEBUGLEVEL;
40
41
42 extern file_info def_finfo;
43
44 #define CNV_LANG(s) dos2unix_format(s,False)
45 #define CNV_INPUT(s) unix2dos_format(s,True)
46
47 static struct cli_state smbcli;
48 struct cli_state *smb_cli = &smbcli;
49
50 FILE *out_hnd;
51
52 static pstring user_name; /* local copy only, if one is entered */
53 static pstring password; /* local copy only, if one is entered */
54 static pstring domain; /* local copy only, if one is entered */
55 BOOL got_pass = False;
56
57 static struct nmb_name calling;
58 static struct nmb_name called;
59
60 static void get_passwd(void)
61 {
62         /* set the password cache info */
63         if (got_pass)
64         {
65                 if (password[0] == 0)
66                 {
67                         pwd_set_nullpwd(&(smb_cli->pwd));
68                 }
69                 else
70                 {
71                         pwd_make_lm_nt_16(&(smb_cli->pwd), password); /* generate 16 byte hashes */
72                 }
73         }
74         else 
75         {
76                 char *pwd = getpass("Enter Password:");
77                 safe_strcpy(password, pwd, sizeof(password));
78                 pwd_make_lm_nt_16(&(smb_cli->pwd), password); /* generate 16 byte hashes */
79                 got_pass = True;
80         }
81 }
82
83 /****************************************************************************
84 initialise smb client structure
85 ****************************************************************************/
86 void rpcclient_init(void)
87 {
88         bzero(smb_cli, sizeof(smb_cli));
89         cli_initialise(smb_cli);
90         smb_cli->capabilities |= CAP_NT_SMBS;
91         smb_cli->capabilities |= CAP_STATUS32;
92
93         pstrcpy(smb_cli->user_name, user_name);
94         smb_cli->nt_pipe_fnum   = 0xffff;
95
96         get_passwd();
97
98         if (*domain == 0)
99         {
100                 pstrcpy(smb_cli->domain,lp_workgroup());
101         }
102         else
103         {
104                 pstrcpy(smb_cli->domain, domain);
105         }
106
107         strupper(smb_cli->domain);
108 }
109
110 /****************************************************************************
111 make smb client connection
112 ****************************************************************************/
113 static BOOL rpcclient_connect(struct client_info *info)
114 {
115         rpcclient_init();
116
117         if (!cli_establish_connection(smb_cli, 
118                                   info->dest_host, &info->dest_ip, 
119                                   &calling, &called,
120                                   info->share, info->svc_type,
121                                   False, True))
122         {
123                 DEBUG(0,("rpcclient_connect: connection failed\n"));
124                 cli_shutdown(smb_cli);
125                 return False;
126         }
127
128         return True;
129 }
130
131 /****************************************************************************
132 stop the smb connection(s?)
133 ****************************************************************************/
134 static void rpcclient_stop(void)
135 {
136         cli_shutdown(smb_cli);
137 }
138
139 /****************************************************************************
140   log in as an nt user, log out again. 
141 ****************************************************************************/
142 void run_enums_test(int num_ops, struct client_info *cli_info)
143 {
144         pstring cmd;
145         int i;
146
147         /* establish connections.  nothing to stop these being re-established. */
148         rpcclient_connect(cli_info);
149
150         DEBUG(5,("rpcclient_connect: smb_cli->fd:%d\n", smb_cli->fd));
151         if (smb_cli->fd <= 0)
152         {
153                 fprintf(out_hnd, "warning: connection could not be established to %s<%02x>\n",
154                                  cli_info->dest_host, cli_info->name_type);
155                 return;
156         }
157         
158         for (i = 0; i < num_ops; i++)
159         {
160                 set_first_token("");
161                 cmd_srv_enum_sess(cli_info);
162                 set_first_token("");
163                 cmd_srv_enum_shares(cli_info);
164                 set_first_token("");
165                 cmd_srv_enum_files(cli_info);
166
167                 if (password[0] != 0)
168                 {
169                         slprintf(cmd, sizeof(cmd)-1, "1");
170                         set_first_token(cmd);
171                 }
172                 else
173                 {
174                         set_first_token("");
175                 }
176                 cmd_srv_enum_conn(cli_info);
177         }
178
179         rpcclient_stop();
180
181 }
182
183 /****************************************************************************
184   log in as an nt user, log out again. 
185 ****************************************************************************/
186 void run_ntlogin_test(int num_ops, struct client_info *cli_info)
187 {
188         pstring cmd;
189         int i;
190
191         /* establish connections.  nothing to stop these being re-established. */
192         rpcclient_connect(cli_info);
193
194         DEBUG(5,("rpcclient_connect: smb_cli->fd:%d\n", smb_cli->fd));
195         if (smb_cli->fd <= 0)
196         {
197                 fprintf(out_hnd, "warning: connection could not be established to %s<%02x>\n",
198                                  cli_info->dest_host, cli_info->name_type);
199                 return;
200         }
201         
202         for (i = 0; i < num_ops; i++)
203         {
204                 slprintf(cmd, sizeof(cmd)-1, "%s %s", smb_cli->user_name, password);
205                 set_first_token(cmd);
206
207                 cmd_netlogon_login_test(cli_info);
208         }
209
210         rpcclient_stop();
211
212 }
213
214 /* generate a random buffer */
215 static void rand_buf(char *buf, int len)
216 {
217         while (len--) {
218                 *buf = sys_random();
219                 buf++;
220         }
221 }
222
223 /****************************************************************************
224 do a random rpc command
225 ****************************************************************************/
226 BOOL do_random_rpc(struct cli_state *cli, int max_len)
227 {
228         prs_struct rbuf;
229         prs_struct buf; 
230         uint8 opcode;
231         int param_len;
232         BOOL response = False;
233
234         if ((sys_random() % 20) == 0)
235         {
236                 param_len = (sys_random() % 256) + 4;
237         }
238         else
239         {
240                 param_len = (sys_random() % max_len) + 4;
241         }
242
243         prs_init(&buf , param_len, 4, SAFETY_MARGIN, False);
244         prs_init(&rbuf, 0        , 4, SAFETY_MARGIN, True );
245
246         opcode = sys_random() % 256;
247
248         /* turn parameters into data stream */
249         rand_buf(mem_data(&buf.data, 0), param_len);
250         buf.offset = param_len;
251
252         /* send the data on \PIPE\ */
253         if (rpc_api_pipe_req(cli, opcode, &buf, &rbuf))
254         {
255                 response = rbuf.offset != 0;
256
257                 if (response)
258                 {
259                         DEBUG(0,("response! opcode: 0x%x\n", opcode));
260                         DEBUG(0,("request: length %d\n", param_len));
261                         dump_data(0, mem_data(&buf.data , 0), MIN(param_len, 128));
262                         DEBUG(0,("response: length %d\n", rbuf.data->offset.end));
263                         dump_data(0, mem_data(&rbuf.data, 0), rbuf.data->offset.end);
264                 }
265         }
266
267         prs_mem_free(&rbuf);
268         prs_mem_free(&buf );
269
270         return response;
271 }
272
273
274 /* send random IPC commands */
275 static void random_rpc_pipe_enc(char *pipe_name, struct client_info *cli_info,
276                 int numops)
277 {
278         int i;
279
280         DEBUG(0,("starting random rpc test on %s (encryped)\n", pipe_name));
281
282         /* establish connections.  nothing to stop these being re-established. */
283         if (!rpcclient_connect(cli_info))
284         {
285                 DEBUG(0,("random rpc test: connection failed\n"));
286                 return;
287         }
288
289         cli_nt_set_ntlmssp_flgs(smb_cli,
290                                     NTLMSSP_NEGOTIATE_UNICODE |
291                                     NTLMSSP_NEGOTIATE_OEM |
292                                     NTLMSSP_NEGOTIATE_SIGN |
293                                     NTLMSSP_NEGOTIATE_SEAL |
294                                     NTLMSSP_NEGOTIATE_LM_KEY |
295                                     NTLMSSP_NEGOTIATE_NTLM |
296                                     NTLMSSP_NEGOTIATE_ALWAYS_SIGN |
297                                     NTLMSSP_NEGOTIATE_00001000 |
298                                     NTLMSSP_NEGOTIATE_00002000);
299
300         for (i = 1; i <= numops * 100; i++)
301         {
302                 /* open session.  */
303                 cli_nt_session_open(smb_cli, pipe_name);
304
305                 do_random_rpc(smb_cli, 1024);
306                 if (i % 500 == 0)
307                 {
308                         DEBUG(0,("calls: %i\n", i));
309                 }
310
311                 /* close the session */
312                 cli_nt_session_close(smb_cli);
313         }
314
315         /* close the rpc pipe */
316         rpcclient_stop();
317
318         DEBUG(0,("finished random rpc test on %s\n", pipe_name));
319 }
320
321 /* send random IPC commands */
322 static void random_rpc_pipe(char *pipe_name, struct client_info *cli_info,
323                 int numops)
324 {
325         int i;
326
327         DEBUG(0,("starting random rpc test on %s\n", pipe_name));
328
329         /* establish connections.  nothing to stop these being re-established. */
330         if (!rpcclient_connect(cli_info))
331         {
332                 DEBUG(0,("random rpc test: connection failed\n"));
333                 return;
334         }
335
336         /* open session.  */
337         if (!cli_nt_session_open(smb_cli, pipe_name))
338         {
339                 DEBUG(0,("random rpc test: session open failed\n"));
340                 return;
341         }
342
343         for (i = 1; i <= numops * 100; i++)
344         {
345                 do_random_rpc(smb_cli, 8192);
346                 if (i % 500 == 0)
347                 {
348                         DEBUG(0,("calls: %i\n", i));
349                 }
350         }
351
352         /* close the session */
353         cli_nt_session_close(smb_cli);
354
355         /* close the rpc pipe */
356         rpcclient_stop();
357
358         DEBUG(0,("finished random rpc test on %s\n", pipe_name));
359 }
360
361 static void run_randomrpc(int numops, struct client_info *cli_info)
362 {
363         char *pipes[] =
364         {
365                 PIPE_SAMR     ,
366                 PIPE_WINREG   ,
367                 PIPE_SRVSVC   ,
368                 PIPE_WKSSVC   ,
369                 PIPE_NETLOGON ,
370                 PIPE_NTSVCS   ,
371                 PIPE_LSARPC   ,
372                 NULL
373         };
374
375         int i = 0;
376
377         while (pipes[i] != NULL)
378         {
379                 random_rpc_pipe(pipes[i], cli_info, numops);
380 #if 0
381                 random_rpc_pipe_enc(pipes[i], cli_info, numops);
382 #endif
383
384                 i++;
385         }
386 }
387
388
389 static void run_samhandles(int numops, struct client_info *cli_info)
390 {
391         int i;
392         int count = 0;
393         int failed = 0;
394         int retry = 500;
395         fstring srv_name;
396         fstrcpy(srv_name, "\\\\");
397         fstrcat(srv_name, cli_info->dest_host);
398         strupper(srv_name);
399
400         DEBUG(0,("starting sam handle test\n"));
401
402         /* establish connections.  nothing to stop these being re-established. */
403         while (retry > 0 && !rpcclient_connect(cli_info))
404         {
405                 retry--;
406         }
407
408         if (retry == 0)
409         {
410                 DEBUG(0,("samhandle test: connection failed\n"));
411                 return;
412         }
413
414         /* open session.  */
415         if (!cli_nt_session_open(smb_cli, PIPE_SAMR))
416         {
417                 DEBUG(0,("samhandle test: session open failed\n"));
418                 return;
419         }
420
421         for (i = 1; i <= numops * 100; i++)
422         {
423                 POLICY_HND pol;
424                 POLICY_HND dom;
425                 if (!do_samr_connect(smb_cli, srv_name, 0x20, &pol))
426                 {
427                         failed++;
428                 }
429 /*
430                 if (!do_samr_open_domain(smb_cli, srv_name, 0x00000020, &pol))
431                 {
432                         DEBUG(0,("samhandle domain open test (%i): failed\n", i));
433                 }
434  */
435                 if (i % 500 == 0)
436                 {
437                         DEBUG(0,("calls: %i\n", i));
438                 }
439                 count++;
440         }
441
442         /* close the session */
443         cli_nt_session_close(smb_cli);
444
445         /* close the rpc pipe */
446         rpcclient_stop();
447
448         DEBUG(0,("finished samhandle test.  count: %d failed: %d\n", count, failed));
449 }
450
451
452 static void run_lsahandles(int numops, struct client_info *cli_info)
453 {
454         int i;
455         int count = 0;
456         int failed = 0;
457         int retry = 500;
458         fstring srv_name;
459         fstrcpy(srv_name, "\\\\");
460         fstrcat(srv_name, cli_info->myhostname);
461         strupper(srv_name);
462
463         DEBUG(0,("starting lsa handle test\n"));
464
465         /* establish connections.  nothing to stop these being re-established. */
466         while (retry > 0 && !rpcclient_connect(cli_info))
467         {
468                 retry--;
469         }
470
471         if (retry == 0)
472         {
473                 DEBUG(0,("lsahandle test: connection failed\n"));
474                 return;
475         }
476         /* open session.  */
477         if (!cli_nt_session_open(smb_cli, PIPE_LSARPC))
478         {
479                 DEBUG(0,("lsahandle test: session open failed\n"));
480                 return;
481         }
482
483         for (i = 1; i <= numops * 100; i++)
484         {
485                 POLICY_HND pol;
486                 if (!do_lsa_open_policy(smb_cli, srv_name, &pol, False))
487                 {
488                         failed++;
489                 }
490                 if (i % 500 == 0)
491                 {
492                         DEBUG(0,("calls: %i\n", i));
493                 }
494                 count++;
495         }
496
497         /* close the session */
498         cli_nt_session_close(smb_cli);
499
500         /* close the rpc pipe */
501         rpcclient_stop();
502
503         DEBUG(0,("finished lsahandle test.  count: %d failed: %d\n", count, failed));
504 }
505
506
507 static void run_pipegobble(int numops, struct client_info *cli_info, char *pipe_name)
508 {
509         int i;
510         int count = 0;
511         int failed = 0;
512         int retry = 500;
513         fstring srv_name;
514         fstrcpy(srv_name, "\\\\");
515         fstrcat(srv_name, cli_info->myhostname);
516         strupper(srv_name);
517
518         DEBUG(0,("starting pipe gobble test (%s)\n", pipe_name));
519
520         /* establish connections.  nothing to stop these being re-established. */
521         while (retry > 0 && !rpcclient_connect(cli_info))
522         {
523                 retry--;
524         }
525
526         if (retry == 0)
527         {
528                 DEBUG(0,("pipe gobble test: connection failed\n"));
529                 return;
530         }
531         for (i = 1; i <= numops * 100; i++)
532         {
533                 /* open session.  */
534                 if (!cli_nt_session_open(smb_cli, pipe_name))
535                 {
536                         DEBUG(0,("pipe gobble test: session open failed\n"));
537                 }
538
539                 if (i % 500 == 0)
540                 {
541                         DEBUG(0,("calls: %i\n", i));
542                 }
543                 count++;
544         }
545
546         rpcclient_stop();
547
548         DEBUG(0,("finished pipe gobble test (%s).  count: %d failed: %d\n",
549                   pipe_name, count, failed));
550 }
551
552
553 static void run_handles(int numops, struct client_info *cli_info)
554 {
555         run_samhandles(numops, cli_info);
556         run_lsahandles(numops, cli_info);
557 }
558
559 static void run_pipegobbler(int numops, struct client_info *cli_info)
560 {
561         run_pipegobble(numops, cli_info, PIPE_SAMR);
562         run_pipegobble(numops, cli_info, PIPE_LSARPC);
563 }
564
565 /****************************************************************************
566 make tcp connection
567 ****************************************************************************/
568 static void run_tcpconnect(int numops, struct client_info *info)
569 {
570         int i;
571         int failed = 0;
572
573         for (i = 0; i < numops; i++)
574         {
575                 rpcclient_init();
576
577                 if (!cli_connect(smb_cli, info->dest_host, &info->dest_ip))
578                 {
579                         failed++;
580                 }
581                 cli_shutdown(smb_cli);
582         }
583
584         DEBUG(0,("tcp connections: count: %d failed: %d\n", numops, failed));
585 }
586
587 /****************************************************************************
588   runs n simultaneous functions.
589 ****************************************************************************/
590 static void create_procs(int nprocs, int numops, 
591                 struct client_info *cli_info,
592                 void (*fn)(int, struct client_info *))
593 {
594         int i, status;
595
596         for (i=0;i<nprocs;i++)
597         {
598                 if (fork() == 0)
599                 {
600                         int mypid = getpid();
601                         sys_srandom(mypid ^ time(NULL));
602                         fn(numops, cli_info);
603                         dbgflush();
604                         _exit(0);
605                 }
606         }
607
608         for (i=0;i<nprocs;i++)
609         {
610                 waitpid(0, &status, 0);
611         }
612 }
613
614
615 /****************************************************************************
616 usage on the program - OUT OF DATE!
617 ****************************************************************************/
618 static void usage(char *pname)
619 {
620   fprintf(out_hnd, "Usage: %s service <password> [-d debuglevel] [-l log] ",
621            pname);
622
623   fprintf(out_hnd, "\nVersion %s\n",VERSION);
624   fprintf(out_hnd, "\t-d debuglevel         set the debuglevel\n");
625   fprintf(out_hnd, "\t-l log basename.      Basename for log/debug files\n");
626   fprintf(out_hnd, "\t-n netbios name.      Use this name as my netbios name\n");
627   fprintf(out_hnd, "\t-m max protocol       set the max protocol level\n");
628   fprintf(out_hnd, "\t-I dest IP            use this IP to connect to\n");
629   fprintf(out_hnd, "\t-E                    write messages to stderr instead of stdout\n");
630   fprintf(out_hnd, "\t-U username           set the network username\n");
631   fprintf(out_hnd, "\t-W workgroup          set the workgroup name\n");
632   fprintf(out_hnd, "\t-t terminal code      terminal i/o code {sjis|euc|jis7|jis8|junet|hex}\n");
633   fprintf(out_hnd, "\n");
634 }
635
636 enum client_action
637 {
638         CLIENT_NONE,
639         CLIENT_IPC,
640         CLIENT_SVC
641 };
642
643 /****************************************************************************
644   main program
645 ****************************************************************************/
646  int main(int argc,char *argv[])
647 {
648         char *pname = argv[0];
649         int opt;
650         extern FILE *dbf;
651         extern char *optarg;
652         extern int optind;
653         static pstring servicesf = CONFIGFILE;
654         pstring term_code;
655         char *cmd_str="";
656         mode_t myumask = 0755;
657         enum client_action cli_action = CLIENT_NONE;
658         int nprocs = 1;
659         int numops = 100;
660
661         struct client_info cli_info;
662
663         out_hnd = stdout;
664
665 #ifdef KANJI
666         pstrcpy(term_code, KANJI);
667 #else /* KANJI */
668         *term_code = 0;
669 #endif /* KANJI */
670
671         if (!lp_load(servicesf,True, False, False))
672         {
673                 fprintf(stderr, "Can't load %s - run testparm to debug it\n", servicesf);
674         }
675
676         codepage_initialise(lp_client_code_page());
677
678         DEBUGLEVEL = 0;
679
680         cli_info.put_total_size = 0;
681         cli_info.put_total_time_ms = 0;
682         cli_info.get_total_size = 0;
683         cli_info.get_total_time_ms = 0;
684
685         cli_info.dir_total = 0;
686         cli_info.newer_than = 0;
687         cli_info.archive_level = 0;
688         cli_info.print_mode = 1;
689
690         cli_info.translation = False;
691         cli_info.recurse_dir = False;
692         cli_info.lowercase = False;
693         cli_info.prompt = True;
694         cli_info.abort_mget = True;
695
696         cli_info.dest_ip.s_addr = 0;
697         cli_info.name_type = 0x20;
698
699         pstrcpy(cli_info.cur_dir , "\\");
700         pstrcpy(cli_info.file_sel, "");
701         pstrcpy(cli_info.base_dir, "");
702         pstrcpy(cli_info.myhostname, "");
703         pstrcpy(cli_info.dest_host, "");
704
705         pstrcpy(cli_info.svc_type, "A:");
706         pstrcpy(cli_info.share, "");
707         pstrcpy(cli_info.service, "");
708
709         ZERO_STRUCT(cli_info.dom.level3_sid);
710         pstrcpy(cli_info.dom.level3_dom, "");
711         ZERO_STRUCT(cli_info.dom.level5_sid);
712         pstrcpy(cli_info.dom.level5_dom, "");
713
714
715         setup_logging(pname, True);
716
717         TimeInit();
718         charset_initialise();
719
720         myumask = umask(0);
721         umask(myumask);
722
723         if (!get_myname(global_myname, NULL))
724         {
725                 fprintf(stderr, "Failed to get my hostname.\n");
726         }
727
728         password[0] = 0;
729
730         if (argc < 2)
731         {
732                 usage(pname);
733                 exit(1);
734         }
735
736         if (*argv[1] != '-')
737         {
738                 pstrcpy(cli_info.service, argv[1]);  
739                 /* Convert any '/' characters in the service name to '\' characters */
740                 string_replace( cli_info.service, '/','\\');
741                 argc--;
742                 argv++;
743
744                 DEBUG(1,("service: %s\n", cli_info.service));
745
746                 if (count_chars(cli_info.service,'\\') < 3)
747                 {
748                         usage(pname);
749                         printf("\n%s: Not enough '\\' characters in service\n", cli_info.service);
750                         exit(1);
751                 }
752
753                 /*
754                 if (count_chars(cli_info.service,'\\') > 3)
755                 {
756                         usage(pname);
757                         printf("\n%s: Too many '\\' characters in service\n", cli_info.service);
758                         exit(1);
759                 }
760                 */
761
762                 if (argc > 1 && (*argv[1] != '-'))
763                 {
764                         got_pass = True;
765                         pstrcpy(password,argv[1]);  
766                         memset(argv[1],'X',strlen(argv[1]));
767                         argc--;
768                         argv++;
769                 }
770
771                 cli_action = CLIENT_SVC;
772         }
773
774         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)
775         {
776                 switch (opt)
777                 {
778                         case 'm':
779                         {
780                                 /* FIXME ... max_protocol seems to be funny here */
781
782                                 int max_protocol = 0;
783                                 max_protocol = interpret_protocol(optarg,max_protocol);
784                                 fprintf(stderr, "max protocol not currently supported\n");
785                                 break;
786                         }
787
788                         case 'O':
789                         {
790                                 pstrcpy(user_socket_options,optarg);
791                                 break;  
792                         }
793
794                         case 'S':
795                         {
796                                 pstrcpy(cli_info.dest_host,optarg);
797                                 strupper(cli_info.dest_host);
798                                 cli_action = CLIENT_IPC;
799                                 break;
800                         }
801
802                         case 'B':
803                         {
804                                 iface_set_default(NULL,optarg,NULL);
805                                 break;
806                         }
807
808                         case 'i':
809                         {
810                                 pstrcpy(scope, optarg);
811                                 break;
812                         }
813
814                         case 'U':
815                         {
816                                 char *lp;
817                                 pstrcpy(user_name,optarg);
818                                 if ((lp=strchr(user_name,'%')))
819                                 {
820                                         *lp = 0;
821                                         pstrcpy(password,lp+1);
822                                         got_pass = True;
823                                         memset(strchr(optarg,'%')+1,'X',strlen(password));
824                                 }
825                                 break;
826                         }
827
828                         case 'W':
829                         {
830                                 pstrcpy(domain,optarg);
831                                 break;
832                         }
833
834                         case 'E':
835                         {
836                                 dbf = stderr;
837                                 break;
838                         }
839
840                         case 'I':
841                         {
842                                 cli_info.dest_ip = *interpret_addr2(optarg);
843                                 if (zero_ip(cli_info.dest_ip))
844                                 {
845                                         exit(1);
846                                 }
847                                 break;
848                         }
849
850                         case 'N':
851                         {
852                                 nprocs = atoi(optarg);
853                                 break;
854                         }
855
856                         case 'o':
857                         {
858                                 numops = atoi(optarg);
859                                 break;
860                         }
861
862                         case 'n':
863                         {
864                                 fstrcpy(global_myname, optarg);
865                                 break;
866                         }
867
868                         case 'd':
869                         {
870                                 if (*optarg == 'A')
871                                         DEBUGLEVEL = 10000;
872                                 else
873                                         DEBUGLEVEL = atoi(optarg);
874                                 break;
875                         }
876
877                         case 'l':
878                         {
879                                 slprintf(debugf, sizeof(debugf)-1,
880                                          "%s.client",optarg);
881                                 break;
882                         }
883
884                         case 'c':
885                         {
886                                 cmd_str = optarg;
887                                 got_pass = True;
888                                 break;
889                         }
890
891                         case 'h':
892                         {
893                                 usage(pname);
894                                 exit(0);
895                                 break;
896                         }
897
898                         case 's':
899                         {
900                                 pstrcpy(servicesf, optarg);
901                                 break;
902                         }
903
904                         case 't':
905                         {
906                                 pstrcpy(term_code, optarg);
907                                 break;
908                         }
909
910                         default:
911                         {
912                                 usage(pname);
913                                 exit(1);
914                                 break;
915                         }
916                 }
917         }
918
919         if (cli_action == CLIENT_NONE)
920         {
921                 usage(pname);
922                 exit(1);
923         }
924
925         strupper(global_myname);
926         fstrcpy(cli_info.myhostname, global_myname);
927
928         DEBUG(3,("%s client started (version %s)\n",timestring(),VERSION));
929
930         load_interfaces();
931
932         if (cli_action == CLIENT_IPC)
933         {
934                 pstrcpy(cli_info.share, "IPC$");
935                 pstrcpy(cli_info.svc_type, "IPC");
936         }
937
938         fstrcpy(cli_info.mach_acct, cli_info.myhostname);
939         strupper(cli_info.mach_acct);
940         fstrcat(cli_info.mach_acct, "$");
941
942         make_nmb_name(&called , dns_to_netbios_name(cli_info.dest_host ), cli_info.name_type, scope);
943         make_nmb_name(&calling, dns_to_netbios_name(cli_info.myhostname), 0x0               , scope);
944
945         get_passwd();
946 /*
947         create_procs(nprocs, numops, &cli_info, run_enums_test);
948
949         if (password[0] != 0)
950         {
951                 create_procs(nprocs, numops, &cli_info, run_ntlogin_test);
952         }
953 */
954
955         create_procs(nprocs, numops, &cli_info, run_pipegobbler);
956 /*
957         create_procs(nprocs, numops, &cli_info, run_tcpconnect);
958         create_procs(nprocs, numops, &cli_info, run_handles);
959         create_procs(nprocs, numops, &cli_info, run_randomrpc);
960 */
961
962         fflush(out_hnd);
963
964         return(0);
965 }