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 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2325 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2326 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2328 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2331 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2337 static int cmd_posix_mkdir(void)
2339 TALLOC_CTX *ctx = talloc_tos();
2342 char *targetname = NULL;
2343 struct cli_state *targetcli;
2346 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2347 d_printf("posix_mkdir <filename> 0<mode>\n");
2350 mask = talloc_asprintf(ctx,
2352 client_get_cur_dir(),
2358 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2359 d_printf("posix_mkdir <filename> 0<mode>\n");
2362 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2364 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2365 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2369 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2370 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2372 d_printf("posix_mkdir created directory %s\n", targetname);
2377 static int cmd_posix_unlink(void)
2379 TALLOC_CTX *ctx = talloc_tos();
2382 char *targetname = NULL;
2383 struct cli_state *targetcli;
2385 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2386 d_printf("posix_unlink <filename>\n");
2389 mask = talloc_asprintf(ctx,
2391 client_get_cur_dir(),
2397 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2398 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2402 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2403 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2405 d_printf("posix_unlink deleted file %s\n", targetname);
2411 static int cmd_posix_rmdir(void)
2413 TALLOC_CTX *ctx = talloc_tos();
2416 char *targetname = NULL;
2417 struct cli_state *targetcli;
2419 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2420 d_printf("posix_rmdir <filename>\n");
2423 mask = talloc_asprintf(ctx,
2425 client_get_cur_dir(),
2431 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2432 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2436 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2437 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2439 d_printf("posix_rmdir deleted directory %s\n", targetname);
2445 static int cmd_close(void)
2447 TALLOC_CTX *ctx = talloc_tos();
2451 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2452 d_printf("close <fnum>\n");
2457 /* We really should use the targetcli here.... */
2458 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2459 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2465 static int cmd_posix(void)
2467 TALLOC_CTX *ctx = talloc_tos();
2468 uint16 major, minor;
2469 uint32 caplow, caphigh;
2472 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2473 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2477 if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2478 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2482 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2484 caps = talloc_strdup(ctx, "");
2488 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2489 caps = talloc_asprintf_append(caps, "locks ");
2494 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2495 caps = talloc_asprintf_append(caps, "acls ");
2500 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2501 caps = talloc_asprintf_append(caps, "eas ");
2506 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2507 caps = talloc_asprintf_append(caps, "pathnames ");
2512 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2513 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2518 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2519 caps = talloc_asprintf_append(caps, "large_read ");
2524 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2525 caps = talloc_asprintf_append(caps, "large_write ");
2530 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2531 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2536 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2537 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2543 if (*caps && caps[strlen(caps)-1] == ' ') {
2544 caps[strlen(caps)-1] = '\0';
2547 d_printf("Server supports CIFS capabilities %s\n", caps);
2549 if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2550 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2554 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2555 CLI_DIRSEP_CHAR = '/';
2556 *CLI_DIRSEP_STR = '/';
2557 client_set_cur_dir(CLI_DIRSEP_STR);
2563 static int cmd_lock(void)
2565 TALLOC_CTX *ctx = talloc_tos();
2567 uint64_t start, len;
2568 enum brl_type lock_type;
2571 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2572 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2577 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2578 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2582 if (*buf == 'r' || *buf == 'R') {
2583 lock_type = READ_LOCK;
2584 } else if (*buf == 'w' || *buf == 'W') {
2585 lock_type = WRITE_LOCK;
2587 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2591 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2592 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2596 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2598 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2599 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2603 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2605 if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
2606 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2612 static int cmd_unlock(void)
2614 TALLOC_CTX *ctx = talloc_tos();
2616 uint64_t start, len;
2619 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2620 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2625 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2626 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2630 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2632 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2633 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2637 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2639 if (!cli_posix_unlock(cli, fnum, start, len)) {
2640 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2647 /****************************************************************************
2649 ****************************************************************************/
2651 static int cmd_rmdir(void)
2653 TALLOC_CTX *ctx = talloc_tos();
2656 char *targetname = NULL;
2657 struct cli_state *targetcli;
2659 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2660 d_printf("rmdir <dirname>\n");
2663 mask = talloc_asprintf(ctx,
2665 client_get_cur_dir(),
2671 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2672 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2676 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2677 d_printf("%s removing remote directory file %s\n",
2678 cli_errstr(targetcli),mask);
2684 /****************************************************************************
2686 ****************************************************************************/
2688 static int cmd_link(void)
2690 TALLOC_CTX *ctx = talloc_tos();
2691 char *oldname = NULL;
2692 char *newname = NULL;
2695 char *targetname = NULL;
2696 struct cli_state *targetcli;
2698 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2699 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2700 d_printf("link <oldname> <newname>\n");
2703 oldname = talloc_asprintf(ctx,
2705 client_get_cur_dir(),
2710 newname = talloc_asprintf(ctx,
2712 client_get_cur_dir(),
2718 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2719 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2723 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2724 d_printf("Server doesn't support UNIX CIFS calls.\n");
2728 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2729 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2735 /****************************************************************************
2737 ****************************************************************************/
2739 static int cmd_readlink(void)
2741 TALLOC_CTX *ctx = talloc_tos();
2744 char *targetname = NULL;
2745 char linkname[PATH_MAX+1];
2746 struct cli_state *targetcli;
2748 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2749 d_printf("readlink <name>\n");
2752 name = talloc_asprintf(ctx,
2754 client_get_cur_dir(),
2760 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2761 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2765 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2766 d_printf("Server doesn't support UNIX CIFS calls.\n");
2770 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2771 linkname, PATH_MAX+1))) {
2772 d_printf("%s readlink on file %s\n",
2773 cli_errstr(targetcli), name);
2777 d_printf("%s -> %s\n", name, linkname);
2783 /****************************************************************************
2785 ****************************************************************************/
2787 static int cmd_symlink(void)
2789 TALLOC_CTX *ctx = talloc_tos();
2790 char *oldname = NULL;
2791 char *newname = NULL;
2794 char *targetname = NULL;
2795 struct cli_state *targetcli;
2797 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2798 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2799 d_printf("symlink <oldname> <newname>\n");
2802 oldname = talloc_asprintf(ctx,
2804 client_get_cur_dir(),
2809 newname = talloc_asprintf(ctx,
2811 client_get_cur_dir(),
2817 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2818 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2822 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2823 d_printf("Server doesn't support UNIX CIFS calls.\n");
2827 if (!NT_STATUS_IS_OK(cli_posix_symlink(targetcli, targetname, newname))) {
2828 d_printf("%s symlinking files (%s -> %s)\n",
2829 cli_errstr(targetcli), newname, targetname);
2836 /****************************************************************************
2838 ****************************************************************************/
2840 static int cmd_chmod(void)
2842 TALLOC_CTX *ctx = talloc_tos();
2846 char *targetname = NULL;
2847 struct cli_state *targetcli;
2850 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2851 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2852 d_printf("chmod mode file\n");
2855 src = talloc_asprintf(ctx,
2857 client_get_cur_dir(),
2863 mode = (mode_t)strtol(buf, NULL, 8);
2865 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2866 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2870 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2871 d_printf("Server doesn't support UNIX CIFS calls.\n");
2875 if (!cli_unix_chmod(targetcli, targetname, mode)) {
2876 d_printf("%s chmod file %s 0%o\n",
2877 cli_errstr(targetcli), src, (unsigned int)mode);
2884 static const char *filetype_to_str(mode_t mode)
2886 if (S_ISREG(mode)) {
2887 return "regular file";
2888 } else if (S_ISDIR(mode)) {
2892 if (S_ISCHR(mode)) {
2893 return "character device";
2897 if (S_ISBLK(mode)) {
2898 return "block device";
2902 if (S_ISFIFO(mode)) {
2907 if (S_ISLNK(mode)) {
2908 return "symbolic link";
2912 if (S_ISSOCK(mode)) {
2919 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2928 static char *unix_mode_to_str(char *s, mode_t m)
2931 const char *str = filetype_to_str(m);
2947 *p++ = str[1] == 'y' ? 'l' : 's';
2954 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2955 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2956 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2957 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2958 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2959 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2960 *p++ = rwx_to_str(m, S_IROTH, 'r');
2961 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2962 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2967 /****************************************************************************
2968 Utility function for UNIX getfacl.
2969 ****************************************************************************/
2971 static char *perms_to_string(fstring permstr, unsigned char perms)
2973 fstrcpy(permstr, "---");
2974 if (perms & SMB_POSIX_ACL_READ) {
2977 if (perms & SMB_POSIX_ACL_WRITE) {
2980 if (perms & SMB_POSIX_ACL_EXECUTE) {
2986 /****************************************************************************
2988 ****************************************************************************/
2990 static int cmd_getfacl(void)
2992 TALLOC_CTX *ctx = talloc_tos();
2995 char *targetname = NULL;
2996 struct cli_state *targetcli;
2997 uint16 major, minor;
2998 uint32 caplow, caphigh;
2999 char *retbuf = NULL;
3001 SMB_STRUCT_STAT sbuf;
3002 uint16 num_file_acls = 0;
3003 uint16 num_dir_acls = 0;
3006 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3007 d_printf("getfacl filename\n");
3010 src = talloc_asprintf(ctx,
3012 client_get_cur_dir(),
3018 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3019 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3023 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3024 d_printf("Server doesn't support UNIX CIFS calls.\n");
3028 if (!cli_unix_extensions_version(targetcli, &major, &minor,
3029 &caplow, &caphigh)) {
3030 d_printf("Can't get UNIX CIFS version from server.\n");
3034 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3035 d_printf("This server supports UNIX extensions "
3036 "but doesn't support POSIX ACLs.\n");
3040 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3041 d_printf("%s getfacl doing a stat on file %s\n",
3042 cli_errstr(targetcli), src);
3046 if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
3047 d_printf("%s getfacl file %s\n",
3048 cli_errstr(targetcli), src);
3052 /* ToDo : Print out the ACL values. */
3053 if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
3054 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3055 src, (unsigned int)CVAL(retbuf,0) );
3060 num_file_acls = SVAL(retbuf,2);
3061 num_dir_acls = SVAL(retbuf,4);
3062 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3063 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3065 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3066 (unsigned int)rb_size);
3072 d_printf("# file: %s\n", src);
3073 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3075 if (num_file_acls == 0 && num_dir_acls == 0) {
3076 d_printf("No acls found.\n");
3079 for (i = 0; i < num_file_acls; i++) {
3082 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3083 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3086 case SMB_POSIX_ACL_USER_OBJ:
3089 case SMB_POSIX_ACL_USER:
3090 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3091 d_printf("user:%u:", uorg);
3093 case SMB_POSIX_ACL_GROUP_OBJ:
3094 d_printf("group::");
3096 case SMB_POSIX_ACL_GROUP:
3097 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3098 d_printf("group:%u:", uorg);
3100 case SMB_POSIX_ACL_MASK:
3103 case SMB_POSIX_ACL_OTHER:
3104 d_printf("other::");
3107 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3108 src, (unsigned int)tagtype );
3113 d_printf("%s\n", perms_to_string(permstring, perms));
3116 for (i = 0; i < num_dir_acls; i++) {
3119 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3120 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3123 case SMB_POSIX_ACL_USER_OBJ:
3124 d_printf("default:user::");
3126 case SMB_POSIX_ACL_USER:
3127 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3128 d_printf("default:user:%u:", uorg);
3130 case SMB_POSIX_ACL_GROUP_OBJ:
3131 d_printf("default:group::");
3133 case SMB_POSIX_ACL_GROUP:
3134 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3135 d_printf("default:group:%u:", uorg);
3137 case SMB_POSIX_ACL_MASK:
3138 d_printf("default:mask::");
3140 case SMB_POSIX_ACL_OTHER:
3141 d_printf("default:other::");
3144 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3145 src, (unsigned int)tagtype );
3150 d_printf("%s\n", perms_to_string(permstring, perms));
3157 /****************************************************************************
3159 ****************************************************************************/
3161 static int cmd_stat(void)
3163 TALLOC_CTX *ctx = talloc_tos();
3166 char *targetname = NULL;
3167 struct cli_state *targetcli;
3169 SMB_STRUCT_STAT sbuf;
3173 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3174 d_printf("stat file\n");
3177 src = talloc_asprintf(ctx,
3179 client_get_cur_dir(),
3185 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3186 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3190 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3191 d_printf("Server doesn't support UNIX CIFS calls.\n");
3195 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3196 d_printf("%s stat file %s\n",
3197 cli_errstr(targetcli), src);
3201 /* Print out the stat values. */
3202 d_printf("File: %s\n", src);
3203 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3204 (double)sbuf.st_ex_size,
3205 (unsigned int)sbuf.st_ex_blocks,
3206 filetype_to_str(sbuf.st_ex_mode));
3208 #if defined(S_ISCHR) && defined(S_ISBLK)
3209 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3210 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3211 (double)sbuf.st_ex_ino,
3212 (unsigned int)sbuf.st_ex_nlink,
3213 unix_dev_major(sbuf.st_ex_rdev),
3214 unix_dev_minor(sbuf.st_ex_rdev));
3217 d_printf("Inode: %.0f\tLinks: %u\n",
3218 (double)sbuf.st_ex_ino,
3219 (unsigned int)sbuf.st_ex_nlink);
3221 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3222 ((int)sbuf.st_ex_mode & 0777),
3223 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3224 (unsigned int)sbuf.st_ex_uid,
3225 (unsigned int)sbuf.st_ex_gid);
3227 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3228 lt = localtime(&tmp_time);
3230 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3232 fstrcpy(mode_str, "unknown");
3234 d_printf("Access: %s\n", mode_str);
3236 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3237 lt = localtime(&tmp_time);
3239 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3241 fstrcpy(mode_str, "unknown");
3243 d_printf("Modify: %s\n", mode_str);
3245 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3246 lt = localtime(&tmp_time);
3248 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3250 fstrcpy(mode_str, "unknown");
3252 d_printf("Change: %s\n", mode_str);
3258 /****************************************************************************
3260 ****************************************************************************/
3262 static int cmd_chown(void)
3264 TALLOC_CTX *ctx = talloc_tos();
3268 char *buf, *buf2, *buf3;
3269 struct cli_state *targetcli;
3270 char *targetname = NULL;
3272 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3273 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3274 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3275 d_printf("chown uid gid file\n");
3279 uid = (uid_t)atoi(buf);
3280 gid = (gid_t)atoi(buf2);
3282 src = talloc_asprintf(ctx,
3284 client_get_cur_dir(),
3289 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3290 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3294 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3295 d_printf("Server doesn't support UNIX CIFS calls.\n");
3299 if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
3300 d_printf("%s chown file %s uid=%d, gid=%d\n",
3301 cli_errstr(targetcli), src, (int)uid, (int)gid);
3308 /****************************************************************************
3310 ****************************************************************************/
3312 static int cmd_rename(void)
3314 TALLOC_CTX *ctx = talloc_tos();
3317 struct cli_state *targetcli;
3321 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3322 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3323 d_printf("rename <src> <dest>\n");
3327 src = talloc_asprintf(ctx,
3329 client_get_cur_dir(),
3335 dest = talloc_asprintf(ctx,
3337 client_get_cur_dir(),