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