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-2004
7 Copyright (C) James J Myers 2003 <myersjj@samba.org>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * TODO: remove this ... and don't use talloc_append_string()
26 * NOTE: I'm not changing the code yet, because I assume there're
27 * some bugs in the existing code and I'm not sure how to fix
30 #define TALLOC_DEPRECATED 1
34 #include "libcli/libcli.h"
35 #include "lib/events/events.h"
36 #include "lib/cmdline/popt_common.h"
37 #include "librpc/gen_ndr/ndr_srvsvc_c.h"
38 #include "librpc/gen_ndr/ndr_lsa.h"
39 #include "librpc/gen_ndr/ndr_security.h"
40 #include "libcli/raw/libcliraw.h"
41 #include "libcli/util/clilsa.h"
42 #include "system/dir.h"
43 #include "system/filesys.h"
44 #include "../lib/util/dlinklist.h"
45 #include "system/readline.h"
46 #include "auth/credentials/credentials.h"
47 #include "auth/gensec/gensec.h"
48 #include "system/time.h" /* needed by some systems for asctime() */
49 #include "libcli/resolve/resolve.h"
50 #include "libcli/security/security.h"
51 #include "lib/smbreadline/smbreadline.h"
52 #include "librpc/gen_ndr/ndr_nbt.h"
53 #include "param/param.h"
54 #include "librpc/rpc/dcerpc.h"
55 #include "libcli/raw/raw_proto.h"
57 /* the default pager to use for the client "more" command. Users can
58 * override this with the PAGER environment variable */
60 #define DEFAULT_PAGER "more"
63 struct smbclient_context
{
65 struct smbcli_state
*cli
;
78 static uint64_t get_total_size
= 0;
79 static uint_t get_total_time_ms
= 0;
80 static uint64_t put_total_size
= 0;
81 static uint_t put_total_time_ms
= 0;
83 /* Unfortunately, there is no way to pass the a context to the completion function as an argument */
84 static struct smbclient_context
*rl_ctx
;
87 static double dir_total
;
89 /*******************************************************************
90 Reduce a file name, removing .. elements.
91 ********************************************************************/
92 static void dos_clean_name(char *s
)
96 DEBUG(3,("dos_clean_name [%s]\n",s
));
98 /* remove any double slashes */
99 all_string_sub(s
, "\\\\", "\\", 0);
101 while ((p
= strstr(s
,"\\..\\")) != NULL
) {
103 if ((r
= strrchr(s
,'\\')) != NULL
)
104 memmove(r
,p
+3,strlen(p
+3)+1);
107 trim_string(s
,NULL
,"\\..");
109 all_string_sub(s
, "\\.\\", "\\", 0);
112 /****************************************************************************
113 write to a local file with CR/LF->LF translation if appropriate. return the
114 number taken from the buffer. This may not equal the number written.
115 ****************************************************************************/
116 static int writefile(int f
, const void *_b
, int n
, bool translation
)
118 const uint8_t *b
= (const uint8_t *)_b
;
127 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
130 if (write(f
, b
, 1) != 1) {
140 /****************************************************************************
141 read from a file with LF->CR/LF translation if appropriate. return the
142 number read. read approx n bytes.
143 ****************************************************************************/
144 static int readfile(void *_b
, int n
, XFILE
*f
, bool translation
)
146 uint8_t *b
= (uint8_t *)_b
;
151 return x_fread(b
,1,n
,f
);
154 while (i
< (n
- 1)) {
155 if ((c
= x_getc(f
)) == EOF
) {
159 if (c
== '\n') { /* change all LFs to CR/LF */
170 /****************************************************************************
172 ****************************************************************************/
173 static void send_message(struct smbcli_state
*cli
, const char *desthost
)
179 if (!smbcli_message_start(cli
->tree
, desthost
, cli_credentials_get_username(cmdline_credentials
), &grp_id
)) {
180 d_printf("message start: %s\n", smbcli_errstr(cli
->tree
));
185 d_printf("Connected. Type your message, ending it with a Control-D\n");
187 while (!feof(stdin
) && total_len
< 1600) {
188 int maxlen
= MIN(1600 - total_len
,127);
192 for (l
=0;l
<maxlen
&& (c
=fgetc(stdin
))!=EOF
;l
++) {
198 if (!smbcli_message_text(cli
->tree
, msg
, l
, grp_id
)) {
199 d_printf("SMBsendtxt failed (%s)\n",smbcli_errstr(cli
->tree
));
206 if (total_len
>= 1600)
207 d_printf("the message was truncated to 1600 bytes\n");
209 d_printf("sent %d bytes\n",total_len
);
211 if (!smbcli_message_end(cli
->tree
, grp_id
)) {
212 d_printf("SMBsendend failed (%s)\n",smbcli_errstr(cli
->tree
));
219 /****************************************************************************
220 check the space on a device
221 ****************************************************************************/
222 static int do_dskattr(struct smbclient_context
*ctx
)
225 uint64_t total
, avail
;
227 if (NT_STATUS_IS_ERR(smbcli_dskattr(ctx
->cli
->tree
, &bsize
, &total
, &avail
))) {
228 d_printf("Error in dskattr: %s\n",smbcli_errstr(ctx
->cli
->tree
));
232 d_printf("\n\t\t%llu blocks of size %u. %llu blocks available\n",
233 (unsigned long long)total
,
235 (unsigned long long)avail
);
240 /****************************************************************************
242 ****************************************************************************/
243 static int cmd_pwd(struct smbclient_context
*ctx
, const char **args
)
245 d_printf("Current directory is %s\n", ctx
->remote_cur_dir
);
250 convert a string to dos format
252 static void dos_format(char *s
)
254 string_replace(s
, '/', '\\');
257 /****************************************************************************
258 change directory - inner section
259 ****************************************************************************/
260 static int do_cd(struct smbclient_context
*ctx
, const char *newdir
)
264 /* Save the current directory in case the
265 new directory is invalid */
266 if (newdir
[0] == '\\')
267 dname
= talloc_strdup(NULL
, newdir
);
269 dname
= talloc_asprintf(NULL
, "%s\\%s", ctx
->remote_cur_dir
, newdir
);
273 if (*(dname
+strlen(dname
)-1) != '\\') {
274 dname
= talloc_append_string(NULL
, dname
, "\\");
276 dos_clean_name(dname
);
278 if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx
->cli
->tree
, dname
))) {
279 d_printf("cd %s: %s\n", dname
, smbcli_errstr(ctx
->cli
->tree
));
282 ctx
->remote_cur_dir
= dname
;
288 /****************************************************************************
290 ****************************************************************************/
291 static int cmd_cd(struct smbclient_context
*ctx
, const char **args
)
296 rc
= do_cd(ctx
, args
[1]);
298 d_printf("Current directory is %s\n",ctx
->remote_cur_dir
);
304 static bool mask_match(struct smbcli_state
*c
, const char *string
,
305 const char *pattern
, bool is_case_sensitive
)
310 if (ISDOTDOT(string
))
315 if (is_case_sensitive
)
316 return ms_fnmatch(pattern
, string
,
317 c
->transport
->negotiate
.protocol
) == 0;
319 p2
= strlower_talloc(NULL
, pattern
);
320 s2
= strlower_talloc(NULL
, string
);
321 ret
= ms_fnmatch(p2
, s2
, c
->transport
->negotiate
.protocol
) == 0;
330 /*******************************************************************
331 decide if a file should be operated on
332 ********************************************************************/
333 static bool do_this_one(struct smbclient_context
*ctx
, struct clilist_file_info
*finfo
)
335 if (finfo
->attrib
& FILE_ATTRIBUTE_DIRECTORY
) return(true);
337 if (ctx
->fileselection
&&
338 !mask_match(ctx
->cli
, finfo
->name
,ctx
->fileselection
,false)) {
339 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
343 if (ctx
->newer_than
&& finfo
->mtime
< ctx
->newer_than
) {
344 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
348 if ((ctx
->archive_level
==1 || ctx
->archive_level
==2) && !(finfo
->attrib
& FILE_ATTRIBUTE_ARCHIVE
)) {
349 DEBUG(3,("archive %s failed\n", finfo
->name
));
356 /****************************************************************************
357 display info about a file
358 ****************************************************************************/
359 static void display_finfo(struct smbclient_context
*ctx
, struct clilist_file_info
*finfo
)
361 if (do_this_one(ctx
, finfo
)) {
362 time_t t
= finfo
->mtime
; /* the time is assumed to be passed as GMT */
363 char *astr
= attrib_string(NULL
, finfo
->attrib
);
364 d_printf(" %-30s%7.7s %8.0f %s",
368 asctime(localtime(&t
)));
369 dir_total
+= finfo
->size
;
375 /****************************************************************************
376 accumulate size of a file
377 ****************************************************************************/
378 static void do_du(struct smbclient_context
*ctx
, struct clilist_file_info
*finfo
)
380 if (do_this_one(ctx
, finfo
)) {
381 dir_total
+= finfo
->size
;
385 static bool do_list_recurse
;
386 static bool do_list_dirs
;
387 static char *do_list_queue
= 0;
388 static long do_list_queue_size
= 0;
389 static long do_list_queue_start
= 0;
390 static long do_list_queue_end
= 0;
391 static void (*do_list_fn
)(struct smbclient_context
*, struct clilist_file_info
*);
393 /****************************************************************************
394 functions for do_list_queue
395 ****************************************************************************/
398 * The do_list_queue is a NUL-separated list of strings stored in a
399 * char*. Since this is a FIFO, we keep track of the beginning and
400 * ending locations of the data in the queue. When we overflow, we
401 * double the size of the char*. When the start of the data passes
402 * the midpoint, we move everything back. This is logically more
403 * complex than a linked list, but easier from a memory management
404 * angle. In any memory error condition, do_list_queue is reset.
405 * Functions check to ensure that do_list_queue is non-NULL before
408 static void reset_do_list_queue(void)
410 SAFE_FREE(do_list_queue
);
411 do_list_queue_size
= 0;
412 do_list_queue_start
= 0;
413 do_list_queue_end
= 0;
416 static void init_do_list_queue(void)
418 reset_do_list_queue();
419 do_list_queue_size
= 1024;
420 do_list_queue
= malloc_array_p(char, do_list_queue_size
);
421 if (do_list_queue
== 0) {
422 d_printf("malloc fail for size %d\n",
423 (int)do_list_queue_size
);
424 reset_do_list_queue();
426 memset(do_list_queue
, 0, do_list_queue_size
);
430 static void adjust_do_list_queue(void)
432 if (do_list_queue
== NULL
) return;
435 * If the starting point of the queue is more than half way through,
436 * move everything toward the beginning.
438 if (do_list_queue_start
== do_list_queue_end
)
440 DEBUG(4,("do_list_queue is empty\n"));
441 do_list_queue_start
= do_list_queue_end
= 0;
442 *do_list_queue
= '\0';
444 else if (do_list_queue_start
> (do_list_queue_size
/ 2))
446 DEBUG(4,("sliding do_list_queue backward\n"));
447 memmove(do_list_queue
,
448 do_list_queue
+ do_list_queue_start
,
449 do_list_queue_end
- do_list_queue_start
);
450 do_list_queue_end
-= do_list_queue_start
;
451 do_list_queue_start
= 0;
456 static void add_to_do_list_queue(const char* entry
)
459 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
460 while (new_end
> do_list_queue_size
)
462 do_list_queue_size
*= 2;
463 DEBUG(4,("enlarging do_list_queue to %d\n",
464 (int)do_list_queue_size
));
465 dlq
= realloc_p(do_list_queue
, char, do_list_queue_size
);
467 d_printf("failure enlarging do_list_queue to %d bytes\n",
468 (int)do_list_queue_size
);
469 reset_do_list_queue();
474 memset(do_list_queue
+ do_list_queue_size
/ 2,
475 0, do_list_queue_size
/ 2);
480 safe_strcpy(do_list_queue
+ do_list_queue_end
, entry
,
481 do_list_queue_size
- do_list_queue_end
- 1);
482 do_list_queue_end
= new_end
;
483 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
484 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
488 static char *do_list_queue_head(void)
490 return do_list_queue
+ do_list_queue_start
;
493 static void remove_do_list_queue_head(void)
495 if (do_list_queue_end
> do_list_queue_start
)
497 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
498 adjust_do_list_queue();
499 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
500 (int)do_list_queue_start
, (int)do_list_queue_end
));
504 static int do_list_queue_empty(void)
506 return (! (do_list_queue
&& *do_list_queue
));
509 /****************************************************************************
511 ****************************************************************************/
512 static void do_list_helper(struct clilist_file_info
*f
, const char *mask
, void *state
)
514 struct smbclient_context
*ctx
= (struct smbclient_context
*)state
;
516 if (f
->attrib
& FILE_ATTRIBUTE_DIRECTORY
) {
517 if (do_list_dirs
&& do_this_one(ctx
, f
)) {
520 if (do_list_recurse
&&
522 !ISDOTDOT(f
->name
)) {
526 mask2
= talloc_strdup(NULL
, mask
);
527 p
= strrchr_m(mask2
,'\\');
530 mask2
= talloc_asprintf_append_buffer(mask2
, "%s\\*", f
->name
);
531 add_to_do_list_queue(mask2
);
536 if (do_this_one(ctx
, f
)) {
542 /****************************************************************************
543 a wrapper around smbcli_list that adds recursion
544 ****************************************************************************/
545 static void do_list(struct smbclient_context
*ctx
, const char *mask
,uint16_t attribute
,
546 void (*fn
)(struct smbclient_context
*, struct clilist_file_info
*),bool rec
, bool dirs
)
548 static int in_do_list
= 0;
550 if (in_do_list
&& rec
)
552 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
558 do_list_recurse
= rec
;
564 init_do_list_queue();
565 add_to_do_list_queue(mask
);
567 while (! do_list_queue_empty())
570 * Need to copy head so that it doesn't become
571 * invalid inside the call to smbcli_list. This
572 * would happen if the list were expanded
574 * Fix from E. Jay Berkenbilt (ejb@ql.org)
577 head
= do_list_queue_head();
578 smbcli_list(ctx
->cli
->tree
, head
, attribute
, do_list_helper
, ctx
);
579 remove_do_list_queue_head();
580 if ((! do_list_queue_empty()) && (fn
== display_finfo
))
582 char* next_file
= do_list_queue_head();
584 if ((strlen(next_file
) >= 2) &&
585 (next_file
[strlen(next_file
) - 1] == '*') &&
586 (next_file
[strlen(next_file
) - 2] == '\\'))
588 save_ch
= next_file
+
589 strlen(next_file
) - 2;
592 d_printf("\n%s\n",next_file
);
602 if (smbcli_list(ctx
->cli
->tree
, mask
, attribute
, do_list_helper
, ctx
) == -1)
604 d_printf("%s listing %s\n", smbcli_errstr(ctx
->cli
->tree
), mask
);
609 reset_do_list_queue();
612 /****************************************************************************
613 get a directory listing
614 ****************************************************************************/
615 static int cmd_dir(struct smbclient_context
*ctx
, const char **args
)
617 uint16_t attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
623 mask
= talloc_strdup(ctx
, ctx
->remote_cur_dir
);
624 if(mask
[strlen(mask
)-1]!='\\')
625 mask
= talloc_append_string(ctx
, mask
,"\\");
628 mask
= talloc_strdup(ctx
, args
[1]);
630 mask
= talloc_append_string(ctx
, mask
, "\\");
634 if (ctx
->cli
->tree
->session
->transport
->negotiate
.protocol
<=
636 mask
= talloc_append_string(ctx
, mask
, "*.*");
638 mask
= talloc_append_string(ctx
, mask
, "*");
642 do_list(ctx
, mask
, attribute
, display_finfo
, ctx
->recurse
, true);
644 rc
= do_dskattr(ctx
);
646 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
652 /****************************************************************************
653 get a directory listing
654 ****************************************************************************/
655 static int cmd_du(struct smbclient_context
*ctx
, const char **args
)
657 uint16_t attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
664 if (args
[1][0] == '\\')
665 mask
= talloc_strdup(ctx
, args
[1]);
667 mask
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, args
[1]);
670 mask
= talloc_asprintf(ctx
, "%s\\*", ctx
->remote_cur_dir
);
673 do_list(ctx
, mask
, attribute
, do_du
, ctx
->recurse
, true);
677 rc
= do_dskattr(ctx
);
679 d_printf("Total number of bytes: %.0f\n", dir_total
);
685 /****************************************************************************
686 get a file from rname to lname
687 ****************************************************************************/
688 static int do_get(struct smbclient_context
*ctx
, char *rname
, const char *lname
, bool reget
)
690 int handle
= 0, fnum
;
691 bool newhandle
= false;
693 struct timeval tp_start
;
694 int read_size
= ctx
->io_bufsize
;
701 GetTimeOfDay(&tp_start
);
703 if (ctx
->lowercase
) {
704 strlower(discard_const_p(char, lname
));
707 fnum
= smbcli_open(ctx
->cli
->tree
, rname
, O_RDONLY
, DENY_NONE
);
710 d_printf("%s opening remote file %s\n",smbcli_errstr(ctx
->cli
->tree
),rname
);
714 if(!strcmp(lname
,"-")) {
715 handle
= fileno(stdout
);
718 handle
= open(lname
, O_WRONLY
|O_CREAT
, 0644);
720 start
= lseek(handle
, 0, SEEK_END
);
722 d_printf("Error seeking local file\n");
727 handle
= open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
732 d_printf("Error opening local file %s\n",lname
);
737 if (NT_STATUS_IS_ERR(smbcli_qfileinfo(ctx
->cli
->tree
, fnum
,
738 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
)) &&
739 NT_STATUS_IS_ERR(smbcli_getattrE(ctx
->cli
->tree
, fnum
,
740 &attr
, &size
, NULL
, NULL
, NULL
))) {
741 d_printf("getattrib: %s\n",smbcli_errstr(ctx
->cli
->tree
));
745 DEBUG(2,("getting file %s of size %.0f as %s ",
746 rname
, (double)size
, lname
));
748 if(!(data
= (uint8_t *)malloc(read_size
))) {
749 d_printf("malloc fail for size %d\n", read_size
);
750 smbcli_close(ctx
->cli
->tree
, fnum
);
755 int n
= smbcli_read(ctx
->cli
->tree
, fnum
, data
, nread
+ start
, read_size
);
759 if (writefile(handle
,data
, n
, ctx
->translation
) != n
) {
760 d_printf("Error writing local file\n");
768 if (nread
+ start
< size
) {
769 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
770 rname
, (long)nread
));
777 if (NT_STATUS_IS_ERR(smbcli_close(ctx
->cli
->tree
, fnum
))) {
778 d_printf("Error %s closing remote file\n",smbcli_errstr(ctx
->cli
->tree
));
786 if (ctx
->archive_level
>= 2 && (attr
& FILE_ATTRIBUTE_ARCHIVE
)) {
787 smbcli_setatr(ctx
->cli
->tree
, rname
, attr
& ~(uint16_t)FILE_ATTRIBUTE_ARCHIVE
, 0);
791 struct timeval tp_end
;
794 GetTimeOfDay(&tp_end
);
796 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
797 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
798 get_total_time_ms
+= this_time
;
799 get_total_size
+= nread
;
801 DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
802 nread
/ (1.024*this_time
+ 1.0e-4),
803 get_total_size
/ (1.024*get_total_time_ms
)));
810 /****************************************************************************
812 ****************************************************************************/
813 static int cmd_get(struct smbclient_context
*ctx
, const char **args
)
819 d_printf("get <filename>\n");
823 rname
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, args
[1]);
830 dos_clean_name(rname
);
832 return do_get(ctx
, rname
, lname
, false);
835 /****************************************************************************
836 Put up a yes/no prompt.
837 ****************************************************************************/
838 static bool yesno(char *p
)
843 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
846 if (*ans
== 'y' || *ans
== 'Y')
852 /****************************************************************************
853 do a mget operation on one file
854 ****************************************************************************/
855 static void do_mget(struct smbclient_context
*ctx
, struct clilist_file_info
*finfo
)
862 if (ISDOT(finfo
->name
) || ISDOTDOT(finfo
->name
))
865 if (finfo
->attrib
& FILE_ATTRIBUTE_DIRECTORY
)
866 asprintf(&quest
, "Get directory %s? ",finfo
->name
);
868 asprintf(&quest
, "Get file %s? ",finfo
->name
);
870 if (ctx
->prompt
&& !yesno(quest
)) return;
874 if (!(finfo
->attrib
& FILE_ATTRIBUTE_DIRECTORY
)) {
875 asprintf(&rname
, "%s%s",ctx
->remote_cur_dir
,finfo
->name
);
876 do_get(ctx
, rname
, finfo
->name
, false);
881 /* handle directories */
882 saved_curdir
= talloc_strdup(NULL
, ctx
->remote_cur_dir
);
884 ctx
->remote_cur_dir
= talloc_asprintf_append_buffer(NULL
, "%s\\", finfo
->name
);
886 string_replace(discard_const_p(char, finfo
->name
), '\\', '/');
887 if (ctx
->lowercase
) {
888 strlower(discard_const_p(char, finfo
->name
));
891 if (!directory_exist(finfo
->name
) &&
892 mkdir(finfo
->name
,0777) != 0) {
893 d_printf("failed to create directory %s\n",finfo
->name
);
897 if (chdir(finfo
->name
) != 0) {
898 d_printf("failed to chdir to directory %s\n",finfo
->name
);
902 mget_mask
= talloc_asprintf(NULL
, "%s*", ctx
->remote_cur_dir
);
904 do_list(ctx
, mget_mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,do_mget
,false, true);
906 talloc_free(ctx
->remote_cur_dir
);
908 ctx
->remote_cur_dir
= saved_curdir
;
912 /****************************************************************************
913 view the file using the pager
914 ****************************************************************************/
915 static int cmd_more(struct smbclient_context
*ctx
, const char **args
)
924 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
927 d_printf("failed to create temporary file for more\n");
933 d_printf("more <filename>\n");
937 rname
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
938 dos_clean_name(rname
);
940 rc
= do_get(ctx
, rname
, lname
, false);
942 pager
=getenv("PAGER");
944 pager_cmd
= talloc_asprintf(ctx
, "%s %s",(pager
? pager
:DEFAULT_PAGER
), lname
);
953 /****************************************************************************
955 ****************************************************************************/
956 static int cmd_mget(struct smbclient_context
*ctx
, const char **args
)
958 uint16_t attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
959 char *mget_mask
= NULL
;
963 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
965 for (i
= 1; args
[i
]; i
++) {
966 mget_mask
= talloc_strdup(ctx
,ctx
->remote_cur_dir
);
967 if(mget_mask
[strlen(mget_mask
)-1]!='\\')
968 mget_mask
= talloc_append_string(ctx
, mget_mask
, "\\");
970 mget_mask
= talloc_strdup(ctx
, args
[i
]);
971 if (mget_mask
[0] != '\\')
972 mget_mask
= talloc_append_string(ctx
, mget_mask
, "\\");
973 do_list(ctx
, mget_mask
, attribute
,do_mget
,false,true);
975 talloc_free(mget_mask
);
978 if (mget_mask
== NULL
) {
979 mget_mask
= talloc_asprintf(ctx
, "%s\\*", ctx
->remote_cur_dir
);
980 do_list(ctx
, mget_mask
, attribute
,do_mget
,false,true);
981 talloc_free(mget_mask
);
988 /****************************************************************************
989 make a directory of name "name"
990 ****************************************************************************/
991 static NTSTATUS
do_mkdir(struct smbclient_context
*ctx
, char *name
)
995 if (NT_STATUS_IS_ERR(status
= smbcli_mkdir(ctx
->cli
->tree
, name
))) {
996 d_printf("%s making remote directory %s\n",
997 smbcli_errstr(ctx
->cli
->tree
),name
);
1005 /****************************************************************************
1007 ****************************************************************************/
1008 static int cmd_quit(struct smbclient_context
*ctx
, const char **args
)
1017 /****************************************************************************
1019 ****************************************************************************/
1020 static int cmd_mkdir(struct smbclient_context
*ctx
, const char **args
)
1026 d_printf("mkdir <dirname>\n");
1030 mask
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
,args
[1]);
1033 dos_clean_name(mask
);
1035 trim_string(mask
,".",NULL
);
1036 for (p
= strtok(mask
,"/\\"); p
; p
= strtok(p
, "/\\")) {
1037 char *parent
= talloc_strndup(ctx
, mask
, PTR_DIFF(p
, mask
));
1039 if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx
->cli
->tree
, parent
))) {
1040 do_mkdir(ctx
, parent
);
1043 talloc_free(parent
);
1046 do_mkdir(ctx
, mask
);
1052 /****************************************************************************
1053 show 8.3 name of a file
1054 ****************************************************************************/
1055 static int cmd_altname(struct smbclient_context
*ctx
, const char **args
)
1057 const char *altname
;
1061 d_printf("altname <file>\n");
1065 name
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
1067 if (!NT_STATUS_IS_OK(smbcli_qpathinfo_alt_name(ctx
->cli
->tree
, name
, &altname
))) {
1068 d_printf("%s getting alt name for %s\n",
1069 smbcli_errstr(ctx
->cli
->tree
),name
);
1072 d_printf("%s\n", altname
);
1078 /****************************************************************************
1080 ****************************************************************************/
1081 static int do_put(struct smbclient_context
*ctx
, char *rname
, char *lname
, bool reput
)
1087 uint8_t *buf
= NULL
;
1088 int maxwrite
= ctx
->io_bufsize
;
1091 struct timeval tp_start
;
1092 GetTimeOfDay(&tp_start
);
1095 fnum
= smbcli_open(ctx
->cli
->tree
, rname
, O_RDWR
|O_CREAT
, DENY_NONE
);
1097 if (NT_STATUS_IS_ERR(smbcli_qfileinfo(ctx
->cli
->tree
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
, NULL
, NULL
)) &&
1098 NT_STATUS_IS_ERR(smbcli_getattrE(ctx
->cli
->tree
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
))) {
1099 d_printf("getattrib: %s\n",smbcli_errstr(ctx
->cli
->tree
));
1104 fnum
= smbcli_open(ctx
->cli
->tree
, rname
, O_RDWR
|O_CREAT
|O_TRUNC
,
1109 d_printf("%s opening remote file %s\n",smbcli_errstr(ctx
->cli
->tree
),rname
);
1113 /* allow files to be piped into smbclient
1116 Note that in this case this function will exit(0) rather
1118 if (!strcmp(lname
, "-")) {
1120 /* size of file is not known */
1122 f
= x_fopen(lname
,O_RDONLY
, 0);
1124 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1125 d_printf("Error seeking local file\n");
1132 d_printf("Error opening local file %s\n",lname
);
1137 DEBUG(1,("putting file %s as %s ",lname
,
1140 buf
= (uint8_t *)malloc(maxwrite
);
1142 d_printf("ERROR: Not enough memory!\n");
1145 while (!x_feof(f
)) {
1149 if ((n
= readfile(buf
,n
,f
,ctx
->translation
)) < 1) {
1150 if((n
== 0) && x_feof(f
))
1151 break; /* Empty local file. */
1153 d_printf("Error reading local file: %s\n", strerror(errno
));
1158 ret
= smbcli_write(ctx
->cli
->tree
, fnum
, 0, buf
, nread
+ start
, n
);
1161 d_printf("Error writing file: %s\n", smbcli_errstr(ctx
->cli
->tree
));
1169 if (NT_STATUS_IS_ERR(smbcli_close(ctx
->cli
->tree
, fnum
))) {
1170 d_printf("%s closing remote file %s\n",smbcli_errstr(ctx
->cli
->tree
),rname
);
1184 struct timeval tp_end
;
1187 GetTimeOfDay(&tp_end
);
1189 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1190 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1191 put_total_time_ms
+= this_time
;
1192 put_total_size
+= nread
;
1194 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1195 nread
/ (1.024*this_time
+ 1.0e-4),
1196 put_total_size
/ (1.024*put_total_time_ms
)));
1209 /****************************************************************************
1211 ****************************************************************************/
1212 static int cmd_put(struct smbclient_context
*ctx
, const char **args
)
1218 d_printf("put <filename> [<remotename>]\n");
1222 lname
= talloc_strdup(ctx
, args
[1]);
1225 rname
= talloc_strdup(ctx
, args
[2]);
1227 rname
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, lname
);
1229 dos_clean_name(rname
);
1231 /* allow '-' to represent stdin
1232 jdblair, 24.jun.98 */
1233 if (!file_exist(lname
) && (strcmp(lname
,"-"))) {
1234 d_printf("%s does not exist\n",lname
);
1238 return do_put(ctx
, rname
, lname
, false);
1241 /*************************************
1243 *************************************/
1245 static struct file_list
{
1246 struct file_list
*prev
, *next
;
1251 /****************************************************************************
1252 Free a file_list structure
1253 ****************************************************************************/
1255 static void free_file_list (struct file_list
* list
)
1257 struct file_list
*tmp
;
1262 DLIST_REMOVE(list
, list
);
1263 SAFE_FREE(tmp
->file_path
);
1268 /****************************************************************************
1269 seek in a directory/file list until you get something that doesn't start with
1271 ****************************************************************************/
1272 static bool seek_list(struct file_list
*list
, char *name
)
1275 trim_string(list
->file_path
,"./","\n");
1276 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1285 /****************************************************************************
1286 set the file selection mask
1287 ****************************************************************************/
1288 static int cmd_select(struct smbclient_context
*ctx
, const char **args
)
1290 talloc_free(ctx
->fileselection
);
1291 ctx
->fileselection
= talloc_strdup(NULL
, args
[1]);
1296 /*******************************************************************
1297 A readdir wrapper which just returns the file name.
1298 ********************************************************************/
1299 static const char *readdirname(DIR *p
)
1307 ptr
= (struct dirent
*)readdir(p
);
1311 dname
= ptr
->d_name
;
1318 #ifdef HAVE_BROKEN_READDIR
1319 /* using /usr/ucb/cc is BAD */
1325 int len
= NAMLEN(ptr
);
1326 buf
= talloc_strndup(NULL
, dname
, len
);
1333 /****************************************************************************
1334 Recursive file matching function act as find
1335 match must be always set to true when calling this function
1336 ****************************************************************************/
1337 static int file_find(struct smbclient_context
*ctx
, struct file_list
**list
, const char *directory
,
1338 const char *expression
, bool match
)
1341 struct file_list
*entry
;
1342 struct stat statbuf
;
1348 dir
= opendir(directory
);
1349 if (!dir
) return -1;
1351 while ((dname
= readdirname(dir
))) {
1352 if (ISDOT(dname
) || ISDOTDOT(dname
)) {
1356 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1361 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1363 ret
= stat(path
, &statbuf
);
1365 if (S_ISDIR(statbuf
.st_mode
)) {
1367 ret
= file_find(ctx
, list
, path
, expression
, false);
1370 d_printf("file_find: cannot stat file %s\n", path
);
1379 entry
= malloc_p(struct file_list
);
1381 d_printf("Out of memory in file_find\n");
1385 entry
->file_path
= path
;
1386 entry
->isdir
= isdir
;
1387 DLIST_ADD(*list
, entry
);
1397 /****************************************************************************
1399 ****************************************************************************/
1400 static int cmd_mput(struct smbclient_context
*ctx
, const char **args
)
1404 for (i
= 1; args
[i
]; i
++) {
1406 struct file_list
*temp_list
;
1407 char *quest
, *lname
, *rname
;
1409 printf("%s\n", args
[i
]);
1413 ret
= file_find(ctx
, &file_list
, ".", args
[i
], true);
1415 free_file_list(file_list
);
1423 for (temp_list
= file_list
; temp_list
;
1424 temp_list
= temp_list
->next
) {
1427 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0)
1429 trim_string(lname
, "./", "/");
1431 /* check if it's a directory */
1432 if (temp_list
->isdir
) {
1433 /* if (!recurse) continue; */
1436 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) break;
1437 if (ctx
->prompt
&& !yesno(quest
)) { /* No */
1438 /* Skip the directory */
1439 lname
[strlen(lname
)-1] = '/';
1440 if (!seek_list(temp_list
, lname
))
1444 if(asprintf(&rname
, "%s%s", ctx
->remote_cur_dir
, lname
) < 0) break;
1446 if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx
->cli
->tree
, rname
)) &&
1447 NT_STATUS_IS_ERR(do_mkdir(ctx
, rname
))) {
1448 DEBUG (0, ("Unable to make dir, skipping..."));
1449 /* Skip the directory */
1450 lname
[strlen(lname
)-1] = '/';
1451 if (!seek_list(temp_list
, lname
))
1458 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) break;
1459 if (ctx
->prompt
&& !yesno(quest
)) /* No */
1464 if (asprintf(&rname
, "%s%s", ctx
->remote_cur_dir
, lname
) < 0) break;
1469 do_put(ctx
, rname
, lname
, false);
1471 free_file_list(file_list
);
1481 /****************************************************************************
1483 ****************************************************************************/
1484 static int cmd_print(struct smbclient_context
*ctx
, const char **args
)
1486 char *lname
, *rname
;
1490 d_printf("print <filename>\n");
1494 lname
= talloc_strdup(ctx
, args
[1]);
1496 rname
= talloc_strdup(ctx
, lname
);
1497 p
= strrchr_m(rname
,'/');
1499 slprintf(rname
, sizeof(rname
)-1, "%s-%d", p
+1, (int)getpid());
1502 if (strequal(lname
,"-")) {
1503 slprintf(rname
, sizeof(rname
)-1, "stdin-%d", (int)getpid());
1506 return do_put(ctx
, rname
, lname
, false);
1510 static int cmd_rewrite(struct smbclient_context
*ctx
, const char **args
)
1512 d_printf("REWRITE: command not implemented (FIXME!)\n");
1517 /****************************************************************************
1519 ****************************************************************************/
1520 static int cmd_del(struct smbclient_context
*ctx
, const char **args
)
1523 uint16_t attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
1526 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
1529 d_printf("del <filename>\n");
1532 mask
= talloc_asprintf(ctx
,"%s%s", ctx
->remote_cur_dir
, args
[1]);
1534 if (NT_STATUS_IS_ERR(smbcli_unlink(ctx
->cli
->tree
, mask
))) {
1535 d_printf("%s deleting remote file %s\n",smbcli_errstr(ctx
->cli
->tree
),mask
);
1542 /****************************************************************************
1543 delete a whole directory tree
1544 ****************************************************************************/
1545 static int cmd_deltree(struct smbclient_context
*ctx
, const char **args
)
1551 d_printf("deltree <dirname>\n");
1555 dname
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
1557 ret
= smbcli_deltree(ctx
->cli
->tree
, dname
);
1560 printf("Failed to delete tree %s - %s\n", dname
, smbcli_errstr(ctx
->cli
->tree
));
1564 printf("Deleted %d files in %s\n", ret
, dname
);
1570 const char *level_name
;
1571 enum smb_fsinfo_level level
;
1574 fsinfo_level_t fsinfo_levels
[] = {
1575 {"dskattr", RAW_QFS_DSKATTR
},
1576 {"allocation", RAW_QFS_ALLOCATION
},
1577 {"volume", RAW_QFS_VOLUME
},
1578 {"volumeinfo", RAW_QFS_VOLUME_INFO
},
1579 {"sizeinfo", RAW_QFS_SIZE_INFO
},
1580 {"deviceinfo", RAW_QFS_DEVICE_INFO
},
1581 {"attributeinfo", RAW_QFS_ATTRIBUTE_INFO
},
1582 {"unixinfo", RAW_QFS_UNIX_INFO
},
1583 {"volume-information", RAW_QFS_VOLUME_INFORMATION
},
1584 {"size-information", RAW_QFS_SIZE_INFORMATION
},
1585 {"device-information", RAW_QFS_DEVICE_INFORMATION
},
1586 {"attribute-information", RAW_QFS_ATTRIBUTE_INFORMATION
},
1587 {"quota-information", RAW_QFS_QUOTA_INFORMATION
},
1588 {"fullsize-information", RAW_QFS_FULL_SIZE_INFORMATION
},
1589 {"objectid", RAW_QFS_OBJECTID_INFORMATION
},
1590 {NULL
, RAW_QFS_GENERIC
}
1594 static int cmd_fsinfo(struct smbclient_context
*ctx
, const char **args
)
1596 union smb_fsinfo fsinfo
;
1598 fsinfo_level_t
*fsinfo_level
;
1601 d_printf("fsinfo <level>, where level is one of following:\n");
1602 fsinfo_level
= fsinfo_levels
;
1603 while(fsinfo_level
->level_name
) {
1604 d_printf("%s\n", fsinfo_level
->level_name
);
1610 fsinfo_level
= fsinfo_levels
;
1611 while(fsinfo_level
->level_name
&& !strequal(args
[1],fsinfo_level
->level_name
)) {
1615 if (!fsinfo_level
->level_name
) {
1616 d_printf("wrong level name!\n");
1620 fsinfo
.generic
.level
= fsinfo_level
->level
;
1621 status
= smb_raw_fsinfo(ctx
->cli
->tree
, ctx
, &fsinfo
);
1622 if (!NT_STATUS_IS_OK(status
)) {
1623 d_printf("fsinfo-level-%s - %s\n", fsinfo_level
->level_name
, nt_errstr(status
));
1627 d_printf("fsinfo-level-%s:\n", fsinfo_level
->level_name
);
1628 switch(fsinfo
.generic
.level
) {
1629 case RAW_QFS_DSKATTR
:
1630 d_printf("\tunits_total: %hu\n",
1631 (unsigned short) fsinfo
.dskattr
.out
.units_total
);
1632 d_printf("\tblocks_per_unit: %hu\n",
1633 (unsigned short) fsinfo
.dskattr
.out
.blocks_per_unit
);
1634 d_printf("\tblocks_size: %hu\n",
1635 (unsigned short) fsinfo
.dskattr
.out
.block_size
);
1636 d_printf("\tunits_free: %hu\n",
1637 (unsigned short) fsinfo
.dskattr
.out
.units_free
);
1639 case RAW_QFS_ALLOCATION
:
1640 d_printf("\tfs_id: %lu\n",
1641 (unsigned long) fsinfo
.allocation
.out
.fs_id
);
1642 d_printf("\tsectors_per_unit: %lu\n",
1643 (unsigned long) fsinfo
.allocation
.out
.sectors_per_unit
);
1644 d_printf("\ttotal_alloc_units: %lu\n",
1645 (unsigned long) fsinfo
.allocation
.out
.total_alloc_units
);
1646 d_printf("\tavail_alloc_units: %lu\n",
1647 (unsigned long) fsinfo
.allocation
.out
.avail_alloc_units
);
1648 d_printf("\tbytes_per_sector: %hu\n",
1649 (unsigned short) fsinfo
.allocation
.out
.bytes_per_sector
);
1651 case RAW_QFS_VOLUME
:
1652 d_printf("\tserial_number: %lu\n",
1653 (unsigned long) fsinfo
.volume
.out
.serial_number
);
1654 d_printf("\tvolume_name: %s\n", fsinfo
.volume
.out
.volume_name
.s
);
1656 case RAW_QFS_VOLUME_INFO
:
1657 case RAW_QFS_VOLUME_INFORMATION
:
1658 d_printf("\tcreate_time: %s\n",
1659 nt_time_string(ctx
,fsinfo
.volume_info
.out
.create_time
));
1660 d_printf("\tserial_number: %lu\n",
1661 (unsigned long) fsinfo
.volume_info
.out
.serial_number
);
1662 d_printf("\tvolume_name: %s\n", fsinfo
.volume_info
.out
.volume_name
.s
);
1664 case RAW_QFS_SIZE_INFO
:
1665 case RAW_QFS_SIZE_INFORMATION
:
1666 d_printf("\ttotal_alloc_units: %llu\n",
1667 (unsigned long long) fsinfo
.size_info
.out
.total_alloc_units
);
1668 d_printf("\tavail_alloc_units: %llu\n",
1669 (unsigned long long) fsinfo
.size_info
.out
.avail_alloc_units
);
1670 d_printf("\tsectors_per_unit: %lu\n",
1671 (unsigned long) fsinfo
.size_info
.out
.sectors_per_unit
);
1672 d_printf("\tbytes_per_sector: %lu\n",
1673 (unsigned long) fsinfo
.size_info
.out
.bytes_per_sector
);
1675 case RAW_QFS_DEVICE_INFO
:
1676 case RAW_QFS_DEVICE_INFORMATION
:
1677 d_printf("\tdevice_type: %lu\n",
1678 (unsigned long) fsinfo
.device_info
.out
.device_type
);
1679 d_printf("\tcharacteristics: 0x%lx\n",
1680 (unsigned long) fsinfo
.device_info
.out
.characteristics
);
1682 case RAW_QFS_ATTRIBUTE_INFORMATION
:
1683 case RAW_QFS_ATTRIBUTE_INFO
:
1684 d_printf("\tfs_attr: 0x%lx\n",
1685 (unsigned long) fsinfo
.attribute_info
.out
.fs_attr
);
1686 d_printf("\tmax_file_component_length: %lu\n",
1687 (unsigned long) fsinfo
.attribute_info
.out
.max_file_component_length
);
1688 d_printf("\tfs_type: %s\n", fsinfo
.attribute_info
.out
.fs_type
.s
);
1690 case RAW_QFS_UNIX_INFO
:
1691 d_printf("\tmajor_version: %hu\n",
1692 (unsigned short) fsinfo
.unix_info
.out
.major_version
);
1693 d_printf("\tminor_version: %hu\n",
1694 (unsigned short) fsinfo
.unix_info
.out
.minor_version
);
1695 d_printf("\tcapability: 0x%llx\n",
1696 (unsigned long long) fsinfo
.unix_info
.out
.capability
);
1698 case RAW_QFS_QUOTA_INFORMATION
:
1699 d_printf("\tunknown[3]: [%llu,%llu,%llu]\n",
1700 (unsigned long long) fsinfo
.quota_information
.out
.unknown
[0],
1701 (unsigned long long) fsinfo
.quota_information
.out
.unknown
[1],
1702 (unsigned long long) fsinfo
.quota_information
.out
.unknown
[2]);
1703 d_printf("\tquota_soft: %llu\n",
1704 (unsigned long long) fsinfo
.quota_information
.out
.quota_soft
);
1705 d_printf("\tquota_hard: %llu\n",
1706 (unsigned long long) fsinfo
.quota_information
.out
.quota_hard
);
1707 d_printf("\tquota_flags: 0x%llx\n",
1708 (unsigned long long) fsinfo
.quota_information
.out
.quota_flags
);
1710 case RAW_QFS_FULL_SIZE_INFORMATION
:
1711 d_printf("\ttotal_alloc_units: %llu\n",
1712 (unsigned long long) fsinfo
.full_size_information
.out
.total_alloc_units
);
1713 d_printf("\tcall_avail_alloc_units: %llu\n",
1714 (unsigned long long) fsinfo
.full_size_information
.out
.call_avail_alloc_units
);
1715 d_printf("\tactual_avail_alloc_units: %llu\n",
1716 (unsigned long long) fsinfo
.full_size_information
.out
.actual_avail_alloc_units
);
1717 d_printf("\tsectors_per_unit: %lu\n",
1718 (unsigned long) fsinfo
.full_size_information
.out
.sectors_per_unit
);
1719 d_printf("\tbytes_per_sector: %lu\n",
1720 (unsigned long) fsinfo
.full_size_information
.out
.bytes_per_sector
);
1722 case RAW_QFS_OBJECTID_INFORMATION
:
1723 d_printf("\tGUID: %s\n",
1724 GUID_string(ctx
,&fsinfo
.objectid_information
.out
.guid
));
1725 d_printf("\tunknown[6]: [%llu,%llu,%llu,%llu,%llu,%llu]\n",
1726 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[0],
1727 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[1],
1728 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[2],
1729 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[3],
1730 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[4],
1731 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[5] );
1733 case RAW_QFS_GENERIC
:
1734 d_printf("\twrong level returned\n");
1741 /****************************************************************************
1742 show as much information as possible about a file
1743 ****************************************************************************/
1744 static int cmd_allinfo(struct smbclient_context
*ctx
, const char **args
)
1747 union smb_fileinfo finfo
;
1752 d_printf("allinfo <filename>\n");
1755 fname
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
1757 /* first a ALL_INFO QPATHINFO */
1758 finfo
.generic
.level
= RAW_FILEINFO_ALL_INFO
;
1759 finfo
.generic
.in
.file
.path
= fname
;
1760 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1761 if (!NT_STATUS_IS_OK(status
)) {
1762 d_printf("%s - %s\n", fname
, nt_errstr(status
));
1766 d_printf("\tcreate_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.create_time
));
1767 d_printf("\taccess_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.access_time
));
1768 d_printf("\twrite_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.write_time
));
1769 d_printf("\tchange_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.change_time
));
1770 d_printf("\tattrib: 0x%x\n", finfo
.all_info
.out
.attrib
);
1771 d_printf("\talloc_size: %lu\n", (unsigned long)finfo
.all_info
.out
.alloc_size
);
1772 d_printf("\tsize: %lu\n", (unsigned long)finfo
.all_info
.out
.size
);
1773 d_printf("\tnlink: %u\n", finfo
.all_info
.out
.nlink
);
1774 d_printf("\tdelete_pending: %u\n", finfo
.all_info
.out
.delete_pending
);
1775 d_printf("\tdirectory: %u\n", finfo
.all_info
.out
.directory
);
1776 d_printf("\tea_size: %u\n", finfo
.all_info
.out
.ea_size
);
1777 d_printf("\tfname: '%s'\n", finfo
.all_info
.out
.fname
.s
);
1779 /* 8.3 name if any */
1780 finfo
.generic
.level
= RAW_FILEINFO_ALT_NAME_INFO
;
1781 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1782 if (NT_STATUS_IS_OK(status
)) {
1783 d_printf("\talt_name: %s\n", finfo
.alt_name_info
.out
.fname
.s
);
1786 /* file_id if available */
1787 finfo
.generic
.level
= RAW_FILEINFO_INTERNAL_INFORMATION
;
1788 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1789 if (NT_STATUS_IS_OK(status
)) {
1790 d_printf("\tfile_id %.0f\n",
1791 (double)finfo
.internal_information
.out
.file_id
);
1794 /* the EAs, if any */
1795 finfo
.generic
.level
= RAW_FILEINFO_ALL_EAS
;
1796 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1797 if (NT_STATUS_IS_OK(status
)) {
1799 for (i
=0;i
<finfo
.all_eas
.out
.num_eas
;i
++) {
1800 d_printf("\tEA[%d] flags=%d len=%d '%s'\n", i
,
1801 finfo
.all_eas
.out
.eas
[i
].flags
,
1802 (int)finfo
.all_eas
.out
.eas
[i
].value
.length
,
1803 finfo
.all_eas
.out
.eas
[i
].name
.s
);
1807 /* streams, if available */
1808 finfo
.generic
.level
= RAW_FILEINFO_STREAM_INFO
;
1809 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1810 if (NT_STATUS_IS_OK(status
)) {
1812 for (i
=0;i
<finfo
.stream_info
.out
.num_streams
;i
++) {
1813 d_printf("\tstream %d:\n", i
);
1814 d_printf("\t\tsize %ld\n",
1815 (long)finfo
.stream_info
.out
.streams
[i
].size
);
1816 d_printf("\t\talloc size %ld\n",
1817 (long)finfo
.stream_info
.out
.streams
[i
].alloc_size
);
1818 d_printf("\t\tname %s\n", finfo
.stream_info
.out
.streams
[i
].stream_name
.s
);
1822 /* dev/inode if available */
1823 finfo
.generic
.level
= RAW_FILEINFO_COMPRESSION_INFORMATION
;
1824 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1825 if (NT_STATUS_IS_OK(status
)) {
1826 d_printf("\tcompressed size %ld\n", (long)finfo
.compression_info
.out
.compressed_size
);
1827 d_printf("\tformat %ld\n", (long)finfo
.compression_info
.out
.format
);
1828 d_printf("\tunit_shift %ld\n", (long)finfo
.compression_info
.out
.unit_shift
);
1829 d_printf("\tchunk_shift %ld\n", (long)finfo
.compression_info
.out
.chunk_shift
);
1830 d_printf("\tcluster_shift %ld\n", (long)finfo
.compression_info
.out
.cluster_shift
);
1833 /* shadow copies if available */
1834 fnum
= smbcli_open(ctx
->cli
->tree
, fname
, O_RDONLY
, DENY_NONE
);
1836 struct smb_shadow_copy info
;
1838 info
.in
.file
.fnum
= fnum
;
1839 info
.in
.max_data
= ~0;
1840 status
= smb_raw_shadow_data(ctx
->cli
->tree
, ctx
, &info
);
1841 if (NT_STATUS_IS_OK(status
)) {
1842 d_printf("\tshadow_copy: %u volumes %u names\n",
1843 info
.out
.num_volumes
, info
.out
.num_names
);
1844 for (i
=0;i
<info
.out
.num_names
;i
++) {
1845 d_printf("\t%s\n", info
.out
.names
[i
]);
1846 finfo
.generic
.level
= RAW_FILEINFO_ALL_INFO
;
1847 finfo
.generic
.in
.file
.path
= talloc_asprintf(ctx
, "%s%s",
1848 info
.out
.names
[i
], fname
);
1849 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1850 if (NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_PATH_NOT_FOUND
) ||
1851 NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
1854 if (!NT_STATUS_IS_OK(status
)) {
1855 d_printf("%s - %s\n", finfo
.generic
.in
.file
.path
,
1860 d_printf("\t\tcreate_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.create_time
));
1861 d_printf("\t\twrite_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.write_time
));
1862 d_printf("\t\tchange_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.change_time
));
1863 d_printf("\t\tsize: %lu\n", (unsigned long)finfo
.all_info
.out
.size
);
1872 /****************************************************************************
1874 ****************************************************************************/
1875 static int cmd_eainfo(struct smbclient_context
*ctx
, const char **args
)
1878 union smb_fileinfo finfo
;
1883 d_printf("eainfo <filename>\n");
1886 fname
= talloc_strdup(ctx
, args
[1]);
1888 finfo
.generic
.level
= RAW_FILEINFO_ALL_EAS
;
1889 finfo
.generic
.in
.file
.path
= fname
;
1890 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1892 if (!NT_STATUS_IS_OK(status
)) {
1893 d_printf("RAW_FILEINFO_ALL_EAS - %s\n", nt_errstr(status
));
1897 d_printf("%s has %d EAs\n", fname
, finfo
.all_eas
.out
.num_eas
);
1899 for (i
=0;i
<finfo
.all_eas
.out
.num_eas
;i
++) {
1900 d_printf("\tEA[%d] flags=%d len=%d '%s'\n", i
,
1901 finfo
.all_eas
.out
.eas
[i
].flags
,
1902 (int)finfo
.all_eas
.out
.eas
[i
].value
.length
,
1903 finfo
.all_eas
.out
.eas
[i
].name
.s
);
1906 finfo
.all_eas
.out
.eas
[i
].value
.data
,
1907 finfo
.all_eas
.out
.eas
[i
].value
.length
);
1914 /****************************************************************************
1915 show any ACL on a file
1916 ****************************************************************************/
1917 static int cmd_acl(struct smbclient_context
*ctx
, const char **args
)
1920 union smb_fileinfo query
;
1925 d_printf("acl <filename>\n");
1928 fname
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
1930 fnum
= smbcli_nt_create_full(ctx
->cli
->tree
, fname
, 0,
1931 SEC_STD_READ_CONTROL
,
1933 NTCREATEX_SHARE_ACCESS_DELETE
|
1934 NTCREATEX_SHARE_ACCESS_READ
|
1935 NTCREATEX_SHARE_ACCESS_WRITE
,
1936 NTCREATEX_DISP_OPEN
,
1939 d_printf("%s - %s\n", fname
, smbcli_errstr(ctx
->cli
->tree
));
1943 query
.query_secdesc
.level
= RAW_FILEINFO_SEC_DESC
;
1944 query
.query_secdesc
.in
.file
.fnum
= fnum
;
1945 query
.query_secdesc
.in
.secinfo_flags
= 0x7;
1947 status
= smb_raw_fileinfo(ctx
->cli
->tree
, ctx
, &query
);
1948 if (!NT_STATUS_IS_OK(status
)) {
1949 d_printf("%s - %s\n", fname
, nt_errstr(status
));
1953 NDR_PRINT_DEBUG(security_descriptor
, query
.query_secdesc
.out
.sd
);
1958 /****************************************************************************
1959 lookup a name or sid
1960 ****************************************************************************/
1961 static int cmd_lookup(struct smbclient_context
*ctx
, const char **args
)
1964 struct dom_sid
*sid
;
1967 d_printf("lookup <sid|name>\n");
1971 sid
= dom_sid_parse_talloc(ctx
, args
[1]);
1974 status
= smblsa_lookup_name(ctx
->cli
, args
[1], ctx
, &sidstr
);
1975 if (!NT_STATUS_IS_OK(status
)) {
1976 d_printf("lsa_LookupNames - %s\n", nt_errstr(status
));
1980 d_printf("%s\n", sidstr
);
1983 status
= smblsa_lookup_sid(ctx
->cli
, args
[1], ctx
, &name
);
1984 if (!NT_STATUS_IS_OK(status
)) {
1985 d_printf("lsa_LookupSids - %s\n", nt_errstr(status
));
1989 d_printf("%s\n", name
);
1995 /****************************************************************************
1996 show privileges for a user
1997 ****************************************************************************/
1998 static int cmd_privileges(struct smbclient_context
*ctx
, const char **args
)
2001 struct dom_sid
*sid
;
2002 struct lsa_RightSet rights
;
2006 d_printf("privileges <sid|name>\n");
2010 sid
= dom_sid_parse_talloc(ctx
, args
[1]);
2012 const char *sid_str
;
2013 status
= smblsa_lookup_name(ctx
->cli
, args
[1], ctx
, &sid_str
);
2014 if (!NT_STATUS_IS_OK(status
)) {
2015 d_printf("lsa_LookupNames - %s\n", nt_errstr(status
));
2018 sid
= dom_sid_parse_talloc(ctx
, sid_str
);
2021 status
= smblsa_sid_privileges(ctx
->cli
, sid
, ctx
, &rights
);
2022 if (!NT_STATUS_IS_OK(status
)) {
2023 d_printf("lsa_EnumAccountRights - %s\n", nt_errstr(status
));
2027 for (i
=0;i
<rights
.count
;i
++) {
2028 d_printf("\t%s\n", rights
.names
[i
].string
);
2035 /****************************************************************************
2036 add privileges for a user
2037 ****************************************************************************/
2038 static int cmd_addprivileges(struct smbclient_context
*ctx
, const char **args
)
2041 struct dom_sid
*sid
;
2042 struct lsa_RightSet rights
;
2046 d_printf("addprivileges <sid|name> <privilege...>\n");
2050 sid
= dom_sid_parse_talloc(ctx
, args
[1]);
2052 const char *sid_str
;
2053 status
= smblsa_lookup_name(ctx
->cli
, args
[1], ctx
, &sid_str
);
2054 if (!NT_STATUS_IS_OK(status
)) {
2055 d_printf("lsa_LookupNames - %s\n", nt_errstr(status
));
2058 sid
= dom_sid_parse_talloc(ctx
, sid_str
);
2061 ZERO_STRUCT(rights
);
2062 for (i
= 2; args
[i
]; i
++) {
2063 rights
.names
= talloc_realloc(ctx
, rights
.names
,
2064 struct lsa_StringLarge
, rights
.count
+1);
2065 rights
.names
[rights
.count
].string
= talloc_strdup(ctx
, args
[i
]);
2070 status
= smblsa_sid_add_privileges(ctx
->cli
, sid
, ctx
, &rights
);
2071 if (!NT_STATUS_IS_OK(status
)) {
2072 d_printf("lsa_AddAccountRights - %s\n", nt_errstr(status
));
2079 /****************************************************************************
2080 delete privileges for a user
2081 ****************************************************************************/
2082 static int cmd_delprivileges(struct smbclient_context
*ctx
, const char **args
)
2085 struct dom_sid
*sid
;
2086 struct lsa_RightSet rights
;
2090 d_printf("delprivileges <sid|name> <privilege...>\n");
2094 sid
= dom_sid_parse_talloc(ctx
, args
[1]);
2096 const char *sid_str
;
2097 status
= smblsa_lookup_name(ctx
->cli
, args
[1], ctx
, &sid_str
);
2098 if (!NT_STATUS_IS_OK(status
)) {
2099 d_printf("lsa_LookupNames - %s\n", nt_errstr(status
));
2102 sid
= dom_sid_parse_talloc(ctx
, sid_str
);
2105 ZERO_STRUCT(rights
);
2106 for (i
= 2; args
[i
]; i
++) {
2107 rights
.names
= talloc_realloc(ctx
, rights
.names
,
2108 struct lsa_StringLarge
, rights
.count
+1);
2109 rights
.names
[rights
.count
].string
= talloc_strdup(ctx
, args
[i
]);
2114 status
= smblsa_sid_del_privileges(ctx
->cli
, sid
, ctx
, &rights
);
2115 if (!NT_STATUS_IS_OK(status
)) {
2116 d_printf("lsa_RemoveAccountRights - %s\n", nt_errstr(status
));
2124 /****************************************************************************
2125 ****************************************************************************/
2126 static int cmd_open(struct smbclient_context
*ctx
, const char **args
)
2131 d_printf("open <filename>\n");
2134 mask
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2136 smbcli_open(ctx
->cli
->tree
, mask
, O_RDWR
, DENY_ALL
);
2142 /****************************************************************************
2144 ****************************************************************************/
2145 static int cmd_rmdir(struct smbclient_context
*ctx
, const char **args
)
2150 d_printf("rmdir <dirname>\n");
2153 mask
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2155 if (NT_STATUS_IS_ERR(smbcli_rmdir(ctx
->cli
->tree
, mask
))) {
2156 d_printf("%s removing remote directory file %s\n",
2157 smbcli_errstr(ctx
->cli
->tree
),mask
);
2163 /****************************************************************************
2165 ****************************************************************************/
2166 static int cmd_link(struct smbclient_context
*ctx
, const char **args
)
2170 if (!(ctx
->cli
->transport
->negotiate
.capabilities
& CAP_UNIX
)) {
2171 d_printf("Server doesn't support UNIX CIFS calls.\n");
2176 if (!args
[1] || !args
[2]) {
2177 d_printf("link <src> <dest>\n");
2181 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2182 dest
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[2]);
2184 if (NT_STATUS_IS_ERR(smbcli_unix_hardlink(ctx
->cli
->tree
, src
, dest
))) {
2185 d_printf("%s linking files (%s -> %s)\n", smbcli_errstr(ctx
->cli
->tree
), src
, dest
);
2192 /****************************************************************************
2194 ****************************************************************************/
2196 static int cmd_symlink(struct smbclient_context
*ctx
, const char **args
)
2200 if (!(ctx
->cli
->transport
->negotiate
.capabilities
& CAP_UNIX
)) {
2201 d_printf("Server doesn't support UNIX CIFS calls.\n");
2205 if (!args
[1] || !args
[2]) {
2206 d_printf("symlink <src> <dest>\n");
2210 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2211 dest
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[2]);
2213 if (NT_STATUS_IS_ERR(smbcli_unix_symlink(ctx
->cli
->tree
, src
, dest
))) {
2214 d_printf("%s symlinking files (%s -> %s)\n",
2215 smbcli_errstr(ctx
->cli
->tree
), src
, dest
);
2222 /****************************************************************************
2224 ****************************************************************************/
2226 static int cmd_chmod(struct smbclient_context
*ctx
, const char **args
)
2231 if (!(ctx
->cli
->transport
->negotiate
.capabilities
& CAP_UNIX
)) {
2232 d_printf("Server doesn't support UNIX CIFS calls.\n");
2236 if (!args
[1] || !args
[2]) {
2237 d_printf("chmod mode file\n");
2241 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[2]);
2243 mode
= (mode_t
)strtol(args
[1], NULL
, 8);
2245 if (NT_STATUS_IS_ERR(smbcli_unix_chmod(ctx
->cli
->tree
, src
, mode
))) {
2246 d_printf("%s chmod file %s 0%o\n",
2247 smbcli_errstr(ctx
->cli
->tree
), src
, (mode_t
)mode
);
2254 /****************************************************************************
2256 ****************************************************************************/
2258 static int cmd_chown(struct smbclient_context
*ctx
, const char **args
)
2264 if (!(ctx
->cli
->transport
->negotiate
.capabilities
& CAP_UNIX
)) {
2265 d_printf("Server doesn't support UNIX CIFS calls.\n");
2269 if (!args
[1] || !args
[2] || !args
[3]) {
2270 d_printf("chown uid gid file\n");
2274 uid
= (uid_t
)atoi(args
[1]);
2275 gid
= (gid_t
)atoi(args
[2]);
2276 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[3]);
2278 if (NT_STATUS_IS_ERR(smbcli_unix_chown(ctx
->cli
->tree
, src
, uid
, gid
))) {
2279 d_printf("%s chown file %s uid=%d, gid=%d\n",
2280 smbcli_errstr(ctx
->cli
->tree
), src
, (int)uid
, (int)gid
);
2287 /****************************************************************************
2289 ****************************************************************************/
2290 static int cmd_rename(struct smbclient_context
*ctx
, const char **args
)
2294 if (!args
[1] || !args
[2]) {
2295 d_printf("rename <src> <dest>\n");
2299 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2300 dest
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[2]);
2302 if (NT_STATUS_IS_ERR(smbcli_rename(ctx
->cli
->tree
, src
, dest
))) {
2303 d_printf("%s renaming files\n",smbcli_errstr(ctx
->cli
->tree
));
2311 /****************************************************************************
2312 toggle the prompt flag
2313 ****************************************************************************/
2314 static int cmd_prompt(struct smbclient_context
*ctx
, const char **args
)
2316 ctx
->prompt
= !ctx
->prompt
;
2317 DEBUG(2,("prompting is now %s\n",ctx
->prompt
?"on":"off"));
2323 /****************************************************************************
2324 set the newer than time
2325 ****************************************************************************/
2326 static int cmd_newer(struct smbclient_context
*ctx
, const char **args
)
2330 if (args
[1] && (stat(args
[1],&sbuf
) == 0)) {
2331 ctx
->newer_than
= sbuf
.st_mtime
;
2332 DEBUG(1,("Getting files newer than %s",
2333 asctime(localtime(&ctx
->newer_than
))));
2335 ctx
->newer_than
= 0;
2338 if (args
[1] && ctx
->newer_than
== 0) {
2339 d_printf("Error setting newer-than time\n");
2346 /****************************************************************************
2347 set the archive level
2348 ****************************************************************************/
2349 static int cmd_archive(struct smbclient_context
*ctx
, const char **args
)
2352 ctx
->archive_level
= atoi(args
[1]);
2354 d_printf("Archive level is %d\n",ctx
->archive_level
);
2359 /****************************************************************************
2360 toggle the lowercaseflag
2361 ****************************************************************************/
2362 static int cmd_lowercase(struct smbclient_context
*ctx
, const char **args
)
2364 ctx
->lowercase
= !ctx
->lowercase
;
2365 DEBUG(2,("filename lowercasing is now %s\n",ctx
->lowercase
?"on":"off"));
2373 /****************************************************************************
2374 toggle the recurse flag
2375 ****************************************************************************/
2376 static int cmd_recurse(struct smbclient_context
*ctx
, const char **args
)
2378 ctx
->recurse
= !ctx
->recurse
;
2379 DEBUG(2,("directory recursion is now %s\n",ctx
->recurse
?"on":"off"));
2384 /****************************************************************************
2385 toggle the translate flag
2386 ****************************************************************************/
2387 static int cmd_translate(struct smbclient_context
*ctx
, const char **args
)
2389 ctx
->translation
= !ctx
->translation
;
2390 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
2391 ctx
->translation
?"on":"off"));
2397 /****************************************************************************
2398 do a printmode command
2399 ****************************************************************************/
2400 static int cmd_printmode(struct smbclient_context
*ctx
, const char **args
)
2403 if (strequal(args
[1],"text")) {
2406 if (strequal(args
[1],"graphics"))
2409 ctx
->printmode
= atoi(args
[1]);
2413 switch(ctx
->printmode
)
2416 DEBUG(2,("the printmode is now text\n"));
2419 DEBUG(2,("the printmode is now graphics\n"));
2422 DEBUG(2,("the printmode is now %d\n", ctx
->printmode
));
2429 /****************************************************************************
2431 ****************************************************************************/
2432 static int cmd_lcd(struct smbclient_context
*ctx
, const char **args
)
2438 DEBUG(2,("the local directory is now %s\n",getcwd(d
, PATH_MAX
)));
2443 /****************************************************************************
2445 ****************************************************************************/
2446 static int cmd_history(struct smbclient_context
*ctx
, const char **args
)
2448 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
2452 hlist
= history_list();
2454 for (i
= 0; hlist
&& hlist
[i
]; i
++) {
2455 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
2458 DEBUG(0,("no history without readline support\n"));
2464 /****************************************************************************
2465 get a file restarting at end of local file
2466 ****************************************************************************/
2467 static int cmd_reget(struct smbclient_context
*ctx
, const char **args
)
2473 d_printf("reget <filename>\n");
2476 remote_name
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, args
[1]);
2477 dos_clean_name(remote_name
);
2480 local_name
= talloc_strdup(ctx
, args
[2]);
2482 local_name
= talloc_strdup(ctx
, args
[1]);
2484 return do_get(ctx
, remote_name
, local_name
, true);
2487 /****************************************************************************
2488 put a file restarting at end of local file
2489 ****************************************************************************/
2490 static int cmd_reput(struct smbclient_context
*ctx
, const char **args
)
2496 d_printf("reput <filename>\n");
2499 local_name
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, args
[1]);
2501 if (!file_exist(local_name
)) {
2502 d_printf("%s does not exist\n", local_name
);
2507 remote_name
= talloc_strdup(ctx
, args
[2]);
2509 remote_name
= talloc_strdup(ctx
, args
[1]);
2511 dos_clean_name(remote_name
);
2513 return do_put(ctx
, remote_name
, local_name
, true);
2518 return a string representing a share type
2520 static const char *share_type_str(uint32_t type
)
2522 switch (type
& 0xF) {
2523 case STYPE_DISKTREE
:
2538 display a list of shares from a level 1 share enum
2540 static void display_share_result(struct srvsvc_NetShareCtr1
*ctr1
)
2544 for (i
=0;i
<ctr1
->count
;i
++) {
2545 struct srvsvc_NetShareInfo1
*info
= ctr1
->array
+i
;
2547 printf("\t%-15s %-10.10s %s\n",
2549 share_type_str(info
->type
),
2556 /****************************************************************************
2557 try and browse available shares on a host
2558 ****************************************************************************/
2559 static bool browse_host(struct loadparm_context
*lp_ctx
,
2560 struct tevent_context
*ev_ctx
,
2561 const char *query_host
)
2563 struct dcerpc_pipe
*p
;
2566 struct srvsvc_NetShareEnumAll r
;
2567 struct srvsvc_NetShareInfoCtr info_ctr
;
2568 uint32_t resume_handle
= 0;
2569 TALLOC_CTX
*mem_ctx
= talloc_init("browse_host");
2570 struct srvsvc_NetShareCtr1 ctr1
;
2571 uint32_t totalentries
= 0;
2573 binding
= talloc_asprintf(mem_ctx
, "ncacn_np:%s", query_host
);
2575 status
= dcerpc_pipe_connect(mem_ctx
, &p
, binding
,
2577 cmdline_credentials
, ev_ctx
,
2579 if (!NT_STATUS_IS_OK(status
)) {
2580 d_printf("Failed to connect to %s - %s\n",
2581 binding
, nt_errstr(status
));
2582 talloc_free(mem_ctx
);
2587 info_ctr
.ctr
.ctr1
= &ctr1
;
2589 r
.in
.server_unc
= talloc_asprintf(mem_ctx
,"\\\\%s",dcerpc_server_name(p
));
2590 r
.in
.info_ctr
= &info_ctr
;
2591 r
.in
.max_buffer
= ~0;
2592 r
.in
.resume_handle
= &resume_handle
;
2593 r
.out
.resume_handle
= &resume_handle
;
2594 r
.out
.totalentries
= &totalentries
;
2595 r
.out
.info_ctr
= &info_ctr
;
2597 d_printf("\n\tSharename Type Comment\n");
2598 d_printf("\t--------- ---- -------\n");
2602 status
= dcerpc_srvsvc_NetShareEnumAll(p
, mem_ctx
, &r
);
2604 if (NT_STATUS_IS_OK(status
) &&
2605 (W_ERROR_EQUAL(r
.out
.result
, WERR_MORE_DATA
) ||
2606 W_ERROR_IS_OK(r
.out
.result
)) &&
2607 r
.out
.info_ctr
->ctr
.ctr1
) {
2608 display_share_result(r
.out
.info_ctr
->ctr
.ctr1
);
2609 resume_handle
+= r
.out
.info_ctr
->ctr
.ctr1
->count
;
2611 } while (NT_STATUS_IS_OK(status
) && W_ERROR_EQUAL(r
.out
.result
, WERR_MORE_DATA
));
2613 talloc_free(mem_ctx
);
2615 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(r
.out
.result
)) {
2616 d_printf("Failed NetShareEnumAll %s - %s/%s\n",
2617 binding
, nt_errstr(status
), win_errstr(r
.out
.result
));
2624 /****************************************************************************
2625 try and browse available connections on a host
2626 ****************************************************************************/
2627 static bool list_servers(const char *wk_grp
)
2629 d_printf("REWRITE: list servers not implemented\n");
2633 /* Some constants for completing filename arguments */
2635 #define COMPL_NONE 0 /* No completions */
2636 #define COMPL_REMOTE 1 /* Complete remote filename */
2637 #define COMPL_LOCAL 2 /* Complete local filename */
2639 static int cmd_help(struct smbclient_context
*ctx
, const char **args
);
2641 /* This defines the commands supported by this client.
2642 * NOTE: The "!" must be the last one in the list because it's fn pointer
2643 * field is NULL, and NULL in that field is used in process_tok()
2644 * (below) to indicate the end of the list. crh
2649 int (*fn
)(struct smbclient_context
*ctx
, const char **args
);
2650 const char *description
;
2651 char compl_args
[2]; /* Completion argument info */
2654 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
2655 {"addprivileges",cmd_addprivileges
,"<sid|name> <privilege...> add privileges for a user",{COMPL_NONE
,COMPL_NONE
}},
2656 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
2657 {"acl",cmd_acl
,"<file> show file ACL",{COMPL_NONE
,COMPL_NONE
}},
2658 {"allinfo",cmd_allinfo
,"<file> show all possible info about a file",{COMPL_NONE
,COMPL_NONE
}},
2659 {"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
}},
2660 {"cancel",cmd_rewrite
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
2661 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
2662 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
2663 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
2664 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2665 {"delprivileges",cmd_delprivileges
,"<sid|name> <privilege...> remove privileges for a user",{COMPL_NONE
,COMPL_NONE
}},
2666 {"deltree",cmd_deltree
,"<dir> delete a whole directory tree",{COMPL_REMOTE
,COMPL_NONE
}},
2667 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2668 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2669 {"eainfo",cmd_eainfo
,"<file> show EA contents for a file",{COMPL_NONE
,COMPL_NONE
}},
2670 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2671 {"fsinfo",cmd_fsinfo
,"query file system info",{COMPL_NONE
,COMPL_NONE
}},
2672 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
2673 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
2674 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
2675 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
2676 {"link",cmd_link
,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
2677 {"lookup",cmd_lookup
,"<sid|name> show SID for name or name for SID",{COMPL_NONE
,COMPL_NONE
}},
2678 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
2679 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2680 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
2681 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
2682 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2683 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
2684 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
2685 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2686 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
2687 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
2688 {"privileges",cmd_privileges
,"<user> show privileges for a user",{COMPL_NONE
,COMPL_NONE
}},
2689 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
2690 {"printmode",cmd_printmode
,"<graphics or text> set the print mode",{COMPL_NONE
,COMPL_NONE
}},
2691 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
2692 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
2693 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
2694 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2695 {"queue",cmd_rewrite
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
2696 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2697 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2698 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
2699 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
2700 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
2701 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
2702 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2703 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2704 {"symlink",cmd_symlink
,"<src> <dest> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
2705 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
2707 /* Yes, this must be here, see crh's comment above. */
2708 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
2709 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
2713 /*******************************************************************
2714 lookup a command string in the list of commands, including
2716 ******************************************************************/
2717 static int process_tok(const char *tok
)
2719 int i
= 0, matches
= 0;
2721 int tok_len
= strlen(tok
);
2723 while (commands
[i
].fn
!= NULL
) {
2724 if (strequal(commands
[i
].name
,tok
)) {
2728 } else if (strncasecmp(commands
[i
].name
, tok
, tok_len
) == 0) {
2737 else if (matches
== 1)
2743 /****************************************************************************
2745 ****************************************************************************/
2746 static int cmd_help(struct smbclient_context
*ctx
, const char **args
)
2751 if ((i
= process_tok(args
[1])) >= 0)
2752 d_printf("HELP %s:\n\t%s\n\n",commands
[i
].name
,commands
[i
].description
);
2754 while (commands
[i
].description
) {
2755 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
2756 d_printf("%-15s",commands
[i
].name
);
2765 static int process_line(struct smbclient_context
*ctx
, const char *cline
);
2766 /****************************************************************************
2767 process a -c command string
2768 ****************************************************************************/
2769 static int process_command_string(struct smbclient_context
*ctx
, const char *cmd
)
2774 lines
= str_list_make(NULL
, cmd
, ";");
2775 for (i
= 0; lines
[i
]; i
++) {
2776 rc
|= process_line(ctx
, lines
[i
]);
2783 #define MAX_COMPLETIONS 100
2791 } completion_remote_t
;
2793 static void completion_remote_filter(struct clilist_file_info
*f
, const char *mask
, void *state
)
2795 completion_remote_t
*info
= (completion_remote_t
*)state
;
2797 if ((info
->count
< MAX_COMPLETIONS
- 1) && (strncmp(info
->text
, f
->name
, info
->len
) == 0) && (!ISDOT(f
->name
)) && (!ISDOTDOT(f
->name
))) {
2798 if ((info
->dirmask
[0] == 0) && !(f
->attrib
& FILE_ATTRIBUTE_DIRECTORY
))
2799 info
->matches
[info
->count
] = strdup(f
->name
);
2803 if (info
->dirmask
[0] != 0)
2804 tmp
= talloc_asprintf(NULL
, "%s/%s", info
->dirmask
, f
->name
);
2806 tmp
= talloc_strdup(NULL
, f
->name
);
2808 if (f
->attrib
& FILE_ATTRIBUTE_DIRECTORY
)
2809 tmp
= talloc_append_string(NULL
, tmp
, "/");
2810 info
->matches
[info
->count
] = tmp
;
2812 if (info
->matches
[info
->count
] == NULL
)
2814 if (f
->attrib
& FILE_ATTRIBUTE_DIRECTORY
)
2815 smb_readline_ca_char(0);
2817 if (info
->count
== 1)
2818 info
->samelen
= strlen(info
->matches
[info
->count
]);
2820 while (strncmp(info
->matches
[info
->count
], info
->matches
[info
->count
-1], info
->samelen
) != 0)
2826 static char **remote_completion(const char *text
, int len
)
2830 completion_remote_t info
;
2836 if (len
>= PATH_MAX
)
2839 info
.matches
= malloc_array_p(char *, MAX_COMPLETIONS
);
2840 if (!info
.matches
) return NULL
;
2841 info
.matches
[0] = NULL
;
2843 for (i
= len
-1; i
>= 0; i
--)
2844 if ((text
[i
] == '/') || (text
[i
] == '\\'))
2846 info
.text
= text
+i
+1;
2847 info
.samelen
= info
.len
= len
-i
-1;
2850 info
.dirmask
= talloc_strndup(NULL
, text
, i
+1);
2851 info
.dirmask
[i
+1] = 0;
2852 asprintf(&dirmask
, "%s%*s*", rl_ctx
->remote_cur_dir
, i
-1, text
);
2854 asprintf(&dirmask
, "%s*", rl_ctx
->remote_cur_dir
);
2856 if (smbcli_list(rl_ctx
->cli
->tree
, dirmask
,
2857 FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
,
2858 completion_remote_filter
, &info
) < 0)
2861 if (info
.count
== 2)
2862 info
.matches
[0] = strdup(info
.matches
[1]);
2864 info
.matches
[0] = malloc_array_p(char, info
.samelen
+1);
2865 if (!info
.matches
[0])
2867 strncpy(info
.matches
[0], info
.matches
[1], info
.samelen
);
2868 info
.matches
[0][info
.samelen
] = 0;
2870 info
.matches
[info
.count
] = NULL
;
2871 return info
.matches
;
2874 for (i
= 0; i
< info
.count
; i
++)
2875 free(info
.matches
[i
]);
2880 static char **completion_fn(const char *text
, int start
, int end
)
2882 smb_readline_ca_char(' ');
2885 const char *buf
, *sp
;
2889 buf
= smb_readline_get_line_buffer();
2893 sp
= strchr(buf
, ' ');
2897 for (i
= 0; commands
[i
].name
; i
++)
2898 if ((strncmp(commands
[i
].name
, text
, sp
- buf
) == 0) && (commands
[i
].name
[sp
- buf
] == 0))
2900 if (commands
[i
].name
== NULL
)
2906 if (sp
== (buf
+ start
))
2907 compl_type
= commands
[i
].compl_args
[0];
2909 compl_type
= commands
[i
].compl_args
[1];
2911 if (compl_type
== COMPL_REMOTE
)
2912 return remote_completion(text
, end
- start
);
2913 else /* fall back to local filename completion */
2917 int i
, len
, samelen
= 0, count
=1;
2919 matches
= malloc_array_p(char *, MAX_COMPLETIONS
);
2920 if (!matches
) return NULL
;
2924 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
2925 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
2926 matches
[count
] = strdup(commands
[i
].name
);
2927 if (!matches
[count
])
2930 samelen
= strlen(matches
[count
]);
2932 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
2939 case 0: /* should never happen */
2943 matches
[0] = strdup(matches
[1]);
2946 matches
[0] = malloc_array_p(char, samelen
+1);
2949 strncpy(matches
[0], matches
[1], samelen
);
2950 matches
[0][samelen
] = 0;
2952 matches
[count
] = NULL
;
2957 while (count
>= 0) {
2958 free(matches
[count
]);
2966 /****************************************************************************
2967 make sure we swallow keepalives during idle time
2968 ****************************************************************************/
2969 static void readline_callback(void)
2971 static time_t last_t
;
2976 if (t
- last_t
< 5) return;
2980 smbcli_transport_process(rl_ctx
->cli
->transport
);
2982 if (rl_ctx
->cli
->tree
) {
2983 smbcli_chkpath(rl_ctx
->cli
->tree
, "\\");
2987 static int process_line(struct smbclient_context
*ctx
, const char *cline
)
2992 /* and get the first part of the command */
2993 args
= str_list_make_shell(ctx
, cline
, NULL
);
2994 if (!args
|| !args
[0])
2997 if ((i
= process_tok(args
[0])) >= 0) {
2998 i
= commands
[i
].fn(ctx
, args
);
2999 } else if (i
== -2) {
3000 d_printf("%s: command abbreviation ambiguous\n",args
[0]);
3002 d_printf("%s: command not found\n",args
[0]);
3010 /****************************************************************************
3011 process commands on stdin
3012 ****************************************************************************/
3013 static int process_stdin(struct smbclient_context
*ctx
)
3017 /* display a prompt */
3018 char *the_prompt
= talloc_asprintf(ctx
, "smb: %s> ", ctx
->remote_cur_dir
);
3019 char *cline
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
3020 talloc_free(the_prompt
);
3024 /* special case - first char is ! */
3025 if (*cline
== '!') {
3031 rc
|= process_command_string(ctx
, cline
);
3040 /*****************************************************
3041 return a connection to a server
3042 *******************************************************/
3043 static bool do_connect(struct smbclient_context
*ctx
,
3044 struct tevent_context
*ev_ctx
,
3045 struct resolve_context
*resolve_ctx
,
3046 const char *specified_server
, const char **ports
,
3047 const char *specified_share
,
3048 const char *socket_options
,
3049 struct cli_credentials
*cred
,
3050 struct smbcli_options
*options
,
3051 struct smbcli_session_options
*session_options
,
3052 struct smb_iconv_convenience
*iconv_convenience
,
3053 struct gensec_settings
*gensec_settings
)
3056 char *server
, *share
;
3058 rl_ctx
= ctx
; /* Ugly hack */
3060 if (strncmp(specified_share
, "\\\\", 2) == 0 ||
3061 strncmp(specified_share
, "//", 2) == 0) {
3062 smbcli_parse_unc(specified_share
, ctx
, &server
, &share
);
3064 share
= talloc_strdup(ctx
, specified_share
);
3065 server
= talloc_strdup(ctx
, specified_server
);
3068 ctx
->remote_cur_dir
= talloc_strdup(ctx
, "\\");
3070 status
= smbcli_full_connection(ctx
, &ctx
->cli
, server
, ports
,
3074 ev_ctx
, options
, session_options
,
3077 if (!NT_STATUS_IS_OK(status
)) {
3078 d_printf("Connection to \\\\%s\\%s failed - %s\n",
3079 server
, share
, nt_errstr(status
));
3087 /****************************************************************************
3089 ****************************************************************************/
3090 static int do_host_query(struct loadparm_context
*lp_ctx
,
3091 struct tevent_context
*ev_ctx
,
3092 const char *query_host
,
3093 const char *workgroup
)
3095 browse_host(lp_ctx
, ev_ctx
, query_host
);
3096 list_servers(workgroup
);
3101 /****************************************************************************
3102 handle a message operation
3103 ****************************************************************************/
3104 static int do_message_op(const char *netbios_name
, const char *desthost
,
3105 const char **destports
, const char *destip
,
3107 struct tevent_context
*ev_ctx
,
3108 struct resolve_context
*resolve_ctx
,
3109 struct smbcli_options
*options
,
3110 struct smb_iconv_convenience
*iconv_convenience
,
3111 const char *socket_options
)
3113 struct nbt_name called
, calling
;
3114 const char *server_name
;
3115 struct smbcli_state
*cli
;
3117 make_nbt_name_client(&calling
, netbios_name
);
3119 nbt_choose_called_name(NULL
, &called
, desthost
, name_type
);
3121 server_name
= destip
? destip
: desthost
;
3123 if (!(cli
= smbcli_state_init(NULL
)) ||
3124 !smbcli_socket_connect(cli
, server_name
, destports
,
3125 ev_ctx
, resolve_ctx
, options
,
3128 d_printf("Connection to %s failed\n", server_name
);
3132 if (!smbcli_transport_establish(cli
, &calling
, &called
)) {
3133 d_printf("session request failed\n");
3138 send_message(cli
, desthost
);
3145 /****************************************************************************
3147 ****************************************************************************/
3148 int main(int argc
,char *argv
[])
3150 const char *base_directory
= NULL
;
3151 const char *dest_ip
= NULL
;
3153 const char *query_host
= NULL
;
3154 bool message
= false;
3155 const char *desthost
= NULL
;
3157 const char *service
= NULL
;
3161 int name_type
= 0x20;
3162 TALLOC_CTX
*mem_ctx
;
3163 struct tevent_context
*ev_ctx
;
3164 struct smbclient_context
*ctx
;
3165 const char *cmdstr
= NULL
;
3166 struct smbcli_options smb_options
;
3167 struct smbcli_session_options smb_session_options
;
3169 struct poptOption long_options
[] = {
3172 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
3173 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
3174 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
3175 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
3176 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
3177 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
3178 { "send-buffer", 'b', POPT_ARG_INT
, NULL
, 'b', "Changes the transmit/send buffer", "BYTES" },
3179 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
3181 POPT_COMMON_CONNECTION
3182 POPT_COMMON_CREDENTIALS
3187 mem_ctx
= talloc_init("client.c/main");
3189 d_printf("\nclient.c: Not enough memory\n");
3193 ctx
= talloc_zero(mem_ctx
, struct smbclient_context
);
3194 ctx
->io_bufsize
= 64512;
3196 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
3197 poptSetOtherOptionHelp(pc
, "[OPTIONS] service <password>");
3199 while ((opt
= poptGetNextOpt(pc
)) != -1) {
3202 /* Messages are sent to NetBIOS name type 0x3
3203 * (Messenger Service). Make sure we default
3204 * to port 139 instead of port 445. srl,crh
3207 desthost
= strdup(poptGetOptArg(pc
));
3208 if( 0 == port
) port
= 139;
3212 dest_ip
= poptGetOptArg(pc
);
3215 query_host
= strdup(poptGetOptArg(pc
));
3218 base_directory
= strdup(poptGetOptArg(pc
));
3221 ctx
->io_bufsize
= MAX(1, atoi(poptGetOptArg(pc
)));
3226 gensec_init(cmdline_lp_ctx
);
3228 if(poptPeekArg(pc
)) {
3229 char *s
= strdup(poptGetArg(pc
));
3231 /* Convert any '/' characters in the service name to '\' characters */
3232 string_replace(s
, '/','\\');
3236 if (count_chars(s
,'\\') < 3) {
3237 d_printf("\n%s: Not enough '\\' characters in service\n",s
);
3238 poptPrintUsage(pc
, stderr
, 0);
3243 if (poptPeekArg(pc
)) {
3244 cli_credentials_set_password(cmdline_credentials
, poptGetArg(pc
), CRED_SPECIFIED
);
3249 if (!query_host
&& !service
&& !message
) {
3250 poptPrintUsage(pc
, stderr
, 0);
3254 poptFreeContext(pc
);
3256 lp_smbcli_options(cmdline_lp_ctx
, &smb_options
);
3257 lp_smbcli_session_options(cmdline_lp_ctx
, &smb_session_options
);
3259 ev_ctx
= s4_event_context_init(talloc_autofree_context());
3261 DEBUG( 3, ( "Client started (version %s).\n", SAMBA_VERSION_STRING
) );
3263 if (query_host
&& (p
=strchr_m(query_host
,'#'))) {
3266 sscanf(p
, "%x", &name_type
);
3270 rc
= do_host_query(cmdline_lp_ctx
, ev_ctx
, query_host
,
3271 lp_workgroup(cmdline_lp_ctx
));
3276 rc
= do_message_op(lp_netbios_name(cmdline_lp_ctx
), desthost
,
3277 lp_smb_ports(cmdline_lp_ctx
), dest_ip
,
3279 lp_resolve_context(cmdline_lp_ctx
),
3280 &smb_options
, lp_iconv_convenience(cmdline_lp_ctx
),
3281 lp_socket_options(cmdline_lp_ctx
));
3285 if (!do_connect(ctx
, ev_ctx
, lp_resolve_context(cmdline_lp_ctx
),
3286 desthost
, lp_smb_ports(cmdline_lp_ctx
), service
,
3287 lp_socket_options(cmdline_lp_ctx
),
3288 cmdline_credentials
, &smb_options
, &smb_session_options
,
3289 lp_iconv_convenience(cmdline_lp_ctx
),
3290 lp_gensec_settings(ctx
, cmdline_lp_ctx
)))
3294 do_cd(ctx
, base_directory
);
3297 rc
= process_command_string(ctx
, cmdstr
);
3299 rc
= process_stdin(ctx
);
3302 talloc_free(mem_ctx
);