2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003
7 Copyright (C) Gerald (Jerry) Carter 2004
8 Copyright (C) Jeremy Allison 1994-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "client/client_proto.h"
26 #include "../librpc/gen_ndr/cli_srvsvc.h"
32 extern int do_smb_browse(void); /* mDNS browsing */
34 extern bool AllowDebugChange
;
35 extern bool override_logfile
;
40 static char *desthost
;
41 static char *calling_name
;
42 static bool grepable
= false;
43 static char *cmdstr
= NULL
;
44 const char *cmd_ptr
= NULL
;
46 static int io_bufsize
= 524288;
48 static int name_type
= 0x20;
49 static int max_protocol
= PROTOCOL_NT1
;
51 static int process_tok(char *tok
);
52 static int cmd_help(void);
54 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
56 /* 30 second timeout on most commands */
57 #define CLIENT_TIMEOUT (30*1000)
58 #define SHORT_TIMEOUT (5*1000)
60 /* value for unused fid field in trans2 secondary request */
61 #define FID_UNUSED (0xFFFF)
63 time_t newer_than
= 0;
64 static int archive_level
= 0;
66 static bool translation
= false;
69 /* clitar bits insert */
72 extern bool tar_reset
;
75 static bool prompt
= true;
77 static bool recurse
= false;
78 static bool showacls
= false;
79 bool lowercase
= false;
81 static struct sockaddr_storage dest_ss
;
82 static char dest_ss_str
[INET6_ADDRSTRLEN
];
84 #define SEPARATORS " \t\n\r"
86 static bool abort_mget
= true;
89 uint64_t get_total_size
= 0;
90 unsigned int get_total_time_ms
= 0;
91 static uint64_t put_total_size
= 0;
92 static unsigned int put_total_time_ms
= 0;
95 static double dir_total
;
97 /* encrypted state. */
98 static bool smb_encrypt
;
100 /* root cli_state connection */
102 struct cli_state
*cli
;
104 static char CLI_DIRSEP_CHAR
= '\\';
105 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
107 /* Authentication for client connections. */
108 struct user_auth_info
*auth_info
;
110 /* Accessor functions for directory paths. */
111 static char *fileselection
;
112 static const char *client_get_fileselection(void)
115 return fileselection
;
120 static const char *client_set_fileselection(const char *new_fs
)
122 SAFE_FREE(fileselection
);
124 fileselection
= SMB_STRDUP(new_fs
);
126 return client_get_fileselection();
130 static const char *client_get_cwd(void)
135 return CLI_DIRSEP_STR
;
138 static const char *client_set_cwd(const char *new_cwd
)
142 cwd
= SMB_STRDUP(new_cwd
);
144 return client_get_cwd();
147 static char *cur_dir
;
148 const char *client_get_cur_dir(void)
153 return CLI_DIRSEP_STR
;
156 const char *client_set_cur_dir(const char *newdir
)
160 cur_dir
= SMB_STRDUP(newdir
);
162 return client_get_cur_dir();
165 /****************************************************************************
166 Put up a yes/no prompt.
167 ****************************************************************************/
169 static bool yesno(const char *p
)
174 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
177 if (*ans
== 'y' || *ans
== 'Y')
183 /****************************************************************************
184 Write to a local file with CR/LF->LF translation if appropriate. Return the
185 number taken from the buffer. This may not equal the number written.
186 ****************************************************************************/
188 static int writefile(int f
, char *b
, int n
)
198 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
201 if (write(f
, b
, 1) != 1) {
211 /****************************************************************************
212 Read from a file with LF->CR/LF translation if appropriate. Return the
213 number read. read approx n bytes.
214 ****************************************************************************/
216 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
222 return x_fread(b
,1,n
,f
);
225 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
226 if ((c
= x_getc(f
)) == EOF
) {
230 if (c
== '\n') { /* change all LFs to CR/LF */
245 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
247 struct push_state
*state
= (struct push_state
*)priv
;
250 if (x_feof(state
->f
)) {
254 result
= readfile(buf
, n
, state
->f
);
255 state
->nread
+= result
;
259 /****************************************************************************
261 ****************************************************************************/
263 static void send_message(const char *username
)
269 d_printf("Type your message, ending it with a Control-D\n");
272 while (i
<sizeof(buf
)-2) {
273 int c
= fgetc(stdin
);
284 status
= cli_message(cli
, desthost
, username
, buf
);
285 if (!NT_STATUS_IS_OK(status
)) {
286 d_fprintf(stderr
, "cli_message returned %s\n",
291 /****************************************************************************
292 Check the space on a device.
293 ****************************************************************************/
295 static int do_dskattr(void)
297 int total
, bsize
, avail
;
298 struct cli_state
*targetcli
= NULL
;
299 char *targetpath
= NULL
;
300 TALLOC_CTX
*ctx
= talloc_tos();
302 if ( !cli_resolve_path(ctx
, "", auth_info
, cli
, client_get_cur_dir(), &targetcli
, &targetpath
)) {
303 d_printf("Error in dskattr: %s\n", cli_errstr(cli
));
307 if (!NT_STATUS_IS_OK(cli_dskattr(targetcli
, &bsize
, &total
, &avail
))) {
308 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli
));
312 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
313 total
, bsize
, avail
);
318 /****************************************************************************
320 ****************************************************************************/
322 static int cmd_pwd(void)
324 d_printf("Current directory is %s",service
);
325 d_printf("%s\n",client_get_cur_dir());
329 /****************************************************************************
330 Ensure name has correct directory separators.
331 ****************************************************************************/
333 static void normalize_name(char *newdir
)
335 if (!(cli
->posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
336 string_replace(newdir
,'/','\\');
340 /****************************************************************************
341 Change directory - inner section.
342 ****************************************************************************/
344 static int do_cd(const char *new_dir
)
347 char *saved_dir
= NULL
;
349 char *targetpath
= NULL
;
350 struct cli_state
*targetcli
= NULL
;
351 SMB_STRUCT_STAT sbuf
;
354 TALLOC_CTX
*ctx
= talloc_stackframe();
356 newdir
= talloc_strdup(ctx
, new_dir
);
362 normalize_name(newdir
);
364 /* Save the current directory in case the new directory is invalid */
366 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
372 if (*newdir
== CLI_DIRSEP_CHAR
) {
373 client_set_cur_dir(newdir
);
376 new_cd
= talloc_asprintf(ctx
, "%s%s",
377 client_get_cur_dir(),
384 /* Ensure cur_dir ends in a DIRSEP */
385 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
386 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
391 client_set_cur_dir(new_cd
);
393 new_cd
= clean_name(ctx
, new_cd
);
394 client_set_cur_dir(new_cd
);
396 if ( !cli_resolve_path(ctx
, "", auth_info
, cli
, new_cd
, &targetcli
, &targetpath
)) {
397 d_printf("cd %s: %s\n", new_cd
, cli_errstr(cli
));
398 client_set_cur_dir(saved_dir
);
402 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
407 /* Use a trans2_qpathinfo to test directories for modern servers.
408 Except Win9x doesn't support the qpathinfo_basic() call..... */
410 if (targetcli
->protocol
> PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
413 status
= cli_qpathinfo_basic(targetcli
, targetpath
, &sbuf
,
415 if (!NT_STATUS_IS_OK(status
)) {
416 d_printf("cd %s: %s\n", new_cd
, nt_errstr(status
));
417 client_set_cur_dir(saved_dir
);
421 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
422 d_printf("cd %s: not a directory\n", new_cd
);
423 client_set_cur_dir(saved_dir
);
427 targetpath
= talloc_asprintf(ctx
,
432 client_set_cur_dir(saved_dir
);
435 targetpath
= clean_name(ctx
, targetpath
);
437 client_set_cur_dir(saved_dir
);
441 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, targetpath
))) {
442 d_printf("cd %s: %s\n", new_cd
, cli_errstr(targetcli
));
443 client_set_cur_dir(saved_dir
);
456 /****************************************************************************
458 ****************************************************************************/
460 static int cmd_cd(void)
465 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
468 d_printf("Current directory is %s\n",client_get_cur_dir());
474 /****************************************************************************
476 ****************************************************************************/
478 static int cmd_cd_oneup(void)
483 /*******************************************************************
484 Decide if a file should be operated on.
485 ********************************************************************/
487 static bool do_this_one(file_info
*finfo
)
493 if (finfo
->mode
& aDIR
) {
497 if (*client_get_fileselection() &&
498 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
499 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
503 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
504 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
508 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
509 DEBUG(3,("archive %s failed\n", finfo
->name
));
516 /****************************************************************************
517 Display info about a file.
518 ****************************************************************************/
520 static void display_finfo(file_info
*finfo
, const char *dir
)
523 TALLOC_CTX
*ctx
= talloc_tos();
525 if (!do_this_one(finfo
)) {
529 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
531 d_printf(" %-30s%7.7s %8.0f %s",
533 attrib_string(finfo
->mode
),
536 dir_total
+= finfo
->size
;
541 /* skip if this is . or .. */
542 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
544 /* create absolute filename for cli_ntcreate() FIXME */
545 afname
= talloc_asprintf(ctx
,
553 /* print file meta date header */
554 d_printf( "FILENAME:%s\n", finfo
->name
);
555 d_printf( "MODE:%s\n", attrib_string(finfo
->mode
));
556 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
557 d_printf( "MTIME:%s", time_to_asc(t
));
558 if (!NT_STATUS_IS_OK(cli_ntcreate(finfo
->cli
, afname
, 0,
559 CREATE_ACCESS_READ
, 0, FILE_SHARE_READ
|FILE_SHARE_WRITE
,
560 FILE_OPEN
, 0x0, 0x0, &fnum
))) {
561 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
563 cli_errstr( finfo
->cli
)));
566 sd
= cli_query_secdesc(finfo
->cli
, fnum
, ctx
);
568 DEBUG( 0, ("display_finfo() failed to "
569 "get security descriptor: %s",
570 cli_errstr( finfo
->cli
)));
572 display_sec_desc(sd
);
580 /****************************************************************************
581 Accumulate size of a file.
582 ****************************************************************************/
584 static void do_du(file_info
*finfo
, const char *dir
)
586 if (do_this_one(finfo
)) {
587 dir_total
+= finfo
->size
;
591 static bool do_list_recurse
;
592 static bool do_list_dirs
;
593 static char *do_list_queue
= 0;
594 static long do_list_queue_size
= 0;
595 static long do_list_queue_start
= 0;
596 static long do_list_queue_end
= 0;
597 static void (*do_list_fn
)(file_info
*, const char *dir
);
599 /****************************************************************************
600 Functions for do_list_queue.
601 ****************************************************************************/
604 * The do_list_queue is a NUL-separated list of strings stored in a
605 * char*. Since this is a FIFO, we keep track of the beginning and
606 * ending locations of the data in the queue. When we overflow, we
607 * double the size of the char*. When the start of the data passes
608 * the midpoint, we move everything back. This is logically more
609 * complex than a linked list, but easier from a memory management
610 * angle. In any memory error condition, do_list_queue is reset.
611 * Functions check to ensure that do_list_queue is non-NULL before
615 static void reset_do_list_queue(void)
617 SAFE_FREE(do_list_queue
);
618 do_list_queue_size
= 0;
619 do_list_queue_start
= 0;
620 do_list_queue_end
= 0;
623 static void init_do_list_queue(void)
625 reset_do_list_queue();
626 do_list_queue_size
= 1024;
627 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
628 if (do_list_queue
== 0) {
629 d_printf("malloc fail for size %d\n",
630 (int)do_list_queue_size
);
631 reset_do_list_queue();
633 memset(do_list_queue
, 0, do_list_queue_size
);
637 static void adjust_do_list_queue(void)
640 * If the starting point of the queue is more than half way through,
641 * move everything toward the beginning.
644 if (do_list_queue
== NULL
) {
645 DEBUG(4,("do_list_queue is empty\n"));
646 do_list_queue_start
= do_list_queue_end
= 0;
650 if (do_list_queue_start
== do_list_queue_end
) {
651 DEBUG(4,("do_list_queue is empty\n"));
652 do_list_queue_start
= do_list_queue_end
= 0;
653 *do_list_queue
= '\0';
654 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
655 DEBUG(4,("sliding do_list_queue backward\n"));
656 memmove(do_list_queue
,
657 do_list_queue
+ do_list_queue_start
,
658 do_list_queue_end
- do_list_queue_start
);
659 do_list_queue_end
-= do_list_queue_start
;
660 do_list_queue_start
= 0;
664 static void add_to_do_list_queue(const char *entry
)
666 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
667 while (new_end
> do_list_queue_size
) {
668 do_list_queue_size
*= 2;
669 DEBUG(4,("enlarging do_list_queue to %d\n",
670 (int)do_list_queue_size
));
671 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
672 if (! do_list_queue
) {
673 d_printf("failure enlarging do_list_queue to %d bytes\n",
674 (int)do_list_queue_size
);
675 reset_do_list_queue();
677 memset(do_list_queue
+ do_list_queue_size
/ 2,
678 0, do_list_queue_size
/ 2);
682 safe_strcpy_base(do_list_queue
+ do_list_queue_end
,
683 entry
, do_list_queue
, do_list_queue_size
);
684 do_list_queue_end
= new_end
;
685 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
686 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
690 static char *do_list_queue_head(void)
692 return do_list_queue
+ do_list_queue_start
;
695 static void remove_do_list_queue_head(void)
697 if (do_list_queue_end
> do_list_queue_start
) {
698 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
699 adjust_do_list_queue();
700 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
701 (int)do_list_queue_start
, (int)do_list_queue_end
));
705 static int do_list_queue_empty(void)
707 return (! (do_list_queue
&& *do_list_queue
));
710 /****************************************************************************
711 A helper for do_list.
712 ****************************************************************************/
714 static void do_list_helper(const char *mntpoint
, file_info
*f
, const char *mask
, void *state
)
716 TALLOC_CTX
*ctx
= talloc_tos();
718 char *dir_end
= NULL
;
720 /* Work out the directory. */
721 dir
= talloc_strdup(ctx
, mask
);
725 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
729 if (f
->mode
& aDIR
) {
730 if (do_list_dirs
&& do_this_one(f
)) {
733 if (do_list_recurse
&&
735 !strequal(f
->name
,".") &&
736 !strequal(f
->name
,"..")) {
741 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
746 mask2
= talloc_asprintf(ctx
,
754 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
760 mask2
= talloc_asprintf_append(mask2
,
768 add_to_do_list_queue(mask2
);
775 if (do_this_one(f
)) {
781 /****************************************************************************
782 A wrapper around cli_list that adds recursion.
783 ****************************************************************************/
785 void do_list(const char *mask
,
787 void (*fn
)(file_info
*, const char *dir
),
791 static int in_do_list
= 0;
792 TALLOC_CTX
*ctx
= talloc_tos();
793 struct cli_state
*targetcli
= NULL
;
794 char *targetpath
= NULL
;
796 if (in_do_list
&& rec
) {
797 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
803 do_list_recurse
= rec
;
808 init_do_list_queue();
809 add_to_do_list_queue(mask
);
811 while (!do_list_queue_empty()) {
813 * Need to copy head so that it doesn't become
814 * invalid inside the call to cli_list. This
815 * would happen if the list were expanded
817 * Fix from E. Jay Berkenbilt (ejb@ql.org)
819 char *head
= talloc_strdup(ctx
, do_list_queue_head());
827 if ( !cli_resolve_path(ctx
, "", auth_info
, cli
, head
, &targetcli
, &targetpath
) ) {
828 d_printf("do_list: [%s] %s\n", head
, cli_errstr(cli
));
829 remove_do_list_queue_head();
833 cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
);
834 remove_do_list_queue_head();
835 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
836 char *next_file
= do_list_queue_head();
838 if ((strlen(next_file
) >= 2) &&
839 (next_file
[strlen(next_file
) - 1] == '*') &&
840 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
841 save_ch
= next_file
+
842 strlen(next_file
) - 2;
845 /* cwd is only used if showacls is on */
846 client_set_cwd(next_file
);
849 if (!showacls
) /* don't disturbe the showacls output */
850 d_printf("\n%s\n",next_file
);
852 *save_ch
= CLI_DIRSEP_CHAR
;
856 TALLOC_FREE(targetpath
);
860 if (cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetpath
)) {
861 if (cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
) == -1) {
862 d_printf("%s listing %s\n",
863 cli_errstr(targetcli
), targetpath
);
865 TALLOC_FREE(targetpath
);
867 d_printf("do_list: [%s] %s\n", mask
, cli_errstr(cli
));
872 reset_do_list_queue();
875 /****************************************************************************
876 Get a directory listing.
877 ****************************************************************************/
879 static int cmd_dir(void)
881 TALLOC_CTX
*ctx
= talloc_tos();
882 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
888 mask
= talloc_strdup(ctx
, client_get_cur_dir());
893 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
895 if (*buf
== CLI_DIRSEP_CHAR
) {
896 mask
= talloc_strdup(ctx
, buf
);
898 mask
= talloc_asprintf_append(mask
, "%s", buf
);
901 mask
= talloc_asprintf_append(mask
, "*");
908 /* cwd is only used if showacls is on */
909 client_set_cwd(client_get_cur_dir());
912 do_list(mask
, attribute
, display_finfo
, recurse
, true);
916 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
921 /****************************************************************************
922 Get a directory listing.
923 ****************************************************************************/
925 static int cmd_du(void)
927 TALLOC_CTX
*ctx
= talloc_tos();
928 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
934 mask
= talloc_strdup(ctx
, client_get_cur_dir());
938 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
939 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
945 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
947 if (*buf
== CLI_DIRSEP_CHAR
) {
948 mask
= talloc_strdup(ctx
, buf
);
950 mask
= talloc_asprintf_append(mask
, "%s", buf
);
953 mask
= talloc_strdup(ctx
, "*");
956 do_list(mask
, attribute
, do_du
, recurse
, true);
960 d_printf("Total number of bytes: %.0f\n", dir_total
);
965 static int cmd_echo(void)
967 TALLOC_CTX
*ctx
= talloc_tos();
972 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
973 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
974 d_printf("echo <num> <data>\n");
978 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
980 if (!NT_STATUS_IS_OK(status
)) {
981 d_printf("echo failed: %s\n", nt_errstr(status
));
988 /****************************************************************************
989 Get a file from rname to lname
990 ****************************************************************************/
992 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
994 int *pfd
= (int *)priv
;
995 if (writefile(*pfd
, buf
, n
) == -1) {
996 return map_nt_error_from_unix(errno
);
1001 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
1003 TALLOC_CTX
*ctx
= talloc_tos();
1006 bool newhandle
= false;
1007 struct timeval tp_start
;
1011 SMB_OFF_T nread
= 0;
1013 struct cli_state
*targetcli
= NULL
;
1014 char *targetname
= NULL
;
1018 lname
= talloc_strdup(ctx
, lname_in
);
1027 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
, &targetname
) ) {
1028 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1032 GetTimeOfDay(&tp_start
);
1034 if (!NT_STATUS_IS_OK(cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
, &fnum
))) {
1035 d_printf("%s opening remote file %s\n",cli_errstr(cli
),rname
);
1039 if(!strcmp(lname
,"-")) {
1040 handle
= fileno(stdout
);
1043 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
, 0644);
1045 start
= sys_lseek(handle
, 0, SEEK_END
);
1047 d_printf("Error seeking local file\n");
1052 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1057 d_printf("Error opening local file %s\n",lname
);
1062 if (!cli_qfileinfo(targetcli
, fnum
,
1063 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1064 !NT_STATUS_IS_OK(cli_getattrE(targetcli
, fnum
,
1065 &attr
, &size
, NULL
, NULL
, NULL
))) {
1066 d_printf("getattrib: %s\n",cli_errstr(targetcli
));
1070 DEBUG(1,("getting file %s of size %.0f as %s ",
1071 rname
, (double)size
, lname
));
1073 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1074 writefile_sink
, (void *)&handle
, &nread
);
1075 if (!NT_STATUS_IS_OK(status
)) {
1076 d_fprintf(stderr
, "parallel_read returned %s\n",
1078 cli_close(targetcli
, fnum
);
1082 if (!NT_STATUS_IS_OK(cli_close(targetcli
, fnum
))) {
1083 d_printf("Error %s closing remote file\n",cli_errstr(cli
));
1091 if (archive_level
>= 2 && (attr
& aARCH
)) {
1092 cli_setatr(cli
, rname
, attr
& ~(uint16
)aARCH
, 0);
1096 struct timeval tp_end
;
1099 GetTimeOfDay(&tp_end
);
1101 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1102 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1103 get_total_time_ms
+= this_time
;
1104 get_total_size
+= nread
;
1106 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1107 nread
/ (1.024*this_time
+ 1.0e-4),
1108 get_total_size
/ (1.024*get_total_time_ms
)));
1111 TALLOC_FREE(targetname
);
1115 /****************************************************************************
1117 ****************************************************************************/
1119 static int cmd_get(void)
1121 TALLOC_CTX
*ctx
= talloc_tos();
1126 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1131 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1132 d_printf("get <filename> [localname]\n");
1135 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1139 rname
= clean_name(ctx
, rname
);
1144 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1149 return do_get(rname
, lname
, false);
1152 /****************************************************************************
1153 Do an mget operation on one file.
1154 ****************************************************************************/
1156 static void do_mget(file_info
*finfo
, const char *dir
)
1158 TALLOC_CTX
*ctx
= talloc_tos();
1161 char *saved_curdir
= NULL
;
1162 char *mget_mask
= NULL
;
1163 char *new_cd
= NULL
;
1169 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1173 d_printf("mget aborted\n");
1177 if (finfo
->mode
& aDIR
) {
1178 if (asprintf(&quest
,
1179 "Get directory %s? ",finfo
->name
) < 0) {
1183 if (asprintf(&quest
,
1184 "Get file %s? ",finfo
->name
) < 0) {
1189 if (prompt
&& !yesno(quest
)) {
1195 if (!(finfo
->mode
& aDIR
)) {
1196 rname
= talloc_asprintf(ctx
,
1198 client_get_cur_dir(),
1203 do_get(rname
, finfo
->name
, false);
1208 /* handle directories */
1209 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1210 if (!saved_curdir
) {
1214 new_cd
= talloc_asprintf(ctx
,
1216 client_get_cur_dir(),
1222 client_set_cur_dir(new_cd
);
1224 string_replace(finfo
->name
,'\\','/');
1226 strlower_m(finfo
->name
);
1229 if (!directory_exist(finfo
->name
) &&
1230 mkdir(finfo
->name
,0777) != 0) {
1231 d_printf("failed to create directory %s\n",finfo
->name
);
1232 client_set_cur_dir(saved_curdir
);
1236 if (chdir(finfo
->name
) != 0) {
1237 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1238 client_set_cur_dir(saved_curdir
);
1242 mget_mask
= talloc_asprintf(ctx
,
1244 client_get_cur_dir());
1250 do_list(mget_mask
, aSYSTEM
| aHIDDEN
| aDIR
,do_mget
,false, true);
1251 if (chdir("..") == -1) {
1252 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1255 client_set_cur_dir(saved_curdir
);
1256 TALLOC_FREE(mget_mask
);
1257 TALLOC_FREE(saved_curdir
);
1258 TALLOC_FREE(new_cd
);
1261 /****************************************************************************
1262 View the file using the pager.
1263 ****************************************************************************/
1265 static int cmd_more(void)
1267 TALLOC_CTX
*ctx
= talloc_tos();
1271 char *pager_cmd
= NULL
;
1276 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1281 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1285 fd
= mkstemp(lname
);
1287 d_printf("failed to create temporary file for more\n");
1292 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1293 d_printf("more <filename>\n");
1297 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1301 rname
= clean_name(ctx
,rname
);
1306 rc
= do_get(rname
, lname
, false);
1308 pager
=getenv("PAGER");
1310 pager_cmd
= talloc_asprintf(ctx
,
1312 (pager
? pager
:PAGER
),
1317 if (system(pager_cmd
) == -1) {
1318 d_printf("system command '%s' returned -1\n",
1326 /****************************************************************************
1328 ****************************************************************************/
1330 static int cmd_mget(void)
1332 TALLOC_CTX
*ctx
= talloc_tos();
1333 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1334 char *mget_mask
= NULL
;
1343 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1344 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1348 if (*buf
== CLI_DIRSEP_CHAR
) {
1349 mget_mask
= talloc_strdup(ctx
, buf
);
1351 mget_mask
= talloc_asprintf_append(mget_mask
,
1357 do_list(mget_mask
, attribute
, do_mget
, false, true);
1360 if (mget_mask
== NULL
) {
1361 d_printf("nothing to mget\n");
1366 mget_mask
= talloc_asprintf(ctx
,
1368 client_get_cur_dir());
1372 do_list(mget_mask
, attribute
, do_mget
, false, true);
1378 /****************************************************************************
1379 Make a directory of name "name".
1380 ****************************************************************************/
1382 static bool do_mkdir(const char *name
)
1384 TALLOC_CTX
*ctx
= talloc_tos();
1385 struct cli_state
*targetcli
;
1386 char *targetname
= NULL
;
1388 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
, &targetname
)) {
1389 d_printf("mkdir %s: %s\n", name
, cli_errstr(cli
));
1393 if (!NT_STATUS_IS_OK(cli_mkdir(targetcli
, targetname
))) {
1394 d_printf("%s making remote directory %s\n",
1395 cli_errstr(targetcli
),name
);
1402 /****************************************************************************
1403 Show 8.3 name of a file.
1404 ****************************************************************************/
1406 static bool do_altname(const char *name
)
1410 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1411 d_printf("%s getting alt name for %s\n",
1412 cli_errstr(cli
),name
);
1415 d_printf("%s\n", altname
);
1420 /****************************************************************************
1422 ****************************************************************************/
1424 static int cmd_quit(void)
1432 /****************************************************************************
1434 ****************************************************************************/
1436 static int cmd_mkdir(void)
1438 TALLOC_CTX
*ctx
= talloc_tos();
1442 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1447 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1449 d_printf("mkdir <dirname>\n");
1453 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1461 struct cli_state
*targetcli
;
1462 char *targetname
= NULL
;
1466 ddir2
= talloc_strdup(ctx
, "");
1471 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
1475 ddir
= talloc_strdup(ctx
, targetname
);
1479 trim_char(ddir
,'.','\0');
1480 p
= strtok_r(ddir
, "/\\", &saveptr
);
1482 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1486 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli
, ddir2
))) {
1489 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1493 p
= strtok_r(NULL
, "/\\", &saveptr
);
1502 /****************************************************************************
1504 ****************************************************************************/
1506 static int cmd_altname(void)
1508 TALLOC_CTX
*ctx
= talloc_tos();
1512 name
= talloc_strdup(ctx
, client_get_cur_dir());
1517 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1518 d_printf("altname <file>\n");
1521 name
= talloc_asprintf_append(name
, "%s", buf
);
1529 static char *attr_str(TALLOC_CTX
*mem_ctx
, uint16_t mode
)
1531 char *attrs
= TALLOC_ZERO_ARRAY(mem_ctx
, char, 17);
1534 if (!(mode
& FILE_ATTRIBUTE_NORMAL
)) {
1535 if (mode
& FILE_ATTRIBUTE_READONLY
) {
1538 if (mode
& FILE_ATTRIBUTE_HIDDEN
) {
1541 if (mode
& FILE_ATTRIBUTE_SYSTEM
) {
1544 if (mode
& FILE_ATTRIBUTE_DIRECTORY
) {
1547 if (mode
& FILE_ATTRIBUTE_ARCHIVE
) {
1554 /****************************************************************************
1555 Show all info we can get
1556 ****************************************************************************/
1558 static int do_allinfo(const char *name
)
1561 struct timespec b_time
, a_time
, m_time
, c_time
;
1566 unsigned int num_streams
;
1567 struct stream_struct
*streams
;
1570 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1571 d_printf("%s getting alt name for %s\n",
1572 cli_errstr(cli
),name
);
1575 d_printf("altname: %s\n", altname
);
1577 if (!cli_qpathinfo2(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1578 &size
, &mode
, &ino
)) {
1579 d_printf("%s getting pathinfo for %s\n",
1580 cli_errstr(cli
),name
);
1584 unix_timespec_to_nt_time(&tmp
, b_time
);
1585 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1587 unix_timespec_to_nt_time(&tmp
, a_time
);
1588 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1590 unix_timespec_to_nt_time(&tmp
, m_time
);
1591 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1593 unix_timespec_to_nt_time(&tmp
, c_time
);
1594 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1596 d_printf("attributes: %s\n", attr_str(talloc_tos(), mode
));
1598 if (!cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1600 d_printf("%s getting streams for %s\n",
1601 cli_errstr(cli
),name
);
1605 for (i
=0; i
<num_streams
; i
++) {
1606 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1607 (unsigned long long)streams
[i
].size
);
1613 /****************************************************************************
1614 Show all info we can get
1615 ****************************************************************************/
1617 static int cmd_allinfo(void)
1619 TALLOC_CTX
*ctx
= talloc_tos();
1623 name
= talloc_strdup(ctx
, client_get_cur_dir());
1628 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1629 d_printf("allinfo <file>\n");
1632 name
= talloc_asprintf_append(name
, "%s", buf
);
1642 /****************************************************************************
1644 ****************************************************************************/
1646 static int do_put(const char *rname
, const char *lname
, bool reput
)
1648 TALLOC_CTX
*ctx
= talloc_tos();
1651 SMB_OFF_T start
= 0;
1653 struct timeval tp_start
;
1654 struct cli_state
*targetcli
;
1655 char *targetname
= NULL
;
1656 struct push_state state
;
1659 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, rname
, &targetcli
, &targetname
)) {
1660 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1664 GetTimeOfDay(&tp_start
);
1667 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
, &fnum
);
1668 if (NT_STATUS_IS_OK(status
)) {
1669 if (!cli_qfileinfo(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1670 !NT_STATUS_IS_OK(cli_getattrE(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
))) {
1671 d_printf("getattrib: %s\n",cli_errstr(cli
));
1676 status
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
, &fnum
);
1679 if (!NT_STATUS_IS_OK(status
)) {
1680 d_printf("%s opening remote file %s\n",cli_errstr(targetcli
),rname
);
1684 /* allow files to be piped into smbclient
1687 Note that in this case this function will exit(0) rather
1689 if (!strcmp(lname
, "-")) {
1691 /* size of file is not known */
1693 f
= x_fopen(lname
,O_RDONLY
, 0);
1695 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1696 d_printf("Error seeking local file\n");
1704 d_printf("Error opening local file %s\n",lname
);
1708 DEBUG(1,("putting file %s as %s ",lname
,
1711 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1716 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1718 if (!NT_STATUS_IS_OK(status
)) {
1719 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1722 if (!NT_STATUS_IS_OK(cli_close(targetcli
, fnum
))) {
1723 d_printf("%s closing remote file %s\n",cli_errstr(cli
),rname
);
1735 struct timeval tp_end
;
1738 GetTimeOfDay(&tp_end
);
1740 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1741 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1742 put_total_time_ms
+= this_time
;
1743 put_total_size
+= state
.nread
;
1745 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1746 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1747 put_total_size
/ (1.024*put_total_time_ms
)));
1758 /****************************************************************************
1760 ****************************************************************************/
1762 static int cmd_put(void)
1764 TALLOC_CTX
*ctx
= talloc_tos();
1769 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1774 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1775 d_printf("put <filename>\n");
1779 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1780 rname
= talloc_asprintf_append(rname
, "%s", buf
);
1782 rname
= talloc_asprintf_append(rname
, "%s", lname
);
1788 rname
= clean_name(ctx
, rname
);
1795 /* allow '-' to represent stdin
1796 jdblair, 24.jun.98 */
1797 if (!file_exist_stat(lname
, &st
, false) &&
1798 (strcmp(lname
,"-"))) {
1799 d_printf("%s does not exist\n",lname
);
1804 return do_put(rname
, lname
, false);
1807 /*************************************
1808 File list structure.
1809 *************************************/
1811 static struct file_list
{
1812 struct file_list
*prev
, *next
;
1817 /****************************************************************************
1818 Free a file_list structure.
1819 ****************************************************************************/
1821 static void free_file_list (struct file_list
*l_head
)
1823 struct file_list
*list
, *next
;
1825 for (list
= l_head
; list
; list
= next
) {
1827 DLIST_REMOVE(l_head
, list
);
1828 SAFE_FREE(list
->file_path
);
1833 /****************************************************************************
1834 Seek in a directory/file list until you get something that doesn't start with
1836 ****************************************************************************/
1838 static bool seek_list(struct file_list
*list
, char *name
)
1841 trim_string(list
->file_path
,"./","\n");
1842 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1851 /****************************************************************************
1852 Set the file selection mask.
1853 ****************************************************************************/
1855 static int cmd_select(void)
1857 TALLOC_CTX
*ctx
= talloc_tos();
1858 char *new_fs
= NULL
;
1859 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
1862 client_set_fileselection(new_fs
);
1864 client_set_fileselection("");
1869 /****************************************************************************
1870 Recursive file matching function act as find
1871 match must be always set to true when calling this function
1872 ****************************************************************************/
1874 static int file_find(struct file_list
**list
, const char *directory
,
1875 const char *expression
, bool match
)
1877 SMB_STRUCT_DIR
*dir
;
1878 struct file_list
*entry
;
1879 struct stat statbuf
;
1885 dir
= sys_opendir(directory
);
1889 while ((dname
= readdirname(dir
))) {
1890 if (!strcmp("..", dname
))
1892 if (!strcmp(".", dname
))
1895 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1900 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1902 ret
= stat(path
, &statbuf
);
1904 if (S_ISDIR(statbuf
.st_mode
)) {
1906 ret
= file_find(list
, path
, expression
, false);
1909 d_printf("file_find: cannot stat file %s\n", path
);
1918 entry
= SMB_MALLOC_P(struct file_list
);
1920 d_printf("Out of memory in file_find\n");
1924 entry
->file_path
= path
;
1925 entry
->isdir
= isdir
;
1926 DLIST_ADD(*list
, entry
);
1936 /****************************************************************************
1938 ****************************************************************************/
1940 static int cmd_mput(void)
1942 TALLOC_CTX
*ctx
= talloc_tos();
1945 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
1947 struct file_list
*temp_list
;
1948 char *quest
, *lname
, *rname
;
1952 ret
= file_find(&file_list
, ".", p
, true);
1954 free_file_list(file_list
);
1962 for (temp_list
= file_list
; temp_list
;
1963 temp_list
= temp_list
->next
) {
1966 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
1969 trim_string(lname
, "./", "/");
1971 /* check if it's a directory */
1972 if (temp_list
->isdir
) {
1973 /* if (!recurse) continue; */
1976 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
1979 if (prompt
&& !yesno(quest
)) { /* No */
1980 /* Skip the directory */
1981 lname
[strlen(lname
)-1] = '/';
1982 if (!seek_list(temp_list
, lname
))
1986 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
1989 normalize_name(rname
);
1990 if (!NT_STATUS_IS_OK(cli_chkpath(cli
, rname
)) &&
1992 DEBUG (0, ("Unable to make dir, skipping..."));
1993 /* Skip the directory */
1994 lname
[strlen(lname
)-1] = '/';
1995 if (!seek_list(temp_list
, lname
)) {
2003 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
2006 if (prompt
&& !yesno(quest
)) {
2013 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
2018 normalize_name(rname
);
2020 do_put(rname
, lname
, false);
2022 free_file_list(file_list
);
2031 /****************************************************************************
2033 ****************************************************************************/
2035 static int do_cancel(int job
)
2037 if (cli_printjob_del(cli
, job
)) {
2038 d_printf("Job %d cancelled\n",job
);
2041 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
2046 /****************************************************************************
2048 ****************************************************************************/
2050 static int cmd_cancel(void)
2052 TALLOC_CTX
*ctx
= talloc_tos();
2056 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2057 d_printf("cancel <jobid> ...\n");
2063 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2068 /****************************************************************************
2070 ****************************************************************************/
2072 static int cmd_print(void)
2074 TALLOC_CTX
*ctx
= talloc_tos();
2079 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2080 d_printf("print <filename>\n");
2084 rname
= talloc_strdup(ctx
, lname
);
2088 p
= strrchr_m(rname
,'/');
2090 rname
= talloc_asprintf(ctx
,
2095 if (strequal(lname
,"-")) {
2096 rname
= talloc_asprintf(ctx
,
2104 return do_put(rname
, lname
, false);
2107 /****************************************************************************
2108 Show a print queue entry.
2109 ****************************************************************************/
2111 static void queue_fn(struct print_job_info
*p
)
2113 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2116 /****************************************************************************
2118 ****************************************************************************/
2120 static int cmd_queue(void)
2122 cli_print_queue(cli
, queue_fn
);
2126 /****************************************************************************
2128 ****************************************************************************/
2130 static void do_del(file_info
*finfo
, const char *dir
)
2132 TALLOC_CTX
*ctx
= talloc_tos();
2135 mask
= talloc_asprintf(ctx
,
2144 if (finfo
->mode
& aDIR
) {
2149 if (!NT_STATUS_IS_OK(cli_unlink(finfo
->cli
, mask
, aSYSTEM
| aHIDDEN
))) {
2150 d_printf("%s deleting remote file %s\n",
2151 cli_errstr(finfo
->cli
),mask
);
2156 /****************************************************************************
2158 ****************************************************************************/
2160 static int cmd_del(void)
2162 TALLOC_CTX
*ctx
= talloc_tos();
2165 uint16 attribute
= aSYSTEM
| aHIDDEN
;
2171 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2175 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2176 d_printf("del <filename>\n");
2179 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2184 do_list(mask
,attribute
,do_del
,false,false);
2188 /****************************************************************************
2189 Wildcard delete some files.
2190 ****************************************************************************/
2192 static int cmd_wdel(void)
2194 TALLOC_CTX
*ctx
= talloc_tos();
2198 struct cli_state
*targetcli
;
2199 char *targetname
= NULL
;
2201 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2202 d_printf("wdel 0x<attrib> <wcard>\n");
2206 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2208 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2209 d_printf("wdel 0x<attrib> <wcard>\n");
2213 mask
= talloc_asprintf(ctx
, "%s%s",
2214 client_get_cur_dir(),
2220 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2221 d_printf("cmd_wdel %s: %s\n", mask
, cli_errstr(cli
));
2225 if (!NT_STATUS_IS_OK(cli_unlink(targetcli
, targetname
, attribute
))) {
2226 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli
),targetname
);
2231 /****************************************************************************
2232 ****************************************************************************/
2234 static int cmd_open(void)
2236 TALLOC_CTX
*ctx
= talloc_tos();
2239 char *targetname
= NULL
;
2240 struct cli_state
*targetcli
;
2241 uint16_t fnum
= (uint16_t)-1;
2243 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2244 d_printf("open <filename>\n");
2247 mask
= talloc_asprintf(ctx
,
2249 client_get_cur_dir(),
2255 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2256 d_printf("open %s: %s\n", mask
, cli_errstr(cli
));
2260 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli
, targetname
, 0,
2261 FILE_READ_DATA
|FILE_WRITE_DATA
, 0,
2262 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum
))) {
2263 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli
, targetname
, 0,
2265 FILE_SHARE_READ
|FILE_SHARE_WRITE
, FILE_OPEN
, 0x0, 0x0, &fnum
))) {
2266 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2268 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2271 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2276 static int cmd_posix_encrypt(void)
2278 TALLOC_CTX
*ctx
= talloc_tos();
2279 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2281 if (cli
->use_kerberos
) {
2282 status
= cli_gss_smb_encryption_start(cli
);
2284 char *domain
= NULL
;
2286 char *password
= NULL
;
2288 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2289 d_printf("posix_encrypt domain user password\n");
2293 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2294 d_printf("posix_encrypt domain user password\n");
2298 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2299 d_printf("posix_encrypt domain user password\n");
2303 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2309 if (!NT_STATUS_IS_OK(status
)) {
2310 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2312 d_printf("encryption on\n");
2319 /****************************************************************************
2320 ****************************************************************************/
2322 static int cmd_posix_open(void)
2324 TALLOC_CTX
*ctx
= talloc_tos();
2327 char *targetname
= NULL
;
2328 struct cli_state
*targetcli
;
2332 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2333 d_printf("posix_open <filename> 0<mode>\n");
2336 mask
= talloc_asprintf(ctx
,
2338 client_get_cur_dir(),
2344 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2345 d_printf("posix_open <filename> 0<mode>\n");
2348 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2350 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2351 d_printf("posix_open %s: %s\n", mask
, cli_errstr(cli
));
2355 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
, &fnum
))) {
2356 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDONLY
, mode
, &fnum
))) {
2357 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2359 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2362 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2368 static int cmd_posix_mkdir(void)
2370 TALLOC_CTX
*ctx
= talloc_tos();
2373 char *targetname
= NULL
;
2374 struct cli_state
*targetcli
;
2377 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2378 d_printf("posix_mkdir <filename> 0<mode>\n");
2381 mask
= talloc_asprintf(ctx
,
2383 client_get_cur_dir(),
2389 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2390 d_printf("posix_mkdir <filename> 0<mode>\n");
2393 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2395 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2396 d_printf("posix_mkdir %s: %s\n", mask
, cli_errstr(cli
));
2400 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli
, targetname
, mode
))) {
2401 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2403 d_printf("posix_mkdir created directory %s\n", targetname
);
2408 static int cmd_posix_unlink(void)
2410 TALLOC_CTX
*ctx
= talloc_tos();
2413 char *targetname
= NULL
;
2414 struct cli_state
*targetcli
;
2416 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2417 d_printf("posix_unlink <filename>\n");
2420 mask
= talloc_asprintf(ctx
,
2422 client_get_cur_dir(),
2428 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2429 d_printf("posix_unlink %s: %s\n", mask
, cli_errstr(cli
));
2433 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli
, targetname
))) {
2434 d_printf("Failed to unlink file %s. %s\n", targetname
, cli_errstr(cli
));
2436 d_printf("posix_unlink deleted file %s\n", targetname
);
2442 static int cmd_posix_rmdir(void)
2444 TALLOC_CTX
*ctx
= talloc_tos();
2447 char *targetname
= NULL
;
2448 struct cli_state
*targetcli
;
2450 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2451 d_printf("posix_rmdir <filename>\n");
2454 mask
= talloc_asprintf(ctx
,
2456 client_get_cur_dir(),
2462 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2463 d_printf("posix_rmdir %s: %s\n", mask
, cli_errstr(cli
));
2467 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli
, targetname
))) {
2468 d_printf("Failed to unlink directory %s. %s\n", targetname
, cli_errstr(cli
));
2470 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2476 static int cmd_close(void)
2478 TALLOC_CTX
*ctx
= talloc_tos();
2482 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2483 d_printf("close <fnum>\n");
2488 /* We really should use the targetcli here.... */
2489 if (!NT_STATUS_IS_OK(cli_close(cli
, fnum
))) {
2490 d_printf("close %d: %s\n", fnum
, cli_errstr(cli
));
2496 static int cmd_posix(void)
2498 TALLOC_CTX
*ctx
= talloc_tos();
2499 uint16 major
, minor
;
2500 uint32 caplow
, caphigh
;
2504 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2505 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2509 status
= cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
,
2511 if (!NT_STATUS_IS_OK(status
)) {
2512 d_printf("Can't get UNIX CIFS extensions version from "
2513 "server: %s\n", nt_errstr(status
));
2517 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2519 caps
= talloc_strdup(ctx
, "");
2523 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2524 caps
= talloc_asprintf_append(caps
, "locks ");
2529 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2530 caps
= talloc_asprintf_append(caps
, "acls ");
2535 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2536 caps
= talloc_asprintf_append(caps
, "eas ");
2541 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2542 caps
= talloc_asprintf_append(caps
, "pathnames ");
2547 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2548 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2553 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2554 caps
= talloc_asprintf_append(caps
, "large_read ");
2559 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2560 caps
= talloc_asprintf_append(caps
, "large_write ");
2565 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2566 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2571 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2572 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2578 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2579 caps
[strlen(caps
)-1] = '\0';
2582 d_printf("Server supports CIFS capabilities %s\n", caps
);
2584 status
= cli_set_unix_extensions_capabilities(cli
, major
, minor
,
2586 if (!NT_STATUS_IS_OK(status
)) {
2587 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2592 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2593 CLI_DIRSEP_CHAR
= '/';
2594 *CLI_DIRSEP_STR
= '/';
2595 client_set_cur_dir(CLI_DIRSEP_STR
);
2601 static int cmd_lock(void)
2603 TALLOC_CTX
*ctx
= talloc_tos();
2605 uint64_t start
, len
;
2606 enum brl_type lock_type
;
2609 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2610 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2615 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2616 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2620 if (*buf
== 'r' || *buf
== 'R') {
2621 lock_type
= READ_LOCK
;
2622 } else if (*buf
== 'w' || *buf
== 'W') {
2623 lock_type
= WRITE_LOCK
;
2625 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2629 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2630 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2634 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2636 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2637 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2641 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2643 if (!NT_STATUS_IS_OK(cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
))) {
2644 d_printf("lock failed %d: %s\n", fnum
, cli_errstr(cli
));
2650 static int cmd_unlock(void)
2652 TALLOC_CTX
*ctx
= talloc_tos();
2654 uint64_t start
, len
;
2657 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2658 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2663 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2664 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2668 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2670 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2671 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2675 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2677 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli
, fnum
, start
, len
))) {
2678 d_printf("unlock failed %d: %s\n", fnum
, cli_errstr(cli
));
2685 /****************************************************************************
2687 ****************************************************************************/
2689 static int cmd_rmdir(void)
2691 TALLOC_CTX
*ctx
= talloc_tos();
2694 char *targetname
= NULL
;
2695 struct cli_state
*targetcli
;
2697 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2698 d_printf("rmdir <dirname>\n");
2701 mask
= talloc_asprintf(ctx
,
2703 client_get_cur_dir(),
2709 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, mask
, &targetcli
, &targetname
)) {
2710 d_printf("rmdir %s: %s\n", mask
, cli_errstr(cli
));
2714 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli
, targetname
))) {
2715 d_printf("%s removing remote directory file %s\n",
2716 cli_errstr(targetcli
),mask
);
2722 /****************************************************************************
2724 ****************************************************************************/
2726 static int cmd_link(void)
2728 TALLOC_CTX
*ctx
= talloc_tos();
2729 char *oldname
= NULL
;
2730 char *newname
= NULL
;
2733 char *targetname
= NULL
;
2734 struct cli_state
*targetcli
;
2736 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2737 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2738 d_printf("link <oldname> <newname>\n");
2741 oldname
= talloc_asprintf(ctx
,
2743 client_get_cur_dir(),
2748 newname
= talloc_asprintf(ctx
,
2750 client_get_cur_dir(),
2756 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
, &targetname
)) {
2757 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2761 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2762 d_printf("Server doesn't support UNIX CIFS calls.\n");
2766 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli
, targetname
, newname
))) {
2767 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli
), newname
, oldname
);
2773 /****************************************************************************
2775 ****************************************************************************/
2777 static int cmd_readlink(void)
2779 TALLOC_CTX
*ctx
= talloc_tos();
2782 char *targetname
= NULL
;
2783 char linkname
[PATH_MAX
+1];
2784 struct cli_state
*targetcli
;
2786 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2787 d_printf("readlink <name>\n");
2790 name
= talloc_asprintf(ctx
,
2792 client_get_cur_dir(),
2798 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, name
, &targetcli
, &targetname
)) {
2799 d_printf("readlink %s: %s\n", name
, cli_errstr(cli
));
2803 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2804 d_printf("Server doesn't support UNIX CIFS calls.\n");
2808 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli
, name
,
2809 linkname
, PATH_MAX
+1))) {
2810 d_printf("%s readlink on file %s\n",
2811 cli_errstr(targetcli
), name
);
2815 d_printf("%s -> %s\n", name
, linkname
);
2821 /****************************************************************************
2823 ****************************************************************************/
2825 static int cmd_symlink(void)
2827 TALLOC_CTX
*ctx
= talloc_tos();
2828 char *oldname
= NULL
;
2829 char *newname
= NULL
;
2832 char *targetname
= NULL
;
2833 struct cli_state
*targetcli
;
2835 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2836 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2837 d_printf("symlink <oldname> <newname>\n");
2840 oldname
= talloc_asprintf(ctx
,
2842 client_get_cur_dir(),
2847 newname
= talloc_asprintf(ctx
,
2849 client_get_cur_dir(),
2855 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, oldname
, &targetcli
, &targetname
)) {
2856 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2860 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2861 d_printf("Server doesn't support UNIX CIFS calls.\n");
2865 if (!NT_STATUS_IS_OK(cli_posix_symlink(targetcli
, targetname
, newname
))) {
2866 d_printf("%s symlinking files (%s -> %s)\n",
2867 cli_errstr(targetcli
), newname
, targetname
);
2874 /****************************************************************************
2876 ****************************************************************************/
2878 static int cmd_chmod(void)
2880 TALLOC_CTX
*ctx
= talloc_tos();
2884 char *targetname
= NULL
;
2885 struct cli_state
*targetcli
;
2888 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2889 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2890 d_printf("chmod mode file\n");
2893 src
= talloc_asprintf(ctx
,
2895 client_get_cur_dir(),
2901 mode
= (mode_t
)strtol(buf
, NULL
, 8);
2903 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
2904 d_printf("chmod %s: %s\n", src
, cli_errstr(cli
));
2908 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2909 d_printf("Server doesn't support UNIX CIFS calls.\n");
2913 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli
, targetname
, mode
))) {
2914 d_printf("%s chmod file %s 0%o\n",
2915 cli_errstr(targetcli
), src
, (unsigned int)mode
);
2922 static const char *filetype_to_str(mode_t mode
)
2924 if (S_ISREG(mode
)) {
2925 return "regular file";
2926 } else if (S_ISDIR(mode
)) {
2930 if (S_ISCHR(mode
)) {
2931 return "character device";
2935 if (S_ISBLK(mode
)) {
2936 return "block device";
2940 if (S_ISFIFO(mode
)) {
2945 if (S_ISLNK(mode
)) {
2946 return "symbolic link";
2950 if (S_ISSOCK(mode
)) {
2957 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
2966 static char *unix_mode_to_str(char *s
, mode_t m
)
2969 const char *str
= filetype_to_str(m
);
2985 *p
++ = str
[1] == 'y' ? 'l' : 's';
2992 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
2993 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
2994 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
2995 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
2996 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
2997 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
2998 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
2999 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
3000 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
3005 /****************************************************************************
3006 Utility function for UNIX getfacl.
3007 ****************************************************************************/
3009 static char *perms_to_string(fstring permstr
, unsigned char perms
)
3011 fstrcpy(permstr
, "---");
3012 if (perms
& SMB_POSIX_ACL_READ
) {
3015 if (perms
& SMB_POSIX_ACL_WRITE
) {
3018 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
3024 /****************************************************************************
3026 ****************************************************************************/
3028 static int cmd_getfacl(void)
3030 TALLOC_CTX
*ctx
= talloc_tos();
3033 char *targetname
= NULL
;
3034 struct cli_state
*targetcli
;
3035 uint16 major
, minor
;
3036 uint32 caplow
, caphigh
;
3037 char *retbuf
= NULL
;
3039 SMB_STRUCT_STAT sbuf
;
3040 uint16 num_file_acls
= 0;
3041 uint16 num_dir_acls
= 0;
3045 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3046 d_printf("getfacl filename\n");
3049 src
= talloc_asprintf(ctx
,
3051 client_get_cur_dir(),
3057 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3058 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3062 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3063 d_printf("Server doesn't support UNIX CIFS calls.\n");
3067 status
= cli_unix_extensions_version(targetcli
, &major
, &minor
,
3069 if (!NT_STATUS_IS_OK(status
)) {
3070 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3075 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
3076 d_printf("This server supports UNIX extensions "
3077 "but doesn't support POSIX ACLs.\n");
3081 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3082 d_printf("%s getfacl doing a stat on file %s\n",
3083 cli_errstr(targetcli
), src
);
3087 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli
, targetname
, ctx
, &rb_size
, &retbuf
))) {
3088 d_printf("%s getfacl file %s\n",
3089 cli_errstr(targetcli
), src
);
3093 /* ToDo : Print out the ACL values. */
3094 if (rb_size
< 6 || SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
) {
3095 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3096 src
, (unsigned int)CVAL(retbuf
,0) );
3100 num_file_acls
= SVAL(retbuf
,2);
3101 num_dir_acls
= SVAL(retbuf
,4);
3102 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3103 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3105 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3106 (unsigned int)rb_size
);
3110 d_printf("# file: %s\n", src
);
3111 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_ex_uid
, (unsigned int)sbuf
.st_ex_gid
);
3113 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3114 d_printf("No acls found.\n");
3117 for (i
= 0; i
< num_file_acls
; i
++) {
3120 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3121 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3124 case SMB_POSIX_ACL_USER_OBJ
:
3127 case SMB_POSIX_ACL_USER
:
3128 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3129 d_printf("user:%u:", uorg
);
3131 case SMB_POSIX_ACL_GROUP_OBJ
:
3132 d_printf("group::");
3134 case SMB_POSIX_ACL_GROUP
:
3135 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3136 d_printf("group:%u:", uorg
);
3138 case SMB_POSIX_ACL_MASK
:
3141 case SMB_POSIX_ACL_OTHER
:
3142 d_printf("other::");
3145 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3146 src
, (unsigned int)tagtype
);
3151 d_printf("%s\n", perms_to_string(permstring
, perms
));
3154 for (i
= 0; i
< num_dir_acls
; i
++) {
3157 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3158 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3161 case SMB_POSIX_ACL_USER_OBJ
:
3162 d_printf("default:user::");
3164 case SMB_POSIX_ACL_USER
:
3165 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3166 d_printf("default:user:%u:", uorg
);
3168 case SMB_POSIX_ACL_GROUP_OBJ
:
3169 d_printf("default:group::");
3171 case SMB_POSIX_ACL_GROUP
:
3172 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3173 d_printf("default:group:%u:", uorg
);
3175 case SMB_POSIX_ACL_MASK
:
3176 d_printf("default:mask::");
3178 case SMB_POSIX_ACL_OTHER
:
3179 d_printf("default:other::");
3182 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3183 src
, (unsigned int)tagtype
);
3188 d_printf("%s\n", perms_to_string(permstring
, perms
));
3194 /****************************************************************************
3196 ****************************************************************************/
3198 static int cmd_stat(void)
3200 TALLOC_CTX
*ctx
= talloc_tos();
3203 char *targetname
= NULL
;
3204 struct cli_state
*targetcli
;
3206 SMB_STRUCT_STAT sbuf
;
3210 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3211 d_printf("stat file\n");
3214 src
= talloc_asprintf(ctx
,
3216 client_get_cur_dir(),
3222 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3223 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3227 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3228 d_printf("Server doesn't support UNIX CIFS calls.\n");
3232 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli
, targetname
, &sbuf
))) {
3233 d_printf("%s stat file %s\n",
3234 cli_errstr(targetcli
), src
);
3238 /* Print out the stat values. */
3239 d_printf("File: %s\n", src
);
3240 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3241 (double)sbuf
.st_ex_size
,
3242 (unsigned int)sbuf
.st_ex_blocks
,
3243 filetype_to_str(sbuf
.st_ex_mode
));
3245 #if defined(S_ISCHR) && defined(S_ISBLK)
3246 if (S_ISCHR(sbuf
.st_ex_mode
) || S_ISBLK(sbuf
.st_ex_mode
)) {
3247 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3248 (double)sbuf
.st_ex_ino
,
3249 (unsigned int)sbuf
.st_ex_nlink
,
3250 unix_dev_major(sbuf
.st_ex_rdev
),
3251 unix_dev_minor(sbuf
.st_ex_rdev
));
3254 d_printf("Inode: %.0f\tLinks: %u\n",
3255 (double)sbuf
.st_ex_ino
,
3256 (unsigned int)sbuf
.st_ex_nlink
);
3258 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3259 ((int)sbuf
.st_ex_mode
& 0777),
3260 unix_mode_to_str(mode_str
, sbuf
.st_ex_mode
),
3261 (unsigned int)sbuf
.st_ex_uid
,
3262 (unsigned int)sbuf
.st_ex_gid
);
3264 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_atime
);
3265 lt
= localtime(&tmp_time
);
3267 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3269 fstrcpy(mode_str
, "unknown");
3271 d_printf("Access: %s\n", mode_str
);
3273 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3274 lt
= localtime(&tmp_time
);
3276 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3278 fstrcpy(mode_str
, "unknown");
3280 d_printf("Modify: %s\n", mode_str
);
3282 tmp_time
= convert_timespec_to_time_t(sbuf
.st_ex_ctime
);
3283 lt
= localtime(&tmp_time
);
3285 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3287 fstrcpy(mode_str
, "unknown");
3289 d_printf("Change: %s\n", mode_str
);
3295 /****************************************************************************
3297 ****************************************************************************/
3299 static int cmd_chown(void)
3301 TALLOC_CTX
*ctx
= talloc_tos();
3305 char *buf
, *buf2
, *buf3
;
3306 struct cli_state
*targetcli
;
3307 char *targetname
= NULL
;
3309 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3310 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3311 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3312 d_printf("chown uid gid file\n");
3316 uid
= (uid_t
)atoi(buf
);
3317 gid
= (gid_t
)atoi(buf2
);
3319 src
= talloc_asprintf(ctx
,
3321 client_get_cur_dir(),
3326 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
) ) {
3327 d_printf("chown %s: %s\n", src
, cli_errstr(cli
));
3331 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3332 d_printf("Server doesn't support UNIX CIFS calls.\n");
3336 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli
, targetname
, uid
, gid
))) {
3337 d_printf("%s chown file %s uid=%d, gid=%d\n",
3338 cli_errstr(targetcli
), src
, (int)uid
, (int)gid
);
3345 /****************************************************************************
3347 ****************************************************************************/
3349 static int cmd_rename(void)
3351 TALLOC_CTX
*ctx
= talloc_tos();
3354 struct cli_state
*targetcli
;
3358 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3359 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3360 d_printf("rename <src> <dest>\n");
3364 src
= talloc_asprintf(ctx
,
3366 client_get_cur_dir(),
3372 dest
= talloc_asprintf(ctx
,
3374 client_get_cur_dir(),
3380 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetsrc
)) {
3381 d_printf("rename %s: %s\n", src
, cli_errstr(cli
));
3385 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, dest
, &targetcli
, &targetdest
)) {
3386 d_printf("rename %s: %s\n", dest
, cli_errstr(cli
));
3390 if (!NT_STATUS_IS_OK(cli_rename(targetcli
, targetsrc
, targetdest
))) {
3391 d_printf("%s renaming files %s -> %s \n",
3392 cli_errstr(targetcli
),
3401 /****************************************************************************
3402 Print the volume name.
3403 ****************************************************************************/
3405 static int cmd_volume(void)
3412 status
= cli_get_fs_volume_info(cli
, volname
, &serial_num
,
3414 if (!NT_STATUS_IS_OK(status
)) {
3415 d_printf("Error %s getting volume info\n", nt_errstr(status
));
3419 d_printf("Volume: |%s| serial number 0x%x\n",
3420 volname
, (unsigned int)serial_num
);
3424 /****************************************************************************
3425 Hard link files using the NT call.
3426 ****************************************************************************/
3428 static int cmd_hardlink(void)
3430 TALLOC_CTX
*ctx
= talloc_tos();
3433 struct cli_state
*targetcli
;
3436 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3437 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3438 d_printf("hardlink <src> <dest>\n");
3442 src
= talloc_asprintf(ctx
,
3444 client_get_cur_dir(),
3450 dest
= talloc_asprintf(ctx
,
3452 client_get_cur_dir(),
3458 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, src
, &targetcli
, &targetname
)) {
3459 d_printf("hardlink %s: %s\n", src
, cli_errstr(cli
));
3463 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli
, targetname
, dest
))) {
3464 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli
));
3471 /****************************************************************************
3472 Toggle the prompt flag.
3473 ****************************************************************************/
3475 static int cmd_prompt(void)
3478 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3482 /****************************************************************************
3483 Set the newer than time.
3484 ****************************************************************************/
3486 static int cmd_newer(void)
3488 TALLOC_CTX
*ctx
= talloc_tos();
3491 SMB_STRUCT_STAT sbuf
;
3493 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3494 if (ok
&& (sys_stat(buf
, &sbuf
, false) == 0)) {
3495 newer_than
= convert_timespec_to_time_t(sbuf
.st_ex_mtime
);
3496 DEBUG(1,("Getting files newer than %s",
3497 time_to_asc(newer_than
)));
3502 if (ok
&& newer_than
== 0) {
3503 d_printf("Error setting newer-than time\n");
3510 /****************************************************************************
3511 Set the archive level.
3512 ****************************************************************************/
3514 static int cmd_archive(void)
3516 TALLOC_CTX
*ctx
= talloc_tos();
3519 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3520 archive_level
= atoi(buf
);
3522 d_printf("Archive level is %d\n",archive_level
);
3528 /****************************************************************************
3529 Toggle the lowercaseflag.
3530 ****************************************************************************/
3532 static int cmd_lowercase(void)
3534 lowercase
= !lowercase
;
3535 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
3539 /****************************************************************************
3540 Toggle the case sensitive flag.
3541 ****************************************************************************/
3543 static int cmd_setcase(void)
3545 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
3547 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
3548 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
3553 /****************************************************************************
3554 Toggle the showacls flag.
3555 ****************************************************************************/
3557 static int cmd_showacls(void)
3559 showacls
= !showacls
;
3560 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
3565 /****************************************************************************
3566 Toggle the recurse flag.
3567 ****************************************************************************/
3569 static int cmd_recurse(void)
3572 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
3576 /****************************************************************************
3577 Toggle the translate flag.
3578 ****************************************************************************/
3580 static int cmd_translate(void)
3582 translation
= !translation
;
3583 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3584 translation
?"on":"off"));
3588 /****************************************************************************
3590 ****************************************************************************/
3592 static int cmd_lcd(void)
3594 TALLOC_CTX
*ctx
= talloc_tos();
3598 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3599 if (chdir(buf
) == -1) {
3600 d_printf("chdir to %s failed (%s)\n",
3601 buf
, strerror(errno
));
3604 d
= TALLOC_ARRAY(ctx
, char, PATH_MAX
+1);
3608 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
3612 /****************************************************************************
3613 Get a file restarting at end of local file.
3614 ****************************************************************************/
3616 static int cmd_reget(void)
3618 TALLOC_CTX
*ctx
= talloc_tos();
3619 char *local_name
= NULL
;
3620 char *remote_name
= NULL
;
3624 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3629 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
3630 d_printf("reget <filename>\n");
3633 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
3637 remote_name
= clean_name(ctx
,remote_name
);
3643 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
3648 return do_get(remote_name
, local_name
, true);
3651 /****************************************************************************
3652 Put a file restarting at end of local file.
3653 ****************************************************************************/
3655 static int cmd_reput(void)
3657 TALLOC_CTX
*ctx
= talloc_tos();
3658 char *local_name
= NULL
;
3659 char *remote_name
= NULL
;
3663 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3668 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
3669 d_printf("reput <filename>\n");
3673 if (!file_exist_stat(local_name
, &st
, false)) {
3674 d_printf("%s does not exist\n", local_name
);
3678 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
3679 remote_name
= talloc_asprintf_append(remote_name
,
3682 remote_name
= talloc_asprintf_append(remote_name
,
3689 remote_name
= clean_name(ctx
, remote_name
);
3694 return do_put(remote_name
, local_name
, true);
3697 /****************************************************************************
3699 ****************************************************************************/
3701 static void browse_fn(const char *name
, uint32 m
,
3702 const char *comment
, void *state
)
3704 const char *typestr
= "";
3707 case STYPE_DISKTREE
:
3711 typestr
= "Printer";
3720 /* FIXME: If the remote machine returns non-ascii characters
3721 in any of these fields, they can corrupt the output. We
3722 should remove them. */
3724 d_printf("\t%-15s %-10.10s%s\n",
3725 name
,typestr
,comment
);
3727 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
3731 static bool browse_host_rpc(bool sort
)
3734 struct rpc_pipe_client
*pipe_hnd
= NULL
;
3735 TALLOC_CTX
*frame
= talloc_stackframe();
3737 struct srvsvc_NetShareInfoCtr info_ctr
;
3738 struct srvsvc_NetShareCtr1 ctr1
;
3739 uint32_t resume_handle
= 0;
3740 uint32_t total_entries
= 0;
3743 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
3746 if (!NT_STATUS_IS_OK(status
)) {
3747 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3748 nt_errstr(status
)));
3753 ZERO_STRUCT(info_ctr
);
3757 info_ctr
.ctr
.ctr1
= &ctr1
;
3759 status
= rpccli_srvsvc_NetShareEnumAll(pipe_hnd
, frame
,
3767 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
3768 TALLOC_FREE(pipe_hnd
);
3773 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
3774 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
3775 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
3778 TALLOC_FREE(pipe_hnd
);
3783 /****************************************************************************
3784 Try and browse available connections on a host.
3785 ****************************************************************************/
3787 static bool browse_host(bool sort
)
3791 d_printf("\n\tSharename Type Comment\n");
3792 d_printf("\t--------- ---- -------\n");
3795 if (browse_host_rpc(sort
)) {
3799 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
3800 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
3805 /****************************************************************************
3807 ****************************************************************************/
3809 static void server_fn(const char *name
, uint32 m
,
3810 const char *comment
, void *state
)
3814 d_printf("\t%-16s %s\n", name
, comment
);
3816 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
3820 /****************************************************************************
3821 Try and browse available connections on a host.
3822 ****************************************************************************/
3824 static bool list_servers(const char *wk_grp
)
3828 if (!cli
->server_domain
)
3832 d_printf("\n\tServer Comment\n");
3833 d_printf("\t--------- -------\n");
3835 fstrcpy( state
, "Server" );
3836 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
3840 d_printf("\n\tWorkgroup Master\n");
3841 d_printf("\t--------- -------\n");
3844 fstrcpy( state
, "Workgroup" );
3845 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
3850 /****************************************************************************
3851 Print or set current VUID
3852 ****************************************************************************/
3854 static int cmd_vuid(void)
3856 TALLOC_CTX
*ctx
= talloc_tos();
3859 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3860 d_printf("Current VUID is %d\n", cli
->vuid
);
3864 cli
->vuid
= atoi(buf
);
3868 /****************************************************************************
3869 Setup a new VUID, by issuing a session setup
3870 ****************************************************************************/
3872 static int cmd_logon(void)
3874 TALLOC_CTX
*ctx
= talloc_tos();
3875 char *l_username
, *l_password
;
3877 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
3878 d_printf("logon <username> [<password>]\n");
3882 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
3883 char *pass
= getpass("Password: ");
3885 l_password
= talloc_strdup(ctx
,pass
);
3892 if (!NT_STATUS_IS_OK(cli_session_setup(cli
, l_username
,
3893 l_password
, strlen(l_password
),
3894 l_password
, strlen(l_password
),
3896 d_printf("session setup failed: %s\n", cli_errstr(cli
));
3900 d_printf("Current VUID is %d\n", cli
->vuid
);
3905 /****************************************************************************
3906 list active connections
3907 ****************************************************************************/
3909 static int cmd_list_connect(void)
3911 cli_cm_display(cli
);
3915 /****************************************************************************
3916 display the current active client connection
3917 ****************************************************************************/
3919 static int cmd_show_connect( void )
3921 TALLOC_CTX
*ctx
= talloc_tos();
3922 struct cli_state
*targetcli
;
3925 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, client_get_cur_dir(),
3926 &targetcli
, &targetpath
) ) {
3927 d_printf("showconnect %s: %s\n", cur_dir
, cli_errstr(cli
));
3931 d_printf("//%s/%s\n", targetcli
->desthost
, targetcli
->share
);
3935 /****************************************************************************
3937 ***************************************************************************/
3939 int cmd_iosize(void)
3941 TALLOC_CTX
*ctx
= talloc_tos();
3945 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3947 d_printf("iosize <n> or iosize 0x<n>. "
3948 "Minimum is 16384 (0x4000), "
3949 "max is 16776960 (0xFFFF00)\n");
3951 d_printf("iosize <n> or iosize 0x<n>. "
3952 "(Encrypted connection) ,"
3953 "Minimum is 16384 (0x4000), "
3954 "max is 130048 (0x1FC00)\n");
3959 iosize
= strtol(buf
,NULL
,0);
3960 if (smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFC00)) {
3961 d_printf("iosize out of range for encrypted "
3962 "connection (min = 16384 (0x4000), "
3963 "max = 130048 (0x1FC00)");
3965 } else if (!smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFFFF00)) {
3966 d_printf("iosize out of range (min = 16384 (0x4000), "
3967 "max = 16776960 (0xFFFF00)");
3971 io_bufsize
= iosize
;
3972 d_printf("iosize is now %d\n", io_bufsize
);
3977 /* Some constants for completing filename arguments */
3979 #define COMPL_NONE 0 /* No completions */
3980 #define COMPL_REMOTE 1 /* Complete remote filename */
3981 #define COMPL_LOCAL 2 /* Complete local filename */
3983 /* This defines the commands supported by this client.
3984 * NOTE: The "!" must be the last one in the list because it's fn pointer
3985 * field is NULL, and NULL in that field is used in process_tok()
3986 * (below) to indicate the end of the list. crh
3991 const char *description
;
3992 char compl_args
[2]; /* Completion argument info */
3994 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
3995 {"allinfo",cmd_allinfo
,"<file> show all available info",
3996 {COMPL_NONE
,COMPL_NONE
}},
3997 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
3998 {"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
}},
3999 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
4000 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
4001 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
4002 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
4003 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
4004 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
4005 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_REMOTE
}},
4006 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4007 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4008 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4009 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
4010 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4011 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4012 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_LOCAL
}},
4013 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4014 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
4015 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
4016 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
4017 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
4018 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
4019 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4020 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
4021 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4022 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
4023 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
4024 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4025 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4026 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
4027 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
4028 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4029 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
4030 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
4031 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
4032 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
4033 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4034 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4035 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4036 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
4037 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
4038 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4039 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4040 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
4041 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4042 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
4043 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
4044 {"readlink",cmd_readlink
,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4045 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4046 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
4047 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
4048 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
4049 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
4050 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4051 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
4052 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
4053 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
4054 {"stat",cmd_stat
,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_REMOTE
}},
4055 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
4056 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
4057 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
4058 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
4059 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
4060 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
4061 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
4062 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
4063 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
4064 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
4065 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
4066 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
4068 /* Yes, this must be here, see crh's comment above. */
4069 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
4070 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
4073 /*******************************************************************
4074 Lookup a command string in the list of commands, including
4076 ******************************************************************/
4078 static int process_tok(char *tok
)
4080 int i
= 0, matches
= 0;
4082 int tok_len
= strlen(tok
);
4084 while (commands
[i
].fn
!= NULL
) {
4085 if (strequal(commands
[i
].name
,tok
)) {
4089 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4098 else if (matches
== 1)
4104 /****************************************************************************
4106 ****************************************************************************/
4108 static int cmd_help(void)
4110 TALLOC_CTX
*ctx
= talloc_tos();
4114 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4115 if ((i
= process_tok(buf
)) >= 0)
4116 d_printf("HELP %s:\n\t%s\n\n",
4117 commands
[i
].name
,commands
[i
].description
);
4119 while (commands
[i
].description
) {
4120 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4121 d_printf("%-15s",commands
[i
].name
);
4130 /****************************************************************************
4131 Process a -c command string.
4132 ****************************************************************************/
4134 static int process_command_string(const char *cmd_in
)
4136 TALLOC_CTX
*ctx
= talloc_tos();
4137 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4143 /* establish the connection if not already */
4146 cli
= cli_cm_open(talloc_tos(), NULL
,
4147 have_ip
? dest_ss_str
: desthost
,
4150 max_protocol
, port
, name_type
);
4156 while (cmd
[0] != '\0') {
4162 if ((p
= strchr_m(cmd
, ';')) == 0) {
4171 /* and get the first part of the command */
4173 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4177 if ((i
= process_tok(tok
)) >= 0) {
4178 rc
= commands
[i
].fn();
4179 } else if (i
== -2) {
4180 d_printf("%s: command abbreviation ambiguous\n",tok
);
4182 d_printf("%s: command not found\n",tok
);
4189 #define MAX_COMPLETIONS 100
4191 struct completion_remote
{
4199 static void completion_remote_filter(const char *mnt
,
4204 struct completion_remote
*info
= (struct completion_remote
*)state
;
4206 if (info
->count
>= MAX_COMPLETIONS
- 1) {
4209 if (strncmp(info
->text
, f
->name
, info
->len
) != 0) {
4212 if (ISDOT(f
->name
) || ISDOTDOT(f
->name
)) {
4216 if ((info
->dirmask
[0] == 0) && !(f
->mode
& aDIR
))
4217 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4219 TALLOC_CTX
*ctx
= talloc_stackframe();
4222 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4227 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4232 if (f
->mode
& aDIR
) {
4233 tmp
= talloc_asprintf_append(tmp
, "%s",
4240 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4243 if (info
->matches
[info
->count
] == NULL
) {
4246 if (f
->mode
& aDIR
) {
4247 smb_readline_ca_char(0);
4249 if (info
->count
== 1) {
4250 info
->samelen
= strlen(info
->matches
[info
->count
]);
4252 while (strncmp(info
->matches
[info
->count
],
4253 info
->matches
[info
->count
-1],
4254 info
->samelen
) != 0) {
4261 static char **remote_completion(const char *text
, int len
)
4263 TALLOC_CTX
*ctx
= talloc_stackframe();
4264 char *dirmask
= NULL
;
4265 char *targetpath
= NULL
;
4266 struct cli_state
*targetcli
= NULL
;
4268 struct completion_remote info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4270 /* can't have non-static initialisation on Sun CC, so do it
4276 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4277 if (!info
.matches
) {
4283 * We're leaving matches[0] free to fill it later with the text to
4284 * display: Either the one single match or the longest common subset
4287 info
.matches
[0] = NULL
;
4290 for (i
= len
-1; i
>= 0; i
--) {
4291 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4296 info
.text
= text
+i
+1;
4297 info
.samelen
= info
.len
= len
-i
-1;
4300 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4301 if (!info
.dirmask
) {
4304 strncpy(info
.dirmask
, text
, i
+1);
4305 info
.dirmask
[i
+1] = 0;
4306 dirmask
= talloc_asprintf(ctx
,
4308 client_get_cur_dir(),
4312 info
.dirmask
= SMB_STRDUP("");
4313 if (!info
.dirmask
) {
4316 dirmask
= talloc_asprintf(ctx
,
4318 client_get_cur_dir());
4324 if (!cli_resolve_path(ctx
, "", auth_info
, cli
, dirmask
, &targetcli
, &targetpath
)) {
4327 if (cli_list(targetcli
, targetpath
, aDIR
| aSYSTEM
| aHIDDEN
,
4328 completion_remote_filter
, (void *)&info
) < 0) {
4332 if (info
.count
== 1) {
4334 * No matches at all, NULL indicates there is nothing
4336 SAFE_FREE(info
.matches
[0]);
4337 SAFE_FREE(info
.matches
);
4342 if (info
.count
== 2) {
4344 * Exactly one match in matches[1], indicate this is the one
4347 info
.matches
[0] = info
.matches
[1];
4348 info
.matches
[1] = NULL
;
4351 return info
.matches
;
4355 * We got more than one possible match, set the result to the maximum
4359 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
4360 info
.matches
[info
.count
] = NULL
;
4361 return info
.matches
;
4364 for (i
= 0; i
< info
.count
; i
++) {
4365 SAFE_FREE(info
.matches
[i
]);
4367 SAFE_FREE(info
.matches
);
4368 SAFE_FREE(info
.dirmask
);
4373 static char **completion_fn(const char *text
, int start
, int end
)
4375 smb_readline_ca_char(' ');
4378 const char *buf
, *sp
;
4382 buf
= smb_readline_get_line_buffer();
4386 sp
= strchr(buf
, ' ');
4390 for (i
= 0; commands
[i
].name
; i
++) {
4391 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
4392 (commands
[i
].name
[sp
- buf
] == 0)) {
4396 if (commands
[i
].name
== NULL
)
4402 if (sp
== (buf
+ start
))
4403 compl_type
= commands
[i
].compl_args
[0];
4405 compl_type
= commands
[i
].compl_args
[1];
4407 if (compl_type
== COMPL_REMOTE
)
4408 return remote_completion(text
, end
- start
);
4409 else /* fall back to local filename completion */
4413 int i
, len
, samelen
= 0, count
=1;
4415 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
4422 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
4423 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
4424 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
4425 if (!matches
[count
])
4428 samelen
= strlen(matches
[count
]);
4430 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
4437 case 0: /* should never happen */
4441 matches
[0] = SMB_STRDUP(matches
[1]);
4444 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
4447 strncpy(matches
[0], matches
[1], samelen
);
4448 matches
[0][samelen
] = 0;
4450 matches
[count
] = NULL
;
4454 for (i
= 0; i
< count
; i
++)
4462 static bool finished
;
4464 /****************************************************************************
4465 Make sure we swallow keepalives during idle time.
4466 ****************************************************************************/
4468 static void readline_callback(void)
4471 struct timeval timeout
;
4472 static time_t last_t
;
4488 FD_SET(cli
->fd
,&fds
);
4491 timeout
.tv_usec
= 0;
4492 sys_select_intr(cli
->fd
+1,&fds
,NULL
,NULL
,&timeout
);
4494 /* We deliberately use receive_smb_raw instead of
4495 client_receive_smb as we want to receive
4496 session keepalives and then drop them here.
4498 if (FD_ISSET(cli
->fd
,&fds
)) {
4502 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_OK
);
4504 status
= receive_smb_raw(cli
->fd
, cli
->inbuf
, cli
->bufsize
, 0, 0, &len
);
4506 if (!NT_STATUS_IS_OK(status
)) {
4507 DEBUG(0, ("Read from server failed, maybe it closed "
4508 "the connection\n"));
4511 smb_readline_done();
4512 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
4513 set_smb_read_error(&cli
->smb_rw_error
,
4518 if (NT_STATUS_EQUAL(status
, NT_STATUS_IO_TIMEOUT
)) {
4519 set_smb_read_error(&cli
->smb_rw_error
,
4524 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_ERROR
);
4527 if(CVAL(cli
->inbuf
,0) != SMBkeepalive
) {
4528 DEBUG(0, ("Read from server "
4529 "returned unexpected packet!\n"));
4536 /* Ping the server to keep the connection alive using SMBecho. */
4539 unsigned char garbage
[16];
4540 memset(garbage
, 0xf0, sizeof(garbage
));
4541 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
4543 if (!NT_STATUS_IS_OK(status
)) {
4544 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4545 "the connection\n"));
4547 smb_readline_done();
4552 /****************************************************************************
4553 Process commands on stdin.
4554 ****************************************************************************/
4556 static int process_stdin(void)
4561 TALLOC_CTX
*frame
= talloc_stackframe();
4563 char *the_prompt
= NULL
;
4567 /* display a prompt */
4568 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
4572 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
4573 SAFE_FREE(the_prompt
);
4579 /* special case - first char is ! */
4581 if (system(line
+ 1) == -1) {
4582 d_printf("system() command %s failed.\n",
4590 /* and get the first part of the command */
4592 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
4598 if ((i
= process_tok(tok
)) >= 0) {
4599 rc
= commands
[i
].fn();
4600 } else if (i
== -2) {
4601 d_printf("%s: command abbreviation ambiguous\n",tok
);
4603 d_printf("%s: command not found\n",tok
);
4611 /****************************************************************************
4612 Process commands from the client.
4613 ****************************************************************************/
4615 static int process(const char *base_directory
)
4619 cli
= cli_cm_open(talloc_tos(), NULL
,
4620 have_ip
? dest_ss_str
: desthost
,
4621 service
, auth_info
, true, smb_encrypt
,
4622 max_protocol
, port
, name_type
);
4627 if (base_directory
&& *base_directory
) {
4628 rc
= do_cd(base_directory
);
4636 rc
= process_command_string(cmdstr
);
4645 /****************************************************************************
4647 ****************************************************************************/
4649 static int do_host_query(const char *query_host
)
4651 cli
= cli_cm_open(talloc_tos(), NULL
,
4652 query_host
, "IPC$", auth_info
, true, smb_encrypt
,
4653 max_protocol
, port
, name_type
);
4659 /* Ensure that the host can do IPv4 */
4661 if (!interpret_addr(query_host
)) {
4662 struct sockaddr_storage ss
;
4663 if (interpret_string_addr(&ss
, query_host
, 0) &&
4664 (ss
.ss_family
!= AF_INET
)) {
4665 d_printf("%s is an IPv6 address -- no workgroup available\n",
4673 /* Workgroups simply don't make sense over anything
4674 else but port 139... */
4677 cli
= cli_cm_open(talloc_tos(), NULL
,
4678 query_host
, "IPC$", auth_info
, true, smb_encrypt
,
4679 max_protocol
, 139, name_type
);
4683 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4687 list_servers(lp_workgroup());
4694 /****************************************************************************
4695 Handle a tar operation.
4696 ****************************************************************************/
4698 static int do_tar_op(const char *base_directory
)
4702 /* do we already have a connection? */
4704 cli
= cli_cm_open(talloc_tos(), NULL
,
4705 have_ip
? dest_ss_str
: desthost
,
4706 service
, auth_info
, true, smb_encrypt
,
4707 max_protocol
, port
, name_type
);
4714 if (base_directory
&& *base_directory
) {
4715 ret
= do_cd(base_directory
);
4729 /****************************************************************************
4730 Handle a message operation.
4731 ****************************************************************************/
4733 static int do_message_op(struct user_auth_info
*a_info
)
4735 struct sockaddr_storage ss
;
4736 struct nmb_name called
, calling
;
4737 fstring server_name
;
4738 char name_type_hex
[10];
4742 make_nmb_name(&calling
, calling_name
, 0x0);
4743 make_nmb_name(&called
, desthost
, name_type
);
4745 fstrcpy(server_name
, desthost
);
4746 snprintf(name_type_hex
, sizeof(name_type_hex
), "#%X", name_type
);
4747 fstrcat(server_name
, name_type_hex
);
4753 /* we can only do messages over port 139 (to windows clients at least) */
4755 msg_port
= port
? port
: 139;
4757 if (!(cli
=cli_initialise())) {
4758 d_printf("Connection to %s failed\n", desthost
);
4761 cli_set_port(cli
, msg_port
);
4763 status
= cli_connect(cli
, server_name
, &ss
);
4764 if (!NT_STATUS_IS_OK(status
)) {
4765 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
4769 if (!cli_session_request(cli
, &calling
, &called
)) {
4770 d_printf("session request failed\n");
4775 send_message(get_cmdline_auth_info_username(a_info
));
4781 /****************************************************************************
4783 ****************************************************************************/
4785 int main(int argc
,char *argv
[])
4787 char *base_directory
= NULL
;
4789 char *query_host
= NULL
;
4790 bool message
= false;
4791 static const char *new_name_resolve_order
= NULL
;
4795 fstring new_workgroup
;
4796 bool tar_opt
= false;
4797 bool service_opt
= false;
4798 struct poptOption long_options
[] = {
4801 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4802 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
4803 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
4804 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
4805 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
4806 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
4807 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4808 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
4809 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
4810 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
4811 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
4812 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
4813 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
4815 POPT_COMMON_CONNECTION
4816 POPT_COMMON_CREDENTIALS
4819 TALLOC_CTX
*frame
= talloc_stackframe();
4821 if (!client_set_cur_dir("\\")) {
4825 /* initialize the workgroup name so we can determine whether or
4826 not it was set by a command line option */
4828 set_global_myworkgroup( "" );
4829 set_global_myname( "" );
4831 /* set default debug level to 1 regardless of what smb.conf sets */
4832 setup_logging( "smbclient", true );
4833 DEBUGLEVEL_CLASS
[DBGC_ALL
] = 1;
4834 if ((dbf
= x_fdup(x_stderr
))) {
4835 x_setbuf( dbf
, NULL
);
4840 auth_info
= user_auth_info_init(frame
);
4841 if (auth_info
== NULL
) {
4844 popt_common_set_auth_info(auth_info
);
4847 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
4848 poptSetOtherOptionHelp(pc
, "service <password>");
4850 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4852 while ((opt
= poptGetNextOpt(pc
)) != -1) {
4854 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4855 /* I see no other way to keep things sane --SSS */
4856 if (tar_opt
== true) {
4857 while (poptPeekArg(pc
)) {
4863 /* if the service has not yet been specified lets see if it is available in the popt stack */
4864 if (!service_opt
&& poptPeekArg(pc
)) {
4865 service
= talloc_strdup(frame
, poptGetArg(pc
));
4872 /* if the service has already been retrieved then check if we have also a password */
4874 && (!get_cmdline_auth_info_got_pass(auth_info
))
4875 && poptPeekArg(pc
)) {
4876 set_cmdline_auth_info_password(auth_info
,
4882 /* Messages are sent to NetBIOS name type 0x3
4883 * (Messenger Service). Make sure we default
4884 * to port 139 instead of port 445. srl,crh
4887 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
4897 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
4901 print_sockaddr(dest_ss_str
, sizeof(dest_ss_str
), &dest_ss
);
4909 display_set_stderr();
4913 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
4919 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
4922 /* We must use old option processing for this. Find the
4923 * position of the -T option in the raw argv[]. */
4926 for (i
= 1; i
< argc
; i
++) {
4927 if (strncmp("-T", argv
[i
],2)==0)
4931 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
4932 poptPrintUsage(pc
, stderr
, 0);
4936 /* this must be the last option, mark we have parsed it so that we know we have */
4940 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
4941 if (!base_directory
) {
4952 return(do_smb_browse());
4957 /* We may still have some leftovers after the last popt option has been called */
4958 if (tar_opt
== true) {
4959 while (poptPeekArg(pc
)) {
4965 /* if the service has not yet been specified lets see if it is available in the popt stack */
4966 if (!service_opt
&& poptPeekArg(pc
)) {
4967 service
= talloc_strdup(frame
,poptGetArg(pc
));
4974 /* if the service has already been retrieved then check if we have also a password */
4976 && !get_cmdline_auth_info_got_pass(auth_info
)
4977 && poptPeekArg(pc
)) {
4978 set_cmdline_auth_info_password(auth_info
,
4983 * Don't load debug level from smb.conf. It should be
4984 * set by cmdline arg or remain default (0)
4986 AllowDebugChange
= false;
4988 /* save the workgroup...
4990 FIXME!! do we need to do this for other options as well
4991 (or maybe a generic way to keep lp_load() from overwriting
4994 fstrcpy( new_workgroup
, lp_workgroup() );
4995 calling_name
= talloc_strdup(frame
, global_myname() );
4996 if (!calling_name
) {
5000 if ( override_logfile
)
5001 setup_logging( lp_logfile(), false );
5003 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5004 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
5005 argv
[0], get_dyn_CONFIGFILE());
5008 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
5009 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
5015 if (service_opt
&& service
) {
5018 /* Convert any '/' characters in the service name to '\' characters */
5019 string_replace(service
, '/','\\');
5020 if (count_chars(service
,'\\') < 3) {
5021 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
5022 poptPrintUsage(pc
, stderr
, 0);
5025 /* Remove trailing slashes */
5026 len
= strlen(service
);
5027 while(len
> 0 && service
[len
- 1] == '\\') {
5029 service
[len
] = '\0';
5033 if ( strlen(new_workgroup
) != 0 ) {
5034 set_global_myworkgroup( new_workgroup
);
5037 if ( strlen(calling_name
) != 0 ) {
5038 set_global_myname( calling_name
);
5040 TALLOC_FREE(calling_name
);
5041 calling_name
= talloc_strdup(frame
, global_myname() );
5044 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
5045 if (!init_names()) {
5046 fprintf(stderr
, "init_names() failed\n");
5050 if(new_name_resolve_order
)
5051 lp_set_name_resolve_order(new_name_resolve_order
);
5053 if (!tar_type
&& !query_host
&& !service
&& !message
) {
5054 poptPrintUsage(pc
, stderr
, 0);
5058 poptFreeContext(pc
);
5060 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5062 /* Ensure we have a password (or equivalent). */
5063 set_cmdline_auth_info_getpass(auth_info
);
5067 process_command_string(cmdstr
);
5068 return do_tar_op(base_directory
);
5071 if (query_host
&& *query_host
) {
5072 char *qhost
= query_host
;
5075 while (*qhost
== '\\' || *qhost
== '/')
5078 if ((slash
= strchr_m(qhost
, '/'))
5079 || (slash
= strchr_m(qhost
, '\\'))) {
5083 if ((p
=strchr_m(qhost
, '#'))) {
5086 sscanf(p
, "%x", &name_type
);
5089 return do_host_query(qhost
);
5093 return do_message_op(auth_info
);
5096 if (process(base_directory
)) {