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