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 "../librpc/gen_ndr/ndr_srvsvc_c.h"
30 #include "../lib/util/select.h"
31 #include "system/readline.h"
32 #include "../libcli/smbreadline/smbreadline.h"
33 #include "../libcli/security/security.h"
34 #include "system/select.h"
35 #include "libsmb/libsmb.h"
36 #include "libsmb/clirap.h"
38 #include "libsmb/nmblib.h"
39 #include "include/ntioctl.h"
40 #include "../libcli/smb/smbXcli_base.h"
46 extern int do_smb_browse(void); /* mDNS browsing */
48 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 /* clitar bits insert */
81 extern bool tar_reset
;
84 static bool prompt
= true;
86 static bool recurse
= false;
87 static bool showacls
= false;
88 bool lowercase
= false;
89 static bool backup_intent
= false;
91 static struct sockaddr_storage dest_ss
;
92 static char dest_ss_str
[INET6_ADDRSTRLEN
];
94 #define SEPARATORS " \t\n\r"
96 static bool abort_mget
= true;
99 uint64_t get_total_size
= 0;
100 unsigned int get_total_time_ms
= 0;
101 static uint64_t put_total_size
= 0;
102 static unsigned int put_total_time_ms
= 0;
105 static double dir_total
;
107 /* encrypted state. */
108 static bool smb_encrypt
;
110 /* root cli_state connection */
112 struct cli_state
*cli
;
114 static char CLI_DIRSEP_CHAR
= '\\';
115 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
117 /* Authentication for client connections. */
118 struct user_auth_info
*auth_info
;
120 /* Accessor functions for directory paths. */
121 static char *fileselection
;
122 static const char *client_get_fileselection(void)
125 return fileselection
;
130 static const char *client_set_fileselection(const char *new_fs
)
132 SAFE_FREE(fileselection
);
134 fileselection
= SMB_STRDUP(new_fs
);
136 return client_get_fileselection();
140 static const char *client_get_cwd(void)
145 return CLI_DIRSEP_STR
;
148 static const char *client_set_cwd(const char *new_cwd
)
152 cwd
= SMB_STRDUP(new_cwd
);
154 return client_get_cwd();
157 static char *cur_dir
;
158 const char *client_get_cur_dir(void)
163 return CLI_DIRSEP_STR
;
166 const char *client_set_cur_dir(const char *newdir
)
170 cur_dir
= SMB_STRDUP(newdir
);
172 return client_get_cur_dir();
175 /****************************************************************************
176 Put up a yes/no prompt.
177 ****************************************************************************/
179 static bool yesno(const char *p
)
184 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
187 if (*ans
== 'y' || *ans
== 'Y')
193 /****************************************************************************
194 Write to a local file with CR/LF->LF translation if appropriate. Return the
195 number taken from the buffer. This may not equal the number written.
196 ****************************************************************************/
198 static int writefile(int f
, char *b
, int n
)
208 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
211 if (write(f
, b
, 1) != 1) {
221 /****************************************************************************
222 Read from a file with LF->CR/LF translation if appropriate. Return the
223 number read. read approx n bytes.
224 ****************************************************************************/
226 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
232 return x_fread(b
,1,n
,f
);
235 while (i
< (n
- 1)) {
236 if ((c
= x_getc(f
)) == EOF
) {
240 if (c
== '\n') { /* change all LFs to CR/LF */
255 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
257 struct push_state
*state
= (struct push_state
*)priv
;
260 if (x_feof(state
->f
)) {
264 result
= readfile(buf
, n
, state
->f
);
265 state
->nread
+= result
;
269 /****************************************************************************
271 ****************************************************************************/
273 static void send_message(const char *username
)
279 d_printf("Type your message, ending it with a Control-D\n");
282 while (i
<sizeof(buf
)-2) {
283 int c
= fgetc(stdin
);
294 status
= cli_message(cli
, desthost
, username
, buf
);
295 if (!NT_STATUS_IS_OK(status
)) {
296 d_fprintf(stderr
, "cli_message returned %s\n",
301 /****************************************************************************
302 Check the space on a device.
303 ****************************************************************************/
305 static int do_dskattr(void)
307 int total
, bsize
, avail
;
308 struct cli_state
*targetcli
= NULL
;
309 char *targetpath
= NULL
;
310 TALLOC_CTX
*ctx
= talloc_tos();
313 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
314 client_get_cur_dir(), &targetcli
,
316 if (!NT_STATUS_IS_OK(status
)) {
317 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
321 status
= cli_dskattr(targetcli
, &bsize
, &total
, &avail
);
322 if (!NT_STATUS_IS_OK(status
)) {
323 d_printf("Error in dskattr: %s\n", nt_errstr(status
));
327 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
328 total
, bsize
, avail
);
333 /****************************************************************************
335 ****************************************************************************/
337 static int cmd_pwd(void)
339 d_printf("Current directory is %s",service
);
340 d_printf("%s\n",client_get_cur_dir());
344 /****************************************************************************
345 Ensure name has correct directory separators.
346 ****************************************************************************/
348 static void normalize_name(char *newdir
)
350 if (!(cli
->requested_posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
351 string_replace(newdir
,'/','\\');
355 /****************************************************************************
356 Change directory - inner section.
357 ****************************************************************************/
359 static int do_cd(const char *new_dir
)
362 char *saved_dir
= NULL
;
364 char *targetpath
= NULL
;
365 struct cli_state
*targetcli
= NULL
;
366 SMB_STRUCT_STAT sbuf
;
369 TALLOC_CTX
*ctx
= talloc_stackframe();
372 newdir
= talloc_strdup(ctx
, new_dir
);
378 normalize_name(newdir
);
380 /* Save the current directory in case the new directory is invalid */
382 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
388 if (*newdir
== CLI_DIRSEP_CHAR
) {
389 client_set_cur_dir(newdir
);
392 new_cd
= talloc_asprintf(ctx
, "%s%s",
393 client_get_cur_dir(),
400 /* Ensure cur_dir ends in a DIRSEP */
401 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
402 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
407 client_set_cur_dir(new_cd
);
409 new_cd
= clean_name(ctx
, new_cd
);
410 client_set_cur_dir(new_cd
);
412 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, new_cd
,
413 &targetcli
, &targetpath
);
414 if (!NT_STATUS_IS_OK(status
)) {
415 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
416 client_set_cur_dir(saved_dir
);
420 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
425 /* Use a trans2_qpathinfo to test directories for modern servers.
426 Except Win9x doesn't support the qpathinfo_basic() call..... */
428 if (smbXcli_conn_protocol(targetcli
->conn
) > PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
430 status
= cli_qpathinfo_basic(targetcli
, targetpath
, &sbuf
,
432 if (!NT_STATUS_IS_OK(status
)) {
433 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
434 client_set_cur_dir(saved_dir
);
438 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
439 d_printf("cd %s: not a directory\n", new_cd
);
440 client_set_cur_dir(saved_dir
);
445 targetpath
= talloc_asprintf(ctx
,
450 client_set_cur_dir(saved_dir
);
453 targetpath
= clean_name(ctx
, targetpath
);
455 client_set_cur_dir(saved_dir
);
459 status
= cli_chkpath(targetcli
, targetpath
);
460 if (!NT_STATUS_IS_OK(status
)) {
461 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
462 client_set_cur_dir(saved_dir
);
475 /****************************************************************************
477 ****************************************************************************/
479 static int cmd_cd(void)
484 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
487 d_printf("Current directory is %s\n",client_get_cur_dir());
493 /****************************************************************************
495 ****************************************************************************/
497 static int cmd_cd_oneup(void)
502 /*******************************************************************
503 Decide if a file should be operated on.
504 ********************************************************************/
506 static bool do_this_one(struct file_info
*finfo
)
512 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
516 if (*client_get_fileselection() &&
517 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
518 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
522 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
523 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
527 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& FILE_ATTRIBUTE_ARCHIVE
)) {
528 DEBUG(3,("archive %s failed\n", finfo
->name
));
535 /****************************************************************************
536 Display info about a file.
537 ****************************************************************************/
539 static NTSTATUS
display_finfo(struct cli_state
*cli_state
, struct file_info
*finfo
,
543 TALLOC_CTX
*ctx
= talloc_tos();
544 NTSTATUS status
= NT_STATUS_OK
;
546 if (!do_this_one(finfo
)) {
550 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
552 d_printf(" %-30s%7.7s %8.0f %s",
554 attrib_string(talloc_tos(), finfo
->mode
),
557 dir_total
+= finfo
->size
;
562 /* skip if this is . or .. */
563 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
565 /* create absolute filename for cli_ntcreate() FIXME */
566 afname
= talloc_asprintf(ctx
,
572 return NT_STATUS_NO_MEMORY
;
574 /* print file meta date header */
575 d_printf( "FILENAME:%s\n", finfo
->name
);
576 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo
->mode
));
577 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
578 d_printf( "MTIME:%s", time_to_asc(t
));
579 status
= cli_ntcreate(cli_state
, afname
, 0,
580 CREATE_ACCESS_READ
, 0,
581 FILE_SHARE_READ
|FILE_SHARE_WRITE
,
582 FILE_OPEN
, 0x0, 0x0, &fnum
, NULL
);
583 if (!NT_STATUS_IS_OK(status
)) {
584 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
585 afname
, nt_errstr(status
)));
587 struct security_descriptor
*sd
= NULL
;
588 status
= cli_query_secdesc(cli_state
, fnum
,
590 if (!NT_STATUS_IS_OK(status
)) {
591 DEBUG( 0, ("display_finfo() failed to "
592 "get security descriptor: %s",
595 display_sec_desc(sd
);
604 /****************************************************************************
605 Accumulate size of a file.
606 ****************************************************************************/
608 static NTSTATUS
do_du(struct cli_state
*cli_state
, struct file_info
*finfo
,
611 if (do_this_one(finfo
)) {
612 dir_total
+= finfo
->size
;
617 static bool do_list_recurse
;
618 static bool do_list_dirs
;
619 static char *do_list_queue
= 0;
620 static long do_list_queue_size
= 0;
621 static long do_list_queue_start
= 0;
622 static long do_list_queue_end
= 0;
623 static NTSTATUS (*do_list_fn
)(struct cli_state
*cli_state
, struct file_info
*,
626 /****************************************************************************
627 Functions for do_list_queue.
628 ****************************************************************************/
631 * The do_list_queue is a NUL-separated list of strings stored in a
632 * char*. Since this is a FIFO, we keep track of the beginning and
633 * ending locations of the data in the queue. When we overflow, we
634 * double the size of the char*. When the start of the data passes
635 * the midpoint, we move everything back. This is logically more
636 * complex than a linked list, but easier from a memory management
637 * angle. In any memory error condition, do_list_queue is reset.
638 * Functions check to ensure that do_list_queue is non-NULL before
642 static void reset_do_list_queue(void)
644 SAFE_FREE(do_list_queue
);
645 do_list_queue_size
= 0;
646 do_list_queue_start
= 0;
647 do_list_queue_end
= 0;
650 static void init_do_list_queue(void)
652 reset_do_list_queue();
653 do_list_queue_size
= 1024;
654 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
655 if (do_list_queue
== 0) {
656 d_printf("malloc fail for size %d\n",
657 (int)do_list_queue_size
);
658 reset_do_list_queue();
660 memset(do_list_queue
, 0, do_list_queue_size
);
664 static void adjust_do_list_queue(void)
667 * If the starting point of the queue is more than half way through,
668 * move everything toward the beginning.
671 if (do_list_queue
== NULL
) {
672 DEBUG(4,("do_list_queue is empty\n"));
673 do_list_queue_start
= do_list_queue_end
= 0;
677 if (do_list_queue_start
== do_list_queue_end
) {
678 DEBUG(4,("do_list_queue is empty\n"));
679 do_list_queue_start
= do_list_queue_end
= 0;
680 *do_list_queue
= '\0';
681 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
682 DEBUG(4,("sliding do_list_queue backward\n"));
683 memmove(do_list_queue
,
684 do_list_queue
+ do_list_queue_start
,
685 do_list_queue_end
- do_list_queue_start
);
686 do_list_queue_end
-= do_list_queue_start
;
687 do_list_queue_start
= 0;
691 static void add_to_do_list_queue(const char *entry
)
693 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
694 while (new_end
> do_list_queue_size
) {
695 do_list_queue_size
*= 2;
696 DEBUG(4,("enlarging do_list_queue to %d\n",
697 (int)do_list_queue_size
));
698 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
699 if (! do_list_queue
) {
700 d_printf("failure enlarging do_list_queue to %d bytes\n",
701 (int)do_list_queue_size
);
702 reset_do_list_queue();
704 memset(do_list_queue
+ do_list_queue_size
/ 2,
705 0, do_list_queue_size
/ 2);
709 strlcpy_base(do_list_queue
+ do_list_queue_end
,
710 entry
, do_list_queue
, do_list_queue_size
);
711 do_list_queue_end
= new_end
;
712 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
713 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
717 static char *do_list_queue_head(void)
719 return do_list_queue
+ do_list_queue_start
;
722 static void remove_do_list_queue_head(void)
724 if (do_list_queue_end
> do_list_queue_start
) {
725 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
726 adjust_do_list_queue();
727 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
728 (int)do_list_queue_start
, (int)do_list_queue_end
));
732 static int do_list_queue_empty(void)
734 return (! (do_list_queue
&& *do_list_queue
));
737 /****************************************************************************
738 A helper for do_list.
739 ****************************************************************************/
741 static NTSTATUS
do_list_helper(const char *mntpoint
, struct file_info
*f
,
742 const char *mask
, void *state
)
744 struct cli_state
*cli_state
= (struct cli_state
*)state
;
745 TALLOC_CTX
*ctx
= talloc_tos();
747 char *dir_end
= NULL
;
748 NTSTATUS status
= NT_STATUS_OK
;
750 /* Work out the directory. */
751 dir
= talloc_strdup(ctx
, mask
);
753 return NT_STATUS_NO_MEMORY
;
755 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
759 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
760 if (do_list_dirs
&& do_this_one(f
)) {
761 status
= do_list_fn(cli_state
, f
, dir
);
762 if (!NT_STATUS_IS_OK(status
)) {
766 if (do_list_recurse
&&
768 !strequal(f
->name
,".") &&
769 !strequal(f
->name
,"..")) {
774 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
776 return NT_STATUS_UNSUCCESSFUL
;
779 mask2
= talloc_asprintf(ctx
,
785 return NT_STATUS_NO_MEMORY
;
787 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
793 mask2
= talloc_asprintf_append(mask2
,
799 return NT_STATUS_NO_MEMORY
;
801 add_to_do_list_queue(mask2
);
808 if (do_this_one(f
)) {
809 status
= do_list_fn(cli_state
, f
, dir
);
815 /****************************************************************************
816 A wrapper around cli_list that adds recursion.
817 ****************************************************************************/
819 NTSTATUS
do_list(const char *mask
,
821 NTSTATUS (*fn
)(struct cli_state
*cli_state
, struct file_info
*,
826 static int in_do_list
= 0;
827 TALLOC_CTX
*ctx
= talloc_tos();
828 struct cli_state
*targetcli
= NULL
;
829 char *targetpath
= NULL
;
830 NTSTATUS ret_status
= NT_STATUS_OK
;
831 NTSTATUS status
= NT_STATUS_OK
;
833 if (in_do_list
&& rec
) {
834 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
840 do_list_recurse
= rec
;
845 init_do_list_queue();
846 add_to_do_list_queue(mask
);
848 while (!do_list_queue_empty()) {
850 * Need to copy head so that it doesn't become
851 * invalid inside the call to cli_list. This
852 * would happen if the list were expanded
854 * Fix from E. Jay Berkenbilt (ejb@ql.org)
856 char *head
= talloc_strdup(ctx
, do_list_queue_head());
859 return NT_STATUS_NO_MEMORY
;
864 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
867 if (!NT_STATUS_IS_OK(status
)) {
868 d_printf("do_list: [%s] %s\n", head
,
870 remove_do_list_queue_head();
874 status
= cli_list(targetcli
, targetpath
, attribute
,
875 do_list_helper
, targetcli
);
876 if (!NT_STATUS_IS_OK(status
)) {
877 d_printf("%s listing %s\n",
878 nt_errstr(status
), targetpath
);
881 remove_do_list_queue_head();
882 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
883 char *next_file
= do_list_queue_head();
885 if ((strlen(next_file
) >= 2) &&
886 (next_file
[strlen(next_file
) - 1] == '*') &&
887 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
888 save_ch
= next_file
+
889 strlen(next_file
) - 2;
892 /* cwd is only used if showacls is on */
893 client_set_cwd(next_file
);
896 if (!showacls
) /* don't disturbe the showacls output */
897 d_printf("\n%s\n",next_file
);
899 *save_ch
= CLI_DIRSEP_CHAR
;
903 TALLOC_FREE(targetpath
);
907 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
908 &targetcli
, &targetpath
);
909 if (NT_STATUS_IS_OK(status
)) {
910 status
= cli_list(targetcli
, targetpath
, attribute
,
911 do_list_helper
, targetcli
);
912 if (!NT_STATUS_IS_OK(status
)) {
913 d_printf("%s listing %s\n",
914 nt_errstr(status
), targetpath
);
917 TALLOC_FREE(targetpath
);
919 d_printf("do_list: [%s] %s\n", mask
, nt_errstr(status
));
925 reset_do_list_queue();
929 /****************************************************************************
930 Get a directory listing.
931 ****************************************************************************/
933 static int cmd_dir(void)
935 TALLOC_CTX
*ctx
= talloc_tos();
936 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
943 mask
= talloc_strdup(ctx
, client_get_cur_dir());
948 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
950 if (*buf
== CLI_DIRSEP_CHAR
) {
951 mask
= talloc_strdup(ctx
, buf
);
953 mask
= talloc_asprintf_append(mask
, "%s", buf
);
956 mask
= talloc_asprintf_append(mask
, "*");
963 /* cwd is only used if showacls is on */
964 client_set_cwd(client_get_cur_dir());
967 status
= do_list(mask
, attribute
, display_finfo
, recurse
, true);
968 if (!NT_STATUS_IS_OK(status
)) {
974 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
979 /****************************************************************************
980 Get a directory listing.
981 ****************************************************************************/
983 static int cmd_du(void)
985 TALLOC_CTX
*ctx
= talloc_tos();
986 uint16 attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
993 mask
= talloc_strdup(ctx
, client_get_cur_dir());
997 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
998 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
1004 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1005 normalize_name(buf
);
1006 if (*buf
== CLI_DIRSEP_CHAR
) {
1007 mask
= talloc_strdup(ctx
, buf
);
1009 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1012 mask
= talloc_strdup(ctx
, "*");
1015 status
= do_list(mask
, attribute
, do_du
, recurse
, true);
1016 if (!NT_STATUS_IS_OK(status
)) {
1022 d_printf("Total number of bytes: %.0f\n", dir_total
);
1027 static int cmd_echo(void)
1029 TALLOC_CTX
*ctx
= talloc_tos();
1034 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
1035 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
1036 d_printf("echo <num> <data>\n");
1040 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
1042 if (!NT_STATUS_IS_OK(status
)) {
1043 d_printf("echo failed: %s\n", nt_errstr(status
));
1050 /****************************************************************************
1051 Get a file from rname to lname
1052 ****************************************************************************/
1054 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
1056 int *pfd
= (int *)priv
;
1057 if (writefile(*pfd
, buf
, n
) == -1) {
1058 return map_nt_error_from_unix(errno
);
1060 return NT_STATUS_OK
;
1063 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
1065 TALLOC_CTX
*ctx
= talloc_tos();
1068 bool newhandle
= false;
1069 struct timespec tp_start
;
1075 struct cli_state
*targetcli
= NULL
;
1076 char *targetname
= NULL
;
1080 lname
= talloc_strdup(ctx
, lname_in
);
1086 if (!strlower_m(lname
)) {
1087 d_printf("strlower_m %s failed\n", lname
);
1092 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
,
1094 if (!NT_STATUS_IS_OK(status
)) {
1095 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1099 clock_gettime_mono(&tp_start
);
1101 status
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
, &fnum
);
1102 if (!NT_STATUS_IS_OK(status
)) {
1103 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1108 if(!strcmp(lname
,"-")) {
1109 handle
= fileno(stdout
);
1112 handle
= open(lname
, O_WRONLY
|O_CREAT
, 0644);
1114 start
= lseek(handle
, 0, SEEK_END
);
1116 d_printf("Error seeking local file\n");
1121 handle
= open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1126 d_printf("Error opening local file %s\n",lname
);
1131 status
= cli_qfileinfo_basic(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1133 if (!NT_STATUS_IS_OK(status
)) {
1134 status
= cli_getattrE(targetcli
, fnum
, &attr
, &size
, NULL
, NULL
,
1136 if(!NT_STATUS_IS_OK(status
)) {
1137 d_printf("getattrib: %s\n", nt_errstr(status
));
1142 DEBUG(1,("getting file %s of size %.0f as %s ",
1143 rname
, (double)size
, lname
));
1145 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1146 writefile_sink
, (void *)&handle
, &nread
);
1147 if (!NT_STATUS_IS_OK(status
)) {
1148 d_fprintf(stderr
, "parallel_read returned %s\n",
1150 cli_close(targetcli
, fnum
);
1154 status
= cli_close(targetcli
, fnum
);
1155 if (!NT_STATUS_IS_OK(status
)) {
1156 d_printf("Error %s closing remote file\n", nt_errstr(status
));
1164 if (archive_level
>= 2 && (attr
& FILE_ATTRIBUTE_ARCHIVE
)) {
1165 cli_setatr(cli
, rname
, attr
& ~(uint16
)FILE_ATTRIBUTE_ARCHIVE
, 0);
1169 struct timespec tp_end
;
1172 clock_gettime_mono(&tp_end
);
1173 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1174 get_total_time_ms
+= this_time
;
1175 get_total_size
+= nread
;
1177 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1178 nread
/ (1.024*this_time
+ 1.0e-4),
1179 get_total_size
/ (1.024*get_total_time_ms
)));
1182 TALLOC_FREE(targetname
);
1186 /****************************************************************************
1188 ****************************************************************************/
1190 static int cmd_get(void)
1192 TALLOC_CTX
*ctx
= talloc_tos();
1197 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1202 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1203 d_printf("get <filename> [localname]\n");
1206 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1210 rname
= clean_name(ctx
, rname
);
1215 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1220 return do_get(rname
, lname
, false);
1223 /****************************************************************************
1224 Do an mget operation on one file.
1225 ****************************************************************************/
1227 static NTSTATUS
do_mget(struct cli_state
*cli_state
, struct file_info
*finfo
,
1230 TALLOC_CTX
*ctx
= talloc_tos();
1231 NTSTATUS status
= NT_STATUS_OK
;
1234 char *saved_curdir
= NULL
;
1235 char *mget_mask
= NULL
;
1236 char *new_cd
= NULL
;
1239 return NT_STATUS_OK
;
1242 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1243 return NT_STATUS_OK
;
1246 d_printf("mget aborted\n");
1247 return NT_STATUS_UNSUCCESSFUL
;
1250 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1251 if (asprintf(&quest
,
1252 "Get directory %s? ",finfo
->name
) < 0) {
1253 return NT_STATUS_NO_MEMORY
;
1256 if (asprintf(&quest
,
1257 "Get file %s? ",finfo
->name
) < 0) {
1258 return NT_STATUS_NO_MEMORY
;
1262 if (prompt
&& !yesno(quest
)) {
1264 return NT_STATUS_OK
;
1268 if (!(finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
)) {
1269 rname
= talloc_asprintf(ctx
,
1271 client_get_cur_dir(),
1274 return NT_STATUS_NO_MEMORY
;
1276 do_get(rname
, finfo
->name
, false);
1278 return NT_STATUS_OK
;
1281 /* handle directories */
1282 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1283 if (!saved_curdir
) {
1284 return NT_STATUS_NO_MEMORY
;
1287 new_cd
= talloc_asprintf(ctx
,
1289 client_get_cur_dir(),
1293 return NT_STATUS_NO_MEMORY
;
1295 client_set_cur_dir(new_cd
);
1297 string_replace(finfo
->name
,'\\','/');
1299 if (!strlower_m(finfo
->name
)) {
1300 return NT_STATUS_INVALID_PARAMETER
;
1304 if (!directory_exist(finfo
->name
) &&
1305 mkdir(finfo
->name
,0777) != 0) {
1306 d_printf("failed to create directory %s\n",finfo
->name
);
1307 client_set_cur_dir(saved_curdir
);
1308 return map_nt_error_from_unix(errno
);
1311 if (chdir(finfo
->name
) != 0) {
1312 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1313 client_set_cur_dir(saved_curdir
);
1314 return map_nt_error_from_unix(errno
);
1317 mget_mask
= talloc_asprintf(ctx
,
1319 client_get_cur_dir());
1322 return NT_STATUS_NO_MEMORY
;
1325 status
= do_list(mget_mask
,
1326 (FILE_ATTRIBUTE_SYSTEM
1327 | FILE_ATTRIBUTE_HIDDEN
1328 | FILE_ATTRIBUTE_DIRECTORY
),
1329 do_mget
, false, true);
1330 if (!NT_STATUS_IS_OK(status
)
1331 && !NT_STATUS_EQUAL(status
, NT_STATUS_ACCESS_DENIED
)) {
1333 * Ignore access denied errors to ensure all permitted files are
1339 if (chdir("..") == -1) {
1340 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1342 return map_nt_error_from_unix(errno
);
1344 client_set_cur_dir(saved_curdir
);
1345 TALLOC_FREE(mget_mask
);
1346 TALLOC_FREE(saved_curdir
);
1347 TALLOC_FREE(new_cd
);
1348 return NT_STATUS_OK
;
1351 /****************************************************************************
1352 View the file using the pager.
1353 ****************************************************************************/
1355 static int cmd_more(void)
1357 TALLOC_CTX
*ctx
= talloc_tos();
1361 char *pager_cmd
= NULL
;
1367 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1372 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1376 mask
= umask(S_IRWXO
| S_IRWXG
);
1377 fd
= mkstemp(lname
);
1380 d_printf("failed to create temporary file for more\n");
1385 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1386 d_printf("more <filename>\n");
1390 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1394 rname
= clean_name(ctx
,rname
);
1399 rc
= do_get(rname
, lname
, false);
1401 pager
=getenv("PAGER");
1403 pager_cmd
= talloc_asprintf(ctx
,
1405 (pager
? pager
:PAGER
),
1410 if (system(pager_cmd
) == -1) {
1411 d_printf("system command '%s' returned -1\n",
1419 /****************************************************************************
1421 ****************************************************************************/
1423 static int cmd_mget(void)
1425 TALLOC_CTX
*ctx
= talloc_tos();
1426 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
1427 char *mget_mask
= NULL
;
1429 NTSTATUS status
= NT_STATUS_OK
;
1432 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
1437 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1439 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1443 if (*buf
== CLI_DIRSEP_CHAR
) {
1444 mget_mask
= talloc_strdup(ctx
, buf
);
1446 mget_mask
= talloc_asprintf_append(mget_mask
,
1452 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1453 if (!NT_STATUS_IS_OK(status
)) {
1458 if (mget_mask
== NULL
) {
1459 d_printf("nothing to mget\n");
1464 mget_mask
= talloc_asprintf(ctx
,
1466 client_get_cur_dir());
1470 status
= do_list(mget_mask
, attribute
, do_mget
, false, true);
1471 if (!NT_STATUS_IS_OK(status
)) {
1479 /****************************************************************************
1480 Make a directory of name "name".
1481 ****************************************************************************/
1483 static bool do_mkdir(const char *name
)
1485 TALLOC_CTX
*ctx
= talloc_tos();
1486 struct cli_state
*targetcli
;
1487 char *targetname
= NULL
;
1490 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
1492 if (!NT_STATUS_IS_OK(status
)) {
1493 d_printf("mkdir %s: %s\n", name
, nt_errstr(status
));
1497 status
= cli_mkdir(targetcli
, targetname
);
1498 if (!NT_STATUS_IS_OK(status
)) {
1499 d_printf("%s making remote directory %s\n",
1500 nt_errstr(status
),name
);
1507 /****************************************************************************
1508 Show 8.3 name of a file.
1509 ****************************************************************************/
1511 static bool do_altname(const char *name
)
1516 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1517 if (!NT_STATUS_IS_OK(status
)) {
1518 d_printf("%s getting alt name for %s\n",
1519 nt_errstr(status
),name
);
1522 d_printf("%s\n", altname
);
1527 /****************************************************************************
1529 ****************************************************************************/
1531 static int cmd_quit(void)
1539 /****************************************************************************
1541 ****************************************************************************/
1543 static int cmd_mkdir(void)
1545 TALLOC_CTX
*ctx
= talloc_tos();
1550 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1555 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1557 d_printf("mkdir <dirname>\n");
1561 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1569 struct cli_state
*targetcli
;
1570 char *targetname
= NULL
;
1574 ddir2
= talloc_strdup(ctx
, "");
1579 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
,
1580 &targetcli
, &targetname
);
1581 if (!NT_STATUS_IS_OK(status
)) {
1585 ddir
= talloc_strdup(ctx
, targetname
);
1589 trim_char(ddir
,'.','\0');
1590 p
= strtok_r(ddir
, "/\\", &saveptr
);
1592 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1596 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, ddir2
))) {
1599 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1603 p
= strtok_r(NULL
, "/\\", &saveptr
);
1612 /****************************************************************************
1614 ****************************************************************************/
1616 static int cmd_altname(void)
1618 TALLOC_CTX
*ctx
= talloc_tos();
1622 name
= talloc_strdup(ctx
, client_get_cur_dir());
1627 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1628 d_printf("altname <file>\n");
1631 name
= talloc_asprintf_append(name
, "%s", buf
);
1639 static char *attr_str(TALLOC_CTX
*mem_ctx
, uint16_t mode
)
1641 char *attrs
= talloc_zero_array(mem_ctx
, char, 17);
1644 if (!(mode
& FILE_ATTRIBUTE_NORMAL
)) {
1645 if (mode
& FILE_ATTRIBUTE_ENCRYPTED
) {
1648 if (mode
& FILE_ATTRIBUTE_NONINDEXED
) {
1651 if (mode
& FILE_ATTRIBUTE_OFFLINE
) {
1654 if (mode
& FILE_ATTRIBUTE_COMPRESSED
) {
1657 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1660 if (mode
& FILE_ATTRIBUTE_SPARSE
) {
1663 if (mode
& FILE_ATTRIBUTE_TEMPORARY
) {
1666 if (mode
& FILE_ATTRIBUTE_NORMAL
) {
1669 if (mode
& FILE_ATTRIBUTE_READONLY
) {
1672 if (mode
& FILE_ATTRIBUTE_HIDDEN
) {
1675 if (mode
& FILE_ATTRIBUTE_SYSTEM
) {
1678 if (mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1681 if (mode
& FILE_ATTRIBUTE_ARCHIVE
) {
1688 /****************************************************************************
1689 Show all info we can get
1690 ****************************************************************************/
1692 static int do_allinfo(const char *name
)
1695 struct timespec b_time
, a_time
, m_time
, c_time
;
1700 unsigned int num_streams
;
1701 struct stream_struct
*streams
;
1707 status
= cli_qpathinfo_alt_name(cli
, name
, altname
);
1708 if (!NT_STATUS_IS_OK(status
)) {
1709 d_printf("%s getting alt name for %s\n", nt_errstr(status
),
1712 * Ignore not supported or not implemented, it does not
1713 * hurt if we can't list alternate names.
1715 if (NT_STATUS_EQUAL(status
, NT_STATUS_NOT_SUPPORTED
) ||
1716 NT_STATUS_EQUAL(status
, NT_STATUS_NOT_IMPLEMENTED
)) {
1722 d_printf("altname: %s\n", altname
);
1724 status
= cli_qpathinfo3(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1725 &size
, &mode
, NULL
);
1726 if (!NT_STATUS_IS_OK(status
)) {
1727 d_printf("%s getting pathinfo for %s\n", nt_errstr(status
),
1732 unix_timespec_to_nt_time(&tmp
, b_time
);
1733 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1735 unix_timespec_to_nt_time(&tmp
, a_time
);
1736 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1738 unix_timespec_to_nt_time(&tmp
, m_time
);
1739 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1741 unix_timespec_to_nt_time(&tmp
, c_time
);
1742 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1744 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode
), mode
);
1746 status
= cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1748 if (!NT_STATUS_IS_OK(status
)) {
1749 d_printf("%s getting streams for %s\n", nt_errstr(status
),
1754 for (i
=0; i
<num_streams
; i
++) {
1755 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1756 (unsigned long long)streams
[i
].size
);
1759 if (mode
& FILE_ATTRIBUTE_REPARSE_POINT
) {
1760 char *subst
, *print
;
1763 status
= cli_readlink(cli
, name
, talloc_tos(), &subst
, &print
,
1765 if (!NT_STATUS_IS_OK(status
)) {
1766 d_fprintf(stderr
, "cli_readlink returned %s\n",
1769 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1770 subst
, print
, flags
);
1776 status
= cli_ntcreate(cli
, name
, 0,
1777 SEC_FILE_READ_DATA
| SEC_FILE_READ_ATTRIBUTE
|
1778 SEC_STD_SYNCHRONIZE
, 0,
1779 FILE_SHARE_READ
|FILE_SHARE_WRITE
1781 FILE_OPEN
, 0x0, 0x0, &fnum
, NULL
);
1782 if (!NT_STATUS_IS_OK(status
)) {
1784 * Ignore failure, it does not hurt if we can't list
1789 status
= cli_shadow_copy_data(talloc_tos(), cli
, fnum
,
1790 true, &snapshots
, &num_snapshots
);
1791 if (!NT_STATUS_IS_OK(status
)) {
1792 cli_close(cli
, fnum
);
1796 for (i
=0; i
<num_snapshots
; i
++) {
1799 d_printf("%s\n", snapshots
[i
]);
1800 snap_name
= talloc_asprintf(talloc_tos(), "%s%s",
1801 snapshots
[i
], name
);
1802 status
= cli_qpathinfo3(cli
, snap_name
, &b_time
, &a_time
,
1803 &m_time
, &c_time
, &size
,
1805 if (!NT_STATUS_IS_OK(status
)) {
1806 d_fprintf(stderr
, "pathinfo(%s) failed: %s\n",
1807 snap_name
, nt_errstr(status
));
1808 TALLOC_FREE(snap_name
);
1811 unix_timespec_to_nt_time(&tmp
, b_time
);
1812 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1813 unix_timespec_to_nt_time(&tmp
, a_time
);
1814 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1815 unix_timespec_to_nt_time(&tmp
, m_time
);
1816 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1817 unix_timespec_to_nt_time(&tmp
, c_time
);
1818 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1819 d_printf("size: %d\n", (int)size
);
1822 TALLOC_FREE(snapshots
);
1827 /****************************************************************************
1828 Show all info we can get
1829 ****************************************************************************/
1831 static int cmd_allinfo(void)
1833 TALLOC_CTX
*ctx
= talloc_tos();
1837 name
= talloc_strdup(ctx
, client_get_cur_dir());
1842 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1843 d_printf("allinfo <file>\n");
1846 name
= talloc_asprintf_append(name
, "%s", buf
);
1856 /****************************************************************************
1858 ****************************************************************************/
1860 static int do_put(const char *rname
, const char *lname
, bool reput
)
1862 TALLOC_CTX
*ctx
= talloc_tos();
1867 struct timespec tp_start
;
1868 struct cli_state
*targetcli
;
1869 char *targetname
= NULL
;
1870 struct push_state state
;
1873 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, rname
,
1874 &targetcli
, &targetname
);
1875 if (!NT_STATUS_IS_OK(status
)) {
1876 d_printf("Failed to open %s: %s\n", rname
, nt_errstr(status
));
1880 clock_gettime_mono(&tp_start
);
1883 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
);
1884 if (NT_STATUS_IS_OK(status
)) {
1885 if (!NT_STATUS_IS_OK(status
= cli_qfileinfo_basic(
1886 targetcli
, fnum
, NULL
,
1888 NULL
, NULL
, NULL
)) &&
1889 !NT_STATUS_IS_OK(status
= cli_getattrE(
1890 targetcli
, fnum
, NULL
,
1893 d_printf("getattrib: %s\n", nt_errstr(status
));
1898 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum
);
1901 if (!NT_STATUS_IS_OK(status
)) {
1902 d_printf("%s opening remote file %s\n", nt_errstr(status
),
1907 /* allow files to be piped into smbclient
1910 Note that in this case this function will exit(0) rather
1912 if (!strcmp(lname
, "-")) {
1914 /* size of file is not known */
1916 f
= x_fopen(lname
,O_RDONLY
, 0);
1918 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1919 d_printf("Error seeking local file\n");
1927 d_printf("Error opening local file %s\n",lname
);
1931 DEBUG(1,("putting file %s as %s ",lname
,
1934 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1939 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1941 if (!NT_STATUS_IS_OK(status
)) {
1942 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1946 status
= cli_close(targetcli
, fnum
);
1947 if (!NT_STATUS_IS_OK(status
)) {
1948 d_printf("%s closing remote file %s\n", nt_errstr(status
),
1961 struct timespec tp_end
;
1964 clock_gettime_mono(&tp_end
);
1965 this_time
= nsec_time_diff(&tp_end
,&tp_start
)/1000000;
1966 put_total_time_ms
+= this_time
;
1967 put_total_size
+= state
.nread
;
1969 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1970 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1971 put_total_size
/ (1.024*put_total_time_ms
)));
1982 /****************************************************************************
1984 ****************************************************************************/
1986 static int cmd_put(void)
1988 TALLOC_CTX
*ctx
= talloc_tos();
1993 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1998 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1999 d_printf("put <filename>\n");
2003 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2004 rname
= talloc_asprintf_append(rname
, "%s", buf
);
2006 rname
= talloc_asprintf_append(rname
, "%s", lname
);
2012 rname
= clean_name(ctx
, rname
);
2019 /* allow '-' to represent stdin
2020 jdblair, 24.jun.98 */
2021 if (!file_exist_stat(lname
, &st
, false) &&
2022 (strcmp(lname
,"-"))) {
2023 d_printf("%s does not exist\n",lname
);
2028 return do_put(rname
, lname
, false);
2031 /*************************************
2032 File list structure.
2033 *************************************/
2035 static struct file_list
{
2036 struct file_list
*prev
, *next
;
2041 /****************************************************************************
2042 Free a file_list structure.
2043 ****************************************************************************/
2045 static void free_file_list (struct file_list
*l_head
)
2047 struct file_list
*list
, *next
;
2049 for (list
= l_head
; list
; list
= next
) {
2051 DLIST_REMOVE(l_head
, list
);
2052 SAFE_FREE(list
->file_path
);
2057 /****************************************************************************
2058 Seek in a directory/file list until you get something that doesn't start with
2060 ****************************************************************************/
2062 static bool seek_list(struct file_list
*list
, char *name
)
2065 trim_string(list
->file_path
,"./","\n");
2066 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
2075 /****************************************************************************
2076 Set the file selection mask.
2077 ****************************************************************************/
2079 static int cmd_select(void)
2081 TALLOC_CTX
*ctx
= talloc_tos();
2082 char *new_fs
= NULL
;
2083 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
2086 client_set_fileselection(new_fs
);
2088 client_set_fileselection("");
2093 /****************************************************************************
2094 Recursive file matching function act as find
2095 match must be always set to true when calling this function
2096 ****************************************************************************/
2098 static int file_find(struct file_list
**list
, const char *directory
,
2099 const char *expression
, bool match
)
2102 struct file_list
*entry
;
2103 struct stat statbuf
;
2109 dir
= opendir(directory
);
2113 while ((dname
= readdirname(dir
))) {
2114 if (!strcmp("..", dname
))
2116 if (!strcmp(".", dname
))
2119 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
2124 if (!match
|| !gen_fnmatch(expression
, dname
)) {
2126 ret
= stat(path
, &statbuf
);
2128 if (S_ISDIR(statbuf
.st_mode
)) {
2130 ret
= file_find(list
, path
, expression
, false);
2133 d_printf("file_find: cannot stat file %s\n", path
);
2142 entry
= SMB_MALLOC_P(struct file_list
);
2144 d_printf("Out of memory in file_find\n");
2148 entry
->file_path
= path
;
2149 entry
->isdir
= isdir
;
2150 DLIST_ADD(*list
, entry
);
2160 /****************************************************************************
2162 ****************************************************************************/
2164 static int cmd_mput(void)
2166 TALLOC_CTX
*ctx
= talloc_tos();
2169 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
2171 struct file_list
*temp_list
;
2172 char *quest
, *lname
, *rname
;
2176 ret
= file_find(&file_list
, ".", p
, true);
2178 free_file_list(file_list
);
2186 for (temp_list
= file_list
; temp_list
;
2187 temp_list
= temp_list
->next
) {
2190 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
2193 trim_string(lname
, "./", "/");
2195 /* check if it's a directory */
2196 if (temp_list
->isdir
) {
2197 /* if (!recurse) continue; */
2200 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
2203 if (prompt
&& !yesno(quest
)) { /* No */
2204 /* Skip the directory */
2205 lname
[strlen(lname
)-1] = '/';
2206 if (!seek_list(temp_list
, lname
))
2210 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2213 normalize_name(rname
);
2214 if (!NT_STATUS_IS_OK(cli_chkpath(cli
, rname
)) &&
2216 DEBUG (0, ("Unable to make dir, skipping..."));
2217 /* Skip the directory */
2218 lname
[strlen(lname
)-1] = '/';
2219 if (!seek_list(temp_list
, lname
)) {
2227 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
2230 if (prompt
&& !yesno(quest
)) {
2237 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2242 normalize_name(rname
);
2244 do_put(rname
, lname
, false);
2246 free_file_list(file_list
);
2255 /****************************************************************************
2257 ****************************************************************************/
2259 static int do_cancel(int job
)
2261 if (cli_printjob_del(cli
, job
)) {
2262 d_printf("Job %d cancelled\n",job
);
2265 NTSTATUS status
= cli_nt_error(cli
);
2266 d_printf("Error cancelling job %d : %s\n",
2267 job
, nt_errstr(status
));
2272 /****************************************************************************
2274 ****************************************************************************/
2276 static int cmd_cancel(void)
2278 TALLOC_CTX
*ctx
= talloc_tos();
2282 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2283 d_printf("cancel <jobid> ...\n");
2289 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2294 /****************************************************************************
2296 ****************************************************************************/
2298 static int cmd_print(void)
2300 TALLOC_CTX
*ctx
= talloc_tos();
2305 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2306 d_printf("print <filename>\n");
2310 rname
= talloc_strdup(ctx
, lname
);
2314 p
= strrchr_m(rname
,'/');
2316 rname
= talloc_asprintf(ctx
,
2321 if (strequal(lname
,"-")) {
2322 rname
= talloc_asprintf(ctx
,
2330 return do_put(rname
, lname
, false);
2333 /****************************************************************************
2334 Show a print queue entry.
2335 ****************************************************************************/
2337 static void queue_fn(struct print_job_info
*p
)
2339 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2342 /****************************************************************************
2344 ****************************************************************************/
2346 static int cmd_queue(void)
2348 cli_print_queue(cli
, queue_fn
);
2352 /****************************************************************************
2354 ****************************************************************************/
2356 static NTSTATUS
do_del(struct cli_state
*cli_state
, struct file_info
*finfo
,
2359 TALLOC_CTX
*ctx
= talloc_tos();
2363 mask
= talloc_asprintf(ctx
,
2369 return NT_STATUS_NO_MEMORY
;
2372 if (finfo
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
2374 return NT_STATUS_OK
;
2377 status
= cli_unlink(cli_state
, mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
);
2378 if (!NT_STATUS_IS_OK(status
)) {
2379 d_printf("%s deleting remote file %s\n",
2380 nt_errstr(status
), mask
);
2386 /****************************************************************************
2388 ****************************************************************************/
2390 static int cmd_del(void)
2392 TALLOC_CTX
*ctx
= talloc_tos();
2395 NTSTATUS status
= NT_STATUS_OK
;
2396 uint16 attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
2399 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
2402 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2406 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2407 d_printf("del <filename>\n");
2410 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2415 status
= do_list(mask
,attribute
,do_del
,false,false);
2416 if (!NT_STATUS_IS_OK(status
)) {
2422 /****************************************************************************
2423 Wildcard delete some files.
2424 ****************************************************************************/
2426 static int cmd_wdel(void)
2428 TALLOC_CTX
*ctx
= talloc_tos();
2432 struct cli_state
*targetcli
;
2433 char *targetname
= NULL
;
2436 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2437 d_printf("wdel 0x<attrib> <wcard>\n");
2441 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2443 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2444 d_printf("wdel 0x<attrib> <wcard>\n");
2448 mask
= talloc_asprintf(ctx
, "%s%s",
2449 client_get_cur_dir(),
2455 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2457 if (!NT_STATUS_IS_OK(status
)) {
2458 d_printf("cmd_wdel %s: %s\n", mask
, nt_errstr(status
));
2462 status
= cli_unlink(targetcli
, targetname
, attribute
);
2463 if (!NT_STATUS_IS_OK(status
)) {
2464 d_printf("%s deleting remote files %s\n", nt_errstr(status
),
2470 /****************************************************************************
2471 ****************************************************************************/
2473 static int cmd_open(void)
2475 TALLOC_CTX
*ctx
= talloc_tos();
2478 char *targetname
= NULL
;
2479 struct cli_state
*targetcli
;
2480 uint16_t fnum
= (uint16_t)-1;
2483 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2484 d_printf("open <filename>\n");
2487 mask
= talloc_asprintf(ctx
,
2489 client_get_cur_dir(),
2495 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2497 if (!NT_STATUS_IS_OK(status
)) {
2498 d_printf("open %s: %s\n", mask
, nt_errstr(status
));
2502 status
= cli_ntcreate(targetcli
, targetname
, 0,
2503 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
2504 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2505 0x0, 0x0, &fnum
, NULL
);
2506 if (!NT_STATUS_IS_OK(status
)) {
2507 status
= cli_ntcreate(targetcli
, targetname
, 0,
2509 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
,
2510 0x0, 0x0, &fnum
, NULL
);
2511 if (NT_STATUS_IS_OK(status
)) {
2512 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2514 d_printf("Failed to open file %s. %s\n",
2515 targetname
, nt_errstr(status
));
2518 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2523 static int cmd_posix_encrypt(void)
2525 TALLOC_CTX
*ctx
= talloc_tos();
2526 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2528 if (cli
->use_kerberos
) {
2529 status
= cli_gss_smb_encryption_start(cli
);
2531 char *domain
= NULL
;
2533 char *password
= NULL
;
2535 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2536 d_printf("posix_encrypt domain user password\n");
2540 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2541 d_printf("posix_encrypt domain user password\n");
2545 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2546 d_printf("posix_encrypt domain user password\n");
2550 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2556 if (!NT_STATUS_IS_OK(status
)) {
2557 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2559 d_printf("encryption on\n");
2566 /****************************************************************************
2567 ****************************************************************************/
2569 static int cmd_posix_open(void)
2571 TALLOC_CTX
*ctx
= talloc_tos();
2574 char *targetname
= NULL
;
2575 struct cli_state
*targetcli
;
2580 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2581 d_printf("posix_open <filename> 0<mode>\n");
2584 mask
= talloc_asprintf(ctx
,
2586 client_get_cur_dir(),
2592 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2593 d_printf("posix_open <filename> 0<mode>\n");
2596 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2598 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2600 if (!NT_STATUS_IS_OK(status
)) {
2601 d_printf("posix_open %s: %s\n", mask
, nt_errstr(status
));
2605 status
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
,
2607 if (!NT_STATUS_IS_OK(status
)) {
2608 status
= cli_posix_open(targetcli
, targetname
,
2609 O_CREAT
|O_RDONLY
, mode
, &fnum
);
2610 if (!NT_STATUS_IS_OK(status
)) {
2611 d_printf("Failed to open file %s. %s\n", targetname
,
2614 d_printf("posix_open file %s: for readonly fnum %d\n",
2618 d_printf("posix_open file %s: for read/write fnum %d\n",
2625 static int cmd_posix_mkdir(void)
2627 TALLOC_CTX
*ctx
= talloc_tos();
2630 char *targetname
= NULL
;
2631 struct cli_state
*targetcli
;
2635 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2636 d_printf("posix_mkdir <filename> 0<mode>\n");
2639 mask
= talloc_asprintf(ctx
,
2641 client_get_cur_dir(),
2647 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2648 d_printf("posix_mkdir <filename> 0<mode>\n");
2651 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2653 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2655 if (!NT_STATUS_IS_OK(status
)) {
2656 d_printf("posix_mkdir %s: %s\n", mask
, nt_errstr(status
));
2660 status
= cli_posix_mkdir(targetcli
, targetname
, mode
);
2661 if (!NT_STATUS_IS_OK(status
)) {
2662 d_printf("Failed to open file %s. %s\n",
2663 targetname
, nt_errstr(status
));
2665 d_printf("posix_mkdir created directory %s\n", targetname
);
2670 static int cmd_posix_unlink(void)
2672 TALLOC_CTX
*ctx
= talloc_tos();
2675 char *targetname
= NULL
;
2676 struct cli_state
*targetcli
;
2679 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2680 d_printf("posix_unlink <filename>\n");
2683 mask
= talloc_asprintf(ctx
,
2685 client_get_cur_dir(),
2691 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2693 if (!NT_STATUS_IS_OK(status
)) {
2694 d_printf("posix_unlink %s: %s\n", mask
, nt_errstr(status
));
2698 status
= cli_posix_unlink(targetcli
, targetname
);
2699 if (!NT_STATUS_IS_OK(status
)) {
2700 d_printf("Failed to unlink file %s. %s\n",
2701 targetname
, nt_errstr(status
));
2703 d_printf("posix_unlink deleted file %s\n", targetname
);
2709 static int cmd_posix_rmdir(void)
2711 TALLOC_CTX
*ctx
= talloc_tos();
2714 char *targetname
= NULL
;
2715 struct cli_state
*targetcli
;
2718 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2719 d_printf("posix_rmdir <filename>\n");
2722 mask
= talloc_asprintf(ctx
,
2724 client_get_cur_dir(),
2730 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2732 if (!NT_STATUS_IS_OK(status
)) {
2733 d_printf("posix_rmdir %s: %s\n", mask
, nt_errstr(status
));
2737 status
= cli_posix_rmdir(targetcli
, targetname
);
2738 if (!NT_STATUS_IS_OK(status
)) {
2739 d_printf("Failed to unlink directory %s. %s\n",
2740 targetname
, nt_errstr(status
));
2742 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2748 static int cmd_close(void)
2750 TALLOC_CTX
*ctx
= talloc_tos();
2755 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2756 d_printf("close <fnum>\n");
2761 /* We really should use the targetcli here.... */
2762 status
= cli_close(cli
, fnum
);
2763 if (!NT_STATUS_IS_OK(status
)) {
2764 d_printf("close %d: %s\n", fnum
, nt_errstr(status
));
2770 static int cmd_posix(void)
2772 TALLOC_CTX
*ctx
= talloc_tos();
2773 uint16 major
, minor
;
2774 uint32 caplow
, caphigh
;
2778 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2779 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2783 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
2785 if (!NT_STATUS_IS_OK(status
)) {
2786 d_printf("Can't get UNIX CIFS extensions version from "
2787 "server: %s\n", nt_errstr(status
));
2791 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2793 caps
= talloc_strdup(ctx
, "");
2797 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2798 caps
= talloc_asprintf_append(caps
, "locks ");
2803 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2804 caps
= talloc_asprintf_append(caps
, "acls ");
2809 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2810 caps
= talloc_asprintf_append(caps
, "eas ");
2815 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2816 caps
= talloc_asprintf_append(caps
, "pathnames ");
2821 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2822 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2827 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2828 caps
= talloc_asprintf_append(caps
, "large_read ");
2833 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2834 caps
= talloc_asprintf_append(caps
, "large_write ");
2839 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2840 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2845 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2846 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2852 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2853 caps
[strlen(caps
)-1] = '\0';
2856 d_printf("Server supports CIFS capabilities %s\n", caps
);
2858 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
2860 if (!NT_STATUS_IS_OK(status
)) {
2861 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2866 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2867 CLI_DIRSEP_CHAR
= '/';
2868 *CLI_DIRSEP_STR
= '/';
2869 client_set_cur_dir(CLI_DIRSEP_STR
);
2875 static int cmd_lock(void)
2877 TALLOC_CTX
*ctx
= talloc_tos();
2879 uint64_t start
, len
;
2880 enum brl_type lock_type
;
2884 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2885 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2890 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2891 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2895 if (*buf
== 'r' || *buf
== 'R') {
2896 lock_type
= READ_LOCK
;
2897 } else if (*buf
== 'w' || *buf
== 'W') {
2898 lock_type
= WRITE_LOCK
;
2900 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2904 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2905 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2909 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2911 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2912 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2916 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2918 status
= cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
);
2919 if (!NT_STATUS_IS_OK(status
)) {
2920 d_printf("lock failed %d: %s\n", fnum
, nt_errstr(status
));
2926 static int cmd_unlock(void)
2928 TALLOC_CTX
*ctx
= talloc_tos();
2930 uint64_t start
, len
;
2934 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2935 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2940 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2941 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2945 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2947 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2948 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2952 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2954 status
= cli_posix_unlock(cli
, fnum
, start
, len
);
2955 if (!NT_STATUS_IS_OK(status
)) {
2956 d_printf("unlock failed %d: %s\n", fnum
, nt_errstr(status
));
2963 /****************************************************************************
2965 ****************************************************************************/
2967 static int cmd_rmdir(void)
2969 TALLOC_CTX
*ctx
= talloc_tos();
2972 char *targetname
= NULL
;
2973 struct cli_state
*targetcli
;
2976 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2977 d_printf("rmdir <dirname>\n");
2980 mask
= talloc_asprintf(ctx
,
2982 client_get_cur_dir(),
2988 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
,
2990 if (!NT_STATUS_IS_OK(status
)) {
2991 d_printf("rmdir %s: %s\n", mask
, nt_errstr(status
));
2995 status
= cli_rmdir(targetcli
, targetname
);
2996 if (!NT_STATUS_IS_OK(status
)) {
2997 d_printf("%s removing remote directory file %s\n",
2998 nt_errstr(status
), mask
);
3004 /****************************************************************************
3006 ****************************************************************************/
3008 static int cmd_link(void)
3010 TALLOC_CTX
*ctx
= talloc_tos();
3011 char *oldname
= NULL
;
3012 char *newname
= NULL
;
3015 char *targetname
= NULL
;
3016 struct cli_state
*targetcli
;
3019 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3020 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3021 d_printf("link <oldname> <newname>\n");
3024 oldname
= talloc_asprintf(ctx
,
3026 client_get_cur_dir(),
3031 newname
= talloc_asprintf(ctx
,
3033 client_get_cur_dir(),
3039 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
,
3041 if (!NT_STATUS_IS_OK(status
)) {
3042 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3046 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3047 d_printf("Server doesn't support UNIX CIFS calls.\n");
3051 status
= cli_posix_hardlink(targetcli
, targetname
, newname
);
3052 if (!NT_STATUS_IS_OK(status
)) {
3053 d_printf("%s linking files (%s -> %s)\n",
3054 nt_errstr(status
), newname
, oldname
);
3060 /****************************************************************************
3062 ****************************************************************************/
3064 static int cmd_readlink(void)
3066 TALLOC_CTX
*ctx
= talloc_tos();
3069 char *targetname
= NULL
;
3070 char linkname
[PATH_MAX
+1];
3071 struct cli_state
*targetcli
;
3074 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3075 d_printf("readlink <name>\n");
3078 name
= talloc_asprintf(ctx
,
3080 client_get_cur_dir(),
3086 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
,
3088 if (!NT_STATUS_IS_OK(status
)) {
3089 d_printf("readlink %s: %s\n", name
, nt_errstr(status
));
3093 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3094 d_printf("Server doesn't support UNIX CIFS calls.\n");
3098 status
= cli_posix_readlink(targetcli
, name
, linkname
, PATH_MAX
+1);
3099 if (!NT_STATUS_IS_OK(status
)) {
3100 d_printf("%s readlink on file %s\n",
3101 nt_errstr(status
), name
);
3105 d_printf("%s -> %s\n", name
, linkname
);
3111 /****************************************************************************
3113 ****************************************************************************/
3115 static int cmd_symlink(void)
3117 TALLOC_CTX
*ctx
= talloc_tos();
3118 char *oldname
= NULL
;
3119 char *newname
= NULL
;
3122 struct cli_state
*newcli
;
3125 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3126 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3127 d_printf("symlink <oldname> <newname>\n");
3130 /* Oldname (link target) must be an untouched blob. */
3133 if (SERVER_HAS_UNIX_CIFS(cli
)) {
3134 newname
= talloc_asprintf(ctx
, "%s%s", client_get_cur_dir(),
3139 /* New name must be present in share namespace. */
3140 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, newname
,
3142 if (!NT_STATUS_IS_OK(status
)) {
3143 d_printf("link %s: %s\n", oldname
, nt_errstr(status
));
3146 status
= cli_posix_symlink(newcli
, oldname
, newname
);
3148 status
= cli_symlink(
3150 buf2
[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE
);
3153 if (!NT_STATUS_IS_OK(status
)) {
3154 d_printf("%s symlinking files (%s -> %s)\n",
3155 nt_errstr(status
), oldname
, newname
);
3162 /****************************************************************************
3164 ****************************************************************************/
3166 static int cmd_chmod(void)
3168 TALLOC_CTX
*ctx
= talloc_tos();
3172 char *targetname
= NULL
;
3173 struct cli_state
*targetcli
;
3177 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3178 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3179 d_printf("chmod mode file\n");
3182 src
= talloc_asprintf(ctx
,
3184 client_get_cur_dir(),
3190 mode
= (mode_t
)strtol(buf
, NULL
, 8);
3192 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3194 if (!NT_STATUS_IS_OK(status
)) {
3195 d_printf("chmod %s: %s\n", src
, nt_errstr(status
));
3199 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3200 d_printf("Server doesn't support UNIX CIFS calls.\n");
3204 status
= cli_posix_chmod(targetcli
, targetname
, mode
);
3205 if (!NT_STATUS_IS_OK(status
)) {
3206 d_printf("%s chmod file %s 0%o\n",
3207 nt_errstr(status
), src
, (unsigned int)mode
);
3214 static const char *filetype_to_str(mode_t mode
)
3216 if (S_ISREG(mode
)) {
3217 return "regular file";
3218 } else if (S_ISDIR(mode
)) {
3222 if (S_ISCHR(mode
)) {
3223 return "character device";
3227 if (S_ISBLK(mode
)) {
3228 return "block device";
3232 if (S_ISFIFO(mode
)) {
3237 if (S_ISLNK(mode
)) {
3238 return "symbolic link";
3242 if (S_ISSOCK(mode
)) {
3249 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
3258 static char *unix_mode_to_str(char *s
, mode_t m
)
3261 const char *str
= filetype_to_str(m
);
3277 *p
++ = str
[1] == 'y' ? 'l' : 's';
3284 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
3285 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
3286 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
3287 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
3288 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
3289 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
3290 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
3291 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
3292 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
3297 /****************************************************************************
3298 Utility function for UNIX getfacl.
3299 ****************************************************************************/
3301 static char *perms_to_string(fstring permstr
, unsigned char perms
)
3303 fstrcpy(permstr
, "---");
3304 if (perms
& SMB_POSIX_ACL_READ
) {
3307 if (perms
& SMB_POSIX_ACL_WRITE
) {
3310 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
3316 /****************************************************************************
3318 ****************************************************************************/
3320 static int cmd_getfacl(void)
3322 TALLOC_CTX
*ctx
= talloc_tos();
3325 char *targetname
= NULL
;
3326 struct cli_state
*targetcli
;
3327 uint16 major
, minor
;
3328 uint32 caplow
, caphigh
;
3329 char *retbuf
= NULL
;
3331 SMB_STRUCT_STAT sbuf
;
3332 uint16 num_file_acls
= 0;
3333 uint16 num_dir_acls
= 0;
3337 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3338 d_printf("getfacl filename\n");
3341 src
= talloc_asprintf(ctx
,
3343 client_get_cur_dir(),
3349 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3351 if (!NT_STATUS_IS_OK(status
)) {
3352 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3356 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3357 d_printf("Server doesn't support UNIX CIFS calls.\n");
3361 status
= cli_unix_extensions_version(targetcli
, &major
, &minor
,
3363 if (!NT_STATUS_IS_OK(status
)) {
3364 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3369 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
3370 d_printf("This server supports UNIX extensions "
3371 "but doesn't support POSIX ACLs.\n");
3375 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3376 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3377 d_printf("%s getfacl doing a stat on file %s\n",
3378 nt_errstr(status
), src
);
3382 status
= cli_posix_getfacl(targetcli
, targetname
, ctx
, &rb_size
, &retbuf
);
3383 if (!NT_STATUS_IS_OK(status
)) {
3384 d_printf("%s getfacl file %s\n",
3385 nt_errstr(status
), src
);
3389 /* ToDo : Print out the ACL values. */
3390 if (rb_size
< 6 || SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
) {
3391 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3392 src
, (unsigned int)CVAL(retbuf
,0) );
3396 num_file_acls
= SVAL(retbuf
,2);
3397 num_dir_acls
= SVAL(retbuf
,4);
3398 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3399 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3401 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3402 (unsigned int)rb_size
);
3406 d_printf("# file: %s\n", src
);
3407 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_ex_uid
, (unsigned int)sbuf
.st_ex_gid
);
3409 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3410 d_printf("No acls found.\n");
3413 for (i
= 0; i
< num_file_acls
; i
++) {
3416 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3417 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3420 case SMB_POSIX_ACL_USER_OBJ
:
3423 case SMB_POSIX_ACL_USER
:
3424 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3425 d_printf("user:%u:", uorg
);
3427 case SMB_POSIX_ACL_GROUP_OBJ
:
3428 d_printf("group::");
3430 case SMB_POSIX_ACL_GROUP
:
3431 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3432 d_printf("group:%u:", uorg
);
3434 case SMB_POSIX_ACL_MASK
:
3437 case SMB_POSIX_ACL_OTHER
:
3438 d_printf("other::");
3441 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3442 src
, (unsigned int)tagtype
);
3447 d_printf("%s\n", perms_to_string(permstring
, perms
));
3450 for (i
= 0; i
< num_dir_acls
; i
++) {
3453 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3454 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3457 case SMB_POSIX_ACL_USER_OBJ
:
3458 d_printf("default:user::");
3460 case SMB_POSIX_ACL_USER
:
3461 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3462 d_printf("default:user:%u:", uorg
);
3464 case SMB_POSIX_ACL_GROUP_OBJ
:
3465 d_printf("default:group::");
3467 case SMB_POSIX_ACL_GROUP
:
3468 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3469 d_printf("default:group:%u:", uorg
);
3471 case SMB_POSIX_ACL_MASK
:
3472 d_printf("default:mask::");
3474 case SMB_POSIX_ACL_OTHER
:
3475 d_printf("default:other::");
3478 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3479 src
, (unsigned int)tagtype
);
3484 d_printf("%s\n", perms_to_string(permstring
, perms
));
3490 /****************************************************************************
3491 Get the EA list of a file
3492 ****************************************************************************/
3494 static int cmd_geteas(void)
3496 TALLOC_CTX
*ctx
= talloc_tos();
3499 char *targetname
= NULL
;
3500 struct cli_state
*targetcli
;
3503 struct ea_struct
*eas
;
3505 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3506 d_printf("geteas filename\n");
3509 src
= talloc_asprintf(ctx
,
3511 client_get_cur_dir(),
3517 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3519 if (!NT_STATUS_IS_OK(status
)) {
3520 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3524 status
= cli_get_ea_list_path(targetcli
, targetname
, talloc_tos(),
3526 if (!NT_STATUS_IS_OK(status
)) {
3527 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status
));
3531 for (i
=0; i
<num_eas
; i
++) {
3532 d_printf("%s (%d) =\n", eas
[i
].name
, (int)eas
[i
].flags
);
3533 dump_data_file(eas
[i
].value
.data
, eas
[i
].value
.length
, false,
3543 /****************************************************************************
3545 ****************************************************************************/
3547 static int cmd_setea(void)
3549 TALLOC_CTX
*ctx
= talloc_tos();
3552 char *eaname
= NULL
;
3553 char *eavalue
= NULL
;
3554 char *targetname
= NULL
;
3555 struct cli_state
*targetcli
;
3558 if (!next_token_talloc(ctx
, &cmd_ptr
, &name
, NULL
)
3559 || !next_token_talloc(ctx
, &cmd_ptr
, &eaname
, NULL
)) {
3560 d_printf("setea filename eaname value\n");
3563 if (!next_token_talloc(ctx
, &cmd_ptr
, &eavalue
, NULL
)) {
3564 eavalue
= talloc_strdup(ctx
, "");
3566 src
= talloc_asprintf(ctx
,
3568 client_get_cur_dir(),
3574 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3576 if (!NT_STATUS_IS_OK(status
)) {
3577 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3581 status
= cli_set_ea_path(targetcli
, targetname
, eaname
, eavalue
,
3583 if (!NT_STATUS_IS_OK(status
)) {
3584 d_printf("set_ea %s: %s\n", src
, nt_errstr(status
));
3591 /****************************************************************************
3593 ****************************************************************************/
3595 static int cmd_stat(void)
3597 TALLOC_CTX
*ctx
= talloc_tos();
3600 char *targetname
= NULL
;
3601 struct cli_state
*targetcli
;
3603 SMB_STRUCT_STAT sbuf
;
3608 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3609 d_printf("stat file\n");
3612 src
= talloc_asprintf(ctx
,
3614 client_get_cur_dir(),
3620 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3622 if (!NT_STATUS_IS_OK(status
)) {
3623 d_printf("stat %s: %s\n", src
, nt_errstr(status
));
3627 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3628 d_printf("Server doesn't support UNIX CIFS calls.\n");
3632 status
= cli_posix_stat(targetcli
, targetname
, &sbuf
);
3633 if (!NT_STATUS_IS_OK(status
)) {
3634 d_printf("%s stat file %s\n",
3635 nt_errstr(status
), src
);
3639 /* Print out the stat values. */
3640 d_printf("File: %s\n", src
);
3641 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3642 (double)sbuf
.st_ex_size
,
3643 (unsigned int)sbuf
.st_ex_blocks
,
3644 filetype_to_str(sbuf
.st_ex_mode
));
3646 #if defined(S_ISCHR) && defined(S_ISBLK)
3647 if (S_ISCHR(sbuf
.st_ex_mode
) || S_ISBLK(sbuf
.st_ex_mode
)) {
3648 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3649 (double)sbuf
.st_ex_ino
,
3650 (unsigned int)sbuf
.st_ex_nlink
,
3651 unix_dev_major(sbuf
.st_ex_rdev
),
3652 unix_dev_minor(sbuf
.st_ex_rdev
));
3655 d_printf("Inode: %.0f\tLinks: %u\n",
3656 (double)sbuf
.st_ex_ino
,
3657 (unsigned int)sbuf
.st_ex_nlink
);
3659 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3660 ((int)sbuf
.st_ex_mode
& 0777),
3661 unix_mode_to_str(mode_str
, sbuf
.st_ex_mode
),
3662 (unsigned int)sbuf
.st_ex_uid
,
3663 (unsigned int)sbuf
.st_ex_gid
);
3665 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_atime
);
3666 lt
= localtime(&tmp_time
);
3668 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3670 fstrcpy(mode_str
, "unknown");
3672 d_printf("Access: %s\n", mode_str
);
3674 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3675 lt
= localtime(&tmp_time
);
3677 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3679 fstrcpy(mode_str
, "unknown");
3681 d_printf("Modify: %s\n", mode_str
);
3683 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_ctime
);
3684 lt
= localtime(&tmp_time
);
3686 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3688 fstrcpy(mode_str
, "unknown");
3690 d_printf("Change: %s\n", mode_str
);
3696 /****************************************************************************
3698 ****************************************************************************/
3700 static int cmd_chown(void)
3702 TALLOC_CTX
*ctx
= talloc_tos();
3706 char *buf
, *buf2
, *buf3
;
3707 struct cli_state
*targetcli
;
3708 char *targetname
= NULL
;
3711 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3712 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3713 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3714 d_printf("chown uid gid file\n");
3718 uid
= (uid_t
)atoi(buf
);
3719 gid
= (gid_t
)atoi(buf2
);
3721 src
= talloc_asprintf(ctx
,
3723 client_get_cur_dir(),
3728 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3730 if (!NT_STATUS_IS_OK(status
)) {
3731 d_printf("chown %s: %s\n", src
, nt_errstr(status
));
3735 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3736 d_printf("Server doesn't support UNIX CIFS calls.\n");
3740 status
= cli_posix_chown(targetcli
, targetname
, uid
, gid
);
3741 if (!NT_STATUS_IS_OK(status
)) {
3742 d_printf("%s chown file %s uid=%d, gid=%d\n",
3743 nt_errstr(status
), src
, (int)uid
, (int)gid
);
3750 /****************************************************************************
3752 ****************************************************************************/
3754 static int cmd_rename(void)
3756 TALLOC_CTX
*ctx
= talloc_tos();
3759 struct cli_state
*targetcli
;
3764 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3765 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3766 d_printf("rename <src> <dest>\n");
3770 src
= talloc_asprintf(ctx
,
3772 client_get_cur_dir(),
3778 dest
= talloc_asprintf(ctx
,
3780 client_get_cur_dir(),
3786 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3788 if (!NT_STATUS_IS_OK(status
)) {
3789 d_printf("rename %s: %s\n", src
, nt_errstr(status
));
3793 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dest
, &targetcli
,
3795 if (!NT_STATUS_IS_OK(status
)) {
3796 d_printf("rename %s: %s\n", dest
, nt_errstr(status
));
3800 status
= cli_rename(targetcli
, targetsrc
, targetdest
);
3801 if (!NT_STATUS_IS_OK(status
)) {
3802 d_printf("%s renaming files %s -> %s \n",
3812 /****************************************************************************
3813 Print the volume name.
3814 ****************************************************************************/
3816 static int cmd_volume(void)
3819 uint32_t serial_num
;
3823 status
= cli_get_fs_volume_info(cli
, talloc_tos(),
3824 &volname
, &serial_num
,
3826 if (!NT_STATUS_IS_OK(status
)) {
3827 d_printf("Error %s getting volume info\n", nt_errstr(status
));
3831 d_printf("Volume: |%s| serial number 0x%x\n",
3832 volname
, (unsigned int)serial_num
);
3836 /****************************************************************************
3837 Hard link files using the NT call.
3838 ****************************************************************************/
3840 static int cmd_hardlink(void)
3842 TALLOC_CTX
*ctx
= talloc_tos();
3845 struct cli_state
*targetcli
;
3849 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3850 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3851 d_printf("hardlink <src> <dest>\n");
3855 src
= talloc_asprintf(ctx
,
3857 client_get_cur_dir(),
3863 dest
= talloc_asprintf(ctx
,
3865 client_get_cur_dir(),
3871 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
,
3873 if (!NT_STATUS_IS_OK(status
)) {
3874 d_printf("hardlink %s: %s\n", src
, nt_errstr(status
));
3878 status
= cli_nt_hardlink(targetcli
, targetname
, dest
);
3879 if (!NT_STATUS_IS_OK(status
)) {
3880 d_printf("%s doing an NT hard link of files\n",
3888 /****************************************************************************
3889 Toggle the prompt flag.
3890 ****************************************************************************/
3892 static int cmd_prompt(void)
3895 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3899 /****************************************************************************
3900 Set the newer than time.
3901 ****************************************************************************/
3903 static int cmd_newer(void)
3905 TALLOC_CTX
*ctx
= talloc_tos();
3908 SMB_STRUCT_STAT sbuf
;
3910 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3911 if (ok
&& (sys_stat(buf
, &sbuf
, false) == 0)) {
3912 newer_than
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3913 DEBUG(1,("Getting files newer than %s",
3914 time_to_asc(newer_than
)));
3919 if (ok
&& newer_than
== 0) {
3920 d_printf("Error setting newer-than time\n");
3927 /****************************************************************************
3928 Watch directory changes
3929 ****************************************************************************/
3931 static int cmd_notify(void)
3933 TALLOC_CTX
*frame
= talloc_stackframe();
3938 name
= talloc_strdup(talloc_tos(), client_get_cur_dir());
3942 if (!next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
, NULL
)) {
3945 name
= talloc_asprintf_append(name
, "%s", buf
);
3949 status
= cli_ntcreate(
3950 cli
, name
, 0, FILE_READ_DATA
, 0,
3951 FILE_SHARE_READ
|FILE_SHARE_WRITE
|FILE_SHARE_DELETE
,
3952 FILE_OPEN
, 0, 0, &fnum
, NULL
);
3953 if (!NT_STATUS_IS_OK(status
)) {
3954 d_printf("Could not open file: %s\n", nt_errstr(status
));
3959 uint32_t i
, num_changes
;
3960 struct notify_change
*changes
;
3962 status
= cli_notify(cli
, fnum
, 1000, FILE_NOTIFY_CHANGE_ALL
,
3964 talloc_tos(), &num_changes
, &changes
);
3965 if (!NT_STATUS_IS_OK(status
)) {
3966 d_printf("notify returned %s\n",
3970 for (i
=0; i
<num_changes
; i
++) {
3971 printf("%4.4x %s\n", changes
[i
].action
,
3974 TALLOC_FREE(changes
);
3977 d_printf("notify <file>\n");
3983 /****************************************************************************
3984 Set the archive level.
3985 ****************************************************************************/
3987 static int cmd_archive(void)
3989 TALLOC_CTX
*ctx
= talloc_tos();
3992 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3993 archive_level
= atoi(buf
);
3995 d_printf("Archive level is %d\n",archive_level
);
4001 /****************************************************************************
4002 Toggle the backup_intent state.
4003 ****************************************************************************/
4005 static int cmd_backup(void)
4007 backup_intent
= !backup_intent
;
4008 cli_set_backup_intent(cli
, backup_intent
);
4009 DEBUG(2,("backup intent is now %s\n",backup_intent
?"on":"off"));
4013 /****************************************************************************
4014 Toggle the lowercaseflag.
4015 ****************************************************************************/
4017 static int cmd_lowercase(void)
4019 lowercase
= !lowercase
;
4020 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
4024 /****************************************************************************
4025 Toggle the case sensitive flag.
4026 ****************************************************************************/
4028 static int cmd_setcase(void)
4030 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
4032 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
4033 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
4038 /****************************************************************************
4039 Toggle the showacls flag.
4040 ****************************************************************************/
4042 static int cmd_showacls(void)
4044 showacls
= !showacls
;
4045 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
4050 /****************************************************************************
4051 Toggle the recurse flag.
4052 ****************************************************************************/
4054 static int cmd_recurse(void)
4057 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
4061 /****************************************************************************
4062 Toggle the translate flag.
4063 ****************************************************************************/
4065 static int cmd_translate(void)
4067 translation
= !translation
;
4068 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4069 translation
?"on":"off"));
4073 /****************************************************************************
4075 ****************************************************************************/
4077 static int cmd_lcd(void)
4079 TALLOC_CTX
*ctx
= talloc_tos();
4083 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4084 if (chdir(buf
) == -1) {
4085 d_printf("chdir to %s failed (%s)\n",
4086 buf
, strerror(errno
));
4093 DEBUG(2,("the local directory is now %s\n",d
));
4098 /****************************************************************************
4099 Get a file restarting at end of local file.
4100 ****************************************************************************/
4102 static int cmd_reget(void)
4104 TALLOC_CTX
*ctx
= talloc_tos();
4105 char *local_name
= NULL
;
4106 char *remote_name
= NULL
;
4110 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4115 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
4116 d_printf("reget <filename>\n");
4119 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
4123 remote_name
= clean_name(ctx
,remote_name
);
4129 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
4134 return do_get(remote_name
, local_name
, true);
4137 /****************************************************************************
4138 Put a file restarting at end of local file.
4139 ****************************************************************************/
4141 static int cmd_reput(void)
4143 TALLOC_CTX
*ctx
= talloc_tos();
4144 char *local_name
= NULL
;
4145 char *remote_name
= NULL
;
4149 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
4154 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
4155 d_printf("reput <filename>\n");
4159 if (!file_exist_stat(local_name
, &st
, false)) {
4160 d_printf("%s does not exist\n", local_name
);
4164 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
4165 remote_name
= talloc_asprintf_append(remote_name
,
4168 remote_name
= talloc_asprintf_append(remote_name
,
4175 remote_name
= clean_name(ctx
, remote_name
);
4180 return do_put(remote_name
, local_name
, true);
4183 /****************************************************************************
4185 ****************************************************************************/
4187 static void browse_fn(const char *name
, uint32 m
,
4188 const char *comment
, void *state
)
4190 const char *typestr
= "";
4193 case STYPE_DISKTREE
:
4197 typestr
= "Printer";
4206 /* FIXME: If the remote machine returns non-ascii characters
4207 in any of these fields, they can corrupt the output. We
4208 should remove them. */
4210 d_printf("\t%-15s %-10.10s%s\n",
4211 name
,typestr
,comment
);
4213 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
4217 static bool browse_host_rpc(bool sort
)
4220 struct rpc_pipe_client
*pipe_hnd
= NULL
;
4221 TALLOC_CTX
*frame
= talloc_stackframe();
4223 struct srvsvc_NetShareInfoCtr info_ctr
;
4224 struct srvsvc_NetShareCtr1 ctr1
;
4225 uint32_t resume_handle
= 0;
4226 uint32_t total_entries
= 0;
4228 struct dcerpc_binding_handle
*b
;
4230 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
4233 if (!NT_STATUS_IS_OK(status
)) {
4234 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4235 nt_errstr(status
)));
4240 b
= pipe_hnd
->binding_handle
;
4242 ZERO_STRUCT(info_ctr
);
4246 info_ctr
.ctr
.ctr1
= &ctr1
;
4248 status
= dcerpc_srvsvc_NetShareEnumAll(b
, frame
,
4256 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
4257 TALLOC_FREE(pipe_hnd
);
4262 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
4263 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
4264 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
4267 TALLOC_FREE(pipe_hnd
);
4272 /****************************************************************************
4273 Try and browse available connections on a host.
4274 ****************************************************************************/
4276 static bool browse_host(bool sort
)
4280 d_printf("\n\tSharename Type Comment\n");
4281 d_printf("\t--------- ---- -------\n");
4284 if (browse_host_rpc(sort
)) {
4288 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1) {
4289 NTSTATUS status
= cli_nt_error(cli
);
4290 d_printf("Error returning browse list: %s\n",
4297 /****************************************************************************
4299 ****************************************************************************/
4301 static void server_fn(const char *name
, uint32 m
,
4302 const char *comment
, void *state
)
4306 d_printf("\t%-16s %s\n", name
, comment
);
4308 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
4312 /****************************************************************************
4313 Try and browse available connections on a host.
4314 ****************************************************************************/
4316 static bool list_servers(const char *wk_grp
)
4320 if (!cli
->server_domain
)
4324 d_printf("\n\tServer Comment\n");
4325 d_printf("\t--------- -------\n");
4327 fstrcpy( state
, "Server" );
4328 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
4332 d_printf("\n\tWorkgroup Master\n");
4333 d_printf("\t--------- -------\n");
4336 fstrcpy( state
, "Workgroup" );
4337 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
4342 /****************************************************************************
4343 Print or set current VUID
4344 ****************************************************************************/
4346 static int cmd_vuid(void)
4348 TALLOC_CTX
*ctx
= talloc_tos();
4351 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4352 d_printf("Current VUID is %d\n",
4353 cli_state_get_uid(cli
));
4357 cli_state_set_uid(cli
, atoi(buf
));
4361 /****************************************************************************
4362 Setup a new VUID, by issuing a session setup
4363 ****************************************************************************/
4365 static int cmd_logon(void)
4367 TALLOC_CTX
*ctx
= talloc_tos();
4368 char *l_username
, *l_password
;
4371 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
4372 d_printf("logon <username> [<password>]\n");
4376 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
4377 char pwd
[256] = {0};
4380 rc
= samba_getpass("Password: ", pwd
, sizeof(pwd
), false, false);
4382 l_password
= talloc_strdup(ctx
, pwd
);
4389 nt_status
= cli_session_setup(cli
, l_username
,
4390 l_password
, strlen(l_password
),
4391 l_password
, strlen(l_password
),
4393 if (!NT_STATUS_IS_OK(nt_status
)) {
4394 d_printf("session setup failed: %s\n", nt_errstr(nt_status
));
4398 d_printf("Current VUID is %d\n", cli_state_get_uid(cli
));
4406 static int cmd_logoff(void)
4410 status
= cli_ulogoff(cli
);
4411 if (!NT_STATUS_IS_OK(status
)) {
4412 d_printf("logoff failed: %s\n", nt_errstr(status
));
4416 d_printf("logoff successful\n");
4422 * tree connect (connect to a share)
4425 static int cmd_tcon(void)
4427 TALLOC_CTX
*ctx
= talloc_tos();
4431 if (!next_token_talloc(ctx
, &cmd_ptr
, &sharename
, NULL
)) {
4432 d_printf("tcon <sharename>\n");
4440 status
= cli_tree_connect(cli
, sharename
, "?????", "", 0);
4441 if (!NT_STATUS_IS_OK(status
)) {
4442 d_printf("tcon failed: %s\n", nt_errstr(status
));
4446 talloc_free(sharename
);
4448 d_printf("tcon to %s successful, tid: %u\n", sharename
,
4449 cli_state_get_tid(cli
));
4454 * tree disconnect (disconnect from a share)
4457 static int cmd_tdis(void)
4461 status
= cli_tdis(cli
);
4462 if (!NT_STATUS_IS_OK(status
)) {
4463 d_printf("tdis failed: %s\n", nt_errstr(status
));
4467 d_printf("tdis successful\n");
4476 static int cmd_tid(void)
4478 TALLOC_CTX
*ctx
= talloc_tos();
4481 if (!next_token_talloc(ctx
, &cmd_ptr
, &tid_str
, NULL
)) {
4482 if (cli_state_has_tcon(cli
)) {
4483 d_printf("current tid is %d\n", cli_state_get_tid(cli
));
4485 d_printf("no tcon currently\n");
4488 uint16_t tid
= atoi(tid_str
);
4489 cli_state_set_tid(cli
, tid
);
4496 /****************************************************************************
4497 list active connections
4498 ****************************************************************************/
4500 static int cmd_list_connect(void)
4502 cli_cm_display(cli
);
4506 /****************************************************************************
4507 display the current active client connection
4508 ****************************************************************************/
4510 static int cmd_show_connect( void )
4512 TALLOC_CTX
*ctx
= talloc_tos();
4513 struct cli_state
*targetcli
;
4517 status
= cli_resolve_path(ctx
, "", auth_info
, cli
,
4518 client_get_cur_dir(), &targetcli
,
4520 if (!NT_STATUS_IS_OK(status
)) {
4521 d_printf("showconnect %s: %s\n", cur_dir
, nt_errstr(status
));
4525 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli
->conn
), targetcli
->share
);
4529 /****************************************************************************
4531 ***************************************************************************/
4533 int cmd_iosize(void)
4535 TALLOC_CTX
*ctx
= talloc_tos();
4539 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4540 if (smbXcli_conn_protocol(cli
->conn
) < PROTOCOL_SMB2_02
) {
4542 d_printf("iosize <n> or iosize 0x<n>. "
4543 "Minimum is 0 (default), "
4544 "max is 16776960 (0xFFFF00)\n");
4546 d_printf("iosize <n> or iosize 0x<n>. "
4547 "(Encrypted connection) ,"
4548 "Minimum is 0 (default), "
4549 "max is 130048 (0x1FC00)\n");
4552 d_printf("iosize <n> or iosize 0x<n>.\n");
4557 iosize
= strtol(buf
,NULL
,0);
4558 if (smbXcli_conn_protocol(cli
->conn
) < PROTOCOL_SMB2_02
) {
4559 if (smb_encrypt
&& (iosize
< 0 || iosize
> 0xFC00)) {
4560 d_printf("iosize out of range for encrypted "
4561 "connection (min = 0 (default), "
4562 "max = 130048 (0x1FC00)\n");
4564 } else if (!smb_encrypt
&& (iosize
< 0 || iosize
> 0xFFFF00)) {
4565 d_printf("iosize out of range (min = 0 (default), "
4566 "max = 16776960 (0xFFFF00)\n");
4571 io_bufsize
= iosize
;
4572 d_printf("iosize is now %d\n", io_bufsize
);
4576 /****************************************************************************
4578 ***************************************************************************/
4580 static int cmd_timeout(void)
4582 TALLOC_CTX
*ctx
= talloc_tos();
4585 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4586 unsigned int old_timeout
= cli_set_timeout(cli
, 0);
4587 cli_set_timeout(cli
, old_timeout
);
4588 d_printf("timeout <n> (per-operation timeout "
4589 "in seconds - currently %u).\n",
4594 io_timeout
= strtol(buf
,NULL
,0);
4595 cli_set_timeout(cli
, io_timeout
*1000);
4596 d_printf("io_timeout per operation is now %d\n", io_timeout
);
4601 /****************************************************************************
4603 ****************************************************************************/
4604 static int cmd_history(void)
4606 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4610 hlist
= history_list();
4612 for (i
= 0; hlist
&& hlist
[i
]; i
++) {
4613 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
4616 DEBUG(0,("no history without readline support\n"));
4622 /* Some constants for completing filename arguments */
4624 #define COMPL_NONE 0 /* No completions */
4625 #define COMPL_REMOTE 1 /* Complete remote filename */
4626 #define COMPL_LOCAL 2 /* Complete local filename */
4628 /* This defines the commands supported by this client.
4629 * NOTE: The "!" must be the last one in the list because it's fn pointer
4630 * field is NULL, and NULL in that field is used in process_tok()
4631 * (below) to indicate the end of the list. crh
4636 const char *description
;
4637 char compl_args
[2]; /* Completion argument info */
4639 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4640 {"allinfo",cmd_allinfo
,"<file> show all available info",
4641 {COMPL_NONE
,COMPL_NONE
}},
4642 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
4643 {"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
}},
4644 {"backup",cmd_backup
,"toggle backup intent state",{COMPL_NONE
,COMPL_NONE
}},
4645 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4646 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
4647 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
4648 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
4649 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_NONE
}},
4650 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_NONE
}},
4651 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_NONE
}},
4652 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4653 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4654 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4655 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
4656 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4657 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4658 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_NONE
}},
4659 {"geteas", cmd_geteas
, "<file name> get the EA list of a file",
4660 {COMPL_REMOTE
, COMPL_NONE
}},
4661 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4662 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4663 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
4664 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
4665 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
4666 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4667 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4668 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
4669 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4670 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4671 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
4672 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4673 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4674 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4675 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
4676 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4677 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
4678 {"notify",cmd_notify
,"<file>Get notified of dir changes",{COMPL_REMOTE
,COMPL_NONE
}},
4679 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
4680 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
4681 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
4682 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4683 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4684 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4685 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4686 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
4687 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4688 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4689 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
4690 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4691 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
4692 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4693 {"readlink",cmd_readlink
,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4694 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4695 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4696 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4697 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
4698 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4699 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4700 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_REMOTE
,COMPL_NONE
}},
4701 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
4702 {"setea", cmd_setea
, "<file name> <eaname> <eaval> Set an EA of a file",
4703 {COMPL_REMOTE
, COMPL_LOCAL
}},
4704 {"setmode",cmd_setmode
,"<file name> <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
4705 {"stat",cmd_stat
,"<file name> Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_NONE
}},
4706 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4707 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
4708 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
4709 {"timeout",cmd_timeout
,"timeout <number> - set the per-operation timeout in seconds (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4710 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
4711 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4712 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
4713 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
4714 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4715 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
4716 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
4717 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
4718 {"tcon",cmd_tcon
,"connect to a share" ,{COMPL_NONE
,COMPL_NONE
}},
4719 {"tdis",cmd_tdis
,"disconnect from a share",{COMPL_NONE
,COMPL_NONE
}},
4720 {"tid",cmd_tid
,"show or set the current tid (tree-id)",{COMPL_NONE
,COMPL_NONE
}},
4721 {"logoff",cmd_logoff
,"log off (close the session)",{COMPL_NONE
,COMPL_NONE
}},
4722 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
4724 /* Yes, this must be here, see crh's comment above. */
4725 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
4726 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
4729 /*******************************************************************
4730 Lookup a command string in the list of commands, including
4732 ******************************************************************/
4734 static int process_tok(char *tok
)
4736 int i
= 0, matches
= 0;
4738 int tok_len
= strlen(tok
);
4740 while (commands
[i
].fn
!= NULL
) {
4741 if (strequal(commands
[i
].name
,tok
)) {
4745 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4754 else if (matches
== 1)
4760 /****************************************************************************
4762 ****************************************************************************/
4764 static int cmd_help(void)
4766 TALLOC_CTX
*ctx
= talloc_tos();
4770 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4771 if ((i
= process_tok(buf
)) >= 0)
4772 d_printf("HELP %s:\n\t%s\n\n",
4773 commands
[i
].name
,commands
[i
].description
);
4775 while (commands
[i
].description
) {
4776 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4777 d_printf("%-15s",commands
[i
].name
);
4786 /****************************************************************************
4787 Process a -c command string.
4788 ****************************************************************************/
4790 static int process_command_string(const char *cmd_in
)
4792 TALLOC_CTX
*ctx
= talloc_tos();
4793 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4799 /* establish the connection if not already */
4804 status
= cli_cm_open(talloc_tos(), NULL
,
4805 have_ip
? dest_ss_str
: desthost
,
4808 max_protocol
, port
, name_type
,
4810 if (!NT_STATUS_IS_OK(status
)) {
4813 cli_set_timeout(cli
, io_timeout
*1000);
4816 while (cmd
[0] != '\0') {
4822 if ((p
= strchr_m(cmd
, ';')) == 0) {
4831 /* and get the first part of the command */
4833 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4837 if ((i
= process_tok(tok
)) >= 0) {
4838 rc
= commands
[i
].fn();
4839 } else if (i
== -2) {
4840 d_printf("%s: command abbreviation ambiguous\n",tok
);
4842 d_printf("%s: command not found\n",tok
);
4849 #define MAX_COMPLETIONS 100
4851 struct completion_remote
{
4859 static NTSTATUS
completion_remote_filter(const char *mnt
,
4860 struct file_info
*f
,
4864 struct completion_remote
*info
= (struct completion_remote
*)state
;
4866 if (info
->count
>= MAX_COMPLETIONS
- 1) {
4867 return NT_STATUS_OK
;
4869 if (strncmp(info
->text
, f
->name
, info
->len
) != 0) {
4870 return NT_STATUS_OK
;
4872 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
4873 return NT_STATUS_OK
;
4876 if ((info
->dirmask
[0] == 0) && !(f
->mode
& FILE_ATTRIBUTE_DIRECTORY
))
4877 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4879 TALLOC_CTX
*ctx
= talloc_stackframe();
4882 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4885 return NT_STATUS_NO_MEMORY
;
4887 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4890 return NT_STATUS_NO_MEMORY
;
4892 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4893 tmp
= talloc_asprintf_append(tmp
, "%s",
4898 return NT_STATUS_NO_MEMORY
;
4900 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4903 if (info
->matches
[info
->count
] == NULL
) {
4904 return NT_STATUS_OK
;
4906 if (f
->mode
& FILE_ATTRIBUTE_DIRECTORY
) {
4907 smb_readline_ca_char(0);
4909 if (info
->count
== 1) {
4910 info
->samelen
= strlen(info
->matches
[info
->count
]);
4912 while (strncmp(info
->matches
[info
->count
],
4913 info
->matches
[info
->count
-1],
4914 info
->samelen
) != 0) {
4919 return NT_STATUS_OK
;
4922 static char **remote_completion(const char *text
, int len
)
4924 TALLOC_CTX
*ctx
= talloc_stackframe();
4925 char *dirmask
= NULL
;
4926 char *targetpath
= NULL
;
4927 struct cli_state
*targetcli
= NULL
;
4929 struct completion_remote info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4932 /* can't have non-static initialisation on Sun CC, so do it
4938 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4939 if (!info
.matches
) {
4945 * We're leaving matches[0] free to fill it later with the text to
4946 * display: Either the one single match or the longest common subset
4949 info
.matches
[0] = NULL
;
4952 for (i
= len
-1; i
>= 0; i
--) {
4953 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4958 info
.text
= text
+i
+1;
4959 info
.samelen
= info
.len
= len
-i
-1;
4962 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4963 if (!info
.dirmask
) {
4966 strncpy(info
.dirmask
, text
, i
+1);
4967 info
.dirmask
[i
+1] = 0;
4968 dirmask
= talloc_asprintf(ctx
,
4970 client_get_cur_dir(),
4974 info
.dirmask
= SMB_STRDUP("");
4975 if (!info
.dirmask
) {
4978 dirmask
= talloc_asprintf(ctx
,
4980 client_get_cur_dir());
4986 status
= cli_resolve_path(ctx
, "", auth_info
, cli
, dirmask
, &targetcli
,
4988 if (!NT_STATUS_IS_OK(status
)) {
4991 status
= cli_list(targetcli
, targetpath
, FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
,
4992 completion_remote_filter
, (void *)&info
);
4993 if (!NT_STATUS_IS_OK(status
)) {
4997 if (info
.count
== 1) {
4999 * No matches at all, NULL indicates there is nothing
5001 SAFE_FREE(info
.matches
[0]);
5002 SAFE_FREE(info
.matches
);
5007 if (info
.count
== 2) {
5009 * Exactly one match in matches[1], indicate this is the one
5012 info
.matches
[0] = info
.matches
[1];
5013 info
.matches
[1] = NULL
;
5016 return info
.matches
;
5020 * We got more than one possible match, set the result to the maximum
5024 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
5025 info
.matches
[info
.count
] = NULL
;
5027 return info
.matches
;
5030 for (i
= 0; i
< info
.count
; i
++) {
5031 SAFE_FREE(info
.matches
[i
]);
5033 SAFE_FREE(info
.matches
);
5034 SAFE_FREE(info
.dirmask
);
5039 static char **completion_fn(const char *text
, int start
, int end
)
5041 smb_readline_ca_char(' ');
5044 const char *buf
, *sp
;
5048 buf
= smb_readline_get_line_buffer();
5052 sp
= strchr(buf
, ' ');
5056 for (i
= 0; commands
[i
].name
; i
++) {
5057 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
5058 (commands
[i
].name
[sp
- buf
] == 0)) {
5062 if (commands
[i
].name
== NULL
)
5068 if (sp
== (buf
+ start
))
5069 compl_type
= commands
[i
].compl_args
[0];
5071 compl_type
= commands
[i
].compl_args
[1];
5073 if (compl_type
== COMPL_REMOTE
)
5074 return remote_completion(text
, end
- start
);
5075 else /* fall back to local filename completion */
5079 int i
, len
, samelen
= 0, count
=1;
5081 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
5088 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
5089 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
5090 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
5091 if (!matches
[count
])
5094 samelen
= strlen(matches
[count
]);
5096 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
5103 case 0: /* should never happen */
5107 matches
[0] = SMB_STRDUP(matches
[1]);
5110 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
5113 strncpy(matches
[0], matches
[1], samelen
);
5114 matches
[0][samelen
] = 0;
5116 matches
[count
] = NULL
;
5120 for (i
= 0; i
< count
; i
++)
5128 static bool finished
;
5130 /****************************************************************************
5131 Make sure we swallow keepalives during idle time.
5132 ****************************************************************************/
5134 static void readline_callback(void)
5136 static time_t last_t
;
5137 struct timespec now
;
5140 unsigned char garbage
[16];
5142 clock_gettime_mono(&now
);
5150 /* Ping the server to keep the connection alive using SMBecho. */
5151 memset(garbage
, 0xf0, sizeof(garbage
));
5152 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
5153 if (NT_STATUS_IS_OK(status
)) {
5157 if (!cli_state_is_connected(cli
)) {
5158 DEBUG(0,("SMBecho failed (%s). The connection is "
5159 "disconnected now\n", nt_errstr(status
)));
5161 smb_readline_done();
5165 /****************************************************************************
5166 Process commands on stdin.
5167 ****************************************************************************/
5169 static int process_stdin(void)
5174 TALLOC_CTX
*frame
= talloc_stackframe();
5176 char *the_prompt
= NULL
;
5180 /* display a prompt */
5181 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
5185 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
5186 SAFE_FREE(the_prompt
);
5192 /* special case - first char is ! */
5194 if (system(line
+ 1) == -1) {
5195 d_printf("system() command %s failed.\n",
5203 /* and get the first part of the command */
5205 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
5211 if ((i
= process_tok(tok
)) >= 0) {
5212 rc
= commands
[i
].fn();
5213 } else if (i
== -2) {
5214 d_printf("%s: command abbreviation ambiguous\n",tok
);
5216 d_printf("%s: command not found\n",tok
);
5224 /****************************************************************************
5225 Process commands from the client.
5226 ****************************************************************************/
5228 static int process(const char *base_directory
)
5233 status
= cli_cm_open(talloc_tos(), NULL
,
5234 have_ip
? dest_ss_str
: desthost
,
5235 service
, auth_info
, true, smb_encrypt
,
5236 max_protocol
, port
, name_type
, &cli
);
5237 if (!NT_STATUS_IS_OK(status
)) {
5241 cli_set_timeout(cli
, io_timeout
*1000);
5243 if (base_directory
&& *base_directory
) {
5244 rc
= do_cd(base_directory
);
5252 rc
= process_command_string(cmdstr
);
5261 /****************************************************************************
5263 ****************************************************************************/
5265 static int do_host_query(const char *query_host
)
5269 status
= cli_cm_open(talloc_tos(), NULL
,
5270 have_ip
? dest_ss_str
: query_host
,
5271 "IPC$", auth_info
, true, smb_encrypt
,
5272 max_protocol
, port
, name_type
, &cli
);
5273 if (!NT_STATUS_IS_OK(status
)) {
5277 cli_set_timeout(cli
, io_timeout
*1000);
5280 /* Ensure that the host can do IPv4 */
5282 if (!interpret_addr(query_host
)) {
5283 struct sockaddr_storage ss
;
5284 if (interpret_string_addr(&ss
, query_host
, 0) &&
5285 (ss
.ss_family
!= AF_INET
)) {
5286 d_printf("%s is an IPv6 address -- no workgroup available\n",
5292 if (port
!= NBT_SMB_PORT
) {
5294 /* Workgroups simply don't make sense over anything
5295 else but port 139... */
5298 status
= cli_cm_open(talloc_tos(), NULL
,
5299 have_ip
? dest_ss_str
: query_host
,
5300 "IPC$", auth_info
, true, smb_encrypt
,
5301 max_protocol
, NBT_SMB_PORT
, name_type
,
5303 if (!NT_STATUS_IS_OK(status
)) {
5309 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5313 cli_set_timeout(cli
, io_timeout
*1000);
5314 list_servers(lp_workgroup());
5321 /****************************************************************************
5322 Handle a tar operation.
5323 ****************************************************************************/
5325 static int do_tar_op(const char *base_directory
)
5329 /* do we already have a connection? */
5333 status
= cli_cm_open(talloc_tos(), NULL
,
5334 have_ip
? dest_ss_str
: desthost
,
5335 service
, auth_info
, true, smb_encrypt
,
5336 max_protocol
, port
, name_type
, &cli
);
5337 if (!NT_STATUS_IS_OK(status
)) {
5340 cli_set_timeout(cli
, io_timeout
*1000);
5345 if (base_directory
&& *base_directory
) {
5346 ret
= do_cd(base_directory
);
5360 /****************************************************************************
5361 Handle a message operation.
5362 ****************************************************************************/
5364 static int do_message_op(struct user_auth_info
*a_info
)
5368 status
= cli_connect_nb(desthost
, have_ip
? &dest_ss
: NULL
,
5369 port
? port
: NBT_SMB_PORT
, name_type
,
5370 lp_netbios_name(), SMB_SIGNING_DEFAULT
, 0, &cli
);
5371 if (!NT_STATUS_IS_OK(status
)) {
5372 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
5376 cli_set_timeout(cli
, io_timeout
*1000);
5377 send_message(get_cmdline_auth_info_username(a_info
));
5383 /****************************************************************************
5385 ****************************************************************************/
5387 int main(int argc
,char *argv
[])
5389 const char **const_argv
= discard_const_p(const char *, argv
);
5390 char *base_directory
= NULL
;
5392 char *query_host
= NULL
;
5393 bool message
= false;
5394 static const char *new_name_resolve_order
= NULL
;
5398 bool tar_opt
= false;
5399 bool service_opt
= false;
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[]. */
5516 for (i
= 1; i
< argc
; i
++) {
5517 if (strncmp("-T", argv
[i
],2)==0)
5521 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
5522 poptPrintUsage(pc
, stderr
, 0);
5526 /* this must be the last option, mark we have parsed it so that we know we have */
5530 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
5531 if (!base_directory
) {
5542 return(do_smb_browse());
5547 /* We may still have some leftovers after the last popt option has been called */
5548 if (tar_opt
== true) {
5549 while (poptPeekArg(pc
)) {
5555 /* if the service has not yet been specified lets see if it is available in the popt stack */
5556 if (!service_opt
&& poptPeekArg(pc
)) {
5557 service
= talloc_strdup(frame
,poptGetArg(pc
));
5564 /* if the service has already been retrieved then check if we have also a password */
5566 && !get_cmdline_auth_info_got_pass(auth_info
)
5567 && poptPeekArg(pc
)) {
5568 set_cmdline_auth_info_password(auth_info
,
5572 if ( override_logfile
)
5573 setup_logging( lp_logfile(talloc_tos()), DEBUG_FILE
);
5575 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5576 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
5577 argv
[0], get_dyn_CONFIGFILE());
5580 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
5581 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
5587 if (service_opt
&& service
) {
5590 /* Convert any '/' characters in the service name to '\' characters */
5591 string_replace(service
, '/','\\');
5592 if (count_chars(service
,'\\') < 3) {
5593 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
5594 poptPrintUsage(pc
, stderr
, 0);
5597 /* Remove trailing slashes */
5598 len
= strlen(service
);
5599 while(len
> 0 && service
[len
- 1] == '\\') {
5601 service
[len
] = '\0';
5605 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
5606 if (!init_names()) {
5607 fprintf(stderr
, "init_names() failed\n");
5611 if(new_name_resolve_order
)
5612 lp_set_cmdline("name resolve order", new_name_resolve_order
);
5614 if (!tar_type
&& !query_host
&& !service
&& !message
) {
5615 poptPrintUsage(pc
, stderr
, 0);
5619 poptFreeContext(pc
);
5620 popt_burn_cmdline_password(argc
, argv
);
5622 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5624 /* Ensure we have a password (or equivalent). */
5625 set_cmdline_auth_info_getpass(auth_info
);
5627 max_protocol
= lp_cli_maxprotocol();
5631 process_command_string(cmdstr
);
5632 rc
= do_tar_op(base_directory
);
5633 } else if (query_host
&& *query_host
) {
5634 char *qhost
= query_host
;
5637 while (*qhost
== '\\' || *qhost
== '/')
5640 if ((slash
= strchr_m(qhost
, '/'))
5641 || (slash
= strchr_m(qhost
, '\\'))) {
5645 if ((p
=strchr_m(qhost
, '#'))) {
5648 sscanf(p
, "%x", &name_type
);
5651 rc
= do_host_query(qhost
);
5652 } else if (message
) {
5653 rc
= do_message_op(auth_info
);
5654 } else if (process(base_directory
)) {