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