2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003
7 Copyright (C) Gerald (Jerry) Carter 2004
8 Copyright (C) Jeremy Allison 1994-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "system/filesys.h"
26 #include "popt_common.h"
27 #include "rpc_client/cli_pipe.h"
28 #include "client/client_proto.h"
29 #include "client/clitar_proto.h"
30 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
31 #include "../lib/util/select.h"
32 #include "system/readline.h"
33 #include "../libcli/smbreadline/smbreadline.h"
34 #include "../libcli/security/security.h"
35 #include "system/select.h"
36 #include "libsmb/libsmb.h"
37 #include "libsmb/clirap.h"
39 #include "libsmb/nmblib.h"
40 #include "include/ntioctl.h"
41 #include "../libcli/smb/smbXcli_base.h"
47 extern int do_smb_browse(void); /* mDNS browsing */
49 extern bool override_logfile
;
53 static char *desthost
;
54 static bool grepable
= false;
55 static char *cmdstr
= NULL
;
56 const char *cmd_ptr
= NULL
;
58 static int io_bufsize
= 0; /* we use the default size */
59 static int io_timeout
= (CLIENT_TIMEOUT
/1000); /* Per operation timeout (in seconds). */
61 static int name_type
= 0x20;
62 static int max_protocol
= -1;
64 static int process_tok(char *tok
);
65 static int cmd_help(void);
67 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
69 /* value for unused fid field in trans2 secondary request */
70 #define FID_UNUSED (0xFFFF)
72 time_t newer_than
= 0;
73 static int archive_level
= 0;
75 static bool translation
= false;
78 static bool prompt
= true;
80 static bool recurse
= false;
81 static bool showacls
= false;
82 bool lowercase
= false;
83 static bool backup_intent
= false;
85 static struct sockaddr_storage dest_ss
;
86 static char dest_ss_str
[INET6_ADDRSTRLEN
];
88 #define SEPARATORS " \t\n\r"
90 static bool abort_mget
= true;
93 uint64_t get_total_size
= 0;
94 unsigned int get_total_time_ms
= 0;
95 static uint64_t put_total_size
= 0;
96 static unsigned int put_total_time_ms
= 0;
99 static double dir_total
;
101 /* encrypted state. */
102 static bool smb_encrypt
;
104 /* root cli_state connection */
106 struct cli_state
*cli
;
108 static char CLI_DIRSEP_CHAR
= '\\';
109 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
111 /* Authentication for client connections. */
112 struct user_auth_info
*auth_info
;
114 /* Accessor functions for directory paths. */
115 static char *fileselection
;
116 static const char *client_get_fileselection(void)
119 return fileselection
;
124 static const char *client_set_fileselection(const char *new_fs
)
126 SAFE_FREE(fileselection
);
128 fileselection
= SMB_STRDUP(new_fs
);
130 return client_get_fileselection();
134 static const char *client_get_cwd(void)
139 return CLI_DIRSEP_STR
;
142 static const char *client_set_cwd(const char *new_cwd
)
146 cwd
= SMB_STRDUP(new_cwd
);
148 return client_get_cwd();
151 static char *cur_dir
;
152 const char *client_get_cur_dir(void)
157 return CLI_DIRSEP_STR
;
160 const char *client_set_cur_dir(const char *newdir
)
164 cur_dir
= SMB_STRDUP(newdir
);
166 return client_get_cur_dir();
169 /****************************************************************************
170 Put up a yes/no prompt.
171 ****************************************************************************/
173 static bool yesno(const char *p
)
178 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
181 if (*ans
== 'y' || *ans
== 'Y')
187 /****************************************************************************
188 Write to a local file with CR/LF->LF translation if appropriate. Return the
189 number taken from the buffer. This may not equal the number written.
190 ****************************************************************************/
192 static int writefile(int f
, char *b
, int n
)
202 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
205 if (write(f
, b
, 1) != 1) {
215 /****************************************************************************
216 Read from a file with LF->CR/LF translation if appropriate. Return the
217 number read. read approx n bytes.
218 ****************************************************************************/
220 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
226 return x_fread(b
,1,n
,f
);
229 while (i
< (n
- 1)) {
230 if ((c
= x_getc(f
)) == EOF
) {
234 if (c
== '\n') { /* change all LFs to CR/LF */
249 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
251 struct push_state
*state
= (struct push_state
*)priv
;
254 if (x_feof(state
->f
)) {
258 result
= readfile(buf
, n
, state
->f
);
259 state
->nread
+= result
;
263 /****************************************************************************
265 ****************************************************************************/
267 static void send_message(const char *username
)
273 d_printf("Type your message, ending it with a Control-D\n");
276 while (i
<sizeof(buf
)-2) {
277 int c
= fgetc(stdin
);
288 status
= cli_message(cli
, desthost
, username
, buf
);
289 if (!NT_STATUS_IS_OK(status
)) {
290 d_fprintf(stderr
, "cli_message returned %s\n",
295 /****************************************************************************
296 Check the space on a device.
297 ****************************************************************************/
299 static int do_dskattr(void)
301 uint64_t total
, bsize
, avail
;
302 struct cli_state
*targetcli
= NULL
;
303 char *targetpath
= NULL
;
304 TALLOC_CTX
*ctx
= talloc_tos();
307 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
308 client_get_cur_dir(), &targetcli
,
310 if (!NT_STATUS_IS_OK(status
)) {
311 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
315 status
= cli_disk_size(targetcli
, &bsize
, &total
, &avail
);
316 if (!NT_STATUS_IS_OK(status
)) {
317 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
321 d_printf("\n\t\t%" PRIu64
322 " blocks of size %" PRIu64
323 ". %" PRIu64
" blocks available\n",
324 total
, bsize
, avail
);
329 /****************************************************************************
331 ****************************************************************************/
333 static int cmd_pwd(void)
335 d_printf("Current directory is %s",service
);
336 d_printf("%s\n",client_get_cur_dir());
340 /****************************************************************************
341 Ensure name has correct directory separators.
342 ****************************************************************************/
344 static void normalize_name(char *newdir
)
346 if (!(cli
->requested_posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
347 string_replace(newdir
,'/','\\');
351 /****************************************************************************
352 Change directory - inner section.
353 ****************************************************************************/
355 static int do_cd(const char *new_dir
)
358 char *saved_dir
= NULL
;
360 char *targetpath
= NULL
;
361 struct cli_state
*targetcli
= NULL
;
362 SMB_STRUCT_STAT sbuf
;
365 TALLOC_CTX
*ctx
= talloc_stackframe();
368 newdir
= talloc_strdup(ctx
, new_dir
);
374 normalize_name(newdir
);
376 /* Save the current directory in case the new directory is invalid */
378 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
384 if (*newdir
== CLI_DIRSEP_CHAR
) {
385 client_set_cur_dir(newdir
);
388 new_cd
= talloc_asprintf(ctx
, "%s%s",
389 client_get_cur_dir(),
396 /* Ensure cur_dir ends in a DIRSEP */
397 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
398 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
403 client_set_cur_dir(new_cd
);
405 new_cd
= clean_name(ctx
, new_cd
);
406 client_set_cur_dir(new_cd
);
408 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, new_cd
,
409 &targetcli
, &targetpath
);
410 if (!NT_STATUS_IS_OK(status
)) {
411 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
412 client_set_cur_dir(saved_dir
);
416 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
421 /* Use a trans2_qpathinfo to test directories for modern servers.
422 Except Win9x doesn't support the qpathinfo_basic() call..... */
424 if (smbXcli_conn_protocol(targetcli
->conn
) > PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
426 status
= cli_qpathinfo_basic(targetcli
, targetpath
, &sbuf
,
428 if (!NT_STATUS_IS_OK(status
)) {
429 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
430 client_set_cur_dir(saved_dir
);
434 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
435 d_printf("cd %s: not a directory\n", new_cd
);
436 client_set_cur_dir(saved_dir
);
441 targetpath
= talloc_asprintf(ctx
,
446 client_set_cur_dir(saved_dir
);
449 targetpath
= clean_name(ctx
, targetpath
);
451 client_set_cur_dir(saved_dir
);
455 status
= cli_chkpath(targetcli
, targetpath
);
456 if (!NT_STATUS_IS_OK(status
)) {
457 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
458 client_set_cur_dir(saved_dir
);
471 /****************************************************************************
473 ****************************************************************************/
475 static int cmd_cd(void)
480 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
483 d_printf("Current directory is %s\n",client_get_cur_dir());
489 /****************************************************************************
491 ****************************************************************************/
493 static int cmd_cd_oneup(void)
498 /*******************************************************************
499 Decide if a file should be operated on.
500 ********************************************************************/
502 static bool do_this_one(struct file_info
*finfo
)
508 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
512 if (*client_get_fileselection() &&
513 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
514 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
518 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
519 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
523 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& FILE_ATTRIBUTE_ARCHIVE
)) {
524 DEBUG(3,("archive %s failed\n", finfo
->name
));
531 /****************************************************************************
532 Display info about a file.
533 ****************************************************************************/
535 static NTSTATUS
display_finfo(struct cli_state
*cli_state
, struct file_info
*finfo
,
539 TALLOC_CTX
*ctx
= talloc_tos();
540 NTSTATUS status
= NT_STATUS_OK
;
542 if (!do_this_one(finfo
)) {
546 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
548 d_printf(" %-30s%7.7s %8.0f %s",
550 attrib_string(talloc_tos(), finfo
->mode
),
553 dir_total
+= finfo
->size
;
558 /* skip if this is . or .. */
559 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
561 /* create absolute filename for cli_ntcreate() FIXME */
562 afname
= talloc_asprintf(ctx
,
568 return NT_STATUS_NO_MEMORY
;
570 /* print file meta date header */
571 d_printf( "FILENAME:%s\n", finfo
->name
);
572 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo
->mode
));
573 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
574 d_printf( "MTIME:%s", time_to_asc(t
));
575 status
= cli_ntcreate(cli_state
, afname
, 0,
576 CREATE_ACCESS_READ
, 0,
577 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
578 FILE_OPEN
, 0x0, 0x0, &fnum
, NULL
);
579 if (!NT_STATUS_IS_OK(status
)) {
580 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
581 afname
, nt_errstr(status
)));
583 struct security_descriptor
*sd
= NULL
;
584 status
= cli_query_secdesc(cli_state
, fnum
,
586 if (!NT_STATUS_IS_OK(status
)) {
587 DEBUG( 0, ("display_finfo() failed to "
588 "get security descriptor: %s",
591 display_sec_desc(sd
);
600 /****************************************************************************
601 Accumulate size of a file.
602 ****************************************************************************/
604 static NTSTATUS
do_du(struct cli_state
*cli_state
, struct file_info
*finfo
,
607 if (do_this_one(finfo
)) {
608 dir_total
+= finfo
->size
;
613 static bool do_list_recurse
;
614 static bool do_list_dirs
;
615 static char *do_list_queue
= 0;
616 static long do_list_queue_size
= 0;
617 static long do_list_queue_start
= 0;
618 static long do_list_queue_end
= 0;
619 static NTSTATUS (*do_list_fn
)(struct cli_state
*cli_state
, struct file_info
*,
622 /****************************************************************************
623 Functions for do_list_queue.
624 ****************************************************************************/
627 * The do_list_queue is a NUL-separated list of strings stored in a
628 * char*. Since this is a FIFO, we keep track of the beginning and
629 * ending locations of the data in the queue. When we overflow, we
630 * double the size of the char*. When the start of the data passes
631 * the midpoint, we move everything back. This is logically more
632 * complex than a linked list, but easier from a memory management
633 * angle. In any memory error condition, do_list_queue is reset.
634 * Functions check to ensure that do_list_queue is non-NULL before
638 static void reset_do_list_queue(void)
640 SAFE_FREE(do_list_queue
);
641 do_list_queue_size
= 0;
642 do_list_queue_start
= 0;
643 do_list_queue_end
= 0;
646 static void init_do_list_queue(void)
648 reset_do_list_queue();
649 do_list_queue_size
= 1024;
650 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
651 if (do_list_queue
== 0) {
652 d_printf("malloc fail for size %d\n",
653 (int)do_list_queue_size
);
654 reset_do_list_queue();
656 memset(do_list_queue
, 0, do_list_queue_size
);
660 static void adjust_do_list_queue(void)
663 * If the starting point of the queue is more than half way through,
664 * move everything toward the beginning.
667 if (do_list_queue
== NULL
) {
668 DEBUG(4,("do_list_queue is empty\n"));
669 do_list_queue_start
= do_list_queue_end
= 0;
673 if (do_list_queue_start
== do_list_queue_end
) {
674 DEBUG(4,("do_list_queue is empty\n"));
675 do_list_queue_start
= do_list_queue_end
= 0;
676 *do_list_queue
= '\0';
677 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
678 DEBUG(4,("sliding do_list_queue backward\n"));
679 memmove(do_list_queue
,
680 do_list_queue
+ do_list_queue_start
,
681 do_list_queue_end
- do_list_queue_start
);
682 do_list_queue_end
-= do_list_queue_start
;
683 do_list_queue_start
= 0;
687 static void add_to_do_list_queue(const char *entry
)
689 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
690 while (new_end
> do_list_queue_size
) {
691 do_list_queue_size
*= 2;
692 DEBUG(4,("enlarging do_list_queue to %d\n",
693 (int)do_list_queue_size
));
694 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
695 if (! do_list_queue
) {
696 d_printf("failure enlarging do_list_queue to %d bytes\n",
697 (int)do_list_queue_size
);
698 reset_do_list_queue();
700 memset(do_list_queue
+ do_list_queue_size
/ 2,
701 0, do_list_queue_size
/ 2);
705 strlcpy_base(do_list_queue
+ do_list_queue_end
,
706 entry
, do_list_queue
, do_list_queue_size
);
707 do_list_queue_end
= new_end
;
708 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
709 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
713 static char *do_list_queue_head(void)
715 return do_list_queue
+ do_list_queue_start
;
718 static void remove_do_list_queue_head(void)
720 if (do_list_queue_end
> do_list_queue_start
) {
721 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
722 adjust_do_list_queue();
723 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
724 (int)do_list_queue_start
, (int)do_list_queue_end
));
728 static int do_list_queue_empty(void)
730 return (! (do_list_queue
&& *do_list_queue
));
733 /****************************************************************************
734 A helper for do_list.
735 ****************************************************************************/
737 static NTSTATUS
do_list_helper(const char *mntpoint
, struct file_info
*f
,
738 const char *mask
, void *state
)
740 struct cli_state
*cli_state
= (struct cli_state
*)state
;
741 TALLOC_CTX
*ctx
= talloc_tos();
743 char *dir_end
= NULL
;
744 NTSTATUS status
= NT_STATUS_OK
;
746 /* Work out the directory. */
747 dir
= talloc_strdup(ctx
, mask
);
749 return NT_STATUS_NO_MEMORY
;
751 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
755 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
756 if (do_list_dirs
&& do_this_one(f
)) {
757 status
= do_list_fn(cli_state
, f
, dir
);
758 if (!NT_STATUS_IS_OK(status
)) {
762 if (do_list_recurse
&&
764 !strequal(f
->name
,".") &&
765 !strequal(f
->name
,"..")) {
770 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
772 return NT_STATUS_UNSUCCESSFUL
;
775 mask2
= talloc_asprintf(ctx
,
781 return NT_STATUS_NO_MEMORY
;
783 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
789 mask2
= talloc_asprintf_append(mask2
,
795 return NT_STATUS_NO_MEMORY
;
797 add_to_do_list_queue(mask2
);
804 if (do_this_one(f
)) {
805 status
= do_list_fn(cli_state
, f
, dir
);
811 /****************************************************************************
812 A wrapper around cli_list that adds recursion.
813 ****************************************************************************/
815 NTSTATUS
do_list(const char *mask
,
817 NTSTATUS (*fn
)(struct cli_state
*cli_state
, struct file_info
*,
822 static int in_do_list
= 0;
823 TALLOC_CTX
*ctx
= talloc_tos();
824 struct cli_state
*targetcli
= NULL
;
825 char *targetpath
= NULL
;
826 NTSTATUS ret_status
= NT_STATUS_OK
;
827 NTSTATUS status
= NT_STATUS_OK
;
829 if (in_do_list
&& rec
) {
830 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
836 do_list_recurse
= rec
;
841 init_do_list_queue();
842 add_to_do_list_queue(mask
);
844 while (!do_list_queue_empty()) {
846 * Need to copy head so that it doesn't become
847 * invalid inside the call to cli_list. This
848 * would happen if the list were expanded
850 * Fix from E. Jay Berkenbilt (ejb@ql.org)
852 char *head
= talloc_strdup(ctx
, do_list_queue_head());
855 return NT_STATUS_NO_MEMORY
;
860 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
863 if (!NT_STATUS_IS_OK(status
)) {
864 d_printf("do_list: [%s] %s\n", head
,
866 remove_do_list_queue_head();
870 status
= cli_list(targetcli
, targetpath
, attribute
,
871 do_list_helper
, targetcli
);
872 if (!NT_STATUS_IS_OK(status
)) {
873 d_printf("%s listing %s\n",
874 nt_errstr(status
), targetpath
);
877 remove_do_list_queue_head();
878 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
879 char *next_file
= do_list_queue_head();
881 if ((strlen(next_file
) >= 2) &&
882 (next_file
[strlen(next_file
) - 1] == '*') &&
883 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
884 save_ch
= next_file
+
885 strlen(next_file
) - 2;
888 /* cwd is only used if showacls is on */
889 client_set_cwd(next_file
);
892 if (!showacls
) /* don't disturbe the showacls output */
893 d_printf("\n%s\n",next_file
);
895 *save_ch
= CLI_DIRSEP_CHAR
;
899 TALLOC_FREE(targetpath
);
903 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
904 &targetcli
, &targetpath
);
905 if (NT_STATUS_IS_OK(status
)) {
906 status
= cli_list(targetcli
, targetpath
, attribute
,
907 do_list_helper
, targetcli
);
908 if (!NT_STATUS_IS_OK(status
)) {
909 d_printf("%s listing %s\n",
910 nt_errstr(status
), targetpath
);
913 TALLOC_FREE(targetpath
);
915 d_printf("do_list: [%s] %s\n", mask
, nt_errstr(status
));
921 reset_do_list_queue();
925 /****************************************************************************
926 Get a directory listing.
927 ****************************************************************************/
929 static int cmd_dir(void)
931 TALLOC_CTX
*ctx
= talloc_tos();
932 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
939 mask
= talloc_strdup(ctx
, client_get_cur_dir());
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_asprintf_append(mask
, "*");
959 /* cwd is only used if showacls is on */
960 client_set_cwd(client_get_cur_dir());
963 status
= do_list(mask
, attribute
, display_finfo
, recurse
, true);
964 if (!NT_STATUS_IS_OK(status
)) {
970 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
975 /****************************************************************************
976 Get a directory listing.
977 ****************************************************************************/
979 static int cmd_du(void)
981 TALLOC_CTX
*ctx
= talloc_tos();
982 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
989 mask
= talloc_strdup(ctx
, client_get_cur_dir());
993 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
994 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
1000 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1001 normalize_name(buf
);
1002 if (*buf
== CLI_DIRSEP_CHAR
) {
1003 mask
= talloc_strdup(ctx
, buf
);
1005 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1008 mask
= talloc_strdup(ctx
, "*");
1011 status
= do_list(mask
, attribute
, do_du
, recurse
, true);
1012 if (!NT_STATUS_IS_OK(status
)) {
1018 d_printf("Total number of bytes: %.0f\n", dir_total
);
1023 static int cmd_echo(void)
1025 TALLOC_CTX
*ctx
= talloc_tos();
1030 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
1031 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
1032 d_printf("echo <num> <data>\n");
1036 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
1038 if (!NT_STATUS_IS_OK(status
)) {
1039 d_printf("echo failed: %s\n", nt_errstr(status
));
1046 /****************************************************************************
1047 Get a file from rname to lname
1048 ****************************************************************************/
1050 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
1052 int *pfd
= (int *)priv
;
1053 if (writefile(*pfd
, buf
, n
) == -1) {
1054 return map_nt_error_from_unix(errno
);
1056 return NT_STATUS_OK
;
1059 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
1061 TALLOC_CTX
*ctx
= talloc_tos();
1064 bool newhandle
= false;
1065 struct timespec tp_start
;
1071 struct cli_state
*targetcli
= NULL
;
1072 char *targetname
= NULL
;
1076 lname
= talloc_strdup(ctx
, lname_in
);
1082 if (!strlower_m(lname
)) {
1083 d_printf("strlower_m %s failed\n", lname
);
1088 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
,
1090 if (!NT_STATUS_IS_OK(status
)) {
1091 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1095 clock_gettime_mono(&tp_start
);
1097 status
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
, &fnum
);
1098 if (!NT_STATUS_IS_OK(status
)) {
1099 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1104 if(!strcmp(lname
,"-")) {
1105 handle
= fileno(stdout
);
1108 handle
= open(lname
, O_WRONLY
|O_CREAT
, 0644);
1110 start
= lseek(handle
, 0, SEEK_END
);
1112 d_printf("Error seeking local file\n");
1117 handle
= open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1122 d_printf("Error opening local file %s\n",lname
);
1127 status
= cli_qfileinfo_basic(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1129 if (!NT_STATUS_IS_OK(status
)) {
1130 status
= cli_getattrE(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1132 if(!NT_STATUS_IS_OK(status
)) {
1133 d_printf("getattrib: %s\n", nt_errstr(status
));
1138 DEBUG(1,("getting file %s of size %.0f as %s ",
1139 rname
, (double)size
, lname
));
1141 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1142 writefile_sink
, (void *)&handle
, &nread
);
1143 if (!NT_STATUS_IS_OK(status
)) {
1144 d_fprintf(stderr
, "parallel_read returned %s\n",
1146 cli_close(targetcli
, fnum
);
1150 status
= cli_close(targetcli
, fnum
);
1151 if (!NT_STATUS_IS_OK(status
)) {
1152 d_printf("Error %s closing remote file\n", nt_errstr(status
));
1160 if (archive_level
>= 2 && (attr
& FILE_ATTRIBUTE_ARCHIVE
)) {
1161 cli_setatr(cli
, rname
, attr
& ~(uint16
)FILE_ATTRIBUTE_ARCHIVE
, 0);
1165 struct timespec tp_end
;
1168 clock_gettime_mono(&tp_end
);
1169 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1170 get_total_time_ms
+= this_time
;
1171 get_total_size
+= nread
;
1173 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1174 nread
/ (1.024*this_time
+ 1.0e-4),
1175 get_total_size
/ (1.024*get_total_time_ms
)));
1178 TALLOC_FREE(targetname
);
1182 /****************************************************************************
1184 ****************************************************************************/
1186 static int cmd_get(void)
1188 TALLOC_CTX
*ctx
= talloc_tos();
1193 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1198 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1199 d_printf("get <filename> [localname]\n");
1202 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1206 rname
= clean_name(ctx
, rname
);
1211 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1216 return do_get(rname
, lname
, false);
1219 /****************************************************************************
1220 Do an mget operation on one file.
1221 ****************************************************************************/
1223 static NTSTATUS
do_mget(struct cli_state
*cli_state
, struct file_info
*finfo
,
1226 TALLOC_CTX
*ctx
= talloc_tos();
1227 NTSTATUS status
= NT_STATUS_OK
;
1230 char *saved_curdir
= NULL
;
1231 char *mget_mask
= NULL
;
1232 char *new_cd
= NULL
;
1235 return NT_STATUS_OK
;
1238 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1239 return NT_STATUS_OK
;
1242 d_printf("mget aborted\n");
1243 return NT_STATUS_UNSUCCESSFUL
;
1246 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1247 if (asprintf(&quest
,
1248 "Get directory %s? ",finfo
->name
) < 0) {
1249 return NT_STATUS_NO_MEMORY
;
1252 if (asprintf(&quest
,
1253 "Get file %s? ",finfo
->name
) < 0) {
1254 return NT_STATUS_NO_MEMORY
;
1258 if (prompt
&& !yesno(quest
)) {
1260 return NT_STATUS_OK
;
1264 if (!(finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
)) {
1265 rname
= talloc_asprintf(ctx
,
1267 client_get_cur_dir(),
1270 return NT_STATUS_NO_MEMORY
;
1272 do_get(rname
, finfo
->name
, false);
1274 return NT_STATUS_OK
;
1277 /* handle directories */
1278 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1279 if (!saved_curdir
) {
1280 return NT_STATUS_NO_MEMORY
;
1283 new_cd
= talloc_asprintf(ctx
,
1285 client_get_cur_dir(),
1289 return NT_STATUS_NO_MEMORY
;
1291 client_set_cur_dir(new_cd
);
1293 string_replace(finfo
->name
,'\\','/');
1295 if (!strlower_m(finfo
->name
)) {
1296 return NT_STATUS_INVALID_PARAMETER
;
1300 if (!directory_exist(finfo
->name
) &&
1301 mkdir(finfo
->name
,0777) != 0) {
1302 d_printf("failed to create directory %s\n",finfo
->name
);
1303 client_set_cur_dir(saved_curdir
);
1304 return map_nt_error_from_unix(errno
);
1307 if (chdir(finfo
->name
) != 0) {
1308 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1309 client_set_cur_dir(saved_curdir
);
1310 return map_nt_error_from_unix(errno
);
1313 mget_mask
= talloc_asprintf(ctx
,
1315 client_get_cur_dir());
1318 return NT_STATUS_NO_MEMORY
;
1321 status
= do_list(mget_mask
,
1322 (FILE_ATTRIBUTE_SYSTEM
1323 | FILE_ATTRIBUTE_HIDDEN
1324 | FILE_ATTRIBUTE_DIRECTORY
),
1325 do_mget
, false, true);
1326 if (!NT_STATUS_IS_OK(status
)
1327 && !NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
1329 * Ignore access denied errors to ensure all permitted files are
1335 if (chdir("..") == -1) {
1336 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1338 return map_nt_error_from_unix(errno
);
1340 client_set_cur_dir(saved_curdir
);
1341 TALLOC_FREE(mget_mask
);
1342 TALLOC_FREE(saved_curdir
);
1343 TALLOC_FREE(new_cd
);
1344 return NT_STATUS_OK
;
1347 /****************************************************************************
1348 View the file using the pager.
1349 ****************************************************************************/
1351 static int cmd_more(void)
1353 TALLOC_CTX
*ctx
= talloc_tos();
1357 char *pager_cmd
= NULL
;
1363 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1368 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1372 mask
= umask(S_IRWXO
| S_IRWXG
);
1373 fd
= mkstemp(lname
);
1376 d_printf("failed to create temporary file for more\n");
1381 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1382 d_printf("more <filename>\n");
1386 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1390 rname
= clean_name(ctx
,rname
);
1395 rc
= do_get(rname
, lname
, false);
1397 pager
=getenv("PAGER");
1399 pager_cmd
= talloc_asprintf(ctx
,
1401 (pager
? pager
:PAGER
),
1406 if (system(pager_cmd
) == -1) {
1407 d_printf("system command '%s' returned -1\n",
1415 /****************************************************************************
1417 ****************************************************************************/
1419 static int cmd_mget(void)
1421 TALLOC_CTX
*ctx
= talloc_tos();
1422 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
1423 char *mget_mask
= NULL
;
1425 NTSTATUS status
= NT_STATUS_OK
;
1428 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
1433 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1435 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1439 if (*buf
== CLI_DIRSEP_CHAR
) {
1440 mget_mask
= talloc_strdup(ctx
, buf
);
1442 mget_mask
= talloc_asprintf_append(mget_mask
,
1448 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1449 if (!NT_STATUS_IS_OK(status
)) {
1454 if (mget_mask
== NULL
) {
1455 d_printf("nothing to mget\n");
1460 mget_mask
= talloc_asprintf(ctx
,
1462 client_get_cur_dir());
1466 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1467 if (!NT_STATUS_IS_OK(status
)) {
1475 /****************************************************************************
1476 Make a directory of name "name".
1477 ****************************************************************************/
1479 static bool do_mkdir(const char *name
)
1481 TALLOC_CTX
*ctx
= talloc_tos();
1482 struct cli_state
*targetcli
;
1483 char *targetname
= NULL
;
1486 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
1488 if (!NT_STATUS_IS_OK(status
)) {
1489 d_printf("mkdir %s: %s\n", name
, nt_errstr(status
));
1493 status
= cli_mkdir(targetcli
, targetname
);
1494 if (!NT_STATUS_IS_OK(status
)) {
1495 d_printf("%s making remote directory %s\n",
1496 nt_errstr(status
),name
);
1503 /****************************************************************************
1504 Show 8.3 name of a file.
1505 ****************************************************************************/
1507 static bool do_altname(const char *name
)
1512 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1513 if (!NT_STATUS_IS_OK(status
)) {
1514 d_printf("%s getting alt name for %s\n",
1515 nt_errstr(status
),name
);
1518 d_printf("%s\n", altname
);
1523 /****************************************************************************
1525 ****************************************************************************/
1527 static int cmd_quit(void)
1535 /****************************************************************************
1537 ****************************************************************************/
1539 static int cmd_mkdir(void)
1541 TALLOC_CTX
*ctx
= talloc_tos();
1546 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1551 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1553 d_printf("mkdir <dirname>\n");
1557 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1565 struct cli_state
*targetcli
;
1566 char *targetname
= NULL
;
1570 ddir2
= talloc_strdup(ctx
, "");
1575 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
1576 &targetcli
, &targetname
);
1577 if (!NT_STATUS_IS_OK(status
)) {
1581 ddir
= talloc_strdup(ctx
, targetname
);
1585 trim_char(ddir
,'.','\0');
1586 p
= strtok_r(ddir
, "/\\", &saveptr
);
1588 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1592 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, ddir2
))) {
1595 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1599 p
= strtok_r(NULL
, "/\\", &saveptr
);
1608 /****************************************************************************
1610 ****************************************************************************/
1612 static int cmd_altname(void)
1614 TALLOC_CTX
*ctx
= talloc_tos();
1618 name
= talloc_strdup(ctx
, client_get_cur_dir());
1623 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1624 d_printf("altname <file>\n");
1627 name
= talloc_asprintf_append(name
, "%s", buf
);
1635 static char *attr_str(TALLOC_CTX
*mem_ctx
, uint16_t mode
)
1637 char *attrs
= talloc_zero_array(mem_ctx
, char, 17);
1640 if (!(mode
& FILE_ATTRIBUTE_NORMAL
)) {
1641 if (mode
& FILE_ATTRIBUTE_ENCRYPTED
) {
1644 if (mode
& FILE_ATTRIBUTE_NONINDEXED
) {
1647 if (mode
& FILE_ATTRIBUTE_OFFLINE
) {
1650 if (mode
& FILE_ATTRIBUTE_COMPRESSED
) {
1653 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1656 if (mode
& FILE_ATTRIBUTE_SPARSE
) {
1659 if (mode
& FILE_ATTRIBUTE_TEMPORARY
) {
1662 if (mode
& FILE_ATTRIBUTE_NORMAL
) {
1665 if (mode
& FILE_ATTRIBUTE_READONLY
) {
1668 if (mode
& FILE_ATTRIBUTE_HIDDEN
) {
1671 if (mode
& FILE_ATTRIBUTE_SYSTEM
) {
1674 if (mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1677 if (mode
& FILE_ATTRIBUTE_ARCHIVE
) {
1684 /****************************************************************************
1685 Show all info we can get
1686 ****************************************************************************/
1688 static int do_allinfo(const char *name
)
1691 struct timespec b_time
, a_time
, m_time
, c_time
;
1696 unsigned int num_streams
;
1697 struct stream_struct
*streams
;
1703 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1704 if (!NT_STATUS_IS_OK(status
)) {
1705 d_printf("%s getting alt name for %s\n", nt_errstr(status
),
1708 * Ignore not supported or not implemented, it does not
1709 * hurt if we can't list alternate names.
1711 if (NT_STATUS_EQUAL(status
, NT_STATUS_NOT_SUPPORTED
) ||
1712 NT_STATUS_EQUAL(status
, NT_STATUS_NOT_IMPLEMENTED
)) {
1718 d_printf("altname: %s\n", altname
);
1720 status
= cli_qpathinfo3(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1721 &size
, &mode
, NULL
);
1722 if (!NT_STATUS_IS_OK(status
)) {
1723 d_printf("%s getting pathinfo for %s\n", nt_errstr(status
),
1728 tmp
= unix_timespec_to_nt_time(b_time
);
1729 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1731 tmp
= unix_timespec_to_nt_time(a_time
);
1732 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1734 tmp
= unix_timespec_to_nt_time(m_time
);
1735 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1737 tmp
= unix_timespec_to_nt_time(c_time
);
1738 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1740 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode
), mode
);
1742 status
= cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1744 if (!NT_STATUS_IS_OK(status
)) {
1745 d_printf("%s getting streams for %s\n", nt_errstr(status
),
1750 for (i
=0; i
<num_streams
; i
++) {
1751 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1752 (unsigned long long)streams
[i
].size
);
1755 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1756 char *subst
, *print
;
1759 status
= cli_readlink(cli
, name
, talloc_tos(), &subst
, &print
,
1761 if (!NT_STATUS_IS_OK(status
)) {
1762 d_fprintf(stderr
, "cli_readlink returned %s\n",
1765 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1766 subst
, print
, flags
);
1772 status
= cli_ntcreate(cli
, name
, 0,
1773 SEC_FILE_READ_DATA
| SEC_FILE_READ_ATTRIBUTE
|
1774 SEC_STD_SYNCHRONIZE
, 0,
1775 FILE_SHARE_READ
|FILE_SHARE_WRITE
1777 FILE_OPEN
, 0x0, 0x0, &fnum
, NULL
);
1778 if (!NT_STATUS_IS_OK(status
)) {
1780 * Ignore failure, it does not hurt if we can't list
1785 status
= cli_shadow_copy_data(talloc_tos(), cli
, fnum
,
1786 true, &snapshots
, &num_snapshots
);
1787 if (!NT_STATUS_IS_OK(status
)) {
1788 cli_close(cli
, fnum
);
1792 for (i
=0; i
<num_snapshots
; i
++) {
1795 d_printf("%s\n", snapshots
[i
]);
1796 snap_name
= talloc_asprintf(talloc_tos(), "%s%s",
1797 snapshots
[i
], name
);
1798 status
= cli_qpathinfo3(cli
, snap_name
, &b_time
, &a_time
,
1799 &m_time
, &c_time
, &size
,
1801 if (!NT_STATUS_IS_OK(status
)) {
1802 d_fprintf(stderr
, "pathinfo(%s) failed: %s\n",
1803 snap_name
, nt_errstr(status
));
1804 TALLOC_FREE(snap_name
);
1807 tmp
= unix_timespec_to_nt_time(b_time
);
1808 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1809 tmp
= unix_timespec_to_nt_time(a_time
);
1810 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1811 tmp
=unix_timespec_to_nt_time(m_time
);
1812 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1813 tmp
= unix_timespec_to_nt_time(c_time
);
1814 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1815 d_printf("size: %d\n", (int)size
);
1818 TALLOC_FREE(snapshots
);
1823 /****************************************************************************
1824 Show all info we can get
1825 ****************************************************************************/
1827 static int cmd_allinfo(void)
1829 TALLOC_CTX
*ctx
= talloc_tos();
1833 name
= talloc_strdup(ctx
, client_get_cur_dir());
1838 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1839 d_printf("allinfo <file>\n");
1842 name
= talloc_asprintf_append(name
, "%s", buf
);
1852 /****************************************************************************
1854 ****************************************************************************/
1856 static int do_put(const char *rname
, const char *lname
, bool reput
)
1858 TALLOC_CTX
*ctx
= talloc_tos();
1863 struct timespec tp_start
;
1864 struct cli_state
*targetcli
;
1865 char *targetname
= NULL
;
1866 struct push_state state
;
1869 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
,
1870 &targetcli
, &targetname
);
1871 if (!NT_STATUS_IS_OK(status
)) {
1872 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1876 clock_gettime_mono(&tp_start
);
1879 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
);
1880 if (NT_STATUS_IS_OK(status
)) {
1881 if (!NT_STATUS_IS_OK(status
= cli_qfileinfo_basic(
1882 targetcli
, fnum
, NULL
,
1884 NULL
, NULL
, NULL
)) &&
1885 !NT_STATUS_IS_OK(status
= cli_getattrE(
1886 targetcli
, fnum
, NULL
,
1889 d_printf("getattrib: %s\n", nt_errstr(status
));
1894 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum
);
1897 if (!NT_STATUS_IS_OK(status
)) {
1898 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1903 /* allow files to be piped into smbclient
1906 Note that in this case this function will exit(0) rather
1908 if (!strcmp(lname
, "-")) {
1910 /* size of file is not known */
1912 f
= x_fopen(lname
,O_RDONLY
, 0);
1914 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1915 d_printf("Error seeking local file\n");
1923 d_printf("Error opening local file %s\n",lname
);
1927 DEBUG(1,("putting file %s as %s ",lname
,
1930 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1935 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1937 if (!NT_STATUS_IS_OK(status
)) {
1938 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1942 status
= cli_close(targetcli
, fnum
);
1943 if (!NT_STATUS_IS_OK(status
)) {
1944 d_printf("%s closing remote file %s\n", nt_errstr(status
),
1957 struct timespec tp_end
;
1960 clock_gettime_mono(&tp_end
);
1961 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1962 put_total_time_ms
+= this_time
;
1963 put_total_size
+= state
.nread
;
1965 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1966 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1967 put_total_size
/ (1.024*put_total_time_ms
)));
1978 /****************************************************************************
1980 ****************************************************************************/
1982 static int cmd_put(void)
1984 TALLOC_CTX
*ctx
= talloc_tos();
1989 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1994 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1995 d_printf("put <filename>\n");
1999 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2000 rname
= talloc_asprintf_append(rname
, "%s", buf
);
2002 rname
= talloc_asprintf_append(rname
, "%s", lname
);
2008 rname
= clean_name(ctx
, rname
);
2015 /* allow '-' to represent stdin
2016 jdblair, 24.jun.98 */
2017 if (!file_exist_stat(lname
, &st
, false) &&
2018 (strcmp(lname
,"-"))) {
2019 d_printf("%s does not exist\n",lname
);
2024 return do_put(rname
, lname
, false);
2027 /*************************************
2028 File list structure.
2029 *************************************/
2031 static struct file_list
{
2032 struct file_list
*prev
, *next
;
2037 /****************************************************************************
2038 Free a file_list structure.
2039 ****************************************************************************/
2041 static void free_file_list (struct file_list
*l_head
)
2043 struct file_list
*list
, *next
;
2045 for (list
= l_head
; list
; list
= next
) {
2047 DLIST_REMOVE(l_head
, list
);
2048 SAFE_FREE(list
->file_path
);
2053 /****************************************************************************
2054 Seek in a directory/file list until you get something that doesn't start with
2056 ****************************************************************************/
2058 static bool seek_list(struct file_list
*list
, char *name
)
2061 trim_string(list
->file_path
,"./","\n");
2062 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
2071 /****************************************************************************
2072 Set the file selection mask.
2073 ****************************************************************************/
2075 static int cmd_select(void)
2077 TALLOC_CTX
*ctx
= talloc_tos();
2078 char *new_fs
= NULL
;
2079 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
2082 client_set_fileselection(new_fs
);
2084 client_set_fileselection("");
2089 /****************************************************************************
2090 Recursive file matching function act as find
2091 match must be always set to true when calling this function
2092 ****************************************************************************/
2094 static int file_find(struct file_list
**list
, const char *directory
,
2095 const char *expression
, bool match
)
2098 struct file_list
*entry
;
2099 struct stat statbuf
;
2105 dir
= opendir(directory
);
2109 while ((dname
= readdirname(dir
))) {
2110 if (!strcmp("..", dname
))
2112 if (!strcmp(".", dname
))
2115 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
2120 if (!match
|| !gen_fnmatch(expression
, dname
)) {
2122 ret
= stat(path
, &statbuf
);
2124 if (S_ISDIR(statbuf
.st_mode
)) {
2126 ret
= file_find(list
, path
, expression
, false);
2129 d_printf("file_find: cannot stat file %s\n", path
);
2138 entry
= SMB_MALLOC_P(struct file_list
);
2140 d_printf("Out of memory in file_find\n");
2144 entry
->file_path
= path
;
2145 entry
->isdir
= isdir
;
2146 DLIST_ADD(*list
, entry
);
2156 /****************************************************************************
2158 ****************************************************************************/
2160 static int cmd_mput(void)
2162 TALLOC_CTX
*ctx
= talloc_tos();
2165 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
2167 struct file_list
*temp_list
;
2168 char *quest
, *lname
, *rname
;
2172 ret
= file_find(&file_list
, ".", p
, true);
2174 free_file_list(file_list
);
2182 for (temp_list
= file_list
; temp_list
;
2183 temp_list
= temp_list
->next
) {
2186 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
2189 trim_string(lname
, "./", "/");
2191 /* check if it's a directory */
2192 if (temp_list
->isdir
) {
2193 /* if (!recurse) continue; */
2196 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
2199 if (prompt
&& !yesno(quest
)) { /* No */
2200 /* Skip the directory */
2201 lname
[strlen(lname
)-1] = '/';
2202 if (!seek_list(temp_list
, lname
))
2206 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2209 normalize_name(rname
);
2210 if (!NT_STATUS_IS_OK(cli_chkpath(cli
, rname
)) &&
2212 DEBUG (0, ("Unable to make dir, skipping..."));
2213 /* Skip the directory */
2214 lname
[strlen(lname
)-1] = '/';
2215 if (!seek_list(temp_list
, lname
)) {
2223 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
2226 if (prompt
&& !yesno(quest
)) {
2233 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2238 normalize_name(rname
);
2240 do_put(rname
, lname
, false);
2242 free_file_list(file_list
);
2251 /****************************************************************************
2253 ****************************************************************************/
2255 static int do_cancel(int job
)
2257 if (cli_printjob_del(cli
, job
)) {
2258 d_printf("Job %d cancelled\n",job
);
2261 NTSTATUS status
= cli_nt_error(cli
);
2262 d_printf("Error cancelling job %d : %s\n",
2263 job
, nt_errstr(status
));
2268 /****************************************************************************
2270 ****************************************************************************/
2272 static int cmd_cancel(void)
2274 TALLOC_CTX
*ctx
= talloc_tos();
2278 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2279 d_printf("cancel <jobid> ...\n");
2285 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2290 /****************************************************************************
2292 ****************************************************************************/
2294 static int cmd_print(void)
2296 TALLOC_CTX
*ctx
= talloc_tos();
2301 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2302 d_printf("print <filename>\n");
2306 rname
= talloc_strdup(ctx
, lname
);
2310 p
= strrchr_m(rname
,'/');
2312 rname
= talloc_asprintf(ctx
,
2317 if (strequal(lname
,"-")) {
2318 rname
= talloc_asprintf(ctx
,
2326 return do_put(rname
, lname
, false);
2329 /****************************************************************************
2330 Show a print queue entry.
2331 ****************************************************************************/
2333 static void queue_fn(struct print_job_info
*p
)
2335 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2338 /****************************************************************************
2340 ****************************************************************************/
2342 static int cmd_queue(void)
2344 cli_print_queue(cli
, queue_fn
);
2348 /****************************************************************************
2350 ****************************************************************************/
2352 static NTSTATUS
do_del(struct cli_state
*cli_state
, struct file_info
*finfo
,
2355 TALLOC_CTX
*ctx
= talloc_tos();
2359 mask
= talloc_asprintf(ctx
,
2365 return NT_STATUS_NO_MEMORY
;
2368 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
2370 return NT_STATUS_OK
;
2373 status
= cli_unlink(cli_state
, mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2374 if (!NT_STATUS_IS_OK(status
)) {
2375 d_printf("%s deleting remote file %s\n",
2376 nt_errstr(status
), mask
);
2382 /****************************************************************************
2384 ****************************************************************************/
2386 static int cmd_del(void)
2388 TALLOC_CTX
*ctx
= talloc_tos();
2391 NTSTATUS status
= NT_STATUS_OK
;
2392 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
2395 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
2398 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2402 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2403 d_printf("del <filename>\n");
2406 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2411 status
= do_list(mask
,attribute
,do_del
,false,false);
2412 if (!NT_STATUS_IS_OK(status
)) {
2418 /****************************************************************************
2419 Wildcard delete some files.
2420 ****************************************************************************/
2422 static int cmd_wdel(void)
2424 TALLOC_CTX
*ctx
= talloc_tos();
2428 struct cli_state
*targetcli
;
2429 char *targetname
= NULL
;
2432 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2433 d_printf("wdel 0x<attrib> <wcard>\n");
2437 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2439 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2440 d_printf("wdel 0x<attrib> <wcard>\n");
2444 mask
= talloc_asprintf(ctx
, "%s%s",
2445 client_get_cur_dir(),
2451 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2453 if (!NT_STATUS_IS_OK(status
)) {
2454 d_printf("cmd_wdel %s: %s\n", mask
, nt_errstr(status
));
2458 status
= cli_unlink(targetcli
, targetname
, attribute
);
2459 if (!NT_STATUS_IS_OK(status
)) {
2460 d_printf("%s deleting remote files %s\n", nt_errstr(status
),
2466 /****************************************************************************
2467 ****************************************************************************/
2469 static int cmd_open(void)
2471 TALLOC_CTX
*ctx
= talloc_tos();
2474 char *targetname
= NULL
;
2475 struct cli_state
*targetcli
;
2476 uint16_t fnum
= (uint16_t)-1;
2479 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2480 d_printf("open <filename>\n");
2483 mask
= talloc_asprintf(ctx
,
2485 client_get_cur_dir(),
2491 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2493 if (!NT_STATUS_IS_OK(status
)) {
2494 d_printf("open %s: %s\n", mask
, nt_errstr(status
));
2498 status
= cli_ntcreate(targetcli
, targetname
, 0,
2499 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
2500 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2501 0x0, 0x0, &fnum
, NULL
);
2502 if (!NT_STATUS_IS_OK(status
)) {
2503 status
= cli_ntcreate(targetcli
, targetname
, 0,
2505 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2506 0x0, 0x0, &fnum
, NULL
);
2507 if (NT_STATUS_IS_OK(status
)) {
2508 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2510 d_printf("Failed to open file %s. %s\n",
2511 targetname
, nt_errstr(status
));
2514 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2519 static int cmd_posix_encrypt(void)
2521 TALLOC_CTX
*ctx
= talloc_tos();
2522 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2524 if (cli
->use_kerberos
) {
2525 status
= cli_gss_smb_encryption_start(cli
);
2527 char *domain
= NULL
;
2529 char *password
= NULL
;
2531 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2532 d_printf("posix_encrypt domain user password\n");
2536 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2537 d_printf("posix_encrypt domain user password\n");
2541 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2542 d_printf("posix_encrypt domain user password\n");
2546 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2552 if (!NT_STATUS_IS_OK(status
)) {
2553 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2555 d_printf("encryption on\n");
2562 /****************************************************************************
2563 ****************************************************************************/
2565 static int cmd_posix_open(void)
2567 TALLOC_CTX
*ctx
= talloc_tos();
2570 char *targetname
= NULL
;
2571 struct cli_state
*targetcli
;
2576 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2577 d_printf("posix_open <filename> 0<mode>\n");
2580 mask
= talloc_asprintf(ctx
,
2582 client_get_cur_dir(),
2588 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2589 d_printf("posix_open <filename> 0<mode>\n");
2592 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2594 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2596 if (!NT_STATUS_IS_OK(status
)) {
2597 d_printf("posix_open %s: %s\n", mask
, nt_errstr(status
));
2601 status
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
,
2603 if (!NT_STATUS_IS_OK(status
)) {
2604 status
= cli_posix_open(targetcli
, targetname
,
2605 O_CREAT
|O_RDONLY
, mode
, &fnum
);
2606 if (!NT_STATUS_IS_OK(status
)) {
2607 d_printf("Failed to open file %s. %s\n", targetname
,
2610 d_printf("posix_open file %s: for readonly fnum %d\n",
2614 d_printf("posix_open file %s: for read/write fnum %d\n",
2621 static int cmd_posix_mkdir(void)
2623 TALLOC_CTX
*ctx
= talloc_tos();
2626 char *targetname
= NULL
;
2627 struct cli_state
*targetcli
;
2631 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2632 d_printf("posix_mkdir <filename> 0<mode>\n");
2635 mask
= talloc_asprintf(ctx
,
2637 client_get_cur_dir(),
2643 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2644 d_printf("posix_mkdir <filename> 0<mode>\n");
2647 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2649 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2651 if (!NT_STATUS_IS_OK(status
)) {
2652 d_printf("posix_mkdir %s: %s\n", mask
, nt_errstr(status
));
2656 status
= cli_posix_mkdir(targetcli
, targetname
, mode
);
2657 if (!NT_STATUS_IS_OK(status
)) {
2658 d_printf("Failed to open file %s. %s\n",
2659 targetname
, nt_errstr(status
));
2661 d_printf("posix_mkdir created directory %s\n", targetname
);
2666 static int cmd_posix_unlink(void)
2668 TALLOC_CTX
*ctx
= talloc_tos();
2671 char *targetname
= NULL
;
2672 struct cli_state
*targetcli
;
2675 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2676 d_printf("posix_unlink <filename>\n");
2679 mask
= talloc_asprintf(ctx
,
2681 client_get_cur_dir(),
2687 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2689 if (!NT_STATUS_IS_OK(status
)) {
2690 d_printf("posix_unlink %s: %s\n", mask
, nt_errstr(status
));
2694 status
= cli_posix_unlink(targetcli
, targetname
);
2695 if (!NT_STATUS_IS_OK(status
)) {
2696 d_printf("Failed to unlink file %s. %s\n",
2697 targetname
, nt_errstr(status
));
2699 d_printf("posix_unlink deleted file %s\n", targetname
);
2705 static int cmd_posix_rmdir(void)
2707 TALLOC_CTX
*ctx
= talloc_tos();
2710 char *targetname
= NULL
;
2711 struct cli_state
*targetcli
;
2714 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2715 d_printf("posix_rmdir <filename>\n");
2718 mask
= talloc_asprintf(ctx
,
2720 client_get_cur_dir(),
2726 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2728 if (!NT_STATUS_IS_OK(status
)) {
2729 d_printf("posix_rmdir %s: %s\n", mask
, nt_errstr(status
));
2733 status
= cli_posix_rmdir(targetcli
, targetname
);
2734 if (!NT_STATUS_IS_OK(status
)) {
2735 d_printf("Failed to unlink directory %s. %s\n",
2736 targetname
, nt_errstr(status
));
2738 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2744 static int cmd_close(void)
2746 TALLOC_CTX
*ctx
= talloc_tos();
2751 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2752 d_printf("close <fnum>\n");
2757 /* We really should use the targetcli here.... */
2758 status
= cli_close(cli
, fnum
);
2759 if (!NT_STATUS_IS_OK(status
)) {
2760 d_printf("close %d: %s\n", fnum
, nt_errstr(status
));
2766 static int cmd_posix(void)
2768 TALLOC_CTX
*ctx
= talloc_tos();
2769 uint16 major
, minor
;
2770 uint32 caplow
, caphigh
;
2774 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2775 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2779 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
2781 if (!NT_STATUS_IS_OK(status
)) {
2782 d_printf("Can't get UNIX CIFS extensions version from "
2783 "server: %s\n", nt_errstr(status
));
2787 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2789 caps
= talloc_strdup(ctx
, "");
2793 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2794 caps
= talloc_asprintf_append(caps
, "locks ");
2799 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2800 caps
= talloc_asprintf_append(caps
, "acls ");
2805 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2806 caps
= talloc_asprintf_append(caps
, "eas ");
2811 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2812 caps
= talloc_asprintf_append(caps
, "pathnames ");
2817 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2818 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2823 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2824 caps
= talloc_asprintf_append(caps
, "large_read ");
2829 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2830 caps
= talloc_asprintf_append(caps
, "large_write ");
2835 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2836 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2841 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2842 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2848 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2849 caps
[strlen(caps
)-1] = '\0';
2852 d_printf("Server supports CIFS capabilities %s\n", caps
);
2854 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
2856 if (!NT_STATUS_IS_OK(status
)) {
2857 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2862 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2863 CLI_DIRSEP_CHAR
= '/';
2864 *CLI_DIRSEP_STR
= '/';
2865 client_set_cur_dir(CLI_DIRSEP_STR
);
2871 static int cmd_lock(void)
2873 TALLOC_CTX
*ctx
= talloc_tos();
2875 uint64_t start
, len
;
2876 enum brl_type lock_type
;
2880 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2881 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2886 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2887 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2891 if (*buf
== 'r' || *buf
== 'R') {
2892 lock_type
= READ_LOCK
;
2893 } else if (*buf
== 'w' || *buf
== 'W') {
2894 lock_type
= WRITE_LOCK
;
2896 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2900 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2901 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2905 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2907 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2908 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2912 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2914 status
= cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
);
2915 if (!NT_STATUS_IS_OK(status
)) {
2916 d_printf("lock failed %d: %s\n", fnum
, nt_errstr(status
));
2922 static int cmd_unlock(void)
2924 TALLOC_CTX
*ctx
= talloc_tos();
2926 uint64_t start
, len
;
2930 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2931 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2936 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2937 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2941 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2943 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2944 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2948 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2950 status
= cli_posix_unlock(cli
, fnum
, start
, len
);
2951 if (!NT_STATUS_IS_OK(status
)) {
2952 d_printf("unlock failed %d: %s\n", fnum
, nt_errstr(status
));
2959 /****************************************************************************
2961 ****************************************************************************/
2963 static int cmd_rmdir(void)
2965 TALLOC_CTX
*ctx
= talloc_tos();
2968 char *targetname
= NULL
;
2969 struct cli_state
*targetcli
;
2972 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2973 d_printf("rmdir <dirname>\n");
2976 mask
= talloc_asprintf(ctx
,
2978 client_get_cur_dir(),
2984 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2986 if (!NT_STATUS_IS_OK(status
)) {
2987 d_printf("rmdir %s: %s\n", mask
, nt_errstr(status
));
2991 status
= cli_rmdir(targetcli
, targetname
);
2992 if (!NT_STATUS_IS_OK(status
)) {
2993 d_printf("%s removing remote directory file %s\n",
2994 nt_errstr(status
), mask
);
3000 /****************************************************************************
3002 ****************************************************************************/
3004 static int cmd_link(void)
3006 TALLOC_CTX
*ctx
= talloc_tos();
3007 char *oldname
= NULL
;
3008 char *newname
= NULL
;
3011 char *targetname
= NULL
;
3012 struct cli_state
*targetcli
;
3015 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3016 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3017 d_printf("link <oldname> <newname>\n");
3020 oldname
= talloc_asprintf(ctx
,
3022 client_get_cur_dir(),
3027 newname
= talloc_asprintf(ctx
,
3029 client_get_cur_dir(),
3035 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
,
3037 if (!NT_STATUS_IS_OK(status
)) {
3038 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3042 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3043 d_printf("Server doesn't support UNIX CIFS calls.\n");
3047 status
= cli_posix_hardlink(targetcli
, targetname
, newname
);
3048 if (!NT_STATUS_IS_OK(status
)) {
3049 d_printf("%s linking files (%s -> %s)\n",
3050 nt_errstr(status
), newname
, oldname
);
3056 /****************************************************************************
3058 ****************************************************************************/
3060 static int cmd_readlink(void)
3062 TALLOC_CTX
*ctx
= talloc_tos();
3065 char *targetname
= NULL
;
3066 char linkname
[PATH_MAX
+1];
3067 struct cli_state
*targetcli
;
3070 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3071 d_printf("readlink <name>\n");
3074 name
= talloc_asprintf(ctx
,
3076 client_get_cur_dir(),
3082 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
3084 if (!NT_STATUS_IS_OK(status
)) {
3085 d_printf("readlink %s: %s\n", name
, nt_errstr(status
));
3089 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3090 d_printf("Server doesn't support UNIX CIFS calls.\n");
3094 status
= cli_posix_readlink(targetcli
, name
, linkname
, PATH_MAX
+1);
3095 if (!NT_STATUS_IS_OK(status
)) {
3096 d_printf("%s readlink on file %s\n",
3097 nt_errstr(status
), name
);
3101 d_printf("%s -> %s\n", name
, linkname
);
3107 /****************************************************************************
3109 ****************************************************************************/
3111 static int cmd_symlink(void)
3113 TALLOC_CTX
*ctx
= talloc_tos();
3114 char *oldname
= NULL
;
3115 char *newname
= NULL
;
3118 struct cli_state
*newcli
;
3121 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3122 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3123 d_printf("symlink <oldname> <newname>\n");
3126 /* Oldname (link target) must be an untouched blob. */
3129 if (SERVER_HAS_UNIX_CIFS(cli
)) {
3130 newname
= talloc_asprintf(ctx
, "%s%s", client_get_cur_dir(),
3135 /* New name must be present in share namespace. */
3136 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, newname
,
3138 if (!NT_STATUS_IS_OK(status
)) {
3139 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3142 status
= cli_posix_symlink(newcli
, oldname
, newname
);
3144 status
= cli_symlink(
3146 buf2
[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE
);
3149 if (!NT_STATUS_IS_OK(status
)) {
3150 d_printf("%s symlinking files (%s -> %s)\n",
3151 nt_errstr(status
), oldname
, newname
);
3158 /****************************************************************************
3160 ****************************************************************************/
3162 static int cmd_chmod(void)
3164 TALLOC_CTX
*ctx
= talloc_tos();
3168 char *targetname
= NULL
;
3169 struct cli_state
*targetcli
;
3173 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3174 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3175 d_printf("chmod mode file\n");
3178 src
= talloc_asprintf(ctx
,
3180 client_get_cur_dir(),
3186 mode
= (mode_t
)strtol(buf
, NULL
, 8);
3188 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3190 if (!NT_STATUS_IS_OK(status
)) {
3191 d_printf("chmod %s: %s\n", src
, nt_errstr(status
));
3195 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3196 d_printf("Server doesn't support UNIX CIFS calls.\n");
3200 status
= cli_posix_chmod(targetcli
, targetname
, mode
);
3201 if (!NT_STATUS_IS_OK(status
)) {
3202 d_printf("%s chmod file %s 0%o\n",
3203 nt_errstr(status
), src
, (unsigned int)mode
);
3210 static const char *filetype_to_str(mode_t mode
)
3212 if (S_ISREG(mode
)) {
3213 return "regular file";
3214 } else if (S_ISDIR(mode
)) {
3218 if (S_ISCHR(mode
)) {
3219 return "character device";
3223 if (S_ISBLK(mode
)) {
3224 return "block device";
3228 if (S_ISFIFO(mode
)) {
3233 if (S_ISLNK(mode
)) {
3234 return "symbolic link";
3238 if (S_ISSOCK(mode
)) {
3245 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
3254 static char *unix_mode_to_str(char *s
, mode_t m
)
3257 const char *str
= filetype_to_str(m
);
3273 *p
++ = str
[1] == 'y' ? 'l' : 's';
3280 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
3281 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
3282 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
3283 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
3284 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
3285 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
3286 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
3287 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
3288 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
3293 /****************************************************************************
3294 Utility function for UNIX getfacl.
3295 ****************************************************************************/
3297 static char *perms_to_string(fstring permstr
, unsigned char perms
)
3299 fstrcpy(permstr
, "---");
3300 if (perms
& SMB_POSIX_ACL_READ
) {
3303 if (perms
& SMB_POSIX_ACL_WRITE
) {
3306 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
3312 /****************************************************************************
3314 ****************************************************************************/
3316 static int cmd_getfacl(void)
3318 TALLOC_CTX
*ctx
= talloc_tos();
3321 char *targetname
= NULL
;
3322 struct cli_state
*targetcli
;
3323 uint16 major
, minor
;
3324 uint32 caplow
, caphigh
;
3325 char *retbuf
= NULL
;
3327 SMB_STRUCT_STAT sbuf
;
3328 uint16 num_file_acls
= 0;
3329 uint16 num_dir_acls
= 0;
3333 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3334 d_printf("getfacl filename\n");
3337 src
= talloc_asprintf(ctx
,
3339 client_get_cur_dir(),
3345 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3347 if (!NT_STATUS_IS_OK(status
)) {
3348 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3352 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3353 d_printf("Server doesn't support UNIX CIFS calls.\n");
3357 status
= cli_unix_extensions_version(targetcli
, &major
, &minor
,
3359 if (!NT_STATUS_IS_OK(status
)) {
3360 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3365 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
3366 d_printf("This server supports UNIX extensions "
3367 "but doesn't support POSIX ACLs.\n");
3371 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3372 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3373 d_printf("%s getfacl doing a stat on file %s\n",
3374 nt_errstr(status
), src
);
3378 status
= cli_posix_getfacl(targetcli
, targetname
, ctx
, &rb_size
, &retbuf
);
3379 if (!NT_STATUS_IS_OK(status
)) {
3380 d_printf("%s getfacl file %s\n",
3381 nt_errstr(status
), src
);
3385 /* ToDo : Print out the ACL values. */
3386 if (rb_size
< 6 || SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
) {
3387 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3388 src
, (unsigned int)CVAL(retbuf
,0) );
3392 num_file_acls
= SVAL(retbuf
,2);
3393 num_dir_acls
= SVAL(retbuf
,4);
3394 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3395 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3397 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3398 (unsigned int)rb_size
);
3402 d_printf("# file: %s\n", src
);
3403 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_ex_uid
, (unsigned int)sbuf
.st_ex_gid
);
3405 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3406 d_printf("No acls found.\n");
3409 for (i
= 0; i
< num_file_acls
; i
++) {
3412 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3413 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3416 case SMB_POSIX_ACL_USER_OBJ
:
3419 case SMB_POSIX_ACL_USER
:
3420 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3421 d_printf("user:%u:", uorg
);
3423 case SMB_POSIX_ACL_GROUP_OBJ
:
3424 d_printf("group::");
3426 case SMB_POSIX_ACL_GROUP
:
3427 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3428 d_printf("group:%u:", uorg
);
3430 case SMB_POSIX_ACL_MASK
:
3433 case SMB_POSIX_ACL_OTHER
:
3434 d_printf("other::");
3437 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3438 src
, (unsigned int)tagtype
);
3443 d_printf("%s\n", perms_to_string(permstring
, perms
));
3446 for (i
= 0; i
< num_dir_acls
; i
++) {
3449 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3450 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3453 case SMB_POSIX_ACL_USER_OBJ
:
3454 d_printf("default:user::");
3456 case SMB_POSIX_ACL_USER
:
3457 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3458 d_printf("default:user:%u:", uorg
);
3460 case SMB_POSIX_ACL_GROUP_OBJ
:
3461 d_printf("default:group::");
3463 case SMB_POSIX_ACL_GROUP
:
3464 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3465 d_printf("default:group:%u:", uorg
);
3467 case SMB_POSIX_ACL_MASK
:
3468 d_printf("default:mask::");
3470 case SMB_POSIX_ACL_OTHER
:
3471 d_printf("default:other::");
3474 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3475 src
, (unsigned int)tagtype
);
3480 d_printf("%s\n", perms_to_string(permstring
, perms
));
3486 /****************************************************************************
3487 Get the EA list of a file
3488 ****************************************************************************/
3490 static int cmd_geteas(void)
3492 TALLOC_CTX
*ctx
= talloc_tos();
3495 char *targetname
= NULL
;
3496 struct cli_state
*targetcli
;
3499 struct ea_struct
*eas
;
3501 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3502 d_printf("geteas filename\n");
3505 src
= talloc_asprintf(ctx
,
3507 client_get_cur_dir(),
3513 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3515 if (!NT_STATUS_IS_OK(status
)) {
3516 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3520 status
= cli_get_ea_list_path(targetcli
, targetname
, talloc_tos(),
3522 if (!NT_STATUS_IS_OK(status
)) {
3523 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status
));
3527 for (i
=0; i
<num_eas
; i
++) {
3528 d_printf("%s (%d) =\n", eas
[i
].name
, (int)eas
[i
].flags
);
3529 dump_data_file(eas
[i
].value
.data
, eas
[i
].value
.length
, false,
3539 /****************************************************************************
3541 ****************************************************************************/
3543 static int cmd_setea(void)
3545 TALLOC_CTX
*ctx
= talloc_tos();
3548 char *eaname
= NULL
;
3549 char *eavalue
= NULL
;
3550 char *targetname
= NULL
;
3551 struct cli_state
*targetcli
;
3554 if (!next_token_talloc(ctx
, &cmd_ptr
, &name
, NULL
)
3555 || !next_token_talloc(ctx
, &cmd_ptr
, &eaname
, NULL
)) {
3556 d_printf("setea filename eaname value\n");
3559 if (!next_token_talloc(ctx
, &cmd_ptr
, &eavalue
, NULL
)) {
3560 eavalue
= talloc_strdup(ctx
, "");
3562 src
= talloc_asprintf(ctx
,
3564 client_get_cur_dir(),
3570 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3572 if (!NT_STATUS_IS_OK(status
)) {
3573 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3577 status
= cli_set_ea_path(targetcli
, targetname
, eaname
, eavalue
,
3579 if (!NT_STATUS_IS_OK(status
)) {
3580 d_printf("set_ea %s: %s\n", src
, nt_errstr(status
));
3587 /****************************************************************************
3589 ****************************************************************************/
3591 static int cmd_stat(void)
3593 TALLOC_CTX
*ctx
= talloc_tos();
3596 char *targetname
= NULL
;
3597 struct cli_state
*targetcli
;
3599 SMB_STRUCT_STAT sbuf
;
3604 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3605 d_printf("stat file\n");
3608 src
= talloc_asprintf(ctx
,
3610 client_get_cur_dir(),
3616 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3618 if (!NT_STATUS_IS_OK(status
)) {
3619 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3623 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3624 d_printf("Server doesn't support UNIX CIFS calls.\n");
3628 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3629 if (!NT_STATUS_IS_OK(status
)) {
3630 d_printf("%s stat file %s\n",
3631 nt_errstr(status
), src
);
3635 /* Print out the stat values. */
3636 d_printf("File: %s\n", src
);
3637 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3638 (double)sbuf
.st_ex_size
,
3639 (unsigned int)sbuf
.st_ex_blocks
,
3640 filetype_to_str(sbuf
.st_ex_mode
));
3642 #if defined(S_ISCHR) && defined(S_ISBLK)
3643 if (S_ISCHR(sbuf
.st_ex_mode
) || S_ISBLK(sbuf
.st_ex_mode
)) {
3644 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3645 (double)sbuf
.st_ex_ino
,
3646 (unsigned int)sbuf
.st_ex_nlink
,
3647 unix_dev_major(sbuf
.st_ex_rdev
),
3648 unix_dev_minor(sbuf
.st_ex_rdev
));
3651 d_printf("Inode: %.0f\tLinks: %u\n",
3652 (double)sbuf
.st_ex_ino
,
3653 (unsigned int)sbuf
.st_ex_nlink
);
3655 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3656 ((int)sbuf
.st_ex_mode
& 0777),
3657 unix_mode_to_str(mode_str
, sbuf
.st_ex_mode
),
3658 (unsigned int)sbuf
.st_ex_uid
,
3659 (unsigned int)sbuf
.st_ex_gid
);
3661 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_atime
);
3662 lt
= localtime(&tmp_time
);
3664 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3666 fstrcpy(mode_str
, "unknown");
3668 d_printf("Access: %s\n", mode_str
);
3670 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3671 lt
= localtime(&tmp_time
);
3673 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3675 fstrcpy(mode_str
, "unknown");
3677 d_printf("Modify: %s\n", mode_str
);
3679 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_ctime
);
3680 lt
= localtime(&tmp_time
);
3682 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3684 fstrcpy(mode_str
, "unknown");
3686 d_printf("Change: %s\n", mode_str
);
3692 /****************************************************************************
3694 ****************************************************************************/
3696 static int cmd_chown(void)
3698 TALLOC_CTX
*ctx
= talloc_tos();
3702 char *buf
, *buf2
, *buf3
;
3703 struct cli_state
*targetcli
;
3704 char *targetname
= NULL
;
3707 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3708 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3709 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3710 d_printf("chown uid gid file\n");
3714 uid
= (uid_t
)atoi(buf
);
3715 gid
= (gid_t
)atoi(buf2
);
3717 src
= talloc_asprintf(ctx
,
3719 client_get_cur_dir(),
3724 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3726 if (!NT_STATUS_IS_OK(status
)) {
3727 d_printf("chown %s: %s\n", src
, nt_errstr(status
));
3731 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3732 d_printf("Server doesn't support UNIX CIFS calls.\n");
3736 status
= cli_posix_chown(targetcli
, targetname
, uid
, gid
);
3737 if (!NT_STATUS_IS_OK(status
)) {
3738 d_printf("%s chown file %s uid=%d, gid=%d\n",
3739 nt_errstr(status
), src
, (int)uid
, (int)gid
);
3746 /****************************************************************************
3748 ****************************************************************************/
3750 static int cmd_rename(void)
3752 TALLOC_CTX
*ctx
= talloc_tos();
3755 struct cli_state
*targetcli
;
3760 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3761 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3762 d_printf("rename <src> <dest>\n");
3766 src
= talloc_asprintf(ctx
,
3768 client_get_cur_dir(),
3774 dest
= talloc_asprintf(ctx
,
3776 client_get_cur_dir(),
3782 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3784 if (!NT_STATUS_IS_OK(status
)) {
3785 d_printf("rename %s: %s\n", src
, nt_errstr(status
));
3789 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dest
, &targetcli
,
3791 if (!NT_STATUS_IS_OK(status
)) {
3792 d_printf("rename %s: %s\n", dest
, nt_errstr(status
));
3796 status
= cli_rename(targetcli
, targetsrc
, targetdest
);
3797 if (!NT_STATUS_IS_OK(status
)) {
3798 d_printf("%s renaming files %s -> %s \n",
3808 /****************************************************************************
3809 Print the volume name.
3810 ****************************************************************************/
3812 static int cmd_volume(void)
3815 uint32_t serial_num
;
3819 status
= cli_get_fs_volume_info(cli
, talloc_tos(),
3820 &volname
, &serial_num
,
3822 if (!NT_STATUS_IS_OK(status
)) {
3823 d_printf("Error %s getting volume info\n", nt_errstr(status
));
3827 d_printf("Volume: |%s| serial number 0x%x\n",
3828 volname
, (unsigned int)serial_num
);
3832 /****************************************************************************
3833 Hard link files using the NT call.
3834 ****************************************************************************/
3836 static int cmd_hardlink(void)
3838 TALLOC_CTX
*ctx
= talloc_tos();
3841 struct cli_state
*targetcli
;
3845 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3846 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3847 d_printf("hardlink <src> <dest>\n");
3851 src
= talloc_asprintf(ctx
,
3853 client_get_cur_dir(),
3859 dest
= talloc_asprintf(ctx
,
3861 client_get_cur_dir(),
3867 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3869 if (!NT_STATUS_IS_OK(status
)) {
3870 d_printf("hardlink %s: %s\n", src
, nt_errstr(status
));
3874 status
= cli_nt_hardlink(targetcli
, targetname
, dest
);
3875 if (!NT_STATUS_IS_OK(status
)) {
3876 d_printf("%s doing an NT hard link of files\n",
3884 /****************************************************************************
3885 Toggle the prompt flag.
3886 ****************************************************************************/
3888 static int cmd_prompt(void)
3891 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3895 /****************************************************************************
3896 Set the newer than time.
3897 ****************************************************************************/
3899 static int cmd_newer(void)
3901 TALLOC_CTX
*ctx
= talloc_tos();
3904 SMB_STRUCT_STAT sbuf
;
3906 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3907 if (ok
&& (sys_stat(buf
, &sbuf
, false) == 0)) {
3908 newer_than
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3909 DEBUG(1,("Getting files newer than %s",
3910 time_to_asc(newer_than
)));
3915 if (ok
&& newer_than
== 0) {
3916 d_printf("Error setting newer-than time\n");
3923 /****************************************************************************
3924 Watch directory changes
3925 ****************************************************************************/
3927 static int cmd_notify(void)
3929 TALLOC_CTX
*frame
= talloc_stackframe();
3934 name
= talloc_strdup(talloc_tos(), client_get_cur_dir());
3938 if (!next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
, NULL
)) {
3941 name
= talloc_asprintf_append(name
, "%s", buf
);
3945 status
= cli_ntcreate(
3946 cli
, name
, 0, FILE_READ_DATA
, 0,
3947 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
3948 FILE_OPEN
, 0, 0, &fnum
, NULL
);
3949 if (!NT_STATUS_IS_OK(status
)) {
3950 d_printf("Could not open file: %s\n", nt_errstr(status
));
3955 uint32_t i
, num_changes
;
3956 struct notify_change
*changes
;
3958 status
= cli_notify(cli
, fnum
, 1000, FILE_NOTIFY_CHANGE_ALL
,
3960 talloc_tos(), &num_changes
, &changes
);
3961 if (!NT_STATUS_IS_OK(status
)) {
3962 d_printf("notify returned %s\n",
3966 for (i
=0; i
<num_changes
; i
++) {
3967 printf("%4.4x %s\n", changes
[i
].action
,
3970 TALLOC_FREE(changes
);
3973 d_printf("notify <file>\n");
3979 /****************************************************************************
3980 Set the archive level.
3981 ****************************************************************************/
3983 static int cmd_archive(void)
3985 TALLOC_CTX
*ctx
= talloc_tos();
3988 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3989 archive_level
= atoi(buf
);
3991 d_printf("Archive level is %d\n",archive_level
);
3997 /****************************************************************************
3998 Toggle the backup_intent state.
3999 ****************************************************************************/
4001 static int cmd_backup(void)
4003 backup_intent
= !backup_intent
;
4004 cli_set_backup_intent(cli
, backup_intent
);
4005 DEBUG(2,("backup intent is now %s\n",backup_intent
?"on":"off"));
4009 /****************************************************************************
4010 Toggle the lowercaseflag.
4011 ****************************************************************************/
4013 static int cmd_lowercase(void)
4015 lowercase
= !lowercase
;
4016 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
4020 /****************************************************************************
4021 Toggle the case sensitive flag.
4022 ****************************************************************************/
4024 static int cmd_setcase(void)
4026 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
4028 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
4029 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
4034 /****************************************************************************
4035 Toggle the showacls flag.
4036 ****************************************************************************/
4038 static int cmd_showacls(void)
4040 showacls
= !showacls
;
4041 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
4046 /****************************************************************************
4047 Toggle the recurse flag.
4048 ****************************************************************************/
4050 static int cmd_recurse(void)
4053 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
4057 /****************************************************************************
4058 Toggle the translate flag.
4059 ****************************************************************************/
4061 static int cmd_translate(void)
4063 translation
= !translation
;
4064 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4065 translation
?"on":"off"));
4069 /****************************************************************************
4071 ****************************************************************************/
4073 static int cmd_lcd(void)
4075 TALLOC_CTX
*ctx
= talloc_tos();
4079 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4080 if (chdir(buf
) == -1) {
4081 d_printf("chdir to %s failed (%s)\n",
4082 buf
, strerror(errno
));
4089 DEBUG(2,("the local directory is now %s\n",d
));
4094 /****************************************************************************
4095 Get a file restarting at end of local file.
4096 ****************************************************************************/
4098 static int cmd_reget(void)
4100 TALLOC_CTX
*ctx
= talloc_tos();
4101 char *local_name
= NULL
;
4102 char *remote_name
= NULL
;
4106 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4111 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
4112 d_printf("reget <filename>\n");
4115 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
4119 remote_name
= clean_name(ctx
,remote_name
);
4125 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
4130 return do_get(remote_name
, local_name
, true);
4133 /****************************************************************************
4134 Put a file restarting at end of local file.
4135 ****************************************************************************/
4137 static int cmd_reput(void)
4139 TALLOC_CTX
*ctx
= talloc_tos();
4140 char *local_name
= NULL
;
4141 char *remote_name
= NULL
;
4145 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4150 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
4151 d_printf("reput <filename>\n");
4155 if (!file_exist_stat(local_name
, &st
, false)) {
4156 d_printf("%s does not exist\n", local_name
);
4160 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
4161 remote_name
= talloc_asprintf_append(remote_name
,
4164 remote_name
= talloc_asprintf_append(remote_name
,
4171 remote_name
= clean_name(ctx
, remote_name
);
4176 return do_put(remote_name
, local_name
, true);
4179 /****************************************************************************
4181 ****************************************************************************/
4183 static void browse_fn(const char *name
, uint32 m
,
4184 const char *comment
, void *state
)
4186 const char *typestr
= "";
4189 case STYPE_DISKTREE
:
4193 typestr
= "Printer";
4202 /* FIXME: If the remote machine returns non-ascii characters
4203 in any of these fields, they can corrupt the output. We
4204 should remove them. */
4206 d_printf("\t%-15s %-10.10s%s\n",
4207 name
,typestr
,comment
);
4209 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
4213 static bool browse_host_rpc(bool sort
)
4216 struct rpc_pipe_client
*pipe_hnd
= NULL
;
4217 TALLOC_CTX
*frame
= talloc_stackframe();
4219 struct srvsvc_NetShareInfoCtr info_ctr
;
4220 struct srvsvc_NetShareCtr1 ctr1
;
4221 uint32_t resume_handle
= 0;
4222 uint32_t total_entries
= 0;
4224 struct dcerpc_binding_handle
*b
;
4226 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
,
4229 if (!NT_STATUS_IS_OK(status
)) {
4230 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4231 nt_errstr(status
)));
4236 b
= pipe_hnd
->binding_handle
;
4238 ZERO_STRUCT(info_ctr
);
4242 info_ctr
.ctr
.ctr1
= &ctr1
;
4244 status
= dcerpc_srvsvc_NetShareEnumAll(b
, frame
,
4252 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
4253 TALLOC_FREE(pipe_hnd
);
4258 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
4259 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
4260 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
4263 TALLOC_FREE(pipe_hnd
);
4268 /****************************************************************************
4269 Try and browse available connections on a host.
4270 ****************************************************************************/
4272 static bool browse_host(bool sort
)
4276 d_printf("\n\tSharename Type Comment\n");
4277 d_printf("\t--------- ---- -------\n");
4280 if (browse_host_rpc(sort
)) {
4284 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1) {
4285 NTSTATUS status
= cli_nt_error(cli
);
4286 d_printf("Error returning browse list: %s\n",
4293 /****************************************************************************
4295 ****************************************************************************/
4297 static void server_fn(const char *name
, uint32 m
,
4298 const char *comment
, void *state
)
4302 d_printf("\t%-16s %s\n", name
, comment
);
4304 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
4308 /****************************************************************************
4309 Try and browse available connections on a host.
4310 ****************************************************************************/
4312 static bool list_servers(const char *wk_grp
)
4316 if (!cli
->server_domain
)
4320 d_printf("\n\tServer Comment\n");
4321 d_printf("\t--------- -------\n");
4323 fstrcpy( state
, "Server" );
4324 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
4328 d_printf("\n\tWorkgroup Master\n");
4329 d_printf("\t--------- -------\n");
4332 fstrcpy( state
, "Workgroup" );
4333 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
4338 /****************************************************************************
4339 Print or set current VUID
4340 ****************************************************************************/
4342 static int cmd_vuid(void)
4344 TALLOC_CTX
*ctx
= talloc_tos();
4347 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4348 d_printf("Current VUID is %d\n",
4349 cli_state_get_uid(cli
));
4353 cli_state_set_uid(cli
, atoi(buf
));
4357 /****************************************************************************
4358 Setup a new VUID, by issuing a session setup
4359 ****************************************************************************/
4361 static int cmd_logon(void)
4363 TALLOC_CTX
*ctx
= talloc_tos();
4364 char *l_username
, *l_password
;
4367 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
4368 d_printf("logon <username> [<password>]\n");
4372 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
4373 char pwd
[256] = {0};
4376 rc
= samba_getpass("Password: ", pwd
, sizeof(pwd
), false, false);
4378 l_password
= talloc_strdup(ctx
, pwd
);
4385 nt_status
= cli_session_setup(cli
, l_username
,
4386 l_password
, strlen(l_password
),
4387 l_password
, strlen(l_password
),
4389 if (!NT_STATUS_IS_OK(nt_status
)) {
4390 d_printf("session setup failed: %s\n", nt_errstr(nt_status
));
4394 d_printf("Current VUID is %d\n", cli_state_get_uid(cli
));
4402 static int cmd_logoff(void)
4406 status
= cli_ulogoff(cli
);
4407 if (!NT_STATUS_IS_OK(status
)) {
4408 d_printf("logoff failed: %s\n", nt_errstr(status
));
4412 d_printf("logoff successful\n");
4418 * tree connect (connect to a share)
4421 static int cmd_tcon(void)
4423 TALLOC_CTX
*ctx
= talloc_tos();
4427 if (!next_token_talloc(ctx
, &cmd_ptr
, &sharename
, NULL
)) {
4428 d_printf("tcon <sharename>\n");
4436 status
= cli_tree_connect(cli
, sharename
, "?????", "", 0);
4437 if (!NT_STATUS_IS_OK(status
)) {
4438 d_printf("tcon failed: %s\n", nt_errstr(status
));
4442 talloc_free(sharename
);
4444 d_printf("tcon to %s successful, tid: %u\n", sharename
,
4445 cli_state_get_tid(cli
));
4450 * tree disconnect (disconnect from a share)
4453 static int cmd_tdis(void)
4457 status
= cli_tdis(cli
);
4458 if (!NT_STATUS_IS_OK(status
)) {
4459 d_printf("tdis failed: %s\n", nt_errstr(status
));
4463 d_printf("tdis successful\n");
4472 static int cmd_tid(void)
4474 TALLOC_CTX
*ctx
= talloc_tos();
4477 if (!next_token_talloc(ctx
, &cmd_ptr
, &tid_str
, NULL
)) {
4478 if (cli_state_has_tcon(cli
)) {
4479 d_printf("current tid is %d\n", cli_state_get_tid(cli
));
4481 d_printf("no tcon currently\n");
4484 uint16_t tid
= atoi(tid_str
);
4485 cli_state_set_tid(cli
, tid
);
4492 /****************************************************************************
4493 list active connections
4494 ****************************************************************************/
4496 static int cmd_list_connect(void)
4498 cli_cm_display(cli
);
4502 /****************************************************************************
4503 display the current active client connection
4504 ****************************************************************************/
4506 static int cmd_show_connect( void )
4508 TALLOC_CTX
*ctx
= talloc_tos();
4509 struct cli_state
*targetcli
;
4513 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
4514 client_get_cur_dir(), &targetcli
,
4516 if (!NT_STATUS_IS_OK(status
)) {
4517 d_printf("showconnect %s: %s\n", cur_dir
, nt_errstr(status
));
4521 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli
->conn
), targetcli
->share
);
4525 /****************************************************************************
4527 ***************************************************************************/
4529 int cmd_iosize(void)
4531 TALLOC_CTX
*ctx
= talloc_tos();
4535 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4536 if (smbXcli_conn_protocol(cli
->conn
) < PROTOCOL_SMB2_02
) {
4538 d_printf("iosize <n> or iosize 0x<n>. "
4539 "Minimum is 0 (default), "
4540 "max is 16776960 (0xFFFF00)\n");
4542 d_printf("iosize <n> or iosize 0x<n>. "
4543 "(Encrypted connection) ,"
4544 "Minimum is 0 (default), "
4545 "max is 130048 (0x1FC00)\n");
4548 d_printf("iosize <n> or iosize 0x<n>.\n");
4553 iosize
= strtol(buf
,NULL
,0);
4554 if (smbXcli_conn_protocol(cli
->conn
) < PROTOCOL_SMB2_02
) {
4555 if (smb_encrypt
&& (iosize
< 0 || iosize
> 0xFC00)) {
4556 d_printf("iosize out of range for encrypted "
4557 "connection (min = 0 (default), "
4558 "max = 130048 (0x1FC00)\n");
4560 } else if (!smb_encrypt
&& (iosize
< 0 || iosize
> 0xFFFF00)) {
4561 d_printf("iosize out of range (min = 0 (default), "
4562 "max = 16776960 (0xFFFF00)\n");
4567 io_bufsize
= iosize
;
4568 d_printf("iosize is now %d\n", io_bufsize
);
4572 /****************************************************************************
4574 ***************************************************************************/
4576 static int cmd_timeout(void)
4578 TALLOC_CTX
*ctx
= talloc_tos();
4581 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4582 unsigned int old_timeout
= cli_set_timeout(cli
, 0);
4583 cli_set_timeout(cli
, old_timeout
);
4584 d_printf("timeout <n> (per-operation timeout "
4585 "in seconds - currently %u).\n",
4590 io_timeout
= strtol(buf
,NULL
,0);
4591 cli_set_timeout(cli
, io_timeout
*1000);
4592 d_printf("io_timeout per operation is now %d\n", io_timeout
);
4597 /****************************************************************************
4599 ****************************************************************************/
4600 static int cmd_history(void)
4602 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4606 hlist
= history_list();
4608 for (i
= 0; hlist
&& hlist
[i
]; i
++) {
4609 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
4612 DEBUG(0,("no history without readline support\n"));
4618 /* Some constants for completing filename arguments */
4620 #define COMPL_NONE 0 /* No completions */
4621 #define COMPL_REMOTE 1 /* Complete remote filename */
4622 #define COMPL_LOCAL 2 /* Complete local filename */
4624 /* This defines the commands supported by this client.
4625 * NOTE: The "!" must be the last one in the list because it's fn pointer
4626 * field is NULL, and NULL in that field is used in process_tok()
4627 * (below) to indicate the end of the list. crh
4632 const char *description
;
4633 char compl_args
[2]; /* Completion argument info */
4635 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4636 {"allinfo",cmd_allinfo
,"<file> show all available info",
4637 {COMPL_NONE
,COMPL_NONE
}},
4638 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
4639 {"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
}},
4640 {"backup",cmd_backup
,"toggle backup intent state",{COMPL_NONE
,COMPL_NONE
}},
4641 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4642 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
4643 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
4644 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
4645 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_NONE
}},
4646 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_NONE
}},
4647 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_NONE
}},
4648 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4649 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4650 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4651 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
4652 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4653 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4654 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_NONE
}},
4655 {"geteas", cmd_geteas
, "<file name> get the EA list of a file",
4656 {COMPL_REMOTE
, COMPL_NONE
}},
4657 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4658 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4659 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
4660 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
4661 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
4662 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4663 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4664 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
4665 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4666 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4667 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
4668 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4669 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4670 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4671 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
4672 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4673 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
4674 {"notify",cmd_notify
,"<file>Get notified of dir changes",{COMPL_REMOTE
,COMPL_NONE
}},
4675 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
4676 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
4677 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
4678 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4679 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4680 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4681 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4682 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
4683 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4684 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4685 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
4686 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4687 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
4688 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4689 {"readlink",cmd_readlink
,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4690 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4691 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4692 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4693 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
4694 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4695 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4696 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_REMOTE
,COMPL_NONE
}},
4697 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
4698 {"setea", cmd_setea
, "<file name> <eaname> <eaval> Set an EA of a file",
4699 {COMPL_REMOTE
, COMPL_LOCAL
}},
4700 {"setmode",cmd_setmode
,"<file name> <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
4701 {"stat",cmd_stat
,"<file name> Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_NONE
}},
4702 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4703 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
4704 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
4705 {"timeout",cmd_timeout
,"timeout <number> - set the per-operation timeout in seconds (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4706 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
4707 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4708 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
4709 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
4710 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4711 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
4712 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
4713 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
4714 {"tcon",cmd_tcon
,"connect to a share" ,{COMPL_NONE
,COMPL_NONE
}},
4715 {"tdis",cmd_tdis
,"disconnect from a share",{COMPL_NONE
,COMPL_NONE
}},
4716 {"tid",cmd_tid
,"show or set the current tid (tree-id)",{COMPL_NONE
,COMPL_NONE
}},
4717 {"logoff",cmd_logoff
,"log off (close the session)",{COMPL_NONE
,COMPL_NONE
}},
4718 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
4720 /* Yes, this must be here, see crh's comment above. */
4721 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
4722 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
4725 /*******************************************************************
4726 Lookup a command string in the list of commands, including
4728 ******************************************************************/
4730 static int process_tok(char *tok
)
4732 int i
= 0, matches
= 0;
4734 int tok_len
= strlen(tok
);
4736 while (commands
[i
].fn
!= NULL
) {
4737 if (strequal(commands
[i
].name
,tok
)) {
4741 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4750 else if (matches
== 1)
4756 /****************************************************************************
4758 ****************************************************************************/
4760 static int cmd_help(void)
4762 TALLOC_CTX
*ctx
= talloc_tos();
4766 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4767 if ((i
= process_tok(buf
)) >= 0)
4768 d_printf("HELP %s:\n\t%s\n\n",
4769 commands
[i
].name
,commands
[i
].description
);
4771 while (commands
[i
].description
) {
4772 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4773 d_printf("%-15s",commands
[i
].name
);
4782 /****************************************************************************
4783 Process a -c command string.
4784 ****************************************************************************/
4786 static int process_command_string(const char *cmd_in
)
4788 TALLOC_CTX
*ctx
= talloc_tos();
4789 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4795 /* establish the connection if not already */
4800 status
= cli_cm_open(talloc_tos(), NULL
,
4801 have_ip
? dest_ss_str
: desthost
,
4804 max_protocol
, port
, name_type
,
4806 if (!NT_STATUS_IS_OK(status
)) {
4809 cli_set_timeout(cli
, io_timeout
*1000);
4812 while (cmd
[0] != '\0') {
4818 if ((p
= strchr_m(cmd
, ';')) == 0) {
4827 /* and get the first part of the command */
4829 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4833 if ((i
= process_tok(tok
)) >= 0) {
4834 rc
= commands
[i
].fn();
4835 } else if (i
== -2) {
4836 d_printf("%s: command abbreviation ambiguous\n",tok
);
4838 d_printf("%s: command not found\n",tok
);
4845 #define MAX_COMPLETIONS 100
4847 struct completion_remote
{
4855 static NTSTATUS
completion_remote_filter(const char *mnt
,
4856 struct file_info
*f
,
4860 struct completion_remote
*info
= (struct completion_remote
*)state
;
4862 if (info
->count
>= MAX_COMPLETIONS
- 1) {
4863 return NT_STATUS_OK
;
4865 if (strncmp(info
->text
, f
->name
, info
->len
) != 0) {
4866 return NT_STATUS_OK
;
4868 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
4869 return NT_STATUS_OK
;
4872 if ((info
->dirmask
[0] == 0) && !(f
->mode
& FILE_ATTRIBUTE_DIRECTORY
))
4873 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4875 TALLOC_CTX
*ctx
= talloc_stackframe();
4878 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4881 return NT_STATUS_NO_MEMORY
;
4883 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4886 return NT_STATUS_NO_MEMORY
;
4888 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4889 tmp
= talloc_asprintf_append(tmp
, "%s",
4894 return NT_STATUS_NO_MEMORY
;
4896 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4899 if (info
->matches
[info
->count
] == NULL
) {
4900 return NT_STATUS_OK
;
4902 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4903 smb_readline_ca_char(0);
4905 if (info
->count
== 1) {
4906 info
->samelen
= strlen(info
->matches
[info
->count
]);
4908 while (strncmp(info
->matches
[info
->count
],
4909 info
->matches
[info
->count
-1],
4910 info
->samelen
) != 0) {
4915 return NT_STATUS_OK
;
4918 static char **remote_completion(const char *text
, int len
)
4920 TALLOC_CTX
*ctx
= talloc_stackframe();
4921 char *dirmask
= NULL
;
4922 char *targetpath
= NULL
;
4923 struct cli_state
*targetcli
= NULL
;
4925 struct completion_remote info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4928 /* can't have non-static initialisation on Sun CC, so do it
4934 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4935 if (!info
.matches
) {
4941 * We're leaving matches[0] free to fill it later with the text to
4942 * display: Either the one single match or the longest common subset
4945 info
.matches
[0] = NULL
;
4948 for (i
= len
-1; i
>= 0; i
--) {
4949 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4954 info
.text
= text
+i
+1;
4955 info
.samelen
= info
.len
= len
-i
-1;
4958 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4959 if (!info
.dirmask
) {
4962 strncpy(info
.dirmask
, text
, i
+1);
4963 info
.dirmask
[i
+1] = 0;
4964 dirmask
= talloc_asprintf(ctx
,
4966 client_get_cur_dir(),
4970 info
.dirmask
= SMB_STRDUP("");
4971 if (!info
.dirmask
) {
4974 dirmask
= talloc_asprintf(ctx
,
4976 client_get_cur_dir());
4982 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dirmask
, &targetcli
,
4984 if (!NT_STATUS_IS_OK(status
)) {
4987 status
= cli_list(targetcli
, targetpath
, FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
,
4988 completion_remote_filter
, (void *)&info
);
4989 if (!NT_STATUS_IS_OK(status
)) {
4993 if (info
.count
== 1) {
4995 * No matches at all, NULL indicates there is nothing
4997 SAFE_FREE(info
.matches
[0]);
4998 SAFE_FREE(info
.matches
);
5003 if (info
.count
== 2) {
5005 * Exactly one match in matches[1], indicate this is the one
5008 info
.matches
[0] = info
.matches
[1];
5009 info
.matches
[1] = NULL
;
5012 return info
.matches
;
5016 * We got more than one possible match, set the result to the maximum
5020 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
5021 info
.matches
[info
.count
] = NULL
;
5023 return info
.matches
;
5026 for (i
= 0; i
< info
.count
; i
++) {
5027 SAFE_FREE(info
.matches
[i
]);
5029 SAFE_FREE(info
.matches
);
5030 SAFE_FREE(info
.dirmask
);
5035 static char **completion_fn(const char *text
, int start
, int end
)
5037 smb_readline_ca_char(' ');
5040 const char *buf
, *sp
;
5044 buf
= smb_readline_get_line_buffer();
5048 sp
= strchr(buf
, ' ');
5052 for (i
= 0; commands
[i
].name
; i
++) {
5053 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
5054 (commands
[i
].name
[sp
- buf
] == 0)) {
5058 if (commands
[i
].name
== NULL
)
5064 if (sp
== (buf
+ start
))
5065 compl_type
= commands
[i
].compl_args
[0];
5067 compl_type
= commands
[i
].compl_args
[1];
5069 if (compl_type
== COMPL_REMOTE
)
5070 return remote_completion(text
, end
- start
);
5071 else /* fall back to local filename completion */
5075 int i
, len
, samelen
= 0, count
=1;
5077 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
5084 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
5085 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
5086 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
5087 if (!matches
[count
])
5090 samelen
= strlen(matches
[count
]);
5092 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
5099 case 0: /* should never happen */
5103 matches
[0] = SMB_STRDUP(matches
[1]);
5106 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
5109 strncpy(matches
[0], matches
[1], samelen
);
5110 matches
[0][samelen
] = 0;
5112 matches
[count
] = NULL
;
5116 for (i
= 0; i
< count
; i
++)
5124 static bool finished
;
5126 /****************************************************************************
5127 Make sure we swallow keepalives during idle time.
5128 ****************************************************************************/
5130 static void readline_callback(void)
5132 static time_t last_t
;
5133 struct timespec now
;
5136 unsigned char garbage
[16];
5138 clock_gettime_mono(&now
);
5146 /* Ping the server to keep the connection alive using SMBecho. */
5147 memset(garbage
, 0xf0, sizeof(garbage
));
5148 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
5149 if (NT_STATUS_IS_OK(status
)) {
5153 if (!cli_state_is_connected(cli
)) {
5154 DEBUG(0,("SMBecho failed (%s). The connection is "
5155 "disconnected now\n", nt_errstr(status
)));
5157 smb_readline_done();
5161 /****************************************************************************
5162 Process commands on stdin.
5163 ****************************************************************************/
5165 static int process_stdin(void)
5170 TALLOC_CTX
*frame
= talloc_stackframe();
5172 char *the_prompt
= NULL
;
5176 /* display a prompt */
5177 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
5181 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
5182 SAFE_FREE(the_prompt
);
5188 /* special case - first char is ! */
5190 if (system(line
+ 1) == -1) {
5191 d_printf("system() command %s failed.\n",
5199 /* and get the first part of the command */
5201 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
5207 if ((i
= process_tok(tok
)) >= 0) {
5208 rc
= commands
[i
].fn();
5209 } else if (i
== -2) {
5210 d_printf("%s: command abbreviation ambiguous\n",tok
);
5212 d_printf("%s: command not found\n",tok
);
5220 /****************************************************************************
5221 Process commands from the client.
5222 ****************************************************************************/
5224 static int process(const char *base_directory
)
5229 status
= cli_cm_open(talloc_tos(), NULL
,
5230 have_ip
? dest_ss_str
: desthost
,
5231 service
, auth_info
, true, smb_encrypt
,
5232 max_protocol
, port
, name_type
, &cli
);
5233 if (!NT_STATUS_IS_OK(status
)) {
5237 cli_set_timeout(cli
, io_timeout
*1000);
5239 if (base_directory
&& *base_directory
) {
5240 rc
= do_cd(base_directory
);
5248 rc
= process_command_string(cmdstr
);
5257 /****************************************************************************
5259 ****************************************************************************/
5261 static int do_host_query(const char *query_host
)
5265 status
= cli_cm_open(talloc_tos(), NULL
,
5266 have_ip
? dest_ss_str
: query_host
,
5267 "IPC$", auth_info
, true, smb_encrypt
,
5268 max_protocol
, port
, name_type
, &cli
);
5269 if (!NT_STATUS_IS_OK(status
)) {
5273 cli_set_timeout(cli
, io_timeout
*1000);
5276 /* Ensure that the host can do IPv4 */
5278 if (!interpret_addr(query_host
)) {
5279 struct sockaddr_storage ss
;
5280 if (interpret_string_addr(&ss
, query_host
, 0) &&
5281 (ss
.ss_family
!= AF_INET
)) {
5282 d_printf("%s is an IPv6 address -- no workgroup available\n",
5288 if (port
!= NBT_SMB_PORT
) {
5290 /* Workgroups simply don't make sense over anything
5291 else but port 139... */
5294 status
= cli_cm_open(talloc_tos(), NULL
,
5295 have_ip
? dest_ss_str
: query_host
,
5296 "IPC$", auth_info
, true, smb_encrypt
,
5297 max_protocol
, NBT_SMB_PORT
, name_type
,
5299 if (!NT_STATUS_IS_OK(status
)) {
5305 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5309 cli_set_timeout(cli
, io_timeout
*1000);
5310 list_servers(lp_workgroup());
5317 /****************************************************************************
5318 Handle a tar operation.
5319 ****************************************************************************/
5321 static int do_tar_op(const char *base_directory
)
5323 struct tar
*tar_ctx
= tar_get_ctx();
5326 /* do we already have a connection? */
5330 status
= cli_cm_open(talloc_tos(), NULL
,
5331 have_ip
? dest_ss_str
: desthost
,
5332 service
, auth_info
, true, smb_encrypt
,
5333 max_protocol
, port
, name_type
, &cli
);
5334 if (!NT_STATUS_IS_OK(status
)) {
5338 cli_set_timeout(cli
, io_timeout
*1000);
5343 if (base_directory
&& *base_directory
) {
5344 ret
= do_cd(base_directory
);
5350 ret
= tar_process(tar_ctx
);
5358 /****************************************************************************
5359 Handle a message operation.
5360 ****************************************************************************/
5362 static int do_message_op(struct user_auth_info
*a_info
)
5366 status
= cli_connect_nb(desthost
, have_ip
? &dest_ss
: NULL
,
5367 port
? port
: NBT_SMB_PORT
, name_type
,
5368 lp_netbios_name(), SMB_SIGNING_DEFAULT
, 0, &cli
);
5369 if (!NT_STATUS_IS_OK(status
)) {
5370 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
5374 cli_set_timeout(cli
, io_timeout
*1000);
5375 send_message(get_cmdline_auth_info_username(a_info
));
5381 /****************************************************************************
5383 ****************************************************************************/
5385 int main(int argc
,char *argv
[])
5387 const char **const_argv
= discard_const_p(const char *, argv
);
5388 char *base_directory
= NULL
;
5390 char *query_host
= NULL
;
5391 bool message
= false;
5392 static const char *new_name_resolve_order
= NULL
;
5396 bool tar_opt
= false;
5397 bool service_opt
= false;
5398 struct tar
*tar_ctx
= tar_get_ctx();
5400 struct poptOption long_options
[] = {
5403 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5404 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
5405 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
5406 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
5407 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
5408 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
5409 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5410 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
5411 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
5412 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
5413 { "timeout", 't', POPT_ARG_INT
, &io_timeout
, 'b', "Changes the per-operation timeout", "SECONDS" },
5414 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
5415 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
5416 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
5418 POPT_COMMON_CONNECTION
5419 POPT_COMMON_CREDENTIALS
5422 TALLOC_CTX
*frame
= talloc_stackframe();
5424 if (!client_set_cur_dir("\\")) {
5428 /* set default debug level to 1 regardless of what smb.conf sets */
5429 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR
);
5432 lp_set_cmdline("log level", "1");
5434 auth_info
= user_auth_info_init(frame
);
5435 if (auth_info
== NULL
) {
5438 popt_common_set_auth_info(auth_info
);
5441 pc
= poptGetContext("smbclient", argc
, const_argv
, long_options
, 0);
5442 poptSetOtherOptionHelp(pc
, "service <password>");
5444 while ((opt
= poptGetNextOpt(pc
)) != -1) {
5446 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5447 /* I see no other way to keep things sane --SSS */
5448 if (tar_opt
== true) {
5449 while (poptPeekArg(pc
)) {
5455 /* if the service has not yet been specified lets see if it is available in the popt stack */
5456 if (!service_opt
&& poptPeekArg(pc
)) {
5457 service
= talloc_strdup(frame
, poptGetArg(pc
));
5464 /* if the service has already been retrieved then check if we have also a password */
5466 && (!get_cmdline_auth_info_got_pass(auth_info
))
5467 && poptPeekArg(pc
)) {
5468 set_cmdline_auth_info_password(auth_info
,
5475 /* Messages are sent to NetBIOS name type 0x3
5476 * (Messenger Service). Make sure we default
5477 * to port 139 instead of port 445. srl,crh
5480 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
5485 port
= NBT_SMB_PORT
;
5490 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
5494 print_sockaddr(dest_ss_str
, sizeof(dest_ss_str
), &dest_ss
);
5498 setup_logging("smbclient", DEBUG_STDERR
);
5499 display_set_stderr();
5503 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
5509 lp_set_cmdline("client max protocol", poptGetOptArg(pc
));
5512 /* We must use old option processing for this. Find the
5513 * position of the -T option in the raw argv[]. */
5517 for (i
= 1; i
< argc
; i
++) {
5518 if (strncmp("-T", argv
[i
],2)==0)
5522 if (tar_parse_args(tar_ctx
, poptGetOptArg(pc
),
5523 const_argv
+ i
, argc
- i
)) {
5524 poptPrintUsage(pc
, stderr
, 0);
5528 /* this must be the last option, mark we have parsed it so that we know we have */
5532 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
5533 if (!base_directory
) {
5544 return(do_smb_browse());
5549 /* We may still have some leftovers after the last popt option has been called */
5550 if (tar_opt
== true) {
5551 while (poptPeekArg(pc
)) {
5557 /* if the service has not yet been specified lets see if it is available in the popt stack */
5558 if (!service_opt
&& poptPeekArg(pc
)) {
5559 service
= talloc_strdup(frame
,poptGetArg(pc
));
5566 /* if the service has already been retrieved then check if we have also a password */
5568 && !get_cmdline_auth_info_got_pass(auth_info
)
5569 && poptPeekArg(pc
)) {
5570 set_cmdline_auth_info_password(auth_info
,
5574 if ( override_logfile
)
5575 setup_logging( lp_logfile(talloc_tos()), DEBUG_FILE
);
5577 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5578 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
5579 argv
[0], get_dyn_CONFIGFILE());
5582 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
5583 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
5589 if (service_opt
&& service
) {
5592 /* Convert any '/' characters in the service name to '\' characters */
5593 string_replace(service
, '/','\\');
5594 if (count_chars(service
,'\\') < 3) {
5595 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
5596 poptPrintUsage(pc
, stderr
, 0);
5599 /* Remove trailing slashes */
5600 len
= strlen(service
);
5601 while(len
> 0 && service
[len
- 1] == '\\') {
5603 service
[len
] = '\0';
5607 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
5608 if (!init_names()) {
5609 fprintf(stderr
, "init_names() failed\n");
5613 if(new_name_resolve_order
)
5614 lp_set_cmdline("name resolve order", new_name_resolve_order
);
5616 if (!tar_to_process(tar_ctx
) && !query_host
&& !service
&& !message
) {
5617 poptPrintUsage(pc
, stderr
, 0);
5621 poptFreeContext(pc
);
5622 popt_burn_cmdline_password(argc
, argv
);
5624 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5626 /* Ensure we have a password (or equivalent). */
5627 set_cmdline_auth_info_getpass(auth_info
);
5629 max_protocol
= lp_client_max_protocol();
5631 if (tar_to_process(tar_ctx
)) {
5633 process_command_string(cmdstr
);
5634 rc
= do_tar_op(base_directory
);
5635 } else if (query_host
&& *query_host
) {
5636 char *qhost
= query_host
;
5639 while (*qhost
== '\\' || *qhost
== '/')
5642 if ((slash
= strchr_m(qhost
, '/'))
5643 || (slash
= strchr_m(qhost
, '\\'))) {
5647 if ((p
=strchr_m(qhost
, '#'))) {
5650 sscanf(p
, "%x", &name_type
);
5653 rc
= do_host_query(qhost
);
5654 } else if (message
) {
5655 rc
= do_message_op(auth_info
);
5656 } else if (process(base_directory
)) {