2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003
7 Copyright (C) Gerald (Jerry) Carter 2004
8 Copyright (C) Jeremy Allison 1994-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "client/client_proto.h"
26 #include "include/rpc_client.h"
31 extern int do_smb_browse(void); /* mDNS browsing */
33 extern bool AllowDebugChange
;
34 extern bool override_logfile
;
39 static char *desthost
;
40 static char *calling_name
;
41 static bool grepable
= false;
42 static char *cmdstr
= NULL
;
43 const char *cmd_ptr
= NULL
;
45 static int io_bufsize
= 524288;
47 static int name_type
= 0x20;
48 static int max_protocol
= PROTOCOL_NT1
;
50 static int process_tok(char *tok
);
51 static int cmd_help(void);
53 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55 /* 30 second timeout on most commands */
56 #define CLIENT_TIMEOUT (30*1000)
57 #define SHORT_TIMEOUT (5*1000)
59 /* value for unused fid field in trans2 secondary request */
60 #define FID_UNUSED (0xFFFF)
62 time_t newer_than
= 0;
63 static int archive_level
= 0;
65 static bool translation
= false;
68 /* clitar bits insert */
71 extern bool tar_reset
;
74 static bool prompt
= true;
76 static bool recurse
= false;
77 static bool showacls
= false;
78 bool lowercase
= false;
80 static struct sockaddr_storage dest_ss
;
81 static char dest_ss_str
[INET6_ADDRSTRLEN
];
83 #define SEPARATORS " \t\n\r"
85 static bool abort_mget
= true;
88 uint64_t get_total_size
= 0;
89 unsigned int get_total_time_ms
= 0;
90 static uint64_t put_total_size
= 0;
91 static unsigned int put_total_time_ms
= 0;
94 static double dir_total
;
96 /* encrypted state. */
97 static bool smb_encrypt
;
99 /* root cli_state connection */
101 struct cli_state
*cli
;
103 static char CLI_DIRSEP_CHAR
= '\\';
104 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
106 /* Accessor functions for directory paths. */
107 static char *fileselection
;
108 static const char *client_get_fileselection(void)
111 return fileselection
;
116 static const char *client_set_fileselection(const char *new_fs
)
118 SAFE_FREE(fileselection
);
120 fileselection
= SMB_STRDUP(new_fs
);
122 return client_get_fileselection();
126 static const char *client_get_cwd(void)
131 return CLI_DIRSEP_STR
;
134 static const char *client_set_cwd(const char *new_cwd
)
138 cwd
= SMB_STRDUP(new_cwd
);
140 return client_get_cwd();
143 static char *cur_dir
;
144 const char *client_get_cur_dir(void)
149 return CLI_DIRSEP_STR
;
152 const char *client_set_cur_dir(const char *newdir
)
156 cur_dir
= SMB_STRDUP(newdir
);
158 return client_get_cur_dir();
161 /****************************************************************************
162 Write to a local file with CR/LF->LF translation if appropriate. Return the
163 number taken from the buffer. This may not equal the number written.
164 ****************************************************************************/
166 static int writefile(int f
, char *b
, int n
)
176 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
179 if (write(f
, b
, 1) != 1) {
189 /****************************************************************************
190 Read from a file with LF->CR/LF translation if appropriate. Return the
191 number read. read approx n bytes.
192 ****************************************************************************/
194 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
200 return x_fread(b
,1,n
,f
);
203 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
204 if ((c
= x_getc(f
)) == EOF
) {
208 if (c
== '\n') { /* change all LFs to CR/LF */
223 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
225 struct push_state
*state
= (struct push_state
*)priv
;
228 if (x_feof(state
->f
)) {
232 result
= readfile(buf
, n
, state
->f
);
233 state
->nread
+= result
;
237 /****************************************************************************
239 ****************************************************************************/
241 static void send_message(const char *username
)
246 if (!cli_message_start(cli
, desthost
, username
, &grp_id
)) {
247 d_printf("message start: %s\n", cli_errstr(cli
));
252 d_printf("Connected. Type your message, ending it with a Control-D\n");
254 while (!feof(stdin
) && total_len
< 1600) {
255 int maxlen
= MIN(1600 - total_len
,127);
262 for (l
=0;l
<maxlen
&& (c
=fgetc(stdin
))!=EOF
;l
++) {
268 if ((total_len
> 0) && (strlen(msg
) == 0)) {
272 if (!cli_message_text(cli
, msg
, l
, grp_id
)) {
273 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli
));
280 if (total_len
>= 1600)
281 d_printf("the message was truncated to 1600 bytes\n");
283 d_printf("sent %d bytes\n",total_len
);
285 if (!cli_message_end(cli
, grp_id
)) {
286 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli
));
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
, "", cli
, client_get_cur_dir(), &targetcli
, &targetpath
)) {
303 d_printf("Error in dskattr: %s\n", cli_errstr(cli
));
307 if (!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
, "", 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
) {
411 if (!cli_qpathinfo_basic( targetcli
, targetpath
, &sbuf
, &attributes
) ) {
412 d_printf("cd %s: %s\n", new_cd
, cli_errstr(targetcli
));
413 client_set_cur_dir(saved_dir
);
417 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
418 d_printf("cd %s: not a directory\n", new_cd
);
419 client_set_cur_dir(saved_dir
);
423 targetpath
= talloc_asprintf(ctx
,
428 client_set_cur_dir(saved_dir
);
431 targetpath
= clean_name(ctx
, targetpath
);
433 client_set_cur_dir(saved_dir
);
437 if (!cli_chkpath(targetcli
, targetpath
)) {
438 d_printf("cd %s: %s\n", new_cd
, cli_errstr(targetcli
));
439 client_set_cur_dir(saved_dir
);
452 /****************************************************************************
454 ****************************************************************************/
456 static int cmd_cd(void)
461 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
464 d_printf("Current directory is %s\n",client_get_cur_dir());
470 /****************************************************************************
472 ****************************************************************************/
474 static int cmd_cd_oneup(void)
479 /*******************************************************************
480 Decide if a file should be operated on.
481 ********************************************************************/
483 static bool do_this_one(file_info
*finfo
)
489 if (finfo
->mode
& aDIR
) {
493 if (*client_get_fileselection() &&
494 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
495 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
499 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
500 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
504 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
505 DEBUG(3,("archive %s failed\n", finfo
->name
));
512 /****************************************************************************
513 Display info about a file.
514 ****************************************************************************/
516 static void display_finfo(file_info
*finfo
, const char *dir
)
519 TALLOC_CTX
*ctx
= talloc_tos();
521 if (!do_this_one(finfo
)) {
525 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
527 d_printf(" %-30s%7.7s %8.0f %s",
529 attrib_string(finfo
->mode
),
532 dir_total
+= finfo
->size
;
537 /* skip if this is . or .. */
538 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
540 /* create absolute filename for cli_nt_create() FIXME */
541 afname
= talloc_asprintf(ctx
,
549 /* print file meta date header */
550 d_printf( "FILENAME:%s\n", finfo
->name
);
551 d_printf( "MODE:%s\n", attrib_string(finfo
->mode
));
552 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
553 d_printf( "MTIME:%s", time_to_asc(t
));
554 fnum
= cli_nt_create(finfo
->cli
, afname
, CREATE_ACCESS_READ
);
556 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
558 cli_errstr( finfo
->cli
)));
561 sd
= cli_query_secdesc(finfo
->cli
, fnum
, ctx
);
563 DEBUG( 0, ("display_finfo() failed to "
564 "get security descriptor: %s",
565 cli_errstr( finfo
->cli
)));
567 display_sec_desc(sd
);
575 /****************************************************************************
576 Accumulate size of a file.
577 ****************************************************************************/
579 static void do_du(file_info
*finfo
, const char *dir
)
581 if (do_this_one(finfo
)) {
582 dir_total
+= finfo
->size
;
586 static bool do_list_recurse
;
587 static bool do_list_dirs
;
588 static char *do_list_queue
= 0;
589 static long do_list_queue_size
= 0;
590 static long do_list_queue_start
= 0;
591 static long do_list_queue_end
= 0;
592 static void (*do_list_fn
)(file_info
*, const char *dir
);
594 /****************************************************************************
595 Functions for do_list_queue.
596 ****************************************************************************/
599 * The do_list_queue is a NUL-separated list of strings stored in a
600 * char*. Since this is a FIFO, we keep track of the beginning and
601 * ending locations of the data in the queue. When we overflow, we
602 * double the size of the char*. When the start of the data passes
603 * the midpoint, we move everything back. This is logically more
604 * complex than a linked list, but easier from a memory management
605 * angle. In any memory error condition, do_list_queue is reset.
606 * Functions check to ensure that do_list_queue is non-NULL before
610 static void reset_do_list_queue(void)
612 SAFE_FREE(do_list_queue
);
613 do_list_queue_size
= 0;
614 do_list_queue_start
= 0;
615 do_list_queue_end
= 0;
618 static void init_do_list_queue(void)
620 reset_do_list_queue();
621 do_list_queue_size
= 1024;
622 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
623 if (do_list_queue
== 0) {
624 d_printf("malloc fail for size %d\n",
625 (int)do_list_queue_size
);
626 reset_do_list_queue();
628 memset(do_list_queue
, 0, do_list_queue_size
);
632 static void adjust_do_list_queue(void)
635 * If the starting point of the queue is more than half way through,
636 * move everything toward the beginning.
639 if (do_list_queue
== NULL
) {
640 DEBUG(4,("do_list_queue is empty\n"));
641 do_list_queue_start
= do_list_queue_end
= 0;
645 if (do_list_queue_start
== do_list_queue_end
) {
646 DEBUG(4,("do_list_queue is empty\n"));
647 do_list_queue_start
= do_list_queue_end
= 0;
648 *do_list_queue
= '\0';
649 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
650 DEBUG(4,("sliding do_list_queue backward\n"));
651 memmove(do_list_queue
,
652 do_list_queue
+ do_list_queue_start
,
653 do_list_queue_end
- do_list_queue_start
);
654 do_list_queue_end
-= do_list_queue_start
;
655 do_list_queue_start
= 0;
659 static void add_to_do_list_queue(const char *entry
)
661 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
662 while (new_end
> do_list_queue_size
) {
663 do_list_queue_size
*= 2;
664 DEBUG(4,("enlarging do_list_queue to %d\n",
665 (int)do_list_queue_size
));
666 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
667 if (! do_list_queue
) {
668 d_printf("failure enlarging do_list_queue to %d bytes\n",
669 (int)do_list_queue_size
);
670 reset_do_list_queue();
672 memset(do_list_queue
+ do_list_queue_size
/ 2,
673 0, do_list_queue_size
/ 2);
677 safe_strcpy_base(do_list_queue
+ do_list_queue_end
,
678 entry
, do_list_queue
, do_list_queue_size
);
679 do_list_queue_end
= new_end
;
680 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
681 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
685 static char *do_list_queue_head(void)
687 return do_list_queue
+ do_list_queue_start
;
690 static void remove_do_list_queue_head(void)
692 if (do_list_queue_end
> do_list_queue_start
) {
693 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
694 adjust_do_list_queue();
695 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
696 (int)do_list_queue_start
, (int)do_list_queue_end
));
700 static int do_list_queue_empty(void)
702 return (! (do_list_queue
&& *do_list_queue
));
705 /****************************************************************************
706 A helper for do_list.
707 ****************************************************************************/
709 static void do_list_helper(const char *mntpoint
, file_info
*f
, const char *mask
, void *state
)
711 TALLOC_CTX
*ctx
= talloc_tos();
713 char *dir_end
= NULL
;
715 /* Work out the directory. */
716 dir
= talloc_strdup(ctx
, mask
);
720 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
724 if (f
->mode
& aDIR
) {
725 if (do_list_dirs
&& do_this_one(f
)) {
728 if (do_list_recurse
&&
730 !strequal(f
->name
,".") &&
731 !strequal(f
->name
,"..")) {
736 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
741 mask2
= talloc_asprintf(ctx
,
749 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
755 mask2
= talloc_asprintf_append(mask2
,
763 add_to_do_list_queue(mask2
);
770 if (do_this_one(f
)) {
776 /****************************************************************************
777 A wrapper around cli_list that adds recursion.
778 ****************************************************************************/
780 void do_list(const char *mask
,
782 void (*fn
)(file_info
*, const char *dir
),
786 static int in_do_list
= 0;
787 TALLOC_CTX
*ctx
= talloc_tos();
788 struct cli_state
*targetcli
= NULL
;
789 char *targetpath
= NULL
;
791 if (in_do_list
&& rec
) {
792 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
798 do_list_recurse
= rec
;
803 init_do_list_queue();
804 add_to_do_list_queue(mask
);
806 while (!do_list_queue_empty()) {
808 * Need to copy head so that it doesn't become
809 * invalid inside the call to cli_list. This
810 * would happen if the list were expanded
812 * Fix from E. Jay Berkenbilt (ejb@ql.org)
814 char *head
= talloc_strdup(ctx
, do_list_queue_head());
822 if ( !cli_resolve_path(ctx
, "", cli
, head
, &targetcli
, &targetpath
) ) {
823 d_printf("do_list: [%s] %s\n", head
, cli_errstr(cli
));
824 remove_do_list_queue_head();
828 cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
);
829 remove_do_list_queue_head();
830 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
831 char *next_file
= do_list_queue_head();
833 if ((strlen(next_file
) >= 2) &&
834 (next_file
[strlen(next_file
) - 1] == '*') &&
835 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
836 save_ch
= next_file
+
837 strlen(next_file
) - 2;
840 /* cwd is only used if showacls is on */
841 client_set_cwd(next_file
);
844 if (!showacls
) /* don't disturbe the showacls output */
845 d_printf("\n%s\n",next_file
);
847 *save_ch
= CLI_DIRSEP_CHAR
;
851 TALLOC_FREE(targetpath
);
855 if (cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetpath
)) {
856 if (cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
) == -1) {
857 d_printf("%s listing %s\n",
858 cli_errstr(targetcli
), targetpath
);
860 TALLOC_FREE(targetpath
);
862 d_printf("do_list: [%s] %s\n", mask
, cli_errstr(cli
));
867 reset_do_list_queue();
870 /****************************************************************************
871 Get a directory listing.
872 ****************************************************************************/
874 static int cmd_dir(void)
876 TALLOC_CTX
*ctx
= talloc_tos();
877 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
883 mask
= talloc_strdup(ctx
, client_get_cur_dir());
888 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
890 if (*buf
== CLI_DIRSEP_CHAR
) {
891 mask
= talloc_strdup(ctx
, buf
);
893 mask
= talloc_asprintf_append(mask
, "%s", buf
);
896 mask
= talloc_asprintf_append(mask
, "*");
903 /* cwd is only used if showacls is on */
904 client_set_cwd(client_get_cur_dir());
907 do_list(mask
, attribute
, display_finfo
, recurse
, true);
911 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
916 /****************************************************************************
917 Get a directory listing.
918 ****************************************************************************/
920 static int cmd_du(void)
922 TALLOC_CTX
*ctx
= talloc_tos();
923 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
929 mask
= talloc_strdup(ctx
, client_get_cur_dir());
933 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
934 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
940 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
942 if (*buf
== CLI_DIRSEP_CHAR
) {
943 mask
= talloc_strdup(ctx
, buf
);
945 mask
= talloc_asprintf_append(mask
, "%s", buf
);
948 mask
= talloc_strdup(ctx
, "*");
951 do_list(mask
, attribute
, do_du
, recurse
, true);
955 d_printf("Total number of bytes: %.0f\n", dir_total
);
960 static int cmd_echo(void)
962 TALLOC_CTX
*ctx
= talloc_tos();
967 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
968 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
969 d_printf("echo <num> <data>\n");
973 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
975 if (!NT_STATUS_IS_OK(status
)) {
976 d_printf("echo failed: %s\n", nt_errstr(status
));
983 /****************************************************************************
984 Get a file from rname to lname
985 ****************************************************************************/
987 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
989 int *pfd
= (int *)priv
;
990 if (writefile(*pfd
, buf
, n
) == -1) {
991 return map_nt_error_from_unix(errno
);
996 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
998 TALLOC_CTX
*ctx
= talloc_tos();
999 int handle
= 0, fnum
;
1000 bool newhandle
= false;
1001 struct timeval tp_start
;
1005 SMB_OFF_T nread
= 0;
1007 struct cli_state
*targetcli
= NULL
;
1008 char *targetname
= NULL
;
1012 lname
= talloc_strdup(ctx
, lname_in
);
1021 if (!cli_resolve_path(ctx
, "", cli
, rname
, &targetcli
, &targetname
) ) {
1022 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1026 GetTimeOfDay(&tp_start
);
1028 fnum
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
);
1031 d_printf("%s opening remote file %s\n",cli_errstr(cli
),rname
);
1035 if(!strcmp(lname
,"-")) {
1036 handle
= fileno(stdout
);
1039 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
, 0644);
1041 start
= sys_lseek(handle
, 0, SEEK_END
);
1043 d_printf("Error seeking local file\n");
1048 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1053 d_printf("Error opening local file %s\n",lname
);
1058 if (!cli_qfileinfo(targetcli
, fnum
,
1059 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1060 !cli_getattrE(targetcli
, fnum
,
1061 &attr
, &size
, NULL
, NULL
, NULL
)) {
1062 d_printf("getattrib: %s\n",cli_errstr(targetcli
));
1066 DEBUG(1,("getting file %s of size %.0f as %s ",
1067 rname
, (double)size
, lname
));
1069 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1070 writefile_sink
, (void *)&handle
, &nread
);
1071 if (!NT_STATUS_IS_OK(status
)) {
1072 d_fprintf(stderr
, "parallel_read returned %s\n",
1074 cli_close(targetcli
, fnum
);
1078 if (!cli_close(targetcli
, fnum
)) {
1079 d_printf("Error %s closing remote file\n",cli_errstr(cli
));
1087 if (archive_level
>= 2 && (attr
& aARCH
)) {
1088 cli_setatr(cli
, rname
, attr
& ~(uint16
)aARCH
, 0);
1092 struct timeval tp_end
;
1095 GetTimeOfDay(&tp_end
);
1097 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1098 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1099 get_total_time_ms
+= this_time
;
1100 get_total_size
+= nread
;
1102 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1103 nread
/ (1.024*this_time
+ 1.0e-4),
1104 get_total_size
/ (1.024*get_total_time_ms
)));
1107 TALLOC_FREE(targetname
);
1111 /****************************************************************************
1113 ****************************************************************************/
1115 static int cmd_get(void)
1117 TALLOC_CTX
*ctx
= talloc_tos();
1122 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1127 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1128 d_printf("get <filename> [localname]\n");
1131 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1135 rname
= clean_name(ctx
, rname
);
1140 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1145 return do_get(rname
, lname
, false);
1148 /****************************************************************************
1149 Do an mget operation on one file.
1150 ****************************************************************************/
1152 static void do_mget(file_info
*finfo
, const char *dir
)
1154 TALLOC_CTX
*ctx
= talloc_tos();
1157 char *saved_curdir
= NULL
;
1158 char *mget_mask
= NULL
;
1159 char *new_cd
= NULL
;
1165 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1169 d_printf("mget aborted\n");
1173 if (finfo
->mode
& aDIR
) {
1174 if (asprintf(&quest
,
1175 "Get directory %s? ",finfo
->name
) < 0) {
1179 if (asprintf(&quest
,
1180 "Get file %s? ",finfo
->name
) < 0) {
1185 if (prompt
&& !yesno(quest
)) {
1191 if (!(finfo
->mode
& aDIR
)) {
1192 rname
= talloc_asprintf(ctx
,
1194 client_get_cur_dir(),
1199 do_get(rname
, finfo
->name
, false);
1204 /* handle directories */
1205 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1206 if (!saved_curdir
) {
1210 new_cd
= talloc_asprintf(ctx
,
1212 client_get_cur_dir(),
1218 client_set_cur_dir(new_cd
);
1220 string_replace(finfo
->name
,'\\','/');
1222 strlower_m(finfo
->name
);
1225 if (!directory_exist(finfo
->name
) &&
1226 mkdir(finfo
->name
,0777) != 0) {
1227 d_printf("failed to create directory %s\n",finfo
->name
);
1228 client_set_cur_dir(saved_curdir
);
1232 if (chdir(finfo
->name
) != 0) {
1233 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1234 client_set_cur_dir(saved_curdir
);
1238 mget_mask
= talloc_asprintf(ctx
,
1240 client_get_cur_dir());
1246 do_list(mget_mask
, aSYSTEM
| aHIDDEN
| aDIR
,do_mget
,false, true);
1247 if (chdir("..") == -1) {
1248 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1251 client_set_cur_dir(saved_curdir
);
1252 TALLOC_FREE(mget_mask
);
1253 TALLOC_FREE(saved_curdir
);
1254 TALLOC_FREE(new_cd
);
1257 /****************************************************************************
1258 View the file using the pager.
1259 ****************************************************************************/
1261 static int cmd_more(void)
1263 TALLOC_CTX
*ctx
= talloc_tos();
1267 char *pager_cmd
= NULL
;
1272 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1277 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1281 fd
= smb_mkstemp(lname
);
1283 d_printf("failed to create temporary file for more\n");
1288 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1289 d_printf("more <filename>\n");
1293 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1297 rname
= clean_name(ctx
,rname
);
1302 rc
= do_get(rname
, lname
, false);
1304 pager
=getenv("PAGER");
1306 pager_cmd
= talloc_asprintf(ctx
,
1308 (pager
? pager
:PAGER
),
1313 if (system(pager_cmd
) == -1) {
1314 d_printf("system command '%s' returned -1\n",
1322 /****************************************************************************
1324 ****************************************************************************/
1326 static int cmd_mget(void)
1328 TALLOC_CTX
*ctx
= talloc_tos();
1329 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1330 char *mget_mask
= NULL
;
1339 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1340 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1344 if (*buf
== CLI_DIRSEP_CHAR
) {
1345 mget_mask
= talloc_strdup(ctx
, buf
);
1347 mget_mask
= talloc_asprintf_append(mget_mask
,
1353 do_list(mget_mask
, attribute
, do_mget
, false, true);
1356 if (mget_mask
== NULL
) {
1357 d_printf("nothing to mget\n");
1362 mget_mask
= talloc_asprintf(ctx
,
1364 client_get_cur_dir());
1368 do_list(mget_mask
, attribute
, do_mget
, false, true);
1374 /****************************************************************************
1375 Make a directory of name "name".
1376 ****************************************************************************/
1378 static bool do_mkdir(const char *name
)
1380 TALLOC_CTX
*ctx
= talloc_tos();
1381 struct cli_state
*targetcli
;
1382 char *targetname
= NULL
;
1384 if (!cli_resolve_path(ctx
, "", cli
, name
, &targetcli
, &targetname
)) {
1385 d_printf("mkdir %s: %s\n", name
, cli_errstr(cli
));
1389 if (!cli_mkdir(targetcli
, targetname
)) {
1390 d_printf("%s making remote directory %s\n",
1391 cli_errstr(targetcli
),name
);
1398 /****************************************************************************
1399 Show 8.3 name of a file.
1400 ****************************************************************************/
1402 static bool do_altname(const char *name
)
1406 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1407 d_printf("%s getting alt name for %s\n",
1408 cli_errstr(cli
),name
);
1411 d_printf("%s\n", altname
);
1416 /****************************************************************************
1418 ****************************************************************************/
1420 static int cmd_quit(void)
1428 /****************************************************************************
1430 ****************************************************************************/
1432 static int cmd_mkdir(void)
1434 TALLOC_CTX
*ctx
= talloc_tos();
1438 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1443 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1445 d_printf("mkdir <dirname>\n");
1449 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1457 struct cli_state
*targetcli
;
1458 char *targetname
= NULL
;
1462 ddir2
= talloc_strdup(ctx
, "");
1467 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
1471 ddir
= talloc_strdup(ctx
, targetname
);
1475 trim_char(ddir
,'.','\0');
1476 p
= strtok_r(ddir
, "/\\", &saveptr
);
1478 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1482 if (!cli_chkpath(targetcli
, ddir2
)) {
1485 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1489 p
= strtok_r(NULL
, "/\\", &saveptr
);
1498 /****************************************************************************
1500 ****************************************************************************/
1502 static int cmd_altname(void)
1504 TALLOC_CTX
*ctx
= talloc_tos();
1508 name
= talloc_strdup(ctx
, client_get_cur_dir());
1513 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1514 d_printf("altname <file>\n");
1517 name
= talloc_asprintf_append(name
, "%s", buf
);
1525 /****************************************************************************
1526 Show all info we can get
1527 ****************************************************************************/
1529 static int do_allinfo(const char *name
)
1532 struct timespec b_time
, a_time
, m_time
, c_time
;
1537 unsigned int num_streams
;
1538 struct stream_struct
*streams
;
1541 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1542 d_printf("%s getting alt name for %s\n",
1543 cli_errstr(cli
),name
);
1546 d_printf("altname: %s\n", altname
);
1548 if (!cli_qpathinfo2(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1549 &size
, &mode
, &ino
)) {
1550 d_printf("%s getting pathinfo for %s\n",
1551 cli_errstr(cli
),name
);
1555 unix_timespec_to_nt_time(&tmp
, b_time
);
1556 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1558 unix_timespec_to_nt_time(&tmp
, a_time
);
1559 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1561 unix_timespec_to_nt_time(&tmp
, m_time
);
1562 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1564 unix_timespec_to_nt_time(&tmp
, c_time
);
1565 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1567 if (!cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1569 d_printf("%s getting streams for %s\n",
1570 cli_errstr(cli
),name
);
1574 for (i
=0; i
<num_streams
; i
++) {
1575 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1576 (unsigned long long)streams
[i
].size
);
1582 /****************************************************************************
1583 Show all info we can get
1584 ****************************************************************************/
1586 static int cmd_allinfo(void)
1588 TALLOC_CTX
*ctx
= talloc_tos();
1592 name
= talloc_strdup(ctx
, client_get_cur_dir());
1597 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1598 d_printf("allinfo <file>\n");
1601 name
= talloc_asprintf_append(name
, "%s", buf
);
1611 /****************************************************************************
1613 ****************************************************************************/
1615 static int do_put(const char *rname
, const char *lname
, bool reput
)
1617 TALLOC_CTX
*ctx
= talloc_tos();
1620 SMB_OFF_T start
= 0;
1622 struct timeval tp_start
;
1623 struct cli_state
*targetcli
;
1624 char *targetname
= NULL
;
1625 struct push_state state
;
1628 if (!cli_resolve_path(ctx
, "", cli
, rname
, &targetcli
, &targetname
)) {
1629 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1633 GetTimeOfDay(&tp_start
);
1636 fnum
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
);
1638 if (!cli_qfileinfo(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1639 !cli_getattrE(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
)) {
1640 d_printf("getattrib: %s\n",cli_errstr(cli
));
1645 fnum
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
);
1649 d_printf("%s opening remote file %s\n",cli_errstr(targetcli
),rname
);
1653 /* allow files to be piped into smbclient
1656 Note that in this case this function will exit(0) rather
1658 if (!strcmp(lname
, "-")) {
1660 /* size of file is not known */
1662 f
= x_fopen(lname
,O_RDONLY
, 0);
1664 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1665 d_printf("Error seeking local file\n");
1672 d_printf("Error opening local file %s\n",lname
);
1676 DEBUG(1,("putting file %s as %s ",lname
,
1679 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1684 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1686 if (!NT_STATUS_IS_OK(status
)) {
1687 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1690 if (!cli_close(targetcli
, fnum
)) {
1691 d_printf("%s closing remote file %s\n",cli_errstr(cli
),rname
);
1701 struct timeval tp_end
;
1704 GetTimeOfDay(&tp_end
);
1706 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1707 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1708 put_total_time_ms
+= this_time
;
1709 put_total_size
+= state
.nread
;
1711 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1712 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1713 put_total_size
/ (1.024*put_total_time_ms
)));
1724 /****************************************************************************
1726 ****************************************************************************/
1728 static int cmd_put(void)
1730 TALLOC_CTX
*ctx
= talloc_tos();
1735 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1740 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1741 d_printf("put <filename>\n");
1745 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1746 rname
= talloc_asprintf_append(rname
, "%s", buf
);
1748 rname
= talloc_asprintf_append(rname
, "%s", lname
);
1754 rname
= clean_name(ctx
, rname
);
1761 /* allow '-' to represent stdin
1762 jdblair, 24.jun.98 */
1763 if (!file_exist_stat(lname
,&st
) &&
1764 (strcmp(lname
,"-"))) {
1765 d_printf("%s does not exist\n",lname
);
1770 return do_put(rname
, lname
, false);
1773 /*************************************
1774 File list structure.
1775 *************************************/
1777 static struct file_list
{
1778 struct file_list
*prev
, *next
;
1783 /****************************************************************************
1784 Free a file_list structure.
1785 ****************************************************************************/
1787 static void free_file_list (struct file_list
*list_head
)
1789 struct file_list
*list
, *next
;
1791 for (list
= list_head
; list
; list
= next
) {
1793 DLIST_REMOVE(list_head
, list
);
1794 SAFE_FREE(list
->file_path
);
1799 /****************************************************************************
1800 Seek in a directory/file list until you get something that doesn't start with
1802 ****************************************************************************/
1804 static bool seek_list(struct file_list
*list
, char *name
)
1807 trim_string(list
->file_path
,"./","\n");
1808 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1817 /****************************************************************************
1818 Set the file selection mask.
1819 ****************************************************************************/
1821 static int cmd_select(void)
1823 TALLOC_CTX
*ctx
= talloc_tos();
1824 char *new_fs
= NULL
;
1825 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
1828 client_set_fileselection(new_fs
);
1830 client_set_fileselection("");
1835 /****************************************************************************
1836 Recursive file matching function act as find
1837 match must be always set to true when calling this function
1838 ****************************************************************************/
1840 static int file_find(struct file_list
**list
, const char *directory
,
1841 const char *expression
, bool match
)
1843 SMB_STRUCT_DIR
*dir
;
1844 struct file_list
*entry
;
1845 struct stat statbuf
;
1851 dir
= sys_opendir(directory
);
1855 while ((dname
= readdirname(dir
))) {
1856 if (!strcmp("..", dname
))
1858 if (!strcmp(".", dname
))
1861 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1866 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1868 ret
= stat(path
, &statbuf
);
1870 if (S_ISDIR(statbuf
.st_mode
)) {
1872 ret
= file_find(list
, path
, expression
, false);
1875 d_printf("file_find: cannot stat file %s\n", path
);
1884 entry
= SMB_MALLOC_P(struct file_list
);
1886 d_printf("Out of memory in file_find\n");
1890 entry
->file_path
= path
;
1891 entry
->isdir
= isdir
;
1892 DLIST_ADD(*list
, entry
);
1902 /****************************************************************************
1904 ****************************************************************************/
1906 static int cmd_mput(void)
1908 TALLOC_CTX
*ctx
= talloc_tos();
1911 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
1913 struct file_list
*temp_list
;
1914 char *quest
, *lname
, *rname
;
1918 ret
= file_find(&file_list
, ".", p
, true);
1920 free_file_list(file_list
);
1928 for (temp_list
= file_list
; temp_list
;
1929 temp_list
= temp_list
->next
) {
1932 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
1935 trim_string(lname
, "./", "/");
1937 /* check if it's a directory */
1938 if (temp_list
->isdir
) {
1939 /* if (!recurse) continue; */
1942 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
1945 if (prompt
&& !yesno(quest
)) { /* No */
1946 /* Skip the directory */
1947 lname
[strlen(lname
)-1] = '/';
1948 if (!seek_list(temp_list
, lname
))
1952 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
1955 normalize_name(rname
);
1956 if (!cli_chkpath(cli
, rname
) &&
1958 DEBUG (0, ("Unable to make dir, skipping..."));
1959 /* Skip the directory */
1960 lname
[strlen(lname
)-1] = '/';
1961 if (!seek_list(temp_list
, lname
)) {
1969 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
1972 if (prompt
&& !yesno(quest
)) {
1979 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
1984 normalize_name(rname
);
1986 do_put(rname
, lname
, false);
1988 free_file_list(file_list
);
1997 /****************************************************************************
1999 ****************************************************************************/
2001 static int do_cancel(int job
)
2003 if (cli_printjob_del(cli
, job
)) {
2004 d_printf("Job %d cancelled\n",job
);
2007 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
2012 /****************************************************************************
2014 ****************************************************************************/
2016 static int cmd_cancel(void)
2018 TALLOC_CTX
*ctx
= talloc_tos();
2022 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2023 d_printf("cancel <jobid> ...\n");
2029 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2034 /****************************************************************************
2036 ****************************************************************************/
2038 static int cmd_print(void)
2040 TALLOC_CTX
*ctx
= talloc_tos();
2045 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2046 d_printf("print <filename>\n");
2050 rname
= talloc_strdup(ctx
, lname
);
2054 p
= strrchr_m(rname
,'/');
2056 rname
= talloc_asprintf(ctx
,
2061 if (strequal(lname
,"-")) {
2062 rname
= talloc_asprintf(ctx
,
2070 return do_put(rname
, lname
, false);
2073 /****************************************************************************
2074 Show a print queue entry.
2075 ****************************************************************************/
2077 static void queue_fn(struct print_job_info
*p
)
2079 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2082 /****************************************************************************
2084 ****************************************************************************/
2086 static int cmd_queue(void)
2088 cli_print_queue(cli
, queue_fn
);
2092 /****************************************************************************
2094 ****************************************************************************/
2096 static void do_del(file_info
*finfo
, const char *dir
)
2098 TALLOC_CTX
*ctx
= talloc_tos();
2101 mask
= talloc_asprintf(ctx
,
2110 if (finfo
->mode
& aDIR
) {
2115 if (!cli_unlink(finfo
->cli
, mask
)) {
2116 d_printf("%s deleting remote file %s\n",
2117 cli_errstr(finfo
->cli
),mask
);
2122 /****************************************************************************
2124 ****************************************************************************/
2126 static int cmd_del(void)
2128 TALLOC_CTX
*ctx
= talloc_tos();
2131 uint16 attribute
= aSYSTEM
| aHIDDEN
;
2137 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2141 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2142 d_printf("del <filename>\n");
2145 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2150 do_list(mask
,attribute
,do_del
,false,false);
2154 /****************************************************************************
2155 Wildcard delete some files.
2156 ****************************************************************************/
2158 static int cmd_wdel(void)
2160 TALLOC_CTX
*ctx
= talloc_tos();
2164 struct cli_state
*targetcli
;
2165 char *targetname
= NULL
;
2167 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2168 d_printf("wdel 0x<attrib> <wcard>\n");
2172 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2174 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2175 d_printf("wdel 0x<attrib> <wcard>\n");
2179 mask
= talloc_asprintf(ctx
, "%s%s",
2180 client_get_cur_dir(),
2186 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2187 d_printf("cmd_wdel %s: %s\n", mask
, cli_errstr(cli
));
2191 if (!cli_unlink_full(targetcli
, targetname
, attribute
)) {
2192 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli
),targetname
);
2197 /****************************************************************************
2198 ****************************************************************************/
2200 static int cmd_open(void)
2202 TALLOC_CTX
*ctx
= talloc_tos();
2205 char *targetname
= NULL
;
2206 struct cli_state
*targetcli
;
2209 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2210 d_printf("open <filename>\n");
2213 mask
= talloc_asprintf(ctx
,
2215 client_get_cur_dir(),
2221 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2222 d_printf("open %s: %s\n", mask
, cli_errstr(cli
));
2226 fnum
= cli_nt_create(targetcli
, targetname
, FILE_READ_DATA
|FILE_WRITE_DATA
);
2228 fnum
= cli_nt_create(targetcli
, targetname
, FILE_READ_DATA
);
2230 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2232 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2235 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2240 static int cmd_posix_encrypt(void)
2242 TALLOC_CTX
*ctx
= talloc_tos();
2243 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2245 if (cli
->use_kerberos
) {
2246 status
= cli_gss_smb_encryption_start(cli
);
2248 char *domain
= NULL
;
2250 char *password
= NULL
;
2252 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2253 d_printf("posix_encrypt domain user password\n");
2257 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2258 d_printf("posix_encrypt domain user password\n");
2262 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2263 d_printf("posix_encrypt domain user password\n");
2267 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2273 if (!NT_STATUS_IS_OK(status
)) {
2274 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2276 d_printf("encryption on\n");
2283 /****************************************************************************
2284 ****************************************************************************/
2286 static int cmd_posix_open(void)
2288 TALLOC_CTX
*ctx
= talloc_tos();
2291 char *targetname
= NULL
;
2292 struct cli_state
*targetcli
;
2296 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2297 d_printf("posix_open <filename> 0<mode>\n");
2300 mask
= talloc_asprintf(ctx
,
2302 client_get_cur_dir(),
2308 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2309 d_printf("posix_open <filename> 0<mode>\n");
2312 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2314 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2315 d_printf("posix_open %s: %s\n", mask
, cli_errstr(cli
));
2319 fnum
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
);
2321 fnum
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDONLY
, mode
);
2323 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2325 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2328 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2334 static int cmd_posix_mkdir(void)
2336 TALLOC_CTX
*ctx
= talloc_tos();
2339 char *targetname
= NULL
;
2340 struct cli_state
*targetcli
;
2344 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2345 d_printf("posix_mkdir <filename> 0<mode>\n");
2348 mask
= talloc_asprintf(ctx
,
2350 client_get_cur_dir(),
2356 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2357 d_printf("posix_mkdir <filename> 0<mode>\n");
2360 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2362 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2363 d_printf("posix_mkdir %s: %s\n", mask
, cli_errstr(cli
));
2367 fnum
= cli_posix_mkdir(targetcli
, targetname
, mode
);
2369 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2371 d_printf("posix_mkdir created directory %s\n", targetname
);
2376 static int cmd_posix_unlink(void)
2378 TALLOC_CTX
*ctx
= talloc_tos();
2381 char *targetname
= NULL
;
2382 struct cli_state
*targetcli
;
2384 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2385 d_printf("posix_unlink <filename>\n");
2388 mask
= talloc_asprintf(ctx
,
2390 client_get_cur_dir(),
2396 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2397 d_printf("posix_unlink %s: %s\n", mask
, cli_errstr(cli
));
2401 if (!cli_posix_unlink(targetcli
, targetname
)) {
2402 d_printf("Failed to unlink file %s. %s\n", targetname
, cli_errstr(cli
));
2404 d_printf("posix_unlink deleted file %s\n", targetname
);
2410 static int cmd_posix_rmdir(void)
2412 TALLOC_CTX
*ctx
= talloc_tos();
2415 char *targetname
= NULL
;
2416 struct cli_state
*targetcli
;
2418 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2419 d_printf("posix_rmdir <filename>\n");
2422 mask
= talloc_asprintf(ctx
,
2424 client_get_cur_dir(),
2430 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2431 d_printf("posix_rmdir %s: %s\n", mask
, cli_errstr(cli
));
2435 if (!cli_posix_rmdir(targetcli
, targetname
)) {
2436 d_printf("Failed to unlink directory %s. %s\n", targetname
, cli_errstr(cli
));
2438 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2444 static int cmd_close(void)
2446 TALLOC_CTX
*ctx
= talloc_tos();
2450 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2451 d_printf("close <fnum>\n");
2456 /* We really should use the targetcli here.... */
2457 if (!cli_close(cli
, fnum
)) {
2458 d_printf("close %d: %s\n", fnum
, cli_errstr(cli
));
2464 static int cmd_posix(void)
2466 TALLOC_CTX
*ctx
= talloc_tos();
2467 uint16 major
, minor
;
2468 uint32 caplow
, caphigh
;
2471 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2472 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2476 if (!cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
, &caphigh
)) {
2477 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2481 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2483 caps
= talloc_strdup(ctx
, "");
2487 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2488 caps
= talloc_asprintf_append(caps
, "locks ");
2493 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2494 caps
= talloc_asprintf_append(caps
, "acls ");
2499 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2500 caps
= talloc_asprintf_append(caps
, "eas ");
2505 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2506 caps
= talloc_asprintf_append(caps
, "pathnames ");
2511 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2512 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2517 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2518 caps
= talloc_asprintf_append(caps
, "large_read ");
2523 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2524 caps
= talloc_asprintf_append(caps
, "large_write ");
2529 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2530 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2535 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2536 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2542 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2543 caps
[strlen(caps
)-1] = '\0';
2546 d_printf("Server supports CIFS capabilities %s\n", caps
);
2548 if (!cli_set_unix_extensions_capabilities(cli
, major
, minor
, caplow
, caphigh
)) {
2549 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli
));
2553 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2554 CLI_DIRSEP_CHAR
= '/';
2555 *CLI_DIRSEP_STR
= '/';
2556 client_set_cur_dir(CLI_DIRSEP_STR
);
2562 static int cmd_lock(void)
2564 TALLOC_CTX
*ctx
= talloc_tos();
2566 uint64_t start
, len
;
2567 enum brl_type lock_type
;
2570 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2571 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2576 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2577 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2581 if (*buf
== 'r' || *buf
== 'R') {
2582 lock_type
= READ_LOCK
;
2583 } else if (*buf
== 'w' || *buf
== 'W') {
2584 lock_type
= WRITE_LOCK
;
2586 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2590 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2591 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2595 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2597 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2598 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2602 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2604 if (!cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
)) {
2605 d_printf("lock failed %d: %s\n", fnum
, cli_errstr(cli
));
2611 static int cmd_unlock(void)
2613 TALLOC_CTX
*ctx
= talloc_tos();
2615 uint64_t start
, len
;
2618 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2619 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2624 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2625 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2629 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2631 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2632 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2636 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2638 if (!cli_posix_unlock(cli
, fnum
, start
, len
)) {
2639 d_printf("unlock failed %d: %s\n", fnum
, cli_errstr(cli
));
2646 /****************************************************************************
2648 ****************************************************************************/
2650 static int cmd_rmdir(void)
2652 TALLOC_CTX
*ctx
= talloc_tos();
2655 char *targetname
= NULL
;
2656 struct cli_state
*targetcli
;
2658 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2659 d_printf("rmdir <dirname>\n");
2662 mask
= talloc_asprintf(ctx
,
2664 client_get_cur_dir(),
2670 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2671 d_printf("rmdir %s: %s\n", mask
, cli_errstr(cli
));
2675 if (!cli_rmdir(targetcli
, targetname
)) {
2676 d_printf("%s removing remote directory file %s\n",
2677 cli_errstr(targetcli
),mask
);
2683 /****************************************************************************
2685 ****************************************************************************/
2687 static int cmd_link(void)
2689 TALLOC_CTX
*ctx
= talloc_tos();
2690 char *oldname
= NULL
;
2691 char *newname
= NULL
;
2694 char *targetname
= NULL
;
2695 struct cli_state
*targetcli
;
2697 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2698 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2699 d_printf("link <oldname> <newname>\n");
2702 oldname
= talloc_asprintf(ctx
,
2704 client_get_cur_dir(),
2709 newname
= talloc_asprintf(ctx
,
2711 client_get_cur_dir(),
2717 if (!cli_resolve_path(ctx
, "", cli
, oldname
, &targetcli
, &targetname
)) {
2718 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2722 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2723 d_printf("Server doesn't support UNIX CIFS calls.\n");
2727 if (!cli_unix_hardlink(targetcli
, targetname
, newname
)) {
2728 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli
), newname
, oldname
);
2734 /****************************************************************************
2736 ****************************************************************************/
2738 static int cmd_symlink(void)
2740 TALLOC_CTX
*ctx
= talloc_tos();
2741 char *oldname
= NULL
;
2742 char *newname
= NULL
;
2745 char *targetname
= NULL
;
2746 struct cli_state
*targetcli
;
2748 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2749 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2750 d_printf("symlink <oldname> <newname>\n");
2753 oldname
= talloc_asprintf(ctx
,
2755 client_get_cur_dir(),
2760 newname
= talloc_asprintf(ctx
,
2762 client_get_cur_dir(),
2768 if (!cli_resolve_path(ctx
, "", cli
, oldname
, &targetcli
, &targetname
)) {
2769 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2773 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2774 d_printf("Server doesn't support UNIX CIFS calls.\n");
2778 if (!cli_unix_symlink(targetcli
, targetname
, newname
)) {
2779 d_printf("%s symlinking files (%s -> %s)\n",
2780 cli_errstr(targetcli
), newname
, targetname
);
2787 /****************************************************************************
2789 ****************************************************************************/
2791 static int cmd_chmod(void)
2793 TALLOC_CTX
*ctx
= talloc_tos();
2797 char *targetname
= NULL
;
2798 struct cli_state
*targetcli
;
2801 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2802 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2803 d_printf("chmod mode file\n");
2806 src
= talloc_asprintf(ctx
,
2808 client_get_cur_dir(),
2814 mode
= (mode_t
)strtol(buf
, NULL
, 8);
2816 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
2817 d_printf("chmod %s: %s\n", src
, cli_errstr(cli
));
2821 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2822 d_printf("Server doesn't support UNIX CIFS calls.\n");
2826 if (!cli_unix_chmod(targetcli
, targetname
, mode
)) {
2827 d_printf("%s chmod file %s 0%o\n",
2828 cli_errstr(targetcli
), src
, (unsigned int)mode
);
2835 static const char *filetype_to_str(mode_t mode
)
2837 if (S_ISREG(mode
)) {
2838 return "regular file";
2839 } else if (S_ISDIR(mode
)) {
2843 if (S_ISCHR(mode
)) {
2844 return "character device";
2848 if (S_ISBLK(mode
)) {
2849 return "block device";
2853 if (S_ISFIFO(mode
)) {
2858 if (S_ISLNK(mode
)) {
2859 return "symbolic link";
2863 if (S_ISSOCK(mode
)) {
2870 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
2879 static char *unix_mode_to_str(char *s
, mode_t m
)
2882 const char *str
= filetype_to_str(m
);
2898 *p
++ = str
[1] == 'y' ? 'l' : 's';
2905 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
2906 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
2907 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
2908 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
2909 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
2910 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
2911 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
2912 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
2913 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
2918 /****************************************************************************
2919 Utility function for UNIX getfacl.
2920 ****************************************************************************/
2922 static char *perms_to_string(fstring permstr
, unsigned char perms
)
2924 fstrcpy(permstr
, "---");
2925 if (perms
& SMB_POSIX_ACL_READ
) {
2928 if (perms
& SMB_POSIX_ACL_WRITE
) {
2931 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
2937 /****************************************************************************
2939 ****************************************************************************/
2941 static int cmd_getfacl(void)
2943 TALLOC_CTX
*ctx
= talloc_tos();
2946 char *targetname
= NULL
;
2947 struct cli_state
*targetcli
;
2948 uint16 major
, minor
;
2949 uint32 caplow
, caphigh
;
2950 char *retbuf
= NULL
;
2952 SMB_STRUCT_STAT sbuf
;
2953 uint16 num_file_acls
= 0;
2954 uint16 num_dir_acls
= 0;
2957 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
2958 d_printf("getfacl filename\n");
2961 src
= talloc_asprintf(ctx
,
2963 client_get_cur_dir(),
2969 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
2970 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
2974 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2975 d_printf("Server doesn't support UNIX CIFS calls.\n");
2979 if (!cli_unix_extensions_version(targetcli
, &major
, &minor
,
2980 &caplow
, &caphigh
)) {
2981 d_printf("Can't get UNIX CIFS version from server.\n");
2985 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
2986 d_printf("This server supports UNIX extensions "
2987 "but doesn't support POSIX ACLs.\n");
2991 if (!cli_unix_stat(targetcli
, targetname
, &sbuf
)) {
2992 d_printf("%s getfacl doing a stat on file %s\n",
2993 cli_errstr(targetcli
), src
);
2997 if (!cli_unix_getfacl(targetcli
, targetname
, &rb_size
, &retbuf
)) {
2998 d_printf("%s getfacl file %s\n",
2999 cli_errstr(targetcli
), src
);
3003 /* ToDo : Print out the ACL values. */
3004 if (SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
|| rb_size
< 6) {
3005 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3006 src
, (unsigned int)CVAL(retbuf
,0) );
3011 num_file_acls
= SVAL(retbuf
,2);
3012 num_dir_acls
= SVAL(retbuf
,4);
3013 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3014 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3016 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3017 (unsigned int)rb_size
);
3023 d_printf("# file: %s\n", src
);
3024 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_uid
, (unsigned int)sbuf
.st_gid
);
3026 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3027 d_printf("No acls found.\n");
3030 for (i
= 0; i
< num_file_acls
; i
++) {
3033 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3034 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3037 case SMB_POSIX_ACL_USER_OBJ
:
3040 case SMB_POSIX_ACL_USER
:
3041 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3042 d_printf("user:%u:", uorg
);
3044 case SMB_POSIX_ACL_GROUP_OBJ
:
3045 d_printf("group::");
3047 case SMB_POSIX_ACL_GROUP
:
3048 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3049 d_printf("group:%u:", uorg
);
3051 case SMB_POSIX_ACL_MASK
:
3054 case SMB_POSIX_ACL_OTHER
:
3055 d_printf("other::");
3058 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3059 src
, (unsigned int)tagtype
);
3064 d_printf("%s\n", perms_to_string(permstring
, perms
));
3067 for (i
= 0; i
< num_dir_acls
; i
++) {
3070 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3071 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3074 case SMB_POSIX_ACL_USER_OBJ
:
3075 d_printf("default:user::");
3077 case SMB_POSIX_ACL_USER
:
3078 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3079 d_printf("default:user:%u:", uorg
);
3081 case SMB_POSIX_ACL_GROUP_OBJ
:
3082 d_printf("default:group::");
3084 case SMB_POSIX_ACL_GROUP
:
3085 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3086 d_printf("default:group:%u:", uorg
);
3088 case SMB_POSIX_ACL_MASK
:
3089 d_printf("default:mask::");
3091 case SMB_POSIX_ACL_OTHER
:
3092 d_printf("default:other::");
3095 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3096 src
, (unsigned int)tagtype
);
3101 d_printf("%s\n", perms_to_string(permstring
, perms
));
3108 /****************************************************************************
3110 ****************************************************************************/
3112 static int cmd_stat(void)
3114 TALLOC_CTX
*ctx
= talloc_tos();
3117 char *targetname
= NULL
;
3118 struct cli_state
*targetcli
;
3120 SMB_STRUCT_STAT sbuf
;
3123 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3124 d_printf("stat file\n");
3127 src
= talloc_asprintf(ctx
,
3129 client_get_cur_dir(),
3135 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
3136 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3140 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3141 d_printf("Server doesn't support UNIX CIFS calls.\n");
3145 if (!cli_unix_stat(targetcli
, targetname
, &sbuf
)) {
3146 d_printf("%s stat file %s\n",
3147 cli_errstr(targetcli
), src
);
3151 /* Print out the stat values. */
3152 d_printf("File: %s\n", src
);
3153 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3154 (double)sbuf
.st_size
,
3155 (unsigned int)sbuf
.st_blocks
,
3156 filetype_to_str(sbuf
.st_mode
));
3158 #if defined(S_ISCHR) && defined(S_ISBLK)
3159 if (S_ISCHR(sbuf
.st_mode
) || S_ISBLK(sbuf
.st_mode
)) {
3160 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3161 (double)sbuf
.st_ino
,
3162 (unsigned int)sbuf
.st_nlink
,
3163 unix_dev_major(sbuf
.st_rdev
),
3164 unix_dev_minor(sbuf
.st_rdev
));
3167 d_printf("Inode: %.0f\tLinks: %u\n",
3168 (double)sbuf
.st_ino
,
3169 (unsigned int)sbuf
.st_nlink
);
3171 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3172 ((int)sbuf
.st_mode
& 0777),
3173 unix_mode_to_str(mode_str
, sbuf
.st_mode
),
3174 (unsigned int)sbuf
.st_uid
,
3175 (unsigned int)sbuf
.st_gid
);
3177 lt
= localtime(&sbuf
.st_atime
);
3179 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3181 fstrcpy(mode_str
, "unknown");
3183 d_printf("Access: %s\n", mode_str
);
3185 lt
= localtime(&sbuf
.st_mtime
);
3187 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3189 fstrcpy(mode_str
, "unknown");
3191 d_printf("Modify: %s\n", mode_str
);
3193 lt
= localtime(&sbuf
.st_ctime
);
3195 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3197 fstrcpy(mode_str
, "unknown");
3199 d_printf("Change: %s\n", mode_str
);
3205 /****************************************************************************
3207 ****************************************************************************/
3209 static int cmd_chown(void)
3211 TALLOC_CTX
*ctx
= talloc_tos();
3215 char *buf
, *buf2
, *buf3
;
3216 struct cli_state
*targetcli
;
3217 char *targetname
= NULL
;
3219 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3220 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3221 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3222 d_printf("chown uid gid file\n");
3226 uid
= (uid_t
)atoi(buf
);
3227 gid
= (gid_t
)atoi(buf2
);
3229 src
= talloc_asprintf(ctx
,
3231 client_get_cur_dir(),
3236 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
) ) {
3237 d_printf("chown %s: %s\n", src
, cli_errstr(cli
));
3241 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3242 d_printf("Server doesn't support UNIX CIFS calls.\n");
3246 if (!cli_unix_chown(targetcli
, targetname
, uid
, gid
)) {
3247 d_printf("%s chown file %s uid=%d, gid=%d\n",
3248 cli_errstr(targetcli
), src
, (int)uid
, (int)gid
);
3255 /****************************************************************************
3257 ****************************************************************************/
3259 static int cmd_rename(void)
3261 TALLOC_CTX
*ctx
= talloc_tos();
3264 struct cli_state
*targetcli
;
3268 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3269 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3270 d_printf("rename <src> <dest>\n");
3274 src
= talloc_asprintf(ctx
,
3276 client_get_cur_dir(),
3282 dest
= talloc_asprintf(ctx
,
3284 client_get_cur_dir(),
3290 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetsrc
)) {
3291 d_printf("rename %s: %s\n", src
, cli_errstr(cli
));
3295 if (!cli_resolve_path(ctx
, "", cli
, dest
, &targetcli
, &targetdest
)) {
3296 d_printf("rename %s: %s\n", dest
, cli_errstr(cli
));
3300 if (!cli_rename(targetcli
, targetsrc
, targetdest
)) {
3301 d_printf("%s renaming files %s -> %s \n",
3302 cli_errstr(targetcli
),
3311 /****************************************************************************
3312 Print the volume name.
3313 ****************************************************************************/
3315 static int cmd_volume(void)
3321 if (!cli_get_fs_volume_info(cli
, volname
, &serial_num
, &create_date
)) {
3322 d_printf("Errr %s getting volume info\n",cli_errstr(cli
));
3326 d_printf("Volume: |%s| serial number 0x%x\n",
3327 volname
, (unsigned int)serial_num
);
3331 /****************************************************************************
3332 Hard link files using the NT call.
3333 ****************************************************************************/
3335 static int cmd_hardlink(void)
3337 TALLOC_CTX
*ctx
= talloc_tos();
3340 struct cli_state
*targetcli
;
3343 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3344 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3345 d_printf("hardlink <src> <dest>\n");
3349 src
= talloc_asprintf(ctx
,
3351 client_get_cur_dir(),
3357 dest
= talloc_asprintf(ctx
,
3359 client_get_cur_dir(),
3365 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
3366 d_printf("hardlink %s: %s\n", src
, cli_errstr(cli
));
3370 if (!cli_nt_hardlink(targetcli
, targetname
, dest
)) {
3371 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli
));
3378 /****************************************************************************
3379 Toggle the prompt flag.
3380 ****************************************************************************/
3382 static int cmd_prompt(void)
3385 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3389 /****************************************************************************
3390 Set the newer than time.
3391 ****************************************************************************/
3393 static int cmd_newer(void)
3395 TALLOC_CTX
*ctx
= talloc_tos();
3398 SMB_STRUCT_STAT sbuf
;
3400 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3401 if (ok
&& (sys_stat(buf
,&sbuf
) == 0)) {
3402 newer_than
= sbuf
.st_mtime
;
3403 DEBUG(1,("Getting files newer than %s",
3404 time_to_asc(newer_than
)));
3409 if (ok
&& newer_than
== 0) {
3410 d_printf("Error setting newer-than time\n");
3417 /****************************************************************************
3418 Set the archive level.
3419 ****************************************************************************/
3421 static int cmd_archive(void)
3423 TALLOC_CTX
*ctx
= talloc_tos();
3426 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3427 archive_level
= atoi(buf
);
3429 d_printf("Archive level is %d\n",archive_level
);
3435 /****************************************************************************
3436 Toggle the lowercaseflag.
3437 ****************************************************************************/
3439 static int cmd_lowercase(void)
3441 lowercase
= !lowercase
;
3442 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
3446 /****************************************************************************
3447 Toggle the case sensitive flag.
3448 ****************************************************************************/
3450 static int cmd_setcase(void)
3452 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
3454 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
3455 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
3460 /****************************************************************************
3461 Toggle the showacls flag.
3462 ****************************************************************************/
3464 static int cmd_showacls(void)
3466 showacls
= !showacls
;
3467 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
3472 /****************************************************************************
3473 Toggle the recurse flag.
3474 ****************************************************************************/
3476 static int cmd_recurse(void)
3479 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
3483 /****************************************************************************
3484 Toggle the translate flag.
3485 ****************************************************************************/
3487 static int cmd_translate(void)
3489 translation
= !translation
;
3490 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3491 translation
?"on":"off"));
3495 /****************************************************************************
3497 ****************************************************************************/
3499 static int cmd_lcd(void)
3501 TALLOC_CTX
*ctx
= talloc_tos();
3505 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3506 if (chdir(buf
) == -1) {
3507 d_printf("chdir to %s failed (%s)\n",
3508 buf
, strerror(errno
));
3511 d
= TALLOC_ARRAY(ctx
, char, PATH_MAX
+1);
3515 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
3519 /****************************************************************************
3520 Get a file restarting at end of local file.
3521 ****************************************************************************/
3523 static int cmd_reget(void)
3525 TALLOC_CTX
*ctx
= talloc_tos();
3526 char *local_name
= NULL
;
3527 char *remote_name
= NULL
;
3531 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3536 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
3537 d_printf("reget <filename>\n");
3540 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
3544 remote_name
= clean_name(ctx
,remote_name
);
3550 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
3555 return do_get(remote_name
, local_name
, true);
3558 /****************************************************************************
3559 Put a file restarting at end of local file.
3560 ****************************************************************************/
3562 static int cmd_reput(void)
3564 TALLOC_CTX
*ctx
= talloc_tos();
3565 char *local_name
= NULL
;
3566 char *remote_name
= NULL
;
3570 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3575 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
3576 d_printf("reput <filename>\n");
3580 if (!file_exist_stat(local_name
, &st
)) {
3581 d_printf("%s does not exist\n", local_name
);
3585 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
3586 remote_name
= talloc_asprintf_append(remote_name
,
3589 remote_name
= talloc_asprintf_append(remote_name
,
3596 remote_name
= clean_name(ctx
, remote_name
);
3601 return do_put(remote_name
, local_name
, true);
3604 /****************************************************************************
3606 ****************************************************************************/
3608 static void browse_fn(const char *name
, uint32 m
,
3609 const char *comment
, void *state
)
3611 const char *typestr
= "";
3614 case STYPE_DISKTREE
:
3618 typestr
= "Printer";
3627 /* FIXME: If the remote machine returns non-ascii characters
3628 in any of these fields, they can corrupt the output. We
3629 should remove them. */
3631 d_printf("\t%-15s %-10.10s%s\n",
3632 name
,typestr
,comment
);
3634 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
3638 static bool browse_host_rpc(bool sort
)
3641 struct rpc_pipe_client
*pipe_hnd
;
3642 TALLOC_CTX
*frame
= talloc_stackframe();
3644 struct srvsvc_NetShareInfoCtr info_ctr
;
3645 struct srvsvc_NetShareCtr1 ctr1
;
3646 uint32_t resume_handle
= 0;
3647 uint32_t total_entries
= 0;
3650 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
3653 if (!NT_STATUS_IS_OK(status
)) {
3654 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3655 nt_errstr(status
)));
3660 ZERO_STRUCT(info_ctr
);
3664 info_ctr
.ctr
.ctr1
= &ctr1
;
3666 status
= rpccli_srvsvc_NetShareEnumAll(pipe_hnd
, frame
,
3674 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
3675 TALLOC_FREE(pipe_hnd
);
3680 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
3681 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
3682 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
3685 TALLOC_FREE(pipe_hnd
);
3690 /****************************************************************************
3691 Try and browse available connections on a host.
3692 ****************************************************************************/
3694 static bool browse_host(bool sort
)
3698 d_printf("\n\tSharename Type Comment\n");
3699 d_printf("\t--------- ---- -------\n");
3702 if (browse_host_rpc(sort
)) {
3706 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
3707 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
3712 /****************************************************************************
3714 ****************************************************************************/
3716 static void server_fn(const char *name
, uint32 m
,
3717 const char *comment
, void *state
)
3721 d_printf("\t%-16s %s\n", name
, comment
);
3723 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
3727 /****************************************************************************
3728 Try and browse available connections on a host.
3729 ****************************************************************************/
3731 static bool list_servers(const char *wk_grp
)
3735 if (!cli
->server_domain
)
3739 d_printf("\n\tServer Comment\n");
3740 d_printf("\t--------- -------\n");
3742 fstrcpy( state
, "Server" );
3743 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
3747 d_printf("\n\tWorkgroup Master\n");
3748 d_printf("\t--------- -------\n");
3751 fstrcpy( state
, "Workgroup" );
3752 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
3757 /****************************************************************************
3758 Print or set current VUID
3759 ****************************************************************************/
3761 static int cmd_vuid(void)
3763 TALLOC_CTX
*ctx
= talloc_tos();
3766 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3767 d_printf("Current VUID is %d\n", cli
->vuid
);
3771 cli
->vuid
= atoi(buf
);
3775 /****************************************************************************
3776 Setup a new VUID, by issuing a session setup
3777 ****************************************************************************/
3779 static int cmd_logon(void)
3781 TALLOC_CTX
*ctx
= talloc_tos();
3782 char *l_username
, *l_password
;
3784 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
3785 d_printf("logon <username> [<password>]\n");
3789 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
3790 char *pass
= getpass("Password: ");
3792 l_password
= talloc_strdup(ctx
,pass
);
3799 if (!NT_STATUS_IS_OK(cli_session_setup(cli
, l_username
,
3800 l_password
, strlen(l_password
),
3801 l_password
, strlen(l_password
),
3803 d_printf("session setup failed: %s\n", cli_errstr(cli
));
3807 d_printf("Current VUID is %d\n", cli
->vuid
);
3812 /****************************************************************************
3813 list active connections
3814 ****************************************************************************/
3816 static int cmd_list_connect(void)
3822 /****************************************************************************
3823 display the current active client connection
3824 ****************************************************************************/
3826 static int cmd_show_connect( void )
3828 TALLOC_CTX
*ctx
= talloc_tos();
3829 struct cli_state
*targetcli
;
3832 if (!cli_resolve_path(ctx
, "", cli
, client_get_cur_dir(),
3833 &targetcli
, &targetpath
) ) {
3834 d_printf("showconnect %s: %s\n", cur_dir
, cli_errstr(cli
));
3838 d_printf("//%s/%s\n", targetcli
->desthost
, targetcli
->share
);
3842 /****************************************************************************
3844 ***************************************************************************/
3846 int cmd_iosize(void)
3848 TALLOC_CTX
*ctx
= talloc_tos();
3852 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3854 d_printf("iosize <n> or iosize 0x<n>. "
3855 "Minimum is 16384 (0x4000), "
3856 "max is 16776960 (0xFFFF00)\n");
3858 d_printf("iosize <n> or iosize 0x<n>. "
3859 "(Encrypted connection) ,"
3860 "Minimum is 16384 (0x4000), "
3861 "max is 130048 (0x1FC00)\n");
3866 iosize
= strtol(buf
,NULL
,0);
3867 if (smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFC00)) {
3868 d_printf("iosize out of range for encrypted "
3869 "connection (min = 16384 (0x4000), "
3870 "max = 130048 (0x1FC00)");
3872 } else if (!smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFFFF00)) {
3873 d_printf("iosize out of range (min = 16384 (0x4000), "
3874 "max = 16776960 (0xFFFF00)");
3878 io_bufsize
= iosize
;
3879 d_printf("iosize is now %d\n", io_bufsize
);
3884 /* Some constants for completing filename arguments */
3886 #define COMPL_NONE 0 /* No completions */
3887 #define COMPL_REMOTE 1 /* Complete remote filename */
3888 #define COMPL_LOCAL 2 /* Complete local filename */
3890 /* This defines the commands supported by this client.
3891 * NOTE: The "!" must be the last one in the list because it's fn pointer
3892 * field is NULL, and NULL in that field is used in process_tok()
3893 * (below) to indicate the end of the list. crh
3898 const char *description
;
3899 char compl_args
[2]; /* Completion argument info */
3901 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
3902 {"allinfo",cmd_allinfo
,"<file> show all available info",
3903 {COMPL_NONE
,COMPL_NONE
}},
3904 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
3905 {"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
}},
3906 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
3907 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
3908 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
3909 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
3910 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
3911 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
3912 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_REMOTE
}},
3913 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3914 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3915 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3916 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
3917 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3918 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
3919 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_LOCAL
}},
3920 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
3921 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
3922 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
3923 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
3924 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
3925 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
3926 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
3927 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
3928 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3929 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3930 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
3931 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
3932 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3933 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
3934 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
3935 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3936 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
3937 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
3938 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
3939 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
3940 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3941 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3942 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3943 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3944 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
3945 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
3946 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
3947 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
3948 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3949 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
3950 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3951 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
3952 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
3953 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
3954 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
3955 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
3956 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3957 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
3958 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
3959 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
3960 {"stat",cmd_stat
,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_REMOTE
}},
3961 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
3962 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
3963 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
3964 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
3965 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
3966 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
3967 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
3968 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3969 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
3970 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
3971 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
3972 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
3974 /* Yes, this must be here, see crh's comment above. */
3975 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
3976 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
3979 /*******************************************************************
3980 Lookup a command string in the list of commands, including
3982 ******************************************************************/
3984 static int process_tok(char *tok
)
3986 int i
= 0, matches
= 0;
3988 int tok_len
= strlen(tok
);
3990 while (commands
[i
].fn
!= NULL
) {
3991 if (strequal(commands
[i
].name
,tok
)) {
3995 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
4004 else if (matches
== 1)
4010 /****************************************************************************
4012 ****************************************************************************/
4014 static int cmd_help(void)
4016 TALLOC_CTX
*ctx
= talloc_tos();
4020 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4021 if ((i
= process_tok(buf
)) >= 0)
4022 d_printf("HELP %s:\n\t%s\n\n",
4023 commands
[i
].name
,commands
[i
].description
);
4025 while (commands
[i
].description
) {
4026 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4027 d_printf("%-15s",commands
[i
].name
);
4036 /****************************************************************************
4037 Process a -c command string.
4038 ****************************************************************************/
4040 static int process_command_string(const char *cmd_in
)
4042 TALLOC_CTX
*ctx
= talloc_tos();
4043 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4049 /* establish the connection if not already */
4052 cli
= cli_cm_open(talloc_tos(), NULL
,
4053 have_ip
? dest_ss_str
: desthost
,
4054 service
, true, smb_encrypt
,
4055 max_protocol
, port
, name_type
);
4061 while (cmd
[0] != '\0') {
4067 if ((p
= strchr_m(cmd
, ';')) == 0) {
4076 /* and get the first part of the command */
4078 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4082 if ((i
= process_tok(tok
)) >= 0) {
4083 rc
= commands
[i
].fn();
4084 } else if (i
== -2) {
4085 d_printf("%s: command abbreviation ambiguous\n",tok
);
4087 d_printf("%s: command not found\n",tok
);
4094 #define MAX_COMPLETIONS 100
4102 } completion_remote_t
;
4104 static void completion_remote_filter(const char *mnt
,
4109 completion_remote_t
*info
= (completion_remote_t
*)state
;
4111 if ((info
->count
< MAX_COMPLETIONS
- 1) &&
4112 (strncmp(info
->text
, f
->name
, info
->len
) == 0) &&
4113 (strcmp(f
->name
, ".") != 0) &&
4114 (strcmp(f
->name
, "..") != 0)) {
4115 if ((info
->dirmask
[0] == 0) && !(f
->mode
& aDIR
))
4116 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4118 TALLOC_CTX
*ctx
= talloc_stackframe();
4121 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4126 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4131 if (f
->mode
& aDIR
) {
4132 tmp
= talloc_asprintf_append(tmp
, "%s", CLI_DIRSEP_STR
);
4138 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4141 if (info
->matches
[info
->count
] == NULL
) {
4144 if (f
->mode
& aDIR
) {
4145 smb_readline_ca_char(0);
4147 if (info
->count
== 1) {
4148 info
->samelen
= strlen(info
->matches
[info
->count
]);
4150 while (strncmp(info
->matches
[info
->count
],
4151 info
->matches
[info
->count
-1],
4152 info
->samelen
) != 0) {
4160 static char **remote_completion(const char *text
, int len
)
4162 TALLOC_CTX
*ctx
= talloc_stackframe();
4163 char *dirmask
= NULL
;
4164 char *targetpath
= NULL
;
4165 struct cli_state
*targetcli
= NULL
;
4167 completion_remote_t info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4169 /* can't have non-static intialisation on Sun CC, so do it
4175 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4176 if (!info
.matches
) {
4182 * We're leaving matches[0] free to fill it later with the text to
4183 * display: Either the one single match or the longest common subset
4186 info
.matches
[0] = NULL
;
4189 for (i
= len
-1; i
>= 0; i
--) {
4190 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4195 info
.text
= text
+i
+1;
4196 info
.samelen
= info
.len
= len
-i
-1;
4199 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4200 if (!info
.dirmask
) {
4203 strncpy(info
.dirmask
, text
, i
+1);
4204 info
.dirmask
[i
+1] = 0;
4205 dirmask
= talloc_asprintf(ctx
,
4207 client_get_cur_dir(),
4211 info
.dirmask
= SMB_STRDUP("");
4212 if (!info
.dirmask
) {
4215 dirmask
= talloc_asprintf(ctx
,
4217 client_get_cur_dir());
4223 if (!cli_resolve_path(ctx
, "", cli
, dirmask
, &targetcli
, &targetpath
)) {
4226 if (cli_list(targetcli
, targetpath
, aDIR
| aSYSTEM
| aHIDDEN
,
4227 completion_remote_filter
, (void *)&info
) < 0) {
4231 if (info
.count
== 1) {
4233 * No matches at all, NULL indicates there is nothing
4235 SAFE_FREE(info
.matches
[0]);
4236 SAFE_FREE(info
.matches
);
4241 if (info
.count
== 2) {
4243 * Exactly one match in matches[1], indicate this is the one
4246 info
.matches
[0] = info
.matches
[1];
4247 info
.matches
[1] = NULL
;
4250 return info
.matches
;
4254 * We got more than one possible match, set the result to the maximum
4258 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
4259 info
.matches
[info
.count
] = NULL
;
4260 return info
.matches
;
4263 for (i
= 0; i
< info
.count
; i
++) {
4264 SAFE_FREE(info
.matches
[i
]);
4266 SAFE_FREE(info
.matches
);
4267 SAFE_FREE(info
.dirmask
);
4272 static char **completion_fn(const char *text
, int start
, int end
)
4274 smb_readline_ca_char(' ');
4277 const char *buf
, *sp
;
4281 buf
= smb_readline_get_line_buffer();
4285 sp
= strchr(buf
, ' ');
4289 for (i
= 0; commands
[i
].name
; i
++) {
4290 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
4291 (commands
[i
].name
[sp
- buf
] == 0)) {
4295 if (commands
[i
].name
== NULL
)
4301 if (sp
== (buf
+ start
))
4302 compl_type
= commands
[i
].compl_args
[0];
4304 compl_type
= commands
[i
].compl_args
[1];
4306 if (compl_type
== COMPL_REMOTE
)
4307 return remote_completion(text
, end
- start
);
4308 else /* fall back to local filename completion */
4312 int i
, len
, samelen
= 0, count
=1;
4314 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
4321 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
4322 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
4323 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
4324 if (!matches
[count
])
4327 samelen
= strlen(matches
[count
]);
4329 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
4336 case 0: /* should never happen */
4340 matches
[0] = SMB_STRDUP(matches
[1]);
4343 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
4346 strncpy(matches
[0], matches
[1], samelen
);
4347 matches
[0][samelen
] = 0;
4349 matches
[count
] = NULL
;
4353 for (i
= 0; i
< count
; i
++)
4361 static bool finished
;
4363 /****************************************************************************
4364 Make sure we swallow keepalives during idle time.
4365 ****************************************************************************/
4367 static void readline_callback(void)
4370 struct timeval timeout
;
4371 static time_t last_t
;
4387 FD_SET(cli
->fd
,&fds
);
4390 timeout
.tv_usec
= 0;
4391 sys_select_intr(cli
->fd
+1,&fds
,NULL
,NULL
,&timeout
);
4393 /* We deliberately use receive_smb_raw instead of
4394 client_receive_smb as we want to receive
4395 session keepalives and then drop them here.
4397 if (FD_ISSET(cli
->fd
,&fds
)) {
4401 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_OK
);
4403 status
= receive_smb_raw(cli
->fd
, cli
->inbuf
, cli
->bufsize
, 0, 0, &len
);
4405 if (!NT_STATUS_IS_OK(status
)) {
4406 DEBUG(0, ("Read from server failed, maybe it closed "
4407 "the connection\n"));
4410 smb_readline_done();
4411 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
4412 set_smb_read_error(&cli
->smb_rw_error
,
4417 if (NT_STATUS_EQUAL(status
, NT_STATUS_IO_TIMEOUT
)) {
4418 set_smb_read_error(&cli
->smb_rw_error
,
4423 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_ERROR
);
4426 if(CVAL(cli
->inbuf
,0) != SMBkeepalive
) {
4427 DEBUG(0, ("Read from server "
4428 "returned unexpected packet!\n"));
4435 /* Ping the server to keep the connection alive using SMBecho. */
4438 unsigned char garbage
[16];
4439 memset(garbage
, 0xf0, sizeof(garbage
));
4440 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
4442 if (!NT_STATUS_IS_OK(status
)) {
4443 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4444 "the connection\n"));
4446 smb_readline_done();
4451 /****************************************************************************
4452 Process commands on stdin.
4453 ****************************************************************************/
4455 static int process_stdin(void)
4460 TALLOC_CTX
*frame
= talloc_stackframe();
4462 char *the_prompt
= NULL
;
4466 /* display a prompt */
4467 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
4471 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
4472 SAFE_FREE(the_prompt
);
4478 /* special case - first char is ! */
4480 if (system(line
+ 1) == -1) {
4481 d_printf("system() command %s failed.\n",
4489 /* and get the first part of the command */
4491 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
4497 if ((i
= process_tok(tok
)) >= 0) {
4498 rc
= commands
[i
].fn();
4499 } else if (i
== -2) {
4500 d_printf("%s: command abbreviation ambiguous\n",tok
);
4502 d_printf("%s: command not found\n",tok
);
4510 /****************************************************************************
4511 Process commands from the client.
4512 ****************************************************************************/
4514 static int process(const char *base_directory
)
4518 cli
= cli_cm_open(talloc_tos(), NULL
,
4519 have_ip
? dest_ss_str
: desthost
,
4520 service
, true, smb_encrypt
,
4521 max_protocol
, port
, name_type
);
4526 if (base_directory
&& *base_directory
) {
4527 rc
= do_cd(base_directory
);
4535 rc
= process_command_string(cmdstr
);
4544 /****************************************************************************
4546 ****************************************************************************/
4548 static int do_host_query(const char *query_host
)
4550 struct sockaddr_storage ss
;
4552 cli
= cli_cm_open(talloc_tos(), NULL
,
4553 query_host
, "IPC$", true, smb_encrypt
,
4554 max_protocol
, port
, name_type
);
4560 if (interpret_string_addr(&ss
, query_host
, 0) && (ss
.ss_family
!= AF_INET
)) {
4561 d_printf("%s is an IPv6 address -- no workgroup available\n",
4568 /* Workgroups simply don't make sense over anything
4569 else but port 139... */
4572 cli
= cli_cm_open(talloc_tos(), NULL
,
4573 query_host
, "IPC$", true, smb_encrypt
,
4574 max_protocol
, 139, name_type
);
4578 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4582 list_servers(lp_workgroup());
4589 /****************************************************************************
4590 Handle a tar operation.
4591 ****************************************************************************/
4593 static int do_tar_op(const char *base_directory
)
4597 /* do we already have a connection? */
4599 cli
= cli_cm_open(talloc_tos(), NULL
,
4600 have_ip
? dest_ss_str
: desthost
,
4601 service
, true, smb_encrypt
,
4602 max_protocol
, port
, name_type
);
4609 if (base_directory
&& *base_directory
) {
4610 ret
= do_cd(base_directory
);
4624 /****************************************************************************
4625 Handle a message operation.
4626 ****************************************************************************/
4628 static int do_message_op(struct user_auth_info
*auth_info
)
4630 struct sockaddr_storage ss
;
4631 struct nmb_name called
, calling
;
4632 fstring server_name
;
4633 char name_type_hex
[10];
4637 make_nmb_name(&calling
, calling_name
, 0x0);
4638 make_nmb_name(&called
, desthost
, name_type
);
4640 fstrcpy(server_name
, desthost
);
4641 snprintf(name_type_hex
, sizeof(name_type_hex
), "#%X", name_type
);
4642 fstrcat(server_name
, name_type_hex
);
4648 /* we can only do messages over port 139 (to windows clients at least) */
4650 msg_port
= port
? port
: 139;
4652 if (!(cli
=cli_initialise())) {
4653 d_printf("Connection to %s failed\n", desthost
);
4656 cli_set_port(cli
, msg_port
);
4658 status
= cli_connect(cli
, server_name
, &ss
);
4659 if (!NT_STATUS_IS_OK(status
)) {
4660 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
4664 if (!cli_session_request(cli
, &calling
, &called
)) {
4665 d_printf("session request failed\n");
4670 send_message(get_cmdline_auth_info_username(auth_info
));
4676 /****************************************************************************
4678 ****************************************************************************/
4680 int main(int argc
,char *argv
[])
4682 char *base_directory
= NULL
;
4684 char *query_host
= NULL
;
4685 bool message
= false;
4686 char *term_code
= NULL
;
4687 static const char *new_name_resolve_order
= NULL
;
4691 fstring new_workgroup
;
4692 bool tar_opt
= false;
4693 bool service_opt
= false;
4694 struct poptOption long_options
[] = {
4697 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4698 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
4699 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
4700 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
4701 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
4702 { "terminal", 't', POPT_ARG_STRING
, NULL
, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4703 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
4704 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4705 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
4706 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
4707 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
4708 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
4709 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
4710 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
4712 POPT_COMMON_CONNECTION
4713 POPT_COMMON_CREDENTIALS
4716 TALLOC_CTX
*frame
= talloc_stackframe();
4717 struct user_auth_info
*auth_info
;
4719 if (!client_set_cur_dir("\\")) {
4724 term_code
= talloc_strdup(frame
,KANJI
);
4726 term_code
= talloc_strdup(frame
,"");
4732 /* initialize the workgroup name so we can determine whether or
4733 not it was set by a command line option */
4735 set_global_myworkgroup( "" );
4736 set_global_myname( "" );
4738 /* set default debug level to 1 regardless of what smb.conf sets */
4739 setup_logging( "smbclient", true );
4740 DEBUGLEVEL_CLASS
[DBGC_ALL
] = 1;
4741 if ((dbf
= x_fdup(x_stderr
))) {
4742 x_setbuf( dbf
, NULL
);
4747 auth_info
= user_auth_info_init(frame
);
4748 if (auth_info
== NULL
) {
4751 popt_common_set_auth_info(auth_info
);
4754 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
4755 poptSetOtherOptionHelp(pc
, "service <password>");
4757 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4759 while ((opt
= poptGetNextOpt(pc
)) != -1) {
4761 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4762 /* I see no other way to keep things sane --SSS */
4763 if (tar_opt
== true) {
4764 while (poptPeekArg(pc
)) {
4770 /* if the service has not yet been specified lets see if it is available in the popt stack */
4771 if (!service_opt
&& poptPeekArg(pc
)) {
4772 service
= talloc_strdup(frame
, poptGetArg(pc
));
4779 /* if the service has already been retrieved then check if we have also a password */
4781 && (!get_cmdline_auth_info_got_pass(auth_info
))
4782 && poptPeekArg(pc
)) {
4783 set_cmdline_auth_info_password(auth_info
,
4789 /* Messages are sent to NetBIOS name type 0x3
4790 * (Messenger Service). Make sure we default
4791 * to port 139 instead of port 445. srl,crh
4794 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
4804 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
4808 print_sockaddr(dest_ss_str
, sizeof(dest_ss_str
), &dest_ss
);
4816 display_set_stderr();
4820 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
4826 term_code
= talloc_strdup(frame
,poptGetOptArg(pc
));
4832 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
4835 /* We must use old option processing for this. Find the
4836 * position of the -T option in the raw argv[]. */
4839 for (i
= 1; i
< argc
; i
++) {
4840 if (strncmp("-T", argv
[i
],2)==0)
4844 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
4845 poptPrintUsage(pc
, stderr
, 0);
4849 /* this must be the last option, mark we have parsed it so that we know we have */
4853 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
4854 if (!base_directory
) {
4865 return(do_smb_browse());
4870 /* We may still have some leftovers after the last popt option has been called */
4871 if (tar_opt
== true) {
4872 while (poptPeekArg(pc
)) {
4878 /* if the service has not yet been specified lets see if it is available in the popt stack */
4879 if (!service_opt
&& poptPeekArg(pc
)) {
4880 service
= talloc_strdup(frame
,poptGetArg(pc
));
4887 /* if the service has already been retrieved then check if we have also a password */
4889 && !get_cmdline_auth_info_got_pass(auth_info
)
4890 && poptPeekArg(pc
)) {
4891 set_cmdline_auth_info_password(auth_info
,
4896 * Don't load debug level from smb.conf. It should be
4897 * set by cmdline arg or remain default (0)
4899 AllowDebugChange
= false;
4901 /* save the workgroup...
4903 FIXME!! do we need to do this for other options as well
4904 (or maybe a generic way to keep lp_load() from overwriting
4907 fstrcpy( new_workgroup
, lp_workgroup() );
4908 calling_name
= talloc_strdup(frame
, global_myname() );
4909 if (!calling_name
) {
4913 if ( override_logfile
)
4914 setup_logging( lp_logfile(), false );
4916 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4917 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
4918 argv
[0], get_dyn_CONFIGFILE());
4921 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
4922 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
4928 if (service_opt
&& service
) {
4931 /* Convert any '/' characters in the service name to '\' characters */
4932 string_replace(service
, '/','\\');
4933 if (count_chars(service
,'\\') < 3) {
4934 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
4935 poptPrintUsage(pc
, stderr
, 0);
4938 /* Remove trailing slashes */
4939 len
= strlen(service
);
4940 while(len
> 0 && service
[len
- 1] == '\\') {
4942 service
[len
] = '\0';
4946 if ( strlen(new_workgroup
) != 0 ) {
4947 set_global_myworkgroup( new_workgroup
);
4950 if ( strlen(calling_name
) != 0 ) {
4951 set_global_myname( calling_name
);
4953 TALLOC_FREE(calling_name
);
4954 calling_name
= talloc_strdup(frame
, global_myname() );
4957 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
4958 if (!init_names()) {
4959 fprintf(stderr
, "init_names() failed\n");
4963 if(new_name_resolve_order
)
4964 lp_set_name_resolve_order(new_name_resolve_order
);
4966 if (!tar_type
&& !query_host
&& !service
&& !message
) {
4967 poptPrintUsage(pc
, stderr
, 0);
4971 poptFreeContext(pc
);
4973 /* Store the username and password for dfs support */
4975 cli_cm_set_credentials(auth_info
);
4977 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
4981 process_command_string(cmdstr
);
4982 return do_tar_op(base_directory
);
4985 if (query_host
&& *query_host
) {
4986 char *qhost
= query_host
;
4989 while (*qhost
== '\\' || *qhost
== '/')
4992 if ((slash
= strchr_m(qhost
, '/'))
4993 || (slash
= strchr_m(qhost
, '\\'))) {
4997 if ((p
=strchr_m(qhost
, '#'))) {
5000 sscanf(p
, "%x", &name_type
);
5003 return do_host_query(qhost
);
5007 return do_message_op(auth_info
);
5010 if (process(base_directory
)) {