a couple of minor merges from 2_2
[tprouty/samba.git] / source / client / client.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 #define NO_SYSLOG
23
24 #include "includes.h"
25
26 #ifndef REGISTER
27 #define REGISTER 0
28 #endif
29
30 struct cli_state *cli;
31 extern BOOL in_client;
32 static int port = SMB_PORT;
33 pstring cur_dir = "\\";
34 pstring cd_path = "";
35 static pstring service;
36 static pstring desthost;
37 extern pstring global_myname;
38 static pstring password;
39 static pstring username;
40 static pstring workgroup;
41 static char *cmdstr;
42 static BOOL got_pass;
43 static int io_bufsize = 64512;
44 extern struct in_addr ipzero;
45
46 static int name_type = 0x20;
47 static int max_protocol = PROTOCOL_NT1;
48 extern pstring user_socket_options;
49
50 static int process_tok(fstring tok);
51 static void cmd_help(void);
52
53 /* 30 second timeout on most commands */
54 #define CLIENT_TIMEOUT (30*1000)
55 #define SHORT_TIMEOUT (5*1000)
56
57 /* value for unused fid field in trans2 secondary request */
58 #define FID_UNUSED (0xFFFF)
59
60 time_t newer_than = 0;
61 int archive_level = 0;
62
63 extern pstring debugf;
64 extern int DEBUGLEVEL;
65
66 BOOL translation = False;
67
68 static BOOL have_ip;
69
70 /* clitar bits insert */
71 extern int blocksize;
72 extern BOOL tar_inc;
73 extern BOOL tar_reset;
74 /* clitar bits end */
75  
76
77 mode_t myumask = 0755;
78
79 BOOL prompt = True;
80
81 int printmode = 1;
82
83 static BOOL recurse = False;
84 BOOL lowercase = False;
85
86 struct in_addr dest_ip;
87
88 #define SEPARATORS " \t\n\r"
89
90 BOOL abort_mget = True;
91
92 pstring fileselection = "";
93
94 extern file_info def_finfo;
95
96 /* timing globals */
97 int get_total_size = 0;
98 int get_total_time_ms = 0;
99 int put_total_size = 0;
100 int put_total_time_ms = 0;
101
102 /* totals globals */
103 static double dir_total;
104
105 #define USENMB
106
107 /****************************************************************************
108 write to a local file with CR/LF->LF translation if appropriate. return the 
109 number taken from the buffer. This may not equal the number written.
110 ****************************************************************************/
111 static int writefile(int f, char *b, int n)
112 {
113         int i;
114
115         if (!translation) {
116                 return write(f,b,n);
117         }
118
119         i = 0;
120         while (i < n) {
121                 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
122                         b++;i++;
123                 }
124                 if (write(f, b, 1) != 1) {
125                         break;
126                 }
127                 b++;
128                 i++;
129         }
130   
131         return(i);
132 }
133
134 /****************************************************************************
135   read from a file with LF->CR/LF translation if appropriate. return the 
136   number read. read approx n bytes.
137 ****************************************************************************/
138 static int readfile(char *b, int size, int n, FILE *f)
139 {
140         int i;
141         int c;
142
143         if (!translation || (size != 1))
144                 return(fread(b,size,n,f));
145   
146         i = 0;
147         while (i < (n - 1) && (i < BUFFER_SIZE)) {
148                 if ((c = getc(f)) == EOF) {
149                         break;
150                 }
151       
152                 if (c == '\n') { /* change all LFs to CR/LF */
153                         b[i++] = '\r';
154                 }
155       
156                 b[i++] = c;
157         }
158   
159         return(i);
160 }
161  
162
163 /****************************************************************************
164 send a message
165 ****************************************************************************/
166 static void send_message(void)
167 {
168         int total_len = 0;
169         int grp_id;
170
171         if (!cli_message_start(cli, desthost, username, &grp_id)) {
172                 DEBUG(0,("message start: %s\n", cli_errstr(cli)));
173                 return;
174         }
175
176
177         printf("Connected. Type your message, ending it with a Control-D\n");
178
179         while (!feof(stdin) && total_len < 1600) {
180                 int maxlen = MIN(1600 - total_len,127);
181                 pstring msg;
182                 int l=0;
183                 int c;
184
185                 ZERO_ARRAY(msg);
186
187                 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
188                         if (c == '\n')
189                                 msg[l++] = '\r';
190                         msg[l] = c;   
191                 }
192
193                 /*
194                  * The message is in UNIX codepage format. Convert to
195                  * DOS before sending.
196                  */
197
198                 unix_to_dos(msg, True);
199
200                 if (!cli_message_text(cli, msg, l, grp_id)) {
201                         printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
202                         return;
203                 }      
204                 
205                 total_len += l;
206         }
207
208         if (total_len >= 1600)
209                 printf("the message was truncated to 1600 bytes\n");
210         else
211                 printf("sent %d bytes\n",total_len);
212
213         if (!cli_message_end(cli, grp_id)) {
214                 printf("SMBsendend failed (%s)\n",cli_errstr(cli));
215                 return;
216         }      
217 }
218
219
220
221 /****************************************************************************
222 check the space on a device
223 ****************************************************************************/
224 static void do_dskattr(void)
225 {
226         int total, bsize, avail;
227
228         if (!cli_dskattr(cli, &bsize, &total, &avail)) {
229                 DEBUG(0,("Error in dskattr: %s\n",cli_errstr(cli))); 
230                 return;
231         }
232
233         DEBUG(0,("\n\t\t%d blocks of size %d. %d blocks available\n",
234                  total, bsize, avail));
235 }
236
237 /****************************************************************************
238 show cd/pwd
239 ****************************************************************************/
240 static void cmd_pwd(void)
241 {
242         DEBUG(0,("Current directory is %s",service));
243         DEBUG(0,("%s\n",cur_dir));
244 }
245
246
247 /****************************************************************************
248 change directory - inner section
249 ****************************************************************************/
250 static void do_cd(char *newdir)
251 {
252         char *p = newdir;
253         pstring saved_dir;
254         pstring dname;
255       
256         dos_format(newdir);
257
258         /* Save the current directory in case the
259            new directory is invalid */
260         pstrcpy(saved_dir, cur_dir);
261         if (*p == '\\')
262                 pstrcpy(cur_dir,p);
263         else
264                 pstrcat(cur_dir,p);
265         if (*(cur_dir+strlen(cur_dir)-1) != '\\') {
266                 pstrcat(cur_dir, "\\");
267         }
268         dos_clean_name(cur_dir);
269         pstrcpy(dname,cur_dir);
270         pstrcat(cur_dir,"\\");
271         dos_clean_name(cur_dir);
272         
273         if (!strequal(cur_dir,"\\")) {
274                 if (!cli_chkpath(cli, dname)) {
275                         DEBUG(0,("cd %s: %s\n", dname, cli_errstr(cli)));
276                         pstrcpy(cur_dir,saved_dir);
277                 }
278         }
279         
280         pstrcpy(cd_path,cur_dir);
281 }
282
283 /****************************************************************************
284 change directory
285 ****************************************************************************/
286 static void cmd_cd(void)
287 {
288         fstring buf;
289
290         if (next_token(NULL,buf,NULL,sizeof(buf)))
291                 do_cd(buf);
292         else
293                 DEBUG(0,("Current directory is %s\n",cur_dir));
294 }
295
296
297 /*******************************************************************
298   decide if a file should be operated on
299   ********************************************************************/
300 static BOOL do_this_one(file_info *finfo)
301 {
302         if (finfo->mode & aDIR) return(True);
303
304         if (*fileselection && 
305             !mask_match(finfo->name,fileselection,False)) {
306                 DEBUG(3,("match_match %s failed\n", finfo->name));
307                 return False;
308         }
309
310         if (newer_than && finfo->mtime < newer_than) {
311                 DEBUG(3,("newer_than %s failed\n", finfo->name));
312                 return(False);
313         }
314
315         if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
316                 DEBUG(3,("archive %s failed\n", finfo->name));
317                 return(False);
318         }
319         
320         return(True);
321 }
322
323 /****************************************************************************
324   display info about a file
325   ****************************************************************************/
326 static void display_finfo(file_info *finfo)
327 {
328         if (do_this_one(finfo)) {
329                 time_t t = finfo->mtime; /* the time is assumed to be passed as GMT */
330                 DEBUG(0,("  %-30s%7.7s %8.0f  %s",
331                          finfo->name,
332                          attrib_string(finfo->mode),
333                          (double)finfo->size,
334                          asctime(LocalTime(&t))));
335                 dir_total += finfo->size;
336         }
337 }
338
339
340 /****************************************************************************
341    accumulate size of a file
342   ****************************************************************************/
343 static void do_du(file_info *finfo)
344 {
345         if (do_this_one(finfo)) {
346                 dir_total += finfo->size;
347         }
348 }
349
350 static BOOL do_list_recurse;
351 static BOOL do_list_dirs;
352 static char *do_list_queue = 0;
353 static long do_list_queue_size = 0;
354 static long do_list_queue_start = 0;
355 static long do_list_queue_end = 0;
356 static void (*do_list_fn)(file_info *);
357
358 /****************************************************************************
359 functions for do_list_queue
360   ****************************************************************************/
361
362 /*
363  * The do_list_queue is a NUL-separated list of strings stored in a
364  * char*.  Since this is a FIFO, we keep track of the beginning and
365  * ending locations of the data in the queue.  When we overflow, we
366  * double the size of the char*.  When the start of the data passes
367  * the midpoint, we move everything back.  This is logically more
368  * complex than a linked list, but easier from a memory management
369  * angle.  In any memory error condition, do_list_queue is reset.
370  * Functions check to ensure that do_list_queue is non-NULL before
371  * accessing it.
372  */
373 static void reset_do_list_queue(void)
374 {
375         if (do_list_queue)
376         {
377                 free(do_list_queue);
378         }
379         do_list_queue = 0;
380         do_list_queue_size = 0;
381         do_list_queue_start = 0;
382         do_list_queue_end = 0;
383 }
384
385 static void init_do_list_queue(void)
386 {
387         reset_do_list_queue();
388         do_list_queue_size = 1024;
389         do_list_queue = malloc(do_list_queue_size);
390         if (do_list_queue == 0) { 
391                 DEBUG(0,("malloc fail for size %d\n",
392                          (int)do_list_queue_size));
393                 reset_do_list_queue();
394         } else {
395                 memset(do_list_queue, 0, do_list_queue_size);
396         }
397 }
398
399 static void adjust_do_list_queue(void)
400 {
401         /*
402          * If the starting point of the queue is more than half way through,
403          * move everything toward the beginning.
404          */
405         if (do_list_queue && (do_list_queue_start == do_list_queue_end))
406         {
407                 DEBUG(4,("do_list_queue is empty\n"));
408                 do_list_queue_start = do_list_queue_end = 0;
409                 *do_list_queue = '\0';
410         }
411         else if (do_list_queue_start > (do_list_queue_size / 2))
412         {
413                 DEBUG(4,("sliding do_list_queue backward\n"));
414                 memmove(do_list_queue,
415                         do_list_queue + do_list_queue_start,
416                         do_list_queue_end - do_list_queue_start);
417                 do_list_queue_end -= do_list_queue_start;
418                 do_list_queue_start = 0;
419         }
420            
421 }
422
423 static void add_to_do_list_queue(const char* entry)
424 {
425         long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
426         while (new_end > do_list_queue_size)
427         {
428                 do_list_queue_size *= 2;
429                 DEBUG(4,("enlarging do_list_queue to %d\n",
430                          (int)do_list_queue_size));
431                 do_list_queue = Realloc(do_list_queue, do_list_queue_size);
432                 if (! do_list_queue) {
433                         DEBUG(0,("failure enlarging do_list_queue to %d bytes\n",
434                                  (int)do_list_queue_size));
435                         reset_do_list_queue();
436                 }
437                 else
438                 {
439                         memset(do_list_queue + do_list_queue_size / 2,
440                                0, do_list_queue_size / 2);
441                 }
442         }
443         if (do_list_queue)
444         {
445                 pstrcpy(do_list_queue + do_list_queue_end, entry);
446                 do_list_queue_end = new_end;
447                 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
448                          entry, (int)do_list_queue_start, (int)do_list_queue_end));
449         }
450 }
451
452 static char *do_list_queue_head(void)
453 {
454         return do_list_queue + do_list_queue_start;
455 }
456
457 static void remove_do_list_queue_head(void)
458 {
459         if (do_list_queue_end > do_list_queue_start)
460         {
461                 do_list_queue_start += strlen(do_list_queue_head()) + 1;
462                 adjust_do_list_queue();
463                 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
464                          (int)do_list_queue_start, (int)do_list_queue_end));
465         }
466 }
467
468 static int do_list_queue_empty(void)
469 {
470         return (! (do_list_queue && *do_list_queue));
471 }
472
473 /****************************************************************************
474 a helper for do_list
475   ****************************************************************************/
476 static void do_list_helper(file_info *f, const char *mask, void *state)
477 {
478         if (f->mode & aDIR) {
479                 if (do_list_dirs && do_this_one(f)) {
480                         do_list_fn(f);
481                 }
482                 if (do_list_recurse && 
483                     !strequal(f->name,".") && 
484                     !strequal(f->name,"..")) {
485                         pstring mask2;
486                         char *p;
487
488                         pstrcpy(mask2, mask);
489                         p = strrchr(mask2,'\\');
490                         if (!p) return;
491                         p[1] = 0;
492                         pstrcat(mask2, f->name);
493                         pstrcat(mask2,"\\*");
494                         add_to_do_list_queue(mask2);
495                 }
496                 return;
497         }
498
499         if (do_this_one(f)) {
500                 do_list_fn(f);
501         }
502 }
503
504
505 /****************************************************************************
506 a wrapper around cli_list that adds recursion
507   ****************************************************************************/
508 void do_list(const char *mask,uint16 attribute,void (*fn)(file_info *),BOOL rec, BOOL dirs)
509 {
510         static int in_do_list = 0;
511
512         if (in_do_list && rec)
513         {
514                 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
515                 exit(1);
516         }
517
518         in_do_list = 1;
519
520         do_list_recurse = rec;
521         do_list_dirs = dirs;
522         do_list_fn = fn;
523
524         if (rec)
525         {
526                 init_do_list_queue();
527                 add_to_do_list_queue(mask);
528                 
529                 while (! do_list_queue_empty())
530                 {
531                         /*
532                          * Need to copy head so that it doesn't become
533                          * invalid inside the call to cli_list.  This
534                          * would happen if the list were expanded
535                          * during the call.
536                          * Fix from E. Jay Berkenbilt (ejb@ql.org)
537                          */
538                         pstring head;
539                         pstrcpy(head, do_list_queue_head());
540                         cli_list(cli, head, attribute, do_list_helper, NULL);
541                         remove_do_list_queue_head();
542                         if ((! do_list_queue_empty()) && (fn == display_finfo))
543                         {
544                                 char* next_file = do_list_queue_head();
545                                 char* save_ch = 0;
546                                 if ((strlen(next_file) >= 2) &&
547                                     (next_file[strlen(next_file) - 1] == '*') &&
548                                     (next_file[strlen(next_file) - 2] == '\\'))
549                                 {
550                                         save_ch = next_file +
551                                                 strlen(next_file) - 2;
552                                         *save_ch = '\0';
553                                 }
554                                 DEBUG(0,("\n%s\n",next_file));
555                                 if (save_ch)
556                                 {
557                                         *save_ch = '\\';
558                                 }
559                         }
560                 }
561         }
562         else
563         {
564                 if (cli_list(cli, mask, attribute, do_list_helper, NULL) == -1)
565                 {
566                         DEBUG(0, ("%s listing %s\n", cli_errstr(cli), mask));
567                 }
568         }
569
570         in_do_list = 0;
571         reset_do_list_queue();
572 }
573
574 /****************************************************************************
575   get a directory listing
576   ****************************************************************************/
577 static void cmd_dir(void)
578 {
579         uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
580         pstring mask;
581         fstring buf;
582         char *p=buf;
583         
584         dir_total = 0;
585         pstrcpy(mask,cur_dir);
586         if(mask[strlen(mask)-1]!='\\')
587                 pstrcat(mask,"\\");
588         
589         if (next_token(NULL,buf,NULL,sizeof(buf))) {
590                 dos_format(p);
591                 if (*p == '\\')
592                         pstrcpy(mask,p);
593                 else
594                         pstrcat(mask,p);
595         }
596         else {
597                 pstrcat(mask,"*");
598         }
599
600         do_list(mask, attribute, display_finfo, recurse, True);
601
602         do_dskattr();
603
604         DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
605 }
606
607
608 /****************************************************************************
609   get a directory listing
610   ****************************************************************************/
611 static void cmd_du(void)
612 {
613         uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
614         pstring mask;
615         fstring buf;
616         char *p=buf;
617         
618         dir_total = 0;
619         pstrcpy(mask,cur_dir);
620         if(mask[strlen(mask)-1]!='\\')
621                 pstrcat(mask,"\\");
622         
623         if (next_token(NULL,buf,NULL,sizeof(buf))) {
624                 dos_format(p);
625                 if (*p == '\\')
626                         pstrcpy(mask,p);
627                 else
628                         pstrcat(mask,p);
629         } else {
630                 pstrcat(mask,"*");
631         }
632
633         do_list(mask, attribute, do_du, recurse, True);
634
635         do_dskattr();
636
637         DEBUG(0, ("Total number of bytes: %.0f\n", dir_total));
638 }
639
640
641 /****************************************************************************
642   get a file from rname to lname
643   ****************************************************************************/
644 static void do_get(char *rname,char *lname)
645 {  
646         int handle=0,fnum;
647         BOOL newhandle = False;
648         char *data;
649         struct timeval tp_start;
650         int read_size = io_bufsize;
651         uint16 attr;
652         size_t size;
653         off_t nread = 0;
654
655         GetTimeOfDay(&tp_start);
656
657         if (lowercase) {
658                 strlower(lname);
659         }
660
661         fnum = cli_open(cli, rname, O_RDONLY, DENY_NONE);
662
663         if (fnum == -1) {
664                 DEBUG(0,("%s opening remote file %s\n",cli_errstr(cli),rname));
665                 return;
666         }
667
668         if(!strcmp(lname,"-")) {
669                 handle = fileno(stdout);
670         } else {
671                 handle = sys_open(lname,O_WRONLY|O_CREAT|O_TRUNC,0644);
672                 newhandle = True;
673         }
674         if (handle < 0) {
675                 DEBUG(0,("Error opening local file %s\n",lname));
676                 return;
677         }
678
679
680         if (!cli_qfileinfo(cli, fnum, 
681                            &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
682             !cli_getattrE(cli, fnum, 
683                           &attr, &size, NULL, NULL, NULL)) {
684                 DEBUG(0,("getattrib: %s\n",cli_errstr(cli)));
685                 return;
686         }
687
688         DEBUG(2,("getting file %s of size %.0f as %s ", 
689                  lname, (double)size, lname));
690
691         if(!(data = (char *)malloc(read_size))) { 
692                 DEBUG(0,("malloc fail for size %d\n", read_size));
693                 cli_close(cli, fnum);
694                 return;
695         }
696
697         while (1) {
698                 int n = cli_read(cli, fnum, data, nread, read_size);
699
700                 if (n <= 0) break;
701  
702                 if (writefile(handle,data, n) != n) {
703                         DEBUG(0,("Error writing local file\n"));
704                         break;
705                 }
706       
707                 nread += n;
708         }
709
710         if (nread < size) {
711                 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
712                rname, (long)nread));
713         }
714
715         free(data);
716         
717         if (!cli_close(cli, fnum)) {
718                 DEBUG(0,("Error %s closing remote file\n",cli_errstr(cli)));
719         }
720
721         if (newhandle) {
722                 close(handle);
723         }
724
725         if (archive_level >= 2 && (attr & aARCH)) {
726                 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
727         }
728
729         {
730                 struct timeval tp_end;
731                 int this_time;
732                 
733                 GetTimeOfDay(&tp_end);
734                 this_time = 
735                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
736                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
737                 get_total_time_ms += this_time;
738                 get_total_size += nread;
739                 
740                 DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
741                          nread / (1.024*this_time + 1.0e-4),
742                          get_total_size / (1.024*get_total_time_ms)));
743         }
744 }
745
746
747 /****************************************************************************
748   get a file
749   ****************************************************************************/
750 static void cmd_get(void)
751 {
752         pstring lname;
753         pstring rname;
754         char *p;
755
756         pstrcpy(rname,cur_dir);
757         pstrcat(rname,"\\");
758         
759         p = rname + strlen(rname);
760         
761         if (!next_token(NULL,p,NULL,sizeof(rname)-strlen(rname))) {
762                 DEBUG(0,("get <filename>\n"));
763                 return;
764         }
765         pstrcpy(lname,p);
766         dos_clean_name(rname);
767         
768         next_token(NULL,lname,NULL,sizeof(lname));
769         
770         do_get(rname, lname);
771 }
772
773
774 /****************************************************************************
775   do a mget operation on one file
776   ****************************************************************************/
777 static void do_mget(file_info *finfo)
778 {
779         pstring rname;
780         pstring quest;
781         pstring saved_curdir;
782         pstring mget_mask;
783
784         if (strequal(finfo->name,".") || strequal(finfo->name,".."))
785                 return;
786
787         if (abort_mget) {
788                 DEBUG(0,("mget aborted\n"));
789                 return;
790         }
791
792         if (finfo->mode & aDIR)
793                 slprintf(quest,sizeof(pstring)-1,
794                          "Get directory %s? ",finfo->name);
795         else
796                 slprintf(quest,sizeof(pstring)-1,
797                          "Get file %s? ",finfo->name);
798
799         if (prompt && !yesno(quest)) return;
800
801         if (!(finfo->mode & aDIR)) {
802                 pstrcpy(rname,cur_dir);
803                 pstrcat(rname,finfo->name);
804                 do_get(rname,finfo->name);
805                 return;
806         }
807
808         /* handle directories */
809         pstrcpy(saved_curdir,cur_dir);
810
811         pstrcat(cur_dir,finfo->name);
812         pstrcat(cur_dir,"\\");
813
814         unix_format(finfo->name);
815         if (lowercase)
816                 strlower(finfo->name);
817         
818         if (!directory_exist(finfo->name,NULL) && 
819             mkdir(finfo->name,0777) != 0) {
820                 DEBUG(0,("failed to create directory %s\n",finfo->name));
821                 pstrcpy(cur_dir,saved_curdir);
822                 return;
823         }
824         
825         if (chdir(finfo->name) != 0) {
826                 DEBUG(0,("failed to chdir to directory %s\n",finfo->name));
827                 pstrcpy(cur_dir,saved_curdir);
828                 return;
829         }
830
831         pstrcpy(mget_mask,cur_dir);
832         pstrcat(mget_mask,"*");
833         
834         do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,False, True);
835         chdir("..");
836         pstrcpy(cur_dir,saved_curdir);
837 }
838
839
840 /****************************************************************************
841 view the file using the pager
842 ****************************************************************************/
843 static void cmd_more(void)
844 {
845         fstring rname,lname,pager_cmd;
846         char *pager;
847         int fd;
848
849         fstrcpy(rname,cur_dir);
850         fstrcat(rname,"\\");
851         
852         slprintf(lname,sizeof(lname)-1, "%s/smbmore.XXXXXX",tmpdir());
853         fd = smb_mkstemp(lname);
854         if (fd == -1) {
855                 DEBUG(0,("failed to create temporary file for more\n"));
856                 return;
857         }
858         close(fd);
859
860         if (!next_token(NULL,rname+strlen(rname),NULL,sizeof(rname)-strlen(rname))) {
861                 DEBUG(0,("more <filename>\n"));
862                 unlink(lname);
863                 return;
864         }
865         dos_clean_name(rname);
866
867         do_get(rname,lname);
868
869         pager=getenv("PAGER");
870
871         slprintf(pager_cmd,sizeof(pager_cmd)-1,
872                  "%s %s",(pager? pager:PAGER), lname);
873         system(pager_cmd);
874         unlink(lname);
875 }
876
877
878
879 /****************************************************************************
880 do a mget command
881 ****************************************************************************/
882 static void cmd_mget(void)
883 {
884         uint16 attribute = aSYSTEM | aHIDDEN;
885         pstring mget_mask;
886         fstring buf;
887         char *p=buf;
888
889         *mget_mask = 0;
890
891         if (recurse)
892                 attribute |= aDIR;
893         
894         abort_mget = False;
895
896         while (next_token(NULL,p,NULL,sizeof(buf))) {
897                 pstrcpy(mget_mask,cur_dir);
898                 if(mget_mask[strlen(mget_mask)-1]!='\\')
899                         pstrcat(mget_mask,"\\");
900                 
901                 if (*p == '\\')
902                         pstrcpy(mget_mask,p);
903                 else
904                         pstrcat(mget_mask,p);
905                 do_list(mget_mask, attribute,do_mget,False,True);
906         }
907
908         if (!*mget_mask) {
909                 pstrcpy(mget_mask,cur_dir);
910                 if(mget_mask[strlen(mget_mask)-1]!='\\')
911                         pstrcat(mget_mask,"\\");
912                 pstrcat(mget_mask,"*");
913                 do_list(mget_mask, attribute,do_mget,False,True);
914         }
915 }
916
917
918 /****************************************************************************
919 make a directory of name "name"
920 ****************************************************************************/
921 static BOOL do_mkdir(char *name)
922 {
923         if (!cli_mkdir(cli, name)) {
924                 DEBUG(0,("%s making remote directory %s\n",
925                          cli_errstr(cli),name));
926                 return(False);
927         }
928
929         return(True);
930 }
931
932
933 /****************************************************************************
934  Exit client.
935 ****************************************************************************/
936 static void cmd_quit(void)
937 {
938         cli_shutdown(cli);
939         exit(0);
940 }
941
942
943 /****************************************************************************
944   make a directory
945   ****************************************************************************/
946 static void cmd_mkdir(void)
947 {
948         pstring mask;
949         fstring buf;
950         char *p=buf;
951   
952         pstrcpy(mask,cur_dir);
953
954         if (!next_token(NULL,p,NULL,sizeof(buf))) {
955                 if (!recurse)
956                         DEBUG(0,("mkdir <dirname>\n"));
957                 return;
958         }
959         pstrcat(mask,p);
960
961         if (recurse) {
962                 pstring ddir;
963                 pstring ddir2;
964                 *ddir2 = 0;
965                 
966                 pstrcpy(ddir,mask);
967                 trim_string(ddir,".",NULL);
968                 p = strtok(ddir,"/\\");
969                 while (p) {
970                         pstrcat(ddir2,p);
971                         if (!cli_chkpath(cli, ddir2)) { 
972                                 do_mkdir(ddir2);
973                         }
974                         pstrcat(ddir2,"\\");
975                         p = strtok(NULL,"/\\");
976                 }        
977         } else {
978                 do_mkdir(mask);
979         }
980 }
981
982
983 /****************************************************************************
984   put a single file
985   ****************************************************************************/
986 static void do_put(char *rname,char *lname)
987 {
988         int fnum;
989         FILE *f;
990         int nread=0;
991         char *buf=NULL;
992         int maxwrite=io_bufsize;
993         
994         struct timeval tp_start;
995         GetTimeOfDay(&tp_start);
996
997         fnum = cli_open(cli, rname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
998   
999         if (fnum == -1) {
1000                 DEBUG(0,("%s opening remote file %s\n",cli_errstr(cli),rname));
1001                 return;
1002         }
1003
1004         /* allow files to be piped into smbclient
1005            jdblair 24.jun.98 */
1006         if (!strcmp(lname, "-")) {
1007                 f = stdin;
1008                 /* size of file is not known */
1009         } else {
1010                 f = sys_fopen(lname,"r");
1011         }
1012
1013         if (!f) {
1014                 DEBUG(0,("Error opening local file %s\n",lname));
1015                 return;
1016         }
1017
1018   
1019         DEBUG(1,("putting file %s as %s ",lname,
1020                  rname));
1021   
1022         buf = (char *)malloc(maxwrite);
1023         while (!feof(f)) {
1024                 int n = maxwrite;
1025                 int ret;
1026
1027                 if ((n = readfile(buf,1,n,f)) < 1) {
1028                         if((n == 0) && feof(f))
1029                                 break; /* Empty local file. */
1030
1031                         DEBUG(0,("Error reading local file: %s\n", strerror(errno) ));
1032                         break;
1033                 }
1034
1035                 ret = cli_write(cli, fnum, 0, buf, nread, n);
1036
1037                 if (n != ret) {
1038                         DEBUG(0,("Error writing file: %s\n", cli_errstr(cli)));
1039                         break;
1040                 } 
1041
1042                 nread += n;
1043         }
1044
1045         if (!cli_close(cli, fnum)) {
1046                 DEBUG(0,("%s closing remote file %s\n",cli_errstr(cli),rname));
1047                 fclose(f);
1048                 if (buf) free(buf);
1049                 return;
1050         }
1051
1052         
1053         fclose(f);
1054         if (buf) free(buf);
1055
1056         {
1057                 struct timeval tp_end;
1058                 int this_time;
1059                 
1060                 GetTimeOfDay(&tp_end);
1061                 this_time = 
1062                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1063                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
1064                 put_total_time_ms += this_time;
1065                 put_total_size += nread;
1066                 
1067                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1068                          nread / (1.024*this_time + 1.0e-4),
1069                          put_total_size / (1.024*put_total_time_ms)));
1070         }
1071
1072         if (f == stdin) {
1073                 cli_shutdown(cli);
1074                 exit(0);
1075         }
1076 }
1077
1078  
1079
1080 /****************************************************************************
1081   put a file
1082   ****************************************************************************/
1083 static void cmd_put(void)
1084 {
1085         pstring lname;
1086         pstring rname;
1087         fstring buf;
1088         char *p=buf;
1089         
1090         pstrcpy(rname,cur_dir);
1091         pstrcat(rname,"\\");
1092   
1093         if (!next_token(NULL,p,NULL,sizeof(buf))) {
1094                 DEBUG(0,("put <filename>\n"));
1095                 return;
1096         }
1097         pstrcpy(lname,p);
1098   
1099         if (next_token(NULL,p,NULL,sizeof(buf)))
1100                 pstrcat(rname,p);      
1101         else
1102                 pstrcat(rname,lname);
1103         
1104         dos_clean_name(rname);
1105
1106         {
1107                 SMB_STRUCT_STAT st;
1108                 /* allow '-' to represent stdin
1109                    jdblair, 24.jun.98 */
1110                 if (!file_exist(lname,&st) &&
1111                     (strcmp(lname,"-"))) {
1112                         DEBUG(0,("%s does not exist\n",lname));
1113                         return;
1114                 }
1115         }
1116
1117         do_put(rname,lname);
1118 }
1119
1120
1121 /****************************************************************************
1122   seek in a directory/file list until you get something that doesn't start with
1123   the specified name
1124   ****************************************************************************/
1125 static BOOL seek_list(FILE *f,char *name)
1126 {
1127         pstring s;
1128         while (!feof(f)) {
1129                 if (!fgets(s,sizeof(s),f)) return(False);
1130                 trim_string(s,"./","\n");
1131                 if (strncmp(s,name,strlen(name)) != 0) {
1132                         pstrcpy(name,s);
1133                         return(True);
1134                 }
1135         }
1136       
1137         return(False);
1138 }
1139
1140
1141 /****************************************************************************
1142   set the file selection mask
1143   ****************************************************************************/
1144 static void cmd_select(void)
1145 {
1146         pstrcpy(fileselection,"");
1147         next_token(NULL,fileselection,NULL,sizeof(fileselection));
1148 }
1149
1150
1151 /****************************************************************************
1152   mput some files
1153   ****************************************************************************/
1154 static void cmd_mput(void)
1155 {
1156         pstring lname;
1157         pstring rname;
1158         fstring buf;
1159         char *p=buf;
1160         
1161         while (next_token(NULL,p,NULL,sizeof(buf))) {
1162                 SMB_STRUCT_STAT st;
1163                 pstring cmd;
1164                 pstring tmpname;
1165                 FILE *f;
1166                 int fd;
1167
1168                 slprintf(tmpname,sizeof(tmpname)-1, "%s/ls.smb.XXXXXX",
1169                                 tmpdir());
1170                 fd = smb_mkstemp(tmpname);
1171
1172                 if (fd == -1) {
1173                         DEBUG(0,("Failed to create temporary file %s\n", tmpname));
1174                         continue;
1175                 }
1176
1177                 if (recurse)
1178                         slprintf(cmd,sizeof(pstring)-1,
1179                                 "find . -name \"%s\" -print > %s",p,tmpname);
1180                 else
1181                         slprintf(cmd,sizeof(pstring)-1,
1182                                 "find . -maxdepth 1 -name \"%s\" -print > %s",p,tmpname);
1183                 system(cmd);
1184                 close(fd);
1185
1186                 f = sys_fopen(tmpname,"r");
1187                 if (!f) continue;
1188                 
1189                 while (!feof(f)) {
1190                         pstring quest;
1191
1192                         if (!fgets(lname,sizeof(lname),f)) break;
1193                         trim_string(lname,"./","\n");
1194                         
1195                 again1:
1196                         
1197                         /* check if it's a directory */
1198                         if (directory_exist(lname,&st)) {
1199                                 if (!recurse) continue;
1200                                 slprintf(quest,sizeof(pstring)-1,
1201                                          "Put directory %s? ",lname);
1202                                 if (prompt && !yesno(quest)) {
1203                                         pstrcat(lname,"/");
1204                                         if (!seek_list(f,lname))
1205                                                 break;
1206                                         goto again1;                
1207                                 }
1208               
1209                                 pstrcpy(rname,cur_dir);
1210                                 pstrcat(rname,lname);
1211                                 dos_format(rname);
1212                                 if (!cli_chkpath(cli, rname) && !do_mkdir(rname)) {
1213                                         pstrcat(lname,"/");
1214                                         if (!seek_list(f,lname))
1215                                                 break;
1216                                         goto again1;
1217                                 }
1218                                 continue;
1219                         } else {
1220                                 slprintf(quest,sizeof(quest)-1,
1221                                          "Put file %s? ",lname);
1222                                 if (prompt && !yesno(quest)) continue;
1223                                 
1224                                 pstrcpy(rname,cur_dir);
1225                                 pstrcat(rname,lname);
1226                         }
1227
1228                         dos_format(rname);
1229
1230                         do_put(rname,lname);
1231                 }
1232                 fclose(f);
1233                 unlink(tmpname);
1234         }
1235 }
1236
1237
1238 /****************************************************************************
1239   cancel a print job
1240   ****************************************************************************/
1241 static void do_cancel(int job)
1242 {
1243         if (cli_printjob_del(cli, job)) {
1244                 printf("Job %d cancelled\n",job);
1245         } else {
1246                 printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
1247         }
1248 }
1249
1250
1251 /****************************************************************************
1252   cancel a print job
1253   ****************************************************************************/
1254 static void cmd_cancel(void)
1255 {
1256         fstring buf;
1257         int job; 
1258
1259         if (!next_token(NULL,buf,NULL,sizeof(buf))) {
1260                 printf("cancel <jobid> ...\n");
1261                 return;
1262         }
1263         do {
1264                 job = atoi(buf);
1265                 do_cancel(job);
1266         } while (next_token(NULL,buf,NULL,sizeof(buf)));
1267 }
1268
1269
1270 /****************************************************************************
1271   print a file
1272   ****************************************************************************/
1273 static void cmd_print(void)
1274 {
1275         pstring lname;
1276         pstring rname;
1277         char *p;
1278
1279         if (!next_token(NULL,lname,NULL, sizeof(lname))) {
1280                 DEBUG(0,("print <filename>\n"));
1281                 return;
1282         }
1283
1284         pstrcpy(rname,lname);
1285         p = strrchr(rname,'/');
1286         if (p) {
1287                 slprintf(rname, sizeof(rname)-1, "%s-%d", p+1, (int)sys_getpid());
1288         }
1289
1290         if (strequal(lname,"-")) {
1291                 slprintf(rname, sizeof(rname)-1, "stdin-%d", (int)sys_getpid());
1292         }
1293
1294         do_put(rname, lname);
1295 }
1296
1297
1298 /****************************************************************************
1299  show a print queue entry
1300 ****************************************************************************/
1301 static void queue_fn(struct print_job_info *p)
1302 {
1303         DEBUG(0,("%-6d   %-9d    %s\n", (int)p->id, (int)p->size, p->name));
1304 }
1305
1306 /****************************************************************************
1307  show a print queue
1308 ****************************************************************************/
1309 static void cmd_queue(void)
1310 {
1311         cli_print_queue(cli, queue_fn);  
1312 }
1313
1314 /****************************************************************************
1315 delete some files
1316 ****************************************************************************/
1317 static void do_del(file_info *finfo)
1318 {
1319         pstring mask;
1320
1321         pstrcpy(mask,cur_dir);
1322         pstrcat(mask,finfo->name);
1323
1324         if (finfo->mode & aDIR) 
1325                 return;
1326
1327         if (!cli_unlink(cli, mask)) {
1328                 DEBUG(0,("%s deleting remote file %s\n",cli_errstr(cli),mask));
1329         }
1330 }
1331
1332 /****************************************************************************
1333 delete some files
1334 ****************************************************************************/
1335 static void cmd_del(void)
1336 {
1337         pstring mask;
1338         fstring buf;
1339         uint16 attribute = aSYSTEM | aHIDDEN;
1340
1341         if (recurse)
1342                 attribute |= aDIR;
1343         
1344         pstrcpy(mask,cur_dir);
1345         
1346         if (!next_token(NULL,buf,NULL,sizeof(buf))) {
1347                 DEBUG(0,("del <filename>\n"));
1348                 return;
1349         }
1350         pstrcat(mask,buf);
1351
1352         do_list(mask, attribute,do_del,False,False);
1353 }
1354
1355 /****************************************************************************
1356 ****************************************************************************/
1357 static void cmd_open(void)
1358 {
1359         pstring mask;
1360         fstring buf;
1361         
1362         pstrcpy(mask,cur_dir);
1363         
1364         if (!next_token(NULL,buf,NULL,sizeof(buf))) {
1365                 DEBUG(0,("del <filename>\n"));
1366                 return;
1367         }
1368         pstrcat(mask,buf);
1369
1370         cli_open(cli, mask, O_RDWR, DENY_ALL);
1371 }
1372
1373
1374 /****************************************************************************
1375 remove a directory
1376 ****************************************************************************/
1377 static void cmd_rmdir(void)
1378 {
1379         pstring mask;
1380         fstring buf;
1381   
1382         pstrcpy(mask,cur_dir);
1383         
1384         if (!next_token(NULL,buf,NULL,sizeof(buf))) {
1385                 DEBUG(0,("rmdir <dirname>\n"));
1386                 return;
1387         }
1388         pstrcat(mask,buf);
1389
1390         if (!cli_rmdir(cli, mask)) {
1391                 DEBUG(0,("%s removing remote directory file %s\n",
1392                          cli_errstr(cli),mask));
1393         }  
1394 }
1395
1396 /****************************************************************************
1397 rename some files
1398 ****************************************************************************/
1399 static void cmd_rename(void)
1400 {
1401         pstring src,dest;
1402         fstring buf,buf2;
1403   
1404         pstrcpy(src,cur_dir);
1405         pstrcpy(dest,cur_dir);
1406         
1407         if (!next_token(NULL,buf,NULL,sizeof(buf)) || 
1408             !next_token(NULL,buf2,NULL, sizeof(buf2))) {
1409                 DEBUG(0,("rename <src> <dest>\n"));
1410                 return;
1411         }
1412
1413         pstrcat(src,buf);
1414         pstrcat(dest,buf2);
1415
1416         if (!cli_rename(cli, src, dest)) {
1417                 DEBUG(0,("%s renaming files\n",cli_errstr(cli)));
1418                 return;
1419         }  
1420 }
1421
1422
1423 /****************************************************************************
1424 toggle the prompt flag
1425 ****************************************************************************/
1426 static void cmd_prompt(void)
1427 {
1428         prompt = !prompt;
1429         DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
1430 }
1431
1432
1433 /****************************************************************************
1434 set the newer than time
1435 ****************************************************************************/
1436 static void cmd_newer(void)
1437 {
1438         fstring buf;
1439         BOOL ok;
1440         SMB_STRUCT_STAT sbuf;
1441
1442         ok = next_token(NULL,buf,NULL,sizeof(buf));
1443         if (ok && (sys_stat(buf,&sbuf) == 0)) {
1444                 newer_than = sbuf.st_mtime;
1445                 DEBUG(1,("Getting files newer than %s",
1446                          asctime(LocalTime(&newer_than))));
1447         } else {
1448                 newer_than = 0;
1449         }
1450
1451         if (ok && newer_than == 0)
1452                 DEBUG(0,("Error setting newer-than time\n"));
1453 }
1454
1455 /****************************************************************************
1456 set the archive level
1457 ****************************************************************************/
1458 static void cmd_archive(void)
1459 {
1460         fstring buf;
1461
1462         if (next_token(NULL,buf,NULL,sizeof(buf))) {
1463                 archive_level = atoi(buf);
1464         } else
1465                 DEBUG(0,("Archive level is %d\n",archive_level));
1466 }
1467
1468 /****************************************************************************
1469 toggle the lowercaseflag
1470 ****************************************************************************/
1471 static void cmd_lowercase(void)
1472 {
1473         lowercase = !lowercase;
1474         DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
1475 }
1476
1477
1478
1479
1480 /****************************************************************************
1481 toggle the recurse flag
1482 ****************************************************************************/
1483 static void cmd_recurse(void)
1484 {
1485         recurse = !recurse;
1486         DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
1487 }
1488
1489 /****************************************************************************
1490 toggle the translate flag
1491 ****************************************************************************/
1492 static void cmd_translate(void)
1493 {
1494         translation = !translation;
1495         DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
1496                  translation?"on":"off"));
1497 }
1498
1499
1500 /****************************************************************************
1501 do a printmode command
1502 ****************************************************************************/
1503 static void cmd_printmode(void)
1504 {
1505         fstring buf;
1506         fstring mode;
1507
1508         if (next_token(NULL,buf,NULL,sizeof(buf))) {
1509                 if (strequal(buf,"text")) {
1510                         printmode = 0;      
1511                 } else {
1512                         if (strequal(buf,"graphics"))
1513                                 printmode = 1;
1514                         else
1515                                 printmode = atoi(buf);
1516                 }
1517         }
1518
1519         switch(printmode)
1520                 {
1521                 case 0: 
1522                         fstrcpy(mode,"text");
1523                         break;
1524                 case 1: 
1525                         fstrcpy(mode,"graphics");
1526                         break;
1527                 default: 
1528                         slprintf(mode,sizeof(mode)-1,"%d",printmode);
1529                         break;
1530                 }
1531         
1532         DEBUG(2,("the printmode is now %s\n",mode));
1533 }
1534
1535 /****************************************************************************
1536 do the lcd command
1537 ****************************************************************************/
1538 static void cmd_lcd(void)
1539 {
1540         fstring buf;
1541         pstring d;
1542         
1543         if (next_token(NULL,buf,NULL,sizeof(buf)))
1544                 chdir(buf);
1545         DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
1546 }
1547
1548 /****************************************************************************
1549 list a share name
1550 ****************************************************************************/
1551 static void browse_fn(const char *name, uint32 m, 
1552                       const char *comment, void *state)
1553 {
1554         fstring typestr;
1555
1556         *typestr=0;
1557
1558         switch (m)
1559         {
1560           case STYPE_DISKTREE:
1561             fstrcpy(typestr,"Disk"); break;
1562           case STYPE_PRINTQ:
1563             fstrcpy(typestr,"Printer"); break;
1564           case STYPE_DEVICE:
1565             fstrcpy(typestr,"Device"); break;
1566           case STYPE_IPC:
1567             fstrcpy(typestr,"IPC"); break;
1568         }
1569
1570         printf("\t%-15.15s%-10.10s%s\n",
1571                name, typestr,comment);
1572 }
1573
1574
1575 /****************************************************************************
1576 try and browse available connections on a host
1577 ****************************************************************************/
1578 static BOOL browse_host(BOOL sort)
1579 {
1580         int ret;
1581
1582         printf("\n\tSharename      Type      Comment\n");
1583         printf("\t---------      ----      -------\n");
1584
1585         if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
1586                 printf("Error returning browse list: %s\n", cli_errstr(cli));
1587
1588         return (ret != -1);
1589 }
1590
1591 /****************************************************************************
1592 list a server name
1593 ****************************************************************************/
1594 static void server_fn(const char *name, uint32 m, 
1595                       const char *comment, void *state)
1596 {
1597         printf("\t%-16.16s     %s\n", name, comment);
1598 }
1599
1600 /****************************************************************************
1601 try and browse available connections on a host
1602 ****************************************************************************/
1603 static BOOL list_servers(char *wk_grp)
1604 {
1605         if (!cli->server_domain) return False;
1606
1607         printf("\n\tServer               Comment\n");
1608         printf("\t---------            -------\n");
1609
1610         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn, NULL);
1611
1612         printf("\n\tWorkgroup            Master\n");
1613         printf("\t---------            -------\n");
1614
1615         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM, server_fn, NULL);
1616         return True;
1617 }
1618
1619 /* Some constants for completing filename arguments */
1620
1621 #define COMPL_NONE        0          /* No completions */
1622 #define COMPL_REMOTE      1          /* Complete remote filename */
1623 #define COMPL_LOCAL       2          /* Complete local filename */
1624
1625 /* This defines the commands supported by this client */
1626 struct
1627 {
1628   char *name;
1629   void (*fn)(void);
1630   char *description;
1631   char compl_args[2];      /* Completion argument info */
1632 } commands[] = 
1633 {
1634   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
1635   {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
1636   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
1637   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
1638   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
1639   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
1640   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
1641   {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
1642   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
1643   {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
1644   {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
1645   {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},  
1646   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
1647   {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
1648   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
1649   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
1650   {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
1651   {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
1652   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
1653   {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
1654   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},  
1655   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},  
1656   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},  
1657   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},  
1658   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
1659   {"printmode",cmd_printmode,"<graphics or text> set the print mode",{COMPL_NONE,COMPL_NONE}},
1660   {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
1661   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
1662   {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
1663   {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
1664   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
1665   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
1666   {"archive",cmd_archive,"<level>\n0=ignore archive bit\n1=only get archive files\n2=only get archive files and reset archive bit\n3=get all files and reset archive bit",{COMPL_NONE,COMPL_NONE}},
1667   {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
1668   {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
1669   {"tarmode",cmd_tarmode,
1670      "<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
1671   {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
1672   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
1673   {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
1674   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
1675   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
1676   {"",NULL,NULL,{COMPL_NONE,COMPL_NONE}}
1677 };
1678
1679
1680 /*******************************************************************
1681   lookup a command string in the list of commands, including 
1682   abbreviations
1683   ******************************************************************/
1684 static int process_tok(fstring tok)
1685 {
1686         int i = 0, matches = 0;
1687         int cmd=0;
1688         int tok_len = strlen(tok);
1689         
1690         while (commands[i].fn != NULL) {
1691                 if (strequal(commands[i].name,tok)) {
1692                         matches = 1;
1693                         cmd = i;
1694                         break;
1695                 } else if (strnequal(commands[i].name, tok, tok_len)) {
1696                         matches++;
1697                         cmd = i;
1698                 }
1699                 i++;
1700         }
1701   
1702         if (matches == 0)
1703                 return(-1);
1704         else if (matches == 1)
1705                 return(cmd);
1706         else
1707                 return(-2);
1708 }
1709
1710 /****************************************************************************
1711 help
1712 ****************************************************************************/
1713 static void cmd_help(void)
1714 {
1715         int i=0,j;
1716         fstring buf;
1717         
1718         if (next_token(NULL,buf,NULL,sizeof(buf))) {
1719                 if ((i = process_tok(buf)) >= 0)
1720                         DEBUG(0,("HELP %s:\n\t%s\n\n",commands[i].name,commands[i].description));                   
1721         } else {
1722                 while (commands[i].description) {
1723                         for (j=0; commands[i].description && (j<5); j++) {
1724                                 DEBUG(0,("%-15s",commands[i].name));
1725                                 i++;
1726                         }
1727                         DEBUG(0,("\n"));
1728                 }
1729         }
1730 }
1731
1732 /****************************************************************************
1733 process a -c command string
1734 ****************************************************************************/
1735 static void process_command_string(char *cmd)
1736 {
1737         pstring line;
1738         char *ptr;
1739
1740         while (cmd[0] != '\0')    {
1741                 char *p;
1742                 fstring tok;
1743                 int i;
1744                 
1745                 if ((p = strchr(cmd, ';')) == 0) {
1746                         strncpy(line, cmd, 999);
1747                         line[1000] = '\0';
1748                         cmd += strlen(cmd);
1749                 } else {
1750                         if (p - cmd > 999) p = cmd + 999;
1751                         strncpy(line, cmd, p - cmd);
1752                         line[p - cmd] = '\0';
1753                         cmd = p + 1;
1754                 }
1755                 
1756                 /* and get the first part of the command */
1757                 ptr = line;
1758                 if (!next_token(&ptr,tok,NULL,sizeof(tok))) continue;
1759                 
1760                 if ((i = process_tok(tok)) >= 0) {
1761                         commands[i].fn();
1762                 } else if (i == -2) {
1763                         DEBUG(0,("%s: command abbreviation ambiguous\n",tok));
1764                 } else {
1765                         DEBUG(0,("%s: command not found\n",tok));
1766                 }
1767         }
1768 }       
1769
1770 /****************************************************************************
1771 handle completion of commands for readline
1772 ****************************************************************************/
1773 static char **completion_fn(char *text, int start, int end)
1774 {
1775 #define MAX_COMPLETIONS 100
1776         char **matches;
1777         int i, count=0;
1778
1779         /* for words not at the start of the line fallback to filename completion */
1780         if (start) return NULL;
1781
1782         matches = (char **)malloc(sizeof(matches[0])*MAX_COMPLETIONS);
1783         if (!matches) return NULL;
1784
1785         matches[count++] = strdup(text);
1786         if (!matches[0]) return NULL;
1787
1788         for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
1789                 if (strncmp(text, commands[i].name, strlen(text)) == 0) {
1790                         matches[count] = strdup(commands[i].name);
1791                         if (!matches[count]) return NULL;
1792                         count++;
1793                 }
1794         }
1795
1796         if (count == 2) {
1797                 free(matches[0]);
1798                 matches[0] = strdup(matches[1]);
1799         }
1800         matches[count] = NULL;
1801         return matches;
1802 }
1803
1804
1805 /****************************************************************************
1806 make sure we swallow keepalives during idle time
1807 ****************************************************************************/
1808 static void readline_callback(void)
1809 {
1810         fd_set fds;
1811         struct timeval timeout;
1812         static time_t last_t;
1813         time_t t;
1814
1815         t = time(NULL);
1816
1817         if (t - last_t < 5) return;
1818
1819         last_t = t;
1820
1821  again:
1822         FD_ZERO(&fds);
1823         FD_SET(cli->fd,&fds);
1824
1825         timeout.tv_sec = 0;
1826         timeout.tv_usec = 0;
1827         sys_select_intr(cli->fd+1,&fds,&timeout);
1828                 
1829         /* We deliberately use receive_smb instead of
1830            client_receive_smb as we want to receive
1831            session keepalives and then drop them here.
1832         */
1833         if (FD_ISSET(cli->fd,&fds)) {
1834                 receive_smb(cli->fd,cli->inbuf,0);
1835                 goto again;
1836         }
1837       
1838         cli_chkpath(cli, "\\");
1839 }
1840
1841
1842 /****************************************************************************
1843 process commands on stdin
1844 ****************************************************************************/
1845 static void process_stdin(void)
1846 {
1847         char *ptr;
1848
1849         while (1) {
1850                 fstring tok;
1851                 fstring the_prompt;
1852                 char *line;
1853                 int i;
1854                 
1855                 /* display a prompt */
1856                 slprintf(the_prompt, sizeof(the_prompt)-1, "smb: %s> ", cur_dir);
1857                 line = smb_readline(the_prompt, readline_callback, completion_fn);
1858
1859                 if (!line) break;
1860
1861                 /* special case - first char is ! */
1862                 if (*line == '!') {
1863                         system(line + 1);
1864                         continue;
1865                 }
1866       
1867                 /* and get the first part of the command */
1868                 ptr = line;
1869                 if (!next_token(&ptr,tok,NULL,sizeof(tok))) continue;
1870
1871                 if ((i = process_tok(tok)) >= 0) {
1872                         commands[i].fn();
1873                 } else if (i == -2) {
1874                         DEBUG(0,("%s: command abbreviation ambiguous\n",tok));
1875                 } else {
1876                         DEBUG(0,("%s: command not found\n",tok));
1877                 }
1878         }
1879 }
1880
1881
1882 /***************************************************** 
1883 return a connection to a server
1884 *******************************************************/
1885 struct cli_state *do_connect(char *server, char *share)
1886 {
1887         struct cli_state *c;
1888         struct nmb_name called, calling;
1889         char *server_n;
1890         struct in_addr ip;
1891         extern struct in_addr ipzero;
1892         fstring servicename;
1893         char *sharename;
1894         
1895         /* make a copy so we don't modify the global string 'service' */
1896         safe_strcpy(servicename, share, sizeof(servicename)-1);
1897         sharename = servicename;
1898         if (*sharename == '\\') {
1899                 server = sharename+2;
1900                 sharename = strchr(server,'\\');
1901                 if (!sharename) return NULL;
1902                 *sharename = 0;
1903                 sharename++;
1904         }
1905
1906         server_n = server;
1907         
1908         ip = ipzero;
1909
1910         make_nmb_name(&calling, global_myname, 0x0);
1911         make_nmb_name(&called , server, name_type);
1912
1913  again:
1914         ip = ipzero;
1915         if (have_ip) ip = dest_ip;
1916
1917         /* have to open a new connection */
1918         if (!(c=cli_initialise(NULL)) || (cli_set_port(c, port) == 0) ||
1919             !cli_connect(c, server_n, &ip)) {
1920                 DEBUG(0,("Connection to %s failed\n", server_n));
1921                 return NULL;
1922         }
1923
1924         c->protocol = max_protocol;
1925
1926         if (!cli_session_request(c, &calling, &called)) {
1927                 char *p;
1928                 DEBUG(0,("session request to %s failed (%s)\n", 
1929                          called.name, cli_errstr(c)));
1930                 cli_shutdown(c);
1931                 free(c);
1932                 if ((p=strchr(called.name, '.'))) {
1933                         *p = 0;
1934                         goto again;
1935                 }
1936                 if (strcmp(called.name, "*SMBSERVER")) {
1937                         make_nmb_name(&called , "*SMBSERVER", 0x20);
1938                         goto again;
1939                 }
1940                 return NULL;
1941         }
1942
1943         DEBUG(4,(" session request ok\n"));
1944
1945         if (!cli_negprot(c)) {
1946                 DEBUG(0,("protocol negotiation failed\n"));
1947                 cli_shutdown(c);
1948                 free(c);
1949                 return NULL;
1950         }
1951
1952         if (!got_pass) {
1953                 char *pass = getpass("Password: ");
1954                 if (pass) {
1955                         pstrcpy(password, pass);
1956                 }
1957         }
1958
1959         if (!cli_session_setup(c, username, 
1960                                password, strlen(password),
1961                                password, strlen(password),
1962                                workgroup)) {
1963                 /* if a password was not supplied then try again with a null username */
1964                 if (password[0] || !username[0] || 
1965                     !cli_session_setup(c, "", "", 0, "", 0, workgroup)) { 
1966                         DEBUG(0,("session setup failed: %s\n", cli_errstr(c)));
1967                         cli_shutdown(c);
1968                         free(c);
1969                         return NULL;
1970                 }
1971                 DEBUG(0,("Anonymous login successful\n"));
1972         }
1973
1974         /*
1975          * These next two lines are needed to emulate
1976          * old client behaviour for people who have
1977          * scripts based on client output.
1978          * QUESTION ? Do we want to have a 'client compatibility
1979          * mode to turn these on/off ? JRA.
1980          */
1981
1982         if (*c->server_domain || *c->server_os || *c->server_type)
1983                 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
1984                         c->server_domain,c->server_os,c->server_type));
1985         
1986         DEBUG(4,(" session setup ok\n"));
1987
1988         if (!cli_send_tconX(c, sharename, "?????",
1989                             password, strlen(password)+1)) {
1990                 DEBUG(0,("tree connect failed: %s\n", cli_errstr(c)));
1991                 cli_shutdown(c);
1992                 free(c);
1993                 return NULL;
1994         }
1995
1996         DEBUG(4,(" tconx ok\n"));
1997
1998         return c;
1999 }
2000
2001
2002 /****************************************************************************
2003   process commands from the client
2004 ****************************************************************************/
2005 static BOOL process(char *base_directory)
2006 {
2007         cli = do_connect(desthost, service);
2008         if (!cli) {
2009                 return(False);
2010         }
2011
2012         if (*base_directory) do_cd(base_directory);
2013         
2014         if (cmdstr) {
2015                 process_command_string(cmdstr);
2016         } else {
2017                 process_stdin();
2018         }
2019   
2020         cli_shutdown(cli);
2021         return(True);
2022 }
2023
2024 /****************************************************************************
2025 usage on the program
2026 ****************************************************************************/
2027 static void usage(char *pname)
2028 {
2029   DEBUG(0,("Usage: %s service <password> [options]", pname));
2030
2031   DEBUG(0,("\nVersion %s\n",VERSION));
2032   DEBUG(0,("\t-s smb.conf           pathname to smb.conf file\n"));
2033   DEBUG(0,("\t-O socket_options     socket options to use\n"));
2034   DEBUG(0,("\t-R name resolve order use these name resolution services only\n"));
2035   DEBUG(0,("\t-M host               send a winpopup message to the host\n"));
2036   DEBUG(0,("\t-i scope              use this NetBIOS scope\n"));
2037   DEBUG(0,("\t-N                    don't ask for a password\n"));
2038   DEBUG(0,("\t-n netbios name.      Use this name as my netbios name\n"));
2039   DEBUG(0,("\t-d debuglevel         set the debuglevel\n"));
2040   DEBUG(0,("\t-P                    connect to service as a printer\n"));
2041   DEBUG(0,("\t-p port               connect to the specified port\n"));
2042   DEBUG(0,("\t-l log basename.      Basename for log/debug files\n"));
2043   DEBUG(0,("\t-h                    Print this help message.\n"));
2044   DEBUG(0,("\t-I dest IP            use this IP to connect to\n"));
2045   DEBUG(0,("\t-E                    write messages to stderr instead of stdout\n"));
2046   DEBUG(0,("\t-U username           set the network username\n"));
2047   DEBUG(0,("\t-L host               get a list of shares available on a host\n"));
2048   DEBUG(0,("\t-t terminal code      terminal i/o code {sjis|euc|jis7|jis8|junet|hex}\n"));
2049   DEBUG(0,("\t-m max protocol       set the max protocol level\n"));
2050   DEBUG(0,("\t-A filename           get the credentials from a file\n"));
2051   DEBUG(0,("\t-W workgroup          set the workgroup name\n"));
2052   DEBUG(0,("\t-T<c|x>IXFqgbNan      command line tar\n"));
2053   DEBUG(0,("\t-D directory          start from directory\n"));
2054   DEBUG(0,("\t-c command string     execute semicolon separated commands\n"));
2055   DEBUG(0,("\t-b xmit/send buffer   changes the transmit/send buffer (default: 65520)\n"));
2056   DEBUG(0,("\n"));
2057 }
2058
2059
2060 /****************************************************************************
2061 get a password from a a file or file descriptor
2062 exit on failure
2063 ****************************************************************************/
2064 static void get_password_file(void)
2065 {
2066         int fd = -1;
2067         char *p;
2068         BOOL close_it = False;
2069         pstring spec;
2070         char pass[128];
2071                 
2072         if ((p = getenv("PASSWD_FD")) != NULL) {
2073                 pstrcpy(spec, "descriptor ");
2074                 pstrcat(spec, p);
2075                 sscanf(p, "%d", &fd);
2076                 close_it = False;
2077         } else if ((p = getenv("PASSWD_FILE")) != NULL) {
2078                 fd = sys_open(p, O_RDONLY, 0);
2079                 pstrcpy(spec, p);
2080                 if (fd < 0) {
2081                         fprintf(stderr, "Error opening PASSWD_FILE %s: %s\n",
2082                                 spec, strerror(errno));
2083                         exit(1);
2084                 }
2085                 close_it = True;
2086         }
2087
2088         for(p = pass, *p = '\0'; /* ensure that pass is null-terminated */
2089             p && p - pass < sizeof(pass);) {
2090                 switch (read(fd, p, 1)) {
2091                 case 1:
2092                         if (*p != '\n' && *p != '\0') {
2093                                 *++p = '\0'; /* advance p, and null-terminate pass */
2094                                 break;
2095                         }
2096                 case 0:
2097                         if (p - pass) {
2098                                 *p = '\0'; /* null-terminate it, just in case... */
2099                                 p = NULL; /* then force the loop condition to become false */
2100                                 break;
2101                         } else {
2102                                 fprintf(stderr, "Error reading password from file %s: %s\n",
2103                                         spec, "empty password\n");
2104                                 exit(1);
2105                         }
2106                         
2107                 default:
2108                         fprintf(stderr, "Error reading password from file %s: %s\n",
2109                                 spec, strerror(errno));
2110                         exit(1);
2111                 }
2112         }
2113         pstrcpy(password, pass);
2114         if (close_it)
2115                 close(fd);
2116 }       
2117
2118
2119
2120 /****************************************************************************
2121 handle a -L query
2122 ****************************************************************************/
2123 static int do_host_query(char *query_host)
2124 {
2125         cli = do_connect(query_host, "IPC$");
2126         if (!cli)
2127                 return 1;
2128
2129         browse_host(True);
2130         list_servers(workgroup);
2131
2132         cli_shutdown(cli);
2133         
2134         return(0);
2135 }
2136
2137
2138 /****************************************************************************
2139 handle a tar operation
2140 ****************************************************************************/
2141 static int do_tar_op(char *base_directory)
2142 {
2143         int ret;
2144         cli = do_connect(desthost, service);
2145         if (!cli)
2146                 return 1;
2147
2148         recurse=True;
2149
2150         if (*base_directory) do_cd(base_directory);
2151         
2152         ret=process_tar();
2153
2154         cli_shutdown(cli);
2155
2156         return(ret);
2157 }
2158
2159 /****************************************************************************
2160 handle a message operation
2161 ****************************************************************************/
2162 static int do_message_op(void)
2163 {
2164         struct in_addr ip;
2165         struct nmb_name called, calling;
2166
2167         ip = ipzero;
2168
2169         make_nmb_name(&calling, global_myname, 0x0);
2170         make_nmb_name(&called , desthost, name_type);
2171
2172         ip = ipzero;
2173         if (have_ip) ip = dest_ip;
2174
2175         if (!(cli=cli_initialise(NULL)) || (cli_set_port(cli, port) == 0) || !cli_connect(cli, desthost, &ip)) {
2176                 DEBUG(0,("Connection to %s failed\n", desthost));
2177                 return 1;
2178         }
2179
2180         if (!cli_session_request(cli, &calling, &called)) {
2181                 DEBUG(0,("session request failed\n"));
2182                 cli_shutdown(cli);
2183                 return 1;
2184         }
2185
2186         send_message();
2187         cli_shutdown(cli);
2188
2189         return 0;
2190 }
2191
2192
2193 /****************************************************************************
2194   main program
2195 ****************************************************************************/
2196  int main(int argc,char *argv[])
2197 {
2198         fstring base_directory;
2199         char *pname = argv[0];
2200         int opt;
2201         extern FILE *dbf;
2202         extern char *optarg;
2203         extern int optind;
2204         int old_debug;
2205         pstring query_host;
2206         BOOL message = False;
2207         extern char tar_type;
2208         static pstring servicesf = CONFIGFILE;
2209         pstring term_code;
2210         pstring new_name_resolve_order;
2211         char *p;
2212
2213 #ifdef KANJI
2214         pstrcpy(term_code, KANJI);
2215 #else /* KANJI */
2216         *term_code = 0;
2217 #endif /* KANJI */
2218
2219         *query_host = 0;
2220         *base_directory = 0;
2221
2222         *new_name_resolve_order = 0;
2223
2224         DEBUGLEVEL = 2;
2225  
2226         setup_logging(pname,True);
2227
2228         /*
2229          * If the -E option is given, be careful not to clobber stdout
2230          * before processing the options.  28.Feb.99, richard@hacom.nl.
2231          * Also pre-parse the -s option to get the service file name.
2232          */
2233
2234         for (opt = 1; opt < argc; opt++) {
2235                 if (strcmp(argv[opt], "-E") == 0)
2236                         dbf = stderr;
2237                 else if(strncmp(argv[opt], "-s", 2) == 0) {
2238                         if(argv[opt][2] != '\0')
2239                                 pstrcpy(servicesf, &argv[opt][2]);
2240                         else if(argv[opt+1] != NULL) {
2241                                 /*
2242                                  * At least one more arg left.
2243                                  */
2244                                 pstrcpy(servicesf, argv[opt+1]);
2245                         } else {
2246                                 usage(pname);
2247                                 exit(1);
2248                         }
2249                 }
2250         }
2251
2252         TimeInit();
2253         charset_initialise();
2254
2255         in_client = True;   /* Make sure that we tell lp_load we are */
2256
2257         old_debug = DEBUGLEVEL;
2258         if (!lp_load(servicesf,True,False,False)) {
2259                 fprintf(stderr, "Can't load %s - run testparm to debug it\n", servicesf);
2260         }
2261         DEBUGLEVEL = old_debug;
2262         
2263         codepage_initialise(lp_client_code_page());
2264
2265 #ifdef WITH_SSL
2266         sslutil_init(0);
2267 #endif
2268
2269         pstrcpy(workgroup,lp_workgroup());
2270
2271         load_interfaces();
2272         myumask = umask(0);
2273         umask(myumask);
2274
2275         if (getenv("USER")) {
2276                 pstrcpy(username,getenv("USER"));
2277
2278                 /* modification to support userid%passwd syntax in the USER var
2279                    25.Aug.97, jdblair@uab.edu */
2280
2281                 if ((p=strchr(username,'%'))) {
2282                         *p = 0;
2283                         pstrcpy(password,p+1);
2284                         got_pass = True;
2285                         memset(strchr(getenv("USER"),'%')+1,'X',strlen(password));
2286                 }
2287                 strupper(username);
2288         }
2289
2290         /* modification to support PASSWD environmental var
2291            25.Aug.97, jdblair@uab.edu */
2292         if (getenv("PASSWD")) {
2293                 pstrcpy(password,getenv("PASSWD"));
2294                 got_pass = True;
2295         }
2296
2297         if (getenv("PASSWD_FD") || getenv("PASSWD_FILE")) {
2298                 get_password_file();
2299                 got_pass = True;
2300         }
2301
2302         if (*username == 0 && getenv("LOGNAME")) {
2303                 pstrcpy(username,getenv("LOGNAME"));
2304                 strupper(username);
2305         }
2306
2307         if (*username == 0) {
2308                 pstrcpy(username,"GUEST");
2309         }
2310
2311         if (argc < 2) {
2312                 usage(pname);
2313                 exit(1);
2314         }
2315   
2316         if (*argv[1] != '-') {
2317                 pstrcpy(service,argv[1]);  
2318                 /* Convert any '/' characters in the service name to '\' characters */
2319                 string_replace( service, '/','\\');
2320                 argc--;
2321                 argv++;
2322                 
2323                 if (count_chars(service,'\\') < 3) {
2324                         usage(pname);
2325                         printf("\n%s: Not enough '\\' characters in service\n",service);
2326                         exit(1);
2327                 }
2328
2329                 if (argc > 1 && (*argv[1] != '-')) {
2330                         got_pass = True;
2331                         pstrcpy(password,argv[1]);  
2332                         memset(argv[1],'X',strlen(argv[1]));
2333                         argc--;
2334                         argv++;
2335                 }
2336         }
2337
2338         while ((opt = 
2339                 getopt(argc, argv,"s:O:R:M:i:Nn:d:Pp:l:hI:EU:L:t:m:W:T:D:c:b:A:")) != EOF) {
2340                 switch (opt) {
2341                 case 's':
2342                         pstrcpy(servicesf, optarg);
2343                         break;
2344                 case 'O':
2345                         pstrcpy(user_socket_options,optarg);
2346                         break;  
2347                 case 'R':
2348                         pstrcpy(new_name_resolve_order, optarg);
2349                         break;
2350                 case 'M':
2351                         name_type = 0x03; /* messages are sent to NetBIOS name type 0x3 */
2352                         pstrcpy(desthost,optarg);
2353                         message = True;
2354                         break;
2355                 case 'i':
2356                         {
2357                                 extern pstring global_scope;
2358                                 pstrcpy(global_scope,optarg);
2359                                 strupper(global_scope);
2360                         }
2361                         break;
2362                 case 'N':
2363                         got_pass = True;
2364                         break;
2365                 case 'n':
2366                         pstrcpy(global_myname,optarg);
2367                         break;
2368                 case 'd':
2369                         if (*optarg == 'A')
2370                                 DEBUGLEVEL = 10000;
2371                         else
2372                                 DEBUGLEVEL = atoi(optarg);
2373                         break;
2374                 case 'P':
2375                         /* not needed anymore */
2376                         break;
2377                 case 'p':
2378                         port = atoi(optarg);
2379                         break;
2380                 case 'l':
2381                         slprintf(debugf,sizeof(debugf)-1, "%s.client",optarg);
2382                         break;
2383                 case 'h':
2384                         usage(pname);
2385                         exit(0);
2386                         break;
2387                 case 'I':
2388                         {
2389                                 dest_ip = *interpret_addr2(optarg);
2390                                 if (zero_ip(dest_ip))
2391                                         exit(1);
2392                                 have_ip = True;
2393                         }
2394                         break;
2395                 case 'E':
2396                         dbf = stderr;
2397                         break;
2398                 case 'U':
2399                         {
2400                                 char *lp;
2401                                 pstrcpy(username,optarg);
2402                                 if ((lp=strchr(username,'%'))) {
2403                                         *lp = 0;
2404                                         pstrcpy(password,lp+1);
2405                                         got_pass = True;
2406                                         memset(strchr(optarg,'%')+1,'X',strlen(password));
2407                                 }
2408                         }
2409                         break;
2410
2411                 case 'A':
2412                         {
2413                                 FILE *auth;
2414                                 fstring buf;
2415                                 uint16 len = 0;
2416                                 char *ptr, *val, *param;
2417                                
2418                                 if ((auth=sys_fopen(optarg, "r")) == NULL)
2419                                 {
2420                                         /* fail if we can't open the credentials file */
2421                                         DEBUG(0,("ERROR: Unable to open credentials file!\n"));
2422                                         exit (-1);
2423                                 }
2424                                 
2425                                 while (!feof(auth))
2426                                 {  
2427                                         /* get a line from the file */
2428                                         if (!fgets (buf, sizeof(buf), auth))
2429                                                 continue;
2430                                         len = strlen(buf);
2431                                         
2432                                         if ((len) && (buf[len-1]=='\n'))
2433                                         {
2434                                                 buf[len-1] = '\0';
2435                                                 len--;
2436                                         }       
2437                                         if (len == 0)
2438                                                 continue;
2439                                         
2440                                         /* break up the line into parameter & value.
2441                                            will need to eat a little whitespace possibly */
2442                                         param = buf;
2443                                         if (!(ptr = strchr (buf, '=')))
2444                                                 continue;
2445                                         val = ptr+1;
2446                                         *ptr = '\0';
2447                                         
2448                                         /* eat leading white space */
2449                                         while ((*val!='\0') && ((*val==' ') || (*val=='\t')))
2450                                                 val++;
2451                                         
2452                                         if (strwicmp("password", param) == 0)
2453                                         {
2454                                                 pstrcpy(password, val);
2455                                                 got_pass = True;
2456                                         }
2457                                         else if (strwicmp("username", param) == 0)
2458                                                 pstrcpy(username, val);
2459                                                 
2460                                         memset(buf, 0, sizeof(buf));
2461                                 }
2462                                 fclose(auth);
2463                         }
2464                         break;
2465
2466                 case 'L':
2467                         p = optarg;
2468                         while(*p == '\\' || *p == '/')
2469                                 p++;
2470                         pstrcpy(query_host,p);
2471                         break;
2472                 case 't':
2473                         pstrcpy(term_code, optarg);
2474                         break;
2475                 case 'm':
2476                         max_protocol = interpret_protocol(optarg, max_protocol);
2477                         break;
2478                 case 'W':
2479                         pstrcpy(workgroup,optarg);
2480                         break;
2481                 case 'T':
2482                         if (!tar_parseargs(argc, argv, optarg, optind)) {
2483                                 usage(pname);
2484                                 exit(1);
2485                         }
2486                         break;
2487                 case 'D':
2488                         pstrcpy(base_directory,optarg);
2489                         break;
2490                 case 'c':
2491                         cmdstr = optarg;
2492                         break;
2493                 case 'b':
2494                         io_bufsize = MAX(1, atoi(optarg));
2495                         break;
2496                 default:
2497                         usage(pname);
2498                         exit(1);
2499                 }
2500         }
2501
2502         get_myname((*global_myname)?NULL:global_myname);  
2503
2504         if(*new_name_resolve_order)
2505                 lp_set_name_resolve_order(new_name_resolve_order);
2506
2507         if (*term_code)
2508                 interpret_coding_system(term_code);
2509
2510         if (!tar_type && !*query_host && !*service && !message) {
2511                 usage(pname);
2512                 exit(1);
2513         }
2514
2515         DEBUG( 3, ( "Client started (version %s).\n", VERSION ) );
2516
2517         if (tar_type) {
2518                 if (cmdstr)
2519                         process_command_string(cmdstr);
2520                 return do_tar_op(base_directory);
2521         }
2522
2523         if ((p=strchr(query_host,'#'))) {
2524                 *p = 0;
2525                 p++;
2526                 sscanf(p, "%x", &name_type);
2527         }
2528   
2529         if (*query_host) {
2530                 return do_host_query(query_host);
2531         }
2532
2533         if (message) {
2534                 return do_message_op();
2535         }
2536         
2537         if (!process(base_directory)) {
2538                 return(1);
2539         }
2540
2541         return(0);
2542 }