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