55e9f1a71d9b674c91c1d11a3777e7212304aaaa
[tprouty/samba.git] / source / 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    Copyright (C) Jelmer Vernooij          2003
7    Copyright (C) Gerald (Jerry) Carter    2004
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #define NO_SYSLOG
25
26 #include "includes.h"
27 #include "client/client_proto.h"
28 #ifndef REGISTER
29 #define REGISTER 0
30 #endif
31
32 extern BOOL in_client;
33 static int port = 0;
34 pstring cur_dir = "\\";
35 static pstring cd_path = "";
36 static pstring service;
37 static pstring desthost;
38 static pstring username;
39 static pstring calling_name;
40 static BOOL grepable=False;
41 static char *cmdstr = NULL;
42
43 static int io_bufsize = 64512;
44
45 static int name_type = 0x20;
46 static int max_protocol = PROTOCOL_NT1;
47
48 static int process_tok(pstring tok);
49 static int cmd_help(void);
50
51 /* 30 second timeout on most commands */
52 #define CLIENT_TIMEOUT (30*1000)
53 #define SHORT_TIMEOUT (5*1000)
54
55 /* value for unused fid field in trans2 secondary request */
56 #define FID_UNUSED (0xFFFF)
57
58 time_t newer_than = 0;
59 static int archive_level = 0;
60
61 static BOOL translation = False;
62 static BOOL have_ip;
63
64 /* clitar bits insert */
65 extern int blocksize;
66 extern BOOL tar_inc;
67 extern BOOL tar_reset;
68 /* clitar bits end */
69  
70
71 static BOOL prompt = True;
72
73 static int printmode = 1;
74
75 static BOOL recurse = False;
76 BOOL lowercase = False;
77
78 static struct in_addr dest_ip;
79
80 #define SEPARATORS " \t\n\r"
81
82 static BOOL abort_mget = True;
83
84 static pstring fileselection = "";
85
86 extern file_info def_finfo;
87
88 /* timing globals */
89 SMB_BIG_UINT get_total_size = 0;
90 unsigned int get_total_time_ms = 0;
91 static SMB_BIG_UINT put_total_size = 0;
92 static unsigned int put_total_time_ms = 0;
93
94 /* totals globals */
95 static double dir_total;
96
97 /* root cli_state connection */
98
99 struct cli_state *cli;
100
101
102
103 /****************************************************************************
104  Write to a local file with CR/LF->LF translation if appropriate. Return the 
105  number taken from the buffer. This may not equal the number written.
106 ****************************************************************************/
107
108 static int writefile(int f, char *b, int n)
109 {
110         int i;
111
112         if (!translation) {
113                 return write(f,b,n);
114         }
115
116         i = 0;
117         while (i < n) {
118                 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
119                         b++;i++;
120                 }
121                 if (write(f, b, 1) != 1) {
122                         break;
123                 }
124                 b++;
125                 i++;
126         }
127   
128         return(i);
129 }
130
131 /****************************************************************************
132  Read from a file with LF->CR/LF translation if appropriate. Return the 
133  number read. read approx n bytes.
134 ****************************************************************************/
135
136 static int readfile(char *b, int n, XFILE *f)
137 {
138         int i;
139         int c;
140
141         if (!translation)
142                 return x_fread(b,1,n,f);
143   
144         i = 0;
145         while (i < (n - 1) && (i < BUFFER_SIZE)) {
146                 if ((c = x_getc(f)) == EOF) {
147                         break;
148                 }
149       
150                 if (c == '\n') { /* change all LFs to CR/LF */
151                         b[i++] = '\r';
152                 }
153       
154                 b[i++] = c;
155         }
156   
157         return(i);
158 }
159  
160 /****************************************************************************
161  Send a message.
162 ****************************************************************************/
163
164 static void send_message(void)
165 {
166         int total_len = 0;
167         int grp_id;
168
169         if (!cli_message_start(cli, desthost, username, &grp_id)) {
170                 d_printf("message start: %s\n", cli_errstr(cli));
171                 return;
172         }
173
174
175         d_printf("Connected. Type your message, ending it with a Control-D\n");
176
177         while (!feof(stdin) && total_len < 1600) {
178                 int maxlen = MIN(1600 - total_len,127);
179                 pstring msg;
180                 int l=0;
181                 int c;
182
183                 ZERO_ARRAY(msg);
184
185                 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
186                         if (c == '\n')
187                                 msg[l++] = '\r';
188                         msg[l] = c;   
189                 }
190
191                 if (!cli_message_text(cli, msg, l, grp_id)) {
192                         d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
193                         return;
194                 }      
195                 
196                 total_len += l;
197         }
198
199         if (total_len >= 1600)
200                 d_printf("the message was truncated to 1600 bytes\n");
201         else
202                 d_printf("sent %d bytes\n",total_len);
203
204         if (!cli_message_end(cli, grp_id)) {
205                 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
206                 return;
207         }      
208 }
209
210 /****************************************************************************
211  Check the space on a device.
212 ****************************************************************************/
213
214 static int do_dskattr(void)
215 {
216         int total, bsize, avail;
217         struct cli_state *targetcli;
218         pstring targetpath;
219
220         if ( !cli_resolve_path( cli, cur_dir, &targetcli, targetpath ) ) {
221                 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
222         }
223
224         if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
225                 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli)); 
226                 return 1;
227         }
228
229         d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
230                  total, bsize, avail);
231
232         return 0;
233 }
234
235 /****************************************************************************
236  Show cd/pwd.
237 ****************************************************************************/
238
239 static int cmd_pwd(void)
240 {
241         d_printf("Current directory is %s",service);
242         d_printf("%s\n",cur_dir);
243         return 0;
244 }
245
246 /****************************************************************************
247  Change directory - inner section.
248 ****************************************************************************/
249
250 static int do_cd(char *newdir)
251 {
252         char *p = newdir;
253         pstring saved_dir;
254         pstring dname;
255         pstring targetpath;
256         struct cli_state *targetcli;
257         SMB_STRUCT_STAT sbuf;
258         uint32 attributes;
259       
260         dos_format(newdir);
261
262         /* Save the current directory in case the new directory is invalid */
263
264         pstrcpy(saved_dir, cur_dir);
265
266         if (*p == '\\')
267                 pstrcpy(cur_dir,p);
268         else
269                 pstrcat(cur_dir,p);
270
271         if (*(cur_dir+strlen(cur_dir)-1) != '\\') {
272                 pstrcat(cur_dir, "\\");
273         }
274         
275         dos_clean_name(cur_dir);
276         pstrcpy( dname, cur_dir );
277         pstrcat(cur_dir,"\\");
278         dos_clean_name(cur_dir);
279         
280         if ( !cli_resolve_path( cli, dname, &targetcli, targetpath ) ) {
281                 d_printf("cd %s: %s\n", dname, cli_errstr(cli));
282                 pstrcpy(cur_dir,saved_dir);
283                 goto out;
284         }
285
286         
287         if ( strequal(targetpath,"\\" ) )
288                 return 0;   
289                 
290         /* use a trans2_qpathinfo to test directories for modern servers */
291         
292         if ( targetcli->protocol >= PROTOCOL_LANMAN2 ) {
293                 if ( !cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
294                         d_printf("cd %s: %s\n", dname, cli_errstr(targetcli));
295                         pstrcpy(cur_dir,saved_dir);
296                         goto out;
297                 }
298                 
299                 if ( !(attributes&FILE_ATTRIBUTE_DIRECTORY) ) {
300                         d_printf("cd %s: not a directory\n", dname);
301                         pstrcpy(cur_dir,saved_dir);
302                         goto out;
303                 }               
304         }
305         else {
306                 pstrcat( targetpath, "\\" );
307                 dos_clean_name( targetpath );
308                 
309                 if ( !cli_chkpath(targetcli, targetpath) ) {
310                         d_printf("cd %s: %s\n", dname, cli_errstr(targetcli));
311                         pstrcpy(cur_dir,saved_dir);
312                 }
313         }
314
315 out:
316         pstrcpy(cd_path,cur_dir);
317
318         return 0;
319 }
320
321 /****************************************************************************
322  Change directory.
323 ****************************************************************************/
324
325 static int cmd_cd(void)
326 {
327         pstring buf;
328         int rc = 0;
329                 
330         if (next_token_nr(NULL,buf,NULL,sizeof(buf)))
331                 rc = do_cd(buf);
332         else
333                 d_printf("Current directory is %s\n",cur_dir);
334
335         return rc;
336 }
337
338 /*******************************************************************
339  Decide if a file should be operated on.
340 ********************************************************************/
341
342 static BOOL do_this_one(file_info *finfo)
343 {
344         if (finfo->mode & aDIR)
345                 return(True);
346
347         if (*fileselection && 
348             !mask_match(finfo->name,fileselection,False)) {
349                 DEBUG(3,("mask_match %s failed\n", finfo->name));
350                 return False;
351         }
352
353         if (newer_than && finfo->mtime < newer_than) {
354                 DEBUG(3,("newer_than %s failed\n", finfo->name));
355                 return(False);
356         }
357
358         if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
359                 DEBUG(3,("archive %s failed\n", finfo->name));
360                 return(False);
361         }
362         
363         return(True);
364 }
365
366 /****************************************************************************
367  Display info about a file.
368 ****************************************************************************/
369
370 static void display_finfo(file_info *finfo)
371 {
372         if (do_this_one(finfo)) {
373                 time_t t = finfo->mtime; /* the time is assumed to be passed as GMT */
374                 d_printf("  %-30s%7.7s %8.0f  %s",
375                          finfo->name,
376                          attrib_string(finfo->mode),
377                          (double)finfo->size,
378                          asctime(LocalTime(&t)));
379                 dir_total += finfo->size;
380         }
381 }
382
383 /****************************************************************************
384  Accumulate size of a file.
385 ****************************************************************************/
386
387 static void do_du(file_info *finfo)
388 {
389         if (do_this_one(finfo)) {
390                 dir_total += finfo->size;
391         }
392 }
393
394 static BOOL do_list_recurse;
395 static BOOL do_list_dirs;
396 static char *do_list_queue = 0;
397 static long do_list_queue_size = 0;
398 static long do_list_queue_start = 0;
399 static long do_list_queue_end = 0;
400 static void (*do_list_fn)(file_info *);
401
402 /****************************************************************************
403  Functions for do_list_queue.
404 ****************************************************************************/
405
406 /*
407  * The do_list_queue is a NUL-separated list of strings stored in a
408  * char*.  Since this is a FIFO, we keep track of the beginning and
409  * ending locations of the data in the queue.  When we overflow, we
410  * double the size of the char*.  When the start of the data passes
411  * the midpoint, we move everything back.  This is logically more
412  * complex than a linked list, but easier from a memory management
413  * angle.  In any memory error condition, do_list_queue is reset.
414  * Functions check to ensure that do_list_queue is non-NULL before
415  * accessing it.
416  */
417
418 static void reset_do_list_queue(void)
419 {
420         SAFE_FREE(do_list_queue);
421         do_list_queue_size = 0;
422         do_list_queue_start = 0;
423         do_list_queue_end = 0;
424 }
425
426 static void init_do_list_queue(void)
427 {
428         reset_do_list_queue();
429         do_list_queue_size = 1024;
430         do_list_queue = SMB_MALLOC(do_list_queue_size);
431         if (do_list_queue == 0) { 
432                 d_printf("malloc fail for size %d\n",
433                          (int)do_list_queue_size);
434                 reset_do_list_queue();
435         } else {
436                 memset(do_list_queue, 0, do_list_queue_size);
437         }
438 }
439
440 static void adjust_do_list_queue(void)
441 {
442         /*
443          * If the starting point of the queue is more than half way through,
444          * move everything toward the beginning.
445          */
446         if (do_list_queue && (do_list_queue_start == do_list_queue_end)) {
447                 DEBUG(4,("do_list_queue is empty\n"));
448                 do_list_queue_start = do_list_queue_end = 0;
449                 *do_list_queue = '\0';
450         } else if (do_list_queue_start > (do_list_queue_size / 2)) {
451                 DEBUG(4,("sliding do_list_queue backward\n"));
452                 memmove(do_list_queue,
453                         do_list_queue + do_list_queue_start,
454                         do_list_queue_end - do_list_queue_start);
455                 do_list_queue_end -= do_list_queue_start;
456                 do_list_queue_start = 0;
457         }
458 }
459
460 static void add_to_do_list_queue(const char* entry)
461 {
462         char *dlq;
463         long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
464         while (new_end > do_list_queue_size) {
465                 do_list_queue_size *= 2;
466                 DEBUG(4,("enlarging do_list_queue to %d\n",
467                          (int)do_list_queue_size));
468                 dlq = SMB_REALLOC(do_list_queue, do_list_queue_size);
469                 if (! dlq) {
470                         d_printf("failure enlarging do_list_queue to %d bytes\n",
471                                  (int)do_list_queue_size);
472                         reset_do_list_queue();
473                 } else {
474                         do_list_queue = dlq;
475                         memset(do_list_queue + do_list_queue_size / 2,
476                                0, do_list_queue_size / 2);
477                 }
478         }
479         if (do_list_queue) {
480                 safe_strcpy_base(do_list_queue + do_list_queue_end, 
481                                  entry, do_list_queue, do_list_queue_size);
482                 do_list_queue_end = new_end;
483                 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
484                          entry, (int)do_list_queue_start, (int)do_list_queue_end));
485         }
486 }
487
488 static char *do_list_queue_head(void)
489 {
490         return do_list_queue + do_list_queue_start;
491 }
492
493 static void remove_do_list_queue_head(void)
494 {
495         if (do_list_queue_end > do_list_queue_start) {
496                 do_list_queue_start += strlen(do_list_queue_head()) + 1;
497                 adjust_do_list_queue();
498                 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
499                          (int)do_list_queue_start, (int)do_list_queue_end));
500         }
501 }
502
503 static int do_list_queue_empty(void)
504 {
505         return (! (do_list_queue && *do_list_queue));
506 }
507
508 /****************************************************************************
509  A helper for do_list.
510 ****************************************************************************/
511
512 static void do_list_helper(file_info *f, const char *mask, void *state)
513 {
514         if (f->mode & aDIR) {
515                 if (do_list_dirs && do_this_one(f)) {
516                         do_list_fn(f);
517                 }
518                 if (do_list_recurse && 
519                     !strequal(f->name,".") && 
520                     !strequal(f->name,"..")) {
521                         pstring mask2;
522                         char *p;
523
524                         if (!f->name[0]) {
525                                 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
526                                 return;
527                         }
528
529                         pstrcpy(mask2, mask);
530                         p = strrchr_m(mask2,'\\');
531                         if (!p)
532                                 return;
533                         p[1] = 0;
534                         pstrcat(mask2, f->name);
535                         pstrcat(mask2,"\\*");
536                         add_to_do_list_queue(mask2);
537                 }
538                 return;
539         }
540
541         if (do_this_one(f)) {
542                 do_list_fn(f);
543         }
544 }
545
546 /****************************************************************************
547  A wrapper around cli_list that adds recursion.
548 ****************************************************************************/
549
550 void do_list(const char *mask,uint16 attribute,void (*fn)(file_info *),BOOL rec, BOOL dirs)
551 {
552         static int in_do_list = 0;
553         struct cli_state *targetcli;
554         pstring targetpath;
555
556         if (in_do_list && rec) {
557                 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
558                 exit(1);
559         }
560
561         in_do_list = 1;
562
563         do_list_recurse = rec;
564         do_list_dirs = dirs;
565         do_list_fn = fn;
566
567         if (rec) {
568                 init_do_list_queue();
569                 add_to_do_list_queue(mask);
570                 
571                 while (! do_list_queue_empty()) {
572                         /*
573                          * Need to copy head so that it doesn't become
574                          * invalid inside the call to cli_list.  This
575                          * would happen if the list were expanded
576                          * during the call.
577                          * Fix from E. Jay Berkenbilt (ejb@ql.org)
578                          */
579                         pstring head;
580                         pstrcpy(head, do_list_queue_head());
581                         
582                         /* check for dfs */
583                         
584                         if ( !cli_resolve_path( cli, head, &targetcli, targetpath ) ) {
585                                 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
586                                 continue;
587                         }
588                         
589                         cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
590                         remove_do_list_queue_head();
591                         if ((! do_list_queue_empty()) && (fn == display_finfo)) {
592                                 char* next_file = do_list_queue_head();
593                                 char* save_ch = 0;
594                                 if ((strlen(next_file) >= 2) &&
595                                     (next_file[strlen(next_file) - 1] == '*') &&
596                                     (next_file[strlen(next_file) - 2] == '\\')) {
597                                         save_ch = next_file +
598                                                 strlen(next_file) - 2;
599                                         *save_ch = '\0';
600                                 }
601                                 d_printf("\n%s\n",next_file);
602                                 if (save_ch) {
603                                         *save_ch = '\\';
604                                 }
605                         }
606                 }
607         } else {
608                 /* check for dfs */
609                         
610                 if ( cli_resolve_path( cli, mask, &targetcli, targetpath ) ) {
611                         if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) 
612                                 d_printf("%s listing %s\n", cli_errstr(targetcli), targetpath);
613                 }
614                 else
615                         d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
616                 
617         }
618
619         in_do_list = 0;
620         reset_do_list_queue();
621 }
622
623 /****************************************************************************
624  Get a directory listing.
625 ****************************************************************************/
626
627 static int cmd_dir(void)
628 {
629         uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
630         pstring mask;
631         pstring buf;
632         char *p=buf;
633         int rc;
634         
635         dir_total = 0;
636         if (strcmp(cur_dir, "\\") != 0) {
637                 pstrcpy(mask,cur_dir);
638                 if(mask[strlen(mask)-1]!='\\')
639                         pstrcat(mask,"\\");
640         } else {
641                 pstrcpy(mask, "\\");
642         }
643         
644         if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
645                 dos_format(p);
646                 if (*p == '\\')
647                         pstrcpy(mask,p + 1);
648                 else
649                         pstrcat(mask,p);
650         } else {
651                 pstrcat(mask,"*");
652         }
653
654         do_list(mask, attribute, display_finfo, recurse, True);
655
656         rc = do_dskattr();
657
658         DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
659
660         return rc;
661 }
662
663 /****************************************************************************
664  Get a directory listing.
665 ****************************************************************************/
666
667 static int cmd_du(void)
668 {
669         uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
670         pstring mask;
671         pstring buf;
672         char *p=buf;
673         int rc;
674         
675         dir_total = 0;
676         pstrcpy(mask,cur_dir);
677         if(mask[strlen(mask)-1]!='\\')
678                 pstrcat(mask,"\\");
679         
680         if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
681                 dos_format(p);
682                 if (*p == '\\')
683                         pstrcpy(mask,p);
684                 else
685                         pstrcat(mask,p);
686         } else {
687                 pstrcat(mask,"*");
688         }
689
690         do_list(mask, attribute, do_du, recurse, True);
691
692         rc = do_dskattr();
693
694         d_printf("Total number of bytes: %.0f\n", dir_total);
695
696         return rc;
697 }
698
699 /****************************************************************************
700  Get a file from rname to lname
701 ****************************************************************************/
702
703 static int do_get(char *rname, char *lname, BOOL reget)
704 {  
705         int handle = 0, fnum;
706         BOOL newhandle = False;
707         char *data;
708         struct timeval tp_start;
709         int read_size = io_bufsize;
710         uint16 attr;
711         size_t size;
712         off_t start = 0;
713         off_t nread = 0;
714         int rc = 0;
715         struct cli_state *targetcli;
716         pstring targetname;
717
718
719         if (lowercase) {
720                 strlower_m(lname);
721         }
722
723         if ( !cli_resolve_path( cli, rname, &targetcli, targetname ) ) {
724                 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
725                 return 1;
726         }
727
728
729         GetTimeOfDay(&tp_start);
730         
731         fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
732
733         if (fnum == -1) {
734                 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
735                 return 1;
736         }
737
738         if(!strcmp(lname,"-")) {
739                 handle = fileno(stdout);
740         } else {
741                 if (reget) {
742                         handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
743                         if (handle >= 0) {
744                                 start = sys_lseek(handle, 0, SEEK_END);
745                                 if (start == -1) {
746                                         d_printf("Error seeking local file\n");
747                                         return 1;
748                                 }
749                         }
750                 } else {
751                         handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
752                 }
753                 newhandle = True;
754         }
755         if (handle < 0) {
756                 d_printf("Error opening local file %s\n",lname);
757                 return 1;
758         }
759
760
761         if (!cli_qfileinfo(targetcli, fnum, 
762                            &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
763             !cli_getattrE(targetcli, fnum, 
764                           &attr, &size, NULL, NULL, NULL)) {
765                 d_printf("getattrib: %s\n",cli_errstr(targetcli));
766                 return 1;
767         }
768
769         DEBUG(1,("getting file %s of size %.0f as %s ", 
770                  rname, (double)size, lname));
771
772         if(!(data = (char *)SMB_MALLOC(read_size))) { 
773                 d_printf("malloc fail for size %d\n", read_size);
774                 cli_close(targetcli, fnum);
775                 return 1;
776         }
777
778         while (1) {
779                 int n = cli_read(targetcli, fnum, data, nread + start, read_size);
780
781                 if (n <= 0)
782                         break;
783  
784                 if (writefile(handle,data, n) != n) {
785                         d_printf("Error writing local file\n");
786                         rc = 1;
787                         break;
788                 }
789       
790                 nread += n;
791         }
792
793         if (nread + start < size) {
794                 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
795                             rname, (long)nread));
796
797                 rc = 1;
798         }
799
800         SAFE_FREE(data);
801         
802         if (!cli_close(targetcli, fnum)) {
803                 d_printf("Error %s closing remote file\n",cli_errstr(cli));
804                 rc = 1;
805         }
806
807         if (newhandle) {
808                 close(handle);
809         }
810
811         if (archive_level >= 2 && (attr & aARCH)) {
812                 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
813         }
814
815         {
816                 struct timeval tp_end;
817                 int this_time;
818                 
819                 GetTimeOfDay(&tp_end);
820                 this_time = 
821                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
822                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
823                 get_total_time_ms += this_time;
824                 get_total_size += nread;
825                 
826                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
827                          nread / (1.024*this_time + 1.0e-4),
828                          get_total_size / (1.024*get_total_time_ms)));
829         }
830         
831         return rc;
832 }
833
834 /****************************************************************************
835  Get a file.
836 ****************************************************************************/
837
838 static int cmd_get(void)
839 {
840         pstring lname;
841         pstring rname;
842         char *p;
843
844         pstrcpy(rname,cur_dir);
845         pstrcat(rname,"\\");
846         
847         p = rname + strlen(rname);
848         
849         if (!next_token_nr(NULL,p,NULL,sizeof(rname)-strlen(rname))) {
850                 d_printf("get <filename>\n");
851                 return 1;
852         }
853         pstrcpy(lname,p);
854         dos_clean_name(rname);
855         
856         next_token_nr(NULL,lname,NULL,sizeof(lname));
857         
858         return do_get(rname, lname, False);
859 }
860
861 /****************************************************************************
862  Do an mget operation on one file.
863 ****************************************************************************/
864
865 static void do_mget(file_info *finfo)
866 {
867         pstring rname;
868         pstring quest;
869         pstring saved_curdir;
870         pstring mget_mask;
871
872         if (strequal(finfo->name,".") || strequal(finfo->name,".."))
873                 return;
874
875         if (abort_mget) {
876                 d_printf("mget aborted\n");
877                 return;
878         }
879
880         if (finfo->mode & aDIR)
881                 slprintf(quest,sizeof(pstring)-1,
882                          "Get directory %s? ",finfo->name);
883         else
884                 slprintf(quest,sizeof(pstring)-1,
885                          "Get file %s? ",finfo->name);
886
887         if (prompt && !yesno(quest))
888                 return;
889
890         if (!(finfo->mode & aDIR)) {
891                 pstrcpy(rname,cur_dir);
892                 pstrcat(rname,finfo->name);
893                 do_get(rname, finfo->name, False);
894                 return;
895         }
896
897         /* handle directories */
898         pstrcpy(saved_curdir,cur_dir);
899
900         pstrcat(cur_dir,finfo->name);
901         pstrcat(cur_dir,"\\");
902
903         unix_format(finfo->name);
904         if (lowercase)
905                 strlower_m(finfo->name);
906         
907         if (!directory_exist(finfo->name,NULL) && 
908             mkdir(finfo->name,0777) != 0) {
909                 d_printf("failed to create directory %s\n",finfo->name);
910                 pstrcpy(cur_dir,saved_curdir);
911                 return;
912         }
913         
914         if (chdir(finfo->name) != 0) {
915                 d_printf("failed to chdir to directory %s\n",finfo->name);
916                 pstrcpy(cur_dir,saved_curdir);
917                 return;
918         }
919
920         pstrcpy(mget_mask,cur_dir);
921         pstrcat(mget_mask,"*");
922         
923         do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,False, True);
924         chdir("..");
925         pstrcpy(cur_dir,saved_curdir);
926 }
927
928 /****************************************************************************
929  View the file using the pager.
930 ****************************************************************************/
931
932 static int cmd_more(void)
933 {
934         pstring rname,lname,pager_cmd;
935         char *pager;
936         int fd;
937         int rc = 0;
938
939         pstrcpy(rname,cur_dir);
940         pstrcat(rname,"\\");
941         
942         slprintf(lname,sizeof(lname)-1, "%s/smbmore.XXXXXX",tmpdir());
943         fd = smb_mkstemp(lname);
944         if (fd == -1) {
945                 d_printf("failed to create temporary file for more\n");
946                 return 1;
947         }
948         close(fd);
949
950         if (!next_token_nr(NULL,rname+strlen(rname),NULL,sizeof(rname)-strlen(rname))) {
951                 d_printf("more <filename>\n");
952                 unlink(lname);
953                 return 1;
954         }
955         dos_clean_name(rname);
956
957         rc = do_get(rname, lname, False);
958
959         pager=getenv("PAGER");
960
961         slprintf(pager_cmd,sizeof(pager_cmd)-1,
962                  "%s %s",(pager? pager:PAGER), lname);
963         system(pager_cmd);
964         unlink(lname);
965         
966         return rc;
967 }
968
969 /****************************************************************************
970  Do a mget command.
971 ****************************************************************************/
972
973 static int cmd_mget(void)
974 {
975         uint16 attribute = aSYSTEM | aHIDDEN;
976         pstring mget_mask;
977         pstring buf;
978         char *p=buf;
979
980         *mget_mask = 0;
981
982         if (recurse)
983                 attribute |= aDIR;
984         
985         abort_mget = False;
986
987         while (next_token_nr(NULL,p,NULL,sizeof(buf))) {
988                 pstrcpy(mget_mask,cur_dir);
989                 if(mget_mask[strlen(mget_mask)-1]!='\\')
990                         pstrcat(mget_mask,"\\");
991                 
992                 if (*p == '\\')
993                         pstrcpy(mget_mask,p);
994                 else
995                         pstrcat(mget_mask,p);
996                 do_list(mget_mask, attribute,do_mget,False,True);
997         }
998
999         if (!*mget_mask) {
1000                 pstrcpy(mget_mask,cur_dir);
1001                 if(mget_mask[strlen(mget_mask)-1]!='\\')
1002                         pstrcat(mget_mask,"\\");
1003                 pstrcat(mget_mask,"*");
1004                 do_list(mget_mask, attribute,do_mget,False,True);
1005         }
1006         
1007         return 0;
1008 }
1009
1010 /****************************************************************************
1011  Make a directory of name "name".
1012 ****************************************************************************/
1013
1014 static BOOL do_mkdir(char *name)
1015 {
1016         struct cli_state *targetcli;
1017         pstring targetname;
1018         
1019         if ( !cli_resolve_path( cli, name, &targetcli, targetname ) ) {
1020                 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1021                 return False;
1022         }
1023
1024         if (!cli_mkdir(targetcli, targetname)) {
1025                 d_printf("%s making remote directory %s\n",
1026                          cli_errstr(targetcli),name);
1027                 return(False);
1028         }
1029
1030         return(True);
1031 }
1032
1033 /****************************************************************************
1034  Show 8.3 name of a file.
1035 ****************************************************************************/
1036
1037 static BOOL do_altname(char *name)
1038 {
1039         pstring altname;
1040         if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1041                 d_printf("%s getting alt name for %s\n",
1042                          cli_errstr(cli),name);
1043                 return(False);
1044         }
1045         d_printf("%s\n", altname);
1046
1047         return(True);
1048 }
1049
1050 /****************************************************************************
1051  Exit client.
1052 ****************************************************************************/
1053
1054 static int cmd_quit(void)
1055 {
1056         cli_cm_shutdown();
1057         exit(0);
1058         /* NOTREACHED */
1059         return 0;
1060 }
1061
1062 /****************************************************************************
1063  Make a directory.
1064 ****************************************************************************/
1065
1066 static int cmd_mkdir(void)
1067 {
1068         pstring mask;
1069         pstring buf;
1070         char *p=buf;
1071   
1072         pstrcpy(mask,cur_dir);
1073
1074         if (!next_token_nr(NULL,p,NULL,sizeof(buf))) {
1075                 if (!recurse)
1076                         d_printf("mkdir <dirname>\n");
1077                 return 1;
1078         }
1079         pstrcat(mask,p);
1080
1081         if (recurse) {
1082                 pstring ddir;
1083                 pstring ddir2;
1084                 *ddir2 = 0;
1085                 
1086                 pstrcpy(ddir,mask);
1087                 trim_char(ddir,'.','\0');
1088                 p = strtok(ddir,"/\\");
1089                 while (p) {
1090                         pstrcat(ddir2,p);
1091                         if (!cli_chkpath(cli, ddir2)) { 
1092                                 do_mkdir(ddir2);
1093                         }
1094                         pstrcat(ddir2,"\\");
1095                         p = strtok(NULL,"/\\");
1096                 }        
1097         } else {
1098                 do_mkdir(mask);
1099         }
1100         
1101         return 0;
1102 }
1103
1104 /****************************************************************************
1105  Show alt name.
1106 ****************************************************************************/
1107
1108 static int cmd_altname(void)
1109 {
1110         pstring name;
1111         pstring buf;
1112         char *p=buf;
1113   
1114         pstrcpy(name,cur_dir);
1115
1116         if (!next_token_nr(NULL,p,NULL,sizeof(buf))) {
1117                 d_printf("altname <file>\n");
1118                 return 1;
1119         }
1120         pstrcat(name,p);
1121
1122         do_altname(name);
1123
1124         return 0;
1125 }
1126
1127 /****************************************************************************
1128  Put a single file.
1129 ****************************************************************************/
1130
1131 static int do_put(char *rname, char *lname, BOOL reput)
1132 {
1133         int fnum;
1134         XFILE *f;
1135         size_t start = 0;
1136         off_t nread = 0;
1137         char *buf = NULL;
1138         int maxwrite = io_bufsize;
1139         int rc = 0;
1140         struct timeval tp_start;
1141         struct cli_state *targetcli;
1142         pstring targetname;
1143         
1144         if ( !cli_resolve_path( cli, rname, &targetcli, targetname ) ) {
1145                 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1146                 return 1;
1147         }
1148         
1149         GetTimeOfDay(&tp_start);
1150
1151         if (reput) {
1152                 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
1153                 if (fnum >= 0) {
1154                         if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1155                             !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
1156                                 d_printf("getattrib: %s\n",cli_errstr(cli));
1157                                 return 1;
1158                         }
1159                 }
1160         } else {
1161                 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1162         }
1163   
1164         if (fnum == -1) {
1165                 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1166                 return 1;
1167         }
1168
1169         /* allow files to be piped into smbclient
1170            jdblair 24.jun.98
1171
1172            Note that in this case this function will exit(0) rather
1173            than returning. */
1174         if (!strcmp(lname, "-")) {
1175                 f = x_stdin;
1176                 /* size of file is not known */
1177         } else {
1178                 f = x_fopen(lname,O_RDONLY, 0);
1179                 if (f && reput) {
1180                         if (x_tseek(f, start, SEEK_SET) == -1) {
1181                                 d_printf("Error seeking local file\n");
1182                                 return 1;
1183                         }
1184                 }
1185         }
1186
1187         if (!f) {
1188                 d_printf("Error opening local file %s\n",lname);
1189                 return 1;
1190         }
1191   
1192         DEBUG(1,("putting file %s as %s ",lname,
1193                  rname));
1194   
1195         buf = (char *)SMB_MALLOC(maxwrite);
1196         if (!buf) {
1197                 d_printf("ERROR: Not enough memory!\n");
1198                 return 1;
1199         }
1200         while (!x_feof(f)) {
1201                 int n = maxwrite;
1202                 int ret;
1203
1204                 if ((n = readfile(buf,n,f)) < 1) {
1205                         if((n == 0) && x_feof(f))
1206                                 break; /* Empty local file. */
1207
1208                         d_printf("Error reading local file: %s\n", strerror(errno));
1209                         rc = 1;
1210                         break;
1211                 }
1212
1213                 ret = cli_write(targetcli, fnum, 0, buf, nread + start, n);
1214
1215                 if (n != ret) {
1216                         d_printf("Error writing file: %s\n", cli_errstr(cli));
1217                         rc = 1;
1218                         break;
1219                 } 
1220
1221                 nread += n;
1222         }
1223
1224         if (!cli_close(targetcli, fnum)) {
1225                 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1226                 x_fclose(f);
1227                 SAFE_FREE(buf);
1228                 return 1;
1229         }
1230
1231         
1232         if (f != x_stdin) {
1233                 x_fclose(f);
1234         }
1235
1236         SAFE_FREE(buf);
1237
1238         {
1239                 struct timeval tp_end;
1240                 int this_time;
1241                 
1242                 GetTimeOfDay(&tp_end);
1243                 this_time = 
1244                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1245                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
1246                 put_total_time_ms += this_time;
1247                 put_total_size += nread;
1248                 
1249                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1250                          nread / (1.024*this_time + 1.0e-4),
1251                          put_total_size / (1.024*put_total_time_ms)));
1252         }
1253
1254         if (f == x_stdin) {
1255                 cli_cm_shutdown();
1256                 exit(0);
1257         }
1258         
1259         return rc;
1260 }
1261
1262 /****************************************************************************
1263  Put a file.
1264 ****************************************************************************/
1265
1266 static int cmd_put(void)
1267 {
1268         pstring lname;
1269         pstring rname;
1270         pstring buf;
1271         char *p=buf;
1272         
1273         pstrcpy(rname,cur_dir);
1274         pstrcat(rname,"\\");
1275   
1276         if (!next_token_nr(NULL,p,NULL,sizeof(buf))) {
1277                 d_printf("put <filename>\n");
1278                 return 1;
1279         }
1280         pstrcpy(lname,p);
1281   
1282         if (next_token_nr(NULL,p,NULL,sizeof(buf)))
1283                 pstrcat(rname,p);      
1284         else
1285                 pstrcat(rname,lname);
1286         
1287         dos_clean_name(rname);
1288
1289         {
1290                 SMB_STRUCT_STAT st;
1291                 /* allow '-' to represent stdin
1292                    jdblair, 24.jun.98 */
1293                 if (!file_exist(lname,&st) &&
1294                     (strcmp(lname,"-"))) {
1295                         d_printf("%s does not exist\n",lname);
1296                         return 1;
1297                 }
1298         }
1299
1300         return do_put(rname, lname, False);
1301 }
1302
1303 /*************************************
1304  File list structure.
1305 *************************************/
1306
1307 static struct file_list {
1308         struct file_list *prev, *next;
1309         char *file_path;
1310         BOOL isdir;
1311 } *file_list;
1312
1313 /****************************************************************************
1314  Free a file_list structure.
1315 ****************************************************************************/
1316
1317 static void free_file_list (struct file_list * list)
1318 {
1319         struct file_list *tmp;
1320         
1321         while (list) {
1322                 tmp = list;
1323                 DLIST_REMOVE(list, list);
1324                 SAFE_FREE(tmp->file_path);
1325                 SAFE_FREE(tmp);
1326         }
1327 }
1328
1329 /****************************************************************************
1330  Seek in a directory/file list until you get something that doesn't start with
1331  the specified name.
1332 ****************************************************************************/
1333
1334 static BOOL seek_list(struct file_list *list, char *name)
1335 {
1336         while (list) {
1337                 trim_string(list->file_path,"./","\n");
1338                 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1339                         return(True);
1340                 }
1341                 list = list->next;
1342         }
1343       
1344         return(False);
1345 }
1346
1347 /****************************************************************************
1348  Set the file selection mask.
1349 ****************************************************************************/
1350
1351 static int cmd_select(void)
1352 {
1353         pstrcpy(fileselection,"");
1354         next_token_nr(NULL,fileselection,NULL,sizeof(fileselection));
1355
1356         return 0;
1357 }
1358
1359 /****************************************************************************
1360   Recursive file matching function act as find
1361   match must be always set to True when calling this function
1362 ****************************************************************************/
1363
1364 static int file_find(struct file_list **list, const char *directory, 
1365                       const char *expression, BOOL match)
1366 {
1367         DIR *dir;
1368         struct file_list *entry;
1369         struct stat statbuf;
1370         int ret;
1371         char *path;
1372         BOOL isdir;
1373         const char *dname;
1374
1375         dir = opendir(directory);
1376         if (!dir)
1377                 return -1;
1378         
1379         while ((dname = readdirname(dir))) {
1380                 if (!strcmp("..", dname))
1381                         continue;
1382                 if (!strcmp(".", dname))
1383                         continue;
1384                 
1385                 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1386                         continue;
1387                 }
1388
1389                 isdir = False;
1390                 if (!match || !gen_fnmatch(expression, dname)) {
1391                         if (recurse) {
1392                                 ret = stat(path, &statbuf);
1393                                 if (ret == 0) {
1394                                         if (S_ISDIR(statbuf.st_mode)) {
1395                                                 isdir = True;
1396                                                 ret = file_find(list, path, expression, False);
1397                                         }
1398                                 } else {
1399                                         d_printf("file_find: cannot stat file %s\n", path);
1400                                 }
1401                                 
1402                                 if (ret == -1) {
1403                                         SAFE_FREE(path);
1404                                         closedir(dir);
1405                                         return -1;
1406                                 }
1407                         }
1408                         entry = SMB_MALLOC_P(struct file_list);
1409                         if (!entry) {
1410                                 d_printf("Out of memory in file_find\n");
1411                                 closedir(dir);
1412                                 return -1;
1413                         }
1414                         entry->file_path = path;
1415                         entry->isdir = isdir;
1416                         DLIST_ADD(*list, entry);
1417                 } else {
1418                         SAFE_FREE(path);
1419                 }
1420         }
1421
1422         closedir(dir);
1423         return 0;
1424 }
1425
1426 /****************************************************************************
1427  mput some files.
1428 ****************************************************************************/
1429
1430 static int cmd_mput(void)
1431 {
1432         pstring buf;
1433         char *p=buf;
1434         
1435         while (next_token_nr(NULL,p,NULL,sizeof(buf))) {
1436                 int ret;
1437                 struct file_list *temp_list;
1438                 char *quest, *lname, *rname;
1439         
1440                 file_list = NULL;
1441
1442                 ret = file_find(&file_list, ".", p, True);
1443                 if (ret) {
1444                         free_file_list(file_list);
1445                         continue;
1446                 }
1447                 
1448                 quest = NULL;
1449                 lname = NULL;
1450                 rname = NULL;
1451                                 
1452                 for (temp_list = file_list; temp_list; 
1453                      temp_list = temp_list->next) {
1454
1455                         SAFE_FREE(lname);
1456                         if (asprintf(&lname, "%s/", temp_list->file_path) <= 0)
1457                                 continue;
1458                         trim_string(lname, "./", "/");
1459                         
1460                         /* check if it's a directory */
1461                         if (temp_list->isdir) {
1462                                 /* if (!recurse) continue; */
1463                                 
1464                                 SAFE_FREE(quest);
1465                                 if (asprintf(&quest, "Put directory %s? ", lname) < 0) break;
1466                                 if (prompt && !yesno(quest)) { /* No */
1467                                         /* Skip the directory */
1468                                         lname[strlen(lname)-1] = '/';
1469                                         if (!seek_list(temp_list, lname))
1470                                                 break;              
1471                                 } else { /* Yes */
1472                                         SAFE_FREE(rname);
1473                                         if(asprintf(&rname, "%s%s", cur_dir, lname) < 0) break;
1474                                         dos_format(rname);
1475                                         if (!cli_chkpath(cli, rname) && 
1476                                             !do_mkdir(rname)) {
1477                                                 DEBUG (0, ("Unable to make dir, skipping..."));
1478                                                 /* Skip the directory */
1479                                                 lname[strlen(lname)-1] = '/';
1480                                                 if (!seek_list(temp_list, lname))
1481                                                         break;
1482                                         }
1483                                 }
1484                                 continue;
1485                         } else {
1486                                 SAFE_FREE(quest);
1487                                 if (asprintf(&quest,"Put file %s? ", lname) < 0) break;
1488                                 if (prompt && !yesno(quest)) /* No */
1489                                         continue;
1490                                 
1491                                 /* Yes */
1492                                 SAFE_FREE(rname);
1493                                 if (asprintf(&rname, "%s%s", cur_dir, lname) < 0) break;
1494                         }
1495
1496                         dos_format(rname);
1497
1498                         do_put(rname, lname, False);
1499                 }
1500                 free_file_list(file_list);
1501                 SAFE_FREE(quest);
1502                 SAFE_FREE(lname);
1503                 SAFE_FREE(rname);
1504         }
1505
1506         return 0;
1507 }
1508
1509 /****************************************************************************
1510  Cancel a print job.
1511 ****************************************************************************/
1512
1513 static int do_cancel(int job)
1514 {
1515         if (cli_printjob_del(cli, job)) {
1516                 d_printf("Job %d cancelled\n",job);
1517                 return 0;
1518         } else {
1519                 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
1520                 return 1;
1521         }
1522 }
1523
1524 /****************************************************************************
1525  Cancel a print job.
1526 ****************************************************************************/
1527
1528 static int cmd_cancel(void)
1529 {
1530         pstring buf;
1531         int job; 
1532
1533         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1534                 d_printf("cancel <jobid> ...\n");
1535                 return 1;
1536         }
1537         do {
1538                 job = atoi(buf);
1539                 do_cancel(job);
1540         } while (next_token_nr(NULL,buf,NULL,sizeof(buf)));
1541         
1542         return 0;
1543 }
1544
1545 /****************************************************************************
1546  Print a file.
1547 ****************************************************************************/
1548
1549 static int cmd_print(void)
1550 {
1551         pstring lname;
1552         pstring rname;
1553         char *p;
1554
1555         if (!next_token_nr(NULL,lname,NULL, sizeof(lname))) {
1556                 d_printf("print <filename>\n");
1557                 return 1;
1558         }
1559
1560         pstrcpy(rname,lname);
1561         p = strrchr_m(rname,'/');
1562         if (p) {
1563                 slprintf(rname, sizeof(rname)-1, "%s-%d", p+1, (int)sys_getpid());
1564         }
1565
1566         if (strequal(lname,"-")) {
1567                 slprintf(rname, sizeof(rname)-1, "stdin-%d", (int)sys_getpid());
1568         }
1569
1570         return do_put(rname, lname, False);
1571 }
1572
1573 /****************************************************************************
1574  Show a print queue entry.
1575 ****************************************************************************/
1576
1577 static void queue_fn(struct print_job_info *p)
1578 {
1579         d_printf("%-6d   %-9d    %s\n", (int)p->id, (int)p->size, p->name);
1580 }
1581
1582 /****************************************************************************
1583  Show a print queue.
1584 ****************************************************************************/
1585
1586 static int cmd_queue(void)
1587 {
1588         cli_print_queue(cli, queue_fn);
1589         
1590         return 0;
1591 }
1592
1593 /****************************************************************************
1594  Delete some files.
1595 ****************************************************************************/
1596
1597 static void do_del(file_info *finfo)
1598 {
1599         pstring mask;
1600
1601         pstrcpy(mask,cur_dir);
1602         pstrcat(mask,finfo->name);
1603
1604         if (finfo->mode & aDIR) 
1605                 return;
1606
1607         if (!cli_unlink(cli, mask)) {
1608                 d_printf("%s deleting remote file %s\n",cli_errstr(cli),mask);
1609         }
1610 }
1611
1612 /****************************************************************************
1613  Delete some files.
1614 ****************************************************************************/
1615
1616 static int cmd_del(void)
1617 {
1618         pstring mask;
1619         pstring buf;
1620         uint16 attribute = aSYSTEM | aHIDDEN;
1621
1622         if (recurse)
1623                 attribute |= aDIR;
1624         
1625         pstrcpy(mask,cur_dir);
1626         
1627         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1628                 d_printf("del <filename>\n");
1629                 return 1;
1630         }
1631         pstrcat(mask,buf);
1632
1633         do_list(mask, attribute,do_del,False,False);
1634         
1635         return 0;
1636 }
1637
1638 /****************************************************************************
1639 ****************************************************************************/
1640
1641 static int cmd_open(void)
1642 {
1643         pstring mask;
1644         pstring buf;
1645         struct cli_state *targetcli;
1646         pstring targetname;
1647         
1648         pstrcpy(mask,cur_dir);
1649         
1650         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1651                 d_printf("open <filename>\n");
1652                 return 1;
1653         }
1654         pstrcat(mask,buf);
1655
1656         if ( !cli_resolve_path( cli, mask, &targetcli, targetname ) ) {
1657                 d_printf("open %s: %s\n", mask, cli_errstr(cli));
1658                 return 1;
1659         }
1660         
1661         cli_nt_create(targetcli, targetname, FILE_READ_DATA);
1662
1663         return 0;
1664 }
1665
1666
1667 /****************************************************************************
1668  Remove a directory.
1669 ****************************************************************************/
1670
1671 static int cmd_rmdir(void)
1672 {
1673         pstring mask;
1674         pstring buf;
1675         struct cli_state *targetcli;
1676         pstring targetname;
1677   
1678         pstrcpy(mask,cur_dir);
1679         
1680         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1681                 d_printf("rmdir <dirname>\n");
1682                 return 1;
1683         }
1684         pstrcat(mask,buf);
1685
1686         if ( !cli_resolve_path( cli, mask, &targetcli, targetname ) ) {
1687                 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
1688                 return 1;
1689         }
1690         
1691         if (!cli_rmdir(targetcli, targetname)) {
1692                 d_printf("%s removing remote directory file %s\n",
1693                          cli_errstr(targetcli),mask);
1694         }
1695         
1696         return 0;
1697 }
1698
1699 /****************************************************************************
1700  UNIX hardlink.
1701 ****************************************************************************/
1702
1703 static int cmd_link(void)
1704 {
1705         pstring oldname,newname;
1706         pstring buf,buf2;
1707         struct cli_state *targetcli;
1708         pstring targetname;
1709   
1710         pstrcpy(oldname,cur_dir);
1711         pstrcpy(newname,cur_dir);
1712   
1713         if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
1714             !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
1715                 d_printf("link <oldname> <newname>\n");
1716                 return 1;
1717         }
1718
1719         pstrcat(oldname,buf);
1720         pstrcat(newname,buf2);
1721
1722         if ( !cli_resolve_path( cli, oldname, &targetcli, targetname ) ) {
1723                 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
1724                 return 1;
1725         }
1726         
1727         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
1728                 d_printf("Server doesn't support UNIX CIFS calls.\n");
1729                 return 1;
1730         }
1731         
1732         if (!cli_unix_hardlink(targetcli, targetname, newname)) {
1733                 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
1734                 return 1;
1735         }  
1736
1737         return 0;
1738 }
1739
1740 /****************************************************************************
1741  UNIX symlink.
1742 ****************************************************************************/
1743
1744 static int cmd_symlink(void)
1745 {
1746         pstring oldname,newname;
1747         pstring buf,buf2;
1748   
1749         if (!SERVER_HAS_UNIX_CIFS(cli)) {
1750                 d_printf("Server doesn't support UNIX CIFS calls.\n");
1751                 return 1;
1752         }
1753
1754         pstrcpy(newname,cur_dir);
1755         
1756         if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
1757             !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
1758                 d_printf("symlink <oldname> <newname>\n");
1759                 return 1;
1760         }
1761
1762         pstrcpy(oldname,buf);
1763         pstrcat(newname,buf2);
1764
1765         if (!cli_unix_symlink(cli, oldname, newname)) {
1766                 d_printf("%s symlinking files (%s -> %s)\n",
1767                         cli_errstr(cli), newname, oldname);
1768                 return 1;
1769         } 
1770
1771         return 0;
1772 }
1773
1774 /****************************************************************************
1775  UNIX chmod.
1776 ****************************************************************************/
1777
1778 static int cmd_chmod(void)
1779 {
1780         pstring src;
1781         mode_t mode;
1782         pstring buf, buf2;
1783         struct cli_state *targetcli;
1784         pstring targetname;
1785   
1786         pstrcpy(src,cur_dir);
1787         
1788         if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
1789             !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
1790                 d_printf("chmod mode file\n");
1791                 return 1;
1792         }
1793
1794         mode = (mode_t)strtol(buf, NULL, 8);
1795         pstrcat(src,buf2);
1796
1797         if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
1798                 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
1799                 return 1;
1800         }
1801         
1802         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
1803                 d_printf("Server doesn't support UNIX CIFS calls.\n");
1804                 return 1;
1805         }
1806         
1807         if (!cli_unix_chmod(targetcli, targetname, mode)) {
1808                 d_printf("%s chmod file %s 0%o\n",
1809                         cli_errstr(targetcli), src, (unsigned int)mode);
1810                 return 1;
1811         } 
1812
1813         return 0;
1814 }
1815
1816 static const char *filetype_to_str(mode_t mode)
1817 {
1818         if (S_ISREG(mode)) {
1819                 return "regular file";
1820         } else if (S_ISDIR(mode)) {
1821                 return "directory";
1822         } else 
1823 #ifdef S_ISCHR
1824         if (S_ISCHR(mode)) {
1825                 return "character device";
1826         } else
1827 #endif
1828 #ifdef S_ISBLK
1829         if (S_ISBLK(mode)) {
1830                 return "block device";
1831         } else
1832 #endif
1833 #ifdef S_ISFIFO
1834         if (S_ISFIFO(mode)) {
1835                 return "fifo";
1836         } else
1837 #endif
1838 #ifdef S_ISLNK
1839         if (S_ISLNK(mode)) {
1840                 return "symbolic link";
1841         } else
1842 #endif
1843 #ifdef S_ISSOCK
1844         if (S_ISSOCK(mode)) {
1845                 return "socket";
1846         } else
1847 #endif
1848         return "";
1849 }
1850
1851 static char rwx_to_str(mode_t m, mode_t bt, char ret)
1852 {
1853         if (m & bt) {
1854                 return ret;
1855         } else {
1856                 return '-';
1857         }
1858 }
1859
1860 static char *unix_mode_to_str(char *s, mode_t m)
1861 {
1862         char *p = s;
1863         const char *str = filetype_to_str(m);
1864
1865         switch(str[0]) {
1866                 case 'd':
1867                         *p++ = 'd';
1868                         break;
1869                 case 'c':
1870                         *p++ = 'c';
1871                         break;
1872                 case 'b':
1873                         *p++ = 'b';
1874                         break;
1875                 case 'f':
1876                         *p++ = 'p';
1877                         break;
1878                 case 's':
1879                         *p++ = str[1] == 'y' ? 'l' : 's';
1880                         break;
1881                 case 'r':
1882                 default:
1883                         *p++ = '-';
1884                         break;
1885         }
1886         *p++ = rwx_to_str(m, S_IRUSR, 'r');
1887         *p++ = rwx_to_str(m, S_IWUSR, 'w');
1888         *p++ = rwx_to_str(m, S_IXUSR, 'x');
1889         *p++ = rwx_to_str(m, S_IRGRP, 'r');
1890         *p++ = rwx_to_str(m, S_IWGRP, 'w');
1891         *p++ = rwx_to_str(m, S_IXGRP, 'x');
1892         *p++ = rwx_to_str(m, S_IROTH, 'r');
1893         *p++ = rwx_to_str(m, S_IWOTH, 'w');
1894         *p++ = rwx_to_str(m, S_IXOTH, 'x');
1895         *p++ = '\0';
1896         return s;
1897 }
1898
1899 /****************************************************************************
1900  Utility function for UNIX getfacl.
1901 ****************************************************************************/
1902
1903 static char *perms_to_string(fstring permstr, unsigned char perms)
1904 {
1905         fstrcpy(permstr, "---");
1906         if (perms & SMB_POSIX_ACL_READ) {
1907                 permstr[0] = 'r';
1908         }
1909         if (perms & SMB_POSIX_ACL_WRITE) {
1910                 permstr[1] = 'w';
1911         }
1912         if (perms & SMB_POSIX_ACL_EXECUTE) {
1913                 permstr[2] = 'x';
1914         }
1915         return permstr;
1916 }
1917
1918 /****************************************************************************
1919  UNIX getfacl.
1920 ****************************************************************************/
1921
1922 static int cmd_getfacl(void)
1923 {
1924         pstring src, name;
1925         uint16 major, minor;
1926         uint32 caplow, caphigh;
1927         char *retbuf = NULL;
1928         size_t rb_size = 0;
1929         SMB_STRUCT_STAT sbuf;
1930         uint16 num_file_acls = 0;
1931         uint16 num_dir_acls = 0;
1932         uint16 i;
1933         struct cli_state *targetcli;
1934         pstring targetname;
1935  
1936         pstrcpy(src,cur_dir);
1937         
1938         if (!next_token_nr(NULL,name,NULL,sizeof(name))) {
1939                 d_printf("stat file\n");
1940                 return 1;
1941         }
1942
1943         pstrcat(src,name);
1944         
1945         if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
1946                 d_printf("stat %s: %s\n", src, cli_errstr(cli));
1947                 return 1;
1948         }
1949         
1950         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
1951                 d_printf("Server doesn't support UNIX CIFS calls.\n");
1952                 return 1;
1953         }
1954         
1955         if (!cli_unix_extensions_version(targetcli, &major, &minor, &caplow, &caphigh)) {
1956                 d_printf("Can't get UNIX CIFS version from server.\n");
1957                 return 1;
1958         }
1959
1960         if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
1961                 d_printf("This server supports UNIX extensions but doesn't support POSIX ACLs.\n");
1962                 return 1;
1963         }
1964
1965
1966         if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
1967                 d_printf("%s getfacl doing a stat on file %s\n",
1968                         cli_errstr(targetcli), src);
1969                 return 1;
1970         } 
1971
1972         if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
1973                 d_printf("%s getfacl file %s\n",
1974                         cli_errstr(targetcli), src);
1975                 return 1;
1976         } 
1977
1978         /* ToDo : Print out the ACL values. */
1979         if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
1980                 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
1981                         src, (unsigned int)CVAL(retbuf,0) );
1982                 SAFE_FREE(retbuf);
1983                 return 1;
1984         }
1985
1986         num_file_acls = SVAL(retbuf,2);
1987         num_dir_acls = SVAL(retbuf,4);
1988         if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
1989                 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
1990                         src,
1991                         (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
1992                         (unsigned int)rb_size);
1993
1994                 SAFE_FREE(retbuf);
1995                 return 1;
1996         }
1997
1998         d_printf("# file: %s\n", src);
1999         d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
2000
2001         if (num_file_acls == 0 && num_dir_acls == 0) {
2002                 d_printf("No acls found.\n");
2003         }
2004
2005         for (i = 0; i < num_file_acls; i++) {
2006                 uint32 uorg;
2007                 fstring permstring;
2008                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
2009                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
2010
2011                 switch(tagtype) {
2012                         case SMB_POSIX_ACL_USER_OBJ:
2013                                 d_printf("user::");
2014                                 break;
2015                         case SMB_POSIX_ACL_USER:
2016                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
2017                                 d_printf("user:%u:", uorg);
2018                                 break;
2019                         case SMB_POSIX_ACL_GROUP_OBJ:
2020                                 d_printf("group::");
2021                                 break;
2022                         case SMB_POSIX_ACL_GROUP:
2023                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
2024                                 d_printf("group:%u", uorg);
2025                                 break;
2026                         case SMB_POSIX_ACL_MASK:
2027                                 d_printf("mask::");
2028                                 break;
2029                         case SMB_POSIX_ACL_OTHER:
2030                                 d_printf("other::");
2031                                 break;
2032                         default:
2033                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
2034                                         src, (unsigned int)tagtype );
2035                                 SAFE_FREE(retbuf);
2036                                 return 1;
2037                 }
2038
2039                 d_printf("%s\n", perms_to_string(permstring, perms));
2040         }
2041
2042         for (i = 0; i < num_dir_acls; i++) {
2043                 uint32 uorg;
2044                 fstring permstring;
2045                 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
2046                 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
2047
2048                 switch(tagtype) {
2049                         case SMB_POSIX_ACL_USER_OBJ:
2050                                 d_printf("default:user::");
2051                                 break;
2052                         case SMB_POSIX_ACL_USER:
2053                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
2054                                 d_printf("default:user:%u:", uorg);
2055                                 break;
2056                         case SMB_POSIX_ACL_GROUP_OBJ:
2057                                 d_printf("default:group::");
2058                                 break;
2059                         case SMB_POSIX_ACL_GROUP:
2060                                 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
2061                                 d_printf("default:group:%u", uorg);
2062                                 break;
2063                         case SMB_POSIX_ACL_MASK:
2064                                 d_printf("default:mask::");
2065                                 break;
2066                         case SMB_POSIX_ACL_OTHER:
2067                                 d_printf("default:other::");
2068                                 break;
2069                         default:
2070                                 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
2071                                         src, (unsigned int)tagtype );
2072                                 SAFE_FREE(retbuf);
2073                                 return 1;
2074                 }
2075
2076                 d_printf("%s\n", perms_to_string(permstring, perms));
2077         }
2078
2079         SAFE_FREE(retbuf);
2080         return 0;
2081 }
2082
2083 /****************************************************************************
2084  UNIX stat.
2085 ****************************************************************************/
2086
2087 static int cmd_stat(void)
2088 {
2089         pstring src, name;
2090         fstring mode_str;
2091         SMB_STRUCT_STAT sbuf;
2092         struct cli_state *targetcli;
2093         pstring targetname;
2094  
2095         if (!SERVER_HAS_UNIX_CIFS(cli)) {
2096                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2097                 return 1;
2098         }
2099
2100         pstrcpy(src,cur_dir);
2101         
2102         if (!next_token_nr(NULL,name,NULL,sizeof(name))) {
2103                 d_printf("stat file\n");
2104                 return 1;
2105         }
2106
2107         pstrcat(src,name);
2108
2109         
2110         if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
2111                 d_printf("stat %s: %s\n", src, cli_errstr(cli));
2112                 return 1;
2113         }
2114         
2115         if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
2116                 d_printf("%s stat file %s\n",
2117                         cli_errstr(targetcli), src);
2118                 return 1;
2119         } 
2120
2121         /* Print out the stat values. */
2122         d_printf("File: %s\n", src);
2123         d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
2124                 (double)sbuf.st_size,
2125                 (unsigned int)sbuf.st_blocks,
2126                 filetype_to_str(sbuf.st_mode));
2127
2128 #if defined(S_ISCHR) && defined(S_ISBLK)
2129         if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
2130                 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
2131                         (double)sbuf.st_ino,
2132                         (unsigned int)sbuf.st_nlink,
2133                         unix_dev_major(sbuf.st_rdev),
2134                         unix_dev_minor(sbuf.st_rdev));
2135         } else 
2136 #endif
2137                 d_printf("Inode: %.0f\tLinks: %u\n",
2138                         (double)sbuf.st_ino,
2139                         (unsigned int)sbuf.st_nlink);
2140
2141         d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
2142                 ((int)sbuf.st_mode & 0777),
2143                 unix_mode_to_str(mode_str, sbuf.st_mode),
2144                 (unsigned int)sbuf.st_uid, 
2145                 (unsigned int)sbuf.st_gid);
2146
2147         strftime(mode_str, sizeof(mode_str), "%F %T %z", localtime(&sbuf.st_atime));
2148         d_printf("Access: %s\n", mode_str);
2149
2150         strftime(mode_str, sizeof(mode_str), "%F %T %z", localtime(&sbuf.st_mtime));
2151         d_printf("Modify: %s\n", mode_str);
2152
2153         strftime(mode_str, sizeof(mode_str), "%F %T %z", localtime(&sbuf.st_ctime));
2154         d_printf("Change: %s\n", mode_str);
2155         
2156         return 0;
2157 }
2158
2159
2160 /****************************************************************************
2161  UNIX chown.
2162 ****************************************************************************/
2163
2164 static int cmd_chown(void)
2165 {
2166         pstring src;
2167         uid_t uid;
2168         gid_t gid;
2169         pstring buf, buf2, buf3;
2170         struct cli_state *targetcli;
2171         pstring targetname;
2172   
2173         pstrcpy(src,cur_dir);
2174         
2175         if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
2176             !next_token_nr(NULL,buf2,NULL, sizeof(buf2)) ||
2177             !next_token_nr(NULL,buf3,NULL, sizeof(buf3))) {
2178                 d_printf("chown uid gid file\n");
2179                 return 1;
2180         }
2181
2182         uid = (uid_t)atoi(buf);
2183         gid = (gid_t)atoi(buf2);
2184         pstrcat(src,buf3);
2185
2186         if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
2187                 d_printf("chown %s: %s\n", src, cli_errstr(cli));
2188                 return 1;
2189         }
2190
2191
2192         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2193                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2194                 return 1;
2195         }
2196         
2197         if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
2198                 d_printf("%s chown file %s uid=%d, gid=%d\n",
2199                         cli_errstr(targetcli), src, (int)uid, (int)gid);
2200                 return 1;
2201         } 
2202
2203         return 0;
2204 }
2205
2206 /****************************************************************************
2207  Rename some file.
2208 ****************************************************************************/
2209
2210 static int cmd_rename(void)
2211 {
2212         pstring src,dest;
2213         pstring buf,buf2;
2214   
2215         pstrcpy(src,cur_dir);
2216         pstrcpy(dest,cur_dir);
2217         
2218         if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
2219             !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
2220                 d_printf("rename <src> <dest>\n");
2221                 return 1;
2222         }
2223
2224         pstrcat(src,buf);
2225         pstrcat(dest,buf2);
2226
2227         if (!cli_rename(cli, src, dest)) {
2228                 d_printf("%s renaming files\n",cli_errstr(cli));
2229                 return 1;
2230         }
2231         
2232         return 0;
2233 }
2234
2235 /****************************************************************************
2236  Hard link files using the NT call.
2237 ****************************************************************************/
2238
2239 static int cmd_hardlink(void)
2240 {
2241         pstring src,dest;
2242         pstring buf,buf2;
2243         struct cli_state *targetcli;
2244         pstring targetname;
2245   
2246         pstrcpy(src,cur_dir);
2247         pstrcpy(dest,cur_dir);
2248         
2249         if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) || 
2250             !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
2251                 d_printf("hardlink <src> <dest>\n");
2252                 return 1;
2253         }
2254
2255         pstrcat(src,buf);
2256         pstrcat(dest,buf2);
2257
2258         if ( !cli_resolve_path( cli, src, &targetcli, targetname ) ) {
2259                 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
2260                 return 1;
2261         }
2262         
2263         if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2264                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2265                 return 1;
2266         }
2267         
2268         if (!cli_nt_hardlink(targetcli, targetname, dest)) {
2269                 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
2270                 return 1;
2271         }
2272         
2273         return 0;
2274 }
2275
2276 /****************************************************************************
2277  Toggle the prompt flag.
2278 ****************************************************************************/
2279
2280 static int cmd_prompt(void)
2281 {
2282         prompt = !prompt;
2283         DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
2284         
2285         return 1;
2286 }
2287
2288 /****************************************************************************
2289  Set the newer than time.
2290 ****************************************************************************/
2291
2292 static int cmd_newer(void)
2293 {
2294         pstring buf;
2295         BOOL ok;
2296         SMB_STRUCT_STAT sbuf;
2297
2298         ok = next_token_nr(NULL,buf,NULL,sizeof(buf));
2299         if (ok && (sys_stat(buf,&sbuf) == 0)) {
2300                 newer_than = sbuf.st_mtime;
2301                 DEBUG(1,("Getting files newer than %s",
2302                          asctime(LocalTime(&newer_than))));
2303         } else {
2304                 newer_than = 0;
2305         }
2306
2307         if (ok && newer_than == 0) {
2308                 d_printf("Error setting newer-than time\n");
2309                 return 1;
2310         }
2311
2312         return 0;
2313 }
2314
2315 /****************************************************************************
2316  Set the archive level.
2317 ****************************************************************************/
2318
2319 static int cmd_archive(void)
2320 {
2321         pstring buf;
2322
2323         if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
2324                 archive_level = atoi(buf);
2325         } else
2326                 d_printf("Archive level is %d\n",archive_level);
2327
2328         return 0;
2329 }
2330
2331 /****************************************************************************
2332  Toggle the lowercaseflag.
2333 ****************************************************************************/
2334
2335 static int cmd_lowercase(void)
2336 {
2337         lowercase = !lowercase;
2338         DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
2339
2340         return 0;
2341 }
2342
2343 /****************************************************************************
2344  Toggle the case sensitive flag.
2345 ****************************************************************************/
2346
2347 static int cmd_setcase(void)
2348 {
2349         BOOL orig_case_sensitive = cli_set_case_sensitive(cli, False);
2350
2351         cli_set_case_sensitive(cli, !orig_case_sensitive);
2352         DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
2353                 "on":"off"));
2354
2355         return 0;
2356 }
2357
2358 /****************************************************************************
2359  Toggle the recurse flag.
2360 ****************************************************************************/
2361
2362 static int cmd_recurse(void)
2363 {
2364         recurse = !recurse;
2365         DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
2366
2367         return 0;
2368 }
2369
2370 /****************************************************************************
2371  Toggle the translate flag.
2372 ****************************************************************************/
2373
2374 static int cmd_translate(void)
2375 {
2376         translation = !translation;
2377         DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
2378                  translation?"on":"off"));
2379
2380         return 0;
2381 }
2382
2383 /****************************************************************************
2384  Do a printmode command.
2385 ****************************************************************************/
2386
2387 static int cmd_printmode(void)
2388 {
2389         fstring buf;
2390         fstring mode;
2391
2392         if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
2393                 if (strequal(buf,"text")) {
2394                         printmode = 0;      
2395                 } else {
2396                         if (strequal(buf,"graphics"))
2397                                 printmode = 1;
2398                         else
2399                                 printmode = atoi(buf);
2400                 }
2401         }
2402
2403         switch(printmode) {
2404                 case 0: 
2405                         fstrcpy(mode,"text");
2406                         break;
2407                 case 1: 
2408                         fstrcpy(mode,"graphics");
2409                         break;
2410                 default: 
2411                         slprintf(mode,sizeof(mode)-1,"%d",printmode);
2412                         break;
2413         }
2414         
2415         DEBUG(2,("the printmode is now %s\n",mode));
2416
2417         return 0;
2418 }
2419
2420 /****************************************************************************
2421  Do the lcd command.
2422  ****************************************************************************/
2423
2424 static int cmd_lcd(void)
2425 {
2426         pstring buf;
2427         pstring d;
2428         
2429         if (next_token_nr(NULL,buf,NULL,sizeof(buf)))
2430                 chdir(buf);
2431         DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
2432
2433         return 0;
2434 }
2435
2436 /****************************************************************************
2437  Get a file restarting at end of local file.
2438  ****************************************************************************/
2439
2440 static int cmd_reget(void)
2441 {
2442         pstring local_name;
2443         pstring remote_name;
2444         char *p;
2445
2446         pstrcpy(remote_name, cur_dir);
2447         pstrcat(remote_name, "\\");
2448         
2449         p = remote_name + strlen(remote_name);
2450         
2451         if (!next_token_nr(NULL, p, NULL, sizeof(remote_name) - strlen(remote_name))) {
2452                 d_printf("reget <filename>\n");
2453                 return 1;
2454         }
2455         pstrcpy(local_name, p);
2456         dos_clean_name(remote_name);
2457         
2458         next_token_nr(NULL, local_name, NULL, sizeof(local_name));
2459         
2460         return do_get(remote_name, local_name, True);
2461 }
2462
2463 /****************************************************************************
2464  Put a file restarting at end of local file.
2465  ****************************************************************************/
2466
2467 static int cmd_reput(void)
2468 {
2469         pstring local_name;
2470         pstring remote_name;
2471         pstring buf;
2472         char *p = buf;
2473         SMB_STRUCT_STAT st;
2474         
2475         pstrcpy(remote_name, cur_dir);
2476         pstrcat(remote_name, "\\");
2477   
2478         if (!next_token_nr(NULL, p, NULL, sizeof(buf))) {
2479                 d_printf("reput <filename>\n");
2480                 return 1;
2481         }
2482         pstrcpy(local_name, p);
2483   
2484         if (!file_exist(local_name, &st)) {
2485                 d_printf("%s does not exist\n", local_name);
2486                 return 1;
2487         }
2488
2489         if (next_token_nr(NULL, p, NULL, sizeof(buf)))
2490                 pstrcat(remote_name, p);
2491         else
2492                 pstrcat(remote_name, local_name);
2493         
2494         dos_clean_name(remote_name);
2495
2496         return do_put(remote_name, local_name, True);
2497 }
2498
2499 /****************************************************************************
2500  List a share name.
2501  ****************************************************************************/
2502
2503 static void browse_fn(const char *name, uint32 m, 
2504                       const char *comment, void *state)
2505 {
2506         fstring typestr;
2507
2508         *typestr=0;
2509
2510         switch (m)
2511         {
2512           case STYPE_DISKTREE:
2513             fstrcpy(typestr,"Disk"); break;
2514           case STYPE_PRINTQ:
2515             fstrcpy(typestr,"Printer"); break;
2516           case STYPE_DEVICE:
2517             fstrcpy(typestr,"Device"); break;
2518           case STYPE_IPC:
2519             fstrcpy(typestr,"IPC"); break;
2520         }
2521         /* FIXME: If the remote machine returns non-ascii characters
2522            in any of these fields, they can corrupt the output.  We
2523            should remove them. */
2524         if (!grepable) {
2525                 d_printf("\t%-15s %-10.10s%s\n",
2526                         name,typestr,comment);
2527         } else {
2528                 d_printf ("%s|%s|%s\n",typestr,name,comment);
2529         }
2530 }
2531
2532 /****************************************************************************
2533  Try and browse available connections on a host.
2534 ****************************************************************************/
2535
2536 static BOOL browse_host(BOOL sort)
2537 {
2538         int ret;
2539         if (!grepable) {
2540                 d_printf("\n\tSharename       Type      Comment\n");
2541                 d_printf("\t---------       ----      -------\n");
2542         }
2543
2544         if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
2545                 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
2546
2547         return (ret != -1);
2548 }
2549
2550 /****************************************************************************
2551  List a server name.
2552 ****************************************************************************/
2553
2554 static void server_fn(const char *name, uint32 m, 
2555                       const char *comment, void *state)
2556 {
2557         
2558         if (!grepable){
2559                 d_printf("\t%-16s     %s\n", name, comment);
2560         } else {
2561                 d_printf("%s|%s|%s\n",(char *)state, name, comment);
2562         }
2563 }
2564
2565 /****************************************************************************
2566  Try and browse available connections on a host.
2567 ****************************************************************************/
2568
2569 static BOOL list_servers(const char *wk_grp)
2570 {
2571         fstring state;
2572
2573         if (!cli->server_domain)
2574                 return False;
2575
2576         if (!grepable) {
2577                 d_printf("\n\tServer               Comment\n");
2578                 d_printf("\t---------            -------\n");
2579         };
2580         fstrcpy( state, "Server" );
2581         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
2582                           state);
2583
2584         if (!grepable) {
2585                 d_printf("\n\tWorkgroup            Master\n");
2586                 d_printf("\t---------            -------\n");
2587         }; 
2588
2589         fstrcpy( state, "Workgroup" );
2590         cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
2591                           server_fn, state);
2592         return True;
2593 }
2594
2595 /****************************************************************************
2596  Print or set current VUID
2597 ****************************************************************************/
2598
2599 static int cmd_vuid(void)
2600 {
2601         fstring buf;
2602         
2603         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
2604                 d_printf("Current VUID is %d\n", cli->vuid);
2605                 return 0;
2606         }
2607
2608         cli->vuid = atoi(buf);
2609         return 0;
2610 }
2611
2612 /****************************************************************************
2613  Setup a new VUID, by issuing a session setup
2614 ****************************************************************************/
2615
2616 static int cmd_logon(void)
2617 {
2618         pstring l_username, l_password;
2619         pstring buf,buf2;
2620   
2621         if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
2622                 d_printf("logon <username> [<password>]\n");
2623                 return 0;
2624         }
2625
2626         pstrcpy(l_username, buf);
2627
2628         if (!next_token_nr(NULL,buf2,NULL,sizeof(buf))) 
2629         {
2630                 char *pass = getpass("Password: ");
2631                 if (pass) 
2632                         pstrcpy(l_password, pass);
2633         } 
2634         else
2635                 pstrcpy(l_password, buf2);
2636
2637         if (!cli_session_setup(cli, l_username, 
2638                                l_password, strlen(l_password),
2639                                l_password, strlen(l_password),
2640                                lp_workgroup())) {
2641                 d_printf("session setup failed: %s\n", cli_errstr(cli));
2642                 return -1;
2643         }
2644
2645         d_printf("Current VUID is %d\n", cli->vuid);
2646         return 0;
2647 }
2648
2649
2650 /****************************************************************************
2651  list active connections
2652 ****************************************************************************/
2653
2654 static int cmd_list_connect(void)
2655 {
2656         cli_cm_display();
2657
2658         return 0;
2659 }
2660
2661 /****************************************************************************
2662  display the current active client connection
2663 ****************************************************************************/
2664
2665 static int cmd_show_connect( void )
2666 {
2667         struct cli_state *targetcli;
2668         pstring targetpath;
2669         
2670         if ( !cli_resolve_path( cli, cur_dir, &targetcli, targetpath ) ) {
2671                 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
2672                 return 1;
2673         }
2674         
2675         d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
2676         return 0;
2677 }
2678
2679 /* Some constants for completing filename arguments */
2680
2681 #define COMPL_NONE        0          /* No completions */
2682 #define COMPL_REMOTE      1          /* Complete remote filename */
2683 #define COMPL_LOCAL       2          /* Complete local filename */
2684
2685 /* This defines the commands supported by this client.
2686  * NOTE: The "!" must be the last one in the list because it's fn pointer
2687  *       field is NULL, and NULL in that field is used in process_tok()
2688  *       (below) to indicate the end of the list.  crh
2689  */
2690 static struct
2691 {
2692   const char *name;
2693   int (*fn)(void);
2694   const char *description;
2695   char compl_args[2];      /* Completion argument info */
2696 } commands[] = {
2697   {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2698   {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
2699   {"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}},
2700   {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
2701   {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
2702   {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
2703   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
2704   {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
2705   {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
2706   {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2707   {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2708   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2709   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2710   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
2711   {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
2712   {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
2713   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2714   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
2715   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
2716   {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
2717   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},  
2718   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2719   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
2720   {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2721   {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
2722   {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2723   {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},  
2724   {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
2725   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
2726   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
2727   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
2728   {"printmode",cmd_printmode,"<graphics or text> set the print mode",{COMPL_NONE,COMPL_NONE}},
2729   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},  
2730   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
2731   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
2732   {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2733   {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
2734   {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2735   {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2736   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},  
2737   {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
2738   {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
2739   {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
2740   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2741   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2742   {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
2743   {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
2744   {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
2745   {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
2746   {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
2747   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
2748   {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
2749   {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
2750   {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
2751   {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
2752   
2753   /* Yes, this must be here, see crh's comment above. */
2754   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
2755   {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
2756 };
2757
2758 /*******************************************************************
2759  Lookup a command string in the list of commands, including 
2760  abbreviations.
2761 ******************************************************************/
2762
2763 static int process_tok(pstring tok)
2764 {
2765         int i = 0, matches = 0;
2766         int cmd=0;
2767         int tok_len = strlen(tok);
2768         
2769         while (commands[i].fn != NULL) {
2770                 if (strequal(commands[i].name,tok)) {
2771                         matches = 1;
2772                         cmd = i;
2773                         break;
2774                 } else if (strnequal(commands[i].name, tok, tok_len)) {
2775                         matches++;
2776                         cmd = i;
2777                 }
2778                 i++;
2779         }
2780   
2781         if (matches == 0)
2782                 return(-1);
2783         else if (matches == 1)
2784                 return(cmd);
2785         else
2786                 return(-2);
2787 }
2788
2789 /****************************************************************************
2790  Help.
2791 ****************************************************************************/
2792
2793 static int cmd_help(void)
2794 {
2795         int i=0,j;
2796         pstring buf;
2797         
2798         if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
2799                 if ((i = process_tok(buf)) >= 0)
2800                         d_printf("HELP %s:\n\t%s\n\n",commands[i].name,commands[i].description);
2801         } else {
2802                 while (commands[i].description) {
2803                         for (j=0; commands[i].description && (j<5); j++) {
2804                                 d_printf("%-15s",commands[i].name);
2805                                 i++;
2806                         }
2807                         d_printf("\n");
2808                 }
2809         }
2810         return 0;
2811 }
2812
2813 /****************************************************************************
2814  Process a -c command string.
2815 ****************************************************************************/
2816
2817 static int process_command_string(char *cmd)
2818 {
2819         pstring line;
2820         const char *ptr;
2821         int rc = 0;
2822
2823         /* establish the connection if not already */
2824         
2825         if (!cli) {
2826                 cli = cli_cm_open(desthost, service, True);
2827                 if (!cli)
2828                         return 0;
2829         }
2830         
2831         while (cmd[0] != '\0')    {
2832                 char *p;
2833                 pstring tok;
2834                 int i;
2835                 
2836                 if ((p = strchr_m(cmd, ';')) == 0) {
2837                         strncpy(line, cmd, 999);
2838                         line[1000] = '\0';
2839                         cmd += strlen(cmd);
2840                 } else {
2841                         if (p - cmd > 999)
2842                                 p = cmd + 999;
2843                         strncpy(line, cmd, p - cmd);
2844                         line[p - cmd] = '\0';
2845                         cmd = p + 1;
2846                 }
2847                 
2848                 /* and get the first part of the command */
2849                 ptr = line;
2850                 if (!next_token_nr(&ptr,tok,NULL,sizeof(tok))) continue;
2851                 
2852                 if ((i = process_tok(tok)) >= 0) {
2853                         rc = commands[i].fn();
2854                 } else if (i == -2) {
2855                         d_printf("%s: command abbreviation ambiguous\n",tok);
2856                 } else {
2857                         d_printf("%s: command not found\n",tok);
2858                 }
2859         }
2860         
2861         return rc;
2862 }       
2863
2864 #define MAX_COMPLETIONS 100
2865
2866 typedef struct {
2867         pstring dirmask;
2868         char **matches;
2869         int count, samelen;
2870         const char *text;
2871         int len;
2872 } completion_remote_t;
2873
2874 static void completion_remote_filter(file_info *f, const char *mask, void *state)
2875 {
2876         completion_remote_t *info = (completion_remote_t *)state;
2877
2878         if ((info->count < MAX_COMPLETIONS - 1) && (strncmp(info->text, f->name, info->len) == 0) && (strcmp(f->name, ".") != 0) && (strcmp(f->name, "..") != 0)) {
2879                 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
2880                         info->matches[info->count] = SMB_STRDUP(f->name);
2881                 else {
2882                         pstring tmp;
2883
2884                         if (info->dirmask[0] != 0)
2885                                 pstrcpy(tmp, info->dirmask);
2886                         else
2887                                 tmp[0] = 0;
2888                         pstrcat(tmp, f->name);
2889                         if (f->mode & aDIR)
2890                                 pstrcat(tmp, "/");
2891                         info->matches[info->count] = SMB_STRDUP(tmp);
2892                 }
2893                 if (info->matches[info->count] == NULL)
2894                         return;
2895                 if (f->mode & aDIR)
2896                         smb_readline_ca_char(0);
2897
2898                 if (info->count == 1)
2899                         info->samelen = strlen(info->matches[info->count]);
2900                 else
2901                         while (strncmp(info->matches[info->count], info->matches[info->count-1], info->samelen) != 0)
2902                                 info->samelen--;
2903                 info->count++;
2904         }
2905 }
2906
2907 static char **remote_completion(const char *text, int len)
2908 {
2909         pstring dirmask;
2910         int i;
2911         completion_remote_t info = { "", NULL, 1, 0, NULL, 0 };
2912
2913         /* can't have non-static intialisation on Sun CC, so do it
2914            at run time here */
2915         info.samelen = len;
2916         info.text = text;
2917         info.len = len;
2918                 
2919         if (len >= PATH_MAX)
2920                 return(NULL);
2921
2922         info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
2923         if (!info.matches) return NULL;
2924         info.matches[0] = NULL;
2925
2926         for (i = len-1; i >= 0; i--)
2927                 if ((text[i] == '/') || (text[i] == '\\'))
2928                         break;
2929         info.text = text+i+1;
2930         info.samelen = info.len = len-i-1;
2931
2932         if (i > 0) {
2933                 strncpy(info.dirmask, text, i+1);
2934                 info.dirmask[i+1] = 0;
2935                 pstr_sprintf(dirmask, "%s%*s*", cur_dir, i-1, text);
2936         } else
2937                 pstr_sprintf(dirmask, "%s*", cur_dir);
2938
2939         if (cli_list(cli, dirmask, aDIR | aSYSTEM | aHIDDEN, completion_remote_filter, &info) < 0)
2940                 goto cleanup;
2941
2942         if (info.count == 2)
2943                 info.matches[0] = SMB_STRDUP(info.matches[1]);
2944         else {
2945                 info.matches[0] = SMB_MALLOC(info.samelen+1);
2946                 if (!info.matches[0])
2947                         goto cleanup;
2948                 strncpy(info.matches[0], info.matches[1], info.samelen);
2949                 info.matches[0][info.samelen] = 0;
2950         }
2951         info.matches[info.count] = NULL;
2952         return info.matches;
2953
2954 cleanup:
2955         for (i = 0; i < info.count; i++)
2956                 free(info.matches[i]);
2957         free(info.matches);
2958         return NULL;
2959 }
2960
2961 static char **completion_fn(const char *text, int start, int end)
2962 {
2963         smb_readline_ca_char(' ');
2964
2965         if (start) {
2966                 const char *buf, *sp;
2967                 int i;
2968                 char compl_type;
2969
2970                 buf = smb_readline_get_line_buffer();
2971                 if (buf == NULL)
2972                         return NULL;
2973                 
2974                 sp = strchr(buf, ' ');
2975                 if (sp == NULL)
2976                         return NULL;
2977                 
2978                 for (i = 0; commands[i].name; i++)
2979                         if ((strncmp(commands[i].name, text, sp - buf) == 0) && (commands[i].name[sp - buf] == 0))
2980                                 break;
2981                 if (commands[i].name == NULL)
2982                         return NULL;
2983
2984                 while (*sp == ' ')
2985                         sp++;
2986
2987                 if (sp == (buf + start))
2988                         compl_type = commands[i].compl_args[0];
2989                 else
2990                         compl_type = commands[i].compl_args[1];
2991
2992                 if (compl_type == COMPL_REMOTE)
2993                         return remote_completion(text, end - start);
2994                 else /* fall back to local filename completion */
2995                         return NULL;
2996         } else {
2997                 char **matches;
2998                 int i, len, samelen = 0, count=1;
2999
3000                 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
3001                 if (!matches) {
3002                         return NULL;
3003                 }
3004                 matches[0] = NULL;
3005
3006                 len = strlen(text);
3007                 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
3008                         if (strncmp(text, commands[i].name, len) == 0) {
3009                                 matches[count] = SMB_STRDUP(commands[i].name);
3010                                 if (!matches[count])
3011                                         goto cleanup;
3012                                 if (count == 1)
3013                                         samelen = strlen(matches[count]);
3014                                 else
3015                                         while (strncmp(matches[count], matches[count-1], samelen) != 0)
3016                                                 samelen--;
3017                                 count++;
3018                         }
3019                 }
3020
3021                 switch (count) {
3022                 case 0: /* should never happen */
3023                 case 1:
3024                         goto cleanup;
3025                 case 2:
3026                         matches[0] = SMB_STRDUP(matches[1]);
3027                         break;
3028                 default:
3029                         matches[0] = SMB_MALLOC(samelen+1);
3030                         if (!matches[0])
3031                                 goto cleanup;
3032                         strncpy(matches[0], matches[1], samelen);
3033                         matches[0][samelen] = 0;
3034                 }
3035                 matches[count] = NULL;
3036                 return matches;
3037
3038 cleanup:
3039                 for (i = 0; i < count; i++)
3040                         free(matches[i]);
3041
3042                 free(matches);
3043                 return NULL;
3044         }
3045 }
3046
3047 /****************************************************************************
3048  Make sure we swallow keepalives during idle time.
3049 ****************************************************************************/
3050
3051 static void readline_callback(void)
3052 {
3053         fd_set fds;
3054         struct timeval timeout;
3055         static time_t last_t;
3056         time_t t;
3057
3058         t = time(NULL);
3059
3060         if (t - last_t < 5)
3061                 return;
3062
3063         last_t = t;
3064
3065  again:
3066
3067         if (cli->fd == -1)
3068                 return;
3069
3070         FD_ZERO(&fds);
3071         FD_SET(cli->fd,&fds);
3072
3073         timeout.tv_sec = 0;
3074         timeout.tv_usec = 0;
3075         sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
3076                 
3077         /* We deliberately use receive_smb instead of
3078            client_receive_smb as we want to receive
3079            session keepalives and then drop them here.
3080         */
3081         if (FD_ISSET(cli->fd,&fds)) {
3082                 receive_smb(cli->fd,cli->inbuf,0);
3083                 goto again;
3084         }
3085       
3086         cli_chkpath(cli, "\\");
3087 }
3088
3089 /****************************************************************************
3090  Process commands on stdin.
3091 ****************************************************************************/
3092
3093 static int process_stdin(void)
3094 {
3095         const char *ptr;
3096         int rc = 0;
3097
3098         while (1) {
3099                 pstring tok;
3100                 pstring the_prompt;
3101                 char *cline;
3102                 pstring line;
3103                 int i;
3104                 
3105                 /* display a prompt */
3106                 slprintf(the_prompt, sizeof(the_prompt)-1, "smb: %s> ", cur_dir);
3107                 cline = smb_readline(the_prompt, readline_callback, completion_fn);
3108                         
3109                 if (!cline) break;
3110                 
3111                 pstrcpy(line, cline);
3112
3113                 /* special case - first char is ! */
3114                 if (*line == '!') {
3115                         system(line + 1);
3116                         continue;
3117                 }
3118       
3119                 /* and get the first part of the command */
3120                 ptr = line;
3121                 if (!next_token_nr(&ptr,tok,NULL,sizeof(tok))) continue;
3122
3123                 if ((i = process_tok(tok)) >= 0) {
3124                         rc = commands[i].fn();
3125                 } else if (i == -2) {
3126                         d_printf("%s: command abbreviation ambiguous\n",tok);
3127                 } else {
3128                         d_printf("%s: command not found\n",tok);
3129                 }
3130         }
3131         return rc;
3132 }
3133
3134 /****************************************************************************
3135  Process commands from the client.
3136 ****************************************************************************/
3137
3138 static int process(char *base_directory)
3139 {
3140         int rc = 0;
3141
3142         cli = cli_cm_open(desthost, service, True);
3143         if (!cli) {
3144                 return 1;
3145         }
3146
3147         if (*base_directory) do_cd(base_directory);
3148         
3149         if (cmdstr) {
3150                 rc = process_command_string(cmdstr);
3151         } else {
3152                 process_stdin();
3153         }
3154   
3155         cli_cm_shutdown();
3156         return rc;
3157 }
3158
3159 /****************************************************************************
3160  Handle a -L query.
3161 ****************************************************************************/
3162
3163 static int do_host_query(char *query_host)
3164 {
3165         cli = cli_cm_open(query_host, "IPC$", True);
3166         if (!cli)
3167                 return 1;
3168
3169         browse_host(True);
3170
3171         if (port != 139) {
3172
3173                 /* Workgroups simply don't make sense over anything
3174                    else but port 139... */
3175
3176                 cli_cm_shutdown();
3177                 cli_cm_set_port( 139 );
3178                 cli = cli_cm_open(query_host, "IPC$", True);
3179         }
3180
3181         if (cli == NULL) {
3182                 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
3183                 return 1;
3184         }
3185
3186         list_servers(lp_workgroup());
3187
3188         cli_cm_shutdown();
3189         
3190         return(0);
3191 }
3192
3193 /****************************************************************************
3194  Handle a tar operation.
3195 ****************************************************************************/
3196
3197 static int do_tar_op(char *base_directory)
3198 {
3199         int ret;
3200
3201         /* do we already have a connection? */
3202         if (!cli) {
3203                 cli = cli_cm_open(desthost, service, True);
3204                 if (!cli)
3205                         return 1;
3206         }
3207
3208         recurse=True;
3209
3210         if (*base_directory) do_cd(base_directory);
3211         
3212         ret=process_tar();
3213
3214         cli_cm_shutdown();
3215
3216         return(ret);
3217 }
3218
3219 /****************************************************************************
3220  Handle a message operation.
3221 ****************************************************************************/
3222
3223 static int do_message_op(void)
3224 {
3225         struct in_addr ip;
3226         struct nmb_name called, calling;
3227         fstring server_name;
3228         char name_type_hex[10];
3229
3230         make_nmb_name(&calling, calling_name, 0x0);
3231         make_nmb_name(&called , desthost, name_type);
3232
3233         fstrcpy(server_name, desthost);
3234         snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
3235         fstrcat(server_name, name_type_hex);
3236
3237         zero_ip(&ip);
3238         if (have_ip) 
3239                 ip = dest_ip;
3240
3241         if (!(cli=cli_initialise(NULL)) || (cli_set_port(cli, port) != port) ||
3242             !cli_connect(cli, server_name, &ip)) {
3243                 d_printf("Connection to %s failed\n", desthost);
3244                 return 1;
3245         }
3246
3247         if (!cli_session_request(cli, &calling, &called)) {
3248                 d_printf("session request failed\n");
3249                 cli_cm_shutdown();
3250                 return 1;
3251         }
3252
3253         send_message();
3254         cli_cm_shutdown();
3255
3256         return 0;
3257 }
3258
3259
3260 /****************************************************************************
3261   main program
3262 ****************************************************************************/
3263
3264  int main(int argc,char *argv[])
3265 {
3266         extern BOOL AllowDebugChange;
3267         extern BOOL override_logfile;
3268         pstring base_directory;
3269         int opt;
3270         pstring query_host;
3271         BOOL message = False;
3272         extern char tar_type;
3273         pstring term_code;
3274         static const char *new_name_resolve_order = NULL;
3275         poptContext pc;
3276         char *p;
3277         int rc = 0;
3278         fstring new_workgroup;
3279         struct poptOption long_options[] = {
3280                 POPT_AUTOHELP
3281
3282                 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
3283                 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
3284                 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
3285                 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
3286                 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
3287                 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
3288                 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
3289                 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
3290                 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
3291                 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" }, 
3292                 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
3293                 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
3294                 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
3295                 POPT_COMMON_SAMBA
3296                 POPT_COMMON_CONNECTION
3297                 POPT_COMMON_CREDENTIALS
3298                 POPT_TABLEEND
3299         };
3300         
3301
3302 #ifdef KANJI
3303         pstrcpy(term_code, KANJI);
3304 #else /* KANJI */
3305         *term_code = 0;
3306 #endif /* KANJI */
3307
3308         *query_host = 0;
3309         *base_directory = 0;
3310         
3311         /* initialize the workgroup name so we can determine whether or 
3312            not it was set by a command line option */
3313            
3314         set_global_myworkgroup( "" );
3315         set_global_myname( "" );
3316
3317         /* set default debug level to 0 regardless of what smb.conf sets */
3318         setup_logging( "smbclient", True );
3319         DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
3320         dbf = x_stderr;
3321         x_setbuf( x_stderr, NULL );
3322
3323         pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 
3324                                 POPT_CONTEXT_KEEP_FIRST);
3325         poptSetOtherOptionHelp(pc, "service <password>");
3326
3327         in_client = True;   /* Make sure that we tell lp_load we are */
3328
3329         while ((opt = poptGetNextOpt(pc)) != -1) {
3330                 switch (opt) {
3331                 case 'M':
3332                         /* Messages are sent to NetBIOS name type 0x3
3333                          * (Messenger Service).  Make sure we default
3334                          * to port 139 instead of port 445. srl,crh
3335                          */
3336                         name_type = 0x03; 
3337                         cli_cm_set_dest_name_type( name_type );
3338                         pstrcpy(desthost,poptGetOptArg(pc));
3339                         if( !port )
3340                                 cli_cm_set_port( 139 );
3341                         message = True;
3342                         break;
3343                 case 'I':
3344                         {
3345                                 dest_ip = *interpret_addr2(poptGetOptArg(pc));
3346                                 if (is_zero_ip(dest_ip))
3347                                         exit(1);
3348                                 have_ip = True;
3349
3350                                 cli_cm_set_dest_ip( dest_ip );
3351                         }
3352                         break;
3353                 case 'E':
3354                         dbf = x_stderr;
3355                         display_set_stderr();
3356                         break;
3357
3358                 case 'L':
3359                         pstrcpy(query_host, poptGetOptArg(pc));
3360                         break;
3361                 case 't':
3362                         pstrcpy(term_code, poptGetOptArg(pc));
3363                         break;
3364                 case 'm':
3365                         max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
3366                         break;
3367                 case 'T':
3368                         /* We must use old option processing for this. Find the
3369                          * position of the -T option in the raw argv[]. */
3370                         {
3371                                 int i, optnum;
3372                                 for (i = 1; i < argc; i++) {
3373                                         if (strncmp("-T", argv[i],2)==0)
3374                                                 break;
3375                                 }
3376                                 i++;
3377                                 if (!(optnum = tar_parseargs(argc, argv, poptGetOptArg(pc), i))) {
3378                                         poptPrintUsage(pc, stderr, 0);
3379                                         exit(1);
3380                                 }
3381                                 /* Now we must eat (optnum - i) options - they have
3382                                  * been processed by tar_parseargs().
3383                                  */
3384                                 optnum -= i;
3385                                 for (i = 0; i < optnum; i++)
3386                                         poptGetOptArg(pc);
3387                         }
3388                         break;
3389                 case 'D':
3390                         pstrcpy(base_directory,poptGetOptArg(pc));
3391                         break;
3392                 case 'g':
3393                         grepable=True;
3394                         break;
3395                 }
3396         }
3397
3398         poptGetArg(pc);
3399
3400         if ( have_ip )
3401         
3402         /*
3403          * Don't load debug level from smb.conf. It should be
3404          * set by cmdline arg or remain default (0)
3405          */
3406         AllowDebugChange = False;
3407         
3408         /* save the workgroup...
3409         
3410            FIXME!! do we need to do this for other options as well 
3411            (or maybe a generic way to keep lp_load() from overwriting 
3412            everything)?  */
3413         
3414         fstrcpy( new_workgroup, lp_workgroup() );
3415         pstrcpy( calling_name, global_myname() );
3416         
3417         if ( override_logfile )
3418                 setup_logging( lp_logfile(), False );
3419         
3420         if (!lp_load(dyn_CONFIGFILE,True,False,False)) {
3421                 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
3422                         argv[0], dyn_CONFIGFILE);
3423         }
3424         
3425         load_interfaces();
3426         
3427         if ( strlen(new_workgroup) != 0 )
3428                 set_global_myworkgroup( new_workgroup );
3429
3430         if ( strlen(calling_name) != 0 )
3431                 set_global_myname( calling_name );
3432
3433         if(poptPeekArg(pc)) {
3434                 pstrcpy(service,poptGetArg(pc));  
3435                 /* Convert any '/' characters in the service name to '\' characters */
3436                 string_replace(service, '/','\\');
3437
3438                 if (count_chars(service,'\\') < 3) {
3439                         d_printf("\n%s: Not enough '\\' characters in service\n",service);
3440                         poptPrintUsage(pc, stderr, 0);
3441                         exit(1);
3442                 }
3443         }
3444
3445         if (poptPeekArg(pc) && !cmdline_auth_info.got_pass) { 
3446                 cmdline_auth_info.got_pass = True;
3447                 pstrcpy(cmdline_auth_info.password,poptGetArg(pc));  
3448         }
3449
3450         init_names();
3451
3452         if(new_name_resolve_order)
3453                 lp_set_name_resolve_order(new_name_resolve_order);
3454
3455         if (!tar_type && !*query_host && !*service && !message) {
3456                 poptPrintUsage(pc, stderr, 0);
3457                 exit(1);
3458         }
3459
3460         poptFreeContext(pc);
3461
3462         /* store the username an password for dfs support */
3463
3464         cli_cm_set_credentials( &cmdline_auth_info );
3465         pstrcpy(username, cmdline_auth_info.username);
3466
3467         DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
3468
3469         if (tar_type) {
3470                 if (cmdstr)
3471                         process_command_string(cmdstr);
3472                 return do_tar_op(base_directory);
3473         }
3474
3475         if (*query_host) {
3476                 char *qhost = query_host;
3477                 char *slash;
3478
3479                 while (*qhost == '\\' || *qhost == '/')
3480                         qhost++;
3481
3482                 if ((slash = strchr_m(qhost, '/'))
3483                     || (slash = strchr_m(qhost, '\\'))) {
3484                         *slash = 0;
3485                 }
3486
3487                 if ((p=strchr_m(qhost, '#'))) {
3488                         *p = 0;
3489                         p++;
3490                         sscanf(p, "%x", &name_type);
3491                         cli_cm_set_dest_name_type( name_type );
3492                 }
3493
3494                 return do_host_query(qhost);
3495         }
3496
3497         if (message) {
3498                 return do_message_op();
3499         }
3500         
3501         if (process(base_directory)) {
3502                 return 1;
3503         }
3504
3505         return rc;
3506 }