wbinfo: Fix Coverity ID 242685 Resource leak
[Samba/gebeck_regimport.git] / source3 / client / client.c
blob3d36367539f3616b31cda39881db95a9311355b4
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
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.
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.
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/>.
24 #include "includes.h"
25 #include "system/filesys.h"
26 #include "popt_common.h"
27 #include "rpc_client/cli_pipe.h"
28 #include "client/client_proto.h"
29 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
30 #include "../lib/util/select.h"
31 #include "system/readline.h"
32 #include "../libcli/smbreadline/smbreadline.h"
33 #include "../libcli/security/security.h"
34 #include "system/select.h"
35 #include "libsmb/libsmb.h"
36 #include "libsmb/clirap.h"
37 #include "trans2.h"
38 #include "libsmb/nmblib.h"
39 #include "include/ntioctl.h"
41 #ifndef REGISTER
42 #define REGISTER 0
43 #endif
45 extern int do_smb_browse(void); /* mDNS browsing */
47 extern bool override_logfile;
48 extern char tar_type;
50 static int port = 0;
51 static char *service;
52 static char *desthost;
53 static bool grepable = false;
54 static char *cmdstr = NULL;
55 const char *cmd_ptr = NULL;
57 static int io_bufsize = 524288;
59 static int name_type = 0x20;
60 static int max_protocol = PROTOCOL_NT1;
62 static int process_tok(char *tok);
63 static int cmd_help(void);
65 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
67 /* 30 second timeout on most commands */
68 #define CLIENT_TIMEOUT (30*1000)
69 #define SHORT_TIMEOUT (5*1000)
71 /* value for unused fid field in trans2 secondary request */
72 #define FID_UNUSED (0xFFFF)
74 time_t newer_than = 0;
75 static int archive_level = 0;
77 static bool translation = false;
78 static bool have_ip;
80 /* clitar bits insert */
81 extern int blocksize;
82 extern bool tar_inc;
83 extern bool tar_reset;
84 /* clitar bits end */
86 static bool prompt = true;
88 static bool recurse = false;
89 static bool showacls = false;
90 bool lowercase = false;
91 static bool backup_intent = false;
93 static struct sockaddr_storage dest_ss;
94 static char dest_ss_str[INET6_ADDRSTRLEN];
96 #define SEPARATORS " \t\n\r"
98 static bool abort_mget = true;
100 /* timing globals */
101 uint64_t get_total_size = 0;
102 unsigned int get_total_time_ms = 0;
103 static uint64_t put_total_size = 0;
104 static unsigned int put_total_time_ms = 0;
106 /* totals globals */
107 static double dir_total;
109 /* encrypted state. */
110 static bool smb_encrypt;
112 /* root cli_state connection */
114 struct cli_state *cli;
116 static char CLI_DIRSEP_CHAR = '\\';
117 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
119 /* Authentication for client connections. */
120 struct user_auth_info *auth_info;
122 /* Accessor functions for directory paths. */
123 static char *fileselection;
124 static const char *client_get_fileselection(void)
126 if (fileselection) {
127 return fileselection;
129 return "";
132 static const char *client_set_fileselection(const char *new_fs)
134 SAFE_FREE(fileselection);
135 if (new_fs) {
136 fileselection = SMB_STRDUP(new_fs);
138 return client_get_fileselection();
141 static char *cwd;
142 static const char *client_get_cwd(void)
144 if (cwd) {
145 return cwd;
147 return CLI_DIRSEP_STR;
150 static const char *client_set_cwd(const char *new_cwd)
152 SAFE_FREE(cwd);
153 if (new_cwd) {
154 cwd = SMB_STRDUP(new_cwd);
156 return client_get_cwd();
159 static char *cur_dir;
160 const char *client_get_cur_dir(void)
162 if (cur_dir) {
163 return cur_dir;
165 return CLI_DIRSEP_STR;
168 const char *client_set_cur_dir(const char *newdir)
170 SAFE_FREE(cur_dir);
171 if (newdir) {
172 cur_dir = SMB_STRDUP(newdir);
174 return client_get_cur_dir();
177 /****************************************************************************
178 Put up a yes/no prompt.
179 ****************************************************************************/
181 static bool yesno(const char *p)
183 char ans[20];
184 printf("%s",p);
186 if (!fgets(ans,sizeof(ans)-1,stdin))
187 return(False);
189 if (*ans == 'y' || *ans == 'Y')
190 return(True);
192 return(False);
195 /****************************************************************************
196 Write to a local file with CR/LF->LF translation if appropriate. Return the
197 number taken from the buffer. This may not equal the number written.
198 ****************************************************************************/
200 static int writefile(int f, char *b, int n)
202 int i;
204 if (!translation) {
205 return write(f,b,n);
208 i = 0;
209 while (i < n) {
210 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
211 b++;i++;
213 if (write(f, b, 1) != 1) {
214 break;
216 b++;
217 i++;
220 return(i);
223 /****************************************************************************
224 Read from a file with LF->CR/LF translation if appropriate. Return the
225 number read. read approx n bytes.
226 ****************************************************************************/
228 static int readfile(uint8_t *b, int n, XFILE *f)
230 int i;
231 int c;
233 if (!translation)
234 return x_fread(b,1,n,f);
236 i = 0;
237 while (i < (n - 1) && (i < BUFFER_SIZE)) {
238 if ((c = x_getc(f)) == EOF) {
239 break;
242 if (c == '\n') { /* change all LFs to CR/LF */
243 b[i++] = '\r';
246 b[i++] = c;
249 return(i);
252 struct push_state {
253 XFILE *f;
254 off_t nread;
257 static size_t push_source(uint8_t *buf, size_t n, void *priv)
259 struct push_state *state = (struct push_state *)priv;
260 int result;
262 if (x_feof(state->f)) {
263 return 0;
266 result = readfile(buf, n, state->f);
267 state->nread += result;
268 return result;
271 /****************************************************************************
272 Send a message.
273 ****************************************************************************/
275 static void send_message(const char *username)
277 char buf[1600];
278 NTSTATUS status;
279 int i;
281 d_printf("Type your message, ending it with a Control-D\n");
283 i = 0;
284 while (i<sizeof(buf)-2) {
285 int c = fgetc(stdin);
286 if (c == EOF) {
287 break;
289 if (c == '\n') {
290 buf[i++] = '\r';
292 buf[i++] = c;
294 buf[i] = '\0';
296 status = cli_message(cli, desthost, username, buf);
297 if (!NT_STATUS_IS_OK(status)) {
298 d_fprintf(stderr, "cli_message returned %s\n",
299 nt_errstr(status));
303 /****************************************************************************
304 Check the space on a device.
305 ****************************************************************************/
307 static int do_dskattr(void)
309 int total, bsize, avail;
310 struct cli_state *targetcli = NULL;
311 char *targetpath = NULL;
312 TALLOC_CTX *ctx = talloc_tos();
313 NTSTATUS status;
315 status = cli_resolve_path(ctx, "", auth_info, cli,
316 client_get_cur_dir(), &targetcli,
317 &targetpath);
318 if (!NT_STATUS_IS_OK(status)) {
319 d_printf("Error in dskattr: %s\n", nt_errstr(status));
320 return 1;
323 status = cli_dskattr(targetcli, &bsize, &total, &avail);
324 if (!NT_STATUS_IS_OK(status)) {
325 d_printf("Error in dskattr: %s\n", nt_errstr(status));
326 return 1;
329 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
330 total, bsize, avail);
332 return 0;
335 /****************************************************************************
336 Show cd/pwd.
337 ****************************************************************************/
339 static int cmd_pwd(void)
341 d_printf("Current directory is %s",service);
342 d_printf("%s\n",client_get_cur_dir());
343 return 0;
346 /****************************************************************************
347 Ensure name has correct directory separators.
348 ****************************************************************************/
350 static void normalize_name(char *newdir)
352 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
353 string_replace(newdir,'/','\\');
357 /****************************************************************************
358 Change directory - inner section.
359 ****************************************************************************/
361 static int do_cd(const char *new_dir)
363 char *newdir = NULL;
364 char *saved_dir = NULL;
365 char *new_cd = NULL;
366 char *targetpath = NULL;
367 struct cli_state *targetcli = NULL;
368 SMB_STRUCT_STAT sbuf;
369 uint32 attributes;
370 int ret = 1;
371 TALLOC_CTX *ctx = talloc_stackframe();
372 NTSTATUS status;
374 newdir = talloc_strdup(ctx, new_dir);
375 if (!newdir) {
376 TALLOC_FREE(ctx);
377 return 1;
380 normalize_name(newdir);
382 /* Save the current directory in case the new directory is invalid */
384 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
385 if (!saved_dir) {
386 TALLOC_FREE(ctx);
387 return 1;
390 if (*newdir == CLI_DIRSEP_CHAR) {
391 client_set_cur_dir(newdir);
392 new_cd = newdir;
393 } else {
394 new_cd = talloc_asprintf(ctx, "%s%s",
395 client_get_cur_dir(),
396 newdir);
397 if (!new_cd) {
398 goto out;
402 /* Ensure cur_dir ends in a DIRSEP */
403 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
404 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
405 if (!new_cd) {
406 goto out;
409 client_set_cur_dir(new_cd);
411 new_cd = clean_name(ctx, new_cd);
412 client_set_cur_dir(new_cd);
414 status = cli_resolve_path(ctx, "", auth_info, cli, new_cd,
415 &targetcli, &targetpath);
416 if (!NT_STATUS_IS_OK(status)) {
417 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
418 client_set_cur_dir(saved_dir);
419 goto out;
422 if (strequal(targetpath,CLI_DIRSEP_STR )) {
423 TALLOC_FREE(ctx);
424 return 0;
427 /* Use a trans2_qpathinfo to test directories for modern servers.
428 Except Win9x doesn't support the qpathinfo_basic() call..... */
430 if (cli_state_protocol(targetcli) > PROTOCOL_LANMAN2 && !targetcli->win95) {
432 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
433 &attributes);
434 if (!NT_STATUS_IS_OK(status)) {
435 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
436 client_set_cur_dir(saved_dir);
437 goto out;
440 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
441 d_printf("cd %s: not a directory\n", new_cd);
442 client_set_cur_dir(saved_dir);
443 goto out;
445 } else {
447 targetpath = talloc_asprintf(ctx,
448 "%s%s",
449 targetpath,
450 CLI_DIRSEP_STR );
451 if (!targetpath) {
452 client_set_cur_dir(saved_dir);
453 goto out;
455 targetpath = clean_name(ctx, targetpath);
456 if (!targetpath) {
457 client_set_cur_dir(saved_dir);
458 goto out;
461 status = cli_chkpath(targetcli, targetpath);
462 if (!NT_STATUS_IS_OK(status)) {
463 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
464 client_set_cur_dir(saved_dir);
465 goto out;
469 ret = 0;
471 out:
473 TALLOC_FREE(ctx);
474 return ret;
477 /****************************************************************************
478 Change directory.
479 ****************************************************************************/
481 static int cmd_cd(void)
483 char *buf = NULL;
484 int rc = 0;
486 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
487 rc = do_cd(buf);
488 } else {
489 d_printf("Current directory is %s\n",client_get_cur_dir());
492 return rc;
495 /****************************************************************************
496 Change directory.
497 ****************************************************************************/
499 static int cmd_cd_oneup(void)
501 return do_cd("..");
504 /*******************************************************************
505 Decide if a file should be operated on.
506 ********************************************************************/
508 static bool do_this_one(struct file_info *finfo)
510 if (!finfo->name) {
511 return false;
514 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
515 return true;
518 if (*client_get_fileselection() &&
519 !mask_match(finfo->name,client_get_fileselection(),false)) {
520 DEBUG(3,("mask_match %s failed\n", finfo->name));
521 return false;
524 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
525 DEBUG(3,("newer_than %s failed\n", finfo->name));
526 return false;
529 if ((archive_level==1 || archive_level==2) && !(finfo->mode & FILE_ATTRIBUTE_ARCHIVE)) {
530 DEBUG(3,("archive %s failed\n", finfo->name));
531 return false;
534 return true;
537 /****************************************************************************
538 Display info about a file.
539 ****************************************************************************/
541 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
542 const char *dir)
544 time_t t;
545 TALLOC_CTX *ctx = talloc_tos();
546 NTSTATUS status = NT_STATUS_OK;
548 if (!do_this_one(finfo)) {
549 return NT_STATUS_OK;
552 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
553 if (!showacls) {
554 d_printf(" %-30s%7.7s %8.0f %s",
555 finfo->name,
556 attrib_string(talloc_tos(), finfo->mode),
557 (double)finfo->size,
558 time_to_asc(t));
559 dir_total += finfo->size;
560 } else {
561 char *afname = NULL;
562 uint16_t fnum;
564 /* skip if this is . or .. */
565 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
566 return NT_STATUS_OK;
567 /* create absolute filename for cli_ntcreate() FIXME */
568 afname = talloc_asprintf(ctx,
569 "%s%s%s",
570 dir,
571 CLI_DIRSEP_STR,
572 finfo->name);
573 if (!afname) {
574 return NT_STATUS_NO_MEMORY;
576 /* print file meta date header */
577 d_printf( "FILENAME:%s\n", finfo->name);
578 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo->mode));
579 d_printf( "SIZE:%.0f\n", (double)finfo->size);
580 d_printf( "MTIME:%s", time_to_asc(t));
581 status = cli_ntcreate(cli_state, afname, 0,
582 CREATE_ACCESS_READ, 0,
583 FILE_SHARE_READ|FILE_SHARE_WRITE,
584 FILE_OPEN, 0x0, 0x0, &fnum);
585 if (!NT_STATUS_IS_OK(status)) {
586 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
587 afname, nt_errstr(status)));
588 } else {
589 struct security_descriptor *sd = NULL;
590 status = cli_query_secdesc(cli_state, fnum,
591 ctx, &sd);
592 if (!NT_STATUS_IS_OK(status)) {
593 DEBUG( 0, ("display_finfo() failed to "
594 "get security descriptor: %s",
595 nt_errstr(status)));
596 } else {
597 display_sec_desc(sd);
599 TALLOC_FREE(sd);
601 TALLOC_FREE(afname);
603 return status;
606 /****************************************************************************
607 Accumulate size of a file.
608 ****************************************************************************/
610 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
611 const char *dir)
613 if (do_this_one(finfo)) {
614 dir_total += finfo->size;
616 return NT_STATUS_OK;
619 static bool do_list_recurse;
620 static bool do_list_dirs;
621 static char *do_list_queue = 0;
622 static long do_list_queue_size = 0;
623 static long do_list_queue_start = 0;
624 static long do_list_queue_end = 0;
625 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
626 const char *dir);
628 /****************************************************************************
629 Functions for do_list_queue.
630 ****************************************************************************/
633 * The do_list_queue is a NUL-separated list of strings stored in a
634 * char*. Since this is a FIFO, we keep track of the beginning and
635 * ending locations of the data in the queue. When we overflow, we
636 * double the size of the char*. When the start of the data passes
637 * the midpoint, we move everything back. This is logically more
638 * complex than a linked list, but easier from a memory management
639 * angle. In any memory error condition, do_list_queue is reset.
640 * Functions check to ensure that do_list_queue is non-NULL before
641 * accessing it.
644 static void reset_do_list_queue(void)
646 SAFE_FREE(do_list_queue);
647 do_list_queue_size = 0;
648 do_list_queue_start = 0;
649 do_list_queue_end = 0;
652 static void init_do_list_queue(void)
654 reset_do_list_queue();
655 do_list_queue_size = 1024;
656 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
657 if (do_list_queue == 0) {
658 d_printf("malloc fail for size %d\n",
659 (int)do_list_queue_size);
660 reset_do_list_queue();
661 } else {
662 memset(do_list_queue, 0, do_list_queue_size);
666 static void adjust_do_list_queue(void)
669 * If the starting point of the queue is more than half way through,
670 * move everything toward the beginning.
673 if (do_list_queue == NULL) {
674 DEBUG(4,("do_list_queue is empty\n"));
675 do_list_queue_start = do_list_queue_end = 0;
676 return;
679 if (do_list_queue_start == do_list_queue_end) {
680 DEBUG(4,("do_list_queue is empty\n"));
681 do_list_queue_start = do_list_queue_end = 0;
682 *do_list_queue = '\0';
683 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
684 DEBUG(4,("sliding do_list_queue backward\n"));
685 memmove(do_list_queue,
686 do_list_queue + do_list_queue_start,
687 do_list_queue_end - do_list_queue_start);
688 do_list_queue_end -= do_list_queue_start;
689 do_list_queue_start = 0;
693 static void add_to_do_list_queue(const char *entry)
695 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
696 while (new_end > do_list_queue_size) {
697 do_list_queue_size *= 2;
698 DEBUG(4,("enlarging do_list_queue to %d\n",
699 (int)do_list_queue_size));
700 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
701 if (! do_list_queue) {
702 d_printf("failure enlarging do_list_queue to %d bytes\n",
703 (int)do_list_queue_size);
704 reset_do_list_queue();
705 } else {
706 memset(do_list_queue + do_list_queue_size / 2,
707 0, do_list_queue_size / 2);
710 if (do_list_queue) {
711 strlcpy_base(do_list_queue + do_list_queue_end,
712 entry, do_list_queue, do_list_queue_size);
713 do_list_queue_end = new_end;
714 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
715 entry, (int)do_list_queue_start, (int)do_list_queue_end));
719 static char *do_list_queue_head(void)
721 return do_list_queue + do_list_queue_start;
724 static void remove_do_list_queue_head(void)
726 if (do_list_queue_end > do_list_queue_start) {
727 do_list_queue_start += strlen(do_list_queue_head()) + 1;
728 adjust_do_list_queue();
729 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
730 (int)do_list_queue_start, (int)do_list_queue_end));
734 static int do_list_queue_empty(void)
736 return (! (do_list_queue && *do_list_queue));
739 /****************************************************************************
740 A helper for do_list.
741 ****************************************************************************/
743 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
744 const char *mask, void *state)
746 struct cli_state *cli_state = (struct cli_state *)state;
747 TALLOC_CTX *ctx = talloc_tos();
748 char *dir = NULL;
749 char *dir_end = NULL;
750 NTSTATUS status = NT_STATUS_OK;
752 /* Work out the directory. */
753 dir = talloc_strdup(ctx, mask);
754 if (!dir) {
755 return NT_STATUS_NO_MEMORY;
757 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
758 *dir_end = '\0';
761 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
762 if (do_list_dirs && do_this_one(f)) {
763 status = do_list_fn(cli_state, f, dir);
764 if (!NT_STATUS_IS_OK(status)) {
765 return status;
768 if (do_list_recurse &&
769 f->name &&
770 !strequal(f->name,".") &&
771 !strequal(f->name,"..")) {
772 char *mask2 = NULL;
773 char *p = NULL;
775 if (!f->name[0]) {
776 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
777 TALLOC_FREE(dir);
778 return NT_STATUS_UNSUCCESSFUL;
781 mask2 = talloc_asprintf(ctx,
782 "%s%s",
783 mntpoint,
784 mask);
785 if (!mask2) {
786 TALLOC_FREE(dir);
787 return NT_STATUS_NO_MEMORY;
789 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
790 if (p) {
791 p[1] = 0;
792 } else {
793 mask2[0] = '\0';
795 mask2 = talloc_asprintf_append(mask2,
796 "%s%s*",
797 f->name,
798 CLI_DIRSEP_STR);
799 if (!mask2) {
800 TALLOC_FREE(dir);
801 return NT_STATUS_NO_MEMORY;
803 add_to_do_list_queue(mask2);
804 TALLOC_FREE(mask2);
806 TALLOC_FREE(dir);
807 return NT_STATUS_OK;
810 if (do_this_one(f)) {
811 status = do_list_fn(cli_state, f, dir);
813 TALLOC_FREE(dir);
814 return status;
817 /****************************************************************************
818 A wrapper around cli_list that adds recursion.
819 ****************************************************************************/
821 NTSTATUS do_list(const char *mask,
822 uint16 attribute,
823 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
824 const char *dir),
825 bool rec,
826 bool dirs)
828 static int in_do_list = 0;
829 TALLOC_CTX *ctx = talloc_tos();
830 struct cli_state *targetcli = NULL;
831 char *targetpath = NULL;
832 NTSTATUS ret_status = NT_STATUS_OK;
833 NTSTATUS status = NT_STATUS_OK;
835 if (in_do_list && rec) {
836 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
837 exit(1);
840 in_do_list = 1;
842 do_list_recurse = rec;
843 do_list_dirs = dirs;
844 do_list_fn = fn;
846 if (rec) {
847 init_do_list_queue();
848 add_to_do_list_queue(mask);
850 while (!do_list_queue_empty()) {
852 * Need to copy head so that it doesn't become
853 * invalid inside the call to cli_list. This
854 * would happen if the list were expanded
855 * during the call.
856 * Fix from E. Jay Berkenbilt (ejb@ql.org)
858 char *head = talloc_strdup(ctx, do_list_queue_head());
860 if (!head) {
861 return NT_STATUS_NO_MEMORY;
864 /* check for dfs */
866 status = cli_resolve_path(ctx, "", auth_info, cli,
867 head, &targetcli,
868 &targetpath);
869 if (!NT_STATUS_IS_OK(status)) {
870 d_printf("do_list: [%s] %s\n", head,
871 nt_errstr(status));
872 remove_do_list_queue_head();
873 continue;
876 status = cli_list(targetcli, targetpath, attribute,
877 do_list_helper, targetcli);
878 if (!NT_STATUS_IS_OK(status)) {
879 d_printf("%s listing %s\n",
880 nt_errstr(status), targetpath);
881 ret_status = status;
883 remove_do_list_queue_head();
884 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
885 char *next_file = do_list_queue_head();
886 char *save_ch = 0;
887 if ((strlen(next_file) >= 2) &&
888 (next_file[strlen(next_file) - 1] == '*') &&
889 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
890 save_ch = next_file +
891 strlen(next_file) - 2;
892 *save_ch = '\0';
893 if (showacls) {
894 /* cwd is only used if showacls is on */
895 client_set_cwd(next_file);
898 if (!showacls) /* don't disturbe the showacls output */
899 d_printf("\n%s\n",next_file);
900 if (save_ch) {
901 *save_ch = CLI_DIRSEP_CHAR;
904 TALLOC_FREE(head);
905 TALLOC_FREE(targetpath);
907 } else {
908 /* check for dfs */
909 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
910 &targetcli, &targetpath);
911 if (NT_STATUS_IS_OK(status)) {
912 status = cli_list(targetcli, targetpath, attribute,
913 do_list_helper, targetcli);
914 if (!NT_STATUS_IS_OK(status)) {
915 d_printf("%s listing %s\n",
916 nt_errstr(status), targetpath);
917 ret_status = status;
919 TALLOC_FREE(targetpath);
920 } else {
921 d_printf("do_list: [%s] %s\n", mask, nt_errstr(status));
922 ret_status = status;
926 in_do_list = 0;
927 reset_do_list_queue();
928 return ret_status;
931 /****************************************************************************
932 Get a directory listing.
933 ****************************************************************************/
935 static int cmd_dir(void)
937 TALLOC_CTX *ctx = talloc_tos();
938 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
939 char *mask = NULL;
940 char *buf = NULL;
941 int rc = 1;
942 NTSTATUS status;
944 dir_total = 0;
945 mask = talloc_strdup(ctx, client_get_cur_dir());
946 if (!mask) {
947 return 1;
950 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
951 normalize_name(buf);
952 if (*buf == CLI_DIRSEP_CHAR) {
953 mask = talloc_strdup(ctx, buf);
954 } else {
955 mask = talloc_asprintf_append(mask, "%s", buf);
957 } else {
958 mask = talloc_asprintf_append(mask, "*");
960 if (!mask) {
961 return 1;
964 if (showacls) {
965 /* cwd is only used if showacls is on */
966 client_set_cwd(client_get_cur_dir());
969 status = do_list(mask, attribute, display_finfo, recurse, true);
970 if (!NT_STATUS_IS_OK(status)) {
971 return 1;
974 rc = do_dskattr();
976 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
978 return rc;
981 /****************************************************************************
982 Get a directory listing.
983 ****************************************************************************/
985 static int cmd_du(void)
987 TALLOC_CTX *ctx = talloc_tos();
988 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
989 char *mask = NULL;
990 char *buf = NULL;
991 NTSTATUS status;
992 int rc = 1;
994 dir_total = 0;
995 mask = talloc_strdup(ctx, client_get_cur_dir());
996 if (!mask) {
997 return 1;
999 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
1000 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
1001 if (!mask) {
1002 return 1;
1006 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1007 normalize_name(buf);
1008 if (*buf == CLI_DIRSEP_CHAR) {
1009 mask = talloc_strdup(ctx, buf);
1010 } else {
1011 mask = talloc_asprintf_append(mask, "%s", buf);
1013 } else {
1014 mask = talloc_strdup(ctx, "*");
1017 status = do_list(mask, attribute, do_du, recurse, true);
1018 if (!NT_STATUS_IS_OK(status)) {
1019 return 1;
1022 rc = do_dskattr();
1024 d_printf("Total number of bytes: %.0f\n", dir_total);
1026 return rc;
1029 static int cmd_echo(void)
1031 TALLOC_CTX *ctx = talloc_tos();
1032 char *num;
1033 char *data;
1034 NTSTATUS status;
1036 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1037 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1038 d_printf("echo <num> <data>\n");
1039 return 1;
1042 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1044 if (!NT_STATUS_IS_OK(status)) {
1045 d_printf("echo failed: %s\n", nt_errstr(status));
1046 return 1;
1049 return 0;
1052 /****************************************************************************
1053 Get a file from rname to lname
1054 ****************************************************************************/
1056 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1058 int *pfd = (int *)priv;
1059 if (writefile(*pfd, buf, n) == -1) {
1060 return map_nt_error_from_unix(errno);
1062 return NT_STATUS_OK;
1065 static int do_get(const char *rname, const char *lname_in, bool reget)
1067 TALLOC_CTX *ctx = talloc_tos();
1068 int handle = 0;
1069 uint16_t fnum;
1070 bool newhandle = false;
1071 struct timespec tp_start;
1072 uint16 attr;
1073 off_t size;
1074 off_t start = 0;
1075 off_t nread = 0;
1076 int rc = 0;
1077 struct cli_state *targetcli = NULL;
1078 char *targetname = NULL;
1079 char *lname = NULL;
1080 NTSTATUS status;
1082 lname = talloc_strdup(ctx, lname_in);
1083 if (!lname) {
1084 return 1;
1087 if (lowercase) {
1088 strlower_m(lname);
1091 status = cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli,
1092 &targetname);
1093 if (!NT_STATUS_IS_OK(status)) {
1094 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1095 return 1;
1098 clock_gettime_mono(&tp_start);
1100 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1101 if (!NT_STATUS_IS_OK(status)) {
1102 d_printf("%s opening remote file %s\n", nt_errstr(status),
1103 rname);
1104 return 1;
1107 if(!strcmp(lname,"-")) {
1108 handle = fileno(stdout);
1109 } else {
1110 if (reget) {
1111 handle = open(lname, O_WRONLY|O_CREAT, 0644);
1112 if (handle >= 0) {
1113 start = lseek(handle, 0, SEEK_END);
1114 if (start == -1) {
1115 d_printf("Error seeking local file\n");
1116 return 1;
1119 } else {
1120 handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1122 newhandle = true;
1124 if (handle < 0) {
1125 d_printf("Error opening local file %s\n",lname);
1126 return 1;
1130 status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1131 NULL, NULL, NULL);
1132 if (!NT_STATUS_IS_OK(status)) {
1133 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1134 NULL);
1135 if(!NT_STATUS_IS_OK(status)) {
1136 d_printf("getattrib: %s\n", nt_errstr(status));
1137 return 1;
1141 DEBUG(1,("getting file %s of size %.0f as %s ",
1142 rname, (double)size, lname));
1144 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1145 writefile_sink, (void *)&handle, &nread);
1146 if (!NT_STATUS_IS_OK(status)) {
1147 d_fprintf(stderr, "parallel_read returned %s\n",
1148 nt_errstr(status));
1149 cli_close(targetcli, fnum);
1150 return 1;
1153 status = cli_close(targetcli, fnum);
1154 if (!NT_STATUS_IS_OK(status)) {
1155 d_printf("Error %s closing remote file\n", nt_errstr(status));
1156 rc = 1;
1159 if (newhandle) {
1160 close(handle);
1163 if (archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
1164 cli_setatr(cli, rname, attr & ~(uint16)FILE_ATTRIBUTE_ARCHIVE, 0);
1168 struct timespec tp_end;
1169 int this_time;
1171 clock_gettime_mono(&tp_end);
1172 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1173 get_total_time_ms += this_time;
1174 get_total_size += nread;
1176 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1177 nread / (1.024*this_time + 1.0e-4),
1178 get_total_size / (1.024*get_total_time_ms)));
1181 TALLOC_FREE(targetname);
1182 return rc;
1185 /****************************************************************************
1186 Get a file.
1187 ****************************************************************************/
1189 static int cmd_get(void)
1191 TALLOC_CTX *ctx = talloc_tos();
1192 char *lname = NULL;
1193 char *rname = NULL;
1194 char *fname = NULL;
1196 rname = talloc_strdup(ctx, client_get_cur_dir());
1197 if (!rname) {
1198 return 1;
1201 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1202 d_printf("get <filename> [localname]\n");
1203 return 1;
1205 rname = talloc_asprintf_append(rname, "%s", fname);
1206 if (!rname) {
1207 return 1;
1209 rname = clean_name(ctx, rname);
1210 if (!rname) {
1211 return 1;
1214 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1215 if (!lname) {
1216 lname = fname;
1219 return do_get(rname, lname, false);
1222 /****************************************************************************
1223 Do an mget operation on one file.
1224 ****************************************************************************/
1226 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1227 const char *dir)
1229 TALLOC_CTX *ctx = talloc_tos();
1230 NTSTATUS status = NT_STATUS_OK;
1231 char *rname = NULL;
1232 char *quest = NULL;
1233 char *saved_curdir = NULL;
1234 char *mget_mask = NULL;
1235 char *new_cd = NULL;
1237 if (!finfo->name) {
1238 return NT_STATUS_OK;
1241 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1242 return NT_STATUS_OK;
1244 if (abort_mget) {
1245 d_printf("mget aborted\n");
1246 return NT_STATUS_UNSUCCESSFUL;
1249 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
1250 if (asprintf(&quest,
1251 "Get directory %s? ",finfo->name) < 0) {
1252 return NT_STATUS_NO_MEMORY;
1254 } else {
1255 if (asprintf(&quest,
1256 "Get file %s? ",finfo->name) < 0) {
1257 return NT_STATUS_NO_MEMORY;
1261 if (prompt && !yesno(quest)) {
1262 SAFE_FREE(quest);
1263 return NT_STATUS_OK;
1265 SAFE_FREE(quest);
1267 if (!(finfo->mode & FILE_ATTRIBUTE_DIRECTORY)) {
1268 rname = talloc_asprintf(ctx,
1269 "%s%s",
1270 client_get_cur_dir(),
1271 finfo->name);
1272 if (!rname) {
1273 return NT_STATUS_NO_MEMORY;
1275 do_get(rname, finfo->name, false);
1276 TALLOC_FREE(rname);
1277 return NT_STATUS_OK;
1280 /* handle directories */
1281 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1282 if (!saved_curdir) {
1283 return NT_STATUS_NO_MEMORY;
1286 new_cd = talloc_asprintf(ctx,
1287 "%s%s%s",
1288 client_get_cur_dir(),
1289 finfo->name,
1290 CLI_DIRSEP_STR);
1291 if (!new_cd) {
1292 return NT_STATUS_NO_MEMORY;
1294 client_set_cur_dir(new_cd);
1296 string_replace(finfo->name,'\\','/');
1297 if (lowercase) {
1298 strlower_m(finfo->name);
1301 if (!directory_exist(finfo->name) &&
1302 mkdir(finfo->name,0777) != 0) {
1303 d_printf("failed to create directory %s\n",finfo->name);
1304 client_set_cur_dir(saved_curdir);
1305 return map_nt_error_from_unix(errno);
1308 if (chdir(finfo->name) != 0) {
1309 d_printf("failed to chdir to directory %s\n",finfo->name);
1310 client_set_cur_dir(saved_curdir);
1311 return map_nt_error_from_unix(errno);
1314 mget_mask = talloc_asprintf(ctx,
1315 "%s*",
1316 client_get_cur_dir());
1318 if (!mget_mask) {
1319 return NT_STATUS_NO_MEMORY;
1322 status = do_list(mget_mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,do_mget,false, true);
1323 if (!NT_STATUS_IS_OK(status)) {
1324 return status;
1327 if (chdir("..") == -1) {
1328 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1329 strerror(errno) );
1330 return map_nt_error_from_unix(errno);
1332 client_set_cur_dir(saved_curdir);
1333 TALLOC_FREE(mget_mask);
1334 TALLOC_FREE(saved_curdir);
1335 TALLOC_FREE(new_cd);
1336 return NT_STATUS_OK;
1339 /****************************************************************************
1340 View the file using the pager.
1341 ****************************************************************************/
1343 static int cmd_more(void)
1345 TALLOC_CTX *ctx = talloc_tos();
1346 char *rname = NULL;
1347 char *fname = NULL;
1348 char *lname = NULL;
1349 char *pager_cmd = NULL;
1350 const char *pager;
1351 int fd;
1352 int rc = 0;
1354 rname = talloc_strdup(ctx, client_get_cur_dir());
1355 if (!rname) {
1356 return 1;
1359 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1360 if (!lname) {
1361 return 1;
1363 fd = mkstemp(lname);
1364 if (fd == -1) {
1365 d_printf("failed to create temporary file for more\n");
1366 return 1;
1368 close(fd);
1370 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1371 d_printf("more <filename>\n");
1372 unlink(lname);
1373 return 1;
1375 rname = talloc_asprintf_append(rname, "%s", fname);
1376 if (!rname) {
1377 return 1;
1379 rname = clean_name(ctx,rname);
1380 if (!rname) {
1381 return 1;
1384 rc = do_get(rname, lname, false);
1386 pager=getenv("PAGER");
1388 pager_cmd = talloc_asprintf(ctx,
1389 "%s %s",
1390 (pager? pager:PAGER),
1391 lname);
1392 if (!pager_cmd) {
1393 return 1;
1395 if (system(pager_cmd) == -1) {
1396 d_printf("system command '%s' returned -1\n",
1397 pager_cmd);
1399 unlink(lname);
1401 return rc;
1404 /****************************************************************************
1405 Do a mget command.
1406 ****************************************************************************/
1408 static int cmd_mget(void)
1410 TALLOC_CTX *ctx = talloc_tos();
1411 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1412 char *mget_mask = NULL;
1413 char *buf = NULL;
1414 NTSTATUS status = NT_STATUS_OK;
1416 if (recurse) {
1417 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1420 abort_mget = false;
1422 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1424 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1425 if (!mget_mask) {
1426 return 1;
1428 if (*buf == CLI_DIRSEP_CHAR) {
1429 mget_mask = talloc_strdup(ctx, buf);
1430 } else {
1431 mget_mask = talloc_asprintf_append(mget_mask,
1432 "%s", buf);
1434 if (!mget_mask) {
1435 return 1;
1437 status = do_list(mget_mask, attribute, do_mget, false, true);
1438 if (!NT_STATUS_IS_OK(status)) {
1439 return 1;
1443 if (mget_mask == NULL) {
1444 d_printf("nothing to mget\n");
1445 return 0;
1448 if (!*mget_mask) {
1449 mget_mask = talloc_asprintf(ctx,
1450 "%s*",
1451 client_get_cur_dir());
1452 if (!mget_mask) {
1453 return 1;
1455 status = do_list(mget_mask, attribute, do_mget, false, true);
1456 if (!NT_STATUS_IS_OK(status)) {
1457 return 1;
1461 return 0;
1464 /****************************************************************************
1465 Make a directory of name "name".
1466 ****************************************************************************/
1468 static bool do_mkdir(const char *name)
1470 TALLOC_CTX *ctx = talloc_tos();
1471 struct cli_state *targetcli;
1472 char *targetname = NULL;
1473 NTSTATUS status;
1475 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
1476 &targetname);
1477 if (!NT_STATUS_IS_OK(status)) {
1478 d_printf("mkdir %s: %s\n", name, nt_errstr(status));
1479 return false;
1482 status = cli_mkdir(targetcli, targetname);
1483 if (!NT_STATUS_IS_OK(status)) {
1484 d_printf("%s making remote directory %s\n",
1485 nt_errstr(status),name);
1486 return false;
1489 return true;
1492 /****************************************************************************
1493 Show 8.3 name of a file.
1494 ****************************************************************************/
1496 static bool do_altname(const char *name)
1498 fstring altname;
1499 NTSTATUS status;
1501 status = cli_qpathinfo_alt_name(cli, name, altname);
1502 if (!NT_STATUS_IS_OK(status)) {
1503 d_printf("%s getting alt name for %s\n",
1504 nt_errstr(status),name);
1505 return false;
1507 d_printf("%s\n", altname);
1509 return true;
1512 /****************************************************************************
1513 Exit client.
1514 ****************************************************************************/
1516 static int cmd_quit(void)
1518 cli_shutdown(cli);
1519 exit(0);
1520 /* NOTREACHED */
1521 return 0;
1524 /****************************************************************************
1525 Make a directory.
1526 ****************************************************************************/
1528 static int cmd_mkdir(void)
1530 TALLOC_CTX *ctx = talloc_tos();
1531 char *mask = NULL;
1532 char *buf = NULL;
1533 NTSTATUS status;
1535 mask = talloc_strdup(ctx, client_get_cur_dir());
1536 if (!mask) {
1537 return 1;
1540 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1541 if (!recurse) {
1542 d_printf("mkdir <dirname>\n");
1544 return 1;
1546 mask = talloc_asprintf_append(mask, "%s", buf);
1547 if (!mask) {
1548 return 1;
1551 if (recurse) {
1552 char *ddir = NULL;
1553 char *ddir2 = NULL;
1554 struct cli_state *targetcli;
1555 char *targetname = NULL;
1556 char *p = NULL;
1557 char *saveptr;
1559 ddir2 = talloc_strdup(ctx, "");
1560 if (!ddir2) {
1561 return 1;
1564 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
1565 &targetcli, &targetname);
1566 if (!NT_STATUS_IS_OK(status)) {
1567 return 1;
1570 ddir = talloc_strdup(ctx, targetname);
1571 if (!ddir) {
1572 return 1;
1574 trim_char(ddir,'.','\0');
1575 p = strtok_r(ddir, "/\\", &saveptr);
1576 while (p) {
1577 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1578 if (!ddir2) {
1579 return 1;
1581 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1582 do_mkdir(ddir2);
1584 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1585 if (!ddir2) {
1586 return 1;
1588 p = strtok_r(NULL, "/\\", &saveptr);
1590 } else {
1591 do_mkdir(mask);
1594 return 0;
1597 /****************************************************************************
1598 Show alt name.
1599 ****************************************************************************/
1601 static int cmd_altname(void)
1603 TALLOC_CTX *ctx = talloc_tos();
1604 char *name;
1605 char *buf;
1607 name = talloc_strdup(ctx, client_get_cur_dir());
1608 if (!name) {
1609 return 1;
1612 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1613 d_printf("altname <file>\n");
1614 return 1;
1616 name = talloc_asprintf_append(name, "%s", buf);
1617 if (!name) {
1618 return 1;
1620 do_altname(name);
1621 return 0;
1624 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1626 char *attrs = talloc_zero_array(mem_ctx, char, 17);
1627 int i = 0;
1629 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1630 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1631 attrs[i++] = 'E';
1633 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1634 attrs[i++] = 'N';
1636 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1637 attrs[i++] = 'O';
1639 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1640 attrs[i++] = 'C';
1642 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1643 attrs[i++] = 'r';
1645 if (mode & FILE_ATTRIBUTE_SPARSE) {
1646 attrs[i++] = 's';
1648 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1649 attrs[i++] = 'T';
1651 if (mode & FILE_ATTRIBUTE_NORMAL) {
1652 attrs[i++] = 'N';
1654 if (mode & FILE_ATTRIBUTE_READONLY) {
1655 attrs[i++] = 'R';
1657 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1658 attrs[i++] = 'H';
1660 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1661 attrs[i++] = 'S';
1663 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1664 attrs[i++] = 'D';
1666 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1667 attrs[i++] = 'A';
1670 return attrs;
1673 /****************************************************************************
1674 Show all info we can get
1675 ****************************************************************************/
1677 static int do_allinfo(const char *name)
1679 fstring altname;
1680 struct timespec b_time, a_time, m_time, c_time;
1681 off_t size;
1682 uint16_t mode;
1683 SMB_INO_T ino;
1684 NTTIME tmp;
1685 uint16_t fnum;
1686 unsigned int num_streams;
1687 struct stream_struct *streams;
1688 int num_snapshots;
1689 char **snapshots;
1690 unsigned int i;
1691 NTSTATUS status;
1693 status = cli_qpathinfo_alt_name(cli, name, altname);
1694 if (!NT_STATUS_IS_OK(status)) {
1695 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1696 name);
1697 return false;
1699 d_printf("altname: %s\n", altname);
1701 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1702 &size, &mode, &ino);
1703 if (!NT_STATUS_IS_OK(status)) {
1704 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1705 name);
1706 return false;
1709 unix_timespec_to_nt_time(&tmp, b_time);
1710 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1712 unix_timespec_to_nt_time(&tmp, a_time);
1713 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1715 unix_timespec_to_nt_time(&tmp, m_time);
1716 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1718 unix_timespec_to_nt_time(&tmp, c_time);
1719 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1721 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1723 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1724 &streams);
1725 if (!NT_STATUS_IS_OK(status)) {
1726 d_printf("%s getting streams for %s\n", nt_errstr(status),
1727 name);
1728 return false;
1731 for (i=0; i<num_streams; i++) {
1732 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1733 (unsigned long long)streams[i].size);
1736 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1737 char *subst, *print;
1738 uint32_t flags;
1740 status = cli_readlink(cli, name, talloc_tos(), &subst, &print,
1741 &flags);
1742 if (!NT_STATUS_IS_OK(status)) {
1743 d_fprintf(stderr, "cli_readlink returned %s\n",
1744 nt_errstr(status));
1745 } else {
1746 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1747 subst, print, flags);
1748 TALLOC_FREE(subst);
1749 TALLOC_FREE(print);
1753 status = cli_ntcreate(cli, name, 0,
1754 CREATE_ACCESS_READ, 0,
1755 FILE_SHARE_READ|FILE_SHARE_WRITE
1756 |FILE_SHARE_DELETE,
1757 FILE_OPEN, 0x0, 0x0, &fnum);
1758 if (!NT_STATUS_IS_OK(status)) {
1760 * Ignore failure, it does not hurt if we can't list
1761 * snapshots
1763 return 0;
1765 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1766 true, &snapshots, &num_snapshots);
1767 if (!NT_STATUS_IS_OK(status)) {
1768 cli_close(cli, fnum);
1769 return 0;
1772 for (i=0; i<num_snapshots; i++) {
1773 char *snap_name;
1775 d_printf("%s\n", snapshots[i]);
1776 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1777 snapshots[i], name);
1778 status = cli_qpathinfo2(cli, snap_name, &b_time, &a_time,
1779 &m_time, &c_time, &size,
1780 NULL, NULL);
1781 if (!NT_STATUS_IS_OK(status)) {
1782 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1783 snap_name, nt_errstr(status));
1784 TALLOC_FREE(snap_name);
1785 continue;
1787 unix_timespec_to_nt_time(&tmp, b_time);
1788 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1789 unix_timespec_to_nt_time(&tmp, a_time);
1790 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1791 unix_timespec_to_nt_time(&tmp, m_time);
1792 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1793 unix_timespec_to_nt_time(&tmp, c_time);
1794 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1795 d_printf("size: %d\n", (int)size);
1798 TALLOC_FREE(snapshots);
1800 return 0;
1803 /****************************************************************************
1804 Show all info we can get
1805 ****************************************************************************/
1807 static int cmd_allinfo(void)
1809 TALLOC_CTX *ctx = talloc_tos();
1810 char *name;
1811 char *buf;
1813 name = talloc_strdup(ctx, client_get_cur_dir());
1814 if (!name) {
1815 return 1;
1818 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1819 d_printf("allinfo <file>\n");
1820 return 1;
1822 name = talloc_asprintf_append(name, "%s", buf);
1823 if (!name) {
1824 return 1;
1827 do_allinfo(name);
1829 return 0;
1832 /****************************************************************************
1833 Put a single file.
1834 ****************************************************************************/
1836 static int do_put(const char *rname, const char *lname, bool reput)
1838 TALLOC_CTX *ctx = talloc_tos();
1839 uint16_t fnum;
1840 XFILE *f;
1841 off_t start = 0;
1842 int rc = 0;
1843 struct timespec tp_start;
1844 struct cli_state *targetcli;
1845 char *targetname = NULL;
1846 struct push_state state;
1847 NTSTATUS status;
1849 status = cli_resolve_path(ctx, "", auth_info, cli, rname,
1850 &targetcli, &targetname);
1851 if (!NT_STATUS_IS_OK(status)) {
1852 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1853 return 1;
1856 clock_gettime_mono(&tp_start);
1858 if (reput) {
1859 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1860 if (NT_STATUS_IS_OK(status)) {
1861 if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1862 targetcli, fnum, NULL,
1863 &start, NULL, NULL,
1864 NULL, NULL, NULL)) &&
1865 !NT_STATUS_IS_OK(status = cli_getattrE(
1866 targetcli, fnum, NULL,
1867 &start, NULL, NULL,
1868 NULL))) {
1869 d_printf("getattrib: %s\n", nt_errstr(status));
1870 return 1;
1873 } else {
1874 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1877 if (!NT_STATUS_IS_OK(status)) {
1878 d_printf("%s opening remote file %s\n", nt_errstr(status),
1879 rname);
1880 return 1;
1883 /* allow files to be piped into smbclient
1884 jdblair 24.jun.98
1886 Note that in this case this function will exit(0) rather
1887 than returning. */
1888 if (!strcmp(lname, "-")) {
1889 f = x_stdin;
1890 /* size of file is not known */
1891 } else {
1892 f = x_fopen(lname,O_RDONLY, 0);
1893 if (f && reput) {
1894 if (x_tseek(f, start, SEEK_SET) == -1) {
1895 d_printf("Error seeking local file\n");
1896 x_fclose(f);
1897 return 1;
1902 if (!f) {
1903 d_printf("Error opening local file %s\n",lname);
1904 return 1;
1907 DEBUG(1,("putting file %s as %s ",lname,
1908 rname));
1910 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1912 state.f = f;
1913 state.nread = 0;
1915 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1916 &state);
1917 if (!NT_STATUS_IS_OK(status)) {
1918 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1919 rc = 1;
1922 status = cli_close(targetcli, fnum);
1923 if (!NT_STATUS_IS_OK(status)) {
1924 d_printf("%s closing remote file %s\n", nt_errstr(status),
1925 rname);
1926 if (f != x_stdin) {
1927 x_fclose(f);
1929 return 1;
1932 if (f != x_stdin) {
1933 x_fclose(f);
1937 struct timespec tp_end;
1938 int this_time;
1940 clock_gettime_mono(&tp_end);
1941 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1942 put_total_time_ms += this_time;
1943 put_total_size += state.nread;
1945 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1946 state.nread / (1.024*this_time + 1.0e-4),
1947 put_total_size / (1.024*put_total_time_ms)));
1950 if (f == x_stdin) {
1951 cli_shutdown(cli);
1952 exit(rc);
1955 return rc;
1958 /****************************************************************************
1959 Put a file.
1960 ****************************************************************************/
1962 static int cmd_put(void)
1964 TALLOC_CTX *ctx = talloc_tos();
1965 char *lname;
1966 char *rname;
1967 char *buf;
1969 rname = talloc_strdup(ctx, client_get_cur_dir());
1970 if (!rname) {
1971 return 1;
1974 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1975 d_printf("put <filename>\n");
1976 return 1;
1979 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1980 rname = talloc_asprintf_append(rname, "%s", buf);
1981 } else {
1982 rname = talloc_asprintf_append(rname, "%s", lname);
1984 if (!rname) {
1985 return 1;
1988 rname = clean_name(ctx, rname);
1989 if (!rname) {
1990 return 1;
1994 SMB_STRUCT_STAT st;
1995 /* allow '-' to represent stdin
1996 jdblair, 24.jun.98 */
1997 if (!file_exist_stat(lname, &st, false) &&
1998 (strcmp(lname,"-"))) {
1999 d_printf("%s does not exist\n",lname);
2000 return 1;
2004 return do_put(rname, lname, false);
2007 /*************************************
2008 File list structure.
2009 *************************************/
2011 static struct file_list {
2012 struct file_list *prev, *next;
2013 char *file_path;
2014 bool isdir;
2015 } *file_list;
2017 /****************************************************************************
2018 Free a file_list structure.
2019 ****************************************************************************/
2021 static void free_file_list (struct file_list *l_head)
2023 struct file_list *list, *next;
2025 for (list = l_head; list; list = next) {
2026 next = list->next;
2027 DLIST_REMOVE(l_head, list);
2028 SAFE_FREE(list->file_path);
2029 SAFE_FREE(list);
2033 /****************************************************************************
2034 Seek in a directory/file list until you get something that doesn't start with
2035 the specified name.
2036 ****************************************************************************/
2038 static bool seek_list(struct file_list *list, char *name)
2040 while (list) {
2041 trim_string(list->file_path,"./","\n");
2042 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2043 return true;
2045 list = list->next;
2048 return false;
2051 /****************************************************************************
2052 Set the file selection mask.
2053 ****************************************************************************/
2055 static int cmd_select(void)
2057 TALLOC_CTX *ctx = talloc_tos();
2058 char *new_fs = NULL;
2059 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2061 if (new_fs) {
2062 client_set_fileselection(new_fs);
2063 } else {
2064 client_set_fileselection("");
2066 return 0;
2069 /****************************************************************************
2070 Recursive file matching function act as find
2071 match must be always set to true when calling this function
2072 ****************************************************************************/
2074 static int file_find(struct file_list **list, const char *directory,
2075 const char *expression, bool match)
2077 DIR *dir;
2078 struct file_list *entry;
2079 struct stat statbuf;
2080 int ret;
2081 char *path;
2082 bool isdir;
2083 const char *dname;
2085 dir = opendir(directory);
2086 if (!dir)
2087 return -1;
2089 while ((dname = readdirname(dir))) {
2090 if (!strcmp("..", dname))
2091 continue;
2092 if (!strcmp(".", dname))
2093 continue;
2095 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2096 continue;
2099 isdir = false;
2100 if (!match || !gen_fnmatch(expression, dname)) {
2101 if (recurse) {
2102 ret = stat(path, &statbuf);
2103 if (ret == 0) {
2104 if (S_ISDIR(statbuf.st_mode)) {
2105 isdir = true;
2106 ret = file_find(list, path, expression, false);
2108 } else {
2109 d_printf("file_find: cannot stat file %s\n", path);
2112 if (ret == -1) {
2113 SAFE_FREE(path);
2114 closedir(dir);
2115 return -1;
2118 entry = SMB_MALLOC_P(struct file_list);
2119 if (!entry) {
2120 d_printf("Out of memory in file_find\n");
2121 closedir(dir);
2122 return -1;
2124 entry->file_path = path;
2125 entry->isdir = isdir;
2126 DLIST_ADD(*list, entry);
2127 } else {
2128 SAFE_FREE(path);
2132 closedir(dir);
2133 return 0;
2136 /****************************************************************************
2137 mput some files.
2138 ****************************************************************************/
2140 static int cmd_mput(void)
2142 TALLOC_CTX *ctx = talloc_tos();
2143 char *p = NULL;
2145 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2146 int ret;
2147 struct file_list *temp_list;
2148 char *quest, *lname, *rname;
2150 file_list = NULL;
2152 ret = file_find(&file_list, ".", p, true);
2153 if (ret) {
2154 free_file_list(file_list);
2155 continue;
2158 quest = NULL;
2159 lname = NULL;
2160 rname = NULL;
2162 for (temp_list = file_list; temp_list;
2163 temp_list = temp_list->next) {
2165 SAFE_FREE(lname);
2166 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2167 continue;
2169 trim_string(lname, "./", "/");
2171 /* check if it's a directory */
2172 if (temp_list->isdir) {
2173 /* if (!recurse) continue; */
2175 SAFE_FREE(quest);
2176 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2177 break;
2179 if (prompt && !yesno(quest)) { /* No */
2180 /* Skip the directory */
2181 lname[strlen(lname)-1] = '/';
2182 if (!seek_list(temp_list, lname))
2183 break;
2184 } else { /* Yes */
2185 SAFE_FREE(rname);
2186 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2187 break;
2189 normalize_name(rname);
2190 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2191 !do_mkdir(rname)) {
2192 DEBUG (0, ("Unable to make dir, skipping..."));
2193 /* Skip the directory */
2194 lname[strlen(lname)-1] = '/';
2195 if (!seek_list(temp_list, lname)) {
2196 break;
2200 continue;
2201 } else {
2202 SAFE_FREE(quest);
2203 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2204 break;
2206 if (prompt && !yesno(quest)) {
2207 /* No */
2208 continue;
2211 /* Yes */
2212 SAFE_FREE(rname);
2213 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2214 break;
2218 normalize_name(rname);
2220 do_put(rname, lname, false);
2222 free_file_list(file_list);
2223 SAFE_FREE(quest);
2224 SAFE_FREE(lname);
2225 SAFE_FREE(rname);
2228 return 0;
2231 /****************************************************************************
2232 Cancel a print job.
2233 ****************************************************************************/
2235 static int do_cancel(int job)
2237 if (cli_printjob_del(cli, job)) {
2238 d_printf("Job %d cancelled\n",job);
2239 return 0;
2240 } else {
2241 NTSTATUS status = cli_nt_error(cli);
2242 d_printf("Error cancelling job %d : %s\n",
2243 job, nt_errstr(status));
2244 return 1;
2248 /****************************************************************************
2249 Cancel a print job.
2250 ****************************************************************************/
2252 static int cmd_cancel(void)
2254 TALLOC_CTX *ctx = talloc_tos();
2255 char *buf = NULL;
2256 int job;
2258 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2259 d_printf("cancel <jobid> ...\n");
2260 return 1;
2262 do {
2263 job = atoi(buf);
2264 do_cancel(job);
2265 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2267 return 0;
2270 /****************************************************************************
2271 Print a file.
2272 ****************************************************************************/
2274 static int cmd_print(void)
2276 TALLOC_CTX *ctx = talloc_tos();
2277 char *lname = NULL;
2278 char *rname = NULL;
2279 char *p = NULL;
2281 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2282 d_printf("print <filename>\n");
2283 return 1;
2286 rname = talloc_strdup(ctx, lname);
2287 if (!rname) {
2288 return 1;
2290 p = strrchr_m(rname,'/');
2291 if (p) {
2292 rname = talloc_asprintf(ctx,
2293 "%s-%d",
2294 p+1,
2295 (int)getpid());
2297 if (strequal(lname,"-")) {
2298 rname = talloc_asprintf(ctx,
2299 "stdin-%d",
2300 (int)getpid());
2302 if (!rname) {
2303 return 1;
2306 return do_put(rname, lname, false);
2309 /****************************************************************************
2310 Show a print queue entry.
2311 ****************************************************************************/
2313 static void queue_fn(struct print_job_info *p)
2315 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2318 /****************************************************************************
2319 Show a print queue.
2320 ****************************************************************************/
2322 static int cmd_queue(void)
2324 cli_print_queue(cli, queue_fn);
2325 return 0;
2328 /****************************************************************************
2329 Delete some files.
2330 ****************************************************************************/
2332 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2333 const char *dir)
2335 TALLOC_CTX *ctx = talloc_tos();
2336 char *mask = NULL;
2337 NTSTATUS status;
2339 mask = talloc_asprintf(ctx,
2340 "%s%c%s",
2341 dir,
2342 CLI_DIRSEP_CHAR,
2343 finfo->name);
2344 if (!mask) {
2345 return NT_STATUS_NO_MEMORY;
2348 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2349 TALLOC_FREE(mask);
2350 return NT_STATUS_OK;
2353 status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2354 if (!NT_STATUS_IS_OK(status)) {
2355 d_printf("%s deleting remote file %s\n",
2356 nt_errstr(status), mask);
2358 TALLOC_FREE(mask);
2359 return status;
2362 /****************************************************************************
2363 Delete some files.
2364 ****************************************************************************/
2366 static int cmd_del(void)
2368 TALLOC_CTX *ctx = talloc_tos();
2369 char *mask = NULL;
2370 char *buf = NULL;
2371 NTSTATUS status = NT_STATUS_OK;
2372 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2374 if (recurse) {
2375 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2378 mask = talloc_strdup(ctx, client_get_cur_dir());
2379 if (!mask) {
2380 return 1;
2382 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2383 d_printf("del <filename>\n");
2384 return 1;
2386 mask = talloc_asprintf_append(mask, "%s", buf);
2387 if (!mask) {
2388 return 1;
2391 status = do_list(mask,attribute,do_del,false,false);
2392 if (!NT_STATUS_IS_OK(status)) {
2393 return 1;
2395 return 0;
2398 /****************************************************************************
2399 Wildcard delete some files.
2400 ****************************************************************************/
2402 static int cmd_wdel(void)
2404 TALLOC_CTX *ctx = talloc_tos();
2405 char *mask = NULL;
2406 char *buf = NULL;
2407 uint16 attribute;
2408 struct cli_state *targetcli;
2409 char *targetname = NULL;
2410 NTSTATUS status;
2412 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2413 d_printf("wdel 0x<attrib> <wcard>\n");
2414 return 1;
2417 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2419 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2420 d_printf("wdel 0x<attrib> <wcard>\n");
2421 return 1;
2424 mask = talloc_asprintf(ctx, "%s%s",
2425 client_get_cur_dir(),
2426 buf);
2427 if (!mask) {
2428 return 1;
2431 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2432 &targetname);
2433 if (!NT_STATUS_IS_OK(status)) {
2434 d_printf("cmd_wdel %s: %s\n", mask, nt_errstr(status));
2435 return 1;
2438 status = cli_unlink(targetcli, targetname, attribute);
2439 if (!NT_STATUS_IS_OK(status)) {
2440 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2441 targetname);
2443 return 0;
2446 /****************************************************************************
2447 ****************************************************************************/
2449 static int cmd_open(void)
2451 TALLOC_CTX *ctx = talloc_tos();
2452 char *mask = NULL;
2453 char *buf = NULL;
2454 char *targetname = NULL;
2455 struct cli_state *targetcli;
2456 uint16_t fnum = (uint16_t)-1;
2457 NTSTATUS status;
2459 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2460 d_printf("open <filename>\n");
2461 return 1;
2463 mask = talloc_asprintf(ctx,
2464 "%s%s",
2465 client_get_cur_dir(),
2466 buf);
2467 if (!mask) {
2468 return 1;
2471 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2472 &targetname);
2473 if (!NT_STATUS_IS_OK(status)) {
2474 d_printf("open %s: %s\n", mask, nt_errstr(status));
2475 return 1;
2478 status = cli_ntcreate(targetcli, targetname, 0,
2479 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2480 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2481 0x0, 0x0, &fnum);
2482 if (!NT_STATUS_IS_OK(status)) {
2483 status = cli_ntcreate(targetcli, targetname, 0,
2484 FILE_READ_DATA, 0,
2485 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2486 0x0, 0x0, &fnum);
2487 if (NT_STATUS_IS_OK(status)) {
2488 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2489 } else {
2490 d_printf("Failed to open file %s. %s\n",
2491 targetname, nt_errstr(status));
2493 } else {
2494 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2496 return 0;
2499 static int cmd_posix_encrypt(void)
2501 TALLOC_CTX *ctx = talloc_tos();
2502 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2504 if (cli->use_kerberos) {
2505 status = cli_gss_smb_encryption_start(cli);
2506 } else {
2507 char *domain = NULL;
2508 char *user = NULL;
2509 char *password = NULL;
2511 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2512 d_printf("posix_encrypt domain user password\n");
2513 return 1;
2516 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2517 d_printf("posix_encrypt domain user password\n");
2518 return 1;
2521 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2522 d_printf("posix_encrypt domain user password\n");
2523 return 1;
2526 status = cli_raw_ntlm_smb_encryption_start(cli,
2527 user,
2528 password,
2529 domain);
2532 if (!NT_STATUS_IS_OK(status)) {
2533 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2534 } else {
2535 d_printf("encryption on\n");
2536 smb_encrypt = true;
2539 return 0;
2542 /****************************************************************************
2543 ****************************************************************************/
2545 static int cmd_posix_open(void)
2547 TALLOC_CTX *ctx = talloc_tos();
2548 char *mask = NULL;
2549 char *buf = NULL;
2550 char *targetname = NULL;
2551 struct cli_state *targetcli;
2552 mode_t mode;
2553 uint16_t fnum;
2554 NTSTATUS status;
2556 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2557 d_printf("posix_open <filename> 0<mode>\n");
2558 return 1;
2560 mask = talloc_asprintf(ctx,
2561 "%s%s",
2562 client_get_cur_dir(),
2563 buf);
2564 if (!mask) {
2565 return 1;
2568 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2569 d_printf("posix_open <filename> 0<mode>\n");
2570 return 1;
2572 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2574 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2575 &targetname);
2576 if (!NT_STATUS_IS_OK(status)) {
2577 d_printf("posix_open %s: %s\n", mask, nt_errstr(status));
2578 return 1;
2581 status = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode,
2582 &fnum);
2583 if (!NT_STATUS_IS_OK(status)) {
2584 status = cli_posix_open(targetcli, targetname,
2585 O_CREAT|O_RDONLY, mode, &fnum);
2586 if (!NT_STATUS_IS_OK(status)) {
2587 d_printf("Failed to open file %s. %s\n", targetname,
2588 nt_errstr(status));
2589 } else {
2590 d_printf("posix_open file %s: for readonly fnum %d\n",
2591 targetname, fnum);
2593 } else {
2594 d_printf("posix_open file %s: for read/write fnum %d\n",
2595 targetname, fnum);
2598 return 0;
2601 static int cmd_posix_mkdir(void)
2603 TALLOC_CTX *ctx = talloc_tos();
2604 char *mask = NULL;
2605 char *buf = NULL;
2606 char *targetname = NULL;
2607 struct cli_state *targetcli;
2608 mode_t mode;
2609 NTSTATUS status;
2611 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2612 d_printf("posix_mkdir <filename> 0<mode>\n");
2613 return 1;
2615 mask = talloc_asprintf(ctx,
2616 "%s%s",
2617 client_get_cur_dir(),
2618 buf);
2619 if (!mask) {
2620 return 1;
2623 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2624 d_printf("posix_mkdir <filename> 0<mode>\n");
2625 return 1;
2627 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2629 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2630 &targetname);
2631 if (!NT_STATUS_IS_OK(status)) {
2632 d_printf("posix_mkdir %s: %s\n", mask, nt_errstr(status));
2633 return 1;
2636 status = cli_posix_mkdir(targetcli, targetname, mode);
2637 if (!NT_STATUS_IS_OK(status)) {
2638 d_printf("Failed to open file %s. %s\n",
2639 targetname, nt_errstr(status));
2640 } else {
2641 d_printf("posix_mkdir created directory %s\n", targetname);
2643 return 0;
2646 static int cmd_posix_unlink(void)
2648 TALLOC_CTX *ctx = talloc_tos();
2649 char *mask = NULL;
2650 char *buf = NULL;
2651 char *targetname = NULL;
2652 struct cli_state *targetcli;
2653 NTSTATUS status;
2655 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2656 d_printf("posix_unlink <filename>\n");
2657 return 1;
2659 mask = talloc_asprintf(ctx,
2660 "%s%s",
2661 client_get_cur_dir(),
2662 buf);
2663 if (!mask) {
2664 return 1;
2667 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2668 &targetname);
2669 if (!NT_STATUS_IS_OK(status)) {
2670 d_printf("posix_unlink %s: %s\n", mask, nt_errstr(status));
2671 return 1;
2674 status = cli_posix_unlink(targetcli, targetname);
2675 if (!NT_STATUS_IS_OK(status)) {
2676 d_printf("Failed to unlink file %s. %s\n",
2677 targetname, nt_errstr(status));
2678 } else {
2679 d_printf("posix_unlink deleted file %s\n", targetname);
2682 return 0;
2685 static int cmd_posix_rmdir(void)
2687 TALLOC_CTX *ctx = talloc_tos();
2688 char *mask = NULL;
2689 char *buf = NULL;
2690 char *targetname = NULL;
2691 struct cli_state *targetcli;
2692 NTSTATUS status;
2694 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2695 d_printf("posix_rmdir <filename>\n");
2696 return 1;
2698 mask = talloc_asprintf(ctx,
2699 "%s%s",
2700 client_get_cur_dir(),
2701 buf);
2702 if (!mask) {
2703 return 1;
2706 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2707 &targetname);
2708 if (!NT_STATUS_IS_OK(status)) {
2709 d_printf("posix_rmdir %s: %s\n", mask, nt_errstr(status));
2710 return 1;
2713 status = cli_posix_rmdir(targetcli, targetname);
2714 if (!NT_STATUS_IS_OK(status)) {
2715 d_printf("Failed to unlink directory %s. %s\n",
2716 targetname, nt_errstr(status));
2717 } else {
2718 d_printf("posix_rmdir deleted directory %s\n", targetname);
2721 return 0;
2724 static int cmd_close(void)
2726 TALLOC_CTX *ctx = talloc_tos();
2727 char *buf = NULL;
2728 int fnum;
2729 NTSTATUS status;
2731 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2732 d_printf("close <fnum>\n");
2733 return 1;
2736 fnum = atoi(buf);
2737 /* We really should use the targetcli here.... */
2738 status = cli_close(cli, fnum);
2739 if (!NT_STATUS_IS_OK(status)) {
2740 d_printf("close %d: %s\n", fnum, nt_errstr(status));
2741 return 1;
2743 return 0;
2746 static int cmd_posix(void)
2748 TALLOC_CTX *ctx = talloc_tos();
2749 uint16 major, minor;
2750 uint32 caplow, caphigh;
2751 char *caps;
2752 NTSTATUS status;
2754 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2755 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2756 return 1;
2759 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2760 &caphigh);
2761 if (!NT_STATUS_IS_OK(status)) {
2762 d_printf("Can't get UNIX CIFS extensions version from "
2763 "server: %s\n", nt_errstr(status));
2764 return 1;
2767 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2769 caps = talloc_strdup(ctx, "");
2770 if (!caps) {
2771 return 1;
2773 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2774 caps = talloc_asprintf_append(caps, "locks ");
2775 if (!caps) {
2776 return 1;
2779 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2780 caps = talloc_asprintf_append(caps, "acls ");
2781 if (!caps) {
2782 return 1;
2785 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2786 caps = talloc_asprintf_append(caps, "eas ");
2787 if (!caps) {
2788 return 1;
2791 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2792 caps = talloc_asprintf_append(caps, "pathnames ");
2793 if (!caps) {
2794 return 1;
2797 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2798 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2799 if (!caps) {
2800 return 1;
2803 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2804 caps = talloc_asprintf_append(caps, "large_read ");
2805 if (!caps) {
2806 return 1;
2809 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2810 caps = talloc_asprintf_append(caps, "large_write ");
2811 if (!caps) {
2812 return 1;
2815 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2816 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2817 if (!caps) {
2818 return 1;
2821 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2822 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2823 if (!caps) {
2824 return 1;
2828 if (*caps && caps[strlen(caps)-1] == ' ') {
2829 caps[strlen(caps)-1] = '\0';
2832 d_printf("Server supports CIFS capabilities %s\n", caps);
2834 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2835 caplow, caphigh);
2836 if (!NT_STATUS_IS_OK(status)) {
2837 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2838 nt_errstr(status));
2839 return 1;
2842 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2843 CLI_DIRSEP_CHAR = '/';
2844 *CLI_DIRSEP_STR = '/';
2845 client_set_cur_dir(CLI_DIRSEP_STR);
2848 return 0;
2851 static int cmd_lock(void)
2853 TALLOC_CTX *ctx = talloc_tos();
2854 char *buf = NULL;
2855 uint64_t start, len;
2856 enum brl_type lock_type;
2857 int fnum;
2858 NTSTATUS status;
2860 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2861 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2862 return 1;
2864 fnum = atoi(buf);
2866 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2867 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2868 return 1;
2871 if (*buf == 'r' || *buf == 'R') {
2872 lock_type = READ_LOCK;
2873 } else if (*buf == 'w' || *buf == 'W') {
2874 lock_type = WRITE_LOCK;
2875 } else {
2876 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2877 return 1;
2880 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2881 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2882 return 1;
2885 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2887 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2888 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2889 return 1;
2892 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2894 status = cli_posix_lock(cli, fnum, start, len, true, lock_type);
2895 if (!NT_STATUS_IS_OK(status)) {
2896 d_printf("lock failed %d: %s\n", fnum, nt_errstr(status));
2899 return 0;
2902 static int cmd_unlock(void)
2904 TALLOC_CTX *ctx = talloc_tos();
2905 char *buf = NULL;
2906 uint64_t start, len;
2907 int fnum;
2908 NTSTATUS status;
2910 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2911 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2912 return 1;
2914 fnum = atoi(buf);
2916 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2917 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2918 return 1;
2921 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2923 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2924 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2925 return 1;
2928 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2930 status = cli_posix_unlock(cli, fnum, start, len);
2931 if (!NT_STATUS_IS_OK(status)) {
2932 d_printf("unlock failed %d: %s\n", fnum, nt_errstr(status));
2935 return 0;
2939 /****************************************************************************
2940 Remove a directory.
2941 ****************************************************************************/
2943 static int cmd_rmdir(void)
2945 TALLOC_CTX *ctx = talloc_tos();
2946 char *mask = NULL;
2947 char *buf = NULL;
2948 char *targetname = NULL;
2949 struct cli_state *targetcli;
2950 NTSTATUS status;
2952 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2953 d_printf("rmdir <dirname>\n");
2954 return 1;
2956 mask = talloc_asprintf(ctx,
2957 "%s%s",
2958 client_get_cur_dir(),
2959 buf);
2960 if (!mask) {
2961 return 1;
2964 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2965 &targetname);
2966 if (!NT_STATUS_IS_OK(status)) {
2967 d_printf("rmdir %s: %s\n", mask, nt_errstr(status));
2968 return 1;
2971 status = cli_rmdir(targetcli, targetname);
2972 if (!NT_STATUS_IS_OK(status)) {
2973 d_printf("%s removing remote directory file %s\n",
2974 nt_errstr(status), mask);
2977 return 0;
2980 /****************************************************************************
2981 UNIX hardlink.
2982 ****************************************************************************/
2984 static int cmd_link(void)
2986 TALLOC_CTX *ctx = talloc_tos();
2987 char *oldname = NULL;
2988 char *newname = NULL;
2989 char *buf = NULL;
2990 char *buf2 = NULL;
2991 char *targetname = NULL;
2992 struct cli_state *targetcli;
2993 NTSTATUS status;
2995 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2996 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2997 d_printf("link <oldname> <newname>\n");
2998 return 1;
3000 oldname = talloc_asprintf(ctx,
3001 "%s%s",
3002 client_get_cur_dir(),
3003 buf);
3004 if (!oldname) {
3005 return 1;
3007 newname = talloc_asprintf(ctx,
3008 "%s%s",
3009 client_get_cur_dir(),
3010 buf2);
3011 if (!newname) {
3012 return 1;
3015 status = cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli,
3016 &targetname);
3017 if (!NT_STATUS_IS_OK(status)) {
3018 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3019 return 1;
3022 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3023 d_printf("Server doesn't support UNIX CIFS calls.\n");
3024 return 1;
3027 status = cli_posix_hardlink(targetcli, targetname, newname);
3028 if (!NT_STATUS_IS_OK(status)) {
3029 d_printf("%s linking files (%s -> %s)\n",
3030 nt_errstr(status), newname, oldname);
3031 return 1;
3033 return 0;
3036 /****************************************************************************
3037 UNIX readlink.
3038 ****************************************************************************/
3040 static int cmd_readlink(void)
3042 TALLOC_CTX *ctx = talloc_tos();
3043 char *name= NULL;
3044 char *buf = NULL;
3045 char *targetname = NULL;
3046 char linkname[PATH_MAX+1];
3047 struct cli_state *targetcli;
3048 NTSTATUS status;
3050 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3051 d_printf("readlink <name>\n");
3052 return 1;
3054 name = talloc_asprintf(ctx,
3055 "%s%s",
3056 client_get_cur_dir(),
3057 buf);
3058 if (!name) {
3059 return 1;
3062 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
3063 &targetname);
3064 if (!NT_STATUS_IS_OK(status)) {
3065 d_printf("readlink %s: %s\n", name, nt_errstr(status));
3066 return 1;
3069 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3070 d_printf("Server doesn't support UNIX CIFS calls.\n");
3071 return 1;
3074 status = cli_posix_readlink(targetcli, name, linkname, PATH_MAX+1);
3075 if (!NT_STATUS_IS_OK(status)) {
3076 d_printf("%s readlink on file %s\n",
3077 nt_errstr(status), name);
3078 return 1;
3081 d_printf("%s -> %s\n", name, linkname);
3083 return 0;
3087 /****************************************************************************
3088 UNIX symlink.
3089 ****************************************************************************/
3091 static int cmd_symlink(void)
3093 TALLOC_CTX *ctx = talloc_tos();
3094 char *oldname = NULL;
3095 char *newname = NULL;
3096 char *buf = NULL;
3097 char *buf2 = NULL;
3098 struct cli_state *newcli;
3099 NTSTATUS status;
3101 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3102 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3103 d_printf("symlink <oldname> <newname>\n");
3104 return 1;
3106 /* Oldname (link target) must be an untouched blob. */
3107 oldname = buf;
3109 if (SERVER_HAS_UNIX_CIFS(cli)) {
3110 newname = talloc_asprintf(ctx, "%s%s", client_get_cur_dir(),
3111 buf2);
3112 if (!newname) {
3113 return 1;
3115 /* New name must be present in share namespace. */
3116 status = cli_resolve_path(ctx, "", auth_info, cli, newname,
3117 &newcli, &newname);
3118 if (!NT_STATUS_IS_OK(status)) {
3119 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3120 return 1;
3122 status = cli_posix_symlink(newcli, oldname, newname);
3123 } else {
3124 status = cli_symlink(
3125 cli, oldname, buf2,
3126 buf2[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE);
3129 if (!NT_STATUS_IS_OK(status)) {
3130 d_printf("%s symlinking files (%s -> %s)\n",
3131 nt_errstr(status), oldname, newname);
3132 return 1;
3135 return 0;
3138 /****************************************************************************
3139 UNIX chmod.
3140 ****************************************************************************/
3142 static int cmd_chmod(void)
3144 TALLOC_CTX *ctx = talloc_tos();
3145 char *src = NULL;
3146 char *buf = NULL;
3147 char *buf2 = NULL;
3148 char *targetname = NULL;
3149 struct cli_state *targetcli;
3150 mode_t mode;
3151 NTSTATUS status;
3153 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3154 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3155 d_printf("chmod mode file\n");
3156 return 1;
3158 src = talloc_asprintf(ctx,
3159 "%s%s",
3160 client_get_cur_dir(),
3161 buf2);
3162 if (!src) {
3163 return 1;
3166 mode = (mode_t)strtol(buf, NULL, 8);
3168 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3169 &targetname);
3170 if (!NT_STATUS_IS_OK(status)) {
3171 d_printf("chmod %s: %s\n", src, nt_errstr(status));
3172 return 1;
3175 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3176 d_printf("Server doesn't support UNIX CIFS calls.\n");
3177 return 1;
3180 status = cli_posix_chmod(targetcli, targetname, mode);
3181 if (!NT_STATUS_IS_OK(status)) {
3182 d_printf("%s chmod file %s 0%o\n",
3183 nt_errstr(status), src, (unsigned int)mode);
3184 return 1;
3187 return 0;
3190 static const char *filetype_to_str(mode_t mode)
3192 if (S_ISREG(mode)) {
3193 return "regular file";
3194 } else if (S_ISDIR(mode)) {
3195 return "directory";
3196 } else
3197 #ifdef S_ISCHR
3198 if (S_ISCHR(mode)) {
3199 return "character device";
3200 } else
3201 #endif
3202 #ifdef S_ISBLK
3203 if (S_ISBLK(mode)) {
3204 return "block device";
3205 } else
3206 #endif
3207 #ifdef S_ISFIFO
3208 if (S_ISFIFO(mode)) {
3209 return "fifo";
3210 } else
3211 #endif
3212 #ifdef S_ISLNK
3213 if (S_ISLNK(mode)) {
3214 return "symbolic link";
3215 } else
3216 #endif
3217 #ifdef S_ISSOCK
3218 if (S_ISSOCK(mode)) {
3219 return "socket";
3220 } else
3221 #endif
3222 return "";
3225 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3227 if (m & bt) {
3228 return ret;
3229 } else {
3230 return '-';
3234 static char *unix_mode_to_str(char *s, mode_t m)
3236 char *p = s;
3237 const char *str = filetype_to_str(m);
3239 switch(str[0]) {
3240 case 'd':
3241 *p++ = 'd';
3242 break;
3243 case 'c':
3244 *p++ = 'c';
3245 break;
3246 case 'b':
3247 *p++ = 'b';
3248 break;
3249 case 'f':
3250 *p++ = 'p';
3251 break;
3252 case 's':
3253 *p++ = str[1] == 'y' ? 'l' : 's';
3254 break;
3255 case 'r':
3256 default:
3257 *p++ = '-';
3258 break;
3260 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3261 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3262 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3263 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3264 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3265 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3266 *p++ = rwx_to_str(m, S_IROTH, 'r');
3267 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3268 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3269 *p++ = '\0';
3270 return s;
3273 /****************************************************************************
3274 Utility function for UNIX getfacl.
3275 ****************************************************************************/
3277 static char *perms_to_string(fstring permstr, unsigned char perms)
3279 fstrcpy(permstr, "---");
3280 if (perms & SMB_POSIX_ACL_READ) {
3281 permstr[0] = 'r';
3283 if (perms & SMB_POSIX_ACL_WRITE) {
3284 permstr[1] = 'w';
3286 if (perms & SMB_POSIX_ACL_EXECUTE) {
3287 permstr[2] = 'x';
3289 return permstr;
3292 /****************************************************************************
3293 UNIX getfacl.
3294 ****************************************************************************/
3296 static int cmd_getfacl(void)
3298 TALLOC_CTX *ctx = talloc_tos();
3299 char *src = NULL;
3300 char *name = NULL;
3301 char *targetname = NULL;
3302 struct cli_state *targetcli;
3303 uint16 major, minor;
3304 uint32 caplow, caphigh;
3305 char *retbuf = NULL;
3306 size_t rb_size = 0;
3307 SMB_STRUCT_STAT sbuf;
3308 uint16 num_file_acls = 0;
3309 uint16 num_dir_acls = 0;
3310 uint16 i;
3311 NTSTATUS status;
3313 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3314 d_printf("getfacl filename\n");
3315 return 1;
3317 src = talloc_asprintf(ctx,
3318 "%s%s",
3319 client_get_cur_dir(),
3320 name);
3321 if (!src) {
3322 return 1;
3325 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3326 &targetname);
3327 if (!NT_STATUS_IS_OK(status)) {
3328 d_printf("stat %s: %s\n", src, nt_errstr(status));
3329 return 1;
3332 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3333 d_printf("Server doesn't support UNIX CIFS calls.\n");
3334 return 1;
3337 status = cli_unix_extensions_version(targetcli, &major, &minor,
3338 &caplow, &caphigh);
3339 if (!NT_STATUS_IS_OK(status)) {
3340 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3341 nt_errstr(status));
3342 return 1;
3345 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3346 d_printf("This server supports UNIX extensions "
3347 "but doesn't support POSIX ACLs.\n");
3348 return 1;
3351 status = cli_posix_stat(targetcli, targetname, &sbuf);
3352 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3353 d_printf("%s getfacl doing a stat on file %s\n",
3354 nt_errstr(status), src);
3355 return 1;
3358 status = cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf);
3359 if (!NT_STATUS_IS_OK(status)) {
3360 d_printf("%s getfacl file %s\n",
3361 nt_errstr(status), src);
3362 return 1;
3365 /* ToDo : Print out the ACL values. */
3366 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3367 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3368 src, (unsigned int)CVAL(retbuf,0) );
3369 return 1;
3372 num_file_acls = SVAL(retbuf,2);
3373 num_dir_acls = SVAL(retbuf,4);
3374 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3375 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3376 src,
3377 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3378 (unsigned int)rb_size);
3379 return 1;
3382 d_printf("# file: %s\n", src);
3383 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3385 if (num_file_acls == 0 && num_dir_acls == 0) {
3386 d_printf("No acls found.\n");
3389 for (i = 0; i < num_file_acls; i++) {
3390 uint32 uorg;
3391 fstring permstring;
3392 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3393 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3395 switch(tagtype) {
3396 case SMB_POSIX_ACL_USER_OBJ:
3397 d_printf("user::");
3398 break;
3399 case SMB_POSIX_ACL_USER:
3400 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3401 d_printf("user:%u:", uorg);
3402 break;
3403 case SMB_POSIX_ACL_GROUP_OBJ:
3404 d_printf("group::");
3405 break;
3406 case SMB_POSIX_ACL_GROUP:
3407 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3408 d_printf("group:%u:", uorg);
3409 break;
3410 case SMB_POSIX_ACL_MASK:
3411 d_printf("mask::");
3412 break;
3413 case SMB_POSIX_ACL_OTHER:
3414 d_printf("other::");
3415 break;
3416 default:
3417 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3418 src, (unsigned int)tagtype );
3419 SAFE_FREE(retbuf);
3420 return 1;
3423 d_printf("%s\n", perms_to_string(permstring, perms));
3426 for (i = 0; i < num_dir_acls; i++) {
3427 uint32 uorg;
3428 fstring permstring;
3429 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3430 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3432 switch(tagtype) {
3433 case SMB_POSIX_ACL_USER_OBJ:
3434 d_printf("default:user::");
3435 break;
3436 case SMB_POSIX_ACL_USER:
3437 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3438 d_printf("default:user:%u:", uorg);
3439 break;
3440 case SMB_POSIX_ACL_GROUP_OBJ:
3441 d_printf("default:group::");
3442 break;
3443 case SMB_POSIX_ACL_GROUP:
3444 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3445 d_printf("default:group:%u:", uorg);
3446 break;
3447 case SMB_POSIX_ACL_MASK:
3448 d_printf("default:mask::");
3449 break;
3450 case SMB_POSIX_ACL_OTHER:
3451 d_printf("default:other::");
3452 break;
3453 default:
3454 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3455 src, (unsigned int)tagtype );
3456 SAFE_FREE(retbuf);
3457 return 1;
3460 d_printf("%s\n", perms_to_string(permstring, perms));
3463 return 0;
3466 /****************************************************************************
3467 Get the EA list of a file
3468 ****************************************************************************/
3470 static int cmd_geteas(void)
3472 TALLOC_CTX *ctx = talloc_tos();
3473 char *src = NULL;
3474 char *name = NULL;
3475 char *targetname = NULL;
3476 struct cli_state *targetcli;
3477 NTSTATUS status;
3478 size_t i, num_eas;
3479 struct ea_struct *eas;
3481 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3482 d_printf("geteas filename\n");
3483 return 1;
3485 src = talloc_asprintf(ctx,
3486 "%s%s",
3487 client_get_cur_dir(),
3488 name);
3489 if (!src) {
3490 return 1;
3493 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3494 &targetname);
3495 if (!NT_STATUS_IS_OK(status)) {
3496 d_printf("stat %s: %s\n", src, nt_errstr(status));
3497 return 1;
3500 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3501 &num_eas, &eas);
3502 if (!NT_STATUS_IS_OK(status)) {
3503 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3504 return 1;
3507 for (i=0; i<num_eas; i++) {
3508 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3509 dump_data_file(eas[i].value.data, eas[i].value.length, false,
3510 stdout);
3511 d_printf("\n");
3514 TALLOC_FREE(eas);
3516 return 0;
3519 /****************************************************************************
3520 Set an EA of a file
3521 ****************************************************************************/
3523 static int cmd_setea(void)
3525 TALLOC_CTX *ctx = talloc_tos();
3526 char *src = NULL;
3527 char *name = NULL;
3528 char *eaname = NULL;
3529 char *eavalue = NULL;
3530 char *targetname = NULL;
3531 struct cli_state *targetcli;
3532 NTSTATUS status;
3534 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3535 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3536 d_printf("setea filename eaname value\n");
3537 return 1;
3539 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3540 eavalue = talloc_strdup(ctx, "");
3542 src = talloc_asprintf(ctx,
3543 "%s%s",
3544 client_get_cur_dir(),
3545 name);
3546 if (!src) {
3547 return 1;
3550 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3551 &targetname);
3552 if (!NT_STATUS_IS_OK(status)) {
3553 d_printf("stat %s: %s\n", src, nt_errstr(status));
3554 return 1;
3557 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3558 strlen(eavalue));
3559 if (!NT_STATUS_IS_OK(status)) {
3560 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3561 return 1;
3564 return 0;
3567 /****************************************************************************
3568 UNIX stat.
3569 ****************************************************************************/
3571 static int cmd_stat(void)
3573 TALLOC_CTX *ctx = talloc_tos();
3574 char *src = NULL;
3575 char *name = NULL;
3576 char *targetname = NULL;
3577 struct cli_state *targetcli;
3578 fstring mode_str;
3579 SMB_STRUCT_STAT sbuf;
3580 struct tm *lt;
3581 time_t tmp_time;
3582 NTSTATUS status;
3584 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3585 d_printf("stat file\n");
3586 return 1;
3588 src = talloc_asprintf(ctx,
3589 "%s%s",
3590 client_get_cur_dir(),
3591 name);
3592 if (!src) {
3593 return 1;
3596 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3597 &targetname);
3598 if (!NT_STATUS_IS_OK(status)) {
3599 d_printf("stat %s: %s\n", src, nt_errstr(status));
3600 return 1;
3603 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3604 d_printf("Server doesn't support UNIX CIFS calls.\n");
3605 return 1;
3608 status = cli_posix_stat(targetcli, targetname, &sbuf);
3609 if (!NT_STATUS_IS_OK(status)) {
3610 d_printf("%s stat file %s\n",
3611 nt_errstr(status), src);
3612 return 1;
3615 /* Print out the stat values. */
3616 d_printf("File: %s\n", src);
3617 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3618 (double)sbuf.st_ex_size,
3619 (unsigned int)sbuf.st_ex_blocks,
3620 filetype_to_str(sbuf.st_ex_mode));
3622 #if defined(S_ISCHR) && defined(S_ISBLK)
3623 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3624 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3625 (double)sbuf.st_ex_ino,
3626 (unsigned int)sbuf.st_ex_nlink,
3627 unix_dev_major(sbuf.st_ex_rdev),
3628 unix_dev_minor(sbuf.st_ex_rdev));
3629 } else
3630 #endif
3631 d_printf("Inode: %.0f\tLinks: %u\n",
3632 (double)sbuf.st_ex_ino,
3633 (unsigned int)sbuf.st_ex_nlink);
3635 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3636 ((int)sbuf.st_ex_mode & 0777),
3637 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3638 (unsigned int)sbuf.st_ex_uid,
3639 (unsigned int)sbuf.st_ex_gid);
3641 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3642 lt = localtime(&tmp_time);
3643 if (lt) {
3644 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3645 } else {
3646 fstrcpy(mode_str, "unknown");
3648 d_printf("Access: %s\n", mode_str);
3650 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3651 lt = localtime(&tmp_time);
3652 if (lt) {
3653 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3654 } else {
3655 fstrcpy(mode_str, "unknown");
3657 d_printf("Modify: %s\n", mode_str);
3659 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3660 lt = localtime(&tmp_time);
3661 if (lt) {
3662 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3663 } else {
3664 fstrcpy(mode_str, "unknown");
3666 d_printf("Change: %s\n", mode_str);
3668 return 0;
3672 /****************************************************************************
3673 UNIX chown.
3674 ****************************************************************************/
3676 static int cmd_chown(void)
3678 TALLOC_CTX *ctx = talloc_tos();
3679 char *src = NULL;
3680 uid_t uid;
3681 gid_t gid;
3682 char *buf, *buf2, *buf3;
3683 struct cli_state *targetcli;
3684 char *targetname = NULL;
3685 NTSTATUS status;
3687 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3688 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3689 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3690 d_printf("chown uid gid file\n");
3691 return 1;
3694 uid = (uid_t)atoi(buf);
3695 gid = (gid_t)atoi(buf2);
3697 src = talloc_asprintf(ctx,
3698 "%s%s",
3699 client_get_cur_dir(),
3700 buf3);
3701 if (!src) {
3702 return 1;
3704 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3705 &targetname);
3706 if (!NT_STATUS_IS_OK(status)) {
3707 d_printf("chown %s: %s\n", src, nt_errstr(status));
3708 return 1;
3711 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3712 d_printf("Server doesn't support UNIX CIFS calls.\n");
3713 return 1;
3716 status = cli_posix_chown(targetcli, targetname, uid, gid);
3717 if (!NT_STATUS_IS_OK(status)) {
3718 d_printf("%s chown file %s uid=%d, gid=%d\n",
3719 nt_errstr(status), src, (int)uid, (int)gid);
3720 return 1;
3723 return 0;
3726 /****************************************************************************
3727 Rename some file.
3728 ****************************************************************************/
3730 static int cmd_rename(void)
3732 TALLOC_CTX *ctx = talloc_tos();
3733 char *src, *dest;
3734 char *buf, *buf2;
3735 struct cli_state *targetcli;
3736 char *targetsrc;
3737 char *targetdest;
3738 NTSTATUS status;
3740 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3741 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3742 d_printf("rename <src> <dest>\n");
3743 return 1;
3746 src = talloc_asprintf(ctx,
3747 "%s%s",
3748 client_get_cur_dir(),
3749 buf);
3750 if (!src) {
3751 return 1;
3754 dest = talloc_asprintf(ctx,
3755 "%s%s",
3756 client_get_cur_dir(),
3757 buf2);
3758 if (!dest) {
3759 return 1;
3762 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3763 &targetsrc);
3764 if (!NT_STATUS_IS_OK(status)) {
3765 d_printf("rename %s: %s\n", src, nt_errstr(status));
3766 return 1;
3769 status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3770 &targetdest);
3771 if (!NT_STATUS_IS_OK(status)) {
3772 d_printf("rename %s: %s\n", dest, nt_errstr(status));
3773 return 1;
3776 status = cli_rename(targetcli, targetsrc, targetdest);
3777 if (!NT_STATUS_IS_OK(status)) {
3778 d_printf("%s renaming files %s -> %s \n",
3779 nt_errstr(status),
3780 targetsrc,
3781 targetdest);
3782 return 1;
3785 return 0;
3788 /****************************************************************************
3789 Print the volume name.
3790 ****************************************************************************/
3792 static int cmd_volume(void)
3794 char *volname;
3795 uint32_t serial_num;
3796 time_t create_date;
3797 NTSTATUS status;
3799 status = cli_get_fs_volume_info(cli, talloc_tos(),
3800 &volname, &serial_num,
3801 &create_date);
3802 if (!NT_STATUS_IS_OK(status)) {
3803 d_printf("Error %s getting volume info\n", nt_errstr(status));
3804 return 1;
3807 d_printf("Volume: |%s| serial number 0x%x\n",
3808 volname, (unsigned int)serial_num);
3809 return 0;
3812 /****************************************************************************
3813 Hard link files using the NT call.
3814 ****************************************************************************/
3816 static int cmd_hardlink(void)
3818 TALLOC_CTX *ctx = talloc_tos();
3819 char *src, *dest;
3820 char *buf, *buf2;
3821 struct cli_state *targetcli;
3822 char *targetname;
3823 NTSTATUS status;
3825 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3826 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3827 d_printf("hardlink <src> <dest>\n");
3828 return 1;
3831 src = talloc_asprintf(ctx,
3832 "%s%s",
3833 client_get_cur_dir(),
3834 buf);
3835 if (!src) {
3836 return 1;
3839 dest = talloc_asprintf(ctx,
3840 "%s%s",
3841 client_get_cur_dir(),
3842 buf2);
3843 if (!dest) {
3844 return 1;
3847 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3848 &targetname);
3849 if (!NT_STATUS_IS_OK(status)) {
3850 d_printf("hardlink %s: %s\n", src, nt_errstr(status));
3851 return 1;
3854 status = cli_nt_hardlink(targetcli, targetname, dest);
3855 if (!NT_STATUS_IS_OK(status)) {
3856 d_printf("%s doing an NT hard link of files\n",
3857 nt_errstr(status));
3858 return 1;
3861 return 0;
3864 /****************************************************************************
3865 Toggle the prompt flag.
3866 ****************************************************************************/
3868 static int cmd_prompt(void)
3870 prompt = !prompt;
3871 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3872 return 1;
3875 /****************************************************************************
3876 Set the newer than time.
3877 ****************************************************************************/
3879 static int cmd_newer(void)
3881 TALLOC_CTX *ctx = talloc_tos();
3882 char *buf;
3883 bool ok;
3884 SMB_STRUCT_STAT sbuf;
3886 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3887 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3888 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3889 DEBUG(1,("Getting files newer than %s",
3890 time_to_asc(newer_than)));
3891 } else {
3892 newer_than = 0;
3895 if (ok && newer_than == 0) {
3896 d_printf("Error setting newer-than time\n");
3897 return 1;
3900 return 0;
3903 /****************************************************************************
3904 Watch directory changes
3905 ****************************************************************************/
3907 static int cmd_notify(void)
3909 TALLOC_CTX *frame = talloc_stackframe();
3910 char *name, *buf;
3911 NTSTATUS status;
3912 uint16_t fnum;
3914 name = talloc_strdup(talloc_tos(), client_get_cur_dir());
3915 if (name == NULL) {
3916 goto fail;
3918 if (!next_token_talloc(talloc_tos(), &cmd_ptr, &buf, NULL)) {
3919 goto usage;
3921 name = talloc_asprintf_append(name, "%s", buf);
3922 if (name == NULL) {
3923 goto fail;
3925 status = cli_ntcreate(
3926 cli, name, 0, FILE_READ_DATA, 0,
3927 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3928 FILE_OPEN, 0, 0, &fnum);
3929 if (!NT_STATUS_IS_OK(status)) {
3930 d_printf("Could not open file: %s\n", nt_errstr(status));
3931 goto fail;
3934 while (1) {
3935 uint32_t i, num_changes;
3936 struct notify_change *changes;
3938 status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL,
3939 true,
3940 talloc_tos(), &num_changes, &changes);
3941 if (!NT_STATUS_IS_OK(status)) {
3942 d_printf("notify returned %s\n",
3943 nt_errstr(status));
3944 goto fail;
3946 for (i=0; i<num_changes; i++) {
3947 printf("%4.4x %s\n", changes[i].action,
3948 changes[i].name);
3950 TALLOC_FREE(changes);
3952 usage:
3953 d_printf("notify <file>\n");
3954 fail:
3955 TALLOC_FREE(frame);
3956 return 1;
3959 /****************************************************************************
3960 Set the archive level.
3961 ****************************************************************************/
3963 static int cmd_archive(void)
3965 TALLOC_CTX *ctx = talloc_tos();
3966 char *buf;
3968 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3969 archive_level = atoi(buf);
3970 } else {
3971 d_printf("Archive level is %d\n",archive_level);
3974 return 0;
3977 /****************************************************************************
3978 Toggle the backup_intent state.
3979 ****************************************************************************/
3981 static int cmd_backup(void)
3983 backup_intent = !backup_intent;
3984 cli_set_backup_intent(cli, backup_intent);
3985 DEBUG(2,("backup intent is now %s\n",backup_intent?"on":"off"));
3986 return 1;
3989 /****************************************************************************
3990 Toggle the lowercaseflag.
3991 ****************************************************************************/
3993 static int cmd_lowercase(void)
3995 lowercase = !lowercase;
3996 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3997 return 0;
4000 /****************************************************************************
4001 Toggle the case sensitive flag.
4002 ****************************************************************************/
4004 static int cmd_setcase(void)
4006 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
4008 cli_set_case_sensitive(cli, !orig_case_sensitive);
4009 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
4010 "on":"off"));
4011 return 0;
4014 /****************************************************************************
4015 Toggle the showacls flag.
4016 ****************************************************************************/
4018 static int cmd_showacls(void)
4020 showacls = !showacls;
4021 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
4022 return 0;
4026 /****************************************************************************
4027 Toggle the recurse flag.
4028 ****************************************************************************/
4030 static int cmd_recurse(void)
4032 recurse = !recurse;
4033 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
4034 return 0;
4037 /****************************************************************************
4038 Toggle the translate flag.
4039 ****************************************************************************/
4041 static int cmd_translate(void)
4043 translation = !translation;
4044 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4045 translation?"on":"off"));
4046 return 0;
4049 /****************************************************************************
4050 Do the lcd command.
4051 ****************************************************************************/
4053 static int cmd_lcd(void)
4055 TALLOC_CTX *ctx = talloc_tos();
4056 char *buf;
4057 char *d;
4059 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4060 if (chdir(buf) == -1) {
4061 d_printf("chdir to %s failed (%s)\n",
4062 buf, strerror(errno));
4065 d = sys_getwd();
4066 if (!d) {
4067 return 1;
4069 DEBUG(2,("the local directory is now %s\n",d));
4070 SAFE_FREE(d);
4071 return 0;
4074 /****************************************************************************
4075 Get a file restarting at end of local file.
4076 ****************************************************************************/
4078 static int cmd_reget(void)
4080 TALLOC_CTX *ctx = talloc_tos();
4081 char *local_name = NULL;
4082 char *remote_name = NULL;
4083 char *fname = NULL;
4084 char *p = NULL;
4086 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4087 if (!remote_name) {
4088 return 1;
4091 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
4092 d_printf("reget <filename>\n");
4093 return 1;
4095 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
4096 if (!remote_name) {
4097 return 1;
4099 remote_name = clean_name(ctx,remote_name);
4100 if (!remote_name) {
4101 return 1;
4104 local_name = fname;
4105 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
4106 if (p) {
4107 local_name = p;
4110 return do_get(remote_name, local_name, true);
4113 /****************************************************************************
4114 Put a file restarting at end of local file.
4115 ****************************************************************************/
4117 static int cmd_reput(void)
4119 TALLOC_CTX *ctx = talloc_tos();
4120 char *local_name = NULL;
4121 char *remote_name = NULL;
4122 char *buf;
4123 SMB_STRUCT_STAT st;
4125 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4126 if (!remote_name) {
4127 return 1;
4130 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
4131 d_printf("reput <filename>\n");
4132 return 1;
4135 if (!file_exist_stat(local_name, &st, false)) {
4136 d_printf("%s does not exist\n", local_name);
4137 return 1;
4140 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4141 remote_name = talloc_asprintf_append(remote_name,
4142 "%s", buf);
4143 } else {
4144 remote_name = talloc_asprintf_append(remote_name,
4145 "%s", local_name);
4147 if (!remote_name) {
4148 return 1;
4151 remote_name = clean_name(ctx, remote_name);
4152 if (!remote_name) {
4153 return 1;
4156 return do_put(remote_name, local_name, true);
4159 /****************************************************************************
4160 List a share name.
4161 ****************************************************************************/
4163 static void browse_fn(const char *name, uint32 m,
4164 const char *comment, void *state)
4166 const char *typestr = "";
4168 switch (m & 7) {
4169 case STYPE_DISKTREE:
4170 typestr = "Disk";
4171 break;
4172 case STYPE_PRINTQ:
4173 typestr = "Printer";
4174 break;
4175 case STYPE_DEVICE:
4176 typestr = "Device";
4177 break;
4178 case STYPE_IPC:
4179 typestr = "IPC";
4180 break;
4182 /* FIXME: If the remote machine returns non-ascii characters
4183 in any of these fields, they can corrupt the output. We
4184 should remove them. */
4185 if (!grepable) {
4186 d_printf("\t%-15s %-10.10s%s\n",
4187 name,typestr,comment);
4188 } else {
4189 d_printf ("%s|%s|%s\n",typestr,name,comment);
4193 static bool browse_host_rpc(bool sort)
4195 NTSTATUS status;
4196 struct rpc_pipe_client *pipe_hnd = NULL;
4197 TALLOC_CTX *frame = talloc_stackframe();
4198 WERROR werr;
4199 struct srvsvc_NetShareInfoCtr info_ctr;
4200 struct srvsvc_NetShareCtr1 ctr1;
4201 uint32_t resume_handle = 0;
4202 uint32_t total_entries = 0;
4203 int i;
4204 struct dcerpc_binding_handle *b;
4206 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
4207 &pipe_hnd);
4209 if (!NT_STATUS_IS_OK(status)) {
4210 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4211 nt_errstr(status)));
4212 TALLOC_FREE(frame);
4213 return false;
4216 b = pipe_hnd->binding_handle;
4218 ZERO_STRUCT(info_ctr);
4219 ZERO_STRUCT(ctr1);
4221 info_ctr.level = 1;
4222 info_ctr.ctr.ctr1 = &ctr1;
4224 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4225 pipe_hnd->desthost,
4226 &info_ctr,
4227 0xffffffff,
4228 &total_entries,
4229 &resume_handle,
4230 &werr);
4232 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4233 TALLOC_FREE(pipe_hnd);
4234 TALLOC_FREE(frame);
4235 return false;
4238 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4239 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4240 browse_fn(info.name, info.type, info.comment, NULL);
4243 TALLOC_FREE(pipe_hnd);
4244 TALLOC_FREE(frame);
4245 return true;
4248 /****************************************************************************
4249 Try and browse available connections on a host.
4250 ****************************************************************************/
4252 static bool browse_host(bool sort)
4254 int ret;
4255 if (!grepable) {
4256 d_printf("\n\tSharename Type Comment\n");
4257 d_printf("\t--------- ---- -------\n");
4260 if (browse_host_rpc(sort)) {
4261 return true;
4264 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1) {
4265 NTSTATUS status = cli_nt_error(cli);
4266 d_printf("Error returning browse list: %s\n",
4267 nt_errstr(status));
4270 return (ret != -1);
4273 /****************************************************************************
4274 List a server name.
4275 ****************************************************************************/
4277 static void server_fn(const char *name, uint32 m,
4278 const char *comment, void *state)
4281 if (!grepable){
4282 d_printf("\t%-16s %s\n", name, comment);
4283 } else {
4284 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4288 /****************************************************************************
4289 Try and browse available connections on a host.
4290 ****************************************************************************/
4292 static bool list_servers(const char *wk_grp)
4294 fstring state;
4296 if (!cli->server_domain)
4297 return false;
4299 if (!grepable) {
4300 d_printf("\n\tServer Comment\n");
4301 d_printf("\t--------- -------\n");
4303 fstrcpy( state, "Server" );
4304 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4305 state);
4307 if (!grepable) {
4308 d_printf("\n\tWorkgroup Master\n");
4309 d_printf("\t--------- -------\n");
4312 fstrcpy( state, "Workgroup" );
4313 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4314 server_fn, state);
4315 return true;
4318 /****************************************************************************
4319 Print or set current VUID
4320 ****************************************************************************/
4322 static int cmd_vuid(void)
4324 TALLOC_CTX *ctx = talloc_tos();
4325 char *buf;
4327 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4328 d_printf("Current VUID is %d\n",
4329 cli_state_get_uid(cli));
4330 return 0;
4333 cli_state_set_uid(cli, atoi(buf));
4334 return 0;
4337 /****************************************************************************
4338 Setup a new VUID, by issuing a session setup
4339 ****************************************************************************/
4341 static int cmd_logon(void)
4343 TALLOC_CTX *ctx = talloc_tos();
4344 char *l_username, *l_password;
4345 NTSTATUS nt_status;
4347 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4348 d_printf("logon <username> [<password>]\n");
4349 return 0;
4352 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4353 char *pass = getpass("Password: ");
4354 if (pass) {
4355 l_password = talloc_strdup(ctx,pass);
4358 if (!l_password) {
4359 return 1;
4362 nt_status = cli_session_setup(cli, l_username,
4363 l_password, strlen(l_password),
4364 l_password, strlen(l_password),
4365 lp_workgroup());
4366 if (!NT_STATUS_IS_OK(nt_status)) {
4367 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4368 return -1;
4371 d_printf("Current VUID is %d\n", cli_state_get_uid(cli));
4372 return 0;
4376 * close the session
4379 static int cmd_logoff(void)
4381 NTSTATUS status;
4383 status = cli_ulogoff(cli);
4384 if (!NT_STATUS_IS_OK(status)) {
4385 d_printf("logoff failed: %s\n", nt_errstr(status));
4386 return -1;
4389 d_printf("logoff successful\n");
4390 return 0;
4395 * tree connect (connect to a share)
4398 static int cmd_tcon(void)
4400 TALLOC_CTX *ctx = talloc_tos();
4401 char *sharename;
4402 NTSTATUS status;
4404 if (!next_token_talloc(ctx, &cmd_ptr, &sharename, NULL)) {
4405 d_printf("tcon <sharename>\n");
4406 return 0;
4409 if (!sharename) {
4410 return 1;
4413 status = cli_tree_connect(cli, sharename, "?????", "", 0);
4414 if (!NT_STATUS_IS_OK(status)) {
4415 d_printf("tcon failed: %s\n", nt_errstr(status));
4416 return -1;
4419 talloc_free(sharename);
4421 d_printf("tcon to %s successful, tid: %u\n", sharename,
4422 cli_state_get_tid(cli));
4423 return 0;
4427 * tree disconnect (disconnect from a share)
4430 static int cmd_tdis(void)
4432 NTSTATUS status;
4434 status = cli_tdis(cli);
4435 if (!NT_STATUS_IS_OK(status)) {
4436 d_printf("tdis failed: %s\n", nt_errstr(status));
4437 return -1;
4440 d_printf("tdis successful\n");
4441 return 0;
4446 * get or set tid
4449 static int cmd_tid(void)
4451 TALLOC_CTX *ctx = talloc_tos();
4452 char *tid_str;
4454 if (!next_token_talloc(ctx, &cmd_ptr, &tid_str, NULL)) {
4455 if (cli_state_has_tcon(cli)) {
4456 d_printf("current tid is %d\n", cli_state_get_tid(cli));
4457 } else {
4458 d_printf("no tcon currently\n");
4460 } else {
4461 uint16_t tid = atoi(tid_str);
4462 cli_state_set_tid(cli, tid);
4465 return 0;
4469 /****************************************************************************
4470 list active connections
4471 ****************************************************************************/
4473 static int cmd_list_connect(void)
4475 cli_cm_display(cli);
4476 return 0;
4479 /****************************************************************************
4480 display the current active client connection
4481 ****************************************************************************/
4483 static int cmd_show_connect( void )
4485 TALLOC_CTX *ctx = talloc_tos();
4486 struct cli_state *targetcli;
4487 char *targetpath;
4488 NTSTATUS status;
4490 status = cli_resolve_path(ctx, "", auth_info, cli,
4491 client_get_cur_dir(), &targetcli,
4492 &targetpath);
4493 if (!NT_STATUS_IS_OK(status)) {
4494 d_printf("showconnect %s: %s\n", cur_dir, nt_errstr(status));
4495 return 1;
4498 d_printf("//%s/%s\n", cli_state_remote_name(targetcli), targetcli->share);
4499 return 0;
4502 /****************************************************************************
4503 iosize command
4504 ***************************************************************************/
4506 int cmd_iosize(void)
4508 TALLOC_CTX *ctx = talloc_tos();
4509 char *buf;
4510 int iosize;
4512 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4513 if (!smb_encrypt) {
4514 d_printf("iosize <n> or iosize 0x<n>. "
4515 "Minimum is 16384 (0x4000), "
4516 "max is 16776960 (0xFFFF00)\n");
4517 } else {
4518 d_printf("iosize <n> or iosize 0x<n>. "
4519 "(Encrypted connection) ,"
4520 "Minimum is 16384 (0x4000), "
4521 "max is 130048 (0x1FC00)\n");
4523 return 1;
4526 iosize = strtol(buf,NULL,0);
4527 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4528 d_printf("iosize out of range for encrypted "
4529 "connection (min = 16384 (0x4000), "
4530 "max = 130048 (0x1FC00)");
4531 return 1;
4532 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4533 d_printf("iosize out of range (min = 16384 (0x4000), "
4534 "max = 16776960 (0xFFFF00)");
4535 return 1;
4538 io_bufsize = iosize;
4539 d_printf("iosize is now %d\n", io_bufsize);
4540 return 0;
4543 /****************************************************************************
4544 history
4545 ****************************************************************************/
4546 static int cmd_history(void)
4548 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4549 HIST_ENTRY **hlist;
4550 int i;
4552 hlist = history_list();
4554 for (i = 0; hlist && hlist[i]; i++) {
4555 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4557 #else
4558 DEBUG(0,("no history without readline support\n"));
4559 #endif
4561 return 0;
4564 /* Some constants for completing filename arguments */
4566 #define COMPL_NONE 0 /* No completions */
4567 #define COMPL_REMOTE 1 /* Complete remote filename */
4568 #define COMPL_LOCAL 2 /* Complete local filename */
4570 /* This defines the commands supported by this client.
4571 * NOTE: The "!" must be the last one in the list because it's fn pointer
4572 * field is NULL, and NULL in that field is used in process_tok()
4573 * (below) to indicate the end of the list. crh
4575 static struct {
4576 const char *name;
4577 int (*fn)(void);
4578 const char *description;
4579 char compl_args[2]; /* Completion argument info */
4580 } commands[] = {
4581 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4582 {"allinfo",cmd_allinfo,"<file> show all available info",
4583 {COMPL_NONE,COMPL_NONE}},
4584 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4585 {"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}},
4586 {"backup",cmd_backup,"toggle backup intent state",{COMPL_NONE,COMPL_NONE}},
4587 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4588 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4589 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4590 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4591 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4592 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4593 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4594 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4595 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4596 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4597 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4598 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4599 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4600 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4601 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4602 {COMPL_REMOTE, COMPL_LOCAL}},
4603 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4604 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4605 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4606 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4607 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4608 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4609 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4610 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4611 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4612 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4613 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4614 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4615 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4616 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4617 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4618 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4619 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4620 {"notify",cmd_notify,"<file>Get notified of dir changes",{COMPL_REMOTE,COMPL_NONE}},
4621 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4622 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4623 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4624 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4625 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4626 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4627 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4628 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4629 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4630 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4631 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4632 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4633 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4634 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4635 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4636 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4637 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4638 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4639 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4640 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4641 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4642 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4643 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4644 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4645 {COMPL_REMOTE, COMPL_LOCAL}},
4646 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4647 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4648 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4649 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4650 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4651 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4652 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4653 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4654 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4655 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4656 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4657 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4658 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4659 {"tcon",cmd_tcon,"connect to a share" ,{COMPL_NONE,COMPL_NONE}},
4660 {"tdis",cmd_tdis,"disconnect from a share",{COMPL_NONE,COMPL_NONE}},
4661 {"tid",cmd_tid,"show or set the current tid (tree-id)",{COMPL_NONE,COMPL_NONE}},
4662 {"logoff",cmd_logoff,"log off (close the session)",{COMPL_NONE,COMPL_NONE}},
4663 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4665 /* Yes, this must be here, see crh's comment above. */
4666 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4667 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4670 /*******************************************************************
4671 Lookup a command string in the list of commands, including
4672 abbreviations.
4673 ******************************************************************/
4675 static int process_tok(char *tok)
4677 int i = 0, matches = 0;
4678 int cmd=0;
4679 int tok_len = strlen(tok);
4681 while (commands[i].fn != NULL) {
4682 if (strequal(commands[i].name,tok)) {
4683 matches = 1;
4684 cmd = i;
4685 break;
4686 } else if (strnequal(commands[i].name, tok, tok_len)) {
4687 matches++;
4688 cmd = i;
4690 i++;
4693 if (matches == 0)
4694 return(-1);
4695 else if (matches == 1)
4696 return(cmd);
4697 else
4698 return(-2);
4701 /****************************************************************************
4702 Help.
4703 ****************************************************************************/
4705 static int cmd_help(void)
4707 TALLOC_CTX *ctx = talloc_tos();
4708 int i=0,j;
4709 char *buf;
4711 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4712 if ((i = process_tok(buf)) >= 0)
4713 d_printf("HELP %s:\n\t%s\n\n",
4714 commands[i].name,commands[i].description);
4715 } else {
4716 while (commands[i].description) {
4717 for (j=0; commands[i].description && (j<5); j++) {
4718 d_printf("%-15s",commands[i].name);
4719 i++;
4721 d_printf("\n");
4724 return 0;
4727 /****************************************************************************
4728 Process a -c command string.
4729 ****************************************************************************/
4731 static int process_command_string(const char *cmd_in)
4733 TALLOC_CTX *ctx = talloc_tos();
4734 char *cmd = talloc_strdup(ctx, cmd_in);
4735 int rc = 0;
4737 if (!cmd) {
4738 return 1;
4740 /* establish the connection if not already */
4742 if (!cli) {
4743 NTSTATUS status;
4745 status = cli_cm_open(talloc_tos(), NULL,
4746 have_ip ? dest_ss_str : desthost,
4747 service, auth_info,
4748 true, smb_encrypt,
4749 max_protocol, port, name_type,
4750 &cli);
4751 if (!NT_STATUS_IS_OK(status)) {
4752 return 1;
4756 while (cmd[0] != '\0') {
4757 char *line;
4758 char *p;
4759 char *tok;
4760 int i;
4762 if ((p = strchr_m(cmd, ';')) == 0) {
4763 line = cmd;
4764 cmd += strlen(cmd);
4765 } else {
4766 *p = '\0';
4767 line = cmd;
4768 cmd = p + 1;
4771 /* and get the first part of the command */
4772 cmd_ptr = line;
4773 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4774 continue;
4777 if ((i = process_tok(tok)) >= 0) {
4778 rc = commands[i].fn();
4779 } else if (i == -2) {
4780 d_printf("%s: command abbreviation ambiguous\n",tok);
4781 } else {
4782 d_printf("%s: command not found\n",tok);
4786 return rc;
4789 #define MAX_COMPLETIONS 100
4791 struct completion_remote {
4792 char *dirmask;
4793 char **matches;
4794 int count, samelen;
4795 const char *text;
4796 int len;
4799 static NTSTATUS completion_remote_filter(const char *mnt,
4800 struct file_info *f,
4801 const char *mask,
4802 void *state)
4804 struct completion_remote *info = (struct completion_remote *)state;
4806 if (info->count >= MAX_COMPLETIONS - 1) {
4807 return NT_STATUS_OK;
4809 if (strncmp(info->text, f->name, info->len) != 0) {
4810 return NT_STATUS_OK;
4812 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4813 return NT_STATUS_OK;
4816 if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
4817 info->matches[info->count] = SMB_STRDUP(f->name);
4818 else {
4819 TALLOC_CTX *ctx = talloc_stackframe();
4820 char *tmp;
4822 tmp = talloc_strdup(ctx,info->dirmask);
4823 if (!tmp) {
4824 TALLOC_FREE(ctx);
4825 return NT_STATUS_NO_MEMORY;
4827 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4828 if (!tmp) {
4829 TALLOC_FREE(ctx);
4830 return NT_STATUS_NO_MEMORY;
4832 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4833 tmp = talloc_asprintf_append(tmp, "%s",
4834 CLI_DIRSEP_STR);
4836 if (!tmp) {
4837 TALLOC_FREE(ctx);
4838 return NT_STATUS_NO_MEMORY;
4840 info->matches[info->count] = SMB_STRDUP(tmp);
4841 TALLOC_FREE(ctx);
4843 if (info->matches[info->count] == NULL) {
4844 return NT_STATUS_OK;
4846 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4847 smb_readline_ca_char(0);
4849 if (info->count == 1) {
4850 info->samelen = strlen(info->matches[info->count]);
4851 } else {
4852 while (strncmp(info->matches[info->count],
4853 info->matches[info->count-1],
4854 info->samelen) != 0) {
4855 info->samelen--;
4858 info->count++;
4859 return NT_STATUS_OK;
4862 static char **remote_completion(const char *text, int len)
4864 TALLOC_CTX *ctx = talloc_stackframe();
4865 char *dirmask = NULL;
4866 char *targetpath = NULL;
4867 struct cli_state *targetcli = NULL;
4868 int i;
4869 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4870 NTSTATUS status;
4872 /* can't have non-static initialisation on Sun CC, so do it
4873 at run time here */
4874 info.samelen = len;
4875 info.text = text;
4876 info.len = len;
4878 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4879 if (!info.matches) {
4880 TALLOC_FREE(ctx);
4881 return NULL;
4885 * We're leaving matches[0] free to fill it later with the text to
4886 * display: Either the one single match or the longest common subset
4887 * of the matches.
4889 info.matches[0] = NULL;
4890 info.count = 1;
4892 for (i = len-1; i >= 0; i--) {
4893 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4894 break;
4898 info.text = text+i+1;
4899 info.samelen = info.len = len-i-1;
4901 if (i > 0) {
4902 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4903 if (!info.dirmask) {
4904 goto cleanup;
4906 strncpy(info.dirmask, text, i+1);
4907 info.dirmask[i+1] = 0;
4908 dirmask = talloc_asprintf(ctx,
4909 "%s%*s*",
4910 client_get_cur_dir(),
4911 i-1,
4912 text);
4913 } else {
4914 info.dirmask = SMB_STRDUP("");
4915 if (!info.dirmask) {
4916 goto cleanup;
4918 dirmask = talloc_asprintf(ctx,
4919 "%s*",
4920 client_get_cur_dir());
4922 if (!dirmask) {
4923 goto cleanup;
4926 status = cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli,
4927 &targetpath);
4928 if (!NT_STATUS_IS_OK(status)) {
4929 goto cleanup;
4931 status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
4932 completion_remote_filter, (void *)&info);
4933 if (!NT_STATUS_IS_OK(status)) {
4934 goto cleanup;
4937 if (info.count == 1) {
4939 * No matches at all, NULL indicates there is nothing
4941 SAFE_FREE(info.matches[0]);
4942 SAFE_FREE(info.matches);
4943 TALLOC_FREE(ctx);
4944 return NULL;
4947 if (info.count == 2) {
4949 * Exactly one match in matches[1], indicate this is the one
4950 * in matches[0].
4952 info.matches[0] = info.matches[1];
4953 info.matches[1] = NULL;
4954 info.count -= 1;
4955 TALLOC_FREE(ctx);
4956 return info.matches;
4960 * We got more than one possible match, set the result to the maximum
4961 * common subset
4964 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4965 info.matches[info.count] = NULL;
4966 return info.matches;
4968 cleanup:
4969 for (i = 0; i < info.count; i++) {
4970 SAFE_FREE(info.matches[i]);
4972 SAFE_FREE(info.matches);
4973 SAFE_FREE(info.dirmask);
4974 TALLOC_FREE(ctx);
4975 return NULL;
4978 static char **completion_fn(const char *text, int start, int end)
4980 smb_readline_ca_char(' ');
4982 if (start) {
4983 const char *buf, *sp;
4984 int i;
4985 char compl_type;
4987 buf = smb_readline_get_line_buffer();
4988 if (buf == NULL)
4989 return NULL;
4991 sp = strchr(buf, ' ');
4992 if (sp == NULL)
4993 return NULL;
4995 for (i = 0; commands[i].name; i++) {
4996 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4997 (commands[i].name[sp - buf] == 0)) {
4998 break;
5001 if (commands[i].name == NULL)
5002 return NULL;
5004 while (*sp == ' ')
5005 sp++;
5007 if (sp == (buf + start))
5008 compl_type = commands[i].compl_args[0];
5009 else
5010 compl_type = commands[i].compl_args[1];
5012 if (compl_type == COMPL_REMOTE)
5013 return remote_completion(text, end - start);
5014 else /* fall back to local filename completion */
5015 return NULL;
5016 } else {
5017 char **matches;
5018 int i, len, samelen = 0, count=1;
5020 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
5021 if (!matches) {
5022 return NULL;
5024 matches[0] = NULL;
5026 len = strlen(text);
5027 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
5028 if (strncmp(text, commands[i].name, len) == 0) {
5029 matches[count] = SMB_STRDUP(commands[i].name);
5030 if (!matches[count])
5031 goto cleanup;
5032 if (count == 1)
5033 samelen = strlen(matches[count]);
5034 else
5035 while (strncmp(matches[count], matches[count-1], samelen) != 0)
5036 samelen--;
5037 count++;
5041 switch (count) {
5042 case 0: /* should never happen */
5043 case 1:
5044 goto cleanup;
5045 case 2:
5046 matches[0] = SMB_STRDUP(matches[1]);
5047 break;
5048 default:
5049 matches[0] = (char *)SMB_MALLOC(samelen+1);
5050 if (!matches[0])
5051 goto cleanup;
5052 strncpy(matches[0], matches[1], samelen);
5053 matches[0][samelen] = 0;
5055 matches[count] = NULL;
5056 return matches;
5058 cleanup:
5059 for (i = 0; i < count; i++)
5060 free(matches[i]);
5062 free(matches);
5063 return NULL;
5067 static bool finished;
5069 /****************************************************************************
5070 Make sure we swallow keepalives during idle time.
5071 ****************************************************************************/
5073 static void readline_callback(void)
5075 static time_t last_t;
5076 struct timespec now;
5077 time_t t;
5078 NTSTATUS status;
5079 unsigned char garbage[16];
5081 clock_gettime_mono(&now);
5082 t = now.tv_sec;
5084 if (t - last_t < 5)
5085 return;
5087 last_t = t;
5089 /* Ping the server to keep the connection alive using SMBecho. */
5090 memset(garbage, 0xf0, sizeof(garbage));
5091 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
5092 if (NT_STATUS_IS_OK(status)) {
5093 return;
5096 if (!cli_state_is_connected(cli)) {
5097 DEBUG(0,("SMBecho failed (%s). The connection is "
5098 "disconnected now\n", nt_errstr(status)));
5099 finished = true;
5100 smb_readline_done();
5104 /****************************************************************************
5105 Process commands on stdin.
5106 ****************************************************************************/
5108 static int process_stdin(void)
5110 int rc = 0;
5112 while (!finished) {
5113 TALLOC_CTX *frame = talloc_stackframe();
5114 char *tok = NULL;
5115 char *the_prompt = NULL;
5116 char *line = NULL;
5117 int i;
5119 /* display a prompt */
5120 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
5121 TALLOC_FREE(frame);
5122 break;
5124 line = smb_readline(the_prompt, readline_callback, completion_fn);
5125 SAFE_FREE(the_prompt);
5126 if (!line) {
5127 TALLOC_FREE(frame);
5128 break;
5131 /* special case - first char is ! */
5132 if (*line == '!') {
5133 if (system(line + 1) == -1) {
5134 d_printf("system() command %s failed.\n",
5135 line+1);
5137 SAFE_FREE(line);
5138 TALLOC_FREE(frame);
5139 continue;
5142 /* and get the first part of the command */
5143 cmd_ptr = line;
5144 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
5145 TALLOC_FREE(frame);
5146 SAFE_FREE(line);
5147 continue;
5150 if ((i = process_tok(tok)) >= 0) {
5151 rc = commands[i].fn();
5152 } else if (i == -2) {
5153 d_printf("%s: command abbreviation ambiguous\n",tok);
5154 } else {
5155 d_printf("%s: command not found\n",tok);
5157 SAFE_FREE(line);
5158 TALLOC_FREE(frame);
5160 return rc;
5163 /****************************************************************************
5164 Process commands from the client.
5165 ****************************************************************************/
5167 static int process(const char *base_directory)
5169 int rc = 0;
5170 NTSTATUS status;
5172 status = cli_cm_open(talloc_tos(), NULL,
5173 have_ip ? dest_ss_str : desthost,
5174 service, auth_info, true, smb_encrypt,
5175 max_protocol, port, name_type, &cli);
5176 if (!NT_STATUS_IS_OK(status)) {
5177 return 1;
5180 if (base_directory && *base_directory) {
5181 rc = do_cd(base_directory);
5182 if (rc) {
5183 cli_shutdown(cli);
5184 return rc;
5188 if (cmdstr) {
5189 rc = process_command_string(cmdstr);
5190 } else {
5191 process_stdin();
5194 cli_shutdown(cli);
5195 return rc;
5198 /****************************************************************************
5199 Handle a -L query.
5200 ****************************************************************************/
5202 static int do_host_query(const char *query_host)
5204 NTSTATUS status;
5206 status = cli_cm_open(talloc_tos(), NULL,
5207 have_ip ? dest_ss_str : query_host,
5208 "IPC$", auth_info, true, smb_encrypt,
5209 max_protocol, port, name_type, &cli);
5210 if (!NT_STATUS_IS_OK(status)) {
5211 return 1;
5214 browse_host(true);
5216 /* Ensure that the host can do IPv4 */
5218 if (!interpret_addr(query_host)) {
5219 struct sockaddr_storage ss;
5220 if (interpret_string_addr(&ss, query_host, 0) &&
5221 (ss.ss_family != AF_INET)) {
5222 d_printf("%s is an IPv6 address -- no workgroup available\n",
5223 query_host);
5224 return 1;
5228 if (port != NBT_SMB_PORT) {
5230 /* Workgroups simply don't make sense over anything
5231 else but port 139... */
5233 cli_shutdown(cli);
5234 status = cli_cm_open(talloc_tos(), NULL,
5235 have_ip ? dest_ss_str : query_host,
5236 "IPC$", auth_info, true, smb_encrypt,
5237 max_protocol, NBT_SMB_PORT, name_type,
5238 &cli);
5239 if (!NT_STATUS_IS_OK(status)) {
5240 cli = NULL;
5244 if (cli == NULL) {
5245 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5246 return 1;
5249 list_servers(lp_workgroup());
5251 cli_shutdown(cli);
5253 return(0);
5256 /****************************************************************************
5257 Handle a tar operation.
5258 ****************************************************************************/
5260 static int do_tar_op(const char *base_directory)
5262 int ret;
5264 /* do we already have a connection? */
5265 if (!cli) {
5266 NTSTATUS status;
5268 status = cli_cm_open(talloc_tos(), NULL,
5269 have_ip ? dest_ss_str : desthost,
5270 service, auth_info, true, smb_encrypt,
5271 max_protocol, port, name_type, &cli);
5272 if (!NT_STATUS_IS_OK(status)) {
5273 return 1;
5277 recurse=true;
5279 if (base_directory && *base_directory) {
5280 ret = do_cd(base_directory);
5281 if (ret) {
5282 cli_shutdown(cli);
5283 return ret;
5287 ret=process_tar();
5289 cli_shutdown(cli);
5291 return(ret);
5294 /****************************************************************************
5295 Handle a message operation.
5296 ****************************************************************************/
5298 static int do_message_op(struct user_auth_info *a_info)
5300 NTSTATUS status;
5302 status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL,
5303 port ? port : NBT_SMB_PORT, name_type,
5304 lp_netbios_name(), SMB_SIGNING_DEFAULT, 0, &cli);
5305 if (!NT_STATUS_IS_OK(status)) {
5306 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5307 return 1;
5310 send_message(get_cmdline_auth_info_username(a_info));
5311 cli_shutdown(cli);
5313 return 0;
5316 /****************************************************************************
5317 main program
5318 ****************************************************************************/
5320 int main(int argc,char *argv[])
5322 char *base_directory = NULL;
5323 int opt;
5324 char *query_host = NULL;
5325 bool message = false;
5326 static const char *new_name_resolve_order = NULL;
5327 poptContext pc;
5328 char *p;
5329 int rc = 0;
5330 bool tar_opt = false;
5331 bool service_opt = false;
5332 struct poptOption long_options[] = {
5333 POPT_AUTOHELP
5335 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5336 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5337 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5338 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5339 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5340 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5341 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5342 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5343 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5344 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5345 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5346 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5347 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5348 POPT_COMMON_SAMBA
5349 POPT_COMMON_CONNECTION
5350 POPT_COMMON_CREDENTIALS
5351 POPT_TABLEEND
5353 TALLOC_CTX *frame = talloc_stackframe();
5355 if (!client_set_cur_dir("\\")) {
5356 exit(ENOMEM);
5359 /* set default debug level to 1 regardless of what smb.conf sets */
5360 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5361 load_case_tables();
5363 lp_set_cmdline("log level", "1");
5365 auth_info = user_auth_info_init(frame);
5366 if (auth_info == NULL) {
5367 exit(1);
5369 popt_common_set_auth_info(auth_info);
5371 /* skip argv(0) */
5372 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5373 poptSetOtherOptionHelp(pc, "service <password>");
5375 while ((opt = poptGetNextOpt(pc)) != -1) {
5377 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5378 /* I see no other way to keep things sane --SSS */
5379 if (tar_opt == true) {
5380 while (poptPeekArg(pc)) {
5381 poptGetArg(pc);
5383 tar_opt = false;
5386 /* if the service has not yet been specified lets see if it is available in the popt stack */
5387 if (!service_opt && poptPeekArg(pc)) {
5388 service = talloc_strdup(frame, poptGetArg(pc));
5389 if (!service) {
5390 exit(ENOMEM);
5392 service_opt = true;
5395 /* if the service has already been retrieved then check if we have also a password */
5396 if (service_opt
5397 && (!get_cmdline_auth_info_got_pass(auth_info))
5398 && poptPeekArg(pc)) {
5399 set_cmdline_auth_info_password(auth_info,
5400 poptGetArg(pc));
5403 switch (opt) {
5404 case 'M':
5405 /* Messages are sent to NetBIOS name type 0x3
5406 * (Messenger Service). Make sure we default
5407 * to port 139 instead of port 445. srl,crh
5409 name_type = 0x03;
5410 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5411 if (!desthost) {
5412 exit(ENOMEM);
5414 if( !port )
5415 port = NBT_SMB_PORT;
5416 message = true;
5417 break;
5418 case 'I':
5420 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5421 exit(1);
5423 have_ip = true;
5424 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5426 break;
5427 case 'E':
5428 setup_logging("smbclient", DEBUG_STDERR );
5429 display_set_stderr();
5430 break;
5432 case 'L':
5433 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5434 if (!query_host) {
5435 exit(ENOMEM);
5437 break;
5438 case 'm':
5439 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5440 break;
5441 case 'T':
5442 /* We must use old option processing for this. Find the
5443 * position of the -T option in the raw argv[]. */
5445 int i;
5446 for (i = 1; i < argc; i++) {
5447 if (strncmp("-T", argv[i],2)==0)
5448 break;
5450 i++;
5451 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5452 poptPrintUsage(pc, stderr, 0);
5453 exit(1);
5456 /* this must be the last option, mark we have parsed it so that we know we have */
5457 tar_opt = true;
5458 break;
5459 case 'D':
5460 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5461 if (!base_directory) {
5462 exit(ENOMEM);
5464 break;
5465 case 'g':
5466 grepable=true;
5467 break;
5468 case 'e':
5469 smb_encrypt=true;
5470 break;
5471 case 'B':
5472 return(do_smb_browse());
5477 /* We may still have some leftovers after the last popt option has been called */
5478 if (tar_opt == true) {
5479 while (poptPeekArg(pc)) {
5480 poptGetArg(pc);
5482 tar_opt = false;
5485 /* if the service has not yet been specified lets see if it is available in the popt stack */
5486 if (!service_opt && poptPeekArg(pc)) {
5487 service = talloc_strdup(frame,poptGetArg(pc));
5488 if (!service) {
5489 exit(ENOMEM);
5491 service_opt = true;
5494 /* if the service has already been retrieved then check if we have also a password */
5495 if (service_opt
5496 && !get_cmdline_auth_info_got_pass(auth_info)
5497 && poptPeekArg(pc)) {
5498 set_cmdline_auth_info_password(auth_info,
5499 poptGetArg(pc));
5502 if ( override_logfile )
5503 setup_logging( lp_logfile(), DEBUG_FILE );
5505 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5506 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5507 argv[0], get_dyn_CONFIGFILE());
5510 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5511 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5512 exit(-1);
5515 load_interfaces();
5517 if (service_opt && service) {
5518 size_t len;
5520 /* Convert any '/' characters in the service name to '\' characters */
5521 string_replace(service, '/','\\');
5522 if (count_chars(service,'\\') < 3) {
5523 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5524 poptPrintUsage(pc, stderr, 0);
5525 exit(1);
5527 /* Remove trailing slashes */
5528 len = strlen(service);
5529 while(len > 0 && service[len - 1] == '\\') {
5530 --len;
5531 service[len] = '\0';
5535 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5536 if (!init_names()) {
5537 fprintf(stderr, "init_names() failed\n");
5538 exit(1);
5541 if(new_name_resolve_order)
5542 lp_set_name_resolve_order(new_name_resolve_order);
5544 if (!tar_type && !query_host && !service && !message) {
5545 poptPrintUsage(pc, stderr, 0);
5546 exit(1);
5549 poptFreeContext(pc);
5551 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5553 /* Ensure we have a password (or equivalent). */
5554 set_cmdline_auth_info_getpass(auth_info);
5556 if (tar_type) {
5557 if (cmdstr)
5558 process_command_string(cmdstr);
5559 return do_tar_op(base_directory);
5562 if (query_host && *query_host) {
5563 char *qhost = query_host;
5564 char *slash;
5566 while (*qhost == '\\' || *qhost == '/')
5567 qhost++;
5569 if ((slash = strchr_m(qhost, '/'))
5570 || (slash = strchr_m(qhost, '\\'))) {
5571 *slash = 0;
5574 if ((p=strchr_m(qhost, '#'))) {
5575 *p = 0;
5576 p++;
5577 sscanf(p, "%x", &name_type);
5580 return do_host_query(qhost);
5583 if (message) {
5584 return do_message_op(auth_info);
5587 if (process(base_directory)) {
5588 return 1;
5591 TALLOC_FREE(frame);
5592 return rc;