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 "client/client_proto.h"
26 #include "include/rpc_client.h"
31 extern int do_smb_browse(void); /* mDNS browsing */
33 extern bool AllowDebugChange;
34 extern bool override_logfile;
39 static char *desthost;
40 static char *calling_name;
41 static bool grepable = false;
42 static char *cmdstr = NULL;
43 const char *cmd_ptr = NULL;
45 static int io_bufsize = 524288;
47 static int name_type = 0x20;
48 static int max_protocol = PROTOCOL_NT1;
50 static int process_tok(char *tok);
51 static int cmd_help(void);
53 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55 /* 30 second timeout on most commands */
56 #define CLIENT_TIMEOUT (30*1000)
57 #define SHORT_TIMEOUT (5*1000)
59 /* value for unused fid field in trans2 secondary request */
60 #define FID_UNUSED (0xFFFF)
62 time_t newer_than = 0;
63 static int archive_level = 0;
65 static bool translation = false;
68 /* clitar bits insert */
71 extern bool tar_reset;
74 static bool prompt = true;
76 static bool recurse = false;
77 static bool showacls = false;
78 bool lowercase = false;
80 static struct sockaddr_storage dest_ss;
81 static char dest_ss_str[INET6_ADDRSTRLEN];
83 #define SEPARATORS " \t\n\r"
85 static bool abort_mget = true;
88 uint64_t get_total_size = 0;
89 unsigned int get_total_time_ms = 0;
90 static uint64_t put_total_size = 0;
91 static unsigned int put_total_time_ms = 0;
94 static double dir_total;
96 /* encrypted state. */
97 static bool smb_encrypt;
99 /* root cli_state connection */
101 struct cli_state *cli;
103 static char CLI_DIRSEP_CHAR = '\\';
104 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
106 /* Authentication for client connections. */
107 struct user_auth_info *auth_info;
109 /* Accessor functions for directory paths. */
110 static char *fileselection;
111 static const char *client_get_fileselection(void)
114 return fileselection;
119 static const char *client_set_fileselection(const char *new_fs)
121 SAFE_FREE(fileselection);
123 fileselection = SMB_STRDUP(new_fs);
125 return client_get_fileselection();
129 static const char *client_get_cwd(void)
134 return CLI_DIRSEP_STR;
137 static const char *client_set_cwd(const char *new_cwd)
141 cwd = SMB_STRDUP(new_cwd);
143 return client_get_cwd();
146 static char *cur_dir;
147 const char *client_get_cur_dir(void)
152 return CLI_DIRSEP_STR;
155 const char *client_set_cur_dir(const char *newdir)
159 cur_dir = SMB_STRDUP(newdir);
161 return client_get_cur_dir();
164 /****************************************************************************
165 Write to a local file with CR/LF->LF translation if appropriate. Return the
166 number taken from the buffer. This may not equal the number written.
167 ****************************************************************************/
169 static int writefile(int f, char *b, int n)
179 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
182 if (write(f, b, 1) != 1) {
192 /****************************************************************************
193 Read from a file with LF->CR/LF translation if appropriate. Return the
194 number read. read approx n bytes.
195 ****************************************************************************/
197 static int readfile(uint8_t *b, int n, XFILE *f)
203 return x_fread(b,1,n,f);
206 while (i < (n - 1) && (i < BUFFER_SIZE)) {
207 if ((c = x_getc(f)) == EOF) {
211 if (c == '\n') { /* change all LFs to CR/LF */
226 static size_t push_source(uint8_t *buf, size_t n, void *priv)
228 struct push_state *state = (struct push_state *)priv;
231 if (x_feof(state->f)) {
235 result = readfile(buf, n, state->f);
236 state->nread += result;
240 /****************************************************************************
242 ****************************************************************************/
244 static void send_message(const char *username)
249 if (!cli_message_start(cli, desthost, username, &grp_id)) {
250 d_printf("message start: %s\n", cli_errstr(cli));
255 d_printf("Connected. Type your message, ending it with a Control-D\n");
257 while (!feof(stdin) && total_len < 1600) {
258 int maxlen = MIN(1600 - total_len,127);
265 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
271 if ((total_len > 0) && (strlen(msg) == 0)) {
275 if (!cli_message_text(cli, msg, l, grp_id)) {
276 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
283 if (total_len >= 1600)
284 d_printf("the message was truncated to 1600 bytes\n");
286 d_printf("sent %d bytes\n",total_len);
288 if (!cli_message_end(cli, grp_id)) {
289 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
294 /****************************************************************************
295 Check the space on a device.
296 ****************************************************************************/
298 static int do_dskattr(void)
300 int total, bsize, avail;
301 struct cli_state *targetcli = NULL;
302 char *targetpath = NULL;
303 TALLOC_CTX *ctx = talloc_tos();
305 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
306 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
310 if (!NT_STATUS_IS_OK(cli_dskattr(targetcli, &bsize, &total, &avail))) {
311 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
315 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
316 total, bsize, avail);
321 /****************************************************************************
323 ****************************************************************************/
325 static int cmd_pwd(void)
327 d_printf("Current directory is %s",service);
328 d_printf("%s\n",client_get_cur_dir());
332 /****************************************************************************
333 Ensure name has correct directory separators.
334 ****************************************************************************/
336 static void normalize_name(char *newdir)
338 if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
339 string_replace(newdir,'/','\\');
343 /****************************************************************************
344 Change directory - inner section.
345 ****************************************************************************/
347 static int do_cd(const char *new_dir)
350 char *saved_dir = NULL;
352 char *targetpath = NULL;
353 struct cli_state *targetcli = NULL;
354 SMB_STRUCT_STAT sbuf;
357 TALLOC_CTX *ctx = talloc_stackframe();
359 newdir = talloc_strdup(ctx, new_dir);
365 normalize_name(newdir);
367 /* Save the current directory in case the new directory is invalid */
369 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
375 if (*newdir == CLI_DIRSEP_CHAR) {
376 client_set_cur_dir(newdir);
379 new_cd = talloc_asprintf(ctx, "%s%s",
380 client_get_cur_dir(),
387 /* Ensure cur_dir ends in a DIRSEP */
388 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
389 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
394 client_set_cur_dir(new_cd);
396 new_cd = clean_name(ctx, new_cd);
397 client_set_cur_dir(new_cd);
399 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
400 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
401 client_set_cur_dir(saved_dir);
405 if (strequal(targetpath,CLI_DIRSEP_STR )) {
410 /* Use a trans2_qpathinfo to test directories for modern servers.
411 Except Win9x doesn't support the qpathinfo_basic() call..... */
413 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
414 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
415 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
416 client_set_cur_dir(saved_dir);
420 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
421 d_printf("cd %s: not a directory\n", new_cd);
422 client_set_cur_dir(saved_dir);
426 targetpath = talloc_asprintf(ctx,
431 client_set_cur_dir(saved_dir);
434 targetpath = clean_name(ctx, targetpath);
436 client_set_cur_dir(saved_dir);
440 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, targetpath))) {
441 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
442 client_set_cur_dir(saved_dir);
455 /****************************************************************************
457 ****************************************************************************/
459 static int cmd_cd(void)
464 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
467 d_printf("Current directory is %s\n",client_get_cur_dir());
473 /****************************************************************************
475 ****************************************************************************/
477 static int cmd_cd_oneup(void)
482 /*******************************************************************
483 Decide if a file should be operated on.
484 ********************************************************************/
486 static bool do_this_one(file_info *finfo)
492 if (finfo->mode & aDIR) {
496 if (*client_get_fileselection() &&
497 !mask_match(finfo->name,client_get_fileselection(),false)) {
498 DEBUG(3,("mask_match %s failed\n", finfo->name));
502 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
503 DEBUG(3,("newer_than %s failed\n", finfo->name));
507 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
508 DEBUG(3,("archive %s failed\n", finfo->name));
515 /****************************************************************************
516 Display info about a file.
517 ****************************************************************************/
519 static void display_finfo(file_info *finfo, const char *dir)
522 TALLOC_CTX *ctx = talloc_tos();
524 if (!do_this_one(finfo)) {
528 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
530 d_printf(" %-30s%7.7s %8.0f %s",
532 attrib_string(finfo->mode),
535 dir_total += finfo->size;
540 /* skip if this is . or .. */
541 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
543 /* create absolute filename for cli_ntcreate() FIXME */
544 afname = talloc_asprintf(ctx,
552 /* print file meta date header */
553 d_printf( "FILENAME:%s\n", finfo->name);
554 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
555 d_printf( "SIZE:%.0f\n", (double)finfo->size);
556 d_printf( "MTIME:%s", time_to_asc(t));
557 if (!NT_STATUS_IS_OK(cli_ntcreate(finfo->cli, afname, 0,
558 CREATE_ACCESS_READ, 0, FILE_SHARE_READ|FILE_SHARE_WRITE,
559 FILE_OPEN, 0x0, 0x0, &fnum))) {
560 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
562 cli_errstr( finfo->cli)));
565 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
567 DEBUG( 0, ("display_finfo() failed to "
568 "get security descriptor: %s",
569 cli_errstr( finfo->cli)));
571 display_sec_desc(sd);
579 /****************************************************************************
580 Accumulate size of a file.
581 ****************************************************************************/
583 static void do_du(file_info *finfo, const char *dir)
585 if (do_this_one(finfo)) {
586 dir_total += finfo->size;
590 static bool do_list_recurse;
591 static bool do_list_dirs;
592 static char *do_list_queue = 0;
593 static long do_list_queue_size = 0;
594 static long do_list_queue_start = 0;
595 static long do_list_queue_end = 0;
596 static void (*do_list_fn)(file_info *, const char *dir);
598 /****************************************************************************
599 Functions for do_list_queue.
600 ****************************************************************************/
603 * The do_list_queue is a NUL-separated list of strings stored in a
604 * char*. Since this is a FIFO, we keep track of the beginning and
605 * ending locations of the data in the queue. When we overflow, we
606 * double the size of the char*. When the start of the data passes
607 * the midpoint, we move everything back. This is logically more
608 * complex than a linked list, but easier from a memory management
609 * angle. In any memory error condition, do_list_queue is reset.
610 * Functions check to ensure that do_list_queue is non-NULL before
614 static void reset_do_list_queue(void)
616 SAFE_FREE(do_list_queue);
617 do_list_queue_size = 0;
618 do_list_queue_start = 0;
619 do_list_queue_end = 0;
622 static void init_do_list_queue(void)
624 reset_do_list_queue();
625 do_list_queue_size = 1024;
626 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
627 if (do_list_queue == 0) {
628 d_printf("malloc fail for size %d\n",
629 (int)do_list_queue_size);
630 reset_do_list_queue();
632 memset(do_list_queue, 0, do_list_queue_size);
636 static void adjust_do_list_queue(void)
639 * If the starting point of the queue is more than half way through,
640 * move everything toward the beginning.
643 if (do_list_queue == NULL) {
644 DEBUG(4,("do_list_queue is empty\n"));
645 do_list_queue_start = do_list_queue_end = 0;
649 if (do_list_queue_start == do_list_queue_end) {
650 DEBUG(4,("do_list_queue is empty\n"));
651 do_list_queue_start = do_list_queue_end = 0;
652 *do_list_queue = '\0';
653 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
654 DEBUG(4,("sliding do_list_queue backward\n"));
655 memmove(do_list_queue,
656 do_list_queue + do_list_queue_start,
657 do_list_queue_end - do_list_queue_start);
658 do_list_queue_end -= do_list_queue_start;
659 do_list_queue_start = 0;
663 static void add_to_do_list_queue(const char *entry)
665 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
666 while (new_end > do_list_queue_size) {
667 do_list_queue_size *= 2;
668 DEBUG(4,("enlarging do_list_queue to %d\n",
669 (int)do_list_queue_size));
670 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
671 if (! do_list_queue) {
672 d_printf("failure enlarging do_list_queue to %d bytes\n",
673 (int)do_list_queue_size);
674 reset_do_list_queue();
676 memset(do_list_queue + do_list_queue_size / 2,
677 0, do_list_queue_size / 2);
681 safe_strcpy_base(do_list_queue + do_list_queue_end,
682 entry, do_list_queue, do_list_queue_size);
683 do_list_queue_end = new_end;
684 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
685 entry, (int)do_list_queue_start, (int)do_list_queue_end));
689 static char *do_list_queue_head(void)
691 return do_list_queue + do_list_queue_start;
694 static void remove_do_list_queue_head(void)
696 if (do_list_queue_end > do_list_queue_start) {
697 do_list_queue_start += strlen(do_list_queue_head()) + 1;
698 adjust_do_list_queue();
699 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
700 (int)do_list_queue_start, (int)do_list_queue_end));
704 static int do_list_queue_empty(void)
706 return (! (do_list_queue && *do_list_queue));
709 /****************************************************************************
710 A helper for do_list.
711 ****************************************************************************/
713 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
715 TALLOC_CTX *ctx = talloc_tos();
717 char *dir_end = NULL;
719 /* Work out the directory. */
720 dir = talloc_strdup(ctx, mask);
724 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
728 if (f->mode & aDIR) {
729 if (do_list_dirs && do_this_one(f)) {
732 if (do_list_recurse &&
734 !strequal(f->name,".") &&
735 !strequal(f->name,"..")) {
740 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
745 mask2 = talloc_asprintf(ctx,
753 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
759 mask2 = talloc_asprintf_append(mask2,
767 add_to_do_list_queue(mask2);
774 if (do_this_one(f)) {
780 /****************************************************************************
781 A wrapper around cli_list that adds recursion.
782 ****************************************************************************/
784 void do_list(const char *mask,
786 void (*fn)(file_info *, const char *dir),
790 static int in_do_list = 0;
791 TALLOC_CTX *ctx = talloc_tos();
792 struct cli_state *targetcli = NULL;
793 char *targetpath = NULL;
795 if (in_do_list && rec) {
796 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
802 do_list_recurse = rec;
807 init_do_list_queue();
808 add_to_do_list_queue(mask);
810 while (!do_list_queue_empty()) {
812 * Need to copy head so that it doesn't become
813 * invalid inside the call to cli_list. This
814 * would happen if the list were expanded
816 * Fix from E. Jay Berkenbilt (ejb@ql.org)
818 char *head = talloc_strdup(ctx, do_list_queue_head());
826 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
827 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
828 remove_do_list_queue_head();
832 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
833 remove_do_list_queue_head();
834 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
835 char *next_file = do_list_queue_head();
837 if ((strlen(next_file) >= 2) &&
838 (next_file[strlen(next_file) - 1] == '*') &&
839 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
840 save_ch = next_file +
841 strlen(next_file) - 2;
844 /* cwd is only used if showacls is on */
845 client_set_cwd(next_file);
848 if (!showacls) /* don't disturbe the showacls output */
849 d_printf("\n%s\n",next_file);
851 *save_ch = CLI_DIRSEP_CHAR;
855 TALLOC_FREE(targetpath);
859 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
860 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
861 d_printf("%s listing %s\n",
862 cli_errstr(targetcli), targetpath);
864 TALLOC_FREE(targetpath);
866 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
871 reset_do_list_queue();
874 /****************************************************************************
875 Get a directory listing.
876 ****************************************************************************/
878 static int cmd_dir(void)
880 TALLOC_CTX *ctx = talloc_tos();
881 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
887 mask = talloc_strdup(ctx, client_get_cur_dir());
892 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
894 if (*buf == CLI_DIRSEP_CHAR) {
895 mask = talloc_strdup(ctx, buf);
897 mask = talloc_asprintf_append(mask, "%s", buf);
900 mask = talloc_asprintf_append(mask, "*");
907 /* cwd is only used if showacls is on */
908 client_set_cwd(client_get_cur_dir());
911 do_list(mask, attribute, display_finfo, recurse, true);
915 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
920 /****************************************************************************
921 Get a directory listing.
922 ****************************************************************************/
924 static int cmd_du(void)
926 TALLOC_CTX *ctx = talloc_tos();
927 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
933 mask = talloc_strdup(ctx, client_get_cur_dir());
937 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
938 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
944 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
946 if (*buf == CLI_DIRSEP_CHAR) {
947 mask = talloc_strdup(ctx, buf);
949 mask = talloc_asprintf_append(mask, "%s", buf);
952 mask = talloc_strdup(ctx, "*");
955 do_list(mask, attribute, do_du, recurse, true);
959 d_printf("Total number of bytes: %.0f\n", dir_total);
964 static int cmd_echo(void)
966 TALLOC_CTX *ctx = talloc_tos();
971 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
972 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
973 d_printf("echo <num> <data>\n");
977 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
979 if (!NT_STATUS_IS_OK(status)) {
980 d_printf("echo failed: %s\n", nt_errstr(status));
987 /****************************************************************************
988 Get a file from rname to lname
989 ****************************************************************************/
991 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
993 int *pfd = (int *)priv;
994 if (writefile(*pfd, buf, n) == -1) {
995 return map_nt_error_from_unix(errno);
1000 static int do_get(const char *rname, const char *lname_in, bool reget)
1002 TALLOC_CTX *ctx = talloc_tos();
1005 bool newhandle = false;
1006 struct timeval tp_start;
1010 SMB_OFF_T nread = 0;
1012 struct cli_state *targetcli = NULL;
1013 char *targetname = NULL;
1017 lname = talloc_strdup(ctx, lname_in);
1026 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1027 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1031 GetTimeOfDay(&tp_start);
1033 if (!NT_STATUS_IS_OK(cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum))) {
1034 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1038 if(!strcmp(lname,"-")) {
1039 handle = fileno(stdout);
1042 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1044 start = sys_lseek(handle, 0, SEEK_END);
1046 d_printf("Error seeking local file\n");
1051 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1056 d_printf("Error opening local file %s\n",lname);
1061 if (!cli_qfileinfo(targetcli, fnum,
1062 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1063 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum,
1064 &attr, &size, NULL, NULL, NULL))) {
1065 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1069 DEBUG(1,("getting file %s of size %.0f as %s ",
1070 rname, (double)size, lname));
1072 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1073 writefile_sink, (void *)&handle, &nread);
1074 if (!NT_STATUS_IS_OK(status)) {
1075 d_fprintf(stderr, "parallel_read returned %s\n",
1077 cli_close(targetcli, fnum);
1081 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1082 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1090 if (archive_level >= 2 && (attr & aARCH)) {
1091 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1095 struct timeval tp_end;
1098 GetTimeOfDay(&tp_end);
1100 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1101 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1102 get_total_time_ms += this_time;
1103 get_total_size += nread;
1105 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1106 nread / (1.024*this_time + 1.0e-4),
1107 get_total_size / (1.024*get_total_time_ms)));
1110 TALLOC_FREE(targetname);
1114 /****************************************************************************
1116 ****************************************************************************/
1118 static int cmd_get(void)
1120 TALLOC_CTX *ctx = talloc_tos();
1125 rname = talloc_strdup(ctx, client_get_cur_dir());
1130 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1131 d_printf("get <filename> [localname]\n");
1134 rname = talloc_asprintf_append(rname, "%s", fname);
1138 rname = clean_name(ctx, rname);
1143 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1148 return do_get(rname, lname, false);
1151 /****************************************************************************
1152 Do an mget operation on one file.
1153 ****************************************************************************/
1155 static void do_mget(file_info *finfo, const char *dir)
1157 TALLOC_CTX *ctx = talloc_tos();
1160 char *saved_curdir = NULL;
1161 char *mget_mask = NULL;
1162 char *new_cd = NULL;
1168 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1172 d_printf("mget aborted\n");
1176 if (finfo->mode & aDIR) {
1177 if (asprintf(&quest,
1178 "Get directory %s? ",finfo->name) < 0) {
1182 if (asprintf(&quest,
1183 "Get file %s? ",finfo->name) < 0) {
1188 if (prompt && !yesno(quest)) {
1194 if (!(finfo->mode & aDIR)) {
1195 rname = talloc_asprintf(ctx,
1197 client_get_cur_dir(),
1202 do_get(rname, finfo->name, false);
1207 /* handle directories */
1208 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1209 if (!saved_curdir) {
1213 new_cd = talloc_asprintf(ctx,
1215 client_get_cur_dir(),
1221 client_set_cur_dir(new_cd);
1223 string_replace(finfo->name,'\\','/');
1225 strlower_m(finfo->name);
1228 if (!directory_exist(finfo->name) &&
1229 mkdir(finfo->name,0777) != 0) {
1230 d_printf("failed to create directory %s\n",finfo->name);
1231 client_set_cur_dir(saved_curdir);
1235 if (chdir(finfo->name) != 0) {
1236 d_printf("failed to chdir to directory %s\n",finfo->name);
1237 client_set_cur_dir(saved_curdir);
1241 mget_mask = talloc_asprintf(ctx,
1243 client_get_cur_dir());
1249 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1250 if (chdir("..") == -1) {
1251 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1254 client_set_cur_dir(saved_curdir);
1255 TALLOC_FREE(mget_mask);
1256 TALLOC_FREE(saved_curdir);
1257 TALLOC_FREE(new_cd);
1260 /****************************************************************************
1261 View the file using the pager.
1262 ****************************************************************************/
1264 static int cmd_more(void)
1266 TALLOC_CTX *ctx = talloc_tos();
1270 char *pager_cmd = NULL;
1275 rname = talloc_strdup(ctx, client_get_cur_dir());
1280 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1284 fd = mkstemp(lname);
1286 d_printf("failed to create temporary file for more\n");
1291 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1292 d_printf("more <filename>\n");
1296 rname = talloc_asprintf_append(rname, "%s", fname);
1300 rname = clean_name(ctx,rname);
1305 rc = do_get(rname, lname, false);
1307 pager=getenv("PAGER");
1309 pager_cmd = talloc_asprintf(ctx,
1311 (pager? pager:PAGER),
1316 if (system(pager_cmd) == -1) {
1317 d_printf("system command '%s' returned -1\n",
1325 /****************************************************************************
1327 ****************************************************************************/
1329 static int cmd_mget(void)
1331 TALLOC_CTX *ctx = talloc_tos();
1332 uint16 attribute = aSYSTEM | aHIDDEN;
1333 char *mget_mask = NULL;
1342 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1343 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1347 if (*buf == CLI_DIRSEP_CHAR) {
1348 mget_mask = talloc_strdup(ctx, buf);
1350 mget_mask = talloc_asprintf_append(mget_mask,
1356 do_list(mget_mask, attribute, do_mget, false, true);
1359 if (mget_mask == NULL) {
1360 d_printf("nothing to mget\n");
1365 mget_mask = talloc_asprintf(ctx,
1367 client_get_cur_dir());
1371 do_list(mget_mask, attribute, do_mget, false, true);
1377 /****************************************************************************
1378 Make a directory of name "name".
1379 ****************************************************************************/
1381 static bool do_mkdir(const char *name)
1383 TALLOC_CTX *ctx = talloc_tos();
1384 struct cli_state *targetcli;
1385 char *targetname = NULL;
1387 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1388 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1392 if (!NT_STATUS_IS_OK(cli_mkdir(targetcli, targetname))) {
1393 d_printf("%s making remote directory %s\n",
1394 cli_errstr(targetcli),name);
1401 /****************************************************************************
1402 Show 8.3 name of a file.
1403 ****************************************************************************/
1405 static bool do_altname(const char *name)
1409 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1410 d_printf("%s getting alt name for %s\n",
1411 cli_errstr(cli),name);
1414 d_printf("%s\n", altname);
1419 /****************************************************************************
1421 ****************************************************************************/
1423 static int cmd_quit(void)
1431 /****************************************************************************
1433 ****************************************************************************/
1435 static int cmd_mkdir(void)
1437 TALLOC_CTX *ctx = talloc_tos();
1441 mask = talloc_strdup(ctx, client_get_cur_dir());
1446 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1448 d_printf("mkdir <dirname>\n");
1452 mask = talloc_asprintf_append(mask, "%s", buf);
1460 struct cli_state *targetcli;
1461 char *targetname = NULL;
1465 ddir2 = talloc_strdup(ctx, "");
1470 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1474 ddir = talloc_strdup(ctx, targetname);
1478 trim_char(ddir,'.','\0');
1479 p = strtok_r(ddir, "/\\", &saveptr);
1481 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1485 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1488 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1492 p = strtok_r(NULL, "/\\", &saveptr);
1501 /****************************************************************************
1503 ****************************************************************************/
1505 static int cmd_altname(void)
1507 TALLOC_CTX *ctx = talloc_tos();
1511 name = talloc_strdup(ctx, client_get_cur_dir());
1516 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1517 d_printf("altname <file>\n");
1520 name = talloc_asprintf_append(name, "%s", buf);
1528 /****************************************************************************
1529 Show all info we can get
1530 ****************************************************************************/
1532 static int do_allinfo(const char *name)
1535 struct timespec b_time, a_time, m_time, c_time;
1540 unsigned int num_streams;
1541 struct stream_struct *streams;
1544 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1545 d_printf("%s getting alt name for %s\n",
1546 cli_errstr(cli),name);
1549 d_printf("altname: %s\n", altname);
1551 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1552 &size, &mode, &ino)) {
1553 d_printf("%s getting pathinfo for %s\n",
1554 cli_errstr(cli),name);
1558 unix_timespec_to_nt_time(&tmp, b_time);
1559 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1561 unix_timespec_to_nt_time(&tmp, a_time);
1562 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1564 unix_timespec_to_nt_time(&tmp, m_time);
1565 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1567 unix_timespec_to_nt_time(&tmp, c_time);
1568 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1570 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1572 d_printf("%s getting streams for %s\n",
1573 cli_errstr(cli),name);
1577 for (i=0; i<num_streams; i++) {
1578 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1579 (unsigned long long)streams[i].size);
1585 /****************************************************************************
1586 Show all info we can get
1587 ****************************************************************************/
1589 static int cmd_allinfo(void)
1591 TALLOC_CTX *ctx = talloc_tos();
1595 name = talloc_strdup(ctx, client_get_cur_dir());
1600 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1601 d_printf("allinfo <file>\n");
1604 name = talloc_asprintf_append(name, "%s", buf);
1614 /****************************************************************************
1616 ****************************************************************************/
1618 static int do_put(const char *rname, const char *lname, bool reput)
1620 TALLOC_CTX *ctx = talloc_tos();
1623 SMB_OFF_T start = 0;
1625 struct timeval tp_start;
1626 struct cli_state *targetcli;
1627 char *targetname = NULL;
1628 struct push_state state;
1631 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1632 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1636 GetTimeOfDay(&tp_start);
1639 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1640 if (NT_STATUS_IS_OK(status)) {
1641 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1642 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1643 d_printf("getattrib: %s\n",cli_errstr(cli));
1648 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1651 if (!NT_STATUS_IS_OK(status)) {
1652 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1656 /* allow files to be piped into smbclient
1659 Note that in this case this function will exit(0) rather
1661 if (!strcmp(lname, "-")) {
1663 /* size of file is not known */
1665 f = x_fopen(lname,O_RDONLY, 0);
1667 if (x_tseek(f, start, SEEK_SET) == -1) {
1668 d_printf("Error seeking local file\n");
1675 d_printf("Error opening local file %s\n",lname);
1679 DEBUG(1,("putting file %s as %s ",lname,
1682 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1687 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1689 if (!NT_STATUS_IS_OK(status)) {
1690 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1693 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1694 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1704 struct timeval tp_end;
1707 GetTimeOfDay(&tp_end);
1709 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1710 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1711 put_total_time_ms += this_time;
1712 put_total_size += state.nread;
1714 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1715 state.nread / (1.024*this_time + 1.0e-4),
1716 put_total_size / (1.024*put_total_time_ms)));
1727 /****************************************************************************
1729 ****************************************************************************/
1731 static int cmd_put(void)
1733 TALLOC_CTX *ctx = talloc_tos();
1738 rname = talloc_strdup(ctx, client_get_cur_dir());
1743 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1744 d_printf("put <filename>\n");
1748 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1749 rname = talloc_asprintf_append(rname, "%s", buf);
1751 rname = talloc_asprintf_append(rname, "%s", lname);
1757 rname = clean_name(ctx, rname);
1764 /* allow '-' to represent stdin
1765 jdblair, 24.jun.98 */
1766 if (!file_exist_stat(lname,&st) &&
1767 (strcmp(lname,"-"))) {
1768 d_printf("%s does not exist\n",lname);
1773 return do_put(rname, lname, false);
1776 /*************************************
1777 File list structure.
1778 *************************************/
1780 static struct file_list {
1781 struct file_list *prev, *next;
1786 /****************************************************************************
1787 Free a file_list structure.
1788 ****************************************************************************/
1790 static void free_file_list (struct file_list *l_head)
1792 struct file_list *list, *next;
1794 for (list = l_head; list; list = next) {
1796 DLIST_REMOVE(l_head, list);
1797 SAFE_FREE(list->file_path);
1802 /****************************************************************************
1803 Seek in a directory/file list until you get something that doesn't start with
1805 ****************************************************************************/
1807 static bool seek_list(struct file_list *list, char *name)
1810 trim_string(list->file_path,"./","\n");
1811 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1820 /****************************************************************************
1821 Set the file selection mask.
1822 ****************************************************************************/
1824 static int cmd_select(void)
1826 TALLOC_CTX *ctx = talloc_tos();
1827 char *new_fs = NULL;
1828 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1831 client_set_fileselection(new_fs);
1833 client_set_fileselection("");
1838 /****************************************************************************
1839 Recursive file matching function act as find
1840 match must be always set to true when calling this function
1841 ****************************************************************************/
1843 static int file_find(struct file_list **list, const char *directory,
1844 const char *expression, bool match)
1846 SMB_STRUCT_DIR *dir;
1847 struct file_list *entry;
1848 struct stat statbuf;
1854 dir = sys_opendir(directory);
1858 while ((dname = readdirname(dir))) {
1859 if (!strcmp("..", dname))
1861 if (!strcmp(".", dname))
1864 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1869 if (!match || !gen_fnmatch(expression, dname)) {
1871 ret = stat(path, &statbuf);
1873 if (S_ISDIR(statbuf.st_mode)) {
1875 ret = file_find(list, path, expression, false);
1878 d_printf("file_find: cannot stat file %s\n", path);
1887 entry = SMB_MALLOC_P(struct file_list);
1889 d_printf("Out of memory in file_find\n");
1893 entry->file_path = path;
1894 entry->isdir = isdir;
1895 DLIST_ADD(*list, entry);
1905 /****************************************************************************
1907 ****************************************************************************/
1909 static int cmd_mput(void)
1911 TALLOC_CTX *ctx = talloc_tos();
1914 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1916 struct file_list *temp_list;
1917 char *quest, *lname, *rname;
1921 ret = file_find(&file_list, ".", p, true);
1923 free_file_list(file_list);
1931 for (temp_list = file_list; temp_list;
1932 temp_list = temp_list->next) {
1935 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1938 trim_string(lname, "./", "/");
1940 /* check if it's a directory */
1941 if (temp_list->isdir) {
1942 /* if (!recurse) continue; */
1945 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1948 if (prompt && !yesno(quest)) { /* No */
1949 /* Skip the directory */
1950 lname[strlen(lname)-1] = '/';
1951 if (!seek_list(temp_list, lname))
1955 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1958 normalize_name(rname);
1959 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
1961 DEBUG (0, ("Unable to make dir, skipping..."));
1962 /* Skip the directory */
1963 lname[strlen(lname)-1] = '/';
1964 if (!seek_list(temp_list, lname)) {
1972 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1975 if (prompt && !yesno(quest)) {
1982 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1987 normalize_name(rname);
1989 do_put(rname, lname, false);
1991 free_file_list(file_list);
2000 /****************************************************************************
2002 ****************************************************************************/
2004 static int do_cancel(int job)
2006 if (cli_printjob_del(cli, job)) {
2007 d_printf("Job %d cancelled\n",job);
2010 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2015 /****************************************************************************
2017 ****************************************************************************/
2019 static int cmd_cancel(void)
2021 TALLOC_CTX *ctx = talloc_tos();
2025 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2026 d_printf("cancel <jobid> ...\n");
2032 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2037 /****************************************************************************
2039 ****************************************************************************/
2041 static int cmd_print(void)
2043 TALLOC_CTX *ctx = talloc_tos();
2048 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2049 d_printf("print <filename>\n");
2053 rname = talloc_strdup(ctx, lname);
2057 p = strrchr_m(rname,'/');
2059 rname = talloc_asprintf(ctx,
2064 if (strequal(lname,"-")) {
2065 rname = talloc_asprintf(ctx,
2073 return do_put(rname, lname, false);
2076 /****************************************************************************
2077 Show a print queue entry.
2078 ****************************************************************************/
2080 static void queue_fn(struct print_job_info *p)
2082 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2085 /****************************************************************************
2087 ****************************************************************************/
2089 static int cmd_queue(void)
2091 cli_print_queue(cli, queue_fn);
2095 /****************************************************************************
2097 ****************************************************************************/
2099 static void do_del(file_info *finfo, const char *dir)
2101 TALLOC_CTX *ctx = talloc_tos();
2104 mask = talloc_asprintf(ctx,
2113 if (finfo->mode & aDIR) {
2118 if (!NT_STATUS_IS_OK(cli_unlink(finfo->cli, mask, aSYSTEM | aHIDDEN))) {
2119 d_printf("%s deleting remote file %s\n",
2120 cli_errstr(finfo->cli),mask);
2125 /****************************************************************************
2127 ****************************************************************************/
2129 static int cmd_del(void)
2131 TALLOC_CTX *ctx = talloc_tos();
2134 uint16 attribute = aSYSTEM | aHIDDEN;
2140 mask = talloc_strdup(ctx, client_get_cur_dir());
2144 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2145 d_printf("del <filename>\n");
2148 mask = talloc_asprintf_append(mask, "%s", buf);
2153 do_list(mask,attribute,do_del,false,false);
2157 /****************************************************************************
2158 Wildcard delete some files.
2159 ****************************************************************************/
2161 static int cmd_wdel(void)
2163 TALLOC_CTX *ctx = talloc_tos();
2167 struct cli_state *targetcli;
2168 char *targetname = NULL;
2170 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2171 d_printf("wdel 0x<attrib> <wcard>\n");
2175 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2177 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2178 d_printf("wdel 0x<attrib> <wcard>\n");
2182 mask = talloc_asprintf(ctx, "%s%s",
2183 client_get_cur_dir(),
2189 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2190 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2194 if (!NT_STATUS_IS_OK(cli_unlink(targetcli, targetname, attribute))) {
2195 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2200 /****************************************************************************
2201 ****************************************************************************/
2203 static int cmd_open(void)
2205 TALLOC_CTX *ctx = talloc_tos();
2208 char *targetname = NULL;
2209 struct cli_state *targetcli;
2210 uint16_t fnum = (uint16_t)-1;
2212 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2213 d_printf("open <filename>\n");
2216 mask = talloc_asprintf(ctx,
2218 client_get_cur_dir(),
2224 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2225 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2229 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2230 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2231 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2232 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2234 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2235 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2237 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2240 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2245 static int cmd_posix_encrypt(void)
2247 TALLOC_CTX *ctx = talloc_tos();
2248 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2250 if (cli->use_kerberos) {
2251 status = cli_gss_smb_encryption_start(cli);
2253 char *domain = NULL;
2255 char *password = NULL;
2257 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2258 d_printf("posix_encrypt domain user password\n");
2262 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2263 d_printf("posix_encrypt domain user password\n");
2267 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2268 d_printf("posix_encrypt domain user password\n");
2272 status = cli_raw_ntlm_smb_encryption_start(cli,
2278 if (!NT_STATUS_IS_OK(status)) {
2279 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2281 d_printf("encryption on\n");
2288 /****************************************************************************
2289 ****************************************************************************/
2291 static int cmd_posix_open(void)
2293 TALLOC_CTX *ctx = talloc_tos();
2296 char *targetname = NULL;
2297 struct cli_state *targetcli;
2301 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2302 d_printf("posix_open <filename> 0<mode>\n");
2305 mask = talloc_asprintf(ctx,
2307 client_get_cur_dir(),
2313 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2314 d_printf("posix_open <filename> 0<mode>\n");
2317 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2319 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2320 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2324 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode);
2326 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode);
2328 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2330 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2333 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2339 static int cmd_posix_mkdir(void)
2341 TALLOC_CTX *ctx = talloc_tos();
2344 char *targetname = NULL;
2345 struct cli_state *targetcli;
2349 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2350 d_printf("posix_mkdir <filename> 0<mode>\n");
2353 mask = talloc_asprintf(ctx,
2355 client_get_cur_dir(),
2361 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2362 d_printf("posix_mkdir <filename> 0<mode>\n");
2365 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2367 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2368 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2372 fnum = cli_posix_mkdir(targetcli, targetname, mode);
2374 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2376 d_printf("posix_mkdir created directory %s\n", targetname);
2381 static int cmd_posix_unlink(void)
2383 TALLOC_CTX *ctx = talloc_tos();
2386 char *targetname = NULL;
2387 struct cli_state *targetcli;
2389 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2390 d_printf("posix_unlink <filename>\n");
2393 mask = talloc_asprintf(ctx,
2395 client_get_cur_dir(),
2401 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2402 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2406 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2407 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2409 d_printf("posix_unlink deleted file %s\n", targetname);
2415 static int cmd_posix_rmdir(void)
2417 TALLOC_CTX *ctx = talloc_tos();
2420 char *targetname = NULL;
2421 struct cli_state *targetcli;
2423 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2424 d_printf("posix_rmdir <filename>\n");
2427 mask = talloc_asprintf(ctx,
2429 client_get_cur_dir(),
2435 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2436 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2440 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2441 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2443 d_printf("posix_rmdir deleted directory %s\n", targetname);
2449 static int cmd_close(void)
2451 TALLOC_CTX *ctx = talloc_tos();
2455 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2456 d_printf("close <fnum>\n");
2461 /* We really should use the targetcli here.... */
2462 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2463 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2469 static int cmd_posix(void)
2471 TALLOC_CTX *ctx = talloc_tos();
2472 uint16 major, minor;
2473 uint32 caplow, caphigh;
2476 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2477 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2481 if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2482 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2486 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2488 caps = talloc_strdup(ctx, "");
2492 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2493 caps = talloc_asprintf_append(caps, "locks ");
2498 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2499 caps = talloc_asprintf_append(caps, "acls ");
2504 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2505 caps = talloc_asprintf_append(caps, "eas ");
2510 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2511 caps = talloc_asprintf_append(caps, "pathnames ");
2516 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2517 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2522 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2523 caps = talloc_asprintf_append(caps, "large_read ");
2528 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2529 caps = talloc_asprintf_append(caps, "large_write ");
2534 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2535 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2540 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2541 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2547 if (*caps && caps[strlen(caps)-1] == ' ') {
2548 caps[strlen(caps)-1] = '\0';
2551 d_printf("Server supports CIFS capabilities %s\n", caps);
2553 if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2554 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2558 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2559 CLI_DIRSEP_CHAR = '/';
2560 *CLI_DIRSEP_STR = '/';
2561 client_set_cur_dir(CLI_DIRSEP_STR);
2567 static int cmd_lock(void)
2569 TALLOC_CTX *ctx = talloc_tos();
2571 uint64_t start, len;
2572 enum brl_type lock_type;
2575 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2576 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2581 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2582 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2586 if (*buf == 'r' || *buf == 'R') {
2587 lock_type = READ_LOCK;
2588 } else if (*buf == 'w' || *buf == 'W') {
2589 lock_type = WRITE_LOCK;
2591 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2595 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2596 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2600 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2602 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2603 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2607 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2609 if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
2610 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2616 static int cmd_unlock(void)
2618 TALLOC_CTX *ctx = talloc_tos();
2620 uint64_t start, len;
2623 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2624 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2629 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2630 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2634 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2636 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2637 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2641 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2643 if (!cli_posix_unlock(cli, fnum, start, len)) {
2644 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2651 /****************************************************************************
2653 ****************************************************************************/
2655 static int cmd_rmdir(void)
2657 TALLOC_CTX *ctx = talloc_tos();
2660 char *targetname = NULL;
2661 struct cli_state *targetcli;
2663 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2664 d_printf("rmdir <dirname>\n");
2667 mask = talloc_asprintf(ctx,
2669 client_get_cur_dir(),
2675 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2676 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2680 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2681 d_printf("%s removing remote directory file %s\n",
2682 cli_errstr(targetcli),mask);
2688 /****************************************************************************
2690 ****************************************************************************/
2692 static int cmd_link(void)
2694 TALLOC_CTX *ctx = talloc_tos();
2695 char *oldname = NULL;
2696 char *newname = NULL;
2699 char *targetname = NULL;
2700 struct cli_state *targetcli;
2702 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2703 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2704 d_printf("link <oldname> <newname>\n");
2707 oldname = talloc_asprintf(ctx,
2709 client_get_cur_dir(),
2714 newname = talloc_asprintf(ctx,
2716 client_get_cur_dir(),
2722 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2723 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2727 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2728 d_printf("Server doesn't support UNIX CIFS calls.\n");
2732 if (!cli_unix_hardlink(targetcli, targetname, newname)) {
2733 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2739 /****************************************************************************
2741 ****************************************************************************/
2743 static int cmd_symlink(void)
2745 TALLOC_CTX *ctx = talloc_tos();
2746 char *oldname = NULL;
2747 char *newname = NULL;
2750 char *targetname = NULL;
2751 struct cli_state *targetcli;
2753 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2754 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2755 d_printf("symlink <oldname> <newname>\n");
2758 oldname = talloc_asprintf(ctx,
2760 client_get_cur_dir(),
2765 newname = talloc_asprintf(ctx,
2767 client_get_cur_dir(),
2773 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2774 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2778 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2779 d_printf("Server doesn't support UNIX CIFS calls.\n");
2783 if (!cli_unix_symlink(targetcli, targetname, newname)) {
2784 d_printf("%s symlinking files (%s -> %s)\n",
2785 cli_errstr(targetcli), newname, targetname);
2792 /****************************************************************************
2794 ****************************************************************************/
2796 static int cmd_chmod(void)
2798 TALLOC_CTX *ctx = talloc_tos();
2802 char *targetname = NULL;
2803 struct cli_state *targetcli;
2806 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2807 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2808 d_printf("chmod mode file\n");
2811 src = talloc_asprintf(ctx,
2813 client_get_cur_dir(),
2819 mode = (mode_t)strtol(buf, NULL, 8);
2821 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2822 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2826 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2827 d_printf("Server doesn't support UNIX CIFS calls.\n");
2831 if (!cli_unix_chmod(targetcli, targetname, mode)) {
2832 d_printf("%s chmod file %s 0%o\n",
2833 cli_errstr(targetcli), src, (unsigned int)mode);
2840 static const char *filetype_to_str(mode_t mode)
2842 if (S_ISREG(mode)) {
2843 return "regular file";
2844 } else if (S_ISDIR(mode)) {
2848 if (S_ISCHR(mode)) {
2849 return "character device";
2853 if (S_ISBLK(mode)) {
2854 return "block device";
2858 if (S_ISFIFO(mode)) {
2863 if (S_ISLNK(mode)) {
2864 return "symbolic link";
2868 if (S_ISSOCK(mode)) {
2875 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2884 static char *unix_mode_to_str(char *s, mode_t m)
2887 const char *str = filetype_to_str(m);
2903 *p++ = str[1] == 'y' ? 'l' : 's';
2910 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2911 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2912 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2913 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2914 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2915 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2916 *p++ = rwx_to_str(m, S_IROTH, 'r');
2917 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2918 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2923 /****************************************************************************
2924 Utility function for UNIX getfacl.
2925 ****************************************************************************/
2927 static char *perms_to_string(fstring permstr, unsigned char perms)
2929 fstrcpy(permstr, "---");
2930 if (perms & SMB_POSIX_ACL_READ) {
2933 if (perms & SMB_POSIX_ACL_WRITE) {
2936 if (perms & SMB_POSIX_ACL_EXECUTE) {
2942 /****************************************************************************
2944 ****************************************************************************/
2946 static int cmd_getfacl(void)
2948 TALLOC_CTX *ctx = talloc_tos();
2951 char *targetname = NULL;
2952 struct cli_state *targetcli;
2953 uint16 major, minor;
2954 uint32 caplow, caphigh;
2955 char *retbuf = NULL;
2957 SMB_STRUCT_STAT sbuf;
2958 uint16 num_file_acls = 0;
2959 uint16 num_dir_acls = 0;
2962 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2963 d_printf("getfacl filename\n");
2966 src = talloc_asprintf(ctx,
2968 client_get_cur_dir(),
2974 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2975 d_printf("stat %s: %s\n", src, cli_errstr(cli));
2979 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2980 d_printf("Server doesn't support UNIX CIFS calls.\n");
2984 if (!cli_unix_extensions_version(targetcli, &major, &minor,
2985 &caplow, &caphigh)) {
2986 d_printf("Can't get UNIX CIFS version from server.\n");
2990 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
2991 d_printf("This server supports UNIX extensions "
2992 "but doesn't support POSIX ACLs.\n");
2996 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
2997 d_printf("%s getfacl doing a stat on file %s\n",
2998 cli_errstr(targetcli), src);
3002 if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
3003 d_printf("%s getfacl file %s\n",
3004 cli_errstr(targetcli), src);
3008 /* ToDo : Print out the ACL values. */
3009 if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
3010 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3011 src, (unsigned int)CVAL(retbuf,0) );
3016 num_file_acls = SVAL(retbuf,2);
3017 num_dir_acls = SVAL(retbuf,4);
3018 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3019 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3021 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3022 (unsigned int)rb_size);
3028 d_printf("# file: %s\n", src);
3029 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
3031 if (num_file_acls == 0 && num_dir_acls == 0) {
3032 d_printf("No acls found.\n");
3035 for (i = 0; i < num_file_acls; i++) {
3038 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3039 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3042 case SMB_POSIX_ACL_USER_OBJ:
3045 case SMB_POSIX_ACL_USER:
3046 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3047 d_printf("user:%u:", uorg);
3049 case SMB_POSIX_ACL_GROUP_OBJ:
3050 d_printf("group::");
3052 case SMB_POSIX_ACL_GROUP:
3053 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3054 d_printf("group:%u:", uorg);
3056 case SMB_POSIX_ACL_MASK:
3059 case SMB_POSIX_ACL_OTHER:
3060 d_printf("other::");
3063 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3064 src, (unsigned int)tagtype );
3069 d_printf("%s\n", perms_to_string(permstring, perms));
3072 for (i = 0; i < num_dir_acls; i++) {
3075 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3076 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3079 case SMB_POSIX_ACL_USER_OBJ:
3080 d_printf("default:user::");
3082 case SMB_POSIX_ACL_USER:
3083 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3084 d_printf("default:user:%u:", uorg);
3086 case SMB_POSIX_ACL_GROUP_OBJ:
3087 d_printf("default:group::");
3089 case SMB_POSIX_ACL_GROUP:
3090 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3091 d_printf("default:group:%u:", uorg);
3093 case SMB_POSIX_ACL_MASK:
3094 d_printf("default:mask::");
3096 case SMB_POSIX_ACL_OTHER:
3097 d_printf("default:other::");
3100 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3101 src, (unsigned int)tagtype );
3106 d_printf("%s\n", perms_to_string(permstring, perms));
3113 /****************************************************************************
3115 ****************************************************************************/
3117 static int cmd_stat(void)
3119 TALLOC_CTX *ctx = talloc_tos();
3122 char *targetname = NULL;
3123 struct cli_state *targetcli;
3125 SMB_STRUCT_STAT sbuf;
3128 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3129 d_printf("stat file\n");
3132 src = talloc_asprintf(ctx,
3134 client_get_cur_dir(),
3140 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3141 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3145 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3146 d_printf("Server doesn't support UNIX CIFS calls.\n");
3150 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3151 d_printf("%s stat file %s\n",
3152 cli_errstr(targetcli), src);
3156 /* Print out the stat values. */
3157 d_printf("File: %s\n", src);
3158 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3159 (double)sbuf.st_size,
3160 (unsigned int)sbuf.st_blocks,
3161 filetype_to_str(sbuf.st_mode));
3163 #if defined(S_ISCHR) && defined(S_ISBLK)
3164 if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
3165 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3166 (double)sbuf.st_ino,
3167 (unsigned int)sbuf.st_nlink,
3168 unix_dev_major(sbuf.st_rdev),
3169 unix_dev_minor(sbuf.st_rdev));
3172 d_printf("Inode: %.0f\tLinks: %u\n",
3173 (double)sbuf.st_ino,
3174 (unsigned int)sbuf.st_nlink);
3176 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3177 ((int)sbuf.st_mode & 0777),
3178 unix_mode_to_str(mode_str, sbuf.st_mode),
3179 (unsigned int)sbuf.st_uid,
3180 (unsigned int)sbuf.st_gid);
3182 lt = localtime(&sbuf.st_atime);
3184 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3186 fstrcpy(mode_str, "unknown");
3188 d_printf("Access: %s\n", mode_str);
3190 lt = localtime(&sbuf.st_mtime);
3192 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3194 fstrcpy(mode_str, "unknown");
3196 d_printf("Modify: %s\n", mode_str);
3198 lt = localtime(&sbuf.st_ctime);
3200 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3202 fstrcpy(mode_str, "unknown");
3204 d_printf("Change: %s\n", mode_str);
3210 /****************************************************************************
3212 ****************************************************************************/
3214 static int cmd_chown(void)
3216 TALLOC_CTX *ctx = talloc_tos();
3220 char *buf, *buf2, *buf3;
3221 struct cli_state *targetcli;
3222 char *targetname = NULL;
3224 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3225 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3226 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3227 d_printf("chown uid gid file\n");
3231 uid = (uid_t)atoi(buf);
3232 gid = (gid_t)atoi(buf2);
3234 src = talloc_asprintf(ctx,
3236 client_get_cur_dir(),
3241 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3242 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3246 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3247 d_printf("Server doesn't support UNIX CIFS calls.\n");
3251 if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
3252 d_printf("%s chown file %s uid=%d, gid=%d\n",
3253 cli_errstr(targetcli), src, (int)uid, (int)gid);
3260 /****************************************************************************
3262 ****************************************************************************/
3264 static int cmd_rename(void)
3266 TALLOC_CTX *ctx = talloc_tos();
3269 struct cli_state *targetcli;
3273 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3274 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3275 d_printf("rename <src> <dest>\n");
3279 src = talloc_asprintf(ctx,
3281 client_get_cur_dir(),
3287 dest = talloc_asprintf(ctx,
3289 client_get_cur_dir(),
3295 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3296 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3300 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3301 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3305 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3306 d_printf("%s renaming files %s -> %s \n",
3307 cli_errstr(targetcli),
3316 /****************************************************************************
3317 Print the volume name.
3318 ****************************************************************************/
3320 static int cmd_volume(void)
3326 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3327 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3331 d_printf("Volume: |%s| serial number 0x%x\n",
3332 volname, (unsigned int)serial_num);
3336 /****************************************************************************
3337 Hard link files using the NT call.
3338 ****************************************************************************/
3340 static int cmd_hardlink(void)
3342 TALLOC_CTX *ctx = talloc_tos();
3345 struct cli_state *targetcli;
3348 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3349 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3350 d_printf("hardlink <src> <dest>\n");
3354 src = talloc_asprintf(ctx,
3356 client_get_cur_dir(),
3362 dest = talloc_asprintf(ctx,
3364 client_get_cur_dir(),
3370 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3371 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3375 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3376 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3383 /****************************************************************************
3384 Toggle the prompt flag.
3385 ****************************************************************************/
3387 static int cmd_prompt(void)
3390 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3394 /****************************************************************************
3395 Set the newer than time.
3396 ****************************************************************************/
3398 static int cmd_newer(void)
3400 TALLOC_CTX *ctx = talloc_tos();
3403 SMB_STRUCT_STAT sbuf;
3405 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3406 if (ok && (sys_stat(buf,&sbuf) == 0)) {
3407 newer_than = sbuf.st_mtime;
3408 DEBUG(1,("Getting files newer than %s",
3409 time_to_asc(newer_than)));
3414 if (ok && newer_than == 0) {
3415 d_printf("Error setting newer-than time\n");
3422 /****************************************************************************
3423 Set the archive level.
3424 ****************************************************************************/
3426 static int cmd_archive(void)
3428 TALLOC_CTX *ctx = talloc_tos();
3431 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3432 archive_level = atoi(buf);
3434 d_printf("Archive level is %d\n",archive_level);
3440 /****************************************************************************
3441 Toggle the lowercaseflag.
3442 ****************************************************************************/
3444 static int cmd_lowercase(void)
3446 lowercase = !lowercase;
3447 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3451 /****************************************************************************
3452 Toggle the case sensitive flag.
3453 ****************************************************************************/
3455 static int cmd_setcase(void)
3457 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3459 cli_set_case_sensitive(cli, !orig_case_sensitive);
3460 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3465 /****************************************************************************
3466 Toggle the showacls flag.
3467 ****************************************************************************/
3469 static int cmd_showacls(void)
3471 showacls = !showacls;
3472 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3477 /****************************************************************************
3478 Toggle the recurse flag.
3479 ****************************************************************************/
3481 static int cmd_recurse(void)
3484 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3488 /****************************************************************************
3489 Toggle the translate flag.
3490 ****************************************************************************/
3492 static int cmd_translate(void)
3494 translation = !translation;
3495 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3496 translation?"on":"off"));
3500 /****************************************************************************
3502 ****************************************************************************/
3504 static int cmd_lcd(void)
3506 TALLOC_CTX *ctx = talloc_tos();
3510 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3511 if (chdir(buf) == -1) {
3512 d_printf("chdir to %s failed (%s)\n",
3513 buf, strerror(errno));
3516 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3520 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3524 /****************************************************************************
3525 Get a file restarting at end of local file.
3526 ****************************************************************************/
3528 static int cmd_reget(void)
3530 TALLOC_CTX *ctx = talloc_tos();
3531 char *local_name = NULL;
3532 char *remote_name = NULL;
3536 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3541 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3542 d_printf("reget <filename>\n");
3545 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3549 remote_name = clean_name(ctx,remote_name);
3555 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3560 return do_get(remote_name, local_name, true);
3563 /****************************************************************************
3564 Put a file restarting at end of local file.
3565 ****************************************************************************/
3567 static int cmd_reput(void)
3569 TALLOC_CTX *ctx = talloc_tos();
3570 char *local_name = NULL;
3571 char *remote_name = NULL;
3575 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3580 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3581 d_printf("reput <filename>\n");
3585 if (!file_exist_stat(local_name, &st)) {
3586 d_printf("%s does not exist\n", local_name);
3590 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3591 remote_name = talloc_asprintf_append(remote_name,
3594 remote_name = talloc_asprintf_append(remote_name,
3601 remote_name = clean_name(ctx, remote_name);
3606 return do_put(remote_name, local_name, true);
3609 /****************************************************************************
3611 ****************************************************************************/
3613 static void browse_fn(const char *name, uint32 m,
3614 const char *comment, void *state)
3616 const char *typestr = "";
3619 case STYPE_DISKTREE:
3623 typestr = "Printer";
3632 /* FIXME: If the remote machine returns non-ascii characters
3633 in any of these fields, they can corrupt the output. We
3634 should remove them. */
3636 d_printf("\t%-15s %-10.10s%s\n",
3637 name,typestr,comment);
3639 d_printf ("%s|%s|%s\n",typestr,name,comment);
3643 static bool browse_host_rpc(bool sort)
3646 struct rpc_pipe_client *pipe_hnd;
3647 TALLOC_CTX *frame = talloc_stackframe();
3649 struct srvsvc_NetShareInfoCtr info_ctr;
3650 struct srvsvc_NetShareCtr1 ctr1;
3651 uint32_t resume_handle = 0;
3652 uint32_t total_entries = 0;
3655 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3658 if (!NT_STATUS_IS_OK(status)) {
3659 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3660 nt_errstr(status)));
3665 ZERO_STRUCT(info_ctr);
3669 info_ctr.ctr.ctr1 = &ctr1;
3671 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3679 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3680 TALLOC_FREE(pipe_hnd);
3685 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3686 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3687 browse_fn(info.name, info.type, info.comment, NULL);
3690 TALLOC_FREE(pipe_hnd);
3695 /****************************************************************************
3696 Try and browse available connections on a host.
3697 ****************************************************************************/
3699 static bool browse_host(bool sort)
3703 d_printf("\n\tSharename Type Comment\n");
3704 d_printf("\t--------- ---- -------\n");
3707 if (browse_host_rpc(sort)) {
3711 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3712 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3717 /****************************************************************************
3719 ****************************************************************************/
3721 static void server_fn(const char *name, uint32 m,
3722 const char *comment, void *state)
3726 d_printf("\t%-16s %s\n", name, comment);
3728 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3732 /****************************************************************************
3733 Try and browse available connections on a host.
3734 ****************************************************************************/
3736 static bool list_servers(const char *wk_grp)
3740 if (!cli->server_domain)
3744 d_printf("\n\tServer Comment\n");
3745 d_printf("\t--------- -------\n");
3747 fstrcpy( state, "Server" );
3748 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3752 d_printf("\n\tWorkgroup Master\n");
3753 d_printf("\t--------- -------\n");
3756 fstrcpy( state, "Workgroup" );
3757 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3762 /****************************************************************************
3763 Print or set current VUID
3764 ****************************************************************************/
3766 static int cmd_vuid(void)
3768 TALLOC_CTX *ctx = talloc_tos();
3771 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3772 d_printf("Current VUID is %d\n", cli->vuid);
3776 cli->vuid = atoi(buf);
3780 /****************************************************************************
3781 Setup a new VUID, by issuing a session setup
3782 ****************************************************************************/
3784 static int cmd_logon(void)
3786 TALLOC_CTX *ctx = talloc_tos();
3787 char *l_username, *l_password;
3789 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3790 d_printf("logon <username> [<password>]\n");
3794 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3795 char *pass = getpass("Password: ");
3797 l_password = talloc_strdup(ctx,pass);
3804 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3805 l_password, strlen(l_password),
3806 l_password, strlen(l_password),
3808 d_printf("session setup failed: %s\n", cli_errstr(cli));
3812 d_printf("Current VUID is %d\n", cli->vuid);
3817 /****************************************************************************
3818 list active connections
3819 ****************************************************************************/
3821 static int cmd_list_connect(void)
3823 cli_cm_display(cli);
3827 /****************************************************************************
3828 display the current active client connection
3829 ****************************************************************************/
3831 static int cmd_show_connect( void )
3833 TALLOC_CTX *ctx = talloc_tos();
3834 struct cli_state *targetcli;
3837 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
3838 &targetcli, &targetpath ) ) {
3839 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3843 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3847 /****************************************************************************
3849 ***************************************************************************/
3851 int cmd_iosize(void)
3853 TALLOC_CTX *ctx = talloc_tos();
3857 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3859 d_printf("iosize <n> or iosize 0x<n>. "
3860 "Minimum is 16384 (0x4000), "
3861 "max is 16776960 (0xFFFF00)\n");
3863 d_printf("iosize <n> or iosize 0x<n>. "
3864 "(Encrypted connection) ,"
3865 "Minimum is 16384 (0x4000), "
3866 "max is 130048 (0x1FC00)\n");
3871 iosize = strtol(buf,NULL,0);
3872 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3873 d_printf("iosize out of range for encrypted "
3874 "connection (min = 16384 (0x4000), "
3875 "max = 130048 (0x1FC00)");
3877 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3878 d_printf("iosize out of range (min = 16384 (0x4000), "
3879 "max = 16776960 (0xFFFF00)");
3883 io_bufsize = iosize;
3884 d_printf("iosize is now %d\n", io_bufsize);
3889 /* Some constants for completing filename arguments */
3891 #define COMPL_NONE 0 /* No completions */
3892 #define COMPL_REMOTE 1 /* Complete remote filename */
3893 #define COMPL_LOCAL 2 /* Complete local filename */
3895 /* This defines the commands supported by this client.
3896 * NOTE: The "!" must be the last one in the list because it's fn pointer
3897 * field is NULL, and NULL in that field is used in process_tok()
3898 * (below) to indicate the end of the list. crh
3903 const char *description;
3904 char compl_args[2]; /* Completion argument info */
3906 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3907 {"allinfo",cmd_allinfo,"<file> show all available info",
3908 {COMPL_NONE,COMPL_NONE}},
3909 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3910 {"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}},
3911 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3912 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3913 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3914 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3915 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission"