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 extern int max_protocol
;
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
;
82 #define SEPARATORS " \t\n\r"
84 static bool abort_mget
= true;
87 uint64_t get_total_size
= 0;
88 unsigned int get_total_time_ms
= 0;
89 static uint64_t put_total_size
= 0;
90 static unsigned int put_total_time_ms
= 0;
93 static double dir_total
;
95 /* encrypted state. */
96 static bool smb_encrypt
;
98 /* root cli_state connection */
100 struct cli_state
*cli
;
102 static char CLI_DIRSEP_CHAR
= '\\';
103 static char CLI_DIRSEP_STR
[] = { '\\', '\0' };
105 /* Accessor functions for directory paths. */
106 static char *fileselection
;
107 static const char *client_get_fileselection(void)
110 return fileselection
;
115 static const char *client_set_fileselection(const char *new_fs
)
117 SAFE_FREE(fileselection
);
119 fileselection
= SMB_STRDUP(new_fs
);
121 return client_get_fileselection();
125 static const char *client_get_cwd(void)
130 return CLI_DIRSEP_STR
;
133 static const char *client_set_cwd(const char *new_cwd
)
137 cwd
= SMB_STRDUP(new_cwd
);
139 return client_get_cwd();
142 static char *cur_dir
;
143 const char *client_get_cur_dir(void)
148 return CLI_DIRSEP_STR
;
151 const char *client_set_cur_dir(const char *newdir
)
155 cur_dir
= SMB_STRDUP(newdir
);
157 return client_get_cur_dir();
160 /****************************************************************************
161 Write to a local file with CR/LF->LF translation if appropriate. Return the
162 number taken from the buffer. This may not equal the number written.
163 ****************************************************************************/
165 static int writefile(int f
, char *b
, int n
)
175 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
178 if (write(f
, b
, 1) != 1) {
188 /****************************************************************************
189 Read from a file with LF->CR/LF translation if appropriate. Return the
190 number read. read approx n bytes.
191 ****************************************************************************/
193 static int readfile(uint8_t *b
, int n
, XFILE
*f
)
199 return x_fread(b
,1,n
,f
);
202 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
203 if ((c
= x_getc(f
)) == EOF
) {
207 if (c
== '\n') { /* change all LFs to CR/LF */
222 static size_t push_source(uint8_t *buf
, size_t n
, void *priv
)
224 struct push_state
*state
= (struct push_state
*)priv
;
227 if (x_feof(state
->f
)) {
231 result
= readfile(buf
, n
, state
->f
);
232 state
->nread
+= result
;
236 /****************************************************************************
238 ****************************************************************************/
240 static void send_message(const char *username
)
245 if (!cli_message_start(cli
, desthost
, username
, &grp_id
)) {
246 d_printf("message start: %s\n", cli_errstr(cli
));
251 d_printf("Connected. Type your message, ending it with a Control-D\n");
253 while (!feof(stdin
) && total_len
< 1600) {
254 int maxlen
= MIN(1600 - total_len
,127);
261 for (l
=0;l
<maxlen
&& (c
=fgetc(stdin
))!=EOF
;l
++) {
267 if ((total_len
> 0) && (strlen(msg
) == 0)) {
271 if (!cli_message_text(cli
, msg
, l
, grp_id
)) {
272 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli
));
279 if (total_len
>= 1600)
280 d_printf("the message was truncated to 1600 bytes\n");
282 d_printf("sent %d bytes\n",total_len
);
284 if (!cli_message_end(cli
, grp_id
)) {
285 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli
));
290 /****************************************************************************
291 Check the space on a device.
292 ****************************************************************************/
294 static int do_dskattr(void)
296 int total
, bsize
, avail
;
297 struct cli_state
*targetcli
= NULL
;
298 char *targetpath
= NULL
;
299 TALLOC_CTX
*ctx
= talloc_tos();
301 if ( !cli_resolve_path(ctx
, "", cli
, client_get_cur_dir(), &targetcli
, &targetpath
)) {
302 d_printf("Error in dskattr: %s\n", cli_errstr(cli
));
306 if (!cli_dskattr(targetcli
, &bsize
, &total
, &avail
)) {
307 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli
));
311 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
312 total
, bsize
, avail
);
317 /****************************************************************************
319 ****************************************************************************/
321 static int cmd_pwd(void)
323 d_printf("Current directory is %s",service
);
324 d_printf("%s\n",client_get_cur_dir());
328 /****************************************************************************
329 Ensure name has correct directory separators.
330 ****************************************************************************/
332 static void normalize_name(char *newdir
)
334 if (!(cli
->posix_capabilities
& CIFS_UNIX_POSIX_PATHNAMES_CAP
)) {
335 string_replace(newdir
,'/','\\');
339 /****************************************************************************
340 Change directory - inner section.
341 ****************************************************************************/
343 static int do_cd(const char *new_dir
)
346 char *saved_dir
= NULL
;
348 char *targetpath
= NULL
;
349 struct cli_state
*targetcli
= NULL
;
350 SMB_STRUCT_STAT sbuf
;
353 TALLOC_CTX
*ctx
= talloc_stackframe();
355 newdir
= talloc_strdup(ctx
, new_dir
);
361 normalize_name(newdir
);
363 /* Save the current directory in case the new directory is invalid */
365 saved_dir
= talloc_strdup(ctx
, client_get_cur_dir());
371 if (*newdir
== CLI_DIRSEP_CHAR
) {
372 client_set_cur_dir(newdir
);
375 new_cd
= talloc_asprintf(ctx
, "%s%s",
376 client_get_cur_dir(),
383 /* Ensure cur_dir ends in a DIRSEP */
384 if ((new_cd
[0] != '\0') && (*(new_cd
+strlen(new_cd
)-1) != CLI_DIRSEP_CHAR
)) {
385 new_cd
= talloc_asprintf_append(new_cd
, "%s", CLI_DIRSEP_STR
);
390 client_set_cur_dir(new_cd
);
392 new_cd
= clean_name(ctx
, new_cd
);
393 client_set_cur_dir(new_cd
);
395 if ( !cli_resolve_path(ctx
, "", cli
, new_cd
, &targetcli
, &targetpath
)) {
396 d_printf("cd %s: %s\n", new_cd
, cli_errstr(cli
));
397 client_set_cur_dir(saved_dir
);
401 if (strequal(targetpath
,CLI_DIRSEP_STR
)) {
406 /* Use a trans2_qpathinfo to test directories for modern servers.
407 Except Win9x doesn't support the qpathinfo_basic() call..... */
409 if (targetcli
->protocol
> PROTOCOL_LANMAN2
&& !targetcli
->win95
) {
410 if (!cli_qpathinfo_basic( targetcli
, targetpath
, &sbuf
, &attributes
) ) {
411 d_printf("cd %s: %s\n", new_cd
, cli_errstr(targetcli
));
412 client_set_cur_dir(saved_dir
);
416 if (!(attributes
& FILE_ATTRIBUTE_DIRECTORY
)) {
417 d_printf("cd %s: not a directory\n", new_cd
);
418 client_set_cur_dir(saved_dir
);
422 targetpath
= talloc_asprintf(ctx
,
427 client_set_cur_dir(saved_dir
);
430 targetpath
= clean_name(ctx
, targetpath
);
432 client_set_cur_dir(saved_dir
);
436 if (!cli_chkpath(targetcli
, targetpath
)) {
437 d_printf("cd %s: %s\n", new_cd
, cli_errstr(targetcli
));
438 client_set_cur_dir(saved_dir
);
451 /****************************************************************************
453 ****************************************************************************/
455 static int cmd_cd(void)
460 if (next_token_talloc(talloc_tos(), &cmd_ptr
, &buf
,NULL
)) {
463 d_printf("Current directory is %s\n",client_get_cur_dir());
469 /****************************************************************************
471 ****************************************************************************/
473 static int cmd_cd_oneup(void)
478 /*******************************************************************
479 Decide if a file should be operated on.
480 ********************************************************************/
482 static bool do_this_one(file_info
*finfo
)
488 if (finfo
->mode
& aDIR
) {
492 if (*client_get_fileselection() &&
493 !mask_match(finfo
->name
,client_get_fileselection(),false)) {
494 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
498 if (newer_than
&& finfo
->mtime_ts
.tv_sec
< newer_than
) {
499 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
503 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
504 DEBUG(3,("archive %s failed\n", finfo
->name
));
511 /****************************************************************************
512 Display info about a file.
513 ****************************************************************************/
515 static void display_finfo(file_info
*finfo
, const char *dir
)
518 TALLOC_CTX
*ctx
= talloc_tos();
520 if (!do_this_one(finfo
)) {
524 t
= finfo
->mtime_ts
.tv_sec
; /* the time is assumed to be passed as GMT */
526 d_printf(" %-30s%7.7s %8.0f %s",
528 attrib_string(finfo
->mode
),
531 dir_total
+= finfo
->size
;
536 /* skip if this is . or .. */
537 if ( strequal(finfo
->name
,"..") || strequal(finfo
->name
,".") )
539 /* create absolute filename for cli_nt_create() FIXME */
540 afname
= talloc_asprintf(ctx
,
548 /* print file meta date header */
549 d_printf( "FILENAME:%s\n", finfo
->name
);
550 d_printf( "MODE:%s\n", attrib_string(finfo
->mode
));
551 d_printf( "SIZE:%.0f\n", (double)finfo
->size
);
552 d_printf( "MTIME:%s", time_to_asc(t
));
553 fnum
= cli_nt_create(finfo
->cli
, afname
, CREATE_ACCESS_READ
);
555 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
557 cli_errstr( finfo
->cli
)));
560 sd
= cli_query_secdesc(finfo
->cli
, fnum
, ctx
);
562 DEBUG( 0, ("display_finfo() failed to "
563 "get security descriptor: %s",
564 cli_errstr( finfo
->cli
)));
566 display_sec_desc(sd
);
574 /****************************************************************************
575 Accumulate size of a file.
576 ****************************************************************************/
578 static void do_du(file_info
*finfo
, const char *dir
)
580 if (do_this_one(finfo
)) {
581 dir_total
+= finfo
->size
;
585 static bool do_list_recurse
;
586 static bool do_list_dirs
;
587 static char *do_list_queue
= 0;
588 static long do_list_queue_size
= 0;
589 static long do_list_queue_start
= 0;
590 static long do_list_queue_end
= 0;
591 static void (*do_list_fn
)(file_info
*, const char *dir
);
593 /****************************************************************************
594 Functions for do_list_queue.
595 ****************************************************************************/
598 * The do_list_queue is a NUL-separated list of strings stored in a
599 * char*. Since this is a FIFO, we keep track of the beginning and
600 * ending locations of the data in the queue. When we overflow, we
601 * double the size of the char*. When the start of the data passes
602 * the midpoint, we move everything back. This is logically more
603 * complex than a linked list, but easier from a memory management
604 * angle. In any memory error condition, do_list_queue is reset.
605 * Functions check to ensure that do_list_queue is non-NULL before
609 static void reset_do_list_queue(void)
611 SAFE_FREE(do_list_queue
);
612 do_list_queue_size
= 0;
613 do_list_queue_start
= 0;
614 do_list_queue_end
= 0;
617 static void init_do_list_queue(void)
619 reset_do_list_queue();
620 do_list_queue_size
= 1024;
621 do_list_queue
= (char *)SMB_MALLOC(do_list_queue_size
);
622 if (do_list_queue
== 0) {
623 d_printf("malloc fail for size %d\n",
624 (int)do_list_queue_size
);
625 reset_do_list_queue();
627 memset(do_list_queue
, 0, do_list_queue_size
);
631 static void adjust_do_list_queue(void)
634 * If the starting point of the queue is more than half way through,
635 * move everything toward the beginning.
638 if (do_list_queue
== NULL
) {
639 DEBUG(4,("do_list_queue is empty\n"));
640 do_list_queue_start
= do_list_queue_end
= 0;
644 if (do_list_queue_start
== do_list_queue_end
) {
645 DEBUG(4,("do_list_queue is empty\n"));
646 do_list_queue_start
= do_list_queue_end
= 0;
647 *do_list_queue
= '\0';
648 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
649 DEBUG(4,("sliding do_list_queue backward\n"));
650 memmove(do_list_queue
,
651 do_list_queue
+ do_list_queue_start
,
652 do_list_queue_end
- do_list_queue_start
);
653 do_list_queue_end
-= do_list_queue_start
;
654 do_list_queue_start
= 0;
658 static void add_to_do_list_queue(const char *entry
)
660 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
661 while (new_end
> do_list_queue_size
) {
662 do_list_queue_size
*= 2;
663 DEBUG(4,("enlarging do_list_queue to %d\n",
664 (int)do_list_queue_size
));
665 do_list_queue
= (char *)SMB_REALLOC(do_list_queue
, do_list_queue_size
);
666 if (! do_list_queue
) {
667 d_printf("failure enlarging do_list_queue to %d bytes\n",
668 (int)do_list_queue_size
);
669 reset_do_list_queue();
671 memset(do_list_queue
+ do_list_queue_size
/ 2,
672 0, do_list_queue_size
/ 2);
676 safe_strcpy_base(do_list_queue
+ do_list_queue_end
,
677 entry
, do_list_queue
, do_list_queue_size
);
678 do_list_queue_end
= new_end
;
679 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
680 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
684 static char *do_list_queue_head(void)
686 return do_list_queue
+ do_list_queue_start
;
689 static void remove_do_list_queue_head(void)
691 if (do_list_queue_end
> do_list_queue_start
) {
692 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
693 adjust_do_list_queue();
694 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
695 (int)do_list_queue_start
, (int)do_list_queue_end
));
699 static int do_list_queue_empty(void)
701 return (! (do_list_queue
&& *do_list_queue
));
704 /****************************************************************************
705 A helper for do_list.
706 ****************************************************************************/
708 static void do_list_helper(const char *mntpoint
, file_info
*f
, const char *mask
, void *state
)
710 TALLOC_CTX
*ctx
= talloc_tos();
712 char *dir_end
= NULL
;
714 /* Work out the directory. */
715 dir
= talloc_strdup(ctx
, mask
);
719 if ((dir_end
= strrchr(dir
, CLI_DIRSEP_CHAR
)) != NULL
) {
723 if (f
->mode
& aDIR
) {
724 if (do_list_dirs
&& do_this_one(f
)) {
727 if (do_list_recurse
&&
729 !strequal(f
->name
,".") &&
730 !strequal(f
->name
,"..")) {
735 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
740 mask2
= talloc_asprintf(ctx
,
748 p
= strrchr_m(mask2
,CLI_DIRSEP_CHAR
);
754 mask2
= talloc_asprintf_append(mask2
,
762 add_to_do_list_queue(mask2
);
769 if (do_this_one(f
)) {
775 /****************************************************************************
776 A wrapper around cli_list that adds recursion.
777 ****************************************************************************/
779 void do_list(const char *mask
,
781 void (*fn
)(file_info
*, const char *dir
),
785 static int in_do_list
= 0;
786 TALLOC_CTX
*ctx
= talloc_tos();
787 struct cli_state
*targetcli
= NULL
;
788 char *targetpath
= NULL
;
790 if (in_do_list
&& rec
) {
791 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
797 do_list_recurse
= rec
;
802 init_do_list_queue();
803 add_to_do_list_queue(mask
);
805 while (!do_list_queue_empty()) {
807 * Need to copy head so that it doesn't become
808 * invalid inside the call to cli_list. This
809 * would happen if the list were expanded
811 * Fix from E. Jay Berkenbilt (ejb@ql.org)
813 char *head
= talloc_strdup(ctx
, do_list_queue_head());
821 if ( !cli_resolve_path(ctx
, "", cli
, head
, &targetcli
, &targetpath
) ) {
822 d_printf("do_list: [%s] %s\n", head
, cli_errstr(cli
));
823 remove_do_list_queue_head();
827 cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
);
828 remove_do_list_queue_head();
829 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
830 char *next_file
= do_list_queue_head();
832 if ((strlen(next_file
) >= 2) &&
833 (next_file
[strlen(next_file
) - 1] == '*') &&
834 (next_file
[strlen(next_file
) - 2] == CLI_DIRSEP_CHAR
)) {
835 save_ch
= next_file
+
836 strlen(next_file
) - 2;
839 /* cwd is only used if showacls is on */
840 client_set_cwd(next_file
);
843 if (!showacls
) /* don't disturbe the showacls output */
844 d_printf("\n%s\n",next_file
);
846 *save_ch
= CLI_DIRSEP_CHAR
;
850 TALLOC_FREE(targetpath
);
854 if (cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetpath
)) {
855 if (cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
) == -1) {
856 d_printf("%s listing %s\n",
857 cli_errstr(targetcli
), targetpath
);
859 TALLOC_FREE(targetpath
);
861 d_printf("do_list: [%s] %s\n", mask
, cli_errstr(cli
));
866 reset_do_list_queue();
869 /****************************************************************************
870 Get a directory listing.
871 ****************************************************************************/
873 static int cmd_dir(void)
875 TALLOC_CTX
*ctx
= talloc_tos();
876 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
882 mask
= talloc_strdup(ctx
, client_get_cur_dir());
887 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
889 if (*buf
== CLI_DIRSEP_CHAR
) {
890 mask
= talloc_strdup(ctx
, buf
);
892 mask
= talloc_asprintf_append(mask
, "%s", buf
);
895 mask
= talloc_asprintf_append(mask
, "*");
902 /* cwd is only used if showacls is on */
903 client_set_cwd(client_get_cur_dir());
906 do_list(mask
, attribute
, display_finfo
, recurse
, true);
910 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
915 /****************************************************************************
916 Get a directory listing.
917 ****************************************************************************/
919 static int cmd_du(void)
921 TALLOC_CTX
*ctx
= talloc_tos();
922 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
928 mask
= talloc_strdup(ctx
, client_get_cur_dir());
932 if ((mask
[0] != '\0') && (mask
[strlen(mask
)-1]!=CLI_DIRSEP_CHAR
)) {
933 mask
= talloc_asprintf_append(mask
, "%s", CLI_DIRSEP_STR
);
939 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
941 if (*buf
== CLI_DIRSEP_CHAR
) {
942 mask
= talloc_strdup(ctx
, buf
);
944 mask
= talloc_asprintf_append(mask
, "%s", buf
);
947 mask
= talloc_strdup(ctx
, "*");
950 do_list(mask
, attribute
, do_du
, recurse
, true);
954 d_printf("Total number of bytes: %.0f\n", dir_total
);
959 static int cmd_echo(void)
961 TALLOC_CTX
*ctx
= talloc_tos();
966 if (!next_token_talloc(ctx
, &cmd_ptr
, &num
, NULL
)
967 || !next_token_talloc(ctx
, &cmd_ptr
, &data
, NULL
)) {
968 d_printf("echo <num> <data>\n");
972 status
= cli_echo(cli
, atoi(num
), data_blob_const(data
, strlen(data
)));
974 if (!NT_STATUS_IS_OK(status
)) {
975 d_printf("echo failed: %s\n", nt_errstr(status
));
982 /****************************************************************************
983 Get a file from rname to lname
984 ****************************************************************************/
986 static NTSTATUS
writefile_sink(char *buf
, size_t n
, void *priv
)
988 int *pfd
= (int *)priv
;
989 if (writefile(*pfd
, buf
, n
) == -1) {
990 return map_nt_error_from_unix(errno
);
995 static int do_get(const char *rname
, const char *lname_in
, bool reget
)
997 TALLOC_CTX
*ctx
= talloc_tos();
998 int handle
= 0, fnum
;
999 bool newhandle
= false;
1000 struct timeval tp_start
;
1004 SMB_OFF_T nread
= 0;
1006 struct cli_state
*targetcli
= NULL
;
1007 char *targetname
= NULL
;
1011 lname
= talloc_strdup(ctx
, lname_in
);
1020 if (!cli_resolve_path(ctx
, "", cli
, rname
, &targetcli
, &targetname
) ) {
1021 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1025 GetTimeOfDay(&tp_start
);
1027 fnum
= cli_open(targetcli
, targetname
, O_RDONLY
, DENY_NONE
);
1030 d_printf("%s opening remote file %s\n",cli_errstr(cli
),rname
);
1034 if(!strcmp(lname
,"-")) {
1035 handle
= fileno(stdout
);
1038 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
, 0644);
1040 start
= sys_lseek(handle
, 0, SEEK_END
);
1042 d_printf("Error seeking local file\n");
1047 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
1052 d_printf("Error opening local file %s\n",lname
);
1057 if (!cli_qfileinfo(targetcli
, fnum
,
1058 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1059 !cli_getattrE(targetcli
, fnum
,
1060 &attr
, &size
, NULL
, NULL
, NULL
)) {
1061 d_printf("getattrib: %s\n",cli_errstr(targetcli
));
1065 DEBUG(1,("getting file %s of size %.0f as %s ",
1066 rname
, (double)size
, lname
));
1068 status
= cli_pull(targetcli
, fnum
, start
, size
, io_bufsize
,
1069 writefile_sink
, (void *)&handle
, &nread
);
1070 if (!NT_STATUS_IS_OK(status
)) {
1071 d_fprintf(stderr
, "parallel_read returned %s\n",
1073 cli_close(targetcli
, fnum
);
1077 if (!cli_close(targetcli
, fnum
)) {
1078 d_printf("Error %s closing remote file\n",cli_errstr(cli
));
1086 if (archive_level
>= 2 && (attr
& aARCH
)) {
1087 cli_setatr(cli
, rname
, attr
& ~(uint16
)aARCH
, 0);
1091 struct timeval tp_end
;
1094 GetTimeOfDay(&tp_end
);
1096 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1097 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1098 get_total_time_ms
+= this_time
;
1099 get_total_size
+= nread
;
1101 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1102 nread
/ (1.024*this_time
+ 1.0e-4),
1103 get_total_size
/ (1.024*get_total_time_ms
)));
1106 TALLOC_FREE(targetname
);
1110 /****************************************************************************
1112 ****************************************************************************/
1114 static int cmd_get(void)
1116 TALLOC_CTX
*ctx
= talloc_tos();
1121 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1126 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1127 d_printf("get <filename> [localname]\n");
1130 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1134 rname
= clean_name(ctx
, rname
);
1139 next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
);
1144 return do_get(rname
, lname
, false);
1147 /****************************************************************************
1148 Do an mget operation on one file.
1149 ****************************************************************************/
1151 static void do_mget(file_info
*finfo
, const char *dir
)
1153 TALLOC_CTX
*ctx
= talloc_tos();
1156 char *saved_curdir
= NULL
;
1157 char *mget_mask
= NULL
;
1158 char *new_cd
= NULL
;
1164 if (strequal(finfo
->name
,".") || strequal(finfo
->name
,".."))
1168 d_printf("mget aborted\n");
1172 if (finfo
->mode
& aDIR
) {
1173 if (asprintf(&quest
,
1174 "Get directory %s? ",finfo
->name
) < 0) {
1178 if (asprintf(&quest
,
1179 "Get file %s? ",finfo
->name
) < 0) {
1184 if (prompt
&& !yesno(quest
)) {
1190 if (!(finfo
->mode
& aDIR
)) {
1191 rname
= talloc_asprintf(ctx
,
1193 client_get_cur_dir(),
1198 do_get(rname
, finfo
->name
, false);
1203 /* handle directories */
1204 saved_curdir
= talloc_strdup(ctx
, client_get_cur_dir());
1205 if (!saved_curdir
) {
1209 new_cd
= talloc_asprintf(ctx
,
1211 client_get_cur_dir(),
1217 client_set_cur_dir(new_cd
);
1219 string_replace(finfo
->name
,'\\','/');
1221 strlower_m(finfo
->name
);
1224 if (!directory_exist(finfo
->name
) &&
1225 mkdir(finfo
->name
,0777) != 0) {
1226 d_printf("failed to create directory %s\n",finfo
->name
);
1227 client_set_cur_dir(saved_curdir
);
1231 if (chdir(finfo
->name
) != 0) {
1232 d_printf("failed to chdir to directory %s\n",finfo
->name
);
1233 client_set_cur_dir(saved_curdir
);
1237 mget_mask
= talloc_asprintf(ctx
,
1239 client_get_cur_dir());
1245 do_list(mget_mask
, aSYSTEM
| aHIDDEN
| aDIR
,do_mget
,false, true);
1246 if (chdir("..") == -1) {
1247 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1250 client_set_cur_dir(saved_curdir
);
1251 TALLOC_FREE(mget_mask
);
1252 TALLOC_FREE(saved_curdir
);
1253 TALLOC_FREE(new_cd
);
1256 /****************************************************************************
1257 View the file using the pager.
1258 ****************************************************************************/
1260 static int cmd_more(void)
1262 TALLOC_CTX
*ctx
= talloc_tos();
1266 char *pager_cmd
= NULL
;
1271 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1276 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
1280 fd
= smb_mkstemp(lname
);
1282 d_printf("failed to create temporary file for more\n");
1287 if (!next_token_talloc(ctx
, &cmd_ptr
,&fname
,NULL
)) {
1288 d_printf("more <filename>\n");
1292 rname
= talloc_asprintf_append(rname
, "%s", fname
);
1296 rname
= clean_name(ctx
,rname
);
1301 rc
= do_get(rname
, lname
, false);
1303 pager
=getenv("PAGER");
1305 pager_cmd
= talloc_asprintf(ctx
,
1307 (pager
? pager
:PAGER
),
1312 if (system(pager_cmd
) == -1) {
1313 d_printf("system command '%s' returned -1\n",
1321 /****************************************************************************
1323 ****************************************************************************/
1325 static int cmd_mget(void)
1327 TALLOC_CTX
*ctx
= talloc_tos();
1328 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1329 char *mget_mask
= NULL
;
1338 while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1339 mget_mask
= talloc_strdup(ctx
, client_get_cur_dir());
1343 if (*buf
== CLI_DIRSEP_CHAR
) {
1344 mget_mask
= talloc_strdup(ctx
, buf
);
1346 mget_mask
= talloc_asprintf_append(mget_mask
,
1352 do_list(mget_mask
, attribute
, do_mget
, false, true);
1356 mget_mask
= talloc_asprintf(ctx
,
1358 client_get_cur_dir());
1362 do_list(mget_mask
, attribute
, do_mget
, false, true);
1368 /****************************************************************************
1369 Make a directory of name "name".
1370 ****************************************************************************/
1372 static bool do_mkdir(const char *name
)
1374 TALLOC_CTX
*ctx
= talloc_tos();
1375 struct cli_state
*targetcli
;
1376 char *targetname
= NULL
;
1378 if (!cli_resolve_path(ctx
, "", cli
, name
, &targetcli
, &targetname
)) {
1379 d_printf("mkdir %s: %s\n", name
, cli_errstr(cli
));
1383 if (!cli_mkdir(targetcli
, targetname
)) {
1384 d_printf("%s making remote directory %s\n",
1385 cli_errstr(targetcli
),name
);
1392 /****************************************************************************
1393 Show 8.3 name of a file.
1394 ****************************************************************************/
1396 static bool do_altname(const char *name
)
1400 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1401 d_printf("%s getting alt name for %s\n",
1402 cli_errstr(cli
),name
);
1405 d_printf("%s\n", altname
);
1410 /****************************************************************************
1412 ****************************************************************************/
1414 static int cmd_quit(void)
1422 /****************************************************************************
1424 ****************************************************************************/
1426 static int cmd_mkdir(void)
1428 TALLOC_CTX
*ctx
= talloc_tos();
1432 mask
= talloc_strdup(ctx
, client_get_cur_dir());
1437 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1439 d_printf("mkdir <dirname>\n");
1443 mask
= talloc_asprintf_append(mask
, "%s", buf
);
1451 struct cli_state
*targetcli
;
1452 char *targetname
= NULL
;
1456 ddir2
= talloc_strdup(ctx
, "");
1461 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
1465 ddir
= talloc_strdup(ctx
, targetname
);
1469 trim_char(ddir
,'.','\0');
1470 p
= strtok_r(ddir
, "/\\", &saveptr
);
1472 ddir2
= talloc_asprintf_append(ddir2
, "%s", p
);
1476 if (!cli_chkpath(targetcli
, ddir2
)) {
1479 ddir2
= talloc_asprintf_append(ddir2
, "%s", CLI_DIRSEP_STR
);
1483 p
= strtok_r(NULL
, "/\\", &saveptr
);
1492 /****************************************************************************
1494 ****************************************************************************/
1496 static int cmd_altname(void)
1498 TALLOC_CTX
*ctx
= talloc_tos();
1502 name
= talloc_strdup(ctx
, client_get_cur_dir());
1507 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1508 d_printf("altname <file>\n");
1511 name
= talloc_asprintf_append(name
, "%s", buf
);
1519 /****************************************************************************
1520 Show all info we can get
1521 ****************************************************************************/
1523 static int do_allinfo(const char *name
)
1526 struct timespec b_time
, a_time
, m_time
, c_time
;
1531 unsigned int num_streams
;
1532 struct stream_struct
*streams
;
1535 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1536 d_printf("%s getting alt name for %s\n",
1537 cli_errstr(cli
),name
);
1540 d_printf("altname: %s\n", altname
);
1542 if (!cli_qpathinfo2(cli
, name
, &b_time
, &a_time
, &m_time
, &c_time
,
1543 &size
, &mode
, &ino
)) {
1544 d_printf("%s getting pathinfo for %s\n",
1545 cli_errstr(cli
),name
);
1549 unix_timespec_to_nt_time(&tmp
, b_time
);
1550 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1552 unix_timespec_to_nt_time(&tmp
, a_time
);
1553 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1555 unix_timespec_to_nt_time(&tmp
, m_time
);
1556 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1558 unix_timespec_to_nt_time(&tmp
, c_time
);
1559 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp
));
1561 if (!cli_qpathinfo_streams(cli
, name
, talloc_tos(), &num_streams
,
1563 d_printf("%s getting streams for %s\n",
1564 cli_errstr(cli
),name
);
1568 for (i
=0; i
<num_streams
; i
++) {
1569 d_printf("stream: [%s], %lld bytes\n", streams
[i
].name
,
1570 (unsigned long long)streams
[i
].size
);
1576 /****************************************************************************
1577 Show all info we can get
1578 ****************************************************************************/
1580 static int cmd_allinfo(void)
1582 TALLOC_CTX
*ctx
= talloc_tos();
1586 name
= talloc_strdup(ctx
, client_get_cur_dir());
1591 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
1592 d_printf("allinfo <file>\n");
1595 name
= talloc_asprintf_append(name
, "%s", buf
);
1605 /****************************************************************************
1607 ****************************************************************************/
1609 static int do_put(const char *rname
, const char *lname
, bool reput
)
1611 TALLOC_CTX
*ctx
= talloc_tos();
1614 SMB_OFF_T start
= 0;
1616 struct timeval tp_start
;
1617 struct cli_state
*targetcli
;
1618 char *targetname
= NULL
;
1619 struct push_state state
;
1622 if (!cli_resolve_path(ctx
, "", cli
, rname
, &targetcli
, &targetname
)) {
1623 d_printf("Failed to open %s: %s\n", rname
, cli_errstr(cli
));
1627 GetTimeOfDay(&tp_start
);
1630 fnum
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
, DENY_NONE
);
1632 if (!cli_qfileinfo(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
, NULL
, NULL
) &&
1633 !cli_getattrE(targetcli
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
)) {
1634 d_printf("getattrib: %s\n",cli_errstr(cli
));
1639 fnum
= cli_open(targetcli
, targetname
, O_RDWR
|O_CREAT
|O_TRUNC
, DENY_NONE
);
1643 d_printf("%s opening remote file %s\n",cli_errstr(targetcli
),rname
);
1647 /* allow files to be piped into smbclient
1650 Note that in this case this function will exit(0) rather
1652 if (!strcmp(lname
, "-")) {
1654 /* size of file is not known */
1656 f
= x_fopen(lname
,O_RDONLY
, 0);
1658 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1659 d_printf("Error seeking local file\n");
1666 d_printf("Error opening local file %s\n",lname
);
1670 DEBUG(1,("putting file %s as %s ",lname
,
1673 x_setvbuf(f
, NULL
, X_IOFBF
, io_bufsize
);
1678 status
= cli_push(targetcli
, fnum
, 0, 0, io_bufsize
, push_source
,
1680 if (!NT_STATUS_IS_OK(status
)) {
1681 d_fprintf(stderr
, "cli_push returned %s\n", nt_errstr(status
));
1684 if (!cli_close(targetcli
, fnum
)) {
1685 d_printf("%s closing remote file %s\n",cli_errstr(cli
),rname
);
1695 struct timeval tp_end
;
1698 GetTimeOfDay(&tp_end
);
1700 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1701 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1702 put_total_time_ms
+= this_time
;
1703 put_total_size
+= state
.nread
;
1705 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1706 state
.nread
/ (1.024*this_time
+ 1.0e-4),
1707 put_total_size
/ (1.024*put_total_time_ms
)));
1718 /****************************************************************************
1720 ****************************************************************************/
1722 static int cmd_put(void)
1724 TALLOC_CTX
*ctx
= talloc_tos();
1729 rname
= talloc_strdup(ctx
, client_get_cur_dir());
1734 if (!next_token_talloc(ctx
, &cmd_ptr
,&lname
,NULL
)) {
1735 d_printf("put <filename>\n");
1739 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
1740 rname
= talloc_asprintf_append(rname
, "%s", buf
);
1742 rname
= talloc_asprintf_append(rname
, "%s", lname
);
1748 rname
= clean_name(ctx
, rname
);
1755 /* allow '-' to represent stdin
1756 jdblair, 24.jun.98 */
1757 if (!file_exist_stat(lname
,&st
) &&
1758 (strcmp(lname
,"-"))) {
1759 d_printf("%s does not exist\n",lname
);
1764 return do_put(rname
, lname
, false);
1767 /*************************************
1768 File list structure.
1769 *************************************/
1771 static struct file_list
{
1772 struct file_list
*prev
, *next
;
1777 /****************************************************************************
1778 Free a file_list structure.
1779 ****************************************************************************/
1781 static void free_file_list (struct file_list
*list_head
)
1783 struct file_list
*list
, *next
;
1785 for (list
= list_head
; list
; list
= next
) {
1787 DLIST_REMOVE(list_head
, list
);
1788 SAFE_FREE(list
->file_path
);
1793 /****************************************************************************
1794 Seek in a directory/file list until you get something that doesn't start with
1796 ****************************************************************************/
1798 static bool seek_list(struct file_list
*list
, char *name
)
1801 trim_string(list
->file_path
,"./","\n");
1802 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1811 /****************************************************************************
1812 Set the file selection mask.
1813 ****************************************************************************/
1815 static int cmd_select(void)
1817 TALLOC_CTX
*ctx
= talloc_tos();
1818 char *new_fs
= NULL
;
1819 next_token_talloc(ctx
, &cmd_ptr
,&new_fs
,NULL
)
1822 client_set_fileselection(new_fs
);
1824 client_set_fileselection("");
1829 /****************************************************************************
1830 Recursive file matching function act as find
1831 match must be always set to true when calling this function
1832 ****************************************************************************/
1834 static int file_find(struct file_list
**list
, const char *directory
,
1835 const char *expression
, bool match
)
1837 SMB_STRUCT_DIR
*dir
;
1838 struct file_list
*entry
;
1839 struct stat statbuf
;
1845 dir
= sys_opendir(directory
);
1849 while ((dname
= readdirname(dir
))) {
1850 if (!strcmp("..", dname
))
1852 if (!strcmp(".", dname
))
1855 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1860 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1862 ret
= stat(path
, &statbuf
);
1864 if (S_ISDIR(statbuf
.st_mode
)) {
1866 ret
= file_find(list
, path
, expression
, false);
1869 d_printf("file_find: cannot stat file %s\n", path
);
1878 entry
= SMB_MALLOC_P(struct file_list
);
1880 d_printf("Out of memory in file_find\n");
1884 entry
->file_path
= path
;
1885 entry
->isdir
= isdir
;
1886 DLIST_ADD(*list
, entry
);
1896 /****************************************************************************
1898 ****************************************************************************/
1900 static int cmd_mput(void)
1902 TALLOC_CTX
*ctx
= talloc_tos();
1905 while (next_token_talloc(ctx
, &cmd_ptr
,&p
,NULL
)) {
1907 struct file_list
*temp_list
;
1908 char *quest
, *lname
, *rname
;
1912 ret
= file_find(&file_list
, ".", p
, true);
1914 free_file_list(file_list
);
1922 for (temp_list
= file_list
; temp_list
;
1923 temp_list
= temp_list
->next
) {
1926 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0) {
1929 trim_string(lname
, "./", "/");
1931 /* check if it's a directory */
1932 if (temp_list
->isdir
) {
1933 /* if (!recurse) continue; */
1936 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) {
1939 if (prompt
&& !yesno(quest
)) { /* No */
1940 /* Skip the directory */
1941 lname
[strlen(lname
)-1] = '/';
1942 if (!seek_list(temp_list
, lname
))
1946 if(asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
1949 normalize_name(rname
);
1950 if (!cli_chkpath(cli
, rname
) &&
1952 DEBUG (0, ("Unable to make dir, skipping..."));
1953 /* Skip the directory */
1954 lname
[strlen(lname
)-1] = '/';
1955 if (!seek_list(temp_list
, lname
)) {
1963 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) {
1966 if (prompt
&& !yesno(quest
)) {
1973 if (asprintf(&rname
, "%s%s", client_get_cur_dir(), lname
) < 0) {
1978 normalize_name(rname
);
1980 do_put(rname
, lname
, false);
1982 free_file_list(file_list
);
1991 /****************************************************************************
1993 ****************************************************************************/
1995 static int do_cancel(int job
)
1997 if (cli_printjob_del(cli
, job
)) {
1998 d_printf("Job %d cancelled\n",job
);
2001 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
2006 /****************************************************************************
2008 ****************************************************************************/
2010 static int cmd_cancel(void)
2012 TALLOC_CTX
*ctx
= talloc_tos();
2016 if (!next_token_talloc(ctx
, &cmd_ptr
, &buf
,NULL
)) {
2017 d_printf("cancel <jobid> ...\n");
2023 } while (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
));
2028 /****************************************************************************
2030 ****************************************************************************/
2032 static int cmd_print(void)
2034 TALLOC_CTX
*ctx
= talloc_tos();
2039 if (!next_token_talloc(ctx
, &cmd_ptr
, &lname
,NULL
)) {
2040 d_printf("print <filename>\n");
2044 rname
= talloc_strdup(ctx
, lname
);
2048 p
= strrchr_m(rname
,'/');
2050 rname
= talloc_asprintf(ctx
,
2055 if (strequal(lname
,"-")) {
2056 rname
= talloc_asprintf(ctx
,
2064 return do_put(rname
, lname
, false);
2067 /****************************************************************************
2068 Show a print queue entry.
2069 ****************************************************************************/
2071 static void queue_fn(struct print_job_info
*p
)
2073 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
2076 /****************************************************************************
2078 ****************************************************************************/
2080 static int cmd_queue(void)
2082 cli_print_queue(cli
, queue_fn
);
2086 /****************************************************************************
2088 ****************************************************************************/
2090 static void do_del(file_info
*finfo
, const char *dir
)
2092 TALLOC_CTX
*ctx
= talloc_tos();
2095 mask
= talloc_asprintf(ctx
,
2104 if (finfo
->mode
& aDIR
) {
2109 if (!cli_unlink(finfo
->cli
, mask
)) {
2110 d_printf("%s deleting remote file %s\n",
2111 cli_errstr(finfo
->cli
),mask
);
2116 /****************************************************************************
2118 ****************************************************************************/
2120 static int cmd_del(void)
2122 TALLOC_CTX
*ctx
= talloc_tos();
2125 uint16 attribute
= aSYSTEM
| aHIDDEN
;
2131 mask
= talloc_strdup(ctx
, client_get_cur_dir());
2135 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2136 d_printf("del <filename>\n");
2139 mask
= talloc_asprintf_append(mask
, "%s", buf
);
2144 do_list(mask
,attribute
,do_del
,false,false);
2148 /****************************************************************************
2149 Wildcard delete some files.
2150 ****************************************************************************/
2152 static int cmd_wdel(void)
2154 TALLOC_CTX
*ctx
= talloc_tos();
2158 struct cli_state
*targetcli
;
2159 char *targetname
= NULL
;
2161 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2162 d_printf("wdel 0x<attrib> <wcard>\n");
2166 attribute
= (uint16
)strtol(buf
, (char **)NULL
, 16);
2168 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2169 d_printf("wdel 0x<attrib> <wcard>\n");
2173 mask
= talloc_asprintf(ctx
, "%s%s",
2174 client_get_cur_dir(),
2180 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2181 d_printf("cmd_wdel %s: %s\n", mask
, cli_errstr(cli
));
2185 if (!cli_unlink_full(targetcli
, targetname
, attribute
)) {
2186 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli
),targetname
);
2191 /****************************************************************************
2192 ****************************************************************************/
2194 static int cmd_open(void)
2196 TALLOC_CTX
*ctx
= talloc_tos();
2199 char *targetname
= NULL
;
2200 struct cli_state
*targetcli
;
2203 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2204 d_printf("open <filename>\n");
2207 mask
= talloc_asprintf(ctx
,
2209 client_get_cur_dir(),
2215 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2216 d_printf("open %s: %s\n", mask
, cli_errstr(cli
));
2220 fnum
= cli_nt_create(targetcli
, targetname
, FILE_READ_DATA
|FILE_WRITE_DATA
);
2222 fnum
= cli_nt_create(targetcli
, targetname
, FILE_READ_DATA
);
2224 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2226 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2229 d_printf("open file %s: for read/write fnum %d\n", targetname
, fnum
);
2234 static int cmd_posix_encrypt(void)
2236 TALLOC_CTX
*ctx
= talloc_tos();
2237 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
2239 if (cli
->use_kerberos
) {
2240 status
= cli_gss_smb_encryption_start(cli
);
2242 char *domain
= NULL
;
2244 char *password
= NULL
;
2246 if (!next_token_talloc(ctx
, &cmd_ptr
,&domain
,NULL
)) {
2247 d_printf("posix_encrypt domain user password\n");
2251 if (!next_token_talloc(ctx
, &cmd_ptr
,&user
,NULL
)) {
2252 d_printf("posix_encrypt domain user password\n");
2256 if (!next_token_talloc(ctx
, &cmd_ptr
,&password
,NULL
)) {
2257 d_printf("posix_encrypt domain user password\n");
2261 status
= cli_raw_ntlm_smb_encryption_start(cli
,
2267 if (!NT_STATUS_IS_OK(status
)) {
2268 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status
));
2270 d_printf("encryption on\n");
2277 /****************************************************************************
2278 ****************************************************************************/
2280 static int cmd_posix_open(void)
2282 TALLOC_CTX
*ctx
= talloc_tos();
2285 char *targetname
= NULL
;
2286 struct cli_state
*targetcli
;
2290 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2291 d_printf("posix_open <filename> 0<mode>\n");
2294 mask
= talloc_asprintf(ctx
,
2296 client_get_cur_dir(),
2302 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2303 d_printf("posix_open <filename> 0<mode>\n");
2306 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2308 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2309 d_printf("posix_open %s: %s\n", mask
, cli_errstr(cli
));
2313 fnum
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDWR
, mode
);
2315 fnum
= cli_posix_open(targetcli
, targetname
, O_CREAT
|O_RDONLY
, mode
);
2317 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2319 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2322 d_printf("posix_open file %s: for read/write fnum %d\n", targetname
, fnum
);
2328 static int cmd_posix_mkdir(void)
2330 TALLOC_CTX
*ctx
= talloc_tos();
2333 char *targetname
= NULL
;
2334 struct cli_state
*targetcli
;
2338 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2339 d_printf("posix_mkdir <filename> 0<mode>\n");
2342 mask
= talloc_asprintf(ctx
,
2344 client_get_cur_dir(),
2350 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2351 d_printf("posix_mkdir <filename> 0<mode>\n");
2354 mode
= (mode_t
)strtol(buf
, (char **)NULL
, 8);
2356 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2357 d_printf("posix_mkdir %s: %s\n", mask
, cli_errstr(cli
));
2361 fnum
= cli_posix_mkdir(targetcli
, targetname
, mode
);
2363 d_printf("Failed to open file %s. %s\n", targetname
, cli_errstr(cli
));
2365 d_printf("posix_mkdir created directory %s\n", targetname
);
2370 static int cmd_posix_unlink(void)
2372 TALLOC_CTX
*ctx
= talloc_tos();
2375 char *targetname
= NULL
;
2376 struct cli_state
*targetcli
;
2378 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2379 d_printf("posix_unlink <filename>\n");
2382 mask
= talloc_asprintf(ctx
,
2384 client_get_cur_dir(),
2390 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2391 d_printf("posix_unlink %s: %s\n", mask
, cli_errstr(cli
));
2395 if (!cli_posix_unlink(targetcli
, targetname
)) {
2396 d_printf("Failed to unlink file %s. %s\n", targetname
, cli_errstr(cli
));
2398 d_printf("posix_unlink deleted file %s\n", targetname
);
2404 static int cmd_posix_rmdir(void)
2406 TALLOC_CTX
*ctx
= talloc_tos();
2409 char *targetname
= NULL
;
2410 struct cli_state
*targetcli
;
2412 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2413 d_printf("posix_rmdir <filename>\n");
2416 mask
= talloc_asprintf(ctx
,
2418 client_get_cur_dir(),
2424 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2425 d_printf("posix_rmdir %s: %s\n", mask
, cli_errstr(cli
));
2429 if (!cli_posix_rmdir(targetcli
, targetname
)) {
2430 d_printf("Failed to unlink directory %s. %s\n", targetname
, cli_errstr(cli
));
2432 d_printf("posix_rmdir deleted directory %s\n", targetname
);
2438 static int cmd_close(void)
2440 TALLOC_CTX
*ctx
= talloc_tos();
2444 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2445 d_printf("close <fnum>\n");
2450 /* We really should use the targetcli here.... */
2451 if (!cli_close(cli
, fnum
)) {
2452 d_printf("close %d: %s\n", fnum
, cli_errstr(cli
));
2458 static int cmd_posix(void)
2460 TALLOC_CTX
*ctx
= talloc_tos();
2461 uint16 major
, minor
;
2462 uint32 caplow
, caphigh
;
2465 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2466 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2470 if (!cli_unix_extensions_version(cli
, &major
, &minor
, &caplow
, &caphigh
)) {
2471 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2475 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major
, (unsigned int)minor
);
2477 caps
= talloc_strdup(ctx
, "");
2481 if (caplow
& CIFS_UNIX_FCNTL_LOCKS_CAP
) {
2482 caps
= talloc_asprintf_append(caps
, "locks ");
2487 if (caplow
& CIFS_UNIX_POSIX_ACLS_CAP
) {
2488 caps
= talloc_asprintf_append(caps
, "acls ");
2493 if (caplow
& CIFS_UNIX_XATTTR_CAP
) {
2494 caps
= talloc_asprintf_append(caps
, "eas ");
2499 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2500 caps
= talloc_asprintf_append(caps
, "pathnames ");
2505 if (caplow
& CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP
) {
2506 caps
= talloc_asprintf_append(caps
, "posix_path_operations ");
2511 if (caplow
& CIFS_UNIX_LARGE_READ_CAP
) {
2512 caps
= talloc_asprintf_append(caps
, "large_read ");
2517 if (caplow
& CIFS_UNIX_LARGE_WRITE_CAP
) {
2518 caps
= talloc_asprintf_append(caps
, "large_write ");
2523 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP
) {
2524 caps
= talloc_asprintf_append(caps
, "posix_encrypt ");
2529 if (caplow
& CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP
) {
2530 caps
= talloc_asprintf_append(caps
, "mandatory_posix_encrypt ");
2536 if (*caps
&& caps
[strlen(caps
)-1] == ' ') {
2537 caps
[strlen(caps
)-1] = '\0';
2540 d_printf("Server supports CIFS capabilities %s\n", caps
);
2542 if (!cli_set_unix_extensions_capabilities(cli
, major
, minor
, caplow
, caphigh
)) {
2543 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli
));
2547 if (caplow
& CIFS_UNIX_POSIX_PATHNAMES_CAP
) {
2548 CLI_DIRSEP_CHAR
= '/';
2549 *CLI_DIRSEP_STR
= '/';
2550 client_set_cur_dir(CLI_DIRSEP_STR
);
2556 static int cmd_lock(void)
2558 TALLOC_CTX
*ctx
= talloc_tos();
2560 uint64_t start
, len
;
2561 enum brl_type lock_type
;
2564 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2565 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2570 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2571 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2575 if (*buf
== 'r' || *buf
== 'R') {
2576 lock_type
= READ_LOCK
;
2577 } else if (*buf
== 'w' || *buf
== 'W') {
2578 lock_type
= WRITE_LOCK
;
2580 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2584 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2585 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2589 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2591 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2592 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2596 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2598 if (!cli_posix_lock(cli
, fnum
, start
, len
, true, lock_type
)) {
2599 d_printf("lock failed %d: %s\n", fnum
, cli_errstr(cli
));
2605 static int cmd_unlock(void)
2607 TALLOC_CTX
*ctx
= talloc_tos();
2609 uint64_t start
, len
;
2612 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2613 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2618 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2619 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2623 start
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2625 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2626 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2630 len
= (uint64_t)strtol(buf
, (char **)NULL
, 16);
2632 if (!cli_posix_unlock(cli
, fnum
, start
, len
)) {
2633 d_printf("unlock failed %d: %s\n", fnum
, cli_errstr(cli
));
2640 /****************************************************************************
2642 ****************************************************************************/
2644 static int cmd_rmdir(void)
2646 TALLOC_CTX
*ctx
= talloc_tos();
2649 char *targetname
= NULL
;
2650 struct cli_state
*targetcli
;
2652 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
2653 d_printf("rmdir <dirname>\n");
2656 mask
= talloc_asprintf(ctx
,
2658 client_get_cur_dir(),
2664 if (!cli_resolve_path(ctx
, "", cli
, mask
, &targetcli
, &targetname
)) {
2665 d_printf("rmdir %s: %s\n", mask
, cli_errstr(cli
));
2669 if (!cli_rmdir(targetcli
, targetname
)) {
2670 d_printf("%s removing remote directory file %s\n",
2671 cli_errstr(targetcli
),mask
);
2677 /****************************************************************************
2679 ****************************************************************************/
2681 static int cmd_link(void)
2683 TALLOC_CTX
*ctx
= talloc_tos();
2684 char *oldname
= NULL
;
2685 char *newname
= NULL
;
2688 char *targetname
= NULL
;
2689 struct cli_state
*targetcli
;
2691 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2692 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2693 d_printf("link <oldname> <newname>\n");
2696 oldname
= talloc_asprintf(ctx
,
2698 client_get_cur_dir(),
2703 newname
= talloc_asprintf(ctx
,
2705 client_get_cur_dir(),
2711 if (!cli_resolve_path(ctx
, "", cli
, oldname
, &targetcli
, &targetname
)) {
2712 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2716 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2717 d_printf("Server doesn't support UNIX CIFS calls.\n");
2721 if (!cli_unix_hardlink(targetcli
, targetname
, newname
)) {
2722 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli
), newname
, oldname
);
2728 /****************************************************************************
2730 ****************************************************************************/
2732 static int cmd_symlink(void)
2734 TALLOC_CTX
*ctx
= talloc_tos();
2735 char *oldname
= NULL
;
2736 char *newname
= NULL
;
2739 char *targetname
= NULL
;
2740 struct cli_state
*targetcli
;
2742 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2743 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2744 d_printf("symlink <oldname> <newname>\n");
2747 oldname
= talloc_asprintf(ctx
,
2749 client_get_cur_dir(),
2754 newname
= talloc_asprintf(ctx
,
2756 client_get_cur_dir(),
2762 if (!cli_resolve_path(ctx
, "", cli
, oldname
, &targetcli
, &targetname
)) {
2763 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
2767 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2768 d_printf("Server doesn't support UNIX CIFS calls.\n");
2772 if (!cli_unix_symlink(targetcli
, targetname
, newname
)) {
2773 d_printf("%s symlinking files (%s -> %s)\n",
2774 cli_errstr(targetcli
), newname
, targetname
);
2781 /****************************************************************************
2783 ****************************************************************************/
2785 static int cmd_chmod(void)
2787 TALLOC_CTX
*ctx
= talloc_tos();
2791 char *targetname
= NULL
;
2792 struct cli_state
*targetcli
;
2795 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
2796 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
2797 d_printf("chmod mode file\n");
2800 src
= talloc_asprintf(ctx
,
2802 client_get_cur_dir(),
2808 mode
= (mode_t
)strtol(buf
, NULL
, 8);
2810 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
2811 d_printf("chmod %s: %s\n", src
, cli_errstr(cli
));
2815 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2816 d_printf("Server doesn't support UNIX CIFS calls.\n");
2820 if (!cli_unix_chmod(targetcli
, targetname
, mode
)) {
2821 d_printf("%s chmod file %s 0%o\n",
2822 cli_errstr(targetcli
), src
, (unsigned int)mode
);
2829 static const char *filetype_to_str(mode_t mode
)
2831 if (S_ISREG(mode
)) {
2832 return "regular file";
2833 } else if (S_ISDIR(mode
)) {
2837 if (S_ISCHR(mode
)) {
2838 return "character device";
2842 if (S_ISBLK(mode
)) {
2843 return "block device";
2847 if (S_ISFIFO(mode
)) {
2852 if (S_ISLNK(mode
)) {
2853 return "symbolic link";
2857 if (S_ISSOCK(mode
)) {
2864 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
2873 static char *unix_mode_to_str(char *s
, mode_t m
)
2876 const char *str
= filetype_to_str(m
);
2892 *p
++ = str
[1] == 'y' ? 'l' : 's';
2899 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
2900 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
2901 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
2902 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
2903 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
2904 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
2905 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
2906 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
2907 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
2912 /****************************************************************************
2913 Utility function for UNIX getfacl.
2914 ****************************************************************************/
2916 static char *perms_to_string(fstring permstr
, unsigned char perms
)
2918 fstrcpy(permstr
, "---");
2919 if (perms
& SMB_POSIX_ACL_READ
) {
2922 if (perms
& SMB_POSIX_ACL_WRITE
) {
2925 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
2931 /****************************************************************************
2933 ****************************************************************************/
2935 static int cmd_getfacl(void)
2937 TALLOC_CTX
*ctx
= talloc_tos();
2940 char *targetname
= NULL
;
2941 struct cli_state
*targetcli
;
2942 uint16 major
, minor
;
2943 uint32 caplow
, caphigh
;
2944 char *retbuf
= NULL
;
2946 SMB_STRUCT_STAT sbuf
;
2947 uint16 num_file_acls
= 0;
2948 uint16 num_dir_acls
= 0;
2951 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
2952 d_printf("getfacl filename\n");
2955 src
= talloc_asprintf(ctx
,
2957 client_get_cur_dir(),
2963 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
2964 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
2968 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2969 d_printf("Server doesn't support UNIX CIFS calls.\n");
2973 if (!cli_unix_extensions_version(targetcli
, &major
, &minor
,
2974 &caplow
, &caphigh
)) {
2975 d_printf("Can't get UNIX CIFS version from server.\n");
2979 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
2980 d_printf("This server supports UNIX extensions "
2981 "but doesn't support POSIX ACLs.\n");
2985 if (!cli_unix_stat(targetcli
, targetname
, &sbuf
)) {
2986 d_printf("%s getfacl doing a stat on file %s\n",
2987 cli_errstr(targetcli
), src
);
2991 if (!cli_unix_getfacl(targetcli
, targetname
, &rb_size
, &retbuf
)) {
2992 d_printf("%s getfacl file %s\n",
2993 cli_errstr(targetcli
), src
);
2997 /* ToDo : Print out the ACL values. */
2998 if (SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
|| rb_size
< 6) {
2999 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3000 src
, (unsigned int)CVAL(retbuf
,0) );
3005 num_file_acls
= SVAL(retbuf
,2);
3006 num_dir_acls
= SVAL(retbuf
,4);
3007 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
3008 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3010 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
3011 (unsigned int)rb_size
);
3017 d_printf("# file: %s\n", src
);
3018 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_uid
, (unsigned int)sbuf
.st_gid
);
3020 if (num_file_acls
== 0 && num_dir_acls
== 0) {
3021 d_printf("No acls found.\n");
3024 for (i
= 0; i
< num_file_acls
; i
++) {
3027 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
3028 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3031 case SMB_POSIX_ACL_USER_OBJ
:
3034 case SMB_POSIX_ACL_USER
:
3035 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3036 d_printf("user:%u:", uorg
);
3038 case SMB_POSIX_ACL_GROUP_OBJ
:
3039 d_printf("group::");
3041 case SMB_POSIX_ACL_GROUP
:
3042 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3043 d_printf("group:%u:", uorg
);
3045 case SMB_POSIX_ACL_MASK
:
3048 case SMB_POSIX_ACL_OTHER
:
3049 d_printf("other::");
3052 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3053 src
, (unsigned int)tagtype
);
3058 d_printf("%s\n", perms_to_string(permstring
, perms
));
3061 for (i
= 0; i
< num_dir_acls
; i
++) {
3064 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
3065 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
3068 case SMB_POSIX_ACL_USER_OBJ
:
3069 d_printf("default:user::");
3071 case SMB_POSIX_ACL_USER
:
3072 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3073 d_printf("default:user:%u:", uorg
);
3075 case SMB_POSIX_ACL_GROUP_OBJ
:
3076 d_printf("default:group::");
3078 case SMB_POSIX_ACL_GROUP
:
3079 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
3080 d_printf("default:group:%u:", uorg
);
3082 case SMB_POSIX_ACL_MASK
:
3083 d_printf("default:mask::");
3085 case SMB_POSIX_ACL_OTHER
:
3086 d_printf("default:other::");
3089 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3090 src
, (unsigned int)tagtype
);
3095 d_printf("%s\n", perms_to_string(permstring
, perms
));
3102 /****************************************************************************
3104 ****************************************************************************/
3106 static int cmd_stat(void)
3108 TALLOC_CTX
*ctx
= talloc_tos();
3111 char *targetname
= NULL
;
3112 struct cli_state
*targetcli
;
3114 SMB_STRUCT_STAT sbuf
;
3117 if (!next_token_talloc(ctx
, &cmd_ptr
,&name
,NULL
)) {
3118 d_printf("stat file\n");
3121 src
= talloc_asprintf(ctx
,
3123 client_get_cur_dir(),
3129 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
3130 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
3134 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3135 d_printf("Server doesn't support UNIX CIFS calls.\n");
3139 if (!cli_unix_stat(targetcli
, targetname
, &sbuf
)) {
3140 d_printf("%s stat file %s\n",
3141 cli_errstr(targetcli
), src
);
3145 /* Print out the stat values. */
3146 d_printf("File: %s\n", src
);
3147 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3148 (double)sbuf
.st_size
,
3149 (unsigned int)sbuf
.st_blocks
,
3150 filetype_to_str(sbuf
.st_mode
));
3152 #if defined(S_ISCHR) && defined(S_ISBLK)
3153 if (S_ISCHR(sbuf
.st_mode
) || S_ISBLK(sbuf
.st_mode
)) {
3154 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3155 (double)sbuf
.st_ino
,
3156 (unsigned int)sbuf
.st_nlink
,
3157 unix_dev_major(sbuf
.st_rdev
),
3158 unix_dev_minor(sbuf
.st_rdev
));
3161 d_printf("Inode: %.0f\tLinks: %u\n",
3162 (double)sbuf
.st_ino
,
3163 (unsigned int)sbuf
.st_nlink
);
3165 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3166 ((int)sbuf
.st_mode
& 0777),
3167 unix_mode_to_str(mode_str
, sbuf
.st_mode
),
3168 (unsigned int)sbuf
.st_uid
,
3169 (unsigned int)sbuf
.st_gid
);
3171 lt
= localtime(&sbuf
.st_atime
);
3173 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3175 fstrcpy(mode_str
, "unknown");
3177 d_printf("Access: %s\n", mode_str
);
3179 lt
= localtime(&sbuf
.st_mtime
);
3181 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3183 fstrcpy(mode_str
, "unknown");
3185 d_printf("Modify: %s\n", mode_str
);
3187 lt
= localtime(&sbuf
.st_ctime
);
3189 strftime(mode_str
, sizeof(mode_str
), "%Y-%m-%d %T %z", lt
);
3191 fstrcpy(mode_str
, "unknown");
3193 d_printf("Change: %s\n", mode_str
);
3199 /****************************************************************************
3201 ****************************************************************************/
3203 static int cmd_chown(void)
3205 TALLOC_CTX
*ctx
= talloc_tos();
3209 char *buf
, *buf2
, *buf3
;
3210 struct cli_state
*targetcli
;
3211 char *targetname
= NULL
;
3213 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3214 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
) ||
3215 !next_token_talloc(ctx
, &cmd_ptr
,&buf3
,NULL
)) {
3216 d_printf("chown uid gid file\n");
3220 uid
= (uid_t
)atoi(buf
);
3221 gid
= (gid_t
)atoi(buf2
);
3223 src
= talloc_asprintf(ctx
,
3225 client_get_cur_dir(),
3230 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
) ) {
3231 d_printf("chown %s: %s\n", src
, cli_errstr(cli
));
3235 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
3236 d_printf("Server doesn't support UNIX CIFS calls.\n");
3240 if (!cli_unix_chown(targetcli
, targetname
, uid
, gid
)) {
3241 d_printf("%s chown file %s uid=%d, gid=%d\n",
3242 cli_errstr(targetcli
), src
, (int)uid
, (int)gid
);
3249 /****************************************************************************
3251 ****************************************************************************/
3253 static int cmd_rename(void)
3255 TALLOC_CTX
*ctx
= talloc_tos();
3258 struct cli_state
*targetcli
;
3262 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3263 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3264 d_printf("rename <src> <dest>\n");
3268 src
= talloc_asprintf(ctx
,
3270 client_get_cur_dir(),
3276 dest
= talloc_asprintf(ctx
,
3278 client_get_cur_dir(),
3284 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetsrc
)) {
3285 d_printf("rename %s: %s\n", src
, cli_errstr(cli
));
3289 if (!cli_resolve_path(ctx
, "", cli
, dest
, &targetcli
, &targetdest
)) {
3290 d_printf("rename %s: %s\n", dest
, cli_errstr(cli
));
3294 if (!cli_rename(targetcli
, targetsrc
, targetdest
)) {
3295 d_printf("%s renaming files %s -> %s \n",
3296 cli_errstr(targetcli
),
3305 /****************************************************************************
3306 Print the volume name.
3307 ****************************************************************************/
3309 static int cmd_volume(void)
3315 if (!cli_get_fs_volume_info(cli
, volname
, &serial_num
, &create_date
)) {
3316 d_printf("Errr %s getting volume info\n",cli_errstr(cli
));
3320 d_printf("Volume: |%s| serial number 0x%x\n",
3321 volname
, (unsigned int)serial_num
);
3325 /****************************************************************************
3326 Hard link files using the NT call.
3327 ****************************************************************************/
3329 static int cmd_hardlink(void)
3331 TALLOC_CTX
*ctx
= talloc_tos();
3334 struct cli_state
*targetcli
;
3337 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
) ||
3338 !next_token_talloc(ctx
, &cmd_ptr
,&buf2
,NULL
)) {
3339 d_printf("hardlink <src> <dest>\n");
3343 src
= talloc_asprintf(ctx
,
3345 client_get_cur_dir(),
3351 dest
= talloc_asprintf(ctx
,
3353 client_get_cur_dir(),
3359 if (!cli_resolve_path(ctx
, "", cli
, src
, &targetcli
, &targetname
)) {
3360 d_printf("hardlink %s: %s\n", src
, cli_errstr(cli
));
3364 if (!cli_nt_hardlink(targetcli
, targetname
, dest
)) {
3365 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli
));
3372 /****************************************************************************
3373 Toggle the prompt flag.
3374 ****************************************************************************/
3376 static int cmd_prompt(void)
3379 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
3383 /****************************************************************************
3384 Set the newer than time.
3385 ****************************************************************************/
3387 static int cmd_newer(void)
3389 TALLOC_CTX
*ctx
= talloc_tos();
3392 SMB_STRUCT_STAT sbuf
;
3394 ok
= next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
);
3395 if (ok
&& (sys_stat(buf
,&sbuf
) == 0)) {
3396 newer_than
= sbuf
.st_mtime
;
3397 DEBUG(1,("Getting files newer than %s",
3398 time_to_asc(newer_than
)));
3403 if (ok
&& newer_than
== 0) {
3404 d_printf("Error setting newer-than time\n");
3411 /****************************************************************************
3412 Set the archive level.
3413 ****************************************************************************/
3415 static int cmd_archive(void)
3417 TALLOC_CTX
*ctx
= talloc_tos();
3420 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3421 archive_level
= atoi(buf
);
3423 d_printf("Archive level is %d\n",archive_level
);
3429 /****************************************************************************
3430 Toggle the lowercaseflag.
3431 ****************************************************************************/
3433 static int cmd_lowercase(void)
3435 lowercase
= !lowercase
;
3436 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
3440 /****************************************************************************
3441 Toggle the case sensitive flag.
3442 ****************************************************************************/
3444 static int cmd_setcase(void)
3446 bool orig_case_sensitive
= cli_set_case_sensitive(cli
, false);
3448 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
3449 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
3454 /****************************************************************************
3455 Toggle the showacls flag.
3456 ****************************************************************************/
3458 static int cmd_showacls(void)
3460 showacls
= !showacls
;
3461 DEBUG(2,("showacls is now %s\n",showacls
?"on":"off"));
3466 /****************************************************************************
3467 Toggle the recurse flag.
3468 ****************************************************************************/
3470 static int cmd_recurse(void)
3473 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
3477 /****************************************************************************
3478 Toggle the translate flag.
3479 ****************************************************************************/
3481 static int cmd_translate(void)
3483 translation
= !translation
;
3484 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3485 translation
?"on":"off"));
3489 /****************************************************************************
3491 ****************************************************************************/
3493 static int cmd_lcd(void)
3495 TALLOC_CTX
*ctx
= talloc_tos();
3499 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3500 if (chdir(buf
) == -1) {
3501 d_printf("chdir to %s failed (%s)\n",
3502 buf
, strerror(errno
));
3505 d
= TALLOC_ARRAY(ctx
, char, PATH_MAX
+1);
3509 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
3513 /****************************************************************************
3514 Get a file restarting at end of local file.
3515 ****************************************************************************/
3517 static int cmd_reget(void)
3519 TALLOC_CTX
*ctx
= talloc_tos();
3520 char *local_name
= NULL
;
3521 char *remote_name
= NULL
;
3525 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3530 if (!next_token_talloc(ctx
, &cmd_ptr
, &fname
, NULL
)) {
3531 d_printf("reget <filename>\n");
3534 remote_name
= talloc_asprintf_append(remote_name
, "%s", fname
);
3538 remote_name
= clean_name(ctx
,remote_name
);
3544 next_token_talloc(ctx
, &cmd_ptr
, &p
, NULL
);
3549 return do_get(remote_name
, local_name
, true);
3552 /****************************************************************************
3553 Put a file restarting at end of local file.
3554 ****************************************************************************/
3556 static int cmd_reput(void)
3558 TALLOC_CTX
*ctx
= talloc_tos();
3559 char *local_name
= NULL
;
3560 char *remote_name
= NULL
;
3564 remote_name
= talloc_strdup(ctx
, client_get_cur_dir());
3569 if (!next_token_talloc(ctx
, &cmd_ptr
, &local_name
, NULL
)) {
3570 d_printf("reput <filename>\n");
3574 if (!file_exist_stat(local_name
, &st
)) {
3575 d_printf("%s does not exist\n", local_name
);
3579 if (next_token_talloc(ctx
, &cmd_ptr
, &buf
, NULL
)) {
3580 remote_name
= talloc_asprintf_append(remote_name
,
3583 remote_name
= talloc_asprintf_append(remote_name
,
3590 remote_name
= clean_name(ctx
, remote_name
);
3595 return do_put(remote_name
, local_name
, true);
3598 /****************************************************************************
3600 ****************************************************************************/
3602 static void browse_fn(const char *name
, uint32 m
,
3603 const char *comment
, void *state
)
3605 const char *typestr
= "";
3608 case STYPE_DISKTREE
:
3612 typestr
= "Printer";
3621 /* FIXME: If the remote machine returns non-ascii characters
3622 in any of these fields, they can corrupt the output. We
3623 should remove them. */
3625 d_printf("\t%-15s %-10.10s%s\n",
3626 name
,typestr
,comment
);
3628 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
3632 static bool browse_host_rpc(bool sort
)
3635 struct rpc_pipe_client
*pipe_hnd
;
3636 TALLOC_CTX
*frame
= talloc_stackframe();
3638 struct srvsvc_NetShareInfoCtr info_ctr
;
3639 struct srvsvc_NetShareCtr1 ctr1
;
3640 uint32_t resume_handle
= 0;
3641 uint32_t total_entries
= 0;
3644 status
= cli_rpc_pipe_open_noauth(cli
, &ndr_table_srvsvc
.syntax_id
,
3647 if (!NT_STATUS_IS_OK(status
)) {
3648 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3649 nt_errstr(status
)));
3654 ZERO_STRUCT(info_ctr
);
3658 info_ctr
.ctr
.ctr1
= &ctr1
;
3660 status
= rpccli_srvsvc_NetShareEnumAll(pipe_hnd
, frame
,
3668 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(werr
)) {
3669 TALLOC_FREE(pipe_hnd
);
3674 for (i
=0; i
< info_ctr
.ctr
.ctr1
->count
; i
++) {
3675 struct srvsvc_NetShareInfo1 info
= info_ctr
.ctr
.ctr1
->array
[i
];
3676 browse_fn(info
.name
, info
.type
, info
.comment
, NULL
);
3679 TALLOC_FREE(pipe_hnd
);
3684 /****************************************************************************
3685 Try and browse available connections on a host.
3686 ****************************************************************************/
3688 static bool browse_host(bool sort
)
3692 d_printf("\n\tSharename Type Comment\n");
3693 d_printf("\t--------- ---- -------\n");
3696 if (browse_host_rpc(sort
)) {
3700 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
3701 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
3706 /****************************************************************************
3708 ****************************************************************************/
3710 static void server_fn(const char *name
, uint32 m
,
3711 const char *comment
, void *state
)
3715 d_printf("\t%-16s %s\n", name
, comment
);
3717 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
3721 /****************************************************************************
3722 Try and browse available connections on a host.
3723 ****************************************************************************/
3725 static bool list_servers(const char *wk_grp
)
3729 if (!cli
->server_domain
)
3733 d_printf("\n\tServer Comment\n");
3734 d_printf("\t--------- -------\n");
3736 fstrcpy( state
, "Server" );
3737 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
3741 d_printf("\n\tWorkgroup Master\n");
3742 d_printf("\t--------- -------\n");
3745 fstrcpy( state
, "Workgroup" );
3746 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
3751 /****************************************************************************
3752 Print or set current VUID
3753 ****************************************************************************/
3755 static int cmd_vuid(void)
3757 TALLOC_CTX
*ctx
= talloc_tos();
3760 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3761 d_printf("Current VUID is %d\n", cli
->vuid
);
3765 cli
->vuid
= atoi(buf
);
3769 /****************************************************************************
3770 Setup a new VUID, by issuing a session setup
3771 ****************************************************************************/
3773 static int cmd_logon(void)
3775 TALLOC_CTX
*ctx
= talloc_tos();
3776 char *l_username
, *l_password
;
3778 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_username
,NULL
)) {
3779 d_printf("logon <username> [<password>]\n");
3783 if (!next_token_talloc(ctx
, &cmd_ptr
,&l_password
,NULL
)) {
3784 char *pass
= getpass("Password: ");
3786 l_password
= talloc_strdup(ctx
,pass
);
3793 if (!NT_STATUS_IS_OK(cli_session_setup(cli
, l_username
,
3794 l_password
, strlen(l_password
),
3795 l_password
, strlen(l_password
),
3797 d_printf("session setup failed: %s\n", cli_errstr(cli
));
3801 d_printf("Current VUID is %d\n", cli
->vuid
);
3806 /****************************************************************************
3807 list active connections
3808 ****************************************************************************/
3810 static int cmd_list_connect(void)
3816 /****************************************************************************
3817 display the current active client connection
3818 ****************************************************************************/
3820 static int cmd_show_connect( void )
3822 TALLOC_CTX
*ctx
= talloc_tos();
3823 struct cli_state
*targetcli
;
3826 if (!cli_resolve_path(ctx
, "", cli
, client_get_cur_dir(),
3827 &targetcli
, &targetpath
) ) {
3828 d_printf("showconnect %s: %s\n", cur_dir
, cli_errstr(cli
));
3832 d_printf("//%s/%s\n", targetcli
->desthost
, targetcli
->share
);
3836 /****************************************************************************
3838 ***************************************************************************/
3840 int cmd_iosize(void)
3842 TALLOC_CTX
*ctx
= talloc_tos();
3846 if (!next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
3848 d_printf("iosize <n> or iosize 0x<n>. "
3849 "Minimum is 16384 (0x4000), "
3850 "max is 16776960 (0xFFFF00)\n");
3852 d_printf("iosize <n> or iosize 0x<n>. "
3853 "(Encrypted connection) ,"
3854 "Minimum is 16384 (0x4000), "
3855 "max is 130048 (0x1FC00)\n");
3860 iosize
= strtol(buf
,NULL
,0);
3861 if (smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFC00)) {
3862 d_printf("iosize out of range for encrypted "
3863 "connection (min = 16384 (0x4000), "
3864 "max = 130048 (0x1FC00)");
3866 } else if (!smb_encrypt
&& (iosize
< 0x4000 || iosize
> 0xFFFF00)) {
3867 d_printf("iosize out of range (min = 16384 (0x4000), "
3868 "max = 16776960 (0xFFFF00)");
3872 io_bufsize
= iosize
;
3873 d_printf("iosize is now %d\n", io_bufsize
);
3878 /* Some constants for completing filename arguments */
3880 #define COMPL_NONE 0 /* No completions */
3881 #define COMPL_REMOTE 1 /* Complete remote filename */
3882 #define COMPL_LOCAL 2 /* Complete local filename */
3884 /* This defines the commands supported by this client.
3885 * NOTE: The "!" must be the last one in the list because it's fn pointer
3886 * field is NULL, and NULL in that field is used in process_tok()
3887 * (below) to indicate the end of the list. crh
3892 const char *description
;
3893 char compl_args
[2]; /* Completion argument info */
3895 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
3896 {"allinfo",cmd_allinfo
,"<file> show all available info",
3897 {COMPL_NONE
,COMPL_NONE
}},
3898 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
3899 {"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
}},
3900 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
3901 {"cancel",cmd_cancel
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
3902 {"case_sensitive",cmd_setcase
,"toggle the case sensitive flag to server",{COMPL_NONE
,COMPL_NONE
}},
3903 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
3904 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
3905 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
3906 {"close",cmd_close
,"<fid> close a file given a fid",{COMPL_REMOTE
,COMPL_REMOTE
}},
3907 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3908 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3909 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3910 {"echo",cmd_echo
,"ping the server",{COMPL_NONE
,COMPL_NONE
}},
3911 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3912 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
3913 {"getfacl",cmd_getfacl
,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE
,COMPL_LOCAL
}},
3914 {"hardlink",cmd_hardlink
,"<src> <dest> create a Windows hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
3915 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
3916 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
3917 {"iosize",cmd_iosize
,"iosize <number> (default 64512)",{COMPL_NONE
,COMPL_NONE
}},
3918 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
3919 {"link",cmd_link
,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
3920 {"lock",cmd_lock
,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
3921 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
3922 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3923 {"l",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
3924 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
3925 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
3926 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3927 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
3928 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
3929 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3930 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
3931 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
3932 {"posix", cmd_posix
, "turn on all POSIX capabilities", {COMPL_REMOTE
,COMPL_NONE
}},
3933 {"posix_encrypt",cmd_posix_encrypt
,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE
,COMPL_NONE
}},
3934 {"posix_open",cmd_posix_open
,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3935 {"posix_mkdir",cmd_posix_mkdir
,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3936 {"posix_rmdir",cmd_posix_rmdir
,"<name> removes a directory using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3937 {"posix_unlink",cmd_posix_unlink
,"<name> removes a file using POSIX interface",{COMPL_REMOTE
,COMPL_NONE
}},
3938 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
3939 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
3940 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
3941 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
3942 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3943 {"queue",cmd_queue
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
3944 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
3945 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
3946 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
3947 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
3948 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
3949 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
3950 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3951 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
3952 {"showacls",cmd_showacls
,"toggle if ACLs are shown or not",{COMPL_NONE
,COMPL_NONE
}},
3953 {"setmode",cmd_setmode
,"filename <setmode string> change modes of file",{COMPL_REMOTE
,COMPL_NONE
}},
3954 {"stat",cmd_stat
,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE
,COMPL_REMOTE
}},
3955 {"symlink",cmd_symlink
,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
3956 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
3957 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
3958 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
3959 {"unlock",cmd_unlock
,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE
,COMPL_REMOTE
}},
3960 {"volume",cmd_volume
,"print the volume name",{COMPL_NONE
,COMPL_NONE
}},
3961 {"vuid",cmd_vuid
,"change current vuid",{COMPL_NONE
,COMPL_NONE
}},
3962 {"wdel",cmd_wdel
,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
3963 {"logon",cmd_logon
,"establish new logon",{COMPL_NONE
,COMPL_NONE
}},
3964 {"listconnect",cmd_list_connect
,"list open connections",{COMPL_NONE
,COMPL_NONE
}},
3965 {"showconnect",cmd_show_connect
,"display the current active connection",{COMPL_NONE
,COMPL_NONE
}},
3966 {"..",cmd_cd_oneup
,"change the remote directory (up one level)",{COMPL_REMOTE
,COMPL_NONE
}},
3968 /* Yes, this must be here, see crh's comment above. */
3969 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
3970 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
3973 /*******************************************************************
3974 Lookup a command string in the list of commands, including
3976 ******************************************************************/
3978 static int process_tok(char *tok
)
3980 int i
= 0, matches
= 0;
3982 int tok_len
= strlen(tok
);
3984 while (commands
[i
].fn
!= NULL
) {
3985 if (strequal(commands
[i
].name
,tok
)) {
3989 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
3998 else if (matches
== 1)
4004 /****************************************************************************
4006 ****************************************************************************/
4008 static int cmd_help(void)
4010 TALLOC_CTX
*ctx
= talloc_tos();
4014 if (next_token_talloc(ctx
, &cmd_ptr
,&buf
,NULL
)) {
4015 if ((i
= process_tok(buf
)) >= 0)
4016 d_printf("HELP %s:\n\t%s\n\n",
4017 commands
[i
].name
,commands
[i
].description
);
4019 while (commands
[i
].description
) {
4020 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
4021 d_printf("%-15s",commands
[i
].name
);
4030 /****************************************************************************
4031 Process a -c command string.
4032 ****************************************************************************/
4034 static int process_command_string(const char *cmd_in
)
4036 TALLOC_CTX
*ctx
= talloc_tos();
4037 char *cmd
= talloc_strdup(ctx
, cmd_in
);
4043 /* establish the connection if not already */
4046 cli
= cli_cm_open(talloc_tos(), NULL
, desthost
,
4047 service
, true, smb_encrypt
);
4053 while (cmd
[0] != '\0') {
4059 if ((p
= strchr_m(cmd
, ';')) == 0) {
4068 /* and get the first part of the command */
4070 if (!next_token_talloc(ctx
, &cmd_ptr
,&tok
,NULL
)) {
4074 if ((i
= process_tok(tok
)) >= 0) {
4075 rc
= commands
[i
].fn();
4076 } else if (i
== -2) {
4077 d_printf("%s: command abbreviation ambiguous\n",tok
);
4079 d_printf("%s: command not found\n",tok
);
4086 #define MAX_COMPLETIONS 100
4094 } completion_remote_t
;
4096 static void completion_remote_filter(const char *mnt
,
4101 completion_remote_t
*info
= (completion_remote_t
*)state
;
4103 if ((info
->count
< MAX_COMPLETIONS
- 1) &&
4104 (strncmp(info
->text
, f
->name
, info
->len
) == 0) &&
4105 (strcmp(f
->name
, ".") != 0) &&
4106 (strcmp(f
->name
, "..") != 0)) {
4107 if ((info
->dirmask
[0] == 0) && !(f
->mode
& aDIR
))
4108 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
4110 TALLOC_CTX
*ctx
= talloc_stackframe();
4113 tmp
= talloc_strdup(ctx
,info
->dirmask
);
4118 tmp
= talloc_asprintf_append(tmp
, "%s", f
->name
);
4123 if (f
->mode
& aDIR
) {
4124 tmp
= talloc_asprintf_append(tmp
, "%s", CLI_DIRSEP_STR
);
4130 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
4133 if (info
->matches
[info
->count
] == NULL
) {
4136 if (f
->mode
& aDIR
) {
4137 smb_readline_ca_char(0);
4139 if (info
->count
== 1) {
4140 info
->samelen
= strlen(info
->matches
[info
->count
]);
4142 while (strncmp(info
->matches
[info
->count
],
4143 info
->matches
[info
->count
-1],
4144 info
->samelen
) != 0) {
4152 static char **remote_completion(const char *text
, int len
)
4154 TALLOC_CTX
*ctx
= talloc_stackframe();
4155 char *dirmask
= NULL
;
4156 char *targetpath
= NULL
;
4157 struct cli_state
*targetcli
= NULL
;
4159 completion_remote_t info
= { NULL
, NULL
, 1, 0, NULL
, 0 };
4161 /* can't have non-static intialisation on Sun CC, so do it
4167 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
4168 if (!info
.matches
) {
4174 * We're leaving matches[0] free to fill it later with the text to
4175 * display: Either the one single match or the longest common subset
4178 info
.matches
[0] = NULL
;
4181 for (i
= len
-1; i
>= 0; i
--) {
4182 if ((text
[i
] == '/') || (text
[i
] == CLI_DIRSEP_CHAR
)) {
4187 info
.text
= text
+i
+1;
4188 info
.samelen
= info
.len
= len
-i
-1;
4191 info
.dirmask
= SMB_MALLOC_ARRAY(char, i
+2);
4192 if (!info
.dirmask
) {
4195 strncpy(info
.dirmask
, text
, i
+1);
4196 info
.dirmask
[i
+1] = 0;
4197 dirmask
= talloc_asprintf(ctx
,
4199 client_get_cur_dir(),
4203 info
.dirmask
= SMB_STRDUP("");
4204 if (!info
.dirmask
) {
4207 dirmask
= talloc_asprintf(ctx
,
4209 client_get_cur_dir());
4215 if (!cli_resolve_path(ctx
, "", cli
, dirmask
, &targetcli
, &targetpath
)) {
4218 if (cli_list(targetcli
, targetpath
, aDIR
| aSYSTEM
| aHIDDEN
,
4219 completion_remote_filter
, (void *)&info
) < 0) {
4223 if (info
.count
== 1) {
4225 * No matches at all, NULL indicates there is nothing
4227 SAFE_FREE(info
.matches
[0]);
4228 SAFE_FREE(info
.matches
);
4233 if (info
.count
== 2) {
4235 * Exactly one match in matches[1], indicate this is the one
4238 info
.matches
[0] = info
.matches
[1];
4239 info
.matches
[1] = NULL
;
4242 return info
.matches
;
4246 * We got more than one possible match, set the result to the maximum
4250 info
.matches
[0] = SMB_STRNDUP(info
.matches
[1], info
.samelen
);
4251 info
.matches
[info
.count
] = NULL
;
4252 return info
.matches
;
4255 for (i
= 0; i
< info
.count
; i
++) {
4256 SAFE_FREE(info
.matches
[i
]);
4258 SAFE_FREE(info
.matches
);
4259 SAFE_FREE(info
.dirmask
);
4264 static char **completion_fn(const char *text
, int start
, int end
)
4266 smb_readline_ca_char(' ');
4269 const char *buf
, *sp
;
4273 buf
= smb_readline_get_line_buffer();
4277 sp
= strchr(buf
, ' ');
4281 for (i
= 0; commands
[i
].name
; i
++) {
4282 if ((strncmp(commands
[i
].name
, buf
, sp
- buf
) == 0) &&
4283 (commands
[i
].name
[sp
- buf
] == 0)) {
4287 if (commands
[i
].name
== NULL
)
4293 if (sp
== (buf
+ start
))
4294 compl_type
= commands
[i
].compl_args
[0];
4296 compl_type
= commands
[i
].compl_args
[1];
4298 if (compl_type
== COMPL_REMOTE
)
4299 return remote_completion(text
, end
- start
);
4300 else /* fall back to local filename completion */
4304 int i
, len
, samelen
= 0, count
=1;
4306 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
4313 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
4314 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
4315 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
4316 if (!matches
[count
])
4319 samelen
= strlen(matches
[count
]);
4321 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
4328 case 0: /* should never happen */
4332 matches
[0] = SMB_STRDUP(matches
[1]);
4335 matches
[0] = (char *)SMB_MALLOC(samelen
+1);
4338 strncpy(matches
[0], matches
[1], samelen
);
4339 matches
[0][samelen
] = 0;
4341 matches
[count
] = NULL
;
4345 for (i
= 0; i
< count
; i
++)
4353 static bool finished
;
4355 /****************************************************************************
4356 Make sure we swallow keepalives during idle time.
4357 ****************************************************************************/
4359 static void readline_callback(void)
4362 struct timeval timeout
;
4363 static time_t last_t
;
4379 FD_SET(cli
->fd
,&fds
);
4382 timeout
.tv_usec
= 0;
4383 sys_select_intr(cli
->fd
+1,&fds
,NULL
,NULL
,&timeout
);
4385 /* We deliberately use receive_smb_raw instead of
4386 client_receive_smb as we want to receive
4387 session keepalives and then drop them here.
4389 if (FD_ISSET(cli
->fd
,&fds
)) {
4393 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_OK
);
4395 status
= receive_smb_raw(cli
->fd
, cli
->inbuf
, cli
->bufsize
, 0, 0, &len
);
4397 if (!NT_STATUS_IS_OK(status
)) {
4398 DEBUG(0, ("Read from server failed, maybe it closed "
4399 "the connection\n"));
4402 smb_readline_done();
4403 if (NT_STATUS_EQUAL(status
, NT_STATUS_END_OF_FILE
)) {
4404 set_smb_read_error(&cli
->smb_rw_error
,
4409 if (NT_STATUS_EQUAL(status
, NT_STATUS_IO_TIMEOUT
)) {
4410 set_smb_read_error(&cli
->smb_rw_error
,
4415 set_smb_read_error(&cli
->smb_rw_error
, SMB_READ_ERROR
);
4418 if(CVAL(cli
->inbuf
,0) != SMBkeepalive
) {
4419 DEBUG(0, ("Read from server "
4420 "returned unexpected packet!\n"));
4427 /* Ping the server to keep the connection alive using SMBecho. */
4430 unsigned char garbage
[16];
4431 memset(garbage
, 0xf0, sizeof(garbage
));
4432 status
= cli_echo(cli
, 1, data_blob_const(garbage
, sizeof(garbage
)));
4434 if (!NT_STATUS_IS_OK(status
)) {
4435 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4436 "the connection\n"));
4438 smb_readline_done();
4443 /****************************************************************************
4444 Process commands on stdin.
4445 ****************************************************************************/
4447 static int process_stdin(void)
4452 TALLOC_CTX
*frame
= talloc_stackframe();
4454 char *the_prompt
= NULL
;
4458 /* display a prompt */
4459 if (asprintf(&the_prompt
, "smb: %s> ", client_get_cur_dir()) < 0) {
4463 line
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
4464 SAFE_FREE(the_prompt
);
4470 /* special case - first char is ! */
4472 if (system(line
+ 1) == -1) {
4473 d_printf("system() command %s failed.\n",
4481 /* and get the first part of the command */
4483 if (!next_token_talloc(frame
, &cmd_ptr
,&tok
,NULL
)) {
4489 if ((i
= process_tok(tok
)) >= 0) {
4490 rc
= commands
[i
].fn();
4491 } else if (i
== -2) {
4492 d_printf("%s: command abbreviation ambiguous\n",tok
);
4494 d_printf("%s: command not found\n",tok
);
4502 /****************************************************************************
4503 Process commands from the client.
4504 ****************************************************************************/
4506 static int process(const char *base_directory
)
4510 cli
= cli_cm_open(talloc_tos(), NULL
,
4511 desthost
, service
, true, smb_encrypt
);
4516 if (base_directory
&& *base_directory
) {
4517 rc
= do_cd(base_directory
);
4525 rc
= process_command_string(cmdstr
);
4534 /****************************************************************************
4536 ****************************************************************************/
4538 static int do_host_query(const char *query_host
)
4540 struct sockaddr_storage ss
;
4542 cli
= cli_cm_open(talloc_tos(), NULL
,
4543 query_host
, "IPC$", true, smb_encrypt
);
4549 if (interpret_string_addr(&ss
, query_host
, 0) && (ss
.ss_family
!= AF_INET
)) {
4550 d_printf("%s is an IPv6 address -- no workgroup available\n",
4557 /* Workgroups simply don't make sense over anything
4558 else but port 139... */
4561 cli_cm_set_port( 139 );
4562 cli
= cli_cm_open(talloc_tos(), NULL
,
4563 query_host
, "IPC$", true, smb_encrypt
);
4567 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4571 list_servers(lp_workgroup());
4578 /****************************************************************************
4579 Handle a tar operation.
4580 ****************************************************************************/
4582 static int do_tar_op(const char *base_directory
)
4586 /* do we already have a connection? */
4588 cli
= cli_cm_open(talloc_tos(), NULL
,
4589 desthost
, service
, true, smb_encrypt
);
4596 if (base_directory
&& *base_directory
) {
4597 ret
= do_cd(base_directory
);
4611 /****************************************************************************
4612 Handle a message operation.
4613 ****************************************************************************/
4615 static int do_message_op(struct user_auth_info
*auth_info
)
4617 struct sockaddr_storage ss
;
4618 struct nmb_name called
, calling
;
4619 fstring server_name
;
4620 char name_type_hex
[10];
4624 make_nmb_name(&calling
, calling_name
, 0x0);
4625 make_nmb_name(&called
, desthost
, name_type
);
4627 fstrcpy(server_name
, desthost
);
4628 snprintf(name_type_hex
, sizeof(name_type_hex
), "#%X", name_type
);
4629 fstrcat(server_name
, name_type_hex
);
4635 /* we can only do messages over port 139 (to windows clients at least) */
4637 msg_port
= port
? port
: 139;
4639 if (!(cli
=cli_initialise()) || (cli_set_port(cli
, msg_port
) != msg_port
)) {
4640 d_printf("Connection to %s failed\n", desthost
);
4644 status
= cli_connect(cli
, server_name
, &ss
);
4645 if (!NT_STATUS_IS_OK(status
)) {
4646 d_printf("Connection to %s failed. Error %s\n", desthost
, nt_errstr(status
));
4650 if (!cli_session_request(cli
, &calling
, &called
)) {
4651 d_printf("session request failed\n");
4656 send_message(get_cmdline_auth_info_username(auth_info
));
4662 /****************************************************************************
4664 ****************************************************************************/
4666 int main(int argc
,char *argv
[])
4668 char *base_directory
= NULL
;
4670 char *query_host
= NULL
;
4671 bool message
= false;
4672 char *term_code
= NULL
;
4673 static const char *new_name_resolve_order
= NULL
;
4677 fstring new_workgroup
;
4678 bool tar_opt
= false;
4679 bool service_opt
= false;
4680 struct poptOption long_options
[] = {
4683 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4684 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
4685 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
4686 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
4687 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
4688 { "terminal", 't', POPT_ARG_STRING
, NULL
, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4689 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
4690 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4691 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
4692 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
4693 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
4694 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
4695 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
4696 { "browse", 'B', POPT_ARG_NONE
, NULL
, 'B', "Browse SMB servers using DNS" },
4698 POPT_COMMON_CONNECTION
4699 POPT_COMMON_CREDENTIALS
4702 TALLOC_CTX
*frame
= talloc_stackframe();
4703 struct user_auth_info
*auth_info
;
4705 if (!client_set_cur_dir("\\")) {
4710 term_code
= talloc_strdup(frame
,KANJI
);
4712 term_code
= talloc_strdup(frame
,"");
4718 /* initialize the workgroup name so we can determine whether or
4719 not it was set by a command line option */
4721 set_global_myworkgroup( "" );
4722 set_global_myname( "" );
4724 /* set default debug level to 1 regardless of what smb.conf sets */
4725 setup_logging( "smbclient", true );
4726 DEBUGLEVEL_CLASS
[DBGC_ALL
] = 1;
4727 if ((dbf
= x_fdup(x_stderr
))) {
4728 x_setbuf( dbf
, NULL
);
4733 auth_info
= user_auth_info_init(frame
);
4734 if (auth_info
== NULL
) {
4737 popt_common_set_auth_info(auth_info
);
4740 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
4741 poptSetOtherOptionHelp(pc
, "service <password>");
4743 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4745 while ((opt
= poptGetNextOpt(pc
)) != -1) {
4747 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4748 /* I see no other way to keep things sane --SSS */
4749 if (tar_opt
== true) {
4750 while (poptPeekArg(pc
)) {
4756 /* if the service has not yet been specified lets see if it is available in the popt stack */
4757 if (!service_opt
&& poptPeekArg(pc
)) {
4758 service
= talloc_strdup(frame
, poptGetArg(pc
));
4765 /* if the service has already been retrieved then check if we have also a password */
4767 && (!get_cmdline_auth_info_got_pass(auth_info
))
4768 && poptPeekArg(pc
)) {
4769 set_cmdline_auth_info_password(auth_info
,
4775 /* Messages are sent to NetBIOS name type 0x3
4776 * (Messenger Service). Make sure we default
4777 * to port 139 instead of port 445. srl,crh
4780 cli_cm_set_dest_name_type( name_type
);
4781 desthost
= talloc_strdup(frame
,poptGetOptArg(pc
));
4786 cli_cm_set_port( 139 );
4791 if (!interpret_string_addr(&dest_ss
, poptGetOptArg(pc
), 0)) {
4796 cli_cm_set_dest_ss(&dest_ss
);
4804 display_set_stderr();
4808 query_host
= talloc_strdup(frame
, poptGetOptArg(pc
));
4814 term_code
= talloc_strdup(frame
,poptGetOptArg(pc
));
4820 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
4823 /* We must use old option processing for this. Find the
4824 * position of the -T option in the raw argv[]. */
4827 for (i
= 1; i
< argc
; i
++) {
4828 if (strncmp("-T", argv
[i
],2)==0)
4832 if (!tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
)) {
4833 poptPrintUsage(pc
, stderr
, 0);
4837 /* this must be the last option, mark we have parsed it so that we know we have */
4841 base_directory
= talloc_strdup(frame
, poptGetOptArg(pc
));
4842 if (!base_directory
) {
4853 return(do_smb_browse());
4858 /* We may still have some leftovers after the last popt option has been called */
4859 if (tar_opt
== true) {
4860 while (poptPeekArg(pc
)) {
4866 /* if the service has not yet been specified lets see if it is available in the popt stack */
4867 if (!service_opt
&& poptPeekArg(pc
)) {
4868 service
= talloc_strdup(frame
,poptGetArg(pc
));
4875 /* if the service has already been retrieved then check if we have also a password */
4877 && !get_cmdline_auth_info_got_pass(auth_info
)
4878 && poptPeekArg(pc
)) {
4879 set_cmdline_auth_info_password(auth_info
,
4883 /* check for the -P option */
4886 cli_cm_set_port( port
);
4889 * Don't load debug level from smb.conf. It should be
4890 * set by cmdline arg or remain default (0)
4892 AllowDebugChange
= false;
4894 /* save the workgroup...
4896 FIXME!! do we need to do this for other options as well
4897 (or maybe a generic way to keep lp_load() from overwriting
4900 fstrcpy( new_workgroup
, lp_workgroup() );
4901 calling_name
= talloc_strdup(frame
, global_myname() );
4902 if (!calling_name
) {
4906 if ( override_logfile
)
4907 setup_logging( lp_logfile(), false );
4909 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4910 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
4911 argv
[0], get_dyn_CONFIGFILE());
4914 if (get_cmdline_auth_info_use_machine_account(auth_info
) &&
4915 !set_cmdline_auth_info_machine_account_creds(auth_info
)) {
4921 if (service_opt
&& service
) {
4924 /* Convert any '/' characters in the service name to '\' characters */
4925 string_replace(service
, '/','\\');
4926 if (count_chars(service
,'\\') < 3) {
4927 d_printf("\n%s: Not enough '\\' characters in service\n",service
);
4928 poptPrintUsage(pc
, stderr
, 0);
4931 /* Remove trailing slashes */
4932 len
= strlen(service
);
4933 while(len
> 0 && service
[len
- 1] == '\\') {
4935 service
[len
] = '\0';
4939 if ( strlen(new_workgroup
) != 0 ) {
4940 set_global_myworkgroup( new_workgroup
);
4943 if ( strlen(calling_name
) != 0 ) {
4944 set_global_myname( calling_name
);
4946 TALLOC_FREE(calling_name
);
4947 calling_name
= talloc_strdup(frame
, global_myname() );
4950 smb_encrypt
= get_cmdline_auth_info_smb_encrypt(auth_info
);
4951 if (!init_names()) {
4952 fprintf(stderr
, "init_names() failed\n");
4956 if(new_name_resolve_order
)
4957 lp_set_name_resolve_order(new_name_resolve_order
);
4959 if (!tar_type
&& !query_host
&& !service
&& !message
) {
4960 poptPrintUsage(pc
, stderr
, 0);
4964 poptFreeContext(pc
);
4966 /* Store the username and password for dfs support */
4968 cli_cm_set_credentials(auth_info
);
4970 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING
));
4974 process_command_string(cmdstr
);
4975 return do_tar_op(base_directory
);
4978 if (query_host
&& *query_host
) {
4979 char *qhost
= query_host
;
4982 while (*qhost
== '\\' || *qhost
== '/')
4985 if ((slash
= strchr_m(qhost
, '/'))
4986 || (slash
= strchr_m(qhost
, '\\'))) {
4990 if ((p
=strchr_m(qhost
, '#'))) {
4993 sscanf(p
, "%x", &name_type
);
4994 cli_cm_set_dest_name_type( name_type
);
4997 return do_host_query(qhost
);
5001 return do_message_op(auth_info
);
5004 if (process(base_directory
)) {