2 Unix SMB/CIFS implementation.
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/>.
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 "client/clitar_proto.h"
30 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
31 #include "../lib/util/select.h"
32 #include "system/readline.h"
33 #include "../libcli/smbreadline/smbreadline.h"
34 #include "../libcli/security/security.h"
35 #include "system/select.h"
36 #include "libsmb/libsmb.h"
37 #include "libsmb/clirap.h"
39 #include "libsmb/nmblib.h"
40 #include "include/ntioctl.h"
41 #include "../libcli/smb/smbXcli_base.h"
47 extern int do_smb_browse(void); /* mDNS browsing */
49 extern bool override_logfile;
53 static char *desthost;
54 static bool grepable = false;
55 static char *cmdstr = NULL;
56 const char *cmd_ptr = NULL;
58 static int io_bufsize = 0; /* we use the default size */
59 static int io_timeout = (CLIENT_TIMEOUT/1000); /* Per operation timeout (in seconds). */
61 static int name_type = 0x20;
62 static int max_protocol = -1;
64 static int process_tok(char *tok);
65 static int cmd_help(void);
67 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
69 /* value for unused fid field in trans2 secondary request */
70 #define FID_UNUSED (0xFFFF)
72 time_t newer_than = 0;
73 static int archive_level = 0;
75 static bool translation = false;
78 static bool prompt = true;
80 static bool recurse = false;
81 static bool showacls = false;
82 bool lowercase = false;
83 static bool backup_intent = false;
85 static struct sockaddr_storage dest_ss;
86 static char dest_ss_str[INET6_ADDRSTRLEN];
88 #define SEPARATORS " \t\n\r"
90 static bool abort_mget = true;
93 uint64_t get_total_size = 0;
94 unsigned int get_total_time_ms = 0;
95 static uint64_t put_total_size = 0;
96 static unsigned int put_total_time_ms = 0;
99 static double dir_total;
101 /* encrypted state. */
102 static bool smb_encrypt;
104 /* root cli_state connection */
106 struct cli_state *cli;
108 static char CLI_DIRSEP_CHAR = '\\';
109 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
111 /* Accessor functions for directory paths. */
112 static char *fileselection;
113 static const char *client_get_fileselection(void)
116 return fileselection;
121 static const char *client_set_fileselection(const char *new_fs)
123 SAFE_FREE(fileselection);
125 fileselection = SMB_STRDUP(new_fs);
127 return client_get_fileselection();
131 static const char *client_get_cwd(void)
136 return CLI_DIRSEP_STR;
139 static const char *client_set_cwd(const char *new_cwd)
143 cwd = SMB_STRDUP(new_cwd);
145 return client_get_cwd();
148 static char *cur_dir;
149 const char *client_get_cur_dir(void)
154 return CLI_DIRSEP_STR;
157 const char *client_set_cur_dir(const char *newdir)
161 cur_dir = SMB_STRDUP(newdir);
163 return client_get_cur_dir();
166 /****************************************************************************
167 Put up a yes/no prompt.
168 ****************************************************************************/
170 static bool yesno(const char *p)
175 if (!fgets(ans,sizeof(ans)-1,stdin))
178 if (*ans == 'y' || *ans == 'Y')
184 /****************************************************************************
185 Write to a local file with CR/LF->LF translation if appropriate. Return the
186 number taken from the buffer. This may not equal the number written.
187 ****************************************************************************/
189 static int writefile(int f, char *b, int n)
199 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
202 if (write(f, b, 1) != 1) {
212 /****************************************************************************
213 Read from a file with LF->CR/LF translation if appropriate. Return the
214 number read. read approx n bytes.
215 ****************************************************************************/
217 static int readfile(uint8_t *b, int n, FILE *f)
223 return fread(b,1,n,f);
226 while (i < (n - 1)) {
227 if ((c = getc(f)) == EOF) {
231 if (c == '\n') { /* change all LFs to CR/LF */
246 static size_t push_source(uint8_t *buf, size_t n, void *priv)
248 struct push_state *state = (struct push_state *)priv;
251 if (feof(state->f)) {
255 result = readfile(buf, n, state->f);
256 state->nread += result;
260 /****************************************************************************
262 ****************************************************************************/
264 static void send_message(const char *username)
270 d_printf("Type your message, ending it with a Control-D\n");
273 while (i<sizeof(buf)-2) {
274 int c = fgetc(stdin);
285 status = cli_message(cli, desthost, username, buf);
286 if (!NT_STATUS_IS_OK(status)) {
287 d_fprintf(stderr, "cli_message returned %s\n",
292 /****************************************************************************
293 Check the space on a device.
294 ****************************************************************************/
296 static int do_dskattr(void)
298 uint64_t total, bsize, avail;
299 struct cli_state *targetcli = NULL;
300 char *targetpath = NULL;
301 TALLOC_CTX *ctx = talloc_tos();
304 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(), cli,
305 client_get_cur_dir(), &targetcli,
307 if (!NT_STATUS_IS_OK(status)) {
308 d_printf("Error in dskattr: %s\n", nt_errstr(status));
312 status = cli_disk_size(targetcli, targetpath, &bsize, &total, &avail);
313 if (!NT_STATUS_IS_OK(status)) {
314 d_printf("Error in dskattr: %s\n", nt_errstr(status));
318 d_printf("\n\t\t%" PRIu64
319 " blocks of size %" PRIu64
320 ". %" PRIu64 " blocks available\n",
321 total, bsize, avail);
326 /****************************************************************************
328 ****************************************************************************/
330 static int cmd_pwd(void)
332 d_printf("Current directory is %s",service);
333 d_printf("%s\n",client_get_cur_dir());
337 /****************************************************************************
338 Ensure name has correct directory separators.
339 ****************************************************************************/
341 static void normalize_name(char *newdir)
343 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
344 string_replace(newdir,'/','\\');
348 /****************************************************************************
349 Local name cleanup before sending to server. SMB1 allows relative pathnames,
350 but SMB2 does not, so we need to resolve them locally.
351 ****************************************************************************/
353 char *client_clean_name(TALLOC_CTX *ctx, const char *name)
355 char *newname = NULL;
360 /* First ensure any path separators are correct. */
361 newname = talloc_strdup(ctx, name);
362 if (newname == NULL) {
365 normalize_name(newname);
367 /* Now remove any relative (..) path components. */
368 if (cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
369 newname = unix_clean_name(ctx, newname);
371 newname = clean_name(ctx, newname);
373 if (newname == NULL) {
379 /****************************************************************************
380 Change directory - inner section.
381 ****************************************************************************/
383 static int do_cd(const char *new_dir)
386 char *saved_dir = NULL;
388 char *targetpath = NULL;
389 struct cli_state *targetcli = NULL;
390 SMB_STRUCT_STAT sbuf;
393 TALLOC_CTX *ctx = talloc_stackframe();
396 newdir = talloc_strdup(ctx, new_dir);
402 normalize_name(newdir);
404 /* Save the current directory in case the new directory is invalid */
406 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
412 if (*newdir == CLI_DIRSEP_CHAR) {
413 client_set_cur_dir(newdir);
416 new_cd = talloc_asprintf(ctx, "%s%s",
417 client_get_cur_dir(),
424 /* Ensure cur_dir ends in a DIRSEP */
425 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
426 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
431 client_set_cur_dir(new_cd);
433 new_cd = client_clean_name(ctx, new_cd);
434 client_set_cur_dir(new_cd);
436 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
437 cli, new_cd, &targetcli, &targetpath);
438 if (!NT_STATUS_IS_OK(status)) {
439 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
440 client_set_cur_dir(saved_dir);
444 if (strequal(targetpath,CLI_DIRSEP_STR )) {
449 /* Use a trans2_qpathinfo to test directories for modern servers.
450 Except Win9x doesn't support the qpathinfo_basic() call..... */
452 if (smbXcli_conn_protocol(targetcli->conn) > PROTOCOL_LANMAN2 && !targetcli->win95) {
454 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
456 if (!NT_STATUS_IS_OK(status)) {
457 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
458 client_set_cur_dir(saved_dir);
462 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
463 d_printf("cd %s: not a directory\n", new_cd);
464 client_set_cur_dir(saved_dir);
469 targetpath = talloc_asprintf(ctx,
474 client_set_cur_dir(saved_dir);
477 targetpath = client_clean_name(ctx, targetpath);
479 client_set_cur_dir(saved_dir);
483 status = cli_chkpath(targetcli, targetpath);
484 if (!NT_STATUS_IS_OK(status)) {
485 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
486 client_set_cur_dir(saved_dir);
499 /****************************************************************************
501 ****************************************************************************/
503 static int cmd_cd(void)
508 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
511 d_printf("Current directory is %s\n",client_get_cur_dir());
517 /****************************************************************************
519 ****************************************************************************/
521 static int cmd_cd_oneup(void)
526 /*******************************************************************
527 Decide if a file should be operated on.
528 ********************************************************************/
530 static bool do_this_one(struct file_info *finfo)
536 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
540 if (*client_get_fileselection() &&
541 !mask_match(finfo->name,client_get_fileselection(),false)) {
542 DEBUG(3,("mask_match %s failed\n", finfo->name));
546 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
547 DEBUG(3,("newer_than %s failed\n", finfo->name));
551 if ((archive_level==1 || archive_level==2) && !(finfo->mode & FILE_ATTRIBUTE_ARCHIVE)) {
552 DEBUG(3,("archive %s failed\n", finfo->name));
559 /****************************************************************************
560 Display info about a file.
561 ****************************************************************************/
563 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
567 TALLOC_CTX *ctx = talloc_tos();
568 NTSTATUS status = NT_STATUS_OK;
570 if (!do_this_one(finfo)) {
574 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
576 d_printf(" %-30s%7.7s %8.0f %s",
578 attrib_string(talloc_tos(), finfo->mode),
581 dir_total += finfo->size;
586 /* skip if this is . or .. */
587 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
589 /* create absolute filename for cli_ntcreate() FIXME */
590 afname = talloc_asprintf(ctx,
596 return NT_STATUS_NO_MEMORY;
598 /* print file meta date header */
599 d_printf( "FILENAME:%s\n", finfo->name);
600 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo->mode));
601 d_printf( "SIZE:%.0f\n", (double)finfo->size);
602 d_printf( "MTIME:%s", time_to_asc(t));
603 status = cli_ntcreate(cli_state, afname, 0,
604 CREATE_ACCESS_READ, 0,
605 FILE_SHARE_READ|FILE_SHARE_WRITE,
606 FILE_OPEN, 0x0, 0x0, &fnum, NULL);
607 if (!NT_STATUS_IS_OK(status)) {
608 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
609 afname, nt_errstr(status)));
611 struct security_descriptor *sd = NULL;
612 status = cli_query_secdesc(cli_state, fnum,
614 if (!NT_STATUS_IS_OK(status)) {
615 DEBUG( 0, ("display_finfo() failed to "
616 "get security descriptor: %s",
619 display_sec_desc(sd);
628 /****************************************************************************
629 Accumulate size of a file.
630 ****************************************************************************/
632 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
635 if (do_this_one(finfo)) {
636 dir_total += finfo->size;
641 static bool do_list_recurse;
642 static bool do_list_dirs;
643 static char *do_list_queue = 0;
644 static long do_list_queue_size = 0;
645 static long do_list_queue_start = 0;
646 static long do_list_queue_end = 0;
647 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
650 /****************************************************************************
651 Functions for do_list_queue.
652 ****************************************************************************/
655 * The do_list_queue is a NUL-separated list of strings stored in a
656 * char*. Since this is a FIFO, we keep track of the beginning and
657 * ending locations of the data in the queue. When we overflow, we
658 * double the size of the char*. When the start of the data passes
659 * the midpoint, we move everything back. This is logically more
660 * complex than a linked list, but easier from a memory management
661 * angle. In any memory error condition, do_list_queue is reset.
662 * Functions check to ensure that do_list_queue is non-NULL before
666 static void reset_do_list_queue(void)
668 SAFE_FREE(do_list_queue);
669 do_list_queue_size = 0;
670 do_list_queue_start = 0;
671 do_list_queue_end = 0;
674 static void init_do_list_queue(void)
676 reset_do_list_queue();
677 do_list_queue_size = 1024;
678 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
679 if (do_list_queue == 0) {
680 d_printf("malloc fail for size %d\n",
681 (int)do_list_queue_size);
682 reset_do_list_queue();
684 memset(do_list_queue, 0, do_list_queue_size);
688 static void adjust_do_list_queue(void)
691 * If the starting point of the queue is more than half way through,
692 * move everything toward the beginning.
695 if (do_list_queue == NULL) {
696 DEBUG(4,("do_list_queue is empty\n"));
697 do_list_queue_start = do_list_queue_end = 0;
701 if (do_list_queue_start == do_list_queue_end) {
702 DEBUG(4,("do_list_queue is empty\n"));
703 do_list_queue_start = do_list_queue_end = 0;
704 *do_list_queue = '\0';
705 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
706 DEBUG(4,("sliding do_list_queue backward\n"));
707 memmove(do_list_queue,
708 do_list_queue + do_list_queue_start,
709 do_list_queue_end - do_list_queue_start);
710 do_list_queue_end -= do_list_queue_start;
711 do_list_queue_start = 0;
715 static void add_to_do_list_queue(const char *entry)
717 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
718 while (new_end > do_list_queue_size) {
719 do_list_queue_size *= 2;
720 DEBUG(4,("enlarging do_list_queue to %d\n",
721 (int)do_list_queue_size));
722 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
723 if (! do_list_queue) {
724 d_printf("failure enlarging do_list_queue to %d bytes\n",
725 (int)do_list_queue_size);
726 reset_do_list_queue();
728 memset(do_list_queue + do_list_queue_size / 2,
729 0, do_list_queue_size / 2);
733 strlcpy_base(do_list_queue + do_list_queue_end,
734 entry, do_list_queue, do_list_queue_size);
735 do_list_queue_end = new_end;
736 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
737 entry, (int)do_list_queue_start, (int)do_list_queue_end));
741 static char *do_list_queue_head(void)
743 return do_list_queue + do_list_queue_start;
746 static void remove_do_list_queue_head(void)
748 if (do_list_queue_end > do_list_queue_start) {
749 do_list_queue_start += strlen(do_list_queue_head()) + 1;
750 adjust_do_list_queue();
751 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
752 (int)do_list_queue_start, (int)do_list_queue_end));
756 static int do_list_queue_empty(void)
758 return (! (do_list_queue && *do_list_queue));
761 /****************************************************************************
762 A helper for do_list.
763 ****************************************************************************/
765 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
766 const char *mask, void *state)
768 struct cli_state *cli_state = (struct cli_state *)state;
769 TALLOC_CTX *ctx = talloc_tos();
771 char *dir_end = NULL;
772 NTSTATUS status = NT_STATUS_OK;
774 /* Work out the directory. */
775 dir = talloc_strdup(ctx, mask);
777 return NT_STATUS_NO_MEMORY;
779 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
783 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
784 if (do_list_dirs && do_this_one(f)) {
785 status = do_list_fn(cli_state, f, dir);
786 if (!NT_STATUS_IS_OK(status)) {
790 if (do_list_recurse &&
792 !strequal(f->name,".") &&
793 !strequal(f->name,"..")) {
798 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
800 return NT_STATUS_UNSUCCESSFUL;
803 mask2 = talloc_asprintf(ctx,
809 return NT_STATUS_NO_MEMORY;
811 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
817 mask2 = talloc_asprintf_append(mask2,
823 return NT_STATUS_NO_MEMORY;
825 add_to_do_list_queue(mask2);
832 if (do_this_one(f)) {
833 status = do_list_fn(cli_state, f, dir);
839 /****************************************************************************
840 A wrapper around cli_list that adds recursion.
841 ****************************************************************************/
843 NTSTATUS do_list(const char *mask,
845 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
850 static int in_do_list = 0;
851 TALLOC_CTX *ctx = talloc_tos();
852 struct cli_state *targetcli = NULL;
853 char *targetpath = NULL;
854 NTSTATUS ret_status = NT_STATUS_OK;
855 NTSTATUS status = NT_STATUS_OK;
857 if (in_do_list && rec) {
858 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
864 do_list_recurse = rec;
869 init_do_list_queue();
870 add_to_do_list_queue(mask);
872 while (!do_list_queue_empty()) {
874 * Need to copy head so that it doesn't become
875 * invalid inside the call to cli_list. This
876 * would happen if the list were expanded
878 * Fix from E. Jay Berkenbilt (ejb@ql.org)
880 char *head = talloc_strdup(ctx, do_list_queue_head());
883 return NT_STATUS_NO_MEMORY;
888 status = cli_resolve_path(ctx, "",
889 popt_get_cmdline_auth_info(),
890 cli, head, &targetcli, &targetpath);
891 if (!NT_STATUS_IS_OK(status)) {
892 d_printf("do_list: [%s] %s\n", head,
894 remove_do_list_queue_head();
898 status = cli_list(targetcli, targetpath, attribute,
899 do_list_helper, targetcli);
900 if (!NT_STATUS_IS_OK(status)) {
901 d_printf("%s listing %s\n",
902 nt_errstr(status), targetpath);
905 remove_do_list_queue_head();
906 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
907 char *next_file = do_list_queue_head();
909 if ((strlen(next_file) >= 2) &&
910 (next_file[strlen(next_file) - 1] == '*') &&
911 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
912 save_ch = next_file +
913 strlen(next_file) - 2;
916 /* cwd is only used if showacls is on */
917 client_set_cwd(next_file);
920 if (!showacls) /* don't disturbe the showacls output */
921 d_printf("\n%s\n",next_file);
923 *save_ch = CLI_DIRSEP_CHAR;
927 TALLOC_FREE(targetpath);
931 status = cli_resolve_path(ctx, "",
932 popt_get_cmdline_auth_info(), cli, mask,
933 &targetcli, &targetpath);
934 if (NT_STATUS_IS_OK(status)) {
935 status = cli_list(targetcli, targetpath, attribute,
936 do_list_helper, targetcli);
937 if (!NT_STATUS_IS_OK(status)) {
938 d_printf("%s listing %s\n",
939 nt_errstr(status), targetpath);
942 TALLOC_FREE(targetpath);
944 d_printf("do_list: [%s] %s\n", mask, nt_errstr(status));
950 reset_do_list_queue();
954 /****************************************************************************
955 Get a directory listing.
956 ****************************************************************************/
958 static int cmd_dir(void)
960 TALLOC_CTX *ctx = talloc_tos();
961 uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
968 mask = talloc_strdup(ctx, client_get_cur_dir());
973 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
975 if (*buf == CLI_DIRSEP_CHAR) {
976 mask = talloc_strdup(ctx, buf);
978 mask = talloc_asprintf_append(mask, "%s", buf);
981 mask = talloc_asprintf_append(mask, "*");
987 mask = client_clean_name(ctx, mask);
993 /* cwd is only used if showacls is on */
994 client_set_cwd(client_get_cur_dir());
997 status = do_list(mask, attribute, display_finfo, recurse, true);
998 if (!NT_STATUS_IS_OK(status)) {
1004 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
1009 /****************************************************************************
1010 Get a directory listing.
1011 ****************************************************************************/
1013 static int cmd_du(void)
1015 TALLOC_CTX *ctx = talloc_tos();
1016 uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1023 mask = talloc_strdup(ctx, client_get_cur_dir());
1027 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
1028 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
1034 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1035 normalize_name(buf);
1036 if (*buf == CLI_DIRSEP_CHAR) {
1037 mask = talloc_strdup(ctx, buf);
1039 mask = talloc_asprintf_append(mask, "%s", buf);
1042 mask = talloc_strdup(ctx, "*");
1048 mask = client_clean_name(ctx, mask);
1053 status = do_list(mask, attribute, do_du, recurse, true);
1054 if (!NT_STATUS_IS_OK(status)) {
1060 d_printf("Total number of bytes: %.0f\n", dir_total);
1065 static int cmd_echo(void)
1067 TALLOC_CTX *ctx = talloc_tos();
1072 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1073 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1074 d_printf("echo <num> <data>\n");
1078 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1080 if (!NT_STATUS_IS_OK(status)) {
1081 d_printf("echo failed: %s\n", nt_errstr(status));
1088 /****************************************************************************
1089 Get a file from rname to lname
1090 ****************************************************************************/
1092 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1094 int *pfd = (int *)priv;
1095 if (writefile(*pfd, buf, n) == -1) {
1096 return map_nt_error_from_unix(errno);
1098 return NT_STATUS_OK;
1101 static int do_get(const char *rname, const char *lname_in, bool reget)
1103 TALLOC_CTX *ctx = talloc_tos();
1106 bool newhandle = false;
1107 struct timespec tp_start;
1113 struct cli_state *targetcli = NULL;
1114 char *targetname = NULL;
1118 lname = talloc_strdup(ctx, lname_in);
1124 if (!strlower_m(lname)) {
1125 d_printf("strlower_m %s failed\n", lname);
1130 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
1131 cli, rname, &targetcli, &targetname);
1132 if (!NT_STATUS_IS_OK(status)) {
1133 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1137 clock_gettime_mono(&tp_start);
1139 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1140 if (!NT_STATUS_IS_OK(status)) {
1141 d_printf("%s opening remote file %s\n", nt_errstr(status),
1146 if(!strcmp(lname,"-")) {
1147 handle = fileno(stdout);
1150 handle = open(lname, O_WRONLY|O_CREAT, 0644);
1152 start = lseek(handle, 0, SEEK_END);
1154 d_printf("Error seeking local file\n");
1159 handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1164 d_printf("Error opening local file %s\n",lname);
1169 status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1171 if (!NT_STATUS_IS_OK(status)) {
1172 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1174 if(!NT_STATUS_IS_OK(status)) {
1175 d_printf("getattrib: %s\n", nt_errstr(status));
1180 DEBUG(1,("getting file %s of size %.0f as %s ",
1181 rname, (double)size, lname));
1183 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1184 writefile_sink, (void *)&handle, &nread);
1185 if (!NT_STATUS_IS_OK(status)) {
1186 d_fprintf(stderr, "parallel_read returned %s\n",
1188 cli_close(targetcli, fnum);
1192 status = cli_close(targetcli, fnum);
1193 if (!NT_STATUS_IS_OK(status)) {
1194 d_printf("Error %s closing remote file\n", nt_errstr(status));
1202 if (archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
1203 cli_setatr(cli, rname, attr & ~(uint16_t)FILE_ATTRIBUTE_ARCHIVE, 0);
1207 struct timespec tp_end;
1210 clock_gettime_mono(&tp_end);
1211 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1212 get_total_time_ms += this_time;
1213 get_total_size += nread;
1215 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1216 nread / (1.024*this_time + 1.0e-4),
1217 get_total_size / (1.024*get_total_time_ms)));
1220 TALLOC_FREE(targetname);
1224 /****************************************************************************
1226 ****************************************************************************/
1228 static int cmd_get(void)
1230 TALLOC_CTX *ctx = talloc_tos();
1235 rname = talloc_strdup(ctx, client_get_cur_dir());
1240 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1241 d_printf("get <filename> [localname]\n");
1244 rname = talloc_asprintf_append(rname, "%s", fname);
1248 rname = client_clean_name(ctx, rname);
1253 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1258 return do_get(rname, lname, false);
1261 /****************************************************************************
1262 Do an mget operation on one file.
1263 ****************************************************************************/
1265 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1268 TALLOC_CTX *ctx = talloc_tos();
1269 NTSTATUS status = NT_STATUS_OK;
1272 char *saved_curdir = NULL;
1273 char *mget_mask = NULL;
1274 char *new_cd = NULL;
1277 return NT_STATUS_OK;
1280 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1281 return NT_STATUS_OK;
1284 d_printf("mget aborted\n");
1285 return NT_STATUS_UNSUCCESSFUL;
1288 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
1289 if (asprintf(&quest,
1290 "Get directory %s? ",finfo->name) < 0) {
1291 return NT_STATUS_NO_MEMORY;
1294 if (asprintf(&quest,
1295 "Get file %s? ",finfo->name) < 0) {
1296 return NT_STATUS_NO_MEMORY;
1300 if (prompt && !yesno(quest)) {
1302 return NT_STATUS_OK;
1306 if (!(finfo->mode & FILE_ATTRIBUTE_DIRECTORY)) {
1307 rname = talloc_asprintf(ctx,
1309 client_get_cur_dir(),
1312 return NT_STATUS_NO_MEMORY;
1314 rname = client_clean_name(ctx, rname);
1315 if (rname == NULL) {
1316 return NT_STATUS_NO_MEMORY;
1318 do_get(rname, finfo->name, false);
1320 return NT_STATUS_OK;
1323 /* handle directories */
1324 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1325 if (!saved_curdir) {
1326 return NT_STATUS_NO_MEMORY;
1329 new_cd = talloc_asprintf(ctx,
1331 client_get_cur_dir(),
1335 return NT_STATUS_NO_MEMORY;
1337 new_cd = client_clean_name(ctx, new_cd);
1338 if (new_cd == NULL) {
1339 return NT_STATUS_NO_MEMORY;
1341 client_set_cur_dir(new_cd);
1343 string_replace(finfo->name,'\\','/');
1345 if (!strlower_m(finfo->name)) {
1346 return NT_STATUS_INVALID_PARAMETER;
1350 if (!directory_exist(finfo->name) &&
1351 mkdir(finfo->name,0777) != 0) {
1352 d_printf("failed to create directory %s\n",finfo->name);
1353 client_set_cur_dir(saved_curdir);
1354 return map_nt_error_from_unix(errno);
1357 if (chdir(finfo->name) != 0) {
1358 d_printf("failed to chdir to directory %s\n",finfo->name);
1359 client_set_cur_dir(saved_curdir);
1360 return map_nt_error_from_unix(errno);
1363 mget_mask = talloc_asprintf(ctx,
1365 client_get_cur_dir());
1368 return NT_STATUS_NO_MEMORY;
1371 mget_mask = client_clean_name(ctx, mget_mask);
1372 if (mget_mask == NULL) {
1373 return NT_STATUS_NO_MEMORY;
1375 status = do_list(mget_mask,
1376 (FILE_ATTRIBUTE_SYSTEM
1377 | FILE_ATTRIBUTE_HIDDEN
1378 | FILE_ATTRIBUTE_DIRECTORY),
1379 do_mget, false, true);
1380 if (!NT_STATUS_IS_OK(status)
1381 && !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
1383 * Ignore access denied errors to ensure all permitted files are
1389 if (chdir("..") == -1) {
1390 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1392 return map_nt_error_from_unix(errno);
1394 client_set_cur_dir(saved_curdir);
1395 TALLOC_FREE(mget_mask);
1396 TALLOC_FREE(saved_curdir);
1397 TALLOC_FREE(new_cd);
1398 return NT_STATUS_OK;
1401 /****************************************************************************
1402 View the file using the pager.
1403 ****************************************************************************/
1405 static int cmd_more(void)
1407 TALLOC_CTX *ctx = talloc_tos();
1411 char *pager_cmd = NULL;
1417 rname = talloc_strdup(ctx, client_get_cur_dir());
1422 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1426 mask = umask(S_IRWXO | S_IRWXG);
1427 fd = mkstemp(lname);
1430 d_printf("failed to create temporary file for more\n");
1435 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1436 d_printf("more <filename>\n");
1440 rname = talloc_asprintf_append(rname, "%s", fname);
1444 rname = client_clean_name(ctx,rname);
1449 rc = do_get(rname, lname, false);
1451 pager=getenv("PAGER");
1453 pager_cmd = talloc_asprintf(ctx,
1455 (pager? pager:PAGER),
1460 if (system(pager_cmd) == -1) {
1461 d_printf("system command '%s' returned -1\n",
1469 /****************************************************************************
1471 ****************************************************************************/
1473 static int cmd_mget(void)
1475 TALLOC_CTX *ctx = talloc_tos();
1476 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1477 char *mget_mask = NULL;
1479 NTSTATUS status = NT_STATUS_OK;
1482 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1487 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1489 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1493 if (*buf == CLI_DIRSEP_CHAR) {
1494 mget_mask = talloc_strdup(ctx, buf);
1496 mget_mask = talloc_asprintf_append(mget_mask,
1502 mget_mask = client_clean_name(ctx, mget_mask);
1503 if (mget_mask == NULL) {
1506 status = do_list(mget_mask, attribute, do_mget, false, true);
1507 if (!NT_STATUS_IS_OK(status)) {
1512 if (mget_mask == NULL) {
1513 d_printf("nothing to mget\n");
1518 mget_mask = talloc_asprintf(ctx,
1520 client_get_cur_dir());
1524 mget_mask = client_clean_name(ctx, mget_mask);
1525 if (mget_mask == NULL) {
1528 status = do_list(mget_mask, attribute, do_mget, false, true);
1529 if (!NT_STATUS_IS_OK(status)) {
1537 /****************************************************************************
1538 Make a directory of name "name".
1539 ****************************************************************************/
1541 static bool do_mkdir(const char *name)
1543 TALLOC_CTX *ctx = talloc_tos();
1544 struct cli_state *targetcli;
1545 char *targetname = NULL;
1548 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
1549 cli, name, &targetcli, &targetname);
1550 if (!NT_STATUS_IS_OK(status)) {
1551 d_printf("mkdir %s: %s\n", name, nt_errstr(status));
1555 status = cli_mkdir(targetcli, targetname);
1556 if (!NT_STATUS_IS_OK(status)) {
1557 d_printf("%s making remote directory %s\n",
1558 nt_errstr(status),name);
1565 /****************************************************************************
1566 Show 8.3 name of a file.
1567 ****************************************************************************/
1569 static bool do_altname(const char *name)
1574 status = cli_qpathinfo_alt_name(cli, name, altname);
1575 if (!NT_STATUS_IS_OK(status)) {
1576 d_printf("%s getting alt name for %s\n",
1577 nt_errstr(status),name);
1580 d_printf("%s\n", altname);
1585 /****************************************************************************
1587 ****************************************************************************/
1589 static int cmd_quit(void)
1592 popt_free_cmdline_auth_info();
1598 /****************************************************************************
1600 ****************************************************************************/
1602 static int cmd_mkdir(void)
1604 TALLOC_CTX *ctx = talloc_tos();
1609 mask = talloc_strdup(ctx, client_get_cur_dir());
1614 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1616 d_printf("mkdir <dirname>\n");
1620 mask = talloc_asprintf_append(mask, "%s", buf);
1624 mask = client_clean_name(ctx, mask);
1632 struct cli_state *targetcli;
1633 char *targetname = NULL;
1637 ddir2 = talloc_strdup(ctx, "");
1642 status = cli_resolve_path(ctx, "",
1643 popt_get_cmdline_auth_info(), cli, mask,
1644 &targetcli, &targetname);
1645 if (!NT_STATUS_IS_OK(status)) {
1649 ddir = talloc_strdup(ctx, targetname);
1653 trim_char(ddir,'.','\0');
1654 p = strtok_r(ddir, "/\\", &saveptr);
1656 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1660 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1663 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1667 p = strtok_r(NULL, "/\\", &saveptr);
1676 /****************************************************************************
1678 ****************************************************************************/
1680 static int cmd_altname(void)
1682 TALLOC_CTX *ctx = talloc_tos();
1686 name = talloc_strdup(ctx, client_get_cur_dir());
1691 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1692 d_printf("altname <file>\n");
1695 name = talloc_asprintf_append(name, "%s", buf);
1699 name = client_clean_name(ctx, name);
1707 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1709 char *attrs = talloc_zero_array(mem_ctx, char, 17);
1712 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1713 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1716 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1719 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1722 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1725 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1728 if (mode & FILE_ATTRIBUTE_SPARSE) {
1731 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1734 if (mode & FILE_ATTRIBUTE_NORMAL) {
1737 if (mode & FILE_ATTRIBUTE_READONLY) {
1740 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1743 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1746 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1749 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1756 /****************************************************************************
1757 Show all info we can get
1758 ****************************************************************************/
1760 static int do_allinfo(const char *name)
1763 struct timespec b_time, a_time, m_time, c_time;
1768 unsigned int num_streams;
1769 struct stream_struct *streams;
1771 char **snapshots = NULL;
1775 status = cli_qpathinfo_alt_name(cli, name, altname);
1776 if (!NT_STATUS_IS_OK(status)) {
1777 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1780 * Ignore not supported or not implemented, it does not
1781 * hurt if we can't list alternate names.
1783 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED) ||
1784 NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) {
1790 d_printf("altname: %s\n", altname);
1792 status = cli_qpathinfo3(cli, name, &b_time, &a_time, &m_time, &c_time,
1793 &size, &mode, NULL);
1794 if (!NT_STATUS_IS_OK(status)) {
1795 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1800 tmp = unix_timespec_to_nt_time(b_time);
1801 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1803 tmp = unix_timespec_to_nt_time(a_time);
1804 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1806 tmp = unix_timespec_to_nt_time(m_time);
1807 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1809 tmp = unix_timespec_to_nt_time(c_time);
1810 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1812 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1814 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1816 if (!NT_STATUS_IS_OK(status)) {
1817 d_printf("%s getting streams for %s\n", nt_errstr(status),
1822 for (i=0; i<num_streams; i++) {
1823 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1824 (unsigned long long)streams[i].size);
1827 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1828 char *subst, *print;
1831 status = cli_readlink(cli, name, talloc_tos(), &subst, &print,
1833 if (!NT_STATUS_IS_OK(status)) {
1834 d_fprintf(stderr, "cli_readlink returned %s\n",
1837 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1838 subst, print, flags);
1844 status = cli_ntcreate(cli, name, 0,
1845 SEC_FILE_READ_DATA | SEC_FILE_READ_ATTRIBUTE |
1846 SEC_STD_SYNCHRONIZE, 0,
1847 FILE_SHARE_READ|FILE_SHARE_WRITE
1849 FILE_OPEN, 0x0, 0x0, &fnum, NULL);
1850 if (!NT_STATUS_IS_OK(status)) {
1852 * Ignore failure, it does not hurt if we can't list
1858 * In order to get shadow copy data over SMB1 we
1859 * must call twice, once with 'get_names = false'
1860 * to get the size, then again with 'get_names = true'
1861 * to get the data or a Windows server fails to return
1862 * valid info. Samba doesn't have this bug. JRA.
1865 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1866 false, &snapshots, &num_snapshots);
1867 if (!NT_STATUS_IS_OK(status)) {
1868 cli_close(cli, fnum);
1871 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1872 true, &snapshots, &num_snapshots);
1873 if (!NT_STATUS_IS_OK(status)) {
1874 cli_close(cli, fnum);
1878 for (i=0; i<num_snapshots; i++) {
1881 d_printf("%s\n", snapshots[i]);
1882 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1883 snapshots[i], name);
1884 status = cli_qpathinfo3(cli, snap_name, &b_time, &a_time,
1885 &m_time, &c_time, &size,
1887 if (!NT_STATUS_IS_OK(status)) {
1888 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1889 snap_name, nt_errstr(status));
1890 TALLOC_FREE(snap_name);
1893 tmp = unix_timespec_to_nt_time(b_time);
1894 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1895 tmp = unix_timespec_to_nt_time(a_time);
1896 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1897 tmp =unix_timespec_to_nt_time(m_time);
1898 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1899 tmp = unix_timespec_to_nt_time(c_time);
1900 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1901 d_printf("size: %d\n", (int)size);
1904 TALLOC_FREE(snapshots);
1905 cli_close(cli, fnum);
1910 /****************************************************************************
1911 Show all info we can get
1912 ****************************************************************************/
1914 static int cmd_allinfo(void)
1916 TALLOC_CTX *ctx = talloc_tos();
1920 name = talloc_strdup(ctx, client_get_cur_dir());
1925 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1926 d_printf("allinfo <file>\n");
1929 name = talloc_asprintf_append(name, "%s", buf);
1933 name = client_clean_name(ctx, name);
1942 /****************************************************************************
1944 ****************************************************************************/
1946 static int do_put(const char *rname, const char *lname, bool reput)
1948 TALLOC_CTX *ctx = talloc_tos();
1953 struct timespec tp_start;
1954 struct cli_state *targetcli;
1955 char *targetname = NULL;
1956 struct push_state state;
1959 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
1960 cli, rname, &targetcli, &targetname);
1961 if (!NT_STATUS_IS_OK(status)) {
1962 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1966 clock_gettime_mono(&tp_start);
1969 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1970 if (NT_STATUS_IS_OK(status)) {
1971 if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1972 targetcli, fnum, NULL,
1974 NULL, NULL, NULL)) &&
1975 !NT_STATUS_IS_OK(status = cli_getattrE(
1976 targetcli, fnum, NULL,
1979 d_printf("getattrib: %s\n", nt_errstr(status));
1984 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1987 if (!NT_STATUS_IS_OK(status)) {
1988 d_printf("%s opening remote file %s\n", nt_errstr(status),
1993 /* allow files to be piped into smbclient
1996 Note that in this case this function will exit(0) rather
1998 if (!strcmp(lname, "-")) {
2000 /* size of file is not known */
2002 f = fopen(lname, "r");
2004 if (fseek(f, start, SEEK_SET) == -1) {
2005 d_printf("Error seeking local file\n");
2013 d_printf("Error opening local file %s\n",lname);
2017 DEBUG(1,("putting file %s as %s ",lname,
2020 setvbuf(f, NULL, _IOFBF, io_bufsize);
2025 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
2027 if (!NT_STATUS_IS_OK(status)) {
2028 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
2032 status = cli_close(targetcli, fnum);
2033 if (!NT_STATUS_IS_OK(status)) {
2034 d_printf("%s closing remote file %s\n", nt_errstr(status),
2047 struct timespec tp_end;
2050 clock_gettime_mono(&tp_end);
2051 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
2052 put_total_time_ms += this_time;
2053 put_total_size += state.nread;
2055 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
2056 state.nread / (1.024*this_time + 1.0e-4),
2057 put_total_size / (1.024*put_total_time_ms)));
2062 popt_free_cmdline_auth_info();
2069 /****************************************************************************
2071 ****************************************************************************/
2073 static int cmd_put(void)
2075 TALLOC_CTX *ctx = talloc_tos();
2080 rname = talloc_strdup(ctx, client_get_cur_dir());
2085 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
2086 d_printf("put <filename>\n");
2090 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2091 rname = talloc_asprintf_append(rname, "%s", buf);
2093 rname = talloc_asprintf_append(rname, "%s", lname);
2099 rname = client_clean_name(ctx, rname);
2106 /* allow '-' to represent stdin
2107 jdblair, 24.jun.98 */
2108 if (!file_exist_stat(lname, &st, false) &&
2109 (strcmp(lname,"-"))) {
2110 d_printf("%s does not exist\n",lname);
2115 return do_put(rname, lname, false);
2118 /*************************************
2119 File list structure.
2120 *************************************/
2122 static struct file_list {
2123 struct file_list *prev, *next;
2128 /****************************************************************************
2129 Free a file_list structure.
2130 ****************************************************************************/
2132 static void free_file_list (struct file_list *l_head)
2134 struct file_list *list, *next;
2136 for (list = l_head; list; list = next) {
2138 DLIST_REMOVE(l_head, list);
2143 /****************************************************************************
2144 Seek in a directory/file list until you get something that doesn't start with
2146 ****************************************************************************/
2148 static bool seek_list(struct file_list *list, char *name)
2151 trim_string(list->file_path,"./","\n");
2152 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2161 /****************************************************************************
2162 Set the file selection mask.
2163 ****************************************************************************/
2165 static int cmd_select(void)
2167 TALLOC_CTX *ctx = talloc_tos();
2168 char *new_fs = NULL;
2169 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2172 client_set_fileselection(new_fs);
2174 client_set_fileselection("");
2179 /****************************************************************************
2180 Recursive file matching function act as find
2181 match must be always set to true when calling this function
2182 ****************************************************************************/
2184 static int file_find(TALLOC_CTX *ctx,
2185 struct file_list **list,
2186 const char *directory,
2187 const char *expression,
2191 struct file_list *entry;
2192 struct stat statbuf;
2198 dir = opendir(directory);
2202 while ((dname = readdirname(dir))) {
2203 if (!strcmp("..", dname))
2205 if (!strcmp(".", dname))
2208 path = talloc_asprintf(ctx, "%s/%s", directory, dname);
2214 if (!match || !gen_fnmatch(expression, dname)) {
2216 ret = stat(path, &statbuf);
2218 if (S_ISDIR(statbuf.st_mode)) {
2220 ret = file_find(ctx,
2227 d_printf("file_find: cannot stat file %s\n", path);
2236 entry = talloc_zero(ctx, struct file_list);
2238 d_printf("Out of memory in file_find\n");
2242 entry->file_path = talloc_move(entry, &path);
2243 entry->isdir = isdir;
2244 DLIST_ADD(*list, entry);
2254 /****************************************************************************
2256 ****************************************************************************/
2258 static int cmd_mput(void)
2260 TALLOC_CTX *ctx = talloc_tos();
2263 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2265 struct file_list *temp_list;
2266 char *quest, *lname, *rname;
2270 ret = file_find(ctx, &file_list, ".", p, true);
2272 free_file_list(file_list);
2280 for (temp_list = file_list; temp_list;
2281 temp_list = temp_list->next) {
2284 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2287 trim_string(lname, "./", "/");
2289 /* check if it's a directory */
2290 if (temp_list->isdir) {
2291 /* if (!recurse) continue; */
2294 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2297 if (prompt && !yesno(quest)) { /* No */
2298 /* Skip the directory */
2299 lname[strlen(lname)-1] = '/';
2300 if (!seek_list(temp_list, lname))
2304 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2307 normalize_name(rname);
2310 client_clean_name(ctx, rname);
2311 if (tmp_rname == NULL) {
2315 rname = smb_xstrdup(tmp_rname);
2316 TALLOC_FREE(tmp_rname);
2317 if (rname == NULL) {
2321 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2323 DEBUG (0, ("Unable to make dir, skipping..."));
2324 /* Skip the directory */
2325 lname[strlen(lname)-1] = '/';
2326 if (!seek_list(temp_list, lname)) {
2334 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2337 if (prompt && !yesno(quest)) {
2344 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2349 normalize_name(rname);
2352 char *tmp_rname = client_clean_name(ctx, rname);
2353 if (tmp_rname == NULL) {
2357 rname = smb_xstrdup(tmp_rname);
2358 TALLOC_FREE(tmp_rname);
2359 if (rname == NULL) {
2363 do_put(rname, lname, false);
2365 free_file_list(file_list);
2374 /****************************************************************************
2376 ****************************************************************************/
2378 static int do_cancel(int job)
2380 if (cli_printjob_del(cli, job)) {
2381 d_printf("Job %d cancelled\n",job);
2384 NTSTATUS status = cli_nt_error(cli);
2385 d_printf("Error cancelling job %d : %s\n",
2386 job, nt_errstr(status));
2391 /****************************************************************************
2393 ****************************************************************************/
2395 static int cmd_cancel(void)
2397 TALLOC_CTX *ctx = talloc_tos();
2401 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2402 d_printf("cancel <jobid> ...\n");
2408 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2413 /****************************************************************************
2415 ****************************************************************************/
2417 static int cmd_print(void)
2419 TALLOC_CTX *ctx = talloc_tos();
2424 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2425 d_printf("print <filename>\n");
2429 rname = talloc_strdup(ctx, lname);
2433 p = strrchr_m(rname,'/');
2435 rname = talloc_asprintf(ctx,
2440 if (strequal(lname,"-")) {
2441 rname = talloc_asprintf(ctx,
2449 return do_put(rname, lname, false);
2452 /****************************************************************************
2453 Show a print queue entry.
2454 ****************************************************************************/
2456 static void queue_fn(struct print_job_info *p)
2458 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2461 /****************************************************************************
2463 ****************************************************************************/
2465 static int cmd_queue(void)
2467 cli_print_queue(cli, queue_fn);
2471 /****************************************************************************
2473 ****************************************************************************/
2475 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2478 TALLOC_CTX *ctx = talloc_tos();
2482 mask = talloc_asprintf(ctx,
2488 return NT_STATUS_NO_MEMORY;
2491 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2493 return NT_STATUS_OK;
2496 status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2497 if (!NT_STATUS_IS_OK(status)) {
2498 d_printf("%s deleting remote file %s\n",
2499 nt_errstr(status), mask);
2505 /****************************************************************************
2507 ****************************************************************************/
2509 static int cmd_del(void)
2511 TALLOC_CTX *ctx = talloc_tos();
2514 NTSTATUS status = NT_STATUS_OK;
2515 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2518 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2521 mask = talloc_strdup(ctx, client_get_cur_dir());
2525 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2526 d_printf("del <filename>\n");
2529 mask = talloc_asprintf_append(mask, "%s", buf);
2533 mask = client_clean_name(ctx, mask);
2538 status = do_list(mask,attribute,do_del,false,false);
2539 if (!NT_STATUS_IS_OK(status)) {
2545 /****************************************************************************
2547 ****************************************************************************/
2549 static NTSTATUS delete_remote_files_list(struct cli_state *cli_state,
2550 struct file_list *flist)
2552 NTSTATUS status = NT_STATUS_OK;
2553 struct file_list *deltree_list_iter = NULL;
2555 for (deltree_list_iter = flist;
2556 deltree_list_iter != NULL;
2557 deltree_list_iter = deltree_list_iter->next) {
2558 if (CLI_DIRSEP_CHAR == '/') {
2560 status = cli_posix_unlink(cli_state,
2561 deltree_list_iter->file_path);
2562 } else if (deltree_list_iter->isdir) {
2563 status = cli_rmdir(cli_state,
2564 deltree_list_iter->file_path);
2566 status = cli_unlink(cli_state,
2567 deltree_list_iter->file_path,
2568 FILE_ATTRIBUTE_SYSTEM |
2569 FILE_ATTRIBUTE_HIDDEN);
2571 if (!NT_STATUS_IS_OK(status)) {
2572 d_printf("%s deleting remote %s %s\n",
2574 deltree_list_iter->isdir ?
2575 "directory" : "file",
2576 deltree_list_iter->file_path);
2580 return NT_STATUS_OK;
2583 /****************************************************************************
2584 Save a list of files to delete.
2585 ****************************************************************************/
2587 static struct file_list *deltree_list_head;
2589 static NTSTATUS do_deltree_list(struct cli_state *cli_state,
2590 struct file_info *finfo,
2593 struct file_list **file_list_head_pp = &deltree_list_head;
2594 struct file_list *dt = NULL;
2596 if (!do_this_one(finfo)) {
2597 return NT_STATUS_OK;
2600 /* skip if this is . or .. */
2601 if (ISDOT(finfo->name) || ISDOTDOT(finfo->name)) {
2602 return NT_STATUS_OK;
2605 dt = talloc_zero(NULL, struct file_list);
2607 return NT_STATUS_NO_MEMORY;
2610 /* create absolute filename for cli_ntcreate() */
2611 dt->file_path = talloc_asprintf(dt,
2616 if (dt->file_path == NULL) {
2618 return NT_STATUS_NO_MEMORY;
2621 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2625 DLIST_ADD(*file_list_head_pp, dt);
2626 return NT_STATUS_OK;
2629 static int cmd_deltree(void)
2631 TALLOC_CTX *ctx = talloc_tos();
2633 NTSTATUS status = NT_STATUS_OK;
2634 struct file_list *deltree_list_norecurse = NULL;
2635 struct file_list *deltree_list_iter = NULL;
2636 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM |
2637 FILE_ATTRIBUTE_HIDDEN |
2638 FILE_ATTRIBUTE_DIRECTORY;
2640 char *mask = talloc_strdup(ctx, client_get_cur_dir());
2644 ok = next_token_talloc(ctx, &cmd_ptr, &buf, NULL);
2646 d_printf("deltree <filename>\n");
2649 mask = talloc_asprintf_append(mask, "%s", buf);
2653 mask = client_clean_name(ctx, mask);
2658 deltree_list_head = NULL;
2661 * Get the list of directories to
2662 * delete (in case mask has a wildcard).
2664 status = do_list(mask, attribute, do_deltree_list, false, true);
2665 if (!NT_STATUS_IS_OK(status)) {
2668 deltree_list_norecurse = deltree_list_head;
2669 deltree_list_head = NULL;
2671 for (deltree_list_iter = deltree_list_norecurse;
2672 deltree_list_iter != NULL;
2673 deltree_list_iter = deltree_list_iter->next) {
2675 if (deltree_list_iter->isdir == false) {
2676 /* Just a regular file. */
2677 if (CLI_DIRSEP_CHAR == '/') {
2679 status = cli_posix_unlink(cli,
2680 deltree_list_iter->file_path);
2682 status = cli_unlink(cli,
2683 deltree_list_iter->file_path,
2684 FILE_ATTRIBUTE_SYSTEM |
2685 FILE_ATTRIBUTE_HIDDEN);
2687 if (!NT_STATUS_IS_OK(status)) {
2694 * Get the list of files or directories to
2695 * delete in depth order.
2697 status = do_list(deltree_list_iter->file_path,
2702 if (!NT_STATUS_IS_OK(status)) {
2705 status = delete_remote_files_list(cli, deltree_list_head);
2706 free_file_list(deltree_list_head);
2707 deltree_list_head = NULL;
2708 if (!NT_STATUS_IS_OK(status)) {
2713 free_file_list(deltree_list_norecurse);
2714 free_file_list(deltree_list_head);
2719 free_file_list(deltree_list_norecurse);
2720 free_file_list(deltree_list_head);
2721 deltree_list_head = NULL;
2726 /****************************************************************************
2727 Wildcard delete some files.
2728 ****************************************************************************/
2730 static int cmd_wdel(void)
2732 TALLOC_CTX *ctx = talloc_tos();
2736 struct cli_state *targetcli;
2737 char *targetname = NULL;
2740 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2741 d_printf("wdel 0x<attrib> <wcard>\n");
2745 attribute = (uint16_t)strtol(buf, (char **)NULL, 16);
2747 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2748 d_printf("wdel 0x<attrib> <wcard>\n");
2752 mask = talloc_asprintf(ctx, "%s%s",
2753 client_get_cur_dir(),
2758 mask = client_clean_name(ctx, mask);
2763 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
2764 cli, mask, &targetcli, &targetname);
2765 if (!NT_STATUS_IS_OK(status)) {
2766 d_printf("cmd_wdel %s: %s\n", mask, nt_errstr(status));
2770 status = cli_unlink(targetcli, targetname, attribute);
2771 if (!NT_STATUS_IS_OK(status)) {
2772 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2778 /****************************************************************************
2779 ****************************************************************************/
2781 static int cmd_open(void)
2783 TALLOC_CTX *ctx = talloc_tos();
2786 char *targetname = NULL;
2787 struct cli_state *targetcli;
2788 uint16_t fnum = (uint16_t)-1;
2791 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2792 d_printf("open <filename>\n");
2795 mask = talloc_asprintf(ctx,
2797 client_get_cur_dir(),
2803 mask = client_clean_name(ctx, mask);
2808 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
2809 cli, mask, &targetcli, &targetname);
2810 if (!NT_STATUS_IS_OK(status)) {
2811 d_printf("open %s: %s\n", mask, nt_errstr(status));
2815 status = cli_ntcreate(targetcli, targetname, 0,
2816 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2817 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2818 0x0, 0x0, &fnum, NULL);
2819 if (!NT_STATUS_IS_OK(status)) {
2820 status = cli_ntcreate(targetcli, targetname, 0,
2822 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2823 0x0, 0x0, &fnum, NULL);
2824 if (NT_STATUS_IS_OK(status)) {
2825 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2827 d_printf("Failed to open file %s. %s\n",
2828 targetname, nt_errstr(status));
2831 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2836 static int cmd_posix_encrypt(void)
2838 TALLOC_CTX *ctx = talloc_tos();
2839 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2840 char *domain = NULL;
2842 char *password = NULL;
2843 struct cli_credentials *creds = NULL;
2844 struct cli_credentials *lcreds = NULL;
2846 if (next_token_talloc(ctx, &cmd_ptr, &domain, NULL)) {
2848 if (!next_token_talloc(ctx, &cmd_ptr, &user, NULL)) {
2849 d_printf("posix_encrypt domain user password\n");
2853 if (!next_token_talloc(ctx, &cmd_ptr, &password, NULL)) {
2854 d_printf("posix_encrypt domain user password\n");
2858 lcreds = cli_session_creds_init(ctx,
2863 false, /* use_kerberos */
2864 false, /* fallback_after_kerberos */
2865 false, /* use_ccache */
2866 false); /* password_is_nt_hash */
2867 if (lcreds == NULL) {
2868 d_printf("cli_session_creds_init() failed.\n");
2873 bool auth_requested = false;
2875 creds = get_cmdline_auth_info_creds(
2876 popt_get_cmdline_auth_info());
2878 auth_requested = cli_credentials_authentication_requested(creds);
2879 if (!auth_requested) {
2880 d_printf("posix_encrypt domain user password\n");
2885 status = cli_smb1_setup_encryption(cli, creds);
2886 /* gensec currently references the creds so we can't free them here */
2887 talloc_unlink(ctx, lcreds);
2888 if (!NT_STATUS_IS_OK(status)) {
2889 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2891 d_printf("encryption on\n");
2898 /****************************************************************************
2899 ****************************************************************************/
2901 static int cmd_posix_open(void)
2903 TALLOC_CTX *ctx = talloc_tos();
2906 char *targetname = NULL;
2907 struct cli_state *targetcli;
2912 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2913 d_printf("posix_open <filename> 0<mode>\n");
2916 mask = talloc_asprintf(ctx,
2918 client_get_cur_dir(),
2923 mask = client_clean_name(ctx, mask);
2928 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2929 d_printf("posix_open <filename> 0<mode>\n");
2932 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2934 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
2935 cli, mask, &targetcli, &targetname);
2936 if (!NT_STATUS_IS_OK(status)) {
2937 d_printf("posix_open %s: %s\n", mask, nt_errstr(status));
2941 status = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode,
2943 if (!NT_STATUS_IS_OK(status)) {
2944 status = cli_posix_open(targetcli, targetname,
2945 O_CREAT|O_RDONLY, mode, &fnum);
2946 if (!NT_STATUS_IS_OK(status)) {
2947 d_printf("Failed to open file %s. %s\n", targetname,
2950 d_printf("posix_open file %s: for readonly fnum %d\n",
2954 d_printf("posix_open file %s: for read/write fnum %d\n",
2961 static int cmd_posix_mkdir(void)
2963 TALLOC_CTX *ctx = talloc_tos();
2966 char *targetname = NULL;
2967 struct cli_state *targetcli;
2971 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2972 d_printf("posix_mkdir <filename> 0<mode>\n");
2975 mask = talloc_asprintf(ctx,
2977 client_get_cur_dir(),
2982 mask = client_clean_name(ctx, mask);
2987 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2988 d_printf("posix_mkdir <filename> 0<mode>\n");
2991 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2993 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
2994 cli, mask, &targetcli, &targetname);
2995 if (!NT_STATUS_IS_OK(status)) {
2996 d_printf("posix_mkdir %s: %s\n", mask, nt_errstr(status));
3000 status = cli_posix_mkdir(targetcli, targetname, mode);
3001 if (!NT_STATUS_IS_OK(status)) {
3002 d_printf("Failed to open file %s. %s\n",
3003 targetname, nt_errstr(status));
3005 d_printf("posix_mkdir created directory %s\n", targetname);
3010 static int cmd_posix_unlink(void)
3012 TALLOC_CTX *ctx = talloc_tos();
3015 char *targetname = NULL;
3016 struct cli_state *targetcli;
3019 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3020 d_printf("posix_unlink <filename>\n");
3023 mask = talloc_asprintf(ctx,
3025 client_get_cur_dir(),
3030 mask = client_clean_name(ctx, mask);
3035 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3036 cli, mask, &targetcli, &targetname);
3037 if (!NT_STATUS_IS_OK(status)) {
3038 d_printf("posix_unlink %s: %s\n", mask, nt_errstr(status));
3042 status = cli_posix_unlink(targetcli, targetname);
3043 if (!NT_STATUS_IS_OK(status)) {
3044 d_printf("Failed to unlink file %s. %s\n",
3045 targetname, nt_errstr(status));
3047 d_printf("posix_unlink deleted file %s\n", targetname);
3053 static int cmd_posix_rmdir(void)
3055 TALLOC_CTX *ctx = talloc_tos();
3058 char *targetname = NULL;
3059 struct cli_state *targetcli;
3062 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3063 d_printf("posix_rmdir <filename>\n");
3066 mask = talloc_asprintf(ctx,
3068 client_get_cur_dir(),
3073 mask = client_clean_name(ctx, mask);
3078 status = cli_resolve_path(ctx, "", popt_get_cmdline_auth_info(),
3079 cli, mask, &targetcli, &targetname);
3080 if (!NT_STATUS_IS_OK(status)) {
3081 d_printf("posix_rmdir %s: %s\n", mask, nt_errstr(status));
3085 status = cli_posix_rmdir(targetcli, targetname);
3086 if (!NT_STATUS_IS_OK(status)) {