Samba janitors: applying mbp's redundant umask fix.
[jra/samba/.git] / source3 / client / client.c
1 /* 
2    Unix SMB/CIFS implementation.
3    SMB client
4    Copyright (C) Andrew Tridgell 1994-1998
5    Copyright (C) Simo Sorce 2001-2002
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 #include "../client/client_proto.h"
26 #ifndef REGISTER
27 #define REGISTER 0
28 #endif
29
30 const char prog_name[] = "smbclient";
31
32 struct cli_state *cli;
33 extern BOOL in_client;
34 extern BOOL AllowDebugChange;
35 static int port = 0;
36 pstring cur_dir = "\\";
37 static pstring cd_path = "";
38 static pstring service;
39 static pstring desthost;
40 static pstring password;
41 static pstring username;
42 static pstring workgroup;
43 static char *cmdstr;
44 static BOOL got_pass;
45 static int io_bufsize = 64512;
46 static BOOL use_kerberos;
47
48 static int name_type = 0x20;
49 static int max_protocol = PROTOCOL_NT1;
50 extern pstring user_socket_options;
51
52 static int process_tok(fstring tok);
53 static int cmd_help(void);
54
55 /* 30 second timeout on most commands */
56 #define CLIENT_TIMEOUT (30*1000)
57 #define SHORT_TIMEOUT (5*1000)
58
59 /* value for unused fid field in trans2 secondary request */
60 #define FID_UNUSED (0xFFFF)
61
62 time_t newer_than = 0;
63 static int archive_level = 0;
64
65 static BOOL translation = False;
66
67 static BOOL have_ip;
68
69 /* clitar bits insert */
70 extern int blocksize;
71 extern BOOL tar_inc;
72 extern BOOL tar_reset;
73 /* clitar bits end */
74  
75
76 static BOOL prompt = True;
77
78 static int printmode = 1;
79
80 static BOOL recurse = False;
81 BOOL lowercase = False;
82
83 static struct in_addr dest_ip;
84
85 #define SEPARATORS " \t\n\r"
86
87 static BOOL abort_mget = True;
88
89 static pstring fileselection = "";
90
91 extern file_info def_finfo;
92
93 /* timing globals */
94 SMB_BIG_UINT get_total_size = 0;
95 unsigned int get_total_time_ms = 0;
96 static SMB_BIG_UINT put_total_size = 0;
97 static unsigned int put_total_time_ms = 0;
98
99 /* totals globals */
100 static double dir_total;
101
102 #define USENMB
103
104 /* some forward declarations */
105 static struct cli_state *do_connect(const char *server, const char *share);
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 n, XFILE *f)
139 {
140         int i;
141         int c;
142
143         if (!translation)
144                 return x_fread(b,1,n,f);
145   
146         i = 0;
147         while (i < (n - 1) && (i < BUFFER_SIZE)) {
148                 if ((c = x_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                 d_printf("message start: %s\n", cli_errstr(cli));
173                 return;
174         }
175
176
177         d_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                 if (!cli_message_text(cli, msg, l, grp_id)) {
194                         d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
195                         return;
196                 }      
197                 
198                 total_len += l;
199         }
200
201         if (total_len >= 1600)
202                 d_printf("the message was truncated to 1600 bytes\n");
203         else
204                 d_printf("sent %d bytes\n",total_len);
205
206         if (!cli_message_end(cli, grp_id)) {
207                 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
208                 return;
209         }      
210 }
211
212
213
214 /****************************************************************************
215 check the space on a device
216 ****************************************************************************/
217 static int do_dskattr(void)
218 {
219         int total, bsize, avail;
220
221         if (!cli_dskattr(cli, &bsize, &total, &avail)) {
222                 d_printf("Error in dskattr: %s\n",cli_errstr(cli)); 
223                 return 1;
224         }
225
226         d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
227                  total, bsize, avail);
228
229         return 0;
230 }
231
232 /****************************************************************************
233 show cd/pwd
234 ****************************************************************************/
235 static int cmd_pwd(void)
236 {
237         d_printf("Current directory is %s",service);
238         d_printf("%s\n",cur_dir);
239         return 0;
240 }
241
242
243 /****************************************************************************
244 change directory - inner section
245 ****************************************************************************/
246 static int do_cd(char *newdir)
247 {
248         char *p = newdir;
249         pstring saved_dir;
250         pstring dname;
251       
252         dos_format(newdir);
253
254         /* Save the current directory in case the
255            new directory is invalid */
256         pstrcpy(saved_dir, cur_dir);
257         if (*p == '\\')
258                 pstrcpy(cur_dir,p);
259         else
260                 pstrcat(cur_dir,p);
261         if (*(cur_dir+strlen(cur_dir)-1) != '\\') {
262                 pstrcat(cur_dir, "\\");
263         }
264         dos_clean_name(cur_dir);
265         pstrcpy(dname,cur_dir);
266         pstrcat(cur_dir,"\\");
267         dos_clean_name(cur_dir);
268         
269         if (!strequal(cur_dir,"\\")) {
270                 if (!cli_chkpath(cli, dname)) {
271                         d_printf("cd %s: %s\n", dname, cli_errstr(cli));
272                         pstrcpy(cur_dir,saved_dir);
273                 }
274         }
275         
276         pstrcpy(cd_path,cur_dir);
277
278         return 0;
279 }
280
281 /****************************************************************************
282 change directory
283 ****************************************************************************/
284 static int cmd_cd(void)
285 {
286         fstring buf;
287         int rc = 0;
288
289         if (next_token_nr(NULL,buf,NULL,sizeof(buf)))
290                 rc = do_cd(buf);
291         else
292                 d_printf("Current directory is %s\n",cur_dir);
293
294         return rc;
295 }
296
297
298 /*******************************************************************
299   decide if a file should be operated on
300   ********************************************************************/
301 static BOOL do_this_one(file_info *finfo)
302 {
303         if (finfo->mode & aDIR) return(True);
304
305         if (*fileselection && 
306             !mask_match(finfo->name,fileselection,False)) {
307                 DEBUG(3,("mask_match %s failed\n", finfo->name));
308                 return False;
309         }
310
311         if (newer_than && finfo->mtime < newer_than) {
312                 DEBUG(3,("newer_than %s failed\n", finfo->name));
313                 return(False);
314         }
315
316         if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
317                 DEBUG(3,("archive %s failed\n", finfo->name));
318                 return(False);
319         }
320         
321         return(True);
322 }
323
324 /****************************************************************************
325   display info about a file
326   ****************************************************************************/
327 static void display_finfo(file_info *finfo)
328 {
329         if (do_this_one(finfo)) {
330                 time_t t = finfo->mtime; /* the time is assumed to be passed as GMT */
331                 d_printf("  %-30s%7.7s %8.0f  %s",
332                          finfo->name,
333                          attrib_string(finfo->mode),
334                          (double)finfo->size,
335                          asctime(LocalTime(&t)));
336                 dir_total += finfo->size;
337         }
338 }
339
340
341 /****************************************************************************
342    accumulate size of a file
343   ****************************************************************************/
344 static void do_du(file_info *finfo)
345 {
346         if (do_this_one(finfo)) {
347                 dir_total += finfo->size;
348         }
349 }
350
351 static BOOL do_list_recurse;
352 static BOOL do_list_dirs;
353 static char *do_list_queue = 0;
354 static long do_list_queue_size = 0;
355 static long do_list_queue_start = 0;
356 static long do_list_queue_end = 0;
357 static void (*do_list_fn)(file_info *);
358
359 /****************************************************************************
360 functions for do_list_queue
361   ****************************************************************************/
362
363 /*
364  * The do_list_queue is a NUL-separated list of strings stored in a
365  * char*.  Since this is a FIFO, we keep track of the beginning and
366  * ending locations of the data in the queue.  When we overflow, we
367  * double the size of the char*.  When the start of the data passes
368  * the midpoint, we move everything back.  This is logically more
369  * complex than a linked list, but easier from a memory management
370  * angle.  In any memory error condition, do_list_queue is reset.
371  * Functions check to ensure that do_list_queue is non-NULL before
372  * accessing it.
373  */
374 static void reset_do_list_queue(void)
375 {
376         SAFE_FREE(do_list_queue);
377         do_list_queue_size = 0;
378         do_list_queue_start = 0;
379         do_list_queue_end = 0;
380 }
381
382 static void init_do_list_queue(void)
383 {
384         reset_do_list_queue();
385         do_list_queue_size = 1024;
386         do_list_queue = malloc(do_list_queue_size);
387         if (do_list_queue == 0) { 
388                 d_printf("malloc fail for size %d\n",
389                          (int)do_list_queue_size);
390                 reset_do_list_queue();
391         } else {
392                 memset(do_list_queue, 0, do_list_queue_size);
393         }
394 }
395
396 static void adjust_do_list_queue(void)
397 {
398         /*
399          * If the starting point of the queue is more than half way through,
400          * move everything toward the beginning.
401          */
402         if (do_list_queue && (do_list_queue_start == do_list_queue_end))
403         {
404                 DEBUG(4,("do_list_queue is empty\n"));
405                 do_list_queue_start = do_list_queue_end = 0;
406                 *do_list_queue = '\0';
407         }
408         else if (do_list_queue_start > (do_list_queue_size / 2))
409         {
410                 DEBUG(4,("sliding do_list_queue backward\n"));
411                 memmove(do_list_queue,
412                         do_list_queue + do_list_queue_start,
413                         do_list_queue_end - do_list_queue_start);
414                 do_list_queue_end -= do_list_queue_start;
415                 do_list_queue_start = 0;
416         }
417            
418 }
419
420 static void add_to_do_list_queue(const char* entry)
421 {
422         char *dlq;
423         long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
424         while (new_end > do_list_queue_size)
425         {
426                 do_list_queue_size *= 2;
427                 DEBUG(4,("enlarging do_list_queue to %d\n",
428                          (int)do_list_queue_size));
429                 dlq = Realloc(do_list_queue, do_list_queue_size);
430                 if (! dlq) {
431                         d_printf("failure enlarging do_list_queue to %d bytes\n",
432                                  (int)do_list_queue_size);
433                         reset_do_list_queue();
434                 }
435                 else
436                 {
437                         do_list_queue = dlq;
438                         memset(do_list_queue + do_list_queue_size / 2,
439                                0, do_list_queue_size / 2);
440                 }
441         }
442         if (do_list_queue)
443         {
444                 pstrcpy(do_list_queue + do_list_queue_end, entry);
445                 do_list_queue_end = new_end;
446                 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
447                          entry, (int)do_list_queue_start, (int)do_list_queue_end));
448         }
449 }
450
451 static char *do_list_queue_head(void)
452 {
453         return do_list_queue + do_list_queue_start;
454 }
455
456 static void remove_do_list_queue_head(void)
457 {
458         if (do_list_queue_end > do_list_queue_start)
459         {
460                 do_list_queue_start += strlen(do_list_queue_head()) + 1;
461                 adjust_do_list_queue();
462                 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
463                          (int)do_list_queue_start, (int)do_list_queue_end));
464         }
465 }
466
467 static int do_list_queue_empty(void)
468 {
469         return (! (do_list_queue && *do_list_queue));
470 }
471
472 /****************************************************************************
473 a helper for do_list
474   ****************************************************************************/
475 static void do_list_helper(file_info *f, const char *mask, void *state)
476 {
477         if (f->mode & aDIR) {
478                 if (do_list_dirs && do_this_one(f)) {
479                         do_list_fn(f);
480                 }
481                 if (do_list_recurse && 
482                     !strequal(f->name,".") && 
483                     !strequal(f->name,"..")) {
484                         pstring mask2;
485                         char *p;
486
487                         pstrcpy(mask2, mask);
488                         p = strrchr_m(mask2,'\\');
489                         if (!p) return;
490                         p[1] = 0;
491                         pstrcat(mask2, f->name);
492                         pstrcat(mask2,"\\*");
493                         add_to_do_list_queue(mask2);
494                 }
495                 return;
496         }
497
498         if (do_this_one(f)) {
499                 do_list_fn(f);
500         }
501 }
502
503
504 /****************************************************************************
505 a wrapper around cli_list that adds recursion
506   ****************************************************************************/
507 void do_list(const char *mask,uint16 attribute,void (*fn)(file_info *),BOOL rec, BOOL dirs)
508 {
509         static int in_do_list = 0;
510
511         if (in_do_list && rec)
512         {
513                 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
514                 exit(1);
515         }
516
517         in_do_list = 1;
518
519         do_list_recurse = rec;
520         do_list_dirs = dirs;
521         do_list_fn = fn;
522
523         if (rec)
524         {
525                 init_do_list_queue();
526                 add_to_do_list_queue(mask);
527                 
528                 while (! do_list_queue_empty())
529                 {
530                         /*
531                          * Need to copy head so that it doesn't become
532                          * invalid inside the call to cli_list.  This
533                          * would happen if the list were expanded
534                          * during the call.
535                          * Fix from E. Jay Berkenbilt (ejb@ql.org)
536                          */
537                         pstring head;
538                         pstrcpy(head, do_list_queue_head());
539                         cli_list(cli, head, attribute, do_list_helper, NULL);
540                         remove_do_list_queue_head();
541                         if ((! do_list_queue_empty()) && (fn == display_finfo))
542                         {
543                                 char* next_file = do_list_queue_head();
544                                 char* save_ch = 0;
545                                 if ((strlen(next_file) >= 2) &&
546                                     (next_file[strlen(next_file) - 1] == '*') &&
547                                     (next_file[strlen(next_file) - 2] == '\\'))
548                                 {
549                                         save_ch = next_file +
550                                                 strlen(next_file) - 2;
551                                         *save_ch = '\0';
552                                 }
553                                 d_printf("\n%s\n",next_file);
554                                 if (save_ch)
555                                 {
556                                         *save_ch = '\\';
557                                 }
558                         }
559                 }
560         }
561         else
562         {
563                 if (cli_list(cli, mask, attribute, do_list_helper, NULL) == -1)
564                 {
565                         d_printf("%s listing %s\n", cli_errstr(cli), mask);
566                 }
567         }
568
569         in_do_list = 0;
570         reset_do_list_queue();
571 }
572
573 /****************************************************************************
574   get a directory listing
575   ****************************************************************************/
576 static int cmd_dir(void)
577 {
578         uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
579         pstring mask;
580         fstring buf;
581         char *p=buf;
582         int rc;
583         
584         dir_total = 0;
585         pstrcpy(mask,cur_dir);
586         if(mask[strlen(mask)-1]!='\\')
587                 pstrcat(mask,"\\");
588         
589         if (next_token_nr(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         rc = do_dskattr();
603
604         DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
605
606         return rc;
607 }
608
609
610 /****************************************************************************
611   get a directory listing
612   ****************************************************************************/
613 static int cmd_du(void)
614 {
615         uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
616         pstring mask;
617         fstring buf;
618         char *p=buf;
619         int rc;
620         
621         dir_total = 0;
622         pstrcpy(mask,cur_dir);
623         if(mask[strlen(mask)-1]!='\\')
624                 pstrcat(mask,"\\");
625         
626         if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
627                 dos_format(p);
628                 if (*p == '\\')
629                         pstrcpy(mask,p);
630                 else
631                         pstrcat(mask,p);
632         } else {
633                 pstrcat(mask,"*");
634         }
635
636         do_list(mask, attribute, do_du, recurse, True);
637
638         rc = do_dskattr();
639
640         d_printf("Total number of bytes: %.0f\n", dir_total);
641
642         return rc;
643 }
644
645
646 /****************************************************************************
647   get a file from rname to lname
648   ****************************************************************************/
649 static int do_get(char *rname, char *lname, BOOL reget)
650 {  
651         int handle = 0, fnum;
652         BOOL newhandle = False;
653         char *data;
654         struct timeval tp_start;
655         int read_size = io_bufsize;
656         uint16 attr;
657         size_t size;
658         off_t start = 0;
659         off_t nread = 0;
660         int rc = 0;
661
662         GetTimeOfDay(&tp_start);
663
664         if (lowercase) {
665                 strlower(lname);
666         }
667
668         fnum = cli_open(cli, rname, O_RDONLY, DENY_NONE);
669
670         if (fnum == -1) {
671                 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
672                 return 1;
673         }
674
675         if(!strcmp(lname,"-")) {
676                 handle = fileno(stdout);
677         } else {
678                 if (reget) {
679                         handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
680                         if (handle >= 0) {
681                                 start = sys_lseek(handle, 0, SEEK_END);
682                                 if (start == -1) {
683                                         d_printf("Error seeking local file\n");
684                                         return 1;
685                                 }
686                         }
687                 } else {
688                         handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
689                 }
690                 newhandle = True;
691         }
692         if (handle < 0) {
693                 d_printf("Error opening local file %s\n",lname);
694                 return 1;
695         }
696
697
698         if (!cli_qfileinfo(cli, fnum, 
699                            &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
700             !cli_getattrE(cli, fnum, 
701                           &attr, &size, NULL, NULL, NULL)) {
702                 d_printf("getattrib: %s\n",cli_errstr(cli));
703                 return 1;
704         }
705
706         DEBUG(2,("getting file %s of size %.0f as %s ", 
707                  rname, (double)size, lname));
708
709         if(!(data = (char *)malloc(read_size))) { 
710                 d_printf("malloc fail for size %d\n", read_size);
711                 cli_close(cli, fnum);
712                 return 1;
713         }
714
715         while (1) {
716                 int n = cli_read(cli, fnum, data, nread + start, read_size);
717
718                 if (n <= 0) break;
719  
720                 if (writefile(handle,data, n) != n) {
721                         d_printf("Error writing local file\n");
722                         rc = 1;
723                         break;
724                 }
725       
726                 nread += n;
727         }
728
729         if (nread + start < size) {
730                 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
731                             rname, (long)nread));
732
733                 rc = 1;
734         }
735
736         SAFE_FREE(data);
737         
738         if (!cli_close(cli, fnum)) {
739                 d_printf("Error %s closing remote file\n",cli_errstr(cli));
740                 rc = 1;
741         }
742
743         if (newhandle) {
744                 close(handle);
745         }
746
747         if (archive_level >= 2 && (attr & aARCH)) {
748                 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
749         }
750
751         {
752                 struct timeval tp_end;
753                 int this_time;
754                 
755                 GetTimeOfDay(&tp_end);
756                 this_time = 
757                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
758                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
759                 get_total_time_ms += this_time;
760                 get_total_size += nread;
761                 
762                 DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
763                          nread / (1.024*this_time + 1.0e-4),
764                          get_total_size / (1.024*get_total_time_ms)));
765         }
766         
767         return rc;
768 }
769
770
771 /****************************************************************************
772   get a file
773   ****************************************************************************/
774 static int cmd_get(void)
775 {
776         pstring lname;
777         pstring rname;
778         char *p;
779
780         pstrcpy(rname,cur_dir);
781         pstrcat(rname,"\\");
782         
783         p = rname + strlen(rname);
784         
785         if (!next_token_nr(NULL,p,NULL,sizeof(rname)-strlen(rname))) {
786                 d_printf("get <filename>\n");
787                 return 1;
788         }
789         pstrcpy(lname,p);
790         dos_clean_name(rname);
791         
792         next_token_nr(NULL,lname,NULL,sizeof(lname));
793         
794         return do_get(rname, lname, False);
795 }
796
797
798 /****************************************************************************
799   do a mget operation on one file
800   ****************************************************************************/
801 static void do_mget(file_info *finfo)
802 {
803         pstring rname;
804         pstring quest;
805         pstring saved_curdir;
806         pstring mget_mask;
807
808         if (strequal(finfo->name,".") || strequal(finfo->name,".."))
809                 return;
810
811         if (abort_mget) {
812                 d_printf("mget aborted\n");
813                 return;
814         }
815
816         if (finfo->mode & aDIR)
817                 slprintf(quest,sizeof(pstring)-1,
818                          "Get directory %s? ",finfo->name);
819         else
820                 slprintf(quest,sizeof(pstring)-1,
821                          "Get file %s? ",finfo->name);
822
823         if (prompt && !yesno(quest)) return;
824
825         if (!(finfo->mode & aDIR)) {
826                 pstrcpy(rname,cur_dir);
827                 pstrcat(rname,finfo->name);
828                 do_get(rname, finfo->name, False);
829                 return;
830         }
831
832         /* handle directories */
833         pstrcpy(saved_curdir,cur_dir);
834
835         pstrcat(cur_dir,finfo->name);
836         pstrcat(cur_dir,"\\");
837
838         unix_format(finfo->name);
839         if (lowercase)
840                 strlower(finfo->name);
841         
842         if (!directory_exist(finfo->name,NULL) && 
843             mkdir(finfo->name,0777) != 0) {
844                 d_printf("failed to create directory %s\n",finfo->name);
845                 pstrcpy(cur_dir,saved_curdir);
846                 return;
847         }
848         
849         if (chdir(finfo->name) != 0) {
850                 d_printf("failed to chdir to directory %s\n",finfo->name);
851                 pstrcpy(cur_dir,saved_curdir);
852                 return;
853         }
854
855         pstrcpy(mget_mask,cur_dir);
856         pstrcat(mget_mask,"*");
857         
858         do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,False, True);
859         chdir("..");
860         pstrcpy(cur_dir,saved_curdir);
861 }
862
863
864 /****************************************************************************
865 view the file using the pager
866 ****************************************************************************/
867 static int cmd_more(void)
868 {
869         fstring rname,lname,pager_cmd;
870         char *pager;
871         int fd;
872         int rc = 0;
873
874         fstrcpy(rname,cur_dir);
875         fstrcat(rname,"\\");
876         
877         slprintf(lname,sizeof(lname)-1, "%s/smbmore.XXXXXX",tmpdir());
878         fd = smb_mkstemp(lname);
879         if (fd == -1) {
880                 d_printf("failed to create temporary file for more\n");
881                 return 1;
882         }
883         close(fd);
884
885         if (!next_token_nr(NULL,rname+strlen(rname),NULL,sizeof(rname)-strlen(rname))) {
886                 d_printf("more <filename>\n");
887                 unlink(lname);
888                 return 1;
889         }
890         dos_clean_name(rname);
891
892         rc = do_get(rname, lname, False);
893
894         pager=getenv("PAGER");
895
896         slprintf(pager_cmd,sizeof(pager_cmd)-1,
897                  "%s %s",(pager? pager:PAGER), lname);
898         system(pager_cmd);
899         unlink(lname);
900         
901         return rc;
902 }
903
904
905
906 /****************************************************************************
907 do a mget command
908 ****************************************************************************/
909 static int cmd_mget(void)
910 {
911         uint16 attribute = aSYSTEM | aHIDDEN;
912         pstring mget_mask;
913         fstring buf;
914         char *p=buf;
915
916         *mget_mask = 0;
917
918         if (recurse)
919                 attribute |= aDIR;
920         
921         abort_mget = False;
922
923         while (next_token_nr(NULL,p,NULL,sizeof(buf))) {
924                 pstrcpy(mget_mask,cur_dir);
925                 if(mget_mask[strlen(mget_mask)-1]!='\\')
926                         pstrcat(mget_mask,"\\");
927                 
928                 if (*p == '\\')
929                         pstrcpy(mget_mask,p);
930                 else
931                         pstrcat(mget_mask,p);
932                 do_list(mget_mask, attribute,do_mget,False,True);
933         }
934
935         if (!*mget_mask) {
936                 pstrcpy(mget_mask,cur_dir);
937                 if(mget_mask[strlen(mget_mask)-1]!='\\')
938                         pstrcat(mget_mask,"\\");
939                 pstrcat(mget_mask,"*");
940                 do_list(mget_mask, attribute,do_mget,False,True);
941         }
942         
943         return 0;
944 }
945
946
947 /****************************************************************************
948 make a directory of name "name"
949 ****************************************************************************/
950 static BOOL do_mkdir(char *name)
951 {
952         if (!cli_mkdir(cli, name)) {
953                 d_printf("%s making remote directory %s\n",
954                          cli_errstr(cli),name);
955                 return(False);
956         }
957
958         return(True);
959 }
960
961 /****************************************************************************
962 show 8.3 name of a file
963 ****************************************************************************/
964 static BOOL do_altname(char *name)
965 {
966         fstring altname;
967         if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
968                 d_printf("%s getting alt name for %s\n",
969                          cli_errstr(cli),name);
970                 return(False);
971         }
972         d_printf("%s\n", altname);
973
974         return(True);
975 }
976
977
978 /****************************************************************************
979  Exit client.
980 ****************************************************************************/
981 static int cmd_quit(void)
982 {
983         cli_shutdown(cli);
984         exit(0);
985         /* NOTREACHED */
986         return 0;
987 }
988
989
990 /****************************************************************************
991   make a directory
992   ****************************************************************************/
993 static int cmd_mkdir(void)
994 {
995         pstring mask;
996         fstring buf;
997         char *p=buf;
998   
999         pstrcpy(mask,cur_dir);
1000
1001         if (!next_token_nr(NULL,p,NULL,sizeof(buf))) {
1002                 if (!recurse)
1003                         d_printf("mkdir <dirname>\n");
1004                 return 1;
1005         }
1006         pstrcat(mask,p);
1007
1008         if (recurse) {
1009                 pstring ddir;
1010                 pstring ddir2;
1011                 *ddir2 = 0;
1012                 
1013                 pstrcpy(ddir,mask);
1014                 trim_string(ddir,".",NULL);
1015                 p = strtok(ddir,"/\\");
1016                 while (p) {
1017                         pstrcat(ddir2,p);
1018                         if (!cli_chkpath(cli, ddir2)) { 
1019                                 do_mkdir(ddir2);
1020                         }
1021                         pstrcat(ddir2,"\\");
1022                         p = strtok(NULL,"/\\");
1023                 }        
1024         } else {
1025                 do_mkdir(mask);
1026         }
1027         
1028         return 0;
1029 }
1030
1031
1032 /****************************************************************************
1033   show alt name
1034   ****************************************************************************/
1035 static int cmd_altname(void)
1036 {
1037         pstring name;
1038         fstring buf;
1039         char *p=buf;
1040   
1041         pstrcpy(name,cur_dir);
1042
1043         if (!next_token_nr(NULL,p,NULL,sizeof(buf))) {
1044                 d_printf("altname <file>\n");
1045                 return 1;
1046         }
1047         pstrcat(name,p);
1048
1049         do_altname(name);
1050
1051         return 0;
1052 }
1053
1054
1055 /****************************************************************************
1056   put a single file
1057   ****************************************************************************/
1058 static int do_put(char *rname, char *lname, BOOL reput)
1059 {
1060         int fnum;
1061         XFILE *f;
1062         int start = 0;
1063         off_t nread = 0;
1064         char *buf = NULL;
1065         int maxwrite = io_bufsize;
1066         int rc = 0;
1067         
1068         struct timeval tp_start;
1069         GetTimeOfDay(&tp_start);
1070
1071         if (reput) {
1072                 fnum = cli_open(cli, rname, O_RDWR|O_CREAT, DENY_NONE);
1073                 if (fnum >= 0) {
1074                         if (!cli_qfileinfo(cli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1075                             !cli_getattrE(cli, fnum, NULL, &start, NULL, NULL, NULL)) {
1076                                 d_printf("getattrib: %s\n",cli_errstr(cli));
1077                                 return 1;
1078                         }
1079                 }
1080         } else {
1081                 fnum = cli_open(cli, rname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1082         }
1083   
1084         if (fnum == -1) {
1085                 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1086                 return 1;
1087         }
1088
1089         /* allow files to be piped into smbclient
1090            jdblair 24.jun.98
1091
1092            Note that in this case this function will exit(0) rather
1093            than returning. */
1094         if (!strcmp(lname, "-")) {
1095                 f = x_stdin;
1096                 /* size of file is not known */
1097         } else {
1098                 f = x_fopen(lname,O_RDONLY, 0);
1099                 if (f && reput) {
1100                         if (x_tseek(f, start, SEEK_SET) == -1) {
1101                                 d_printf("Error seeking local file\n");
1102                                 return 1;
1103                         }
1104                 }
1105         }
1106
1107         if (!f) {
1108                 d_printf("Error opening local file %s\n",lname);
1109                 return 1;
1110         }
1111
1112   
1113         DEBUG(1,("putting file %s as %s ",lname,
1114                  rname));
1115   
1116         buf = (char *)malloc(maxwrite);
1117         if (!buf) {
1118                 d_printf("ERROR: Not enough memory!\n");
1119                 return 1;
1120         }
1121         while (!x_feof(f)) {
1122                 int n = maxwrite;
1123                 int ret;
1124
1125                 if ((n = readfile(buf,n,f)) < 1) {
1126                         if((n == 0) && x_feof(f))
1127                                 break; /* Empty local file. */
1128
1129                         d_printf("Error reading local file: %s\n", strerror(errno));
1130                         rc = 1;
1131                         break;
1132                 }
1133
1134                 ret = cli_write(cli, fnum, 0, buf, nread + start, n);
1135
1136                 if (n != ret) {
1137                         d_printf("Error writing file: %s\n", cli_errstr(cli));
1138                         rc = 1;
1139                         break;
1140                 } 
1141
1142                 nread += n;
1143         }
1144
1145         if (!cli_close(cli, fnum)) {
1146                 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1147                 x_fclose(f);
1148                 SAFE_FREE(buf);
1149                 return 1;
1150         }
1151
1152         
1153         if (f != x_stdin) {
1154                 x_fclose(f);
1155         }
1156
1157         SAFE_FREE(buf);
1158
1159         {
1160                 struct timeval tp_end;
1161                 int this_time;
1162                 
1163                 GetTimeOfDay(&tp_end);
1164                 this_time = 
1165                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1166                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
1167                 put_total_time_ms += this_time;
1168                 put_total_size += nread;
1169                 
1170                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1171                          nread / (1.024*this_time + 1.0e-4),
1172                          put_total_size / (1.024*put_total_time_ms)));
1173         }
1174
1175         if (f == x_stdin) {
1176                 cli_shutdown(cli);
1177                 exit(0);
1178         }
1179         
1180         return rc;
1181 }
1182
1183  
1184
1185 /****************************************************************************
1186   put a file
1187   ****************************************************************************/
1188 static int cmd_put(void)
1189 {
1190         pstring lname;
1191         pstring rname;
1192         fstring buf;
1193         char *p=buf;
1194         
1195         pstrcpy(rname,cur_dir);
1196         pstrcat(rname,"\\");
1197   
1198         if (!next_token_nr(NULL,p,NULL,sizeof(buf))) {
1199                 d_printf("put <filename>\n");
1200                 return 1;
1201         }
1202         pstrcpy(lname,p);
1203   
1204         if (next_token_nr(NULL,p,NULL,sizeof(buf)))
1205                 pstrcat(rname,p);      
1206         else
1207                 pstrcat(rname,lname);
1208         
1209         dos_clean_name(rname);
1210
1211         {
1212                 SMB_STRUCT_STAT st;
1213                 /* allow '-' to represent stdin
1214                    jdblair, 24.jun.98 */
1215                 if (!file_exist(lname,&st) &&
1216                     (strcmp(lname,"-"))) {
1217                         d_printf("%s does not exist\n",lname);
1218                         return 1;
1219                 }
1220         }
1221
1222         return do_put(rname, lname, False);
1223 }
1224
1225 /*************************************
1226   File list structure
1227 *************************************/
1228
1229 static struct file_list {
1230         struct file_list *prev, *next;
1231         char *file_path;
1232         BOOL isdir;
1233 } *file_list;
1234
1235 /****************************************************************************
1236   Free a file_list structure
1237 ****************************************************************************/
1238
1239 static void free_file_list (struct file_list * list)
1240 {
1241         struct file_list *tmp;
1242         
1243         while (list)
1244         {
1245                 tmp = list;
1246                 DLIST_REMOVE(list, list);
1247                 SAFE_FREE(tmp->file_path);
1248                 SAFE_FREE(tmp);
1249         }
1250 }
1251
1252 /****************************************************************************
1253   seek in a directory/file list until you get something that doesn't start with
1254   the specified name
1255   ****************************************************************************/
1256 static BOOL seek_list(struct file_list *list, char *name)
1257 {
1258         while (list) {
1259                 trim_string(list->file_path,"./","\n");
1260                 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1261                         return(True);
1262                 }
1263                 list = list->next;
1264         }
1265       
1266         return(False);
1267 }
1268
1269 /****************************************************************************
1270   set the file selection mask
1271   ****************************************************************************/
1272 static int cmd_select(void)
1273 {
1274         pstrcpy(fileselection,"");
1275         next_token_nr(NULL,fileselection,NULL,sizeof(fileselection));
1276
1277         return 0;
1278 }
1279
1280 /****************************************************************************
1281   Recursive file matching function act as find
1282   match must be always set to True when calling this function
1283 ****************************************************************************/
1284 static int file_find(struct file_list **list, const char *directory, 
1285                       const char *expression, BOOL match)
1286 {
1287         DIR *dir;
1288         struct file_list *entry;
1289         struct stat statbuf;
1290         int ret;
1291         char *path;
1292         BOOL isdir;
1293         char *dname;
1294
1295         dir = opendir(directory);
1296         if (!dir) return -1;
1297         
1298         while ((dname = readdirname(dir))) {
1299                 if (!strcmp("..", dname)) continue;
1300                 if (!strcmp(".", dname)) continue;
1301                 
1302                 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1303                         continue;
1304                 }
1305
1306                 isdir = False;
1307                 if (!match || !gen_fnmatch(expression, dname)) {
1308                         if (recurse) {
1309                                 ret = stat(path, &statbuf);
1310                                 if (ret == 0) {
1311                                         if (S_ISDIR(statbuf.st_mode)) {
1312                                                 isdir = True;
1313                                                 ret = file_find(list, path, expression, False);
1314                                         }
1315                                 } else {
1316                                         d_printf("file_find: cannot stat file %s\n", path);
1317                                 }
1318                                 
1319                                 if (ret == -1) {
1320                                         SAFE_FREE(path);
1321                                         closedir(dir);
1322                                         return -1;
1323                                 }
1324                         }
1325                         entry = (struct file_list *) malloc(sizeof (struct file_list));
1326                         if (!entry) {
1327                                 d_printf("Out of memory in file_find\n");
1328                                 closedir(dir);
1329                                 return -1;
1330                         }
1331                         entry->file_path = path;
1332                         entry->isdir = isdir;
1333                         DLIST_ADD(*list, entry);
1334                 } else {
1335                         SAFE_FREE(path);
1336                 }
1337         }
1338
1339         closedir(dir);
1340         return 0;
1341 }
1342
1343 /****************************************************************************
1344   mput some files
1345   ****************************************************************************/
1346 static int cmd_mput(void)
1347 {
1348         fstring buf;
1349         char *p=buf;
1350         
1351         while (next_token_nr(NULL,p,NULL,sizeof(buf))) {
1352                 int ret;
1353                 struct file_list *temp_list;
1354                 char *quest, *lname, *rname;
1355         
1356                 file_list = NULL;
1357
1358                 ret = file_find(&file_list, ".", p, True);
1359                 if (ret) {
1360                         free_file_list(file_list);
1361                         continue;
1362                 }
1363                 
1364                 quest = NULL;
1365                 lname = NULL;
1366                 rname = NULL;
1367                                 
1368                 for (temp_list = file_list; temp_list; 
1369                      temp_list = temp_list->next) {
1370
1371                         SAFE_FREE(lname);
1372                         if (asprintf(&lname, "%s/", temp_list->file_path) <= 0)
1373                                 continue;
1374                         trim_string(lname, "./", "/");
1375                         
1376                         /* check if it's a directory */
1377                         if (temp_list->isdir) {
1378                                 /* if (!recurse) continue; */
1379                                 
1380                                 SAFE_FREE(quest);
1381                                 if (asprintf(&quest, "Put directory %s? ", lname) < 0) break;
1382                                 if (prompt && !yesno(quest)) { /* No */
1383                                         /* Skip the directory */
1384                                         lname[strlen(lname)-1] = '/';
1385                                         if (!seek_list(temp_list, lname))
1386                                                 break;              
1387                                 } else { /* Yes */
1388                                         SAFE_FREE(rname);
1389                                         if(asprintf(&rname, "%s%s", cur_dir, lname) < 0) break;
1390                                         dos_format(rname);
1391                                         if (!cli_chkpath(cli, rname) && 
1392                                             !do_mkdir(rname)) {
1393                                                 DEBUG (0, ("Unable to make dir, skipping..."));
1394                                                 /* Skip the directory */
1395                                                 lname[strlen(lname)-1] = '/';
1396                                                 if (!seek_list(temp_list, lname))
1397                                                         break;
1398                                         }
1399                                 }
1400                                 continue;
1401                         } else {
1402                                 SAFE_FREE(quest);
1403                                 if (asprintf(&quest,"Put file %s? ", lname) < 0) break;
1404                                 if (prompt && !yesno(quest)) /* No */
1405                                         continue;
1406                                 
1407                                 /* Yes */
1408                                 SAFE_FREE(rname);
1409                                 if (asprintf(&rname, "%s%s", cur_dir, lname) < 0) break;
1410                         }
1411
1412                         dos_format(rname);
1413
1414                         do_put(rname, lname, False);
1415                 }
1416                 free_file_list(file_list);
1417                 SAFE_FREE(quest);
1418                 SAFE_FREE(lname);
1419                 SAFE_FREE(rname);
1420         }
1421
1422         return 0;
1423 }
1424
1425
1426 /****************************************************************************
1427   cancel a print job
1428   ****************************************************************************/
1429 static int do_cancel(int job)
1430 {
1431         if (cli_printjob_del(cli, job)) {
1432                 d_printf("Job %d cancelled\n",job);
1433                 return 0;
1434         } else {
1435                 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
1436                 return 1;
1437         }
1438 }
1439
1440
1441 /****************************************************************************
1442   cancel a print job
1443   ****************************************************************************/
1444 static int cmd_cancel(void)
1445 {
1446         fstring buf;
1447         int job; 
1448
1449         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1450                 d_printf("cancel <jobid> ...\n");
1451                 return 1;
1452         }
1453         do {
1454                 job = atoi(buf);
1455                 do_cancel(job);
1456         } while (next_token_nr(NULL,buf,NULL,sizeof(buf)));
1457         
1458         return 0;
1459 }
1460
1461
1462 /****************************************************************************
1463   print a file
1464   ****************************************************************************/
1465 static int cmd_print(void)
1466 {
1467         pstring lname;
1468         pstring rname;
1469         char *p;
1470
1471         if (!next_token_nr(NULL,lname,NULL, sizeof(lname))) {
1472                 d_printf("print <filename>\n");
1473                 return 1;
1474         }
1475
1476         pstrcpy(rname,lname);
1477         p = strrchr_m(rname,'/');
1478         if (p) {
1479                 slprintf(rname, sizeof(rname)-1, "%s-%d", p+1, (int)sys_getpid());
1480         }
1481
1482         if (strequal(lname,"-")) {
1483                 slprintf(rname, sizeof(rname)-1, "stdin-%d", (int)sys_getpid());
1484         }
1485
1486         return do_put(rname, lname, False);
1487 }
1488
1489
1490 /****************************************************************************
1491  show a print queue entry
1492 ****************************************************************************/
1493 static void queue_fn(struct print_job_info *p)
1494 {
1495         d_printf("%-6d   %-9d    %s\n", (int)p->id, (int)p->size, p->name);
1496 }
1497
1498 /****************************************************************************
1499  show a print queue
1500 ****************************************************************************/
1501 static int cmd_queue(void)
1502 {
1503         cli_print_queue(cli, queue_fn);
1504         
1505         return 0;
1506 }
1507
1508 /****************************************************************************
1509 delete some files
1510 ****************************************************************************/
1511 static void do_del(file_info *finfo)
1512 {
1513         pstring mask;
1514
1515         pstrcpy(mask,cur_dir);
1516         pstrcat(mask,finfo->name);
1517
1518         if (finfo->mode & aDIR) 
1519                 return;
1520
1521         if (!cli_unlink(cli, mask)) {
1522                 d_printf("%s deleting remote file %s\n",cli_errstr(cli),mask);
1523         }
1524 }
1525
1526 /****************************************************************************
1527 delete some files
1528 ****************************************************************************/
1529 static int cmd_del(void)
1530 {
1531         pstring mask;
1532         fstring buf;
1533         uint16 attribute = aSYSTEM | aHIDDEN;
1534
1535         if (recurse)
1536                 attribute |= aDIR;
1537         
1538         pstrcpy(mask,cur_dir);
1539         
1540         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1541                 d_printf("del <filename>\n");
1542                 return 1;
1543         }
1544         pstrcat(mask,buf);
1545
1546         do_list(mask, attribute,do_del,False,False);
1547         
1548         return 0;
1549 }
1550
1551 /****************************************************************************
1552 ****************************************************************************/
1553 static int cmd_open(void)
1554 {
1555         pstring mask;
1556         fstring buf;
1557         
1558         pstrcpy(mask,cur_dir);
1559         
1560         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1561                 d_printf("open <filename>\n");
1562                 return 1;
1563         }
1564         pstrcat(mask,buf);
1565
1566         cli_open(cli, mask, O_RDWR, DENY_ALL);
1567
1568         return 0;
1569 }
1570
1571
1572 /****************************************************************************
1573 remove a directory
1574 ****************************************************************************/
1575 static int cmd_rmdir(void)
1576 {
1577         pstring mask;
1578         fstring buf;
1579   
1580         pstrcpy(mask,cur_dir);
1581         
1582         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1583                 d_printf("rmdir <dirname>\n");
1584                 return 1;
1585         }
1586         pstrcat(mask,buf);
1587
1588         if (!cli_rmdir(cli, mask)) {
1589                 d_printf("%s removing remote directory file %s\n",
1590                          cli_errstr(cli),mask);
1591         }
1592         
1593         return 0;
1594 }
1595
1596 /****************************************************************************
1597  UNIX hardlink.
1598 ****************************************************************************/
1599
1600 static int cmd_link(void)
1601 {
1602         pstring src,dest;
1603         fstring buf,buf2;
1604   
1605         if (!SERVER_HAS_UNIX_CIFS(cli)) {
1606                 d_printf("Server doesn't support UNIX CIFS calls.\n");
1607                 return 1;
1608         }
1609
1610         pstrcpy(src,cur_dir);
1611         pstrcpy(dest,cur_dir);
1612   
1613         if (!next_token(NULL,buf,NULL,sizeof(buf)) || 
1614             !next_token(NULL,buf2,NULL, sizeof(buf2))) {
1615                 d_printf("link <src> <dest>\n");
1616                 return 1;
1617         }
1618
1619         pstrcat(src,buf);
1620         pstrcat(dest,buf2);
1621
1622         if (!cli_unix_hardlink(cli, src, dest)) {
1623                 d_printf("%s linking files (%s -> %s)\n", cli_errstr(cli), src, dest);
1624                 return 1;
1625         }  
1626
1627         return 0;
1628 }
1629
1630 /****************************************************************************
1631  UNIX symlink.
1632 ****************************************************************************/
1633
1634 static int cmd_symlink(void)
1635 {
1636         pstring src,dest;
1637         fstring buf,buf2;
1638   
1639         if (!SERVER_HAS_UNIX_CIFS(cli)) {
1640                 d_printf("Server doesn't support UNIX CIFS calls.\n");
1641                 return 1;
1642         }
1643
1644         pstrcpy(src,cur_dir);
1645         pstrcpy(dest,cur_dir);
1646         
1647         if (!next_token(NULL,buf,NULL,sizeof(buf)) || 
1648             !next_token(NULL,buf2,NULL, sizeof(buf2))) {
1649                 d_printf("symlink <src> <dest>\n");
1650                 return 1;
1651         }
1652
1653         pstrcat(src,buf);
1654         pstrcat(dest,buf2);
1655
1656         if (!cli_unix_symlink(cli, src, dest)) {
1657                 d_printf("%s symlinking files (%s -> %s)\n",
1658                         cli_errstr(cli), src, dest);
1659                 return 1;
1660         } 
1661
1662         return 0;
1663 }
1664
1665 /****************************************************************************
1666  UNIX chmod.
1667 ****************************************************************************/
1668
1669 static int cmd_chmod(void)
1670 {
1671         pstring src;
1672         mode_t mode;
1673         fstring buf, buf2;
1674   
1675         if (!SERVER_HAS_UNIX_CIFS(cli)) {
1676                 d_printf("Server doesn't support UNIX CIFS calls.\n");
1677                 return 1;
1678         }
1679
1680         pstrcpy(src,cur_dir);
1681         
1682         if (!next_token(NULL,buf,NULL,sizeof(buf)) || 
1683             !next_token(NULL,buf2,NULL, sizeof(buf2))) {
1684                 d_printf("chmod mode file\n");
1685                 return 1;
1686         }
1687
1688         mode = (mode_t)strtol(buf, NULL, 8);
1689         pstrcat(src,buf2);
1690
1691         if (!cli_unix_chmod(cli, src, mode)) {
1692                 d_printf("%s chmod file %s 0%o\n",
1693                         cli_errstr(cli), src, (unsigned int)mode);
1694                 return 1;
1695         } 
1696
1697         return 0;
1698 }
1699
1700 /****************************************************************************
1701  UNIX chown.
1702 ****************************************************************************/
1703
1704 static int cmd_chown(void)
1705 {
1706         pstring src;
1707         uid_t uid;
1708         gid_t gid;
1709         fstring buf, buf2, buf3;
1710   
1711         if (!SERVER_HAS_UNIX_CIFS(cli)) {
1712                 d_printf("Server doesn't support UNIX CIFS calls.\n");
1713                 return 1;
1714         }
1715
1716         pstrcpy(src,cur_dir);
1717         
1718         if (!next_token(NULL,buf,NULL,sizeof(buf)) || 
1719             !next_token(NULL,buf2,NULL, sizeof(buf2)) ||
1720             !next_token(NULL,buf3,NULL, sizeof(buf3))) {
1721                 d_printf("chown uid gid file\n");
1722                 return 1;
1723         }
1724
1725         uid = (uid_t)atoi(buf);
1726         gid = (gid_t)atoi(buf2);
1727         pstrcat(src,buf3);
1728
1729         if (!cli_unix_chown(cli, src, uid, gid)) {
1730                 d_printf("%s chown file %s uid=%d, gid=%d\n",
1731                         cli_errstr(cli), src, (int)uid, (int)gid);
1732                 return 1;
1733         } 
1734
1735         return 0;
1736 }
1737
1738 /****************************************************************************
1739 rename some files
1740 ****************************************************************************/
1741 static int cmd_rename(void)
1742 {
1743         pstring src,dest;
1744         fstring buf,buf2;
1745   
1746         pstrcpy(src,cur_dir);
1747         pstrcpy(dest,cur_dir);
1748         
1749         if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
1750             !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
1751                 d_printf("rename <src> <dest>\n");
1752                 return 1;
1753         }
1754
1755         pstrcat(src,buf);
1756         pstrcat(dest,buf2);
1757
1758         if (!cli_rename(cli, src, dest)) {
1759                 d_printf("%s renaming files\n",cli_errstr(cli));
1760                 return 1;
1761         }
1762         
1763         return 0;
1764 }
1765
1766
1767 /****************************************************************************
1768 toggle the prompt flag
1769 ****************************************************************************/
1770 static int cmd_prompt(void)
1771 {
1772         prompt = !prompt;
1773         DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
1774         
1775         return 1;
1776 }
1777
1778
1779 /****************************************************************************
1780 set the newer than time
1781 ****************************************************************************/
1782 static int cmd_newer(void)
1783 {
1784         fstring buf;
1785         BOOL ok;
1786         SMB_STRUCT_STAT sbuf;
1787
1788         ok = next_token_nr(NULL,buf,NULL,sizeof(buf));
1789         if (ok && (sys_stat(buf,&sbuf) == 0)) {
1790                 newer_than = sbuf.st_mtime;
1791                 DEBUG(1,("Getting files newer than %s",
1792                          asctime(LocalTime(&newer_than))));
1793         } else {
1794                 newer_than = 0;
1795         }
1796
1797         if (ok && newer_than == 0) {
1798                 d_printf("Error setting newer-than time\n");
1799                 return 1;
1800         }
1801
1802         return 0;
1803 }
1804
1805 /****************************************************************************
1806 set the archive level
1807 ****************************************************************************/
1808 static int cmd_archive(void)
1809 {
1810         fstring buf;
1811
1812         if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1813                 archive_level = atoi(buf);
1814         } else
1815                 d_printf("Archive level is %d\n",archive_level);
1816
1817         return 0;
1818 }
1819
1820 /****************************************************************************
1821 toggle the lowercaseflag
1822 ****************************************************************************/
1823 static int cmd_lowercase(void)
1824 {
1825         lowercase = !lowercase;
1826         DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
1827
1828         return 0;
1829 }
1830
1831
1832
1833
1834 /****************************************************************************
1835 toggle the recurse flag
1836 ****************************************************************************/
1837 static int cmd_recurse(void)
1838 {
1839         recurse = !recurse;
1840         DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
1841
1842         return 0;
1843 }
1844
1845 /****************************************************************************
1846 toggle the translate flag
1847 ****************************************************************************/
1848 static int cmd_translate(void)
1849 {
1850         translation = !translation;
1851         DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
1852                  translation?"on":"off"));
1853
1854         return 0;
1855 }
1856
1857
1858 /****************************************************************************
1859 do a printmode command
1860 ****************************************************************************/
1861 static int cmd_printmode(void)
1862 {
1863         fstring buf;
1864         fstring mode;
1865
1866         if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1867                 if (strequal(buf,"text")) {
1868                         printmode = 0;      
1869                 } else {
1870                         if (strequal(buf,"graphics"))
1871                                 printmode = 1;
1872                         else
1873                                 printmode = atoi(buf);
1874                 }
1875         }
1876
1877         switch(printmode)
1878                 {
1879                 case 0: 
1880                         fstrcpy(mode,"text");
1881                         break;
1882                 case 1: 
1883                         fstrcpy(mode,"graphics");
1884                         break;
1885                 default: 
1886                         slprintf(mode,sizeof(mode)-1,"%d",printmode);
1887                         break;
1888                 }
1889         
1890         DEBUG(2,("the printmode is now %s\n",mode));
1891
1892         return 0;
1893 }
1894
1895 /****************************************************************************
1896  do the lcd command
1897  ****************************************************************************/
1898 static int cmd_lcd(void)
1899 {
1900         fstring buf;
1901         pstring d;
1902         
1903         if (next_token_nr(NULL,buf,NULL,sizeof(buf)))
1904                 chdir(buf);
1905         DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
1906
1907         return 0;
1908 }
1909
1910 /****************************************************************************
1911  get a file restarting at end of local file
1912  ****************************************************************************/
1913 static int cmd_reget(void)
1914 {
1915         pstring local_name;
1916         pstring remote_name;
1917         char *p;
1918
1919         pstrcpy(remote_name, cur_dir);
1920         pstrcat(remote_name, "\\");
1921         
1922         p = remote_name + strlen(remote_name);
1923         
1924         if (!next_token_nr(NULL, p, NULL, sizeof(remote_name) - strlen(remote_name))) {
1925                 d_printf("reget <filename>\n");
1926                 return 1;
1927         }
1928         pstrcpy(local_name, p);
1929         dos_clean_name(remote_name);
1930         
1931         next_token_nr(NULL, local_name, NULL, sizeof(local_name));
1932         
1933         return do_get(remote_name, local_name, True);
1934 }
1935
1936 /****************************************************************************
1937  put a file restarting at end of local file
1938  ****************************************************************************/
1939 static int cmd_reput(void)
1940 {
1941         pstring local_name;
1942         pstring remote_name;
1943         fstring buf;
1944         char *p = buf;
1945         SMB_STRUCT_STAT st;
1946         
1947         pstrcpy(remote_name, cur_dir);
1948         pstrcat(remote_name, "\\");
1949   
1950         if (!next_token_nr(NULL, p, NULL, sizeof(buf))) {
1951                 d_printf("reput <filename>\n");
1952                 return 1;
1953         }
1954         pstrcpy(local_name, p);
1955   
1956         if (!file_exist(local_name, &st)) {
1957                 d_printf("%s does not exist\n", local_name);
1958                 return 1;
1959         }
1960
1961         if (next_token_nr(NULL, p, NULL, sizeof(buf)))
1962                 pstrcat(remote_name, p);
1963         else
1964                 pstrcat(remote_name, local_name);
1965         
1966         dos_clean_name(remote_name);
1967
1968         return do_put(remote_name, local_name, True);
1969 }
1970
1971
1972 /****************************************************************************
1973  list a share name
1974  ****************************************************************************/
1975 static void browse_fn(const char *name, uint32 m, 
1976                       const char *comment, void *state)
1977 {
1978         fstring typestr;
1979
1980         *typestr=0;
1981
1982         switch (m)
1983         {
1984           case STYPE_DISKTREE:
1985             fstrcpy(typestr,"Disk"); break;
1986           case STYPE_PRINTQ:
1987             fstrcpy(typestr,"Printer"); break;
1988           case STYPE_DEVICE:
1989             fstrcpy(typestr,"Device"); break;
1990           case STYPE_IPC:
1991             fstrcpy(typestr,"IPC"); break;
1992         }
1993         /* FIXME: If the remote machine returns non-ascii characters
1994            in any of these fields, they can corrupt the output.  We
1995            should remove them. */
1996         d_printf("\t%-15.15s%-10.10s%s\n",
1997                name,typestr,comment);
1998 }
1999
2000
2001 /****************************************************************************
2002 try and browse available connections on a host
2003 ****************************************************************************/
2004 static BOOL browse_host(BOOL sort)
2005 {
2006         int ret;
2007
2008         d_printf("\n\tSharename      Type      Comment\n");
2009         d_printf("\t---------      ----      -------\n");
2010
2011         if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
2012                 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
2013
2014         return (ret != -1);
2015 }
2016
2017 /****************************************************************************
2018 list a server name
2019 ****************************************************************************/
2020 static void server_fn(const char *name, uint32 m, 
2021                       const char *comment, void *state)
2022 {
2023         d_printf("\t%-16.16s     %s\n", name, comment);
2024 }
2025
2026 /****************************************************************************
2027 try and browse available connections on a host
2028 ****************************************************************************/
2029 static BOOL list_servers(char *wk_grp)
2030 {
2031         if (!cli->server_domain) return False;
2032         
2033         d_printf("\n\tServer               Comment\n");
2034         d_printf("\t---------            -------\n");
2035
2036         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn, NULL);
2037
2038         d_printf("\n\tWorkgroup            Master\n");
2039         d_printf("\t---------            -------\n");
2040
2041         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM, server_fn, NULL);
2042         return True;
2043 }
2044
2045 /* Some constants for completing filename arguments */
2046
2047 #define COMPL_NONE        0          /* No completions */
2048 #define COMPL_REMOTE      1          /* Complete remote filename */
2049 #define COMPL_LOCAL       2          /* Complete local filename */
2050
2051 /* This defines the commands supported by this client.
2052  * NOTE: The "!" must be the last one in the list because it's fn pointer
2053  *       field is NULL, and NULL in that field is used in process_tok()
2054  *       (below) to indicate the end of the list.  crh
2055  */
2056 static struct
2057 {
2058   const char *name;
2059   int (*fn)(void);
2060   const char *description;
2061   char compl_args[2];      /* Completion argument info */
2062 } commands[] = 
2063 {
2064   {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2065   {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
2066   {"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}},
2067   {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
2068   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
2069   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
2070   {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
2071   {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
2072   {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2073   {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2074   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2075   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2076   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
2077   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2078   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
2079   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
2080   {"link",cmd_link,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
2081   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},  
2082   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2083   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
2084   {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2085   {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
2086   {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2087   {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},  
2088   {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
2089   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
2090   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
2091   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
2092   {"printmode",cmd_printmode,"<graphics or text> set the print mode",{COMPL_NONE,COMPL_NONE}},
2093   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},  
2094   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
2095   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
2096   {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2097   {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
2098   {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2099   {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2100   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},  
2101   {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
2102   {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
2103   {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
2104   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2105   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2106   {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
2107   {"symlink",cmd_symlink,"<src> <dest> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
2108   {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
2109   {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
2110   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
2111   
2112   /* Yes, this must be here, see crh's comment above. */
2113   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
2114   {"",NULL,NULL,{COMPL_NONE,COMPL_NONE}}
2115 };
2116
2117
2118 /*******************************************************************
2119   lookup a command string in the list of commands, including 
2120   abbreviations
2121   ******************************************************************/
2122 static int process_tok(fstring tok)
2123 {
2124         int i = 0, matches = 0;
2125         int cmd=0;
2126         int tok_len = strlen(tok);
2127         
2128         while (commands[i].fn != NULL) {
2129                 if (strequal(commands[i].name,tok)) {
2130                         matches = 1;
2131                         cmd = i;
2132                         break;
2133                 } else if (strnequal(commands[i].name, tok, tok_len)) {
2134                         matches++;
2135                         cmd = i;
2136                 }
2137                 i++;
2138         }
2139   
2140         if (matches == 0)
2141                 return(-1);
2142         else if (matches == 1)
2143                 return(cmd);
2144         else
2145                 return(-2);
2146 }
2147
2148 /****************************************************************************
2149 help
2150 ****************************************************************************/
2151 static int cmd_help(void)
2152 {
2153         int i=0,j;
2154         fstring buf;
2155         
2156         if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
2157                 if ((i = process_tok(buf)) >= 0)
2158                         d_printf("HELP %s:\n\t%s\n\n",commands[i].name,commands[i].description);
2159         } else {
2160                 while (commands[i].description) {
2161                         for (j=0; commands[i].description && (j<5); j++) {
2162                                 d_printf("%-15s",commands[i].name);
2163                                 i++;
2164                         }
2165                         d_printf("\n");
2166                 }
2167         }
2168         return 0;
2169 }
2170
2171 /****************************************************************************
2172 process a -c command string
2173 ****************************************************************************/
2174 static int process_command_string(char *cmd)
2175 {
2176         pstring line;
2177         const char *ptr;
2178         int rc = 0;
2179
2180         /* establish the connection if not already */
2181         
2182         if (!cli) {
2183                 cli = do_connect(desthost, service);
2184                 if (!cli)
2185                         return 0;
2186         }
2187         
2188         while (cmd[0] != '\0')    {
2189                 char *p;
2190                 fstring tok;
2191                 int i;
2192                 
2193                 if ((p = strchr_m(cmd, ';')) == 0) {
2194                         strncpy(line, cmd, 999);
2195                         line[1000] = '\0';
2196                         cmd += strlen(cmd);
2197                 } else {
2198                         if (p - cmd > 999) p = cmd + 999;
2199                         strncpy(line, cmd, p - cmd);
2200                         line[p - cmd] = '\0';
2201                         cmd = p + 1;
2202                 }
2203                 
2204                 /* and get the first part of the command */
2205                 ptr = line;
2206                 if (!next_token_nr(&ptr,tok,NULL,sizeof(tok))) continue;
2207                 
2208                 if ((i = process_tok(tok)) >= 0) {
2209                         rc = commands[i].fn();
2210                 } else if (i == -2) {
2211                         d_printf("%s: command abbreviation ambiguous\n",tok);
2212                 } else {
2213                         d_printf("%s: command not found\n",tok);
2214                 }
2215         }
2216         
2217         return rc;
2218 }       
2219
2220 /****************************************************************************
2221 handle completion of commands for readline
2222 ****************************************************************************/
2223 static char **completion_fn(char *text, int start, int end)
2224 {
2225 #define MAX_COMPLETIONS 100
2226         char **matches;
2227         int i, count=0;
2228
2229         /* for words not at the start of the line fallback to filename completion */
2230         if (start) return NULL;
2231
2232         matches = (char **)malloc(sizeof(matches[0])*MAX_COMPLETIONS);
2233         if (!matches) return NULL;
2234
2235         matches[count++] = strdup(text);
2236         if (!matches[0]) return NULL;
2237
2238         for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
2239                 if (strncmp(text, commands[i].name, strlen(text)) == 0) {
2240                         matches[count] = strdup(commands[i].name);
2241                         if (!matches[count]) return NULL;
2242                         count++;
2243                 }
2244         }
2245
2246         if (count == 2) {
2247                 SAFE_FREE(matches[0]);
2248                 matches[0] = strdup(matches[1]);
2249         }
2250         matches[count] = NULL;
2251         return matches;
2252 }
2253
2254
2255 /****************************************************************************
2256 make sure we swallow keepalives during idle time
2257 ****************************************************************************/
2258 static void readline_callback(void)
2259 {
2260         fd_set fds;
2261         struct timeval timeout;
2262         static time_t last_t;
2263         time_t t;
2264
2265         t = time(NULL);
2266
2267         if (t - last_t < 5) return;
2268
2269         last_t = t;
2270
2271  again:
2272         FD_ZERO(&fds);
2273         FD_SET(cli->fd,&fds);
2274
2275         timeout.tv_sec = 0;
2276         timeout.tv_usec = 0;
2277         sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
2278                 
2279         /* We deliberately use receive_smb instead of
2280            client_receive_smb as we want to receive
2281            session keepalives and then drop them here.
2282         */
2283         if (FD_ISSET(cli->fd,&fds)) {
2284                 receive_smb(cli->fd,cli->inbuf,0);
2285                 goto again;
2286         }
2287       
2288         cli_chkpath(cli, "\\");
2289 }
2290
2291
2292 /****************************************************************************
2293 process commands on stdin
2294 ****************************************************************************/
2295 static void process_stdin(void)
2296 {
2297         const char *ptr;
2298
2299         while (1) {
2300                 fstring tok;
2301                 fstring the_prompt;
2302                 char *cline;
2303                 pstring line;
2304                 int i;
2305                 
2306                 /* display a prompt */
2307                 slprintf(the_prompt, sizeof(the_prompt)-1, "smb: %s> ", cur_dir);
2308                 cline = smb_readline(the_prompt, readline_callback, completion_fn);
2309                         
2310                 if (!cline) break;
2311                 
2312                 pstrcpy(line, cline);
2313
2314                 /* special case - first char is ! */
2315                 if (*line == '!') {
2316                         system(line + 1);
2317                         continue;
2318                 }
2319       
2320                 /* and get the first part of the command */
2321                 ptr = line;
2322                 if (!next_token_nr(&ptr,tok,NULL,sizeof(tok))) continue;
2323
2324                 if ((i = process_tok(tok)) >= 0) {
2325                         commands[i].fn();
2326                 } else if (i == -2) {
2327                         d_printf("%s: command abbreviation ambiguous\n",tok);
2328                 } else {
2329                         d_printf("%s: command not found\n",tok);
2330                 }
2331         }
2332 }
2333
2334
2335 /***************************************************** 
2336 return a connection to a server
2337 *******************************************************/
2338 static struct cli_state *do_connect(const char *server, const char *share)
2339 {
2340         struct cli_state *c;
2341         struct nmb_name called, calling;
2342         const char *server_n;
2343         struct in_addr ip;
2344         fstring servicename;
2345         char *sharename;
2346         
2347         /* make a copy so we don't modify the global string 'service' */
2348         safe_strcpy(servicename, share, sizeof(servicename)-1);
2349         sharename = servicename;
2350         if (*sharename == '\\') {
2351                 server = sharename+2;
2352                 sharename = strchr_m(server,'\\');
2353                 if (!sharename) return NULL;
2354                 *sharename = 0;
2355                 sharename++;
2356         }
2357
2358         server_n = server;
2359         
2360         zero_ip(&ip);
2361
2362         make_nmb_name(&calling, global_myname(), 0x0);
2363         make_nmb_name(&called , server, name_type);
2364
2365  again:
2366         zero_ip(&ip);
2367         if (have_ip) ip = dest_ip;
2368
2369         /* have to open a new connection */
2370         if (!(c=cli_initialise(NULL)) || (cli_set_port(c, port) != port) ||
2371             !cli_connect(c, server_n, &ip)) {
2372                 d_printf("Connection to %s failed\n", server_n);
2373                 return NULL;
2374         }
2375
2376         c->protocol = max_protocol;
2377         c->use_kerberos = use_kerberos;
2378
2379         if (!cli_session_request(c, &calling, &called)) {
2380                 char *p;
2381                 d_printf("session request to %s failed (%s)\n", 
2382                          called.name, cli_errstr(c));
2383                 cli_shutdown(c);
2384                 if ((p=strchr_m(called.name, '.'))) {
2385                         *p = 0;
2386                         goto again;
2387                 }
2388                 if (strcmp(called.name, "*SMBSERVER")) {
2389                         make_nmb_name(&called , "*SMBSERVER", 0x20);
2390                         goto again;
2391                 }
2392                 return NULL;
2393         }
2394
2395         DEBUG(4,(" session request ok\n"));
2396
2397         if (!cli_negprot(c)) {
2398                 d_printf("protocol negotiation failed\n");
2399                 cli_shutdown(c);
2400                 return NULL;
2401         }
2402
2403         if (!got_pass) {
2404                 char *pass = getpass("Password: ");
2405                 if (pass) {
2406                         pstrcpy(password, pass);
2407                 }
2408         }
2409
2410         if (!cli_session_setup(c, username, 
2411                                password, strlen(password),
2412                                password, strlen(password),
2413                                workgroup)) {
2414                 /* if a password was not supplied then try again with a null username */
2415                 if (password[0] || !username[0] || use_kerberos ||
2416                     !cli_session_setup(c, "", "", 0, "", 0, workgroup)) { 
2417                         d_printf("session setup failed: %s\n", cli_errstr(c));
2418                         cli_shutdown(c);
2419                         return NULL;
2420                 }
2421                 d_printf("Anonymous login successful\n");
2422         }
2423
2424         if (*c->server_domain) {
2425                 DEBUG(1,("Domain=[%s] OS=[%s] Server=[%s]\n",
2426                         c->server_domain,c->server_os,c->server_type));
2427         } else if (*c->server_os || *c->server_type){
2428                 DEBUG(1,("OS=[%s] Server=[%s]\n",
2429                          c->server_os,c->server_type));
2430         }               
2431         
2432         DEBUG(4,(" session setup ok\n"));
2433
2434         if (!cli_send_tconX(c, sharename, "?????",
2435                             password, strlen(password)+1)) {
2436                 pstring full_share;
2437
2438                 /*
2439                  * Some servers require \\server\share for the share
2440                  * while others are happy with share as we gave above
2441                  * Lets see if we give it the long form if it works
2442                  */
2443                 pstrcpy(full_share, "\\\\");
2444                 pstrcat(full_share, server);
2445                 pstrcat(full_share, "\\");
2446                 pstrcat(full_share, sharename);
2447                 if (!cli_send_tconX(c, full_share, "?????", password,
2448                                         strlen(password) + 1)) {
2449
2450                         d_printf("tree connect failed: %s\n", cli_errstr(c));
2451                         cli_shutdown(c);
2452                         return NULL;
2453                 }
2454         }
2455
2456         DEBUG(4,(" tconx ok\n"));
2457
2458         return c;
2459 }
2460
2461
2462 /****************************************************************************
2463   process commands from the client
2464 ****************************************************************************/
2465 static int process(char *base_directory)
2466 {
2467         int rc = 0;
2468
2469         cli = do_connect(desthost, service);
2470         if (!cli) {
2471                 return 1;
2472         }
2473
2474         if (*base_directory) do_cd(base_directory);
2475         
2476         if (cmdstr) {
2477                 rc = process_command_string(cmdstr);
2478         } else {
2479                 process_stdin();
2480         }
2481   
2482         cli_shutdown(cli);
2483         return rc;
2484 }
2485
2486 /****************************************************************************
2487 usage on the program
2488 ****************************************************************************/
2489 static void usage(char *pname)
2490 {
2491   d_printf("Usage: %s service <password> [options]", pname);
2492
2493   d_printf("\nVersion %s\n",VERSION);
2494   d_printf("\t-s smb.conf           pathname to smb.conf file\n");
2495   d_printf("\t-O socket_options     socket options to use\n");
2496   d_printf("\t-R name resolve order use these name resolution services only\n");
2497   d_printf("\t-M host               send a winpopup message to the host\n");
2498   d_printf("\t-i scope              use this NetBIOS scope\n");
2499   d_printf("\t-N                    don't ask for a password\n");
2500   d_printf("\t-n netbios name.      Use this name as my netbios name\n");
2501   d_printf("\t-d debuglevel         set the debuglevel\n");
2502   d_printf("\t-p port               connect to the specified port\n");
2503   d_printf("\t-l log basename.      Basename for log/debug files\n");
2504   d_printf("\t-h                    Print this help message.\n");
2505   d_printf("\t-I dest IP            use this IP to connect to\n");
2506   d_printf("\t-E                    write messages to stderr instead of stdout\n");
2507   d_printf("\t-k                    use kerberos (active directory) authentication\n");
2508   d_printf("\t-U username           set the network username\n");
2509   d_printf("\t-L host               get a list of shares available on a host\n");
2510   d_printf("\t-t terminal code      terminal i/o code {sjis|euc|jis7|jis8|junet|hex}\n");
2511   d_printf("\t-m max protocol       set the max protocol level\n");
2512   d_printf("\t-A filename           get the credentials from a file\n");
2513   d_printf("\t-W workgroup          set the workgroup name\n");
2514   d_printf("\t-T<c|x>IXFqgbNan      command line tar\n");
2515   d_printf("\t-D directory          start from directory\n");
2516   d_printf("\t-c command string     execute semicolon separated commands\n");
2517   d_printf("\t-b xmit/send buffer   changes the transmit/send buffer (default: 65520)\n");
2518   d_printf("\n");
2519 }
2520
2521
2522 /****************************************************************************
2523 get a password from a a file or file descriptor
2524 exit on failure
2525 ****************************************************************************/
2526 static void get_password_file(void)
2527 {
2528         int fd = -1;
2529         char *p;
2530         BOOL close_it = False;
2531         pstring spec;
2532         char pass[128];
2533                 
2534         if ((p = getenv("PASSWD_FD")) != NULL) {
2535                 pstrcpy(spec, "descriptor ");
2536                 pstrcat(spec, p);
2537                 sscanf(p, "%d", &fd);
2538                 close_it = False;
2539         } else if ((p = getenv("PASSWD_FILE")) != NULL) {
2540                 fd = sys_open(p, O_RDONLY, 0);
2541                 pstrcpy(spec, p);
2542                 if (fd < 0) {
2543                         fprintf(stderr, "Error opening PASSWD_FILE %s: %s\n",
2544                                 spec, strerror(errno));
2545                         exit(1);
2546                 }
2547                 close_it = True;
2548         }
2549
2550         for(p = pass, *p = '\0'; /* ensure that pass is null-terminated */
2551             p && p - pass < sizeof(pass);) {
2552                 switch (read(fd, p, 1)) {
2553                 case 1:
2554                         if (*p != '\n' && *p != '\0') {
2555                                 *++p = '\0'; /* advance p, and null-terminate pass */
2556                                 break;
2557                         }
2558                 case 0:
2559                         if (p - pass) {
2560                                 *p = '\0'; /* null-terminate it, just in case... */
2561                                 p = NULL; /* then force the loop condition to become false */
2562                                 break;
2563                         } else {
2564                                 fprintf(stderr, "Error reading password from file %s: %s\n",
2565                                         spec, "empty password\n");
2566                                 exit(1);
2567                         }
2568                         
2569                 default:
2570                         fprintf(stderr, "Error reading password from file %s: %s\n",
2571                                 spec, strerror(errno));
2572                         exit(1);
2573                 }
2574         }
2575         pstrcpy(password, pass);
2576         if (close_it)
2577                 close(fd);
2578 }       
2579
2580
2581
2582 /****************************************************************************
2583 handle a -L query
2584 ****************************************************************************/
2585 static int do_host_query(char *query_host)
2586 {
2587         cli = do_connect(query_host, "IPC$");
2588         if (!cli)
2589                 return 1;
2590
2591         browse_host(True);
2592         list_servers(workgroup);
2593
2594         cli_shutdown(cli);
2595         
2596         return(0);
2597 }
2598
2599
2600 /****************************************************************************
2601 handle a tar operation
2602 ****************************************************************************/
2603 static int do_tar_op(char *base_directory)
2604 {
2605         int ret;
2606
2607         /* do we already have a connection? */
2608         if (!cli) {
2609                 cli = do_connect(desthost, service);    
2610                 if (!cli)
2611                         return 1;
2612         }
2613
2614         recurse=True;
2615
2616         if (*base_directory) do_cd(base_directory);
2617         
2618         ret=process_tar();
2619
2620         cli_shutdown(cli);
2621
2622         return(ret);
2623 }
2624
2625 /****************************************************************************
2626 handle a message operation
2627 ****************************************************************************/
2628 static int do_message_op(void)
2629 {
2630         struct in_addr ip;
2631         struct nmb_name called, calling;
2632         fstring server_name;
2633         char name_type_hex[10];
2634
2635         make_nmb_name(&calling, global_myname(), 0x0);
2636         make_nmb_name(&called , desthost, name_type);
2637
2638         safe_strcpy(server_name, desthost, sizeof(server_name));
2639         snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
2640         safe_strcat(server_name, name_type_hex, sizeof(server_name));
2641
2642         zero_ip(&ip);
2643         if (have_ip) ip = dest_ip;
2644
2645         if (!(cli=cli_initialise(NULL)) || (cli_set_port(cli, port) != port) ||
2646             !cli_connect(cli, server_name, &ip)) {
2647                 d_printf("Connection to %s failed\n", desthost);
2648                 return 1;
2649         }
2650
2651         if (!cli_session_request(cli, &calling, &called)) {
2652                 d_printf("session request failed\n");
2653                 cli_shutdown(cli);
2654                 return 1;
2655         }
2656
2657         send_message();
2658         cli_shutdown(cli);
2659
2660         return 0;
2661 }
2662
2663
2664 /**
2665  * Process "-L hostname" option.
2666  *
2667  * We don't actually do anything yet -- we just stash the name in a
2668  * global variable and do the query when all options have been read.
2669  **/
2670 static void remember_query_host(const char *arg,
2671                                 pstring query_host)
2672 {
2673         char *slash;
2674         
2675         while (*arg == '\\' || *arg == '/')
2676                 arg++;
2677         pstrcpy(query_host, arg);
2678         if ((slash = strchr(query_host, '/'))
2679             || (slash = strchr(query_host, '\\'))) {
2680                 *slash = 0;
2681         }
2682 }
2683
2684
2685 /****************************************************************************
2686   main program
2687 ****************************************************************************/
2688  int main(int argc,char *argv[])
2689 {
2690         fstring base_directory;
2691         char *pname = argv[0];
2692         int opt;
2693         extern char *optarg;
2694         extern int optind;
2695         int old_debug;
2696         pstring query_host;
2697         BOOL message = False;
2698         extern char tar_type;
2699         pstring term_code;
2700         pstring new_name_resolve_order;
2701         pstring logfile;
2702         char *p;
2703         int rc = 0;
2704
2705 #ifdef KANJI
2706         pstrcpy(term_code, KANJI);
2707 #else /* KANJI */
2708         *term_code = 0;
2709 #endif /* KANJI */
2710
2711         *query_host = 0;
2712         *base_directory = 0;
2713
2714         *new_name_resolve_order = 0;
2715
2716         DEBUGLEVEL = 2;
2717         AllowDebugChange = False;
2718  
2719         setup_logging(pname,True);
2720
2721         /*
2722          * If the -E option is given, be careful not to clobber stdout
2723          * before processing the options.  28.Feb.99, richard@hacom.nl.
2724          * Also pre-parse the -s option to get the service file name.
2725          */
2726
2727         for (opt = 1; opt < argc; opt++) {
2728                 if (strcmp(argv[opt], "-E") == 0)
2729                         dbf = x_stderr;
2730                 else if(strncmp(argv[opt], "-s", 2) == 0) {
2731                         if(argv[opt][2] != '\0')
2732                                 pstrcpy(dyn_CONFIGFILE, &argv[opt][2]);
2733                         else if(argv[opt+1] != NULL) {
2734                                 /*
2735                                  * At least one more arg left.
2736                                  */
2737                                 pstrcpy(dyn_CONFIGFILE, argv[opt+1]);
2738                         } else {
2739                                 usage(pname);
2740                                 exit(1);
2741                         }
2742                 }
2743         }
2744
2745         in_client = True;   /* Make sure that we tell lp_load we are */
2746
2747         old_debug = DEBUGLEVEL;
2748         if (!lp_load(dyn_CONFIGFILE,True,False,False)) {
2749                 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
2750                         prog_name, dyn_CONFIGFILE);
2751         }
2752         DEBUGLEVEL = old_debug;
2753         
2754         pstrcpy(workgroup,lp_workgroup());
2755
2756         load_interfaces();
2757
2758         if (getenv("USER")) {
2759                 pstrcpy(username,getenv("USER"));
2760
2761                 /* modification to support userid%passwd syntax in the USER var
2762                    25.Aug.97, jdblair@uab.edu */
2763
2764                 if ((p=strchr_m(username,'%'))) {
2765                         *p = 0;
2766                         pstrcpy(password,p+1);
2767                         got_pass = True;
2768                         memset(strchr_m(getenv("USER"),'%')+1,'X',strlen(password));
2769                 }
2770         }
2771
2772         /* modification to support PASSWD environmental var
2773            25.Aug.97, jdblair@uab.edu */
2774         if (getenv("PASSWD")) {
2775                 pstrcpy(password,getenv("PASSWD"));
2776                 got_pass = True;
2777         }
2778
2779         if (getenv("PASSWD_FD") || getenv("PASSWD_FILE")) {
2780                 get_password_file();
2781                 got_pass = True;
2782         }
2783
2784         if (*username == 0 && getenv("LOGNAME")) {
2785                 pstrcpy(username,getenv("LOGNAME"));
2786         }
2787
2788         if (*username == 0) {
2789                 pstrcpy(username,"GUEST");
2790         }
2791
2792         if (argc < 2) {
2793                 usage(pname);
2794                 exit(1);
2795         }
2796
2797         /* FIXME: At the moment, if the user should happen to give the
2798          * options ahead of the service name (in standard Unix
2799          * fashion) then smbclient just spits out the usage message
2800          * with no explanation of what in particular was wrong.  Is
2801          * there any reason we can't just parse out the service name
2802          * and password after running getopt?? -- mbp */
2803         if (*argv[1] != '-') {
2804                 pstrcpy(service,argv[1]);  
2805                 /* Convert any '/' characters in the service name to '\' characters */
2806                 string_replace( service, '/','\\');
2807                 argc--;
2808                 argv++;
2809                 
2810                 if (count_chars(service,'\\') < 3) {
2811                         usage(pname);
2812                         d_printf("\n%s: Not enough '\\' characters in service\n",service);
2813                         exit(1);
2814                 }
2815
2816                 if (argc > 1 && (*argv[1] != '-')) {
2817                         got_pass = True;
2818                         pstrcpy(password,argv[1]);  
2819                         memset(argv[1],'X',strlen(argv[1]));
2820                         argc--;
2821                         argv++;
2822                 }
2823         }
2824
2825         while ((opt = 
2826                 getopt(argc, argv,"s:O:R:M:i:Nn:d:Pp:l:hI:EU:L:t:m:W:T:D:c:b:A:k")) != EOF) {
2827                 switch (opt) {
2828                 case 's':
2829                         pstrcpy(dyn_CONFIGFILE, optarg);
2830                         break;
2831                 case 'O':
2832                         pstrcpy(user_socket_options,optarg);
2833                         break;  
2834                 case 'R':
2835                         pstrcpy(new_name_resolve_order, optarg);
2836                         break;
2837                 case 'M':
2838                         /* Messages are sent to NetBIOS name type 0x3
2839                          * (Messenger Service).  Make sure we default
2840                          * to port 139 instead of port 445. srl,crh
2841                          */
2842                         name_type = 0x03; 
2843                         pstrcpy(desthost,optarg);
2844                         if( 0 == port )
2845                                 port = 139;
2846                         message = True;
2847                         break;
2848                 case 'i':
2849                         set_global_scope(optarg);
2850                         break;
2851                 case 'N':
2852                         got_pass = True;
2853                         break;
2854                 case 'n':
2855                         set_global_myname(optarg);
2856                         break;
2857                 case 'd':
2858                         if (*optarg == 'A')
2859                                 DEBUGLEVEL = 10000;
2860                         else
2861                                 DEBUGLEVEL = atoi(optarg);
2862                         break;
2863                 case 'P':
2864                         /* not needed anymore */
2865                         break;
2866                 case 'p':
2867                         port = atoi(optarg);
2868                         break;
2869                 case 'l':
2870                         slprintf(logfile,sizeof(logfile)-1, "%s.client",optarg);
2871                         lp_set_logfile(logfile);
2872                         break;
2873                 case 'h':
2874                         usage(pname);
2875                         exit(0);
2876                         break;
2877                 case 'I':
2878                         {
2879                                 dest_ip = *interpret_addr2(optarg);
2880                                 if (is_zero_ip(dest_ip))
2881                                         exit(1);
2882                                 have_ip = True;
2883                         }
2884                         break;
2885                 case 'E':
2886                         display_set_stderr();
2887                         dbf = x_stderr;
2888                         break;
2889                 case 'U':
2890                         {
2891                                 char *lp;
2892                                 pstrcpy(username,optarg);
2893                                 if ((lp=strchr_m(username,'%'))) {
2894                                         *lp = 0;
2895                                         pstrcpy(password,lp+1);
2896                                         got_pass = True;
2897                                         memset(strchr_m(optarg,'%')+1,'X',strlen(password));
2898                                 }
2899                         }
2900                         break;
2901
2902                 case 'A':
2903                         {
2904                                 XFILE *auth;
2905                                 fstring buf;
2906                                 uint16 len = 0;
2907                                 char *ptr, *val, *param;
2908                                
2909                                 if ((auth=x_fopen(optarg, O_RDONLY, 0)) == NULL)
2910                                 {
2911                                         /* fail if we can't open the credentials file */
2912                                         d_printf("ERROR: Unable to open credentials file!\n");
2913                                         exit (-1);
2914                                 }
2915                                 
2916                                 while (!x_feof(auth))
2917                                 {  
2918                                         /* get a line from the file */
2919                                         if (!x_fgets(buf, sizeof(buf), auth))
2920                                                 continue;
2921                                         len = strlen(buf);
2922                                         
2923                                         if ((len) && (buf[len-1]=='\n'))
2924                                         {
2925                                                 buf[len-1] = '\0';
2926                                                 len--;
2927                                         }       
2928                                         if (len == 0)
2929                                                 continue;
2930                                         
2931                                         /* break up the line into parameter & value.
2932                                            will need to eat a little whitespace possibly */
2933                                         param = buf;
2934                                         if (!(ptr = strchr_m (buf, '=')))
2935                                                 continue;
2936                                         val = ptr+1;
2937                                         *ptr = '\0';
2938                                         
2939                                         /* eat leading white space */
2940                                         while ((*val!='\0') && ((*val==' ') || (*val=='\t')))
2941                                                 val++;
2942                                         
2943                                         if (strwicmp("password", param) == 0)
2944                                         {
2945                                                 pstrcpy(password, val);
2946                                                 got_pass = True;
2947                                         }
2948                                         else if (strwicmp("username", param) == 0)
2949                                                 pstrcpy(username, val);
2950                                         else if (strwicmp("domain", param) == 0)
2951                                                 pstrcpy(workgroup,val);
2952                                         memset(buf, 0, sizeof(buf));
2953                                 }
2954                                 x_fclose(auth);
2955                         }
2956                         break;
2957
2958                 case 'L':
2959                         remember_query_host(optarg, query_host);
2960                         break;
2961                 case 't':
2962                         pstrcpy(term_code, optarg);
2963                         break;
2964                 case 'm':
2965                         max_protocol = interpret_protocol(optarg, max_protocol);
2966                         break;
2967                 case 'W':
2968                         pstrcpy(workgroup,optarg);
2969                         break;
2970                 case 'T':
2971                         if (!tar_parseargs(argc, argv, optarg, optind)) {
2972                                 usage(pname);
2973                                 exit(1);
2974                         }
2975                         break;
2976                 case 'D':
2977                         fstrcpy(base_directory,optarg);
2978                         break;
2979                 case 'c':
2980                         cmdstr = optarg;
2981                         break;
2982                 case 'b':
2983                         io_bufsize = MAX(1, atoi(optarg));
2984                         break;
2985                 case 'k':
2986 #ifdef HAVE_KRB5
2987                         use_kerberos = True;
2988                         got_pass = True;
2989 #else
2990                         d_printf("No kerberos support compiled in\n");
2991                         exit(1);
2992 #endif
2993                         break;
2994                 default:
2995                         usage(pname);
2996                         exit(1);
2997                 }
2998         }
2999
3000         init_names();
3001
3002         if(*new_name_resolve_order)
3003                 lp_set_name_resolve_order(new_name_resolve_order);
3004
3005         if (!tar_type && !*query_host && !*service && !message) {
3006                 usage(pname);
3007                 exit(1);
3008         }
3009
3010         DEBUG( 3, ( "Client started (version %s).\n", VERSION ) );
3011
3012         if (tar_type) {
3013                 if (cmdstr)
3014                         process_command_string(cmdstr);
3015                 return do_tar_op(base_directory);
3016         }
3017
3018         if ((p=strchr_m(query_host,'#'))) {
3019                 *p = 0;
3020                 p++;
3021                 sscanf(p, "%x", &name_type);
3022         }
3023   
3024         if (*query_host) {
3025                 return do_host_query(query_host);
3026         }
3027
3028         if (message) {
3029                 return do_message_op();
3030         }
3031         
3032         if (process(base_directory)) {
3033                 return 1;
3034         }
3035
3036         return rc;
3037 }