display shadow copy information in 'allinfo'
[samba-svnmirror.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-2004
7    Copyright (C) James J Myers   2003 <myersjj@samba.org>
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 "version.h"
26 #include "libcli/libcli.h"
27 #include "lib/cmdline/popt_common.h"
28 #include "librpc/gen_ndr/ndr_srvsvc_c.h"
29 #include "librpc/gen_ndr/ndr_lsa.h"
30 #include "librpc/gen_ndr/ndr_security.h"
31 #include "libcli/raw/libcliraw.h"
32 #include "libcli/util/clilsa.h"
33 #include "system/dir.h"
34 #include "system/filesys.h"
35 #include "lib/util/dlinklist.h"
36 #include "system/readline.h"
37 #include "auth/credentials/credentials.h"
38 #include "auth/gensec/gensec.h"
39 #include "system/time.h" /* needed by some systems for asctime() */
40 #include "libcli/resolve/resolve.h"
41 #include "libcli/security/security.h"
42 #include "lib/smbreadline/smbreadline.h"
43 #include "librpc/gen_ndr/ndr_nbt.h"
44
45 static int io_bufsize = 64512;
46
47 struct smbclient_context {
48         char *remote_cur_dir;
49         struct smbcli_state *cli;
50         char *fileselection;
51         time_t newer_than;
52         BOOL prompt;
53         BOOL recurse;
54         int archive_level;
55         BOOL lowercase;
56         int printmode;
57         BOOL translation;
58 };
59
60 /* timing globals */
61 static uint64_t get_total_size = 0;
62 static uint_t get_total_time_ms = 0;
63 static uint64_t put_total_size = 0;
64 static uint_t put_total_time_ms = 0;
65
66 /* Unfortunately, there is no way to pass the a context to the completion function as an argument */
67 static struct smbclient_context *rl_ctx; 
68
69 /* totals globals */
70 static double dir_total;
71
72 /*******************************************************************
73  Reduce a file name, removing .. elements.
74 ********************************************************************/
75 void dos_clean_name(char *s)
76 {
77         char *p=NULL,*r;
78
79         DEBUG(3,("dos_clean_name [%s]\n",s));
80
81         /* remove any double slashes */
82         all_string_sub(s, "\\\\", "\\", 0);
83
84         while ((p = strstr(s,"\\..\\")) != NULL) {
85                 *p = '\0';
86                 if ((r = strrchr(s,'\\')) != NULL)
87                         memmove(r,p+3,strlen(p+3)+1);
88         }
89
90         trim_string(s,NULL,"\\..");
91
92         all_string_sub(s, "\\.\\", "\\", 0);
93 }
94
95 /****************************************************************************
96 write to a local file with CR/LF->LF translation if appropriate. return the 
97 number taken from the buffer. This may not equal the number written.
98 ****************************************************************************/
99 static int writefile(int f, const void *_b, int n, BOOL translation)
100 {
101         const uint8_t *b = _b;
102         int i;
103
104         if (!translation) {
105                 return write(f,b,n);
106         }
107
108         i = 0;
109         while (i < n) {
110                 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
111                         b++;i++;
112                 }
113                 if (write(f, b, 1) != 1) {
114                         break;
115                 }
116                 b++;
117                 i++;
118         }
119   
120         return(i);
121 }
122
123 /****************************************************************************
124   read from a file with LF->CR/LF translation if appropriate. return the 
125   number read. read approx n bytes.
126 ****************************************************************************/
127 static int readfile(void *_b, int n, XFILE *f, BOOL translation)
128 {
129         uint8_t *b = _b;
130         int i;
131         int c;
132
133         if (!translation)
134                 return x_fread(b,1,n,f);
135   
136         i = 0;
137         while (i < (n - 1)) {
138                 if ((c = x_getc(f)) == EOF) {
139                         break;
140                 }
141       
142                 if (c == '\n') { /* change all LFs to CR/LF */
143                         b[i++] = '\r';
144                 }
145       
146                 b[i++] = c;
147         }
148   
149         return(i);
150 }
151  
152
153 /****************************************************************************
154 send a message
155 ****************************************************************************/
156 static void send_message(struct smbcli_state *cli, const char *desthost)
157 {
158         char msg[1600];
159         int total_len = 0;
160         int grp_id;
161
162         if (!smbcli_message_start(cli->tree, desthost, cli_credentials_get_username(cmdline_credentials), &grp_id)) {
163                 d_printf("message start: %s\n", smbcli_errstr(cli->tree));
164                 return;
165         }
166
167
168         d_printf("Connected. Type your message, ending it with a Control-D\n");
169
170         while (!feof(stdin) && total_len < 1600) {
171                 int maxlen = MIN(1600 - total_len,127);
172                 int l=0;
173                 int c;
174
175                 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
176                         if (c == '\n')
177                                 msg[l++] = '\r';
178                         msg[l] = c;   
179                 }
180
181                 if (!smbcli_message_text(cli->tree, msg, l, grp_id)) {
182                         d_printf("SMBsendtxt failed (%s)\n",smbcli_errstr(cli->tree));
183                         return;
184                 }      
185                 
186                 total_len += l;
187         }
188
189         if (total_len >= 1600)
190                 d_printf("the message was truncated to 1600 bytes\n");
191         else
192                 d_printf("sent %d bytes\n",total_len);
193
194         if (!smbcli_message_end(cli->tree, grp_id)) {
195                 d_printf("SMBsendend failed (%s)\n",smbcli_errstr(cli->tree));
196                 return;
197         }      
198 }
199
200
201
202 /****************************************************************************
203 check the space on a device
204 ****************************************************************************/
205 static int do_dskattr(struct smbclient_context *ctx)
206 {
207         int total, bsize, avail;
208
209         if (NT_STATUS_IS_ERR(smbcli_dskattr(ctx->cli->tree, &bsize, &total, &avail))) {
210                 d_printf("Error in dskattr: %s\n",smbcli_errstr(ctx->cli->tree)); 
211                 return 1;
212         }
213
214         d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
215                  total, bsize, avail);
216
217         return 0;
218 }
219
220 /****************************************************************************
221 show cd/pwd
222 ****************************************************************************/
223 static int cmd_pwd(struct smbclient_context *ctx, const char **args)
224 {
225         d_printf("Current directory is %s\n", ctx->remote_cur_dir);
226         return 0;
227 }
228
229 /*
230   convert a string to dos format
231 */
232 static void dos_format(char *s)
233 {
234         string_replace(s, '/', '\\');
235 }
236
237 /****************************************************************************
238 change directory - inner section
239 ****************************************************************************/
240 static int do_cd(struct smbclient_context *ctx, const char *newdir)
241 {
242         char *dname;
243       
244         /* Save the current directory in case the
245            new directory is invalid */
246         if (newdir[0] == '\\')
247                 dname = talloc_strdup(NULL, newdir);
248         else
249                 dname = talloc_asprintf(NULL, "%s\\%s", ctx->remote_cur_dir, newdir);
250
251         dos_format(dname);
252
253         if (*(dname+strlen(dname)-1) != '\\') {
254                 dname = talloc_append_string(NULL, dname, "\\");
255         }
256         dos_clean_name(dname);
257         
258         if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx->cli->tree, dname))) {
259                 d_printf("cd %s: %s\n", dname, smbcli_errstr(ctx->cli->tree));
260                 talloc_free(dname);
261         } else {
262                 ctx->remote_cur_dir = dname;
263         }
264         
265         return 0;
266 }
267
268 /****************************************************************************
269 change directory
270 ****************************************************************************/
271 static int cmd_cd(struct smbclient_context *ctx, const char **args)
272 {
273         int rc = 0;
274
275         if (args[1]) 
276                 rc = do_cd(ctx, args[1]);
277         else
278                 d_printf("Current directory is %s\n",ctx->remote_cur_dir);
279
280         return rc;
281 }
282
283
284 BOOL mask_match(struct smbcli_state *c, const char *string, const char *pattern, 
285                 BOOL is_case_sensitive)
286 {
287         char *p2, *s2;
288         BOOL ret;
289
290         if (ISDOTDOT(string))
291                 string = ".";
292         if (ISDOT(pattern))
293                 return False;
294         
295         if (is_case_sensitive)
296                 return ms_fnmatch(pattern, string, 
297                                   c->transport->negotiate.protocol) == 0;
298
299         p2 = strlower_talloc(NULL, pattern);
300         s2 = strlower_talloc(NULL, string);
301         ret = ms_fnmatch(p2, s2, c->transport->negotiate.protocol) == 0;
302         talloc_free(p2);
303         talloc_free(s2);
304
305         return ret;
306 }
307
308
309
310 /*******************************************************************
311   decide if a file should be operated on
312   ********************************************************************/
313 static BOOL do_this_one(struct smbclient_context *ctx, struct clilist_file_info *finfo)
314 {
315         if (finfo->attrib & FILE_ATTRIBUTE_DIRECTORY) return(True);
316
317         if (ctx->fileselection && 
318             !mask_match(ctx->cli, finfo->name,ctx->fileselection,False)) {
319                 DEBUG(3,("mask_match %s failed\n", finfo->name));
320                 return False;
321         }
322
323         if (ctx->newer_than && finfo->mtime < ctx->newer_than) {
324                 DEBUG(3,("newer_than %s failed\n", finfo->name));
325                 return(False);
326         }
327
328         if ((ctx->archive_level==1 || ctx->archive_level==2) && !(finfo->attrib & FILE_ATTRIBUTE_ARCHIVE)) {
329                 DEBUG(3,("archive %s failed\n", finfo->name));
330                 return(False);
331         }
332         
333         return(True);
334 }
335
336 /****************************************************************************
337   display info about a file
338   ****************************************************************************/
339 static void display_finfo(struct smbclient_context *ctx, struct clilist_file_info *finfo)
340 {
341         if (do_this_one(ctx, finfo)) {
342                 time_t t = finfo->mtime; /* the time is assumed to be passed as GMT */
343                 char *astr = attrib_string(NULL, finfo->attrib);
344                 d_printf("  %-30s%7.7s %8.0f  %s",
345                          finfo->name,
346                          astr,
347                          (double)finfo->size,
348                          asctime(localtime(&t)));
349                 dir_total += finfo->size;
350                 talloc_free(astr);
351         }
352 }
353
354
355 /****************************************************************************
356    accumulate size of a file
357   ****************************************************************************/
358 static void do_du(struct smbclient_context *ctx, struct clilist_file_info *finfo)
359 {
360         if (do_this_one(ctx, finfo)) {
361                 dir_total += finfo->size;
362         }
363 }
364
365 static BOOL do_list_recurse;
366 static BOOL do_list_dirs;
367 static char *do_list_queue = 0;
368 static long do_list_queue_size = 0;
369 static long do_list_queue_start = 0;
370 static long do_list_queue_end = 0;
371 static void (*do_list_fn)(struct smbclient_context *, struct clilist_file_info *);
372
373 /****************************************************************************
374 functions for do_list_queue
375   ****************************************************************************/
376
377 /*
378  * The do_list_queue is a NUL-separated list of strings stored in a
379  * char*.  Since this is a FIFO, we keep track of the beginning and
380  * ending locations of the data in the queue.  When we overflow, we
381  * double the size of the char*.  When the start of the data passes
382  * the midpoint, we move everything back.  This is logically more
383  * complex than a linked list, but easier from a memory management
384  * angle.  In any memory error condition, do_list_queue is reset.
385  * Functions check to ensure that do_list_queue is non-NULL before
386  * accessing it.
387  */
388 static void reset_do_list_queue(void)
389 {
390         SAFE_FREE(do_list_queue);
391         do_list_queue_size = 0;
392         do_list_queue_start = 0;
393         do_list_queue_end = 0;
394 }
395
396 static void init_do_list_queue(void)
397 {
398         reset_do_list_queue();
399         do_list_queue_size = 1024;
400         do_list_queue = malloc(do_list_queue_size);
401         if (do_list_queue == 0) { 
402                 d_printf("malloc fail for size %d\n",
403                          (int)do_list_queue_size);
404                 reset_do_list_queue();
405         } else {
406                 memset(do_list_queue, 0, do_list_queue_size);
407         }
408 }
409
410 static void adjust_do_list_queue(void)
411 {
412         if (do_list_queue == NULL) return;
413
414         /*
415          * If the starting point of the queue is more than half way through,
416          * move everything toward the beginning.
417          */
418         if (do_list_queue_start == do_list_queue_end)
419         {
420                 DEBUG(4,("do_list_queue is empty\n"));
421                 do_list_queue_start = do_list_queue_end = 0;
422                 *do_list_queue = '\0';
423         }
424         else if (do_list_queue_start > (do_list_queue_size / 2))
425         {
426                 DEBUG(4,("sliding do_list_queue backward\n"));
427                 memmove(do_list_queue,
428                         do_list_queue + do_list_queue_start,
429                         do_list_queue_end - do_list_queue_start);
430                 do_list_queue_end -= do_list_queue_start;
431                 do_list_queue_start = 0;
432         }
433            
434 }
435
436 static void add_to_do_list_queue(const char* entry)
437 {
438         char *dlq;
439         long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
440         while (new_end > do_list_queue_size)
441         {
442                 do_list_queue_size *= 2;
443                 DEBUG(4,("enlarging do_list_queue to %d\n",
444                          (int)do_list_queue_size));
445                 dlq = realloc_p(do_list_queue, char, do_list_queue_size);
446                 if (! dlq) {
447                         d_printf("failure enlarging do_list_queue to %d bytes\n",
448                                  (int)do_list_queue_size);
449                         reset_do_list_queue();
450                 }
451                 else
452                 {
453                         do_list_queue = dlq;
454                         memset(do_list_queue + do_list_queue_size / 2,
455                                0, do_list_queue_size / 2);
456                 }
457         }
458         if (do_list_queue)
459         {
460                 safe_strcpy(do_list_queue + do_list_queue_end, entry, 
461                             do_list_queue_size - do_list_queue_end - 1);
462                 do_list_queue_end = new_end;
463                 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
464                          entry, (int)do_list_queue_start, (int)do_list_queue_end));
465         }
466 }
467
468 static char *do_list_queue_head(void)
469 {
470         return do_list_queue + do_list_queue_start;
471 }
472
473 static void remove_do_list_queue_head(void)
474 {
475         if (do_list_queue_end > do_list_queue_start)
476         {
477                 do_list_queue_start += strlen(do_list_queue_head()) + 1;
478                 adjust_do_list_queue();
479                 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
480                          (int)do_list_queue_start, (int)do_list_queue_end));
481         }
482 }
483
484 static int do_list_queue_empty(void)
485 {
486         return (! (do_list_queue && *do_list_queue));
487 }
488
489 /****************************************************************************
490 a helper for do_list
491   ****************************************************************************/
492 static void do_list_helper(struct clilist_file_info *f, const char *mask, void *state)
493 {
494         struct smbclient_context *ctx = state;
495
496         if (f->attrib & FILE_ATTRIBUTE_DIRECTORY) {
497                 if (do_list_dirs && do_this_one(ctx, f)) {
498                         do_list_fn(ctx, f);
499                 }
500                 if (do_list_recurse && 
501                     !ISDOT(f->name) &&
502                     !ISDOTDOT(f->name)) {
503                         char *mask2;
504                         char *p;
505
506                         mask2 = talloc_strdup(NULL, mask);
507                         p = strrchr_m(mask2,'\\');
508                         if (!p) return;
509                         p[1] = 0;
510                         mask2 = talloc_asprintf_append(mask2, "%s\\*", f->name);
511                         add_to_do_list_queue(mask2);
512                 }
513                 return;
514         }
515
516         if (do_this_one(ctx, f)) {
517                 do_list_fn(ctx, f);
518         }
519 }
520
521
522 /****************************************************************************
523 a wrapper around smbcli_list that adds recursion
524   ****************************************************************************/
525 static void do_list(struct smbclient_context *ctx, const char *mask,uint16_t attribute,
526              void (*fn)(struct smbclient_context *, struct clilist_file_info *),BOOL rec, BOOL dirs)
527 {
528         static int in_do_list = 0;
529
530         if (in_do_list && rec)
531         {
532                 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
533                 exit(1);
534         }
535
536         in_do_list = 1;
537
538         do_list_recurse = rec;
539         do_list_dirs = dirs;
540         do_list_fn = fn;
541
542         if (rec)
543         {
544                 init_do_list_queue();
545                 add_to_do_list_queue(mask);
546                 
547                 while (! do_list_queue_empty())
548                 {
549                         /*
550                          * Need to copy head so that it doesn't become
551                          * invalid inside the call to smbcli_list.  This
552                          * would happen if the list were expanded
553                          * during the call.
554                          * Fix from E. Jay Berkenbilt (ejb@ql.org)
555                          */
556                         char *head;
557                         head = do_list_queue_head();
558                         smbcli_list(ctx->cli->tree, head, attribute, do_list_helper, ctx);
559                         remove_do_list_queue_head();
560                         if ((! do_list_queue_empty()) && (fn == display_finfo))
561                         {
562                                 char* next_file = do_list_queue_head();
563                                 char* save_ch = 0;
564                                 if ((strlen(next_file) >= 2) &&
565                                     (next_file[strlen(next_file) - 1] == '*') &&
566                                     (next_file[strlen(next_file) - 2] == '\\'))
567                                 {
568                                         save_ch = next_file +
569                                                 strlen(next_file) - 2;
570                                         *save_ch = '\0';
571                                 }
572                                 d_printf("\n%s\n",next_file);
573                                 if (save_ch)
574                                 {
575                                         *save_ch = '\\';
576                                 }
577                         }
578                 }
579         }
580         else
581         {
582                 if (smbcli_list(ctx->cli->tree, mask, attribute, do_list_helper, ctx) == -1)
583                 {
584                         d_printf("%s listing %s\n", smbcli_errstr(ctx->cli->tree), mask);
585                 }
586         }
587
588         in_do_list = 0;
589         reset_do_list_queue();
590 }
591
592 /****************************************************************************
593   get a directory listing
594   ****************************************************************************/
595 static int cmd_dir(struct smbclient_context *ctx, const char **args)
596 {
597         uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
598         char *mask;
599         int rc;
600         
601         dir_total = 0;
602         
603         mask = talloc_strdup(ctx, ctx->remote_cur_dir);
604         if(mask[strlen(mask)-1]!='\\')
605                 mask = talloc_append_string(ctx, mask,"\\");
606         
607         if (args[1]) {
608                 mask = talloc_strdup(ctx, args[1]);
609                 if (mask[0] != '\\')
610                         mask = talloc_append_string(ctx, mask, "\\");
611                 dos_format(mask);
612         }
613         else {
614                 if (ctx->cli->tree->session->transport->negotiate.protocol <= 
615                     PROTOCOL_LANMAN1) { 
616                         mask = talloc_append_string(ctx, mask, "*.*");
617                 } else {
618                         mask = talloc_append_string(ctx, mask, "*");
619                 }
620         }
621
622         do_list(ctx, mask, attribute, display_finfo, ctx->recurse, True);
623
624         rc = do_dskattr(ctx);
625
626         DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
627
628         return rc;
629 }
630
631
632 /****************************************************************************
633   get a directory listing
634   ****************************************************************************/
635 static int cmd_du(struct smbclient_context *ctx, const char **args)
636 {
637         uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
638         int rc;
639         char *mask;
640         
641         dir_total = 0;
642         
643         if (args[1]) {
644                 if (args[1][0] == '\\')
645                         mask = talloc_strdup(ctx, args[1]);
646                 else
647                         mask = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, args[1]);
648                 dos_format(mask);
649         } else {
650                 mask = talloc_asprintf(ctx, "%s\\*", ctx->remote_cur_dir);
651         }
652
653         do_list(ctx, mask, attribute, do_du, ctx->recurse, True);
654
655         talloc_free(mask);
656
657         rc = do_dskattr(ctx);
658
659         d_printf("Total number of bytes: %.0f\n", dir_total);
660
661         return rc;
662 }
663
664
665 /****************************************************************************
666   get a file from rname to lname
667   ****************************************************************************/
668 static int do_get(struct smbclient_context *ctx, char *rname, const char *lname, BOOL reget)
669 {  
670         int handle = 0, fnum;
671         BOOL newhandle = False;
672         uint8_t *data;
673         struct timeval tp_start;
674         int read_size = io_bufsize;
675         uint16_t attr;
676         size_t size;
677         off_t start = 0;
678         off_t nread = 0;
679         int rc = 0;
680
681         GetTimeOfDay(&tp_start);
682
683         if (ctx->lowercase) {
684                 strlower(discard_const_p(char, lname));
685         }
686
687         fnum = smbcli_open(ctx->cli->tree, rname, O_RDONLY, DENY_NONE);
688
689         if (fnum == -1) {
690                 d_printf("%s opening remote file %s\n",smbcli_errstr(ctx->cli->tree),rname);
691                 return 1;
692         }
693
694         if(!strcmp(lname,"-")) {
695                 handle = fileno(stdout);
696         } else {
697                 if (reget) {
698                         handle = open(lname, O_WRONLY|O_CREAT, 0644);
699                         if (handle >= 0) {
700                                 start = lseek(handle, 0, SEEK_END);
701                                 if (start == -1) {
702                                         d_printf("Error seeking local file\n");
703                                         return 1;
704                                 }
705                         }
706                 } else {
707                         handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
708                 }
709                 newhandle = True;
710         }
711         if (handle < 0) {
712                 d_printf("Error opening local file %s\n",lname);
713                 return 1;
714         }
715
716
717         if (NT_STATUS_IS_ERR(smbcli_qfileinfo(ctx->cli->tree, fnum, 
718                            &attr, &size, NULL, NULL, NULL, NULL, NULL)) &&
719             NT_STATUS_IS_ERR(smbcli_getattrE(ctx->cli->tree, fnum, 
720                           &attr, &size, NULL, NULL, NULL))) {
721                 d_printf("getattrib: %s\n",smbcli_errstr(ctx->cli->tree));
722                 return 1;
723         }
724
725         DEBUG(2,("getting file %s of size %.0f as %s ", 
726                  rname, (double)size, lname));
727
728         if(!(data = (uint8_t *)malloc(read_size))) { 
729                 d_printf("malloc fail for size %d\n", read_size);
730                 smbcli_close(ctx->cli->tree, fnum);
731                 return 1;
732         }
733
734         while (1) {
735                 int n = smbcli_read(ctx->cli->tree, fnum, data, nread + start, read_size);
736
737                 if (n <= 0) break;
738  
739                 if (writefile(handle,data, n, ctx->translation) != n) {
740                         d_printf("Error writing local file\n");
741                         rc = 1;
742                         break;
743                 }
744       
745                 nread += n;
746         }
747
748         if (nread + start < size) {
749                 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
750                             rname, (long)nread));
751
752                 rc = 1;
753         }
754
755         SAFE_FREE(data);
756         
757         if (NT_STATUS_IS_ERR(smbcli_close(ctx->cli->tree, fnum))) {
758                 d_printf("Error %s closing remote file\n",smbcli_errstr(ctx->cli->tree));
759                 rc = 1;
760         }
761
762         if (newhandle) {
763                 close(handle);
764         }
765
766         if (ctx->archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
767                 smbcli_setatr(ctx->cli->tree, rname, attr & ~(uint16_t)FILE_ATTRIBUTE_ARCHIVE, 0);
768         }
769
770         {
771                 struct timeval tp_end;
772                 int this_time;
773                 
774                 GetTimeOfDay(&tp_end);
775                 this_time = 
776                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
777                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
778                 get_total_time_ms += this_time;
779                 get_total_size += nread;
780                 
781                 DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
782                          nread / (1.024*this_time + 1.0e-4),
783                          get_total_size / (1.024*get_total_time_ms)));
784         }
785         
786         return rc;
787 }
788
789
790 /****************************************************************************
791   get a file
792   ****************************************************************************/
793 static int cmd_get(struct smbclient_context *ctx, const char **args)
794 {
795         const char *lname;
796         char *rname;
797
798         if (!args[1]) {
799                 d_printf("get <filename>\n");
800                 return 1;
801         }
802
803         rname = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, args[1]);
804
805         if (args[2]) 
806                 lname = args[2];
807         else 
808                 lname = args[1];
809         
810         dos_clean_name(rname);
811         
812         return do_get(ctx, rname, lname, False);
813 }
814
815 /****************************************************************************
816  Put up a yes/no prompt.
817 ****************************************************************************/
818 static BOOL yesno(char *p)
819 {
820         char ans[4];
821         printf("%s",p);
822
823         if (!fgets(ans,sizeof(ans)-1,stdin))
824                 return(False);
825
826         if (*ans == 'y' || *ans == 'Y')
827                 return(True);
828
829         return(False);
830 }
831
832 /****************************************************************************
833   do a mget operation on one file
834   ****************************************************************************/
835 static void do_mget(struct smbclient_context *ctx, struct clilist_file_info *finfo)
836 {
837         char *rname;
838         char *quest;
839         char *mget_mask;
840         char *saved_curdir;
841
842         if (ISDOT(finfo->name) || ISDOTDOT(finfo->name))
843                 return;
844
845         if (finfo->attrib & FILE_ATTRIBUTE_DIRECTORY)
846                 asprintf(&quest, "Get directory %s? ",finfo->name);
847         else
848                 asprintf(&quest, "Get file %s? ",finfo->name);
849
850         if (ctx->prompt && !yesno(quest)) return;
851
852         SAFE_FREE(quest);
853
854         if (!(finfo->attrib & FILE_ATTRIBUTE_DIRECTORY)) {
855                 asprintf(&rname, "%s%s",ctx->remote_cur_dir,finfo->name);
856                 do_get(ctx, rname, finfo->name, False);
857                 SAFE_FREE(rname);
858                 return;
859         }
860
861         /* handle directories */
862         saved_curdir = talloc_strdup(NULL, ctx->remote_cur_dir);
863
864         ctx->remote_cur_dir = talloc_asprintf_append(NULL, "%s\\", finfo->name);
865
866         string_replace(discard_const_p(char, finfo->name), '\\', '/');
867         if (ctx->lowercase) {
868                 strlower(discard_const_p(char, finfo->name));
869         }
870         
871         if (!directory_exist(finfo->name) && 
872             mkdir(finfo->name,0777) != 0) {
873                 d_printf("failed to create directory %s\n",finfo->name);
874                 return;
875         }
876         
877         if (chdir(finfo->name) != 0) {
878                 d_printf("failed to chdir to directory %s\n",finfo->name);
879                 return;
880         }
881
882         mget_mask = talloc_asprintf(NULL, "%s*", ctx->remote_cur_dir);
883         
884         do_list(ctx, mget_mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,do_mget,False, True);
885         chdir("..");
886         talloc_free(ctx->remote_cur_dir);
887
888         ctx->remote_cur_dir = saved_curdir;
889 }
890
891
892 /****************************************************************************
893 view the file using the pager
894 ****************************************************************************/
895 static int cmd_more(struct smbclient_context *ctx, const char **args)
896 {
897         char *rname;
898         char *pager_cmd;
899         char *lname;
900         char *pager;
901         int fd;
902         int rc = 0;
903
904         lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
905         fd = mkstemp(lname);
906         if (fd == -1) {
907                 d_printf("failed to create temporary file for more\n");
908                 return 1;
909         }
910         close(fd);
911
912         if (!args[1]) {
913                 d_printf("more <filename>\n");
914                 unlink(lname);
915                 return 1;
916         }
917         rname = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
918         dos_clean_name(rname);
919
920         rc = do_get(ctx, rname, lname, False);
921
922         pager=getenv("PAGER");
923
924         pager_cmd = talloc_asprintf(ctx, "%s %s",(pager? pager:PAGER), lname);
925         system(pager_cmd);
926         unlink(lname);
927         
928         return rc;
929 }
930
931
932
933 /****************************************************************************
934 do a mget command
935 ****************************************************************************/
936 static int cmd_mget(struct smbclient_context *ctx, const char **args)
937 {
938         uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
939         char *mget_mask = NULL;
940         int i;
941
942         if (ctx->recurse)
943                 attribute |= FILE_ATTRIBUTE_DIRECTORY;
944         
945         for (i = 1; args[i]; i++) {
946                 mget_mask = talloc_strdup(ctx,ctx->remote_cur_dir);
947                 if(mget_mask[strlen(mget_mask)-1]!='\\')
948                         mget_mask = talloc_append_string(ctx, mget_mask, "\\");
949                 
950                 mget_mask = talloc_strdup(ctx, args[i]);
951                 if (mget_mask[0] != '\\')
952                         mget_mask = talloc_append_string(ctx, mget_mask, "\\");
953                 do_list(ctx, mget_mask, attribute,do_mget,False,True);
954
955                 talloc_free(mget_mask);
956         }
957
958         if (mget_mask == NULL) {
959                 mget_mask = talloc_asprintf(ctx, "%s\\*", ctx->remote_cur_dir);
960                 do_list(ctx, mget_mask, attribute,do_mget,False,True);
961                 talloc_free(mget_mask);
962         }
963         
964         return 0;
965 }
966
967
968 /****************************************************************************
969 make a directory of name "name"
970 ****************************************************************************/
971 static NTSTATUS do_mkdir(struct smbclient_context *ctx, char *name)
972 {
973         NTSTATUS status;
974
975         if (NT_STATUS_IS_ERR(status = smbcli_mkdir(ctx->cli->tree, name))) {
976                 d_printf("%s making remote directory %s\n",
977                          smbcli_errstr(ctx->cli->tree),name);
978                 return status;
979         }
980
981         return status;
982 }
983
984
985 /****************************************************************************
986  Exit client.
987 ****************************************************************************/
988 static int cmd_quit(struct smbclient_context *ctx, const char **args)
989 {
990         talloc_free(ctx);
991         exit(0);
992         /* NOTREACHED */
993         return 0;
994 }
995
996
997 /****************************************************************************
998   make a directory
999   ****************************************************************************/
1000 static int cmd_mkdir(struct smbclient_context *ctx, const char **args)
1001 {
1002         char *mask, *p;
1003   
1004         if (!args[1]) {
1005                 if (!ctx->recurse)
1006                         d_printf("mkdir <dirname>\n");
1007                 return 1;
1008         }
1009
1010         mask = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir,args[1]);
1011
1012         if (ctx->recurse) {
1013                 dos_clean_name(mask);
1014
1015                 trim_string(mask,".",NULL);
1016                 for (p = strtok(mask,"/\\"); p; p = strtok(p, "/\\")) {
1017                         char *parent = talloc_strndup(ctx, mask, PTR_DIFF(p, mask));
1018                         
1019                         if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx->cli->tree, parent))) { 
1020                                 do_mkdir(ctx, parent);
1021                         }
1022
1023                         talloc_free(parent);
1024                 }        
1025         } else {
1026                 do_mkdir(ctx, mask);
1027         }
1028         
1029         return 0;
1030 }
1031
1032 /****************************************************************************
1033 show 8.3 name of a file
1034 ****************************************************************************/
1035 static int cmd_altname(struct smbclient_context *ctx, const char **args)
1036 {
1037         const char *altname;
1038         char *name;
1039   
1040         if (!args[1]) {
1041                 d_printf("altname <file>\n");
1042                 return 1;
1043         }
1044
1045         name = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
1046
1047         if (!NT_STATUS_IS_OK(smbcli_qpathinfo_alt_name(ctx->cli->tree, name, &altname))) {
1048                 d_printf("%s getting alt name for %s\n",
1049                          smbcli_errstr(ctx->cli->tree),name);
1050                 return(False);
1051         }
1052         d_printf("%s\n", altname);
1053
1054         return 0;
1055 }
1056
1057
1058 /****************************************************************************
1059   put a single file
1060   ****************************************************************************/
1061 static int do_put(struct smbclient_context *ctx, char *rname, char *lname, BOOL reput)
1062 {
1063         int fnum;
1064         XFILE *f;
1065         size_t start = 0;
1066         off_t nread = 0;
1067         uint8_t *buf = NULL;
1068         int maxwrite = io_bufsize;
1069         int rc = 0;
1070         
1071         struct timeval tp_start;
1072         GetTimeOfDay(&tp_start);
1073
1074         if (reput) {
1075                 fnum = smbcli_open(ctx->cli->tree, rname, O_RDWR|O_CREAT, DENY_NONE);
1076                 if (fnum >= 0) {
1077                         if (NT_STATUS_IS_ERR(smbcli_qfileinfo(ctx->cli->tree, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL)) &&
1078                             NT_STATUS_IS_ERR(smbcli_getattrE(ctx->cli->tree, fnum, NULL, &start, NULL, NULL, NULL))) {
1079                                 d_printf("getattrib: %s\n",smbcli_errstr(ctx->cli->tree));
1080                                 return 1;
1081                         }
1082                 }
1083         } else {
1084                 fnum = smbcli_open(ctx->cli->tree, rname, O_RDWR|O_CREAT|O_TRUNC, 
1085                                 DENY_NONE);
1086         }
1087   
1088         if (fnum == -1) {
1089                 d_printf("%s opening remote file %s\n",smbcli_errstr(ctx->cli->tree),rname);
1090                 return 1;
1091         }
1092
1093         /* allow files to be piped into smbclient
1094            jdblair 24.jun.98
1095
1096            Note that in this case this function will exit(0) rather
1097            than returning. */
1098         if (!strcmp(lname, "-")) {
1099                 f = x_stdin;
1100                 /* size of file is not known */
1101         } else {
1102                 f = x_fopen(lname,O_RDONLY, 0);
1103                 if (f && reput) {
1104                         if (x_tseek(f, start, SEEK_SET) == -1) {
1105                                 d_printf("Error seeking local file\n");
1106                                 return 1;
1107                         }
1108                 }
1109         }
1110
1111         if (!f) {
1112                 d_printf("Error opening local file %s\n",lname);
1113                 return 1;
1114         }
1115
1116   
1117         DEBUG(1,("putting file %s as %s ",lname,
1118                  rname));
1119   
1120         buf = (uint8_t *)malloc(maxwrite);
1121         if (!buf) {
1122                 d_printf("ERROR: Not enough memory!\n");
1123                 return 1;
1124         }
1125         while (!x_feof(f)) {
1126                 int n = maxwrite;
1127                 int ret;
1128
1129                 if ((n = readfile(buf,n,f,ctx->translation)) < 1) {
1130                         if((n == 0) && x_feof(f))
1131                                 break; /* Empty local file. */
1132
1133                         d_printf("Error reading local file: %s\n", strerror(errno));
1134                         rc = 1;
1135                         break;
1136                 }
1137
1138                 ret = smbcli_write(ctx->cli->tree, fnum, 0, buf, nread + start, n);
1139
1140                 if (n != ret) {
1141                         d_printf("Error writing file: %s\n", smbcli_errstr(ctx->cli->tree));
1142                         rc = 1;
1143                         break;
1144                 } 
1145
1146                 nread += n;
1147         }
1148
1149         if (NT_STATUS_IS_ERR(smbcli_close(ctx->cli->tree, fnum))) {
1150                 d_printf("%s closing remote file %s\n",smbcli_errstr(ctx->cli->tree),rname);
1151                 x_fclose(f);
1152                 SAFE_FREE(buf);
1153                 return 1;
1154         }
1155
1156         
1157         if (f != x_stdin) {
1158                 x_fclose(f);
1159         }
1160
1161         SAFE_FREE(buf);
1162
1163         {
1164                 struct timeval tp_end;
1165                 int this_time;
1166                 
1167                 GetTimeOfDay(&tp_end);
1168                 this_time = 
1169                         (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1170                         (tp_end.tv_usec - tp_start.tv_usec)/1000;
1171                 put_total_time_ms += this_time;
1172                 put_total_size += nread;
1173                 
1174                 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1175                          nread / (1.024*this_time + 1.0e-4),
1176                          put_total_size / (1.024*put_total_time_ms)));
1177         }
1178
1179         if (f == x_stdin) {
1180                 talloc_free(ctx);
1181                 exit(0);
1182         }
1183         
1184         return rc;
1185 }
1186
1187  
1188
1189 /****************************************************************************
1190   put a file
1191   ****************************************************************************/
1192 static int cmd_put(struct smbclient_context *ctx, const char **args)
1193 {
1194         char *lname;
1195         char *rname;
1196         
1197         if (!args[1]) {
1198                 d_printf("put <filename> [<remotename>]\n");
1199                 return 1;
1200         }
1201
1202         lname = talloc_strdup(ctx, args[1]);
1203   
1204         if (args[2])
1205                 rname = talloc_strdup(ctx, args[2]);
1206         else
1207                 rname = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, lname);
1208         
1209         dos_clean_name(rname);
1210
1211         /* allow '-' to represent stdin
1212            jdblair, 24.jun.98 */
1213         if (!file_exist(lname) && (strcmp(lname,"-"))) {
1214                 d_printf("%s does not exist\n",lname);
1215                 return 1;
1216         }
1217
1218         return do_put(ctx, rname, lname, False);
1219 }
1220
1221 /*************************************
1222   File list structure
1223 *************************************/
1224
1225 static struct file_list {
1226         struct file_list *prev, *next;
1227         char *file_path;
1228         BOOL isdir;
1229 } *file_list;
1230
1231 /****************************************************************************
1232   Free a file_list structure
1233 ****************************************************************************/
1234
1235 static void free_file_list (struct file_list * list)
1236 {
1237         struct file_list *tmp;
1238         
1239         while (list)
1240         {
1241                 tmp = list;
1242                 DLIST_REMOVE(list, list);
1243                 SAFE_FREE(tmp->file_path);
1244                 SAFE_FREE(tmp);
1245         }
1246 }
1247
1248 /****************************************************************************
1249   seek in a directory/file list until you get something that doesn't start with
1250   the specified name
1251   ****************************************************************************/
1252 static BOOL seek_list(struct file_list *list, char *name)
1253 {
1254         while (list) {
1255                 trim_string(list->file_path,"./","\n");
1256                 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1257                         return(True);
1258                 }
1259                 list = list->next;
1260         }
1261       
1262         return(False);
1263 }
1264
1265 /****************************************************************************
1266   set the file selection mask
1267   ****************************************************************************/
1268 static int cmd_select(struct smbclient_context *ctx, const char **args)
1269 {
1270         talloc_free(ctx->fileselection);
1271         ctx->fileselection = talloc_strdup(NULL, args[1]);
1272
1273         return 0;
1274 }
1275
1276 /*******************************************************************
1277   A readdir wrapper which just returns the file name.
1278  ********************************************************************/
1279 static const char *readdirname(DIR *p)
1280 {
1281         struct dirent *ptr;
1282         char *dname;
1283
1284         if (!p)
1285                 return(NULL);
1286   
1287         ptr = (struct dirent *)readdir(p);
1288         if (!ptr)
1289                 return(NULL);
1290
1291         dname = ptr->d_name;
1292
1293 #ifdef NEXT2
1294         if (telldir(p) < 0)
1295                 return(NULL);
1296 #endif
1297
1298 #ifdef HAVE_BROKEN_READDIR
1299         /* using /usr/ucb/cc is BAD */
1300         dname = dname - 2;
1301 #endif
1302
1303         {
1304                 static char *buf;
1305                 int len = NAMLEN(ptr);
1306                 buf = talloc_strndup(NULL, dname, len);
1307                 dname = buf;
1308         }
1309
1310         return(dname);
1311 }
1312
1313 /****************************************************************************
1314   Recursive file matching function act as find
1315   match must be always set to True when calling this function
1316 ****************************************************************************/
1317 static int file_find(struct smbclient_context *ctx, struct file_list **list, const char *directory, 
1318                       const char *expression, BOOL match)
1319 {
1320         DIR *dir;
1321         struct file_list *entry;
1322         struct stat statbuf;
1323         int ret;
1324         char *path;
1325         BOOL isdir;
1326         const char *dname;
1327
1328         dir = opendir(directory);
1329         if (!dir) return -1;
1330         
1331         while ((dname = readdirname(dir))) {
1332                 if (ISDOT(dname) || ISDOTDOT(dname)) {
1333                         continue;
1334                 }
1335                 
1336                 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1337                         continue;
1338                 }
1339
1340                 isdir = False;
1341                 if (!match || !gen_fnmatch(expression, dname)) {
1342                         if (ctx->recurse) {
1343                                 ret = stat(path, &statbuf);
1344                                 if (ret == 0) {
1345                                         if (S_ISDIR(statbuf.st_mode)) {
1346                                                 isdir = True;
1347                                                 ret = file_find(ctx, list, path, expression, False);
1348                                         }
1349                                 } else {
1350                                         d_printf("file_find: cannot stat file %s\n", path);
1351                                 }
1352                                 
1353                                 if (ret == -1) {
1354                                         SAFE_FREE(path);
1355                                         closedir(dir);
1356                                         return -1;
1357                                 }
1358                         }
1359                         entry = malloc_p(struct file_list);
1360                         if (!entry) {
1361                                 d_printf("Out of memory in file_find\n");
1362                                 closedir(dir);
1363                                 return -1;
1364                         }
1365                         entry->file_path = path;
1366                         entry->isdir = isdir;
1367                         DLIST_ADD(*list, entry);
1368                 } else {
1369                         SAFE_FREE(path);
1370                 }
1371         }
1372
1373         closedir(dir);
1374         return 0;
1375 }
1376
1377 /****************************************************************************
1378   mput some files
1379   ****************************************************************************/
1380 static int cmd_mput(struct smbclient_context *ctx, const char **args)
1381 {
1382         int i;
1383         
1384         for (i = 1; args[i]; i++) {
1385                 int ret;
1386                 struct file_list *temp_list;
1387                 char *quest, *lname, *rname;
1388
1389                 printf("%s\n", args[i]);
1390         
1391                 file_list = NULL;
1392
1393                 ret = file_find(ctx, &file_list, ".", args[i], True);
1394                 if (ret) {
1395                         free_file_list(file_list);
1396                         continue;
1397                 }
1398                 
1399                 quest = NULL;
1400                 lname = NULL;
1401                 rname = NULL;
1402                                 
1403                 for (temp_list = file_list; temp_list; 
1404                      temp_list = temp_list->next) {
1405
1406                         SAFE_FREE(lname);
1407                         if (asprintf(&lname, "%s/", temp_list->file_path) <= 0)
1408                                 continue;
1409                         trim_string(lname, "./", "/");
1410                         
1411                         /* check if it's a directory */
1412                         if (temp_list->isdir) {
1413                                 /* if (!recurse) continue; */
1414                                 
1415                                 SAFE_FREE(quest);
1416                                 if (asprintf(&quest, "Put directory %s? ", lname) < 0) break;
1417                                 if (ctx->prompt && !yesno(quest)) { /* No */
1418                                         /* Skip the directory */
1419                                         lname[strlen(lname)-1] = '/';
1420                                         if (!seek_list(temp_list, lname))
1421                                                 break;              
1422                                 } else { /* Yes */
1423                                         SAFE_FREE(rname);
1424                                         if(asprintf(&rname, "%s%s", ctx->remote_cur_dir, lname) < 0) break;
1425                                         dos_format(rname);
1426                                         if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx->cli->tree, rname)) && 
1427                                             NT_STATUS_IS_ERR(do_mkdir(ctx, rname))) {
1428                                                 DEBUG (0, ("Unable to make dir, skipping..."));
1429                                                 /* Skip the directory */
1430                                                 lname[strlen(lname)-1] = '/';
1431                                                 if (!seek_list(temp_list, lname))
1432                                                         break;
1433                                         }
1434                                 }
1435                                 continue;
1436                         } else {
1437                                 SAFE_FREE(quest);
1438                                 if (asprintf(&quest,"Put file %s? ", lname) < 0) break;
1439                                 if (ctx->prompt && !yesno(quest)) /* No */
1440                                         continue;
1441                                 
1442                                 /* Yes */
1443                                 SAFE_FREE(rname);
1444                                 if (asprintf(&rname, "%s%s", ctx->remote_cur_dir, lname) < 0) break;
1445                         }
1446
1447                         dos_format(rname);
1448
1449                         do_put(ctx, rname, lname, False);
1450                 }
1451                 free_file_list(file_list);
1452                 SAFE_FREE(quest);
1453                 SAFE_FREE(lname);
1454                 SAFE_FREE(rname);
1455         }
1456
1457         return 0;
1458 }
1459
1460
1461 /****************************************************************************
1462   print a file
1463   ****************************************************************************/
1464 static int cmd_print(struct smbclient_context *ctx, const char **args)
1465 {
1466         char *lname, *rname;
1467         char *p;
1468
1469         if (!args[1]) {
1470                 d_printf("print <filename>\n");
1471                 return 1;
1472         }
1473
1474         lname = talloc_strdup(ctx, args[1]);
1475
1476         rname = talloc_strdup(ctx, lname);
1477         p = strrchr_m(rname,'/');
1478         if (p) {
1479                 slprintf(rname, sizeof(rname)-1, "%s-%d", p+1, (int)getpid());
1480         }
1481
1482         if (strequal(lname,"-")) {
1483                 slprintf(rname, sizeof(rname)-1, "stdin-%d", (int)getpid());
1484         }
1485
1486         return do_put(ctx, rname, lname, False);
1487 }
1488
1489
1490 static int cmd_rewrite(struct smbclient_context *ctx, const char **args)
1491 {
1492         d_printf("REWRITE: command not implemented (FIXME!)\n");
1493         
1494         return 0;
1495 }
1496
1497 /****************************************************************************
1498 delete some files
1499 ****************************************************************************/
1500 static int cmd_del(struct smbclient_context *ctx, const char **args)
1501 {
1502         char *mask;
1503         uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1504
1505         if (ctx->recurse)
1506                 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1507         
1508         if (!args[1]) {
1509                 d_printf("del <filename>\n");
1510                 return 1;
1511         }
1512         mask = talloc_asprintf(ctx,"%s%s", ctx->remote_cur_dir, args[1]);
1513
1514         if (NT_STATUS_IS_ERR(smbcli_unlink(ctx->cli->tree, mask))) {
1515                 d_printf("%s deleting remote file %s\n",smbcli_errstr(ctx->cli->tree),mask);
1516         }
1517         
1518         return 0;
1519 }
1520
1521
1522 /****************************************************************************
1523 delete a whole directory tree
1524 ****************************************************************************/
1525 static int cmd_deltree(struct smbclient_context *ctx, const char **args)
1526 {
1527         char *dname;
1528         int ret;
1529
1530         if (!args[1]) {
1531                 d_printf("deltree <dirname>\n");
1532                 return 1;
1533         }
1534
1535         dname = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
1536         
1537         ret = smbcli_deltree(ctx->cli->tree, dname);
1538
1539         if (ret == -1) {
1540                 printf("Failed to delete tree %s - %s\n", dname, smbcli_errstr(ctx->cli->tree));
1541                 return -1;
1542         }
1543
1544         printf("Deleted %d files in %s\n", ret, dname);
1545         
1546         return 0;
1547 }
1548
1549 typedef struct {
1550         const char  *level_name;
1551         enum smb_fsinfo_level level;
1552 } fsinfo_level_t;
1553
1554 fsinfo_level_t fsinfo_levels[] = {
1555         {"dskattr", RAW_QFS_DSKATTR},
1556         {"allocation", RAW_QFS_ALLOCATION},
1557         {"volume", RAW_QFS_VOLUME},
1558         {"volumeinfo", RAW_QFS_VOLUME_INFO},
1559         {"sizeinfo", RAW_QFS_SIZE_INFO},
1560         {"deviceinfo", RAW_QFS_DEVICE_INFO},
1561         {"attributeinfo", RAW_QFS_ATTRIBUTE_INFO},
1562         {"unixinfo", RAW_QFS_UNIX_INFO},
1563         {"volume-information", RAW_QFS_VOLUME_INFORMATION},
1564         {"size-information", RAW_QFS_SIZE_INFORMATION},
1565         {"device-information", RAW_QFS_DEVICE_INFORMATION},
1566         {"attribute-information", RAW_QFS_ATTRIBUTE_INFORMATION},
1567         {"quota-information", RAW_QFS_QUOTA_INFORMATION},
1568         {"fullsize-information", RAW_QFS_FULL_SIZE_INFORMATION},
1569         {"objectid", RAW_QFS_OBJECTID_INFORMATION},
1570         {NULL, RAW_QFS_GENERIC}
1571 };
1572
1573
1574 static int cmd_fsinfo(struct smbclient_context *ctx, const char **args)
1575 {
1576         union smb_fsinfo fsinfo;
1577         NTSTATUS status;
1578         fsinfo_level_t *fsinfo_level;
1579         
1580         if (!args[1]) {
1581                 d_printf("fsinfo <level>, where level is one of following:\n");
1582                 fsinfo_level = fsinfo_levels;
1583                 while(fsinfo_level->level_name) {
1584                         d_printf("%s\n", fsinfo_level->level_name);
1585                         fsinfo_level++;
1586                 }
1587                 return 1;
1588         }
1589         
1590         fsinfo_level = fsinfo_levels;
1591         while(fsinfo_level->level_name && !strequal(args[1],fsinfo_level->level_name)) {
1592                 fsinfo_level++;
1593         }
1594   
1595         if (!fsinfo_level->level_name) {
1596                 d_printf("wrong level name!\n");
1597                 return 1;
1598         }
1599   
1600         fsinfo.generic.level = fsinfo_level->level;
1601         status = smb_raw_fsinfo(ctx->cli->tree, ctx, &fsinfo);
1602         if (!NT_STATUS_IS_OK(status)) {
1603                 d_printf("fsinfo-level-%s - %s\n", fsinfo_level->level_name, nt_errstr(status));
1604                 return 1;
1605         }
1606
1607         d_printf("fsinfo-level-%s:\n", fsinfo_level->level_name);
1608         switch(fsinfo.generic.level) {
1609         case RAW_QFS_DSKATTR:
1610                 d_printf("\tunits_total:                %hu\n", 
1611                          (unsigned short) fsinfo.dskattr.out.units_total);
1612                 d_printf("\tblocks_per_unit:            %hu\n", 
1613                          (unsigned short) fsinfo.dskattr.out.blocks_per_unit);
1614                 d_printf("\tblocks_size:                %hu\n", 
1615                          (unsigned short) fsinfo.dskattr.out.block_size);
1616                 d_printf("\tunits_free:                 %hu\n", 
1617                          (unsigned short) fsinfo.dskattr.out.units_free);
1618                 break;
1619         case RAW_QFS_ALLOCATION:
1620                 d_printf("\tfs_id:                      %lu\n", 
1621                          (unsigned long) fsinfo.allocation.out.fs_id);
1622                 d_printf("\tsectors_per_unit:           %lu\n", 
1623                          (unsigned long) fsinfo.allocation.out.sectors_per_unit);
1624                 d_printf("\ttotal_alloc_units:          %lu\n", 
1625                          (unsigned long) fsinfo.allocation.out.total_alloc_units);
1626                 d_printf("\tavail_alloc_units:          %lu\n", 
1627                          (unsigned long) fsinfo.allocation.out.avail_alloc_units);
1628                 d_printf("\tbytes_per_sector:           %hu\n", 
1629                          (unsigned short) fsinfo.allocation.out.bytes_per_sector);
1630                 break;
1631         case RAW_QFS_VOLUME:
1632                 d_printf("\tserial_number:              %lu\n", 
1633                          (unsigned long) fsinfo.volume.out.serial_number);
1634                 d_printf("\tvolume_name:                %s\n", fsinfo.volume.out.volume_name.s);
1635                 break;
1636         case RAW_QFS_VOLUME_INFO:
1637         case RAW_QFS_VOLUME_INFORMATION:
1638                 d_printf("\tcreate_time:                %s\n",
1639                          nt_time_string(ctx,fsinfo.volume_info.out.create_time));
1640                 d_printf("\tserial_number:              %lu\n", 
1641                          (unsigned long) fsinfo.volume_info.out.serial_number);
1642                 d_printf("\tvolume_name:                %s\n", fsinfo.volume_info.out.volume_name.s);
1643                 break;
1644         case RAW_QFS_SIZE_INFO:
1645         case RAW_QFS_SIZE_INFORMATION:
1646                 d_printf("\ttotal_alloc_units:          %llu\n", 
1647                          (unsigned long long) fsinfo.size_info.out.total_alloc_units);
1648                 d_printf("\tavail_alloc_units:          %llu\n", 
1649                          (unsigned long long) fsinfo.size_info.out.avail_alloc_units);
1650                 d_printf("\tsectors_per_unit:           %lu\n", 
1651                          (unsigned long) fsinfo.size_info.out.sectors_per_unit);
1652                 d_printf("\tbytes_per_sector:           %lu\n", 
1653                          (unsigned long) fsinfo.size_info.out.bytes_per_sector);
1654                 break;
1655         case RAW_QFS_DEVICE_INFO:
1656         case RAW_QFS_DEVICE_INFORMATION:
1657                 d_printf("\tdevice_type:                %lu\n", 
1658                          (unsigned long) fsinfo.device_info.out.device_type);
1659                 d_printf("\tcharacteristics:            0x%lx\n", 
1660                          (unsigned long) fsinfo.device_info.out.characteristics);
1661                 break;
1662         case RAW_QFS_ATTRIBUTE_INFORMATION:
1663         case RAW_QFS_ATTRIBUTE_INFO:
1664                 d_printf("\tfs_attr:                    0x%lx\n", 
1665                          (unsigned long) fsinfo.attribute_info.out.fs_attr);
1666                 d_printf("\tmax_file_component_length:  %lu\n", 
1667                          (unsigned long) fsinfo.attribute_info.out.max_file_component_length);
1668                 d_printf("\tfs_type:                    %s\n", fsinfo.attribute_info.out.fs_type.s);
1669                 break;
1670         case RAW_QFS_UNIX_INFO:
1671                 d_printf("\tmajor_version:              %hu\n", 
1672                          (unsigned short) fsinfo.unix_info.out.major_version);
1673                 d_printf("\tminor_version:              %hu\n", 
1674                          (unsigned short) fsinfo.unix_info.out.minor_version);
1675                 d_printf("\tcapability:                 0x%llx\n", 
1676                          (unsigned long long) fsinfo.unix_info.out.capability);
1677                 break;
1678         case RAW_QFS_QUOTA_INFORMATION:
1679                 d_printf("\tunknown[3]:                 [%llu,%llu,%llu]\n", 
1680                          (unsigned long long) fsinfo.quota_information.out.unknown[0],
1681                          (unsigned long long) fsinfo.quota_information.out.unknown[1],
1682                          (unsigned long long) fsinfo.quota_information.out.unknown[2]);
1683                 d_printf("\tquota_soft:                 %llu\n", 
1684                          (unsigned long long) fsinfo.quota_information.out.quota_soft);
1685                 d_printf("\tquota_hard:                 %llu\n", 
1686                          (unsigned long long) fsinfo.quota_information.out.quota_hard);
1687                 d_printf("\tquota_flags:                0x%llx\n", 
1688                          (unsigned long long) fsinfo.quota_information.out.quota_flags);
1689                 break;
1690         case RAW_QFS_FULL_SIZE_INFORMATION:
1691                 d_printf("\ttotal_alloc_units:          %llu\n", 
1692                          (unsigned long long) fsinfo.full_size_information.out.total_alloc_units);
1693                 d_printf("\tcall_avail_alloc_units:     %llu\n", 
1694                          (unsigned long long) fsinfo.full_size_information.out.call_avail_alloc_units);
1695                 d_printf("\tactual_avail_alloc_units:   %llu\n", 
1696                          (unsigned long long) fsinfo.full_size_information.out.actual_avail_alloc_units);
1697                 d_printf("\tsectors_per_unit:           %lu\n", 
1698                          (unsigned long) fsinfo.full_size_information.out.sectors_per_unit);
1699                 d_printf("\tbytes_per_sector:           %lu\n", 
1700                          (unsigned long) fsinfo.full_size_information.out.bytes_per_sector);
1701                 break;
1702         case RAW_QFS_OBJECTID_INFORMATION:
1703                 d_printf("\tGUID:                       %s\n", 
1704                          GUID_string(ctx,&fsinfo.objectid_information.out.guid));
1705                 d_printf("\tunknown[6]:                 [%llu,%llu,%llu,%llu,%llu,%llu]\n", 
1706                          (unsigned long long) fsinfo.objectid_information.out.unknown[0],
1707                          (unsigned long long) fsinfo.objectid_information.out.unknown[1],
1708                          (unsigned long long) fsinfo.objectid_information.out.unknown[2],
1709                          (unsigned long long) fsinfo.objectid_information.out.unknown[3],
1710                          (unsigned long long) fsinfo.objectid_information.out.unknown[4],
1711                          (unsigned long long) fsinfo.objectid_information.out.unknown[5] );
1712                 break;
1713         case RAW_QFS_GENERIC:
1714                 d_printf("\twrong level returned\n");
1715                 break;
1716         }
1717   
1718         return 0;
1719 }
1720
1721 /****************************************************************************
1722 show as much information as possible about a file
1723 ****************************************************************************/
1724 static int cmd_allinfo(struct smbclient_context *ctx, const char **args)
1725 {
1726         char *fname;
1727         union smb_fileinfo finfo;
1728         NTSTATUS status;
1729         int fnum;
1730
1731         if (!args[1]) {
1732                 d_printf("allinfo <filename>\n");
1733                 return 1;
1734         }
1735         fname = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
1736
1737         /* first a ALL_INFO QPATHINFO */
1738         finfo.generic.level = RAW_FILEINFO_ALL_INFO;
1739         finfo.generic.in.file.path = fname;
1740         status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1741         if (!NT_STATUS_IS_OK(status)) {
1742                 d_printf("%s - %s\n", fname, nt_errstr(status));
1743                 return 1;
1744         }
1745
1746         d_printf("\tcreate_time:    %s\n", nt_time_string(ctx, finfo.all_info.out.create_time));
1747         d_printf("\taccess_time:    %s\n", nt_time_string(ctx, finfo.all_info.out.access_time));
1748         d_printf("\twrite_time:     %s\n", nt_time_string(ctx, finfo.all_info.out.write_time));
1749         d_printf("\tchange_time:    %s\n", nt_time_string(ctx, finfo.all_info.out.change_time));
1750         d_printf("\tattrib:         0x%x\n", finfo.all_info.out.attrib);
1751         d_printf("\talloc_size:     %lu\n", (unsigned long)finfo.all_info.out.alloc_size);
1752         d_printf("\tsize:           %lu\n", (unsigned long)finfo.all_info.out.size);
1753         d_printf("\tnlink:          %u\n", finfo.all_info.out.nlink);
1754         d_printf("\tdelete_pending: %u\n", finfo.all_info.out.delete_pending);
1755         d_printf("\tdirectory:      %u\n", finfo.all_info.out.directory);
1756         d_printf("\tea_size:        %u\n", finfo.all_info.out.ea_size);
1757         d_printf("\tfname:          '%s'\n", finfo.all_info.out.fname.s);
1758
1759         /* 8.3 name if any */
1760         finfo.generic.level = RAW_FILEINFO_ALT_NAME_INFO;
1761         status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1762         if (NT_STATUS_IS_OK(status)) {
1763                 d_printf("\talt_name:       %s\n", finfo.alt_name_info.out.fname.s);
1764         }
1765
1766         /* file_id if available */
1767         finfo.generic.level = RAW_FILEINFO_INTERNAL_INFORMATION;
1768         status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1769         if (NT_STATUS_IS_OK(status)) {
1770                 d_printf("\tfile_id         %.0f\n", 
1771                          (double)finfo.internal_information.out.file_id);
1772         }
1773
1774         /* the EAs, if any */
1775         finfo.generic.level = RAW_FILEINFO_ALL_EAS;
1776         status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1777         if (NT_STATUS_IS_OK(status)) {
1778                 int i;
1779                 for (i=0;i<finfo.all_eas.out.num_eas;i++) {
1780                         d_printf("\tEA[%d] flags=%d len=%d '%s'\n", i,
1781                                  finfo.all_eas.out.eas[i].flags,
1782                                  (int)finfo.all_eas.out.eas[i].value.length,
1783                                  finfo.all_eas.out.eas[i].name.s);
1784                 }
1785         }
1786
1787         /* streams, if available */
1788         finfo.generic.level = RAW_FILEINFO_STREAM_INFO;
1789         status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1790         if (NT_STATUS_IS_OK(status)) {
1791                 int i;
1792                 for (i=0;i<finfo.stream_info.out.num_streams;i++) {
1793                         d_printf("\tstream %d:\n", i);
1794                         d_printf("\t\tsize       %ld\n", 
1795                                  (long)finfo.stream_info.out.streams[i].size);
1796                         d_printf("\t\talloc size %ld\n", 
1797                                  (long)finfo.stream_info.out.streams[i].alloc_size);
1798                         d_printf("\t\tname       %s\n", finfo.stream_info.out.streams[i].stream_name.s);
1799                 }
1800         }       
1801
1802         /* dev/inode if available */
1803         finfo.generic.level = RAW_FILEINFO_COMPRESSION_INFORMATION;
1804         status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1805         if (NT_STATUS_IS_OK(status)) {
1806                 d_printf("\tcompressed size %ld\n", (long)finfo.compression_info.out.compressed_size);
1807                 d_printf("\tformat          %ld\n", (long)finfo.compression_info.out.format);
1808                 d_printf("\tunit_shift      %ld\n", (long)finfo.compression_info.out.unit_shift);
1809                 d_printf("\tchunk_shift     %ld\n", (long)finfo.compression_info.out.chunk_shift);
1810                 d_printf("\tcluster_shift   %ld\n", (long)finfo.compression_info.out.cluster_shift);
1811         }
1812
1813         /* shadow copies if available */
1814         fnum = smbcli_open(ctx->cli->tree, fname, O_RDONLY, DENY_NONE);
1815         if (fnum != -1) {
1816                 struct smb_shadow_copy info;
1817                 int i;
1818                 info.in.file.fnum = fnum;
1819                 info.in.max_data = ~0;
1820                 status = smb_raw_shadow_data(ctx->cli->tree, ctx, &info);
1821                 if (NT_STATUS_IS_OK(status)) {
1822                         d_printf("\tshadow_copy: %u volumes  %u names\n",
1823                                  info.out.num_volumes, info.out.num_names);
1824                         for (i=0;i<info.out.num_names;i++) {
1825                                 d_printf("\t%s\n", info.out.names[i]);
1826                                 finfo.generic.level = RAW_FILEINFO_ALL_INFO;
1827                                 finfo.generic.in.file.path = talloc_asprintf(ctx, "%s%s", 
1828                                                                              info.out.names[i], fname); 
1829                                 status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1830                                 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_PATH_NOT_FOUND)) {
1831                                         continue;
1832                                 }
1833                                 if (!NT_STATUS_IS_OK(status)) {
1834                                         d_printf("%s - %s\n", finfo.generic.in.file.path, 
1835                                                  nt_errstr(status));
1836                                         return 1;
1837                                 }
1838                                 
1839                                 d_printf("\t\tcreate_time:    %s\n", nt_time_string(ctx, finfo.all_info.out.create_time));
1840                                 d_printf("\t\twrite_time:     %s\n", nt_time_string(ctx, finfo.all_info.out.write_time));
1841                                 d_printf("\t\tchange_time:    %s\n", nt_time_string(ctx, finfo.all_info.out.change_time));
1842                                 d_printf("\t\tsize:           %lu\n", (unsigned long)finfo.all_info.out.size);
1843                         }
1844                 }
1845         }
1846         
1847         return 0;
1848 }
1849
1850
1851 /****************************************************************************
1852 shows EA contents
1853 ****************************************************************************/
1854 static int cmd_eainfo(struct smbclient_context *ctx, const char **args)
1855 {
1856         char *fname;
1857         union smb_fileinfo finfo;
1858         NTSTATUS status;
1859         int i;
1860
1861         if (!args[1]) {
1862                 d_printf("eainfo <filename>\n");
1863                 return 1;
1864         }
1865         fname = talloc_strdup(ctx, args[1]);
1866
1867         finfo.generic.level = RAW_FILEINFO_ALL_EAS;
1868         finfo.generic.in.file.path = fname;
1869         status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1870         
1871         if (!NT_STATUS_IS_OK(status)) {
1872                 d_printf("RAW_FILEINFO_ALL_EAS - %s\n", nt_errstr(status));
1873                 return 1;
1874         }
1875
1876         d_printf("%s has %d EAs\n", fname, finfo.all_eas.out.num_eas);
1877
1878         for (i=0;i<finfo.all_eas.out.num_eas;i++) {
1879                 d_printf("\tEA[%d] flags=%d len=%d '%s'\n", i,
1880                          finfo.all_eas.out.eas[i].flags,
1881                          (int)finfo.all_eas.out.eas[i].value.length,
1882                          finfo.all_eas.out.eas[i].name.s);
1883                 fflush(stdout);
1884                 dump_data(0, 
1885                           finfo.all_eas.out.eas[i].value.data,
1886                           finfo.all_eas.out.eas[i].value.length);
1887         }
1888
1889         return 0;
1890 }
1891
1892
1893 /****************************************************************************
1894 show any ACL on a file
1895 ****************************************************************************/
1896 static int cmd_acl(struct smbclient_context *ctx, const char **args)
1897 {
1898         char *fname;
1899         union smb_fileinfo query;
1900         NTSTATUS status;
1901         int fnum;
1902
1903         if (!args[1]) {
1904                 d_printf("acl <filename>\n");
1905                 return 1;
1906         }
1907         fname = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
1908
1909         fnum = smbcli_nt_create_full(ctx->cli->tree, fname, 0, 
1910                                      SEC_STD_READ_CONTROL,
1911                                      0,
1912                                      NTCREATEX_SHARE_ACCESS_DELETE|
1913                                      NTCREATEX_SHARE_ACCESS_READ|
1914                                      NTCREATEX_SHARE_ACCESS_WRITE, 
1915                                      NTCREATEX_DISP_OPEN,
1916                                      0, 0);
1917         if (fnum == -1) {
1918                 d_printf("%s - %s\n", fname, smbcli_errstr(ctx->cli->tree));
1919                 return -1;
1920         }
1921
1922         query.query_secdesc.level = RAW_FILEINFO_SEC_DESC;
1923         query.query_secdesc.in.file.fnum = fnum;
1924         query.query_secdesc.in.secinfo_flags = 0x7;
1925
1926         status = smb_raw_fileinfo(ctx->cli->tree, ctx, &query);
1927         if (!NT_STATUS_IS_OK(status)) {
1928                 d_printf("%s - %s\n", fname, nt_errstr(status));
1929                 return 1;
1930         }
1931
1932         NDR_PRINT_DEBUG(security_descriptor, query.query_secdesc.out.sd);
1933
1934         return 0;
1935 }
1936
1937 /****************************************************************************
1938 lookup a name or sid
1939 ****************************************************************************/
1940 static int cmd_lookup(struct smbclient_context *ctx, const char **args)
1941 {
1942         NTSTATUS status;
1943         struct dom_sid *sid;
1944
1945         if (!args[1]) {
1946                 d_printf("lookup <sid|name>\n");
1947                 return 1;
1948         }
1949
1950         sid = dom_sid_parse_talloc(ctx, args[1]);
1951         if (sid == NULL) {
1952                 const char *sidstr;
1953                 status = smblsa_lookup_name(ctx->cli, args[1], ctx, &sidstr);
1954                 if (!NT_STATUS_IS_OK(status)) {
1955                         d_printf("lsa_LookupNames - %s\n", nt_errstr(status));
1956                         return 1;
1957                 }
1958
1959                 d_printf("%s\n", sidstr);
1960         } else {
1961                 const char *name;
1962                 status = smblsa_lookup_sid(ctx->cli, args[1], ctx, &name);
1963                 if (!NT_STATUS_IS_OK(status)) {
1964                         d_printf("lsa_LookupSids - %s\n", nt_errstr(status));
1965                         return 1;
1966                 }
1967
1968                 d_printf("%s\n", name);
1969         }
1970
1971         return 0;
1972 }
1973
1974 /****************************************************************************
1975 show privileges for a user
1976 ****************************************************************************/
1977 static int cmd_privileges(struct smbclient_context *ctx, const char **args)
1978 {
1979         NTSTATUS status;
1980         struct dom_sid *sid;
1981         struct lsa_RightSet rights;
1982         unsigned i;
1983
1984         if (!args[1]) {
1985                 d_printf("privileges <sid|name>\n");
1986                 return 1;
1987         }
1988
1989         sid = dom_sid_parse_talloc(ctx, args[1]);
1990         if (sid == NULL) {
1991                 const char *sid_str;
1992                 status = smblsa_lookup_name(ctx->cli, args[1], ctx, &sid_str);
1993                 if (!NT_STATUS_IS_OK(status)) {
1994                         d_printf("lsa_LookupNames - %s\n", nt_errstr(status));
1995                         return 1;
1996                 }
1997                 sid = dom_sid_parse_talloc(ctx, sid_str);
1998         }
1999
2000         status = smblsa_sid_privileges(ctx->cli, sid, ctx, &rights);
2001         if (!NT_STATUS_IS_OK(status)) {
2002                 d_printf("lsa_EnumAccountRights - %s\n", nt_errstr(status));
2003                 return 1;
2004         }
2005
2006         for (i=0;i<rights.count;i++) {
2007                 d_printf("\t%s\n", rights.names[i].string);
2008         }
2009
2010         return 0;
2011 }
2012
2013
2014 /****************************************************************************
2015 add privileges for a user
2016 ****************************************************************************/
2017 static int cmd_addprivileges(struct smbclient_context *ctx, const char **args)
2018 {
2019         NTSTATUS status;
2020         struct dom_sid *sid;
2021         struct lsa_RightSet rights;
2022         int i;
2023
2024         if (!args[1]) {
2025                 d_printf("addprivileges <sid|name> <privilege...>\n");
2026                 return 1;
2027         }
2028
2029         sid = dom_sid_parse_talloc(ctx, args[1]);
2030         if (sid == NULL) {
2031                 const char *sid_str;
2032                 status = smblsa_lookup_name(ctx->cli, args[1], ctx, &sid_str);
2033                 if (!NT_STATUS_IS_OK(status)) {
2034                         d_printf("lsa_LookupNames - %s\n", nt_errstr(status));
2035                         return 1;
2036                 }
2037                 sid = dom_sid_parse_talloc(ctx, sid_str);
2038         }
2039
2040         ZERO_STRUCT(rights);
2041         for (i = 2; args[i]; i++) {
2042                 rights.names = talloc_realloc(ctx, rights.names, 
2043                                               struct lsa_StringLarge, rights.count+1);
2044                 rights.names[rights.count].string = talloc_strdup(ctx, args[i]);
2045                 rights.count++;
2046         }
2047
2048
2049         status = smblsa_sid_add_privileges(ctx->cli, sid, ctx, &rights);
2050         if (!NT_STATUS_IS_OK(status)) {
2051                 d_printf("lsa_AddAccountRights - %s\n", nt_errstr(status));
2052                 return 1;
2053         }
2054
2055         return 0;
2056 }
2057
2058 /****************************************************************************
2059 delete privileges for a user
2060 ****************************************************************************/
2061 static int cmd_delprivileges(struct smbclient_context *ctx, const char **args)
2062 {
2063         NTSTATUS status;
2064         struct dom_sid *sid;
2065         struct lsa_RightSet rights;
2066         int i;
2067
2068         if (!args[1]) {
2069                 d_printf("delprivileges <sid|name> <privilege...>\n");
2070                 return 1;
2071         }
2072
2073         sid = dom_sid_parse_talloc(ctx, args[1]);
2074         if (sid == NULL) {
2075                 const char *sid_str;
2076                 status = smblsa_lookup_name(ctx->cli, args[1], ctx, &sid_str);
2077                 if (!NT_STATUS_IS_OK(status)) {
2078                         d_printf("lsa_LookupNames - %s\n", nt_errstr(status));
2079                         return 1;
2080                 }
2081                 sid = dom_sid_parse_talloc(ctx, sid_str);
2082         }
2083
2084         ZERO_STRUCT(rights);
2085         for (i = 2; args[i]; i++) {
2086                 rights.names = talloc_realloc(ctx, rights.names, 
2087                                               struct lsa_StringLarge, rights.count+1);
2088                 rights.names[rights.count].string = talloc_strdup(ctx, args[i]);
2089                 rights.count++;
2090         }
2091
2092
2093         status = smblsa_sid_del_privileges(ctx->cli, sid, ctx, &rights);
2094         if (!NT_STATUS_IS_OK(status)) {
2095                 d_printf("lsa_RemoveAccountRights - %s\n", nt_errstr(status));
2096                 return 1;
2097         }
2098
2099         return 0;
2100 }
2101
2102
2103 /****************************************************************************
2104 ****************************************************************************/
2105 static int cmd_open(struct smbclient_context *ctx, const char **args)
2106 {
2107         char *mask;
2108         
2109         if (!args[1]) {
2110                 d_printf("open <filename>\n");
2111                 return 1;
2112         }
2113         mask = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2114
2115         smbcli_open(ctx->cli->tree, mask, O_RDWR, DENY_ALL);
2116
2117         return 0;
2118 }
2119
2120
2121 /****************************************************************************
2122 remove a directory
2123 ****************************************************************************/
2124 static int cmd_rmdir(struct smbclient_context *ctx, const char **args)
2125 {
2126         char *mask;
2127   
2128         if (!args[1]) {
2129                 d_printf("rmdir <dirname>\n");
2130                 return 1;
2131         }
2132         mask = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2133
2134         if (NT_STATUS_IS_ERR(smbcli_rmdir(ctx->cli->tree, mask))) {
2135                 d_printf("%s removing remote directory file %s\n",
2136                          smbcli_errstr(ctx->cli->tree),mask);
2137         }
2138         
2139         return 0;
2140 }
2141
2142 /****************************************************************************
2143  UNIX hardlink.
2144 ****************************************************************************/
2145 static int cmd_link(struct smbclient_context *ctx, const char **args)
2146 {
2147         char *src,*dest;
2148   
2149         if (!(ctx->cli->transport->negotiate.capabilities & CAP_UNIX)) {
2150                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2151                 return 1;
2152         }
2153
2154         
2155         if (!args[1] || !args[2]) {
2156                 d_printf("link <src> <dest>\n");
2157                 return 1;
2158         }
2159
2160         src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2161         dest = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[2]);
2162
2163         if (NT_STATUS_IS_ERR(smbcli_unix_hardlink(ctx->cli->tree, src, dest))) {
2164                 d_printf("%s linking files (%s -> %s)\n", smbcli_errstr(ctx->cli->tree), src, dest);
2165                 return 1;
2166         }  
2167
2168         return 0;
2169 }
2170
2171 /****************************************************************************
2172  UNIX symlink.
2173 ****************************************************************************/
2174
2175 static int cmd_symlink(struct smbclient_context *ctx, const char **args)
2176 {
2177         char *src,*dest;
2178   
2179         if (!(ctx->cli->transport->negotiate.capabilities & CAP_UNIX)) {
2180                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2181                 return 1;
2182         }
2183
2184         if (!args[1] || !args[2]) {
2185                 d_printf("symlink <src> <dest>\n");
2186                 return 1;
2187         }
2188
2189         src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2190         dest = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[2]);
2191
2192         if (NT_STATUS_IS_ERR(smbcli_unix_symlink(ctx->cli->tree, src, dest))) {
2193                 d_printf("%s symlinking files (%s -> %s)\n",
2194                         smbcli_errstr(ctx->cli->tree), src, dest);
2195                 return 1;
2196         } 
2197
2198         return 0;
2199 }
2200
2201 /****************************************************************************
2202  UNIX chmod.
2203 ****************************************************************************/
2204
2205 static int cmd_chmod(struct smbclient_context *ctx, const char **args)
2206 {
2207         char *src;
2208         mode_t mode;
2209   
2210         if (!(ctx->cli->transport->negotiate.capabilities & CAP_UNIX)) {
2211                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2212                 return 1;
2213         }
2214
2215         if (!args[1] || !args[2]) {
2216                 d_printf("chmod mode file\n");
2217                 return 1;
2218         }
2219
2220         src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[2]);
2221         
2222         mode = (mode_t)strtol(args[1], NULL, 8);
2223
2224         if (NT_STATUS_IS_ERR(smbcli_unix_chmod(ctx->cli->tree, src, mode))) {
2225                 d_printf("%s chmod file %s 0%o\n",
2226                         smbcli_errstr(ctx->cli->tree), src, (mode_t)mode);
2227                 return 1;
2228         } 
2229
2230         return 0;
2231 }
2232
2233 /****************************************************************************
2234  UNIX chown.
2235 ****************************************************************************/
2236
2237 static int cmd_chown(struct smbclient_context *ctx, const char **args)
2238 {
2239         char *src;
2240         uid_t uid;
2241         gid_t gid;
2242   
2243         if (!(ctx->cli->transport->negotiate.capabilities & CAP_UNIX)) {
2244                 d_printf("Server doesn't support UNIX CIFS calls.\n");
2245                 return 1;
2246         }
2247
2248         if (!args[1] || !args[2] || !args[3]) {
2249                 d_printf("chown uid gid file\n");
2250                 return 1;
2251         }
2252
2253         uid = (uid_t)atoi(args[1]);
2254         gid = (gid_t)atoi(args[2]);
2255         src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[3]);
2256
2257         if (NT_STATUS_IS_ERR(smbcli_unix_chown(ctx->cli->tree, src, uid, gid))) {
2258                 d_printf("%s chown file %s uid=%d, gid=%d\n",
2259                         smbcli_errstr(ctx->cli->tree), src, (int)uid, (int)gid);
2260                 return 1;
2261         } 
2262
2263         return 0;
2264 }
2265
2266 /****************************************************************************
2267 rename some files
2268 ****************************************************************************/
2269 static int cmd_rename(struct smbclient_context *ctx, const char **args)
2270 {
2271         char *src,*dest;
2272   
2273         if (!args[1] || !args[2]) {
2274                 d_printf("rename <src> <dest>\n");
2275                 return 1;
2276         }
2277
2278         src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2279         dest = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[2]);
2280
2281         if (NT_STATUS_IS_ERR(smbcli_rename(ctx->cli->tree, src, dest))) {
2282                 d_printf("%s renaming files\n",smbcli_errstr(ctx->cli->tree));
2283                 return 1;
2284         }
2285         
2286         return 0;
2287 }
2288
2289
2290 /****************************************************************************
2291 toggle the prompt flag
2292 ****************************************************************************/
2293 static int cmd_prompt(struct smbclient_context *ctx, const char **args)
2294 {
2295         ctx->prompt = !ctx->prompt;
2296         DEBUG(2,("prompting is now %s\n",ctx->prompt?"on":"off"));
2297         
2298         return 1;
2299 }
2300
2301
2302 /****************************************************************************
2303 set the newer than time
2304 ****************************************************************************/
2305 static int cmd_newer(struct smbclient_context *ctx, const char **args)
2306 {
2307         struct stat sbuf;
2308
2309         if (args[1] && (stat(args[1],&sbuf) == 0)) {
2310                 ctx->newer_than = sbuf.st_mtime;
2311                 DEBUG(1,("Getting files newer than %s",
2312                          asctime(localtime(&ctx->newer_than))));
2313         } else {
2314                 ctx->newer_than = 0;
2315         }
2316
2317         if (args[1] && ctx->newer_than == 0) {
2318                 d_printf("Error setting newer-than time\n");
2319                 return 1;
2320         }
2321
2322         return 0;
2323 }
2324
2325 /****************************************************************************
2326 set the archive level
2327 ****************************************************************************/
2328 static int cmd_archive(struct smbclient_context *ctx, const char **args)
2329 {
2330         if (args[1]) {
2331                 ctx->archive_level = atoi(args[1]);
2332         } else
2333                 d_printf("Archive level is %d\n",ctx->archive_level);
2334
2335         return 0;
2336 }
2337
2338 /****************************************************************************
2339 toggle the lowercaseflag
2340 ****************************************************************************/
2341 static int cmd_lowercase(struct smbclient_context *ctx, const char **args)
2342 {
2343         ctx->lowercase = !ctx->lowercase;
2344         DEBUG(2,("filename lowercasing is now %s\n",ctx->lowercase?"on":"off"));
2345
2346         return 0;
2347 }
2348
2349
2350
2351
2352 /****************************************************************************
2353 toggle the recurse flag
2354 ****************************************************************************/
2355 static int cmd_recurse(struct smbclient_context *ctx, const char **args)
2356 {
2357         ctx->recurse = !ctx->recurse;
2358         DEBUG(2,("directory recursion is now %s\n",ctx->recurse?"on":"off"));
2359
2360         return 0;
2361 }
2362
2363 /****************************************************************************
2364 toggle the translate flag
2365 ****************************************************************************/
2366 static int cmd_translate(struct smbclient_context *ctx, const char **args)
2367 {
2368         ctx->translation = !ctx->translation;
2369         DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
2370                  ctx->translation?"on":"off"));
2371
2372         return 0;
2373 }
2374
2375
2376 /****************************************************************************
2377 do a printmode command
2378 ****************************************************************************/
2379 static int cmd_printmode(struct smbclient_context *ctx, const char **args)
2380 {
2381         if (args[1]) {
2382                 if (strequal(args[1],"text")) {
2383                         ctx->printmode = 0;      
2384                 } else {
2385                         if (strequal(args[1],"graphics"))
2386                                 ctx->printmode = 1;
2387                         else
2388                                 ctx->printmode = atoi(args[1]);
2389                 }
2390         }
2391
2392         switch(ctx->printmode)
2393         {
2394                 case 0: 
2395                         DEBUG(2,("the printmode is now text\n"));
2396                         break;
2397                 case 1: 
2398                         DEBUG(2,("the printmode is now graphics\n"));
2399                         break;
2400                 default: 
2401                         DEBUG(2,("the printmode is now %d\n", ctx->printmode));
2402                         break;
2403         }
2404         
2405         return 0;
2406 }
2407
2408 /****************************************************************************
2409  do the lcd command
2410  ****************************************************************************/
2411 static int cmd_lcd(struct smbclient_context *ctx, const char **args)
2412 {
2413         char d[PATH_MAX];
2414         
2415         if (args[1]) 
2416                 chdir(args[1]);
2417         DEBUG(2,("the local directory is now %s\n",getcwd(d, PATH_MAX)));
2418
2419         return 0;
2420 }
2421
2422 /****************************************************************************
2423 history
2424 ****************************************************************************/
2425 static int cmd_history(struct smbclient_context *ctx, const char **args)
2426 {
2427 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
2428         HIST_ENTRY **hlist;
2429         int i;
2430
2431         hlist = history_list();
2432         
2433         for (i = 0; hlist && hlist[i]; i++) {
2434                 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
2435         }
2436 #else
2437         DEBUG(0,("no history without readline support\n"));
2438 #endif
2439
2440         return 0;
2441 }
2442
2443 /****************************************************************************
2444  get a file restarting at end of local file
2445  ****************************************************************************/
2446 static int cmd_reget(struct smbclient_context *ctx, const char **args)
2447 {
2448         char *local_name;
2449         char *remote_name;
2450
2451         if (!args[1]) {
2452                 d_printf("reget <filename>\n");
2453                 return 1;
2454         }
2455         remote_name = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, args[1]);
2456         dos_clean_name(remote_name);
2457         
2458         if (args[2]) 
2459                 local_name = talloc_strdup(ctx, args[2]);
2460         else
2461                 local_name = talloc_strdup(ctx, args[1]);
2462         
2463         return do_get(ctx, remote_name, local_name, True);
2464 }
2465
2466 /****************************************************************************
2467  put a file restarting at end of local file
2468  ****************************************************************************/
2469 static int cmd_reput(struct smbclient_context *ctx, const char **args)
2470 {
2471         char *local_name;
2472         char *remote_name;
2473         
2474         if (!args[1]) {
2475                 d_printf("reput <filename>\n");
2476                 return 1;
2477         }
2478         local_name = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, args[1]);
2479   
2480         if (!file_exist(local_name)) {
2481                 d_printf("%s does not exist\n", local_name);
2482                 return 1;
2483         }
2484
2485         if (args[2]) 
2486                 remote_name = talloc_strdup(ctx, args[2]);
2487         else
2488                 remote_name = talloc_strdup(ctx, args[1]);
2489         
2490         dos_clean_name(remote_name);
2491
2492         return do_put(ctx, remote_name, local_name, True);
2493 }
2494
2495
2496 /*
2497   return a string representing a share type
2498 */
2499 static const char *share_type_str(uint32_t type)
2500 {
2501         switch (type & 0xF) {
2502         case STYPE_DISKTREE: 
2503                 return "Disk";
2504         case STYPE_PRINTQ: 
2505                 return "Printer";
2506         case STYPE_DEVICE: 
2507                 return "Device";
2508         case STYPE_IPC: 
2509                 return "IPC";
2510         default:
2511                 return "Unknown";
2512         }
2513 }
2514
2515
2516 /*
2517   display a list of shares from a level 1 share enum
2518 */
2519 static void display_share_result(struct srvsvc_NetShareCtr1 *ctr1)
2520 {
2521         int i;
2522
2523         for (i=0;i<ctr1->count;i++) {
2524                 struct srvsvc_NetShareInfo1 *info = ctr1->array+i;
2525
2526                 printf("\t%-15s %-10.10s %s\n", 
2527                        info->name, 
2528                        share_type_str(info->type), 
2529                        info->comment);
2530         }
2531 }
2532
2533
2534
2535 /****************************************************************************
2536 try and browse available shares on a host
2537 ****************************************************************************/
2538 static BOOL browse_host(const char *query_host)
2539 {
2540         struct dcerpc_pipe *p;
2541         char *binding;
2542         NTSTATUS status;
2543         struct srvsvc_NetShareEnumAll r;
2544         uint32_t resume_handle = 0;
2545         TALLOC_CTX *mem_ctx = talloc_init("browse_host");
2546         struct srvsvc_NetShareCtr1 ctr1;
2547
2548         binding = talloc_asprintf(mem_ctx, "ncacn_np:%s", query_host);
2549
2550         status = dcerpc_pipe_connect(mem_ctx, &p, binding, 
2551                                          &dcerpc_table_srvsvc,
2552                                      cmdline_credentials, NULL);
2553         if (!NT_STATUS_IS_OK(status)) {
2554                 d_printf("Failed to connect to %s - %s\n", 
2555                          binding, nt_errstr(status));
2556                 talloc_free(mem_ctx);
2557                 return False;
2558         }
2559
2560         r.in.server_unc = talloc_asprintf(mem_ctx,"\\\\%s",dcerpc_server_name(p));
2561         r.in.level = 1;
2562         r.in.ctr.ctr1 = &ctr1;
2563         r.in.max_buffer = ~0;
2564         r.in.resume_handle = &resume_handle;
2565
2566         d_printf("\n\tSharename       Type       Comment\n");
2567         d_printf("\t---------       ----       -------\n");
2568
2569         do {
2570                 ZERO_STRUCT(ctr1);
2571                 status = dcerpc_srvsvc_NetShareEnumAll(p, mem_ctx, &r);
2572
2573                 if (NT_STATUS_IS_OK(status) && 
2574                     (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA) ||
2575                      W_ERROR_IS_OK(r.out.result)) &&
2576                     r.out.ctr.ctr1) {
2577                         display_share_result(r.out.ctr.ctr1);
2578                         resume_handle += r.out.ctr.ctr1->count;
2579                 }
2580         } while (NT_STATUS_IS_OK(status) && W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA));
2581
2582         talloc_free(mem_ctx);
2583
2584         if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
2585                 d_printf("Failed NetShareEnumAll %s - %s/%s\n", 
2586                          binding, nt_errstr(status), win_errstr(r.out.result));
2587                 return False;
2588         }
2589
2590         return False;
2591 }
2592
2593 /****************************************************************************
2594 try and browse available connections on a host
2595 ****************************************************************************/
2596 static BOOL list_servers(const char *wk_grp)
2597 {
2598         d_printf("REWRITE: list servers not implemented\n");
2599         return False;
2600 }
2601
2602 /* Some constants for completing filename arguments */
2603
2604 #define COMPL_NONE        0          /* No completions */
2605 #define COMPL_REMOTE      1          /* Complete remote filename */
2606 #define COMPL_LOCAL       2          /* Complete local filename */
2607
2608 static int cmd_help(struct smbclient_context *ctx, const char **args);
2609
2610 /* This defines the commands supported by this client.
2611  * NOTE: The "!" must be the last one in the list because it's fn pointer
2612  *       field is NULL, and NULL in that field is used in process_tok()
2613  *       (below) to indicate the end of the list.  crh
2614  */
2615 static struct
2616 {
2617   const char *name;
2618   int (*fn)(struct smbclient_context *ctx, const char **args);
2619   const char *description;
2620   char compl_args[2];      /* Completion argument info */
2621 } commands[] = 
2622 {
2623   {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2624   {"addprivileges",cmd_addprivileges,"<sid|name> <privilege...> add privileges for a user",{COMPL_NONE,COMPL_NONE}},
2625   {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
2626   {"acl",cmd_acl,"<file> show file ACL",{COMPL_NONE,COMPL_NONE}},
2627   {"allinfo",cmd_allinfo,"<file> show all possible info about a file",{COMPL_NONE,COMPL_NONE}},
2628   {"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}},
2629   {"cancel",cmd_rewrite,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
2630   {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
2631   {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
2632   {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
2633   {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2634   {"delprivileges",cmd_delprivileges,"<sid|name> <privilege...> remove privileges for a user",{COMPL_NONE,COMPL_NONE}},
2635   {"deltree",cmd_deltree,"<dir> delete a whole directory tree",{COMPL_REMOTE,COMPL_NONE}},
2636   {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2637   {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2638   {"eainfo",cmd_eainfo,"<file> show EA contents for a file",{COMPL_NONE,COMPL_NONE}},
2639   {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2640   {"fsinfo",cmd_fsinfo,"query file system info",{COMPL_NONE,COMPL_NONE}},
2641   {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
2642   {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2643   {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
2644   {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
2645   {"link",cmd_link,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
2646   {"lookup",cmd_lookup,"<sid|name> show SID for name or name for SID",{COMPL_NONE,COMPL_NONE}},
2647   {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},  
2648   {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2649   {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
2650   {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2651   {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
2652   {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2653   {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},  
2654   {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
2655   {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
2656   {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
2657   {"privileges",cmd_privileges,"<user> show privileges for a user",{COMPL_NONE,COMPL_NONE}},
2658   {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
2659   {"printmode",cmd_printmode,"<graphics or text> set the print mode",{COMPL_NONE,COMPL_NONE}},
2660   {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},  
2661   {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
2662   {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
2663   {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2664   {"queue",cmd_rewrite,"show the print queue",{COMPL_NONE,COMPL_NONE}},
2665   {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2666   {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2667   {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},  
2668   {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
2669   {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
2670   {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
2671   {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2672   {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2673   {"symlink",cmd_symlink,"<src> <dest> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
2674   {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
2675   
2676   /* Yes, this must be here, see crh's comment above. */
2677   {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
2678   {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
2679 };
2680
2681
2682 /*******************************************************************
2683   lookup a command string in the list of commands, including 
2684   abbreviations
2685   ******************************************************************/
2686 static int process_tok(const char *tok)
2687 {
2688         int i = 0, matches = 0;
2689         int cmd=0;
2690         int tok_len = strlen(tok);
2691         
2692         while (commands[i].fn != NULL) {
2693                 if (strequal(commands[i].name,tok)) {
2694                         matches = 1;
2695                         cmd = i;
2696                         break;
2697                 } else if (strncasecmp(commands[i].name, tok, tok_len) == 0) {
2698                         matches++;
2699                         cmd = i;
2700                 }
2701                 i++;
2702         }
2703   
2704         if (matches == 0)
2705                 return(-1);
2706         else if (matches == 1)
2707                 return(cmd);
2708         else
2709                 return(-2);
2710 }
2711
2712 /****************************************************************************
2713 help
2714 ****************************************************************************/
2715 static int cmd_help(struct smbclient_context *ctx, const char **args)
2716 {
2717         int i=0,j;
2718         
2719         if (args[1]) {
2720                 if ((i = process_tok(args[1])) >= 0)
2721                         d_printf("HELP %s:\n\t%s\n\n",commands[i].name,commands[i].description);
2722         } else {
2723                 while (commands[i].description) {
2724                         for (j=0; commands[i].description && (j<5); j++) {
2725                                 d_printf("%-15s",commands[i].name);
2726                                 i++;
2727                         }
2728                         d_printf("\n");
2729                 }
2730         }
2731         return 0;
2732 }
2733
2734 static int process_line(struct smbclient_context *ctx, const char *cline);
2735 /****************************************************************************
2736 process a -c command string
2737 ****************************************************************************/
2738 static int process_command_string(struct smbclient_context *ctx, const char *cmd)
2739 {
2740         const char **lines;
2741         int i, rc = 0;
2742
2743         lines = str_list_make(NULL, cmd, ";");
2744         for (i = 0; lines[i]; i++) {
2745                 rc |= process_line(ctx, lines[i]);
2746         }
2747         talloc_free(lines);
2748
2749         return rc;
2750 }       
2751
2752 #define MAX_COMPLETIONS 100
2753
2754 typedef struct {
2755         char *dirmask;
2756         char **matches;
2757         int count, samelen;
2758         const char *text;
2759         int len;
2760 } completion_remote_t;
2761
2762 static void completion_remote_filter(struct clilist_file_info *f, const char *mask, void *state)
2763 {
2764         completion_remote_t *info = (completion_remote_t *)state;
2765
2766         if ((info->count < MAX_COMPLETIONS - 1) && (strncmp(info->text, f->name, info->len) == 0) && (!ISDOT(f->name)) && (!ISDOTDOT(f->name))) {
2767                 if ((info->dirmask[0] == 0) && !(f->attrib & FILE_ATTRIBUTE_DIRECTORY))
2768                         info->matches[info->count] = strdup(f->name);
2769                 else {
2770                         char *tmp;
2771
2772                         if (info->dirmask[0] != 0)
2773                                 tmp = talloc_asprintf(NULL, "%s/%s", info->dirmask, f->name);
2774                         else
2775                                 tmp = talloc_strdup(NULL, f->name);
2776                         
2777                         if (f->attrib & FILE_ATTRIBUTE_DIRECTORY)
2778                                 tmp = talloc_append_string(NULL, tmp, "/");
2779                         info->matches[info->count] = tmp;
2780                 }
2781                 if (info->matches[info->count] == NULL)
2782                         return;
2783                 if (f->attrib & FILE_ATTRIBUTE_DIRECTORY)
2784                         smb_readline_ca_char(0);
2785
2786                 if (info->count == 1)
2787                         info->samelen = strlen(info->matches[info->count]);
2788                 else
2789                         while (strncmp(info->matches[info->count], info->matches[info->count-1], info->samelen) != 0)
2790                                 info->samelen--;
2791                 info->count++;
2792         }
2793 }
2794
2795 static char **remote_completion(const char *text, int len)
2796 {
2797         char *dirmask;
2798         int i;
2799         completion_remote_t info;
2800
2801         info.samelen = len;
2802         info.text = text;
2803         info.len = len;
2804  
2805         if (len >= PATH_MAX)
2806                 return(NULL);
2807
2808         info.matches = malloc_array_p(char *, MAX_COMPLETIONS);
2809         if (!info.matches) return NULL;
2810         info.matches[0] = NULL;
2811
2812         for (i = len-1; i >= 0; i--)
2813                 if ((text[i] == '/') || (text[i] == '\\'))
2814                         break;
2815         info.text = text+i+1;
2816         info.samelen = info.len = len-i-1;
2817
2818         if (i > 0) {
2819                 info.dirmask = talloc_strndup(NULL, text, i+1);
2820                 info.dirmask[i+1] = 0;
2821                 asprintf(&dirmask, "%s%*s*", rl_ctx->remote_cur_dir, i-1, text);
2822         } else
2823                 asprintf(&dirmask, "%s*", rl_ctx->remote_cur_dir);
2824
2825         if (smbcli_list(rl_ctx->cli->tree, dirmask, 
2826                      FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN, 
2827                      completion_remote_filter, &info) < 0)
2828                 goto cleanup;
2829
2830         if (info.count == 2)
2831                 info.matches[0] = strdup(info.matches[1]);
2832         else {
2833                 info.matches[0] = malloc(info.samelen+1);
2834                 if (!info.matches[0])
2835                         goto cleanup;
2836                 strncpy(info.matches[0], info.matches[1], info.samelen);
2837                 info.matches[0][info.samelen] = 0;
2838         }
2839         info.matches[info.count] = NULL;
2840         return info.matches;
2841
2842 cleanup:
2843         for (i = 0; i < info.count; i++)
2844                 free(info.matches[i]);
2845         free(info.matches);
2846         return NULL;
2847 }
2848
2849 static char **completion_fn(const char *text, int start, int end)
2850 {
2851         smb_readline_ca_char(' ');
2852
2853         if (start) {
2854                 const char *buf, *sp;
2855                 int i;
2856                 char compl_type;
2857
2858                 buf = smb_readline_get_line_buffer();
2859                 if (buf == NULL)
2860                         return NULL;
2861                 
2862                 sp = strchr(buf, ' ');
2863                 if (sp == NULL)
2864                         return NULL;
2865                 
2866                 for (i = 0; commands[i].name; i++)
2867                         if ((strncmp(commands[i].name, text, sp - buf) == 0) && (commands[i].name[sp - buf] == 0))
2868                                 break;
2869                 if (commands[i].name == NULL)
2870                         return NULL;
2871
2872                 while (*sp == ' ')
2873                         sp++;
2874
2875                 if (sp == (buf + start))
2876                         compl_type = commands[i].compl_args[0];
2877                 else
2878                         compl_type = commands[i].compl_args[1];
2879
2880                 if (compl_type == COMPL_REMOTE)
2881                         return remote_completion(text, end - start);
2882                 else /* fall back to local filename completion */
2883                         return NULL;
2884         } else {
2885                 char **matches;
2886                 int i, len, samelen = 0, count=1;
2887
2888                 matches = malloc_array_p(char *, MAX_COMPLETIONS);
2889                 if (!matches) return NULL;
2890                 matches[0] = NULL;
2891
2892                 len = strlen(text);
2893                 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
2894                         if (strncmp(text, commands[i].name, len) == 0) {
2895                                 matches[count] = strdup(commands[i].name);
2896                                 if (!matches[count])
2897                                         goto cleanup;
2898                                 if (count == 1)
2899                                         samelen = strlen(matches[count]);
2900                                 else
2901                                         while (strncmp(matches[count], matches[count-1], samelen) != 0)
2902                                                 samelen--;
2903                                 count++;
2904                         }
2905                 }
2906
2907                 switch (count) {
2908                 case 0: /* should never happen */
2909                 case 1:
2910                         goto cleanup;
2911                 case 2:
2912                         matches[0] = strdup(matches[1]);
2913                         break;
2914                 default:
2915                         matches[0] = malloc(samelen+1);
2916                         if (!matches[0])
2917                                 goto cleanup;
2918                         strncpy(matches[0], matches[1], samelen);
2919                         matches[0][samelen] = 0;
2920                 }
2921                 matches[count] = NULL;
2922                 return matches;
2923
2924 cleanup:
2925                 while (i >= 0) {
2926                         free(matches[i]);
2927                         i--;
2928                 }
2929                 free(matches);
2930                 return NULL;
2931         }
2932 }
2933
2934 /****************************************************************************
2935 make sure we swallow keepalives during idle time
2936 ****************************************************************************/
2937 static void readline_callback(void)
2938 {
2939         static time_t last_t;
2940         time_t t;
2941
2942         t = time(NULL);
2943
2944         if (t - last_t < 5) return;
2945
2946         last_t = t;
2947
2948         smbcli_transport_process(rl_ctx->cli->transport);
2949
2950         if (rl_ctx->cli->tree) {
2951                 smbcli_chkpath(rl_ctx->cli->tree, "\\");
2952         }
2953 }
2954
2955 static int process_line(struct smbclient_context *ctx, const char *cline)
2956 {
2957         const char **args;
2958         int i;
2959
2960         /* and get the first part of the command */
2961         args = str_list_make_shell(ctx, cline, NULL);
2962         if (!args || !args[0])
2963                 return 0;
2964
2965         if ((i = process_tok(args[0])) >= 0) {
2966                 i = commands[i].fn(ctx, args);
2967         } else if (i == -2) {
2968                 d_printf("%s: command abbreviation ambiguous\n",args[0]);
2969         } else {
2970                 d_printf("%s: command not found\n",args[0]);
2971         }
2972
2973         talloc_free(args);
2974
2975         return i;
2976 }
2977
2978 /****************************************************************************
2979 process commands on stdin
2980 ****************************************************************************/
2981 static int process_stdin(struct smbclient_context *ctx)
2982 {
2983         int rc = 0;
2984         while (1) {
2985                 /* display a prompt */
2986                 char *the_prompt = talloc_asprintf(ctx, "smb: %s> ", ctx->remote_cur_dir);
2987                 char *cline = smb_readline(the_prompt, readline_callback, completion_fn);
2988                 talloc_free(the_prompt);
2989                         
2990                 if (!cline) break;
2991                 
2992                 /* special case - first char is ! */
2993                 if (*cline == '!') {
2994                         system(cline + 1);
2995                         continue;
2996                 }
2997
2998                 rc |= process_command_string(ctx, cline); 
2999         }
3000
3001         return rc;
3002 }
3003
3004
3005 /***************************************************** 
3006 return a connection to a server
3007 *******************************************************/
3008 static struct smbclient_context *do_connect(TALLOC_CTX *mem_ctx, 
3009                                        const char *specified_server, const char *specified_share, struct cli_credentials *cred)
3010 {
3011         NTSTATUS status;
3012         struct smbclient_context *ctx = talloc_zero(mem_ctx, struct smbclient_context);
3013         char *server, *share;
3014
3015         if (!ctx) {
3016                 return NULL;
3017         }
3018
3019         rl_ctx = ctx; /* Ugly hack */
3020
3021         if (strncmp(specified_share, "\\\\", 2) == 0 ||
3022             strncmp(specified_share, "//", 2) == 0) {
3023                 smbcli_parse_unc(specified_share, ctx, &server, &share);
3024         } else {
3025                 share = talloc_strdup(ctx, specified_share);
3026                 server = talloc_strdup(ctx, specified_server);
3027         }
3028
3029         ctx->remote_cur_dir = talloc_strdup(ctx, "\\");
3030         
3031         status = smbcli_full_connection(ctx, &ctx->cli, server,
3032                                         share, NULL, cred, 
3033                                         cli_credentials_get_event_context(cred));
3034         if (!NT_STATUS_IS_OK(status)) {
3035                 d_printf("Connection to \\\\%s\\%s failed - %s\n", 
3036                          server, share, nt_errstr(status));
3037                 talloc_free(ctx);
3038                 return NULL;
3039         }
3040
3041         return ctx;
3042 }
3043
3044 /****************************************************************************
3045 handle a -L query
3046 ****************************************************************************/
3047 static int do_host_query(const char *query_host)
3048 {
3049         browse_host(query_host);
3050         list_servers(lp_workgroup());
3051         return(0);
3052 }
3053
3054
3055 /****************************************************************************
3056 handle a message operation
3057 ****************************************************************************/
3058 static int do_message_op(const char *desthost, const char *destip, int name_type)
3059 {
3060         struct nbt_name called, calling;
3061         const char *server_name;
3062         struct smbcli_state *cli;
3063
3064         make_nbt_name_client(&calling, lp_netbios_name());
3065
3066         nbt_choose_called_name(NULL, &called, desthost, name_type);
3067
3068         server_name = destip ? destip : desthost;
3069
3070         if (!(cli=smbcli_state_init(NULL)) || !smbcli_socket_connect(cli, server_name)) {
3071                 d_printf("Connection to %s failed\n", server_name);
3072                 return 1;
3073         }
3074
3075         if (!smbcli_transport_establish(cli, &calling, &called)) {
3076                 d_printf("session request failed\n");
3077                 talloc_free(cli);
3078                 return 1;
3079         }
3080
3081         send_message(cli, desthost);
3082         talloc_free(cli);
3083
3084         return 0;
3085 }
3086
3087
3088 /****************************************************************************
3089   main program
3090 ****************************************************************************/
3091  int main(int argc,char *argv[])
3092 {
3093         const char *base_directory = NULL;
3094         const char *dest_ip = NULL;
3095         int opt;
3096         const char *query_host = NULL;
3097         BOOL message = False;
3098         const char *desthost = NULL;
3099 #ifdef KANJI
3100         const char *term_code = KANJI;
3101 #else
3102         const char *term_code = "";
3103 #endif /* KANJI */
3104         poptContext pc;
3105         const char *service = NULL;
3106         int port = 0;
3107         char *p;
3108         int rc = 0;
3109         int name_type = 0x20;
3110         TALLOC_CTX *mem_ctx;
3111         struct smbclient_context *ctx;
3112         const char *cmdstr = NULL;
3113
3114         struct poptOption long_options[] = {
3115                 POPT_AUTOHELP
3116
3117                 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
3118                 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
3119                 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
3120                 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
3121                 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
3122                 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
3123                 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" }, 
3124                 { "send-buffer", 'b', POPT_ARG_INT, NULL, 'b', "Changes the transmit/send buffer", "BYTES" },
3125                 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
3126                 POPT_COMMON_SAMBA
3127                 POPT_COMMON_CONNECTION
3128                 POPT_COMMON_CREDENTIALS
3129                 POPT_COMMON_VERSION
3130                 { NULL }
3131         };
3132         
3133         mem_ctx = talloc_init("client.c/main");
3134         if (!mem_ctx) {
3135                 d_printf("\nclient.c: Not enough memory\n");
3136                 exit(1);
3137         }
3138
3139         pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
3140         poptSetOtherOptionHelp(pc, "[OPTIONS] service <password>");
3141
3142         while ((opt = poptGetNextOpt(pc)) != -1) {
3143                 switch (opt) {
3144                 case 'M':
3145                         /* Messages are sent to NetBIOS name type 0x3
3146                          * (Messenger Service).  Make sure we default
3147                          * to port 139 instead of port 445. srl,crh
3148                          */
3149                         name_type = 0x03; 
3150                         desthost = strdup(poptGetOptArg(pc));
3151                         if( 0 == port ) port = 139;
3152                         message = True;
3153                         break;
3154                 case 'I':
3155                         dest_ip = poptGetOptArg(pc);
3156                         break;
3157                 case 'L':
3158                         query_host = strdup(poptGetOptArg(pc));
3159                         break;
3160                 case 't':
3161                         term_code = strdup(poptGetOptArg(pc));
3162                         break;
3163                 case 'D':
3164                         base_directory = strdup(poptGetOptArg(pc));
3165                         break;
3166                 case 'b':
3167                         io_bufsize = MAX(1, atoi(poptGetOptArg(pc)));
3168                         break;
3169                 }
3170         }
3171
3172         gensec_init();
3173
3174         if(poptPeekArg(pc)) {
3175                 char *s = strdup(poptGetArg(pc)); 
3176
3177                 /* Convert any '/' characters in the service name to '\' characters */
3178                 string_replace(s, '/','\\');
3179
3180                 service = s;
3181
3182                 if (count_chars(s,'\\') < 3) {
3183                         d_printf("\n%s: Not enough '\\' characters in service\n",s);
3184                         poptPrintUsage(pc, stderr, 0);
3185                         exit(1);
3186                 }
3187         }
3188
3189         if (poptPeekArg(pc)) { 
3190                 cli_credentials_set_password(cmdline_credentials, poptGetArg(pc), CRED_SPECIFIED);
3191         }
3192
3193         /*init_names(); */
3194
3195         if (!query_host && !service && !message) {
3196                 poptPrintUsage(pc, stderr, 0);
3197                 exit(1);
3198         }
3199
3200         poptFreeContext(pc);
3201
3202         DEBUG( 3, ( "Client started (version %s).\n", SAMBA_VERSION_STRING ) );
3203
3204         if (query_host && (p=strchr_m(query_host,'#'))) {
3205                 *p = 0;
3206                 p++;
3207                 sscanf(p, "%x", &name_type);
3208         }
3209   
3210         if (query_host) {
3211                 return do_host_query(query_host);
3212         }
3213
3214         if (message) {
3215                 return do_message_op(desthost, dest_ip, name_type);
3216         }
3217         
3218
3219         ctx = do_connect(mem_ctx, desthost, service, cmdline_credentials);
3220         if (!ctx)
3221                 return 1;
3222
3223         if (base_directory) 
3224                 do_cd(ctx, base_directory);
3225         
3226         if (cmdstr) {
3227                 rc = process_command_string(ctx, cmdstr);
3228         } else {
3229                 rc = process_stdin(ctx);
3230         }
3231   
3232         talloc_free(mem_ctx);
3233
3234         return rc;
3235 }