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