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