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/util/clilsa.h"
41 #include "system/dir.h"
42 #include "system/filesys.h"
43 #include "../lib/util/dlinklist.h"
44 #include "system/readline.h"
45 #include "auth/credentials/credentials.h"
46 #include "auth/gensec/gensec.h"
47 #include "system/time.h" /* needed by some systems for asctime() */
48 #include "libcli/resolve/resolve.h"
49 #include "libcli/security/security.h"
50 #include "../libcli/smbreadline/smbreadline.h"
51 #include "librpc/gen_ndr/ndr_nbt.h"
52 #include "param/param.h"
53 #include "libcli/raw/raw_proto.h"
55 /* the default pager to use for the client "more" command. Users can
56 * override this with the PAGER environment variable */
58 #define DEFAULT_PAGER "more"
61 struct smbclient_context
{
63 struct smbcli_state
*cli
;
76 static uint64_t get_total_size
= 0;
77 static unsigned int get_total_time_ms
= 0;
78 static uint64_t put_total_size
= 0;
79 static unsigned int put_total_time_ms
= 0;
81 /* Unfortunately, there is no way to pass the a context to the completion function as an argument */
82 static struct smbclient_context
*rl_ctx
;
85 static double dir_total
;
87 /*******************************************************************
88 Reduce a file name, removing .. elements.
89 ********************************************************************/
90 static void dos_clean_name(char *s
)
94 DEBUG(3,("dos_clean_name [%s]\n",s
));
96 /* remove any double slashes */
97 all_string_sub(s
, "\\\\", "\\", 0);
99 while ((p
= strstr(s
,"\\..\\")) != NULL
) {
101 if ((r
= strrchr(s
,'\\')) != NULL
)
102 memmove(r
,p
+3,strlen(p
+3)+1);
105 trim_string(s
,NULL
,"\\..");
107 all_string_sub(s
, "\\.\\", "\\", 0);
110 /****************************************************************************
111 write to a local file with CR/LF->LF translation if appropriate. return the
112 number taken from the buffer. This may not equal the number written.
113 ****************************************************************************/
114 static int writefile(int f
, const void *_b
, int n
, bool translation
)
116 const uint8_t *b
= (const uint8_t *)_b
;
125 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
128 if (write(f
, b
, 1) != 1) {
138 /****************************************************************************
139 read from a file with LF->CR/LF translation if appropriate. return the
140 number read. read approx n bytes.
141 ****************************************************************************/
142 static int readfile(void *_b
, int n
, XFILE
*f
, bool translation
)
144 uint8_t *b
= (uint8_t *)_b
;
149 return x_fread(b
,1,n
,f
);
152 while (i
< (n
- 1)) {
153 if ((c
= x_getc(f
)) == EOF
) {
157 if (c
== '\n') { /* change all LFs to CR/LF */
168 /****************************************************************************
170 ****************************************************************************/
171 static void send_message(struct smbcli_state
*cli
, const char *desthost
)
177 if (!smbcli_message_start(cli
->tree
, desthost
, cli_credentials_get_username(cmdline_credentials
), &grp_id
)) {
178 d_printf("message start: %s\n", smbcli_errstr(cli
->tree
));
183 d_printf("Connected. Type your message, ending it with a Control-D\n");
185 while (!feof(stdin
) && total_len
< 1600) {
186 int maxlen
= MIN(1600 - total_len
,127);
190 for (l
=0;l
<maxlen
&& (c
=fgetc(stdin
))!=EOF
;l
++) {
196 if (!smbcli_message_text(cli
->tree
, msg
, l
, grp_id
)) {
197 d_printf("SMBsendtxt failed (%s)\n",smbcli_errstr(cli
->tree
));
204 if (total_len
>= 1600)
205 d_printf("the message was truncated to 1600 bytes\n");
207 d_printf("sent %d bytes\n",total_len
);
209 if (!smbcli_message_end(cli
->tree
, grp_id
)) {
210 d_printf("SMBsendend failed (%s)\n",smbcli_errstr(cli
->tree
));
217 /****************************************************************************
218 check the space on a device
219 ****************************************************************************/
220 static int do_dskattr(struct smbclient_context
*ctx
)
223 uint64_t total
, avail
;
225 if (NT_STATUS_IS_ERR(smbcli_dskattr(ctx
->cli
->tree
, &bsize
, &total
, &avail
))) {
226 d_printf("Error in dskattr: %s\n",smbcli_errstr(ctx
->cli
->tree
));
230 d_printf("\n\t\t%llu blocks of size %u. %llu blocks available\n",
231 (unsigned long long)total
,
233 (unsigned long long)avail
);
238 /****************************************************************************
240 ****************************************************************************/
241 static int cmd_pwd(struct smbclient_context
*ctx
, const char **args
)
243 d_printf("Current directory is %s\n", ctx
->remote_cur_dir
);
248 convert a string to dos format
250 static void dos_format(char *s
)
252 string_replace(s
, '/', '\\');
255 /****************************************************************************
256 change directory - inner section
257 ****************************************************************************/
258 static int do_cd(struct smbclient_context
*ctx
, const char *newdir
)
262 /* Save the current directory in case the
263 new directory is invalid */
264 if (newdir
[0] == '\\')
265 dname
= talloc_strdup(ctx
, newdir
);
267 dname
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, newdir
);
271 if (*(dname
+strlen(dname
)-1) != '\\') {
272 dname
= talloc_append_string(NULL
, dname
, "\\");
274 dos_clean_name(dname
);
276 if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx
->cli
->tree
, dname
))) {
277 d_printf("cd %s: %s\n", dname
, smbcli_errstr(ctx
->cli
->tree
));
280 ctx
->remote_cur_dir
= dname
;
286 /****************************************************************************
288 ****************************************************************************/
289 static int cmd_cd(struct smbclient_context
*ctx
, const char **args
)
294 rc
= do_cd(ctx
, args
[1]);
296 d_printf("Current directory is %s\n",ctx
->remote_cur_dir
);
302 static bool mask_match(struct smbcli_state
*c
, const char *string
,
303 const char *pattern
, bool is_case_sensitive
)
308 if (ISDOTDOT(string
))
313 if (is_case_sensitive
)
314 return ms_fnmatch_protocol(pattern
, string
,
315 c
->transport
->negotiate
.protocol
) == 0;
317 p2
= strlower_talloc(NULL
, pattern
);
318 s2
= strlower_talloc(NULL
, string
);
319 ret
= ms_fnmatch_protocol(p2
, s2
, c
->transport
->negotiate
.protocol
) == 0;
328 /*******************************************************************
329 decide if a file should be operated on
330 ********************************************************************/
331 static bool do_this_one(struct smbclient_context
*ctx
, struct clilist_file_info
*finfo
)
333 if (finfo
->attrib
& FILE_ATTRIBUTE_DIRECTORY
) return(true);
335 if (ctx
->fileselection
&&
336 !mask_match(ctx
->cli
, finfo
->name
,ctx
->fileselection
,false)) {
337 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
341 if (ctx
->newer_than
&& finfo
->mtime
< ctx
->newer_than
) {
342 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
346 if ((ctx
->archive_level
==1 || ctx
->archive_level
==2) && !(finfo
->attrib
& FILE_ATTRIBUTE_ARCHIVE
)) {
347 DEBUG(3,("archive %s failed\n", finfo
->name
));
354 /****************************************************************************
355 display info about a file
356 ****************************************************************************/
357 static void display_finfo(struct smbclient_context
*ctx
, struct clilist_file_info
*finfo
)
359 if (do_this_one(ctx
, finfo
)) {
360 time_t t
= finfo
->mtime
; /* the time is assumed to be passed as GMT */
361 char *astr
= attrib_string(NULL
, finfo
->attrib
);
362 d_printf(" %-30s%7.7s %8.0f %s",
366 asctime(localtime(&t
)));
367 dir_total
+= finfo
->size
;
373 /****************************************************************************
374 accumulate size of a file
375 ****************************************************************************/
376 static void do_du(struct smbclient_context
*ctx
, struct clilist_file_info
*finfo
)
378 if (do_this_one(ctx
, finfo
)) {
379 dir_total
+= finfo
->size
;
383 static bool do_list_recurse
;
384 static bool do_list_dirs
;
385 static char *do_list_queue
= 0;
386 static long do_list_queue_size
= 0;
387 static long do_list_queue_start
= 0;
388 static long do_list_queue_end
= 0;
389 static void (*do_list_fn
)(struct smbclient_context
*, struct clilist_file_info
*);
391 /****************************************************************************
392 functions for do_list_queue
393 ****************************************************************************/
396 * The do_list_queue is a NUL-separated list of strings stored in a
397 * char*. Since this is a FIFO, we keep track of the beginning and
398 * ending locations of the data in the queue. When we overflow, we
399 * double the size of the char*. When the start of the data passes
400 * the midpoint, we move everything back. This is logically more
401 * complex than a linked list, but easier from a memory management
402 * angle. In any memory error condition, do_list_queue is reset.
403 * Functions check to ensure that do_list_queue is non-NULL before
406 static void reset_do_list_queue(void)
408 SAFE_FREE(do_list_queue
);
409 do_list_queue_size
= 0;
410 do_list_queue_start
= 0;
411 do_list_queue_end
= 0;
414 static void init_do_list_queue(void)
416 reset_do_list_queue();
417 do_list_queue_size
= 1024;
418 do_list_queue
= malloc_array_p(char, do_list_queue_size
);
419 if (do_list_queue
== 0) {
420 d_printf("malloc fail for size %d\n",
421 (int)do_list_queue_size
);
422 reset_do_list_queue();
424 memset(do_list_queue
, 0, do_list_queue_size
);
428 static void adjust_do_list_queue(void)
430 if (do_list_queue
== NULL
) return;
433 * If the starting point of the queue is more than half way through,
434 * move everything toward the beginning.
436 if (do_list_queue_start
== do_list_queue_end
)
438 DEBUG(4,("do_list_queue is empty\n"));
439 do_list_queue_start
= do_list_queue_end
= 0;
440 *do_list_queue
= '\0';
442 else if (do_list_queue_start
> (do_list_queue_size
/ 2))
444 DEBUG(4,("sliding do_list_queue backward\n"));
445 memmove(do_list_queue
,
446 do_list_queue
+ do_list_queue_start
,
447 do_list_queue_end
- do_list_queue_start
);
448 do_list_queue_end
-= do_list_queue_start
;
449 do_list_queue_start
= 0;
454 static void add_to_do_list_queue(const char* entry
)
457 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
458 while (new_end
> do_list_queue_size
)
460 do_list_queue_size
*= 2;
461 DEBUG(4,("enlarging do_list_queue to %d\n",
462 (int)do_list_queue_size
));
463 dlq
= realloc_p(do_list_queue
, char, do_list_queue_size
);
465 d_printf("failure enlarging do_list_queue to %d bytes\n",
466 (int)do_list_queue_size
);
467 reset_do_list_queue();
472 memset(do_list_queue
+ do_list_queue_size
/ 2,
473 0, do_list_queue_size
/ 2);
478 strlcpy(do_list_queue
+ do_list_queue_end
, entry
? entry
: "",
479 do_list_queue_size
- do_list_queue_end
);
480 do_list_queue_end
= new_end
;
481 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
482 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
486 static char *do_list_queue_head(void)
488 return do_list_queue
+ do_list_queue_start
;
491 static void remove_do_list_queue_head(void)
493 if (do_list_queue_end
> do_list_queue_start
)
495 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
496 adjust_do_list_queue();
497 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
498 (int)do_list_queue_start
, (int)do_list_queue_end
));
502 static int do_list_queue_empty(void)
504 return (! (do_list_queue
&& *do_list_queue
));
507 /****************************************************************************
509 ****************************************************************************/
510 static void do_list_helper(struct clilist_file_info
*f
, const char *mask
, void *state
)
512 struct smbclient_context
*ctx
= (struct smbclient_context
*)state
;
514 if (f
->attrib
& FILE_ATTRIBUTE_DIRECTORY
) {
515 if (do_list_dirs
&& do_this_one(ctx
, f
)) {
518 if (do_list_recurse
&&
520 !ISDOTDOT(f
->name
)) {
524 mask2
= talloc_strdup(NULL
, mask
);
525 p
= strrchr_m(mask2
,'\\');
528 mask2
= talloc_asprintf_append_buffer(mask2
, "%s\\*", f
->name
);
529 add_to_do_list_queue(mask2
);
534 if (do_this_one(ctx
, f
)) {
540 /****************************************************************************
541 a wrapper around smbcli_list that adds recursion
542 ****************************************************************************/
543 static void do_list(struct smbclient_context
*ctx
, const char *mask
,uint16_t attribute
,
544 void (*fn
)(struct smbclient_context
*, struct clilist_file_info
*),bool rec
, bool dirs
)
546 static int in_do_list
= 0;
548 if (in_do_list
&& rec
)
550 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
556 do_list_recurse
= rec
;
562 init_do_list_queue();
563 add_to_do_list_queue(mask
);
565 while (! do_list_queue_empty())
568 * Need to copy head so that it doesn't become
569 * invalid inside the call to smbcli_list. This
570 * would happen if the list were expanded
572 * Fix from E. Jay Berkenbilt (ejb@ql.org)
575 head
= do_list_queue_head();
576 smbcli_list(ctx
->cli
->tree
, head
, attribute
, do_list_helper
, ctx
);
577 remove_do_list_queue_head();
578 if ((! do_list_queue_empty()) && (fn
== display_finfo
))
580 char* next_file
= do_list_queue_head();
582 if ((strlen(next_file
) >= 2) &&
583 (next_file
[strlen(next_file
) - 1] == '*') &&
584 (next_file
[strlen(next_file
) - 2] == '\\'))
586 save_ch
= next_file
+
587 strlen(next_file
) - 2;
590 d_printf("\n%s\n",next_file
);
600 if (smbcli_list(ctx
->cli
->tree
, mask
, attribute
, do_list_helper
, ctx
) == -1)
602 d_printf("%s listing %s\n", smbcli_errstr(ctx
->cli
->tree
), mask
);
607 reset_do_list_queue();
610 /****************************************************************************
611 get a directory listing
612 ****************************************************************************/
613 static int cmd_dir(struct smbclient_context
*ctx
, const char **args
)
615 uint16_t attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
621 mask
= talloc_strdup(ctx
, ctx
->remote_cur_dir
);
622 if(mask
[strlen(mask
)-1]!='\\')
623 mask
= talloc_append_string(ctx
, mask
,"\\");
626 mask
= talloc_strdup(ctx
, args
[1]);
628 mask
= talloc_append_string(ctx
, mask
, "\\");
632 if (ctx
->cli
->tree
->session
->transport
->negotiate
.protocol
<=
634 mask
= talloc_append_string(ctx
, mask
, "*.*");
636 mask
= talloc_append_string(ctx
, mask
, "*");
640 do_list(ctx
, mask
, attribute
, display_finfo
, ctx
->recurse
, true);
642 rc
= do_dskattr(ctx
);
644 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total
));
650 /****************************************************************************
651 get a directory listing
652 ****************************************************************************/
653 static int cmd_du(struct smbclient_context
*ctx
, const char **args
)
655 uint16_t attribute
= FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
662 if (args
[1][0] == '\\')
663 mask
= talloc_strdup(ctx
, args
[1]);
665 mask
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, args
[1]);
668 mask
= talloc_asprintf(ctx
, "%s\\*", ctx
->remote_cur_dir
);
671 do_list(ctx
, mask
, attribute
, do_du
, ctx
->recurse
, true);
675 rc
= do_dskattr(ctx
);
677 d_printf("Total number of bytes: %.0f\n", dir_total
);
683 /****************************************************************************
684 get a file from rname to lname
685 ****************************************************************************/
686 static int do_get(struct smbclient_context
*ctx
, char *rname
, const char *p_lname
, bool reget
)
688 int handle
= 0, fnum
;
689 bool newhandle
= false;
691 struct timeval tp_start
;
692 int read_size
= ctx
->io_bufsize
;
701 GetTimeOfDay(&tp_start
);
703 if (ctx
->lowercase
) {
704 lname
= strlower_talloc(ctx
, p_lname
);
706 lname
= talloc_strdup(ctx
, p_lname
);
709 fnum
= smbcli_open(ctx
->cli
->tree
, rname
, O_RDONLY
, DENY_NONE
);
712 d_printf("%s opening remote file %s\n",smbcli_errstr(ctx
->cli
->tree
),rname
);
716 if(!strcmp(lname
,"-")) {
717 handle
= fileno(stdout
);
720 handle
= open(lname
, O_WRONLY
|O_CREAT
, 0644);
722 start
= lseek(handle
, 0, SEEK_END
);
724 d_printf("Error seeking local file\n");
729 handle
= open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
734 d_printf("Error opening local file %s\n",lname
);
739 if (NT_STATUS_IS_ERR(smbcli_qfileinfo(ctx
->cli
->tree
, fnum
,
740 &attr
, &size
, NULL
, NULL
, NULL
, NULL
, NULL
)) &&
741 NT_STATUS_IS_ERR(smbcli_getattrE(ctx
->cli
->tree
, fnum
,
742 &attr
, &size
, NULL
, NULL
, NULL
))) {
743 d_printf("getattrib: %s\n",smbcli_errstr(ctx
->cli
->tree
));
747 DEBUG(2,("getting file %s of size %.0f as %s ",
748 rname
, (double)size
, lname
));
750 if(!(data
= (uint8_t *)malloc(read_size
))) {
751 d_printf("malloc fail for size %d\n", read_size
);
752 smbcli_close(ctx
->cli
->tree
, fnum
);
757 int n
= smbcli_read(ctx
->cli
->tree
, fnum
, data
, nread
+ start
, read_size
);
761 if (writefile(handle
,data
, n
, ctx
->translation
) != n
) {
762 d_printf("Error writing local file\n");
770 if (nread
+ start
< size
) {
771 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
772 rname
, (long)nread
));
779 if (NT_STATUS_IS_ERR(smbcli_close(ctx
->cli
->tree
, fnum
))) {
780 d_printf("Error %s closing remote file\n",smbcli_errstr(ctx
->cli
->tree
));
788 if (ctx
->archive_level
>= 2 && (attr
& FILE_ATTRIBUTE_ARCHIVE
)) {
789 smbcli_setatr(ctx
->cli
->tree
, rname
, attr
& ~(uint16_t)FILE_ATTRIBUTE_ARCHIVE
, 0);
793 struct timeval tp_end
;
796 GetTimeOfDay(&tp_end
);
798 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
799 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
800 get_total_time_ms
+= this_time
;
801 get_total_size
+= nread
;
803 DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
804 nread
/ (1.024*this_time
+ 1.0e-4),
805 get_total_size
/ (1.024*get_total_time_ms
)));
812 /****************************************************************************
814 ****************************************************************************/
815 static int cmd_get(struct smbclient_context
*ctx
, const char **args
)
821 d_printf("get <filename>\n");
825 rname
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, args
[1]);
832 dos_clean_name(rname
);
834 return do_get(ctx
, rname
, lname
, false);
837 /****************************************************************************
838 Put up a yes/no prompt.
839 ****************************************************************************/
840 static bool yesno(char *p
)
845 if (!fgets(ans
,sizeof(ans
)-1,stdin
))
848 if (*ans
== 'y' || *ans
== 'Y')
854 /****************************************************************************
855 do a mget operation on one file
856 ****************************************************************************/
857 static void do_mget(struct smbclient_context
*ctx
, struct clilist_file_info
*finfo
)
865 if (ISDOT(finfo
->name
) || ISDOTDOT(finfo
->name
))
868 if (finfo
->attrib
& FILE_ATTRIBUTE_DIRECTORY
)
869 quest
= talloc_asprintf(ctx
, "Get directory %s? ",finfo
->name
);
871 quest
= talloc_asprintf(ctx
, "Get file %s? ",finfo
->name
);
873 if (ctx
->prompt
&& !yesno(quest
)) return;
877 if (!(finfo
->attrib
& FILE_ATTRIBUTE_DIRECTORY
)) {
878 rname
= talloc_asprintf(ctx
, "%s%s",ctx
->remote_cur_dir
,
880 do_get(ctx
, rname
, finfo
->name
, false);
885 /* handle directories */
886 saved_curdir
= talloc_strdup(ctx
, ctx
->remote_cur_dir
);
888 ctx
->remote_cur_dir
= talloc_asprintf_append_buffer(NULL
, "%s\\", finfo
->name
);
890 if (ctx
->lowercase
) {
891 l_fname
= strlower_talloc(ctx
, finfo
->name
);
893 l_fname
= talloc_strdup(ctx
, finfo
->name
);
896 string_replace(l_fname
, '\\', '/');
898 if (!directory_exist(l_fname
) &&
899 mkdir(l_fname
, 0777) != 0) {
900 d_printf("failed to create directory %s\n", l_fname
);
904 if (chdir(l_fname
) != 0) {
905 d_printf("failed to chdir to directory %s\n", l_fname
);
909 mget_mask
= talloc_asprintf(ctx
, "%s*", ctx
->remote_cur_dir
);
911 do_list(ctx
, mget_mask
, FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
| FILE_ATTRIBUTE_DIRECTORY
,do_mget
,false, true);
913 talloc_free(ctx
->remote_cur_dir
);
915 ctx
->remote_cur_dir
= saved_curdir
;
919 /****************************************************************************
920 view the file using the pager
921 ****************************************************************************/
922 static int cmd_more(struct smbclient_context
*ctx
, const char **args
)
931 lname
= talloc_asprintf(ctx
, "%s/smbmore.XXXXXX",tmpdir());
934 d_printf("failed to create temporary file for more\n");
940 d_printf("more <filename>\n");
944 rname
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
945 dos_clean_name(rname
);
947 rc
= do_get(ctx
, rname
, lname
, false);
949 pager
=getenv("PAGER");
951 pager_cmd
= talloc_asprintf(ctx
, "%s %s",(pager
? pager
:DEFAULT_PAGER
), lname
);
960 /****************************************************************************
962 ****************************************************************************/
963 static int cmd_mget(struct smbclient_context
*ctx
, const char **args
)
965 uint16_t attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
966 char *mget_mask
= NULL
;
970 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
972 for (i
= 1; args
[i
]; i
++) {
973 mget_mask
= talloc_strdup(ctx
, ctx
->remote_cur_dir
);
974 if(mget_mask
[strlen(mget_mask
)-1]!='\\')
975 mget_mask
= talloc_append_string(ctx
, mget_mask
, "\\");
977 mget_mask
= talloc_strdup(ctx
, args
[i
]);
978 if (mget_mask
[0] != '\\')
979 mget_mask
= talloc_append_string(ctx
, mget_mask
, "\\");
980 do_list(ctx
, mget_mask
, attribute
,do_mget
,false,true);
982 talloc_free(mget_mask
);
985 if (mget_mask
== NULL
) {
986 mget_mask
= talloc_asprintf(ctx
, "%s\\*", ctx
->remote_cur_dir
);
987 do_list(ctx
, mget_mask
, attribute
,do_mget
,false,true);
988 talloc_free(mget_mask
);
995 /****************************************************************************
996 make a directory of name "name"
997 ****************************************************************************/
998 static NTSTATUS
do_mkdir(struct smbclient_context
*ctx
, char *name
)
1002 if (NT_STATUS_IS_ERR(status
= smbcli_mkdir(ctx
->cli
->tree
, name
))) {
1003 d_printf("%s making remote directory %s\n",
1004 smbcli_errstr(ctx
->cli
->tree
),name
);
1012 /****************************************************************************
1014 ****************************************************************************/
1015 static int cmd_quit(struct smbclient_context
*ctx
, const char **args
)
1024 /****************************************************************************
1026 ****************************************************************************/
1027 static int cmd_mkdir(struct smbclient_context
*ctx
, const char **args
)
1033 d_printf("mkdir <dirname>\n");
1037 mask
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
,args
[1]);
1040 dos_clean_name(mask
);
1042 trim_string(mask
,".",NULL
);
1043 for (p
= strtok(mask
,"/\\"); p
; p
= strtok(p
, "/\\")) {
1044 char *parent
= talloc_strndup(ctx
, mask
, PTR_DIFF(p
, mask
));
1046 if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx
->cli
->tree
, parent
))) {
1047 do_mkdir(ctx
, parent
);
1050 talloc_free(parent
);
1053 do_mkdir(ctx
, mask
);
1059 /****************************************************************************
1060 show 8.3 name of a file
1061 ****************************************************************************/
1062 static int cmd_altname(struct smbclient_context
*ctx
, const char **args
)
1064 const char *altname
;
1068 d_printf("altname <file>\n");
1072 name
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
1074 if (!NT_STATUS_IS_OK(smbcli_qpathinfo_alt_name(ctx
->cli
->tree
, name
, &altname
))) {
1075 d_printf("%s getting alt name for %s\n",
1076 smbcli_errstr(ctx
->cli
->tree
),name
);
1079 d_printf("%s\n", altname
);
1085 /****************************************************************************
1087 ****************************************************************************/
1088 static int do_put(struct smbclient_context
*ctx
, char *rname
, char *lname
, bool reput
)
1094 uint8_t *buf
= NULL
;
1095 int maxwrite
= ctx
->io_bufsize
;
1098 struct timeval tp_start
;
1099 GetTimeOfDay(&tp_start
);
1102 fnum
= smbcli_open(ctx
->cli
->tree
, rname
, O_RDWR
|O_CREAT
, DENY_NONE
);
1104 if (NT_STATUS_IS_ERR(smbcli_qfileinfo(ctx
->cli
->tree
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
, NULL
, NULL
)) &&
1105 NT_STATUS_IS_ERR(smbcli_getattrE(ctx
->cli
->tree
, fnum
, NULL
, &start
, NULL
, NULL
, NULL
))) {
1106 d_printf("getattrib: %s\n",smbcli_errstr(ctx
->cli
->tree
));
1111 fnum
= smbcli_open(ctx
->cli
->tree
, rname
, O_RDWR
|O_CREAT
|O_TRUNC
,
1116 d_printf("%s opening remote file %s\n",smbcli_errstr(ctx
->cli
->tree
),rname
);
1120 /* allow files to be piped into smbclient
1123 Note that in this case this function will exit(0) rather
1125 if (!strcmp(lname
, "-")) {
1127 /* size of file is not known */
1129 f
= x_fopen(lname
,O_RDONLY
, 0);
1131 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1132 d_printf("Error seeking local file\n");
1139 d_printf("Error opening local file %s\n",lname
);
1144 DEBUG(1,("putting file %s as %s ",lname
,
1147 buf
= (uint8_t *)malloc(maxwrite
);
1149 d_printf("ERROR: Not enough memory!\n");
1152 while (!x_feof(f
)) {
1156 if ((n
= readfile(buf
,n
,f
,ctx
->translation
)) < 1) {
1157 if((n
== 0) && x_feof(f
))
1158 break; /* Empty local file. */
1160 d_printf("Error reading local file: %s\n", strerror(errno
));
1165 ret
= smbcli_write(ctx
->cli
->tree
, fnum
, 0, buf
, nread
+ start
, n
);
1168 d_printf("Error writing file: %s\n", smbcli_errstr(ctx
->cli
->tree
));
1176 if (NT_STATUS_IS_ERR(smbcli_close(ctx
->cli
->tree
, fnum
))) {
1177 d_printf("%s closing remote file %s\n",smbcli_errstr(ctx
->cli
->tree
),rname
);
1191 struct timeval tp_end
;
1194 GetTimeOfDay(&tp_end
);
1196 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1197 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1198 put_total_time_ms
+= this_time
;
1199 put_total_size
+= nread
;
1201 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1202 nread
/ (1.024*this_time
+ 1.0e-4),
1203 put_total_size
/ (1.024*put_total_time_ms
)));
1216 /****************************************************************************
1218 ****************************************************************************/
1219 static int cmd_put(struct smbclient_context
*ctx
, const char **args
)
1225 d_printf("put <filename> [<remotename>]\n");
1229 lname
= talloc_strdup(ctx
, args
[1]);
1232 if (args
[2][0]=='\\')
1233 rname
= talloc_strdup(ctx
, args
[2]);
1235 rname
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, args
[2]);
1237 rname
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, lname
);
1240 dos_clean_name(rname
);
1242 /* allow '-' to represent stdin
1243 jdblair, 24.jun.98 */
1244 if (!file_exist(lname
) && (strcmp(lname
,"-"))) {
1245 d_printf("%s does not exist\n",lname
);
1249 return do_put(ctx
, rname
, lname
, false);
1252 /*************************************
1254 *************************************/
1256 static struct file_list
{
1257 struct file_list
*prev
, *next
;
1262 /****************************************************************************
1263 Free a file_list structure
1264 ****************************************************************************/
1266 static void free_file_list (struct file_list
* list
)
1268 struct file_list
*tmp
;
1273 DLIST_REMOVE(list
, list
);
1274 SAFE_FREE(tmp
->file_path
);
1279 /****************************************************************************
1280 seek in a directory/file list until you get something that doesn't start with
1282 ****************************************************************************/
1283 static bool seek_list(struct file_list
*list
, char *name
)
1286 trim_string(list
->file_path
,"./","\n");
1287 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1296 /****************************************************************************
1297 set the file selection mask
1298 ****************************************************************************/
1299 static int cmd_select(struct smbclient_context
*ctx
, const char **args
)
1301 talloc_free(ctx
->fileselection
);
1302 ctx
->fileselection
= talloc_strdup(ctx
, args
[1]);
1307 /*******************************************************************
1308 A readdir wrapper which just returns the file name.
1309 ********************************************************************/
1310 static const char *readdirname(DIR *p
)
1318 ptr
= (struct dirent
*)readdir(p
);
1322 dname
= ptr
->d_name
;
1329 #ifdef HAVE_BROKEN_READDIR
1330 /* using /usr/ucb/cc is BAD */
1336 int len
= NAMLEN(ptr
);
1337 buf
= talloc_strndup(NULL
, dname
, len
);
1344 /****************************************************************************
1345 Recursive file matching function act as find
1346 match must be always set to true when calling this function
1347 ****************************************************************************/
1348 static int file_find(struct smbclient_context
*ctx
, struct file_list
**list
, const char *directory
,
1349 const char *expression
, bool match
)
1352 struct file_list
*entry
;
1353 struct stat statbuf
;
1359 dir
= opendir(directory
);
1360 if (!dir
) return -1;
1362 while ((dname
= readdirname(dir
))) {
1363 if (ISDOT(dname
) || ISDOTDOT(dname
)) {
1367 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1372 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1374 ret
= stat(path
, &statbuf
);
1376 if (S_ISDIR(statbuf
.st_mode
)) {
1378 ret
= file_find(ctx
, list
, path
, expression
, false);
1381 d_printf("file_find: cannot stat file %s\n", path
);
1390 entry
= malloc_p(struct file_list
);
1392 d_printf("Out of memory in file_find\n");
1396 entry
->file_path
= path
;
1397 entry
->isdir
= isdir
;
1398 DLIST_ADD(*list
, entry
);
1408 /****************************************************************************
1410 ****************************************************************************/
1411 static int cmd_mput(struct smbclient_context
*ctx
, const char **args
)
1415 for (i
= 1; args
[i
]; i
++) {
1417 struct file_list
*temp_list
;
1418 char *quest
, *lname
, *rname
;
1420 printf("%s\n", args
[i
]);
1424 ret
= file_find(ctx
, &file_list
, ".", args
[i
], true);
1426 free_file_list(file_list
);
1434 for (temp_list
= file_list
; temp_list
;
1435 temp_list
= temp_list
->next
) {
1438 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0)
1440 trim_string(lname
, "./", "/");
1442 /* check if it's a directory */
1443 if (temp_list
->isdir
) {
1444 /* if (!recurse) continue; */
1447 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) break;
1448 if (ctx
->prompt
&& !yesno(quest
)) { /* No */
1449 /* Skip the directory */
1450 lname
[strlen(lname
)-1] = '/';
1451 if (!seek_list(temp_list
, lname
))
1455 if(asprintf(&rname
, "%s%s", ctx
->remote_cur_dir
, lname
) < 0) break;
1457 if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx
->cli
->tree
, rname
)) &&
1458 NT_STATUS_IS_ERR(do_mkdir(ctx
, rname
))) {
1459 DEBUG (0, ("Unable to make dir, skipping..."));
1460 /* Skip the directory */
1461 lname
[strlen(lname
)-1] = '/';
1462 if (!seek_list(temp_list
, lname
))
1469 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) break;
1470 if (ctx
->prompt
&& !yesno(quest
)) /* No */
1475 if (asprintf(&rname
, "%s%s", ctx
->remote_cur_dir
, lname
) < 0) break;
1480 do_put(ctx
, rname
, lname
, false);
1482 free_file_list(file_list
);
1492 /****************************************************************************
1494 ****************************************************************************/
1495 static int cmd_print(struct smbclient_context
*ctx
, const char **args
)
1497 char *lname
, *rname
;
1501 d_printf("print <filename>\n");
1505 lname
= talloc_strdup(ctx
, args
[1]);
1507 rname
= talloc_strdup(ctx
, lname
);
1508 p
= strrchr_m(rname
,'/');
1510 slprintf(rname
, sizeof(rname
)-1, "%s-%d", p
+1, (int)getpid());
1513 if (strequal(lname
,"-")) {
1514 slprintf(rname
, sizeof(rname
)-1, "stdin-%d", (int)getpid());
1517 return do_put(ctx
, rname
, lname
, false);
1521 static int cmd_rewrite(struct smbclient_context
*ctx
, const char **args
)
1523 d_printf("REWRITE: command not implemented (FIXME!)\n");
1528 /****************************************************************************
1530 ****************************************************************************/
1531 static int cmd_del(struct smbclient_context
*ctx
, const char **args
)
1534 uint16_t attribute
= FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
;
1537 attribute
|= FILE_ATTRIBUTE_DIRECTORY
;
1540 d_printf("del <filename>\n");
1543 mask
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
1545 if (NT_STATUS_IS_ERR(smbcli_unlink(ctx
->cli
->tree
, mask
))) {
1546 d_printf("%s deleting remote file %s\n",smbcli_errstr(ctx
->cli
->tree
),mask
);
1553 /****************************************************************************
1554 delete a whole directory tree
1555 ****************************************************************************/
1556 static int cmd_deltree(struct smbclient_context
*ctx
, const char **args
)
1562 d_printf("deltree <dirname>\n");
1566 dname
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
1568 ret
= smbcli_deltree(ctx
->cli
->tree
, dname
);
1571 printf("Failed to delete tree %s - %s\n", dname
, smbcli_errstr(ctx
->cli
->tree
));
1575 printf("Deleted %d files in %s\n", ret
, dname
);
1581 const char *level_name
;
1582 enum smb_fsinfo_level level
;
1585 fsinfo_level_t fsinfo_levels
[] = {
1586 {"dskattr", RAW_QFS_DSKATTR
},
1587 {"allocation", RAW_QFS_ALLOCATION
},
1588 {"volume", RAW_QFS_VOLUME
},
1589 {"volumeinfo", RAW_QFS_VOLUME_INFO
},
1590 {"sizeinfo", RAW_QFS_SIZE_INFO
},
1591 {"deviceinfo", RAW_QFS_DEVICE_INFO
},
1592 {"attributeinfo", RAW_QFS_ATTRIBUTE_INFO
},
1593 {"unixinfo", RAW_QFS_UNIX_INFO
},
1594 {"volume-information", RAW_QFS_VOLUME_INFORMATION
},
1595 {"size-information", RAW_QFS_SIZE_INFORMATION
},
1596 {"device-information", RAW_QFS_DEVICE_INFORMATION
},
1597 {"attribute-information", RAW_QFS_ATTRIBUTE_INFORMATION
},
1598 {"quota-information", RAW_QFS_QUOTA_INFORMATION
},
1599 {"fullsize-information", RAW_QFS_FULL_SIZE_INFORMATION
},
1600 {"objectid", RAW_QFS_OBJECTID_INFORMATION
},
1601 {NULL
, RAW_QFS_GENERIC
}
1605 static int cmd_fsinfo(struct smbclient_context
*ctx
, const char **args
)
1607 union smb_fsinfo fsinfo
;
1609 fsinfo_level_t
*fsinfo_level
;
1612 d_printf("fsinfo <level>, where level is one of following:\n");
1613 fsinfo_level
= fsinfo_levels
;
1614 while(fsinfo_level
->level_name
) {
1615 d_printf("%s\n", fsinfo_level
->level_name
);
1621 fsinfo_level
= fsinfo_levels
;
1622 while(fsinfo_level
->level_name
&& !strequal(args
[1],fsinfo_level
->level_name
)) {
1626 if (!fsinfo_level
->level_name
) {
1627 d_printf("wrong level name!\n");
1631 fsinfo
.generic
.level
= fsinfo_level
->level
;
1632 status
= smb_raw_fsinfo(ctx
->cli
->tree
, ctx
, &fsinfo
);
1633 if (!NT_STATUS_IS_OK(status
)) {
1634 d_printf("fsinfo-level-%s - %s\n", fsinfo_level
->level_name
, nt_errstr(status
));
1638 d_printf("fsinfo-level-%s:\n", fsinfo_level
->level_name
);
1639 switch(fsinfo
.generic
.level
) {
1640 case RAW_QFS_DSKATTR
:
1641 d_printf("\tunits_total: %hu\n",
1642 (unsigned short) fsinfo
.dskattr
.out
.units_total
);
1643 d_printf("\tblocks_per_unit: %hu\n",
1644 (unsigned short) fsinfo
.dskattr
.out
.blocks_per_unit
);
1645 d_printf("\tblocks_size: %hu\n",
1646 (unsigned short) fsinfo
.dskattr
.out
.block_size
);
1647 d_printf("\tunits_free: %hu\n",
1648 (unsigned short) fsinfo
.dskattr
.out
.units_free
);
1650 case RAW_QFS_ALLOCATION
:
1651 d_printf("\tfs_id: %lu\n",
1652 (unsigned long) fsinfo
.allocation
.out
.fs_id
);
1653 d_printf("\tsectors_per_unit: %lu\n",
1654 (unsigned long) fsinfo
.allocation
.out
.sectors_per_unit
);
1655 d_printf("\ttotal_alloc_units: %lu\n",
1656 (unsigned long) fsinfo
.allocation
.out
.total_alloc_units
);
1657 d_printf("\tavail_alloc_units: %lu\n",
1658 (unsigned long) fsinfo
.allocation
.out
.avail_alloc_units
);
1659 d_printf("\tbytes_per_sector: %hu\n",
1660 (unsigned short) fsinfo
.allocation
.out
.bytes_per_sector
);
1662 case RAW_QFS_VOLUME
:
1663 d_printf("\tserial_number: %lu\n",
1664 (unsigned long) fsinfo
.volume
.out
.serial_number
);
1665 d_printf("\tvolume_name: %s\n", fsinfo
.volume
.out
.volume_name
.s
);
1667 case RAW_QFS_VOLUME_INFO
:
1668 case RAW_QFS_VOLUME_INFORMATION
:
1669 d_printf("\tcreate_time: %s\n",
1670 nt_time_string(ctx
,fsinfo
.volume_info
.out
.create_time
));
1671 d_printf("\tserial_number: %lu\n",
1672 (unsigned long) fsinfo
.volume_info
.out
.serial_number
);
1673 d_printf("\tvolume_name: %s\n", fsinfo
.volume_info
.out
.volume_name
.s
);
1675 case RAW_QFS_SIZE_INFO
:
1676 case RAW_QFS_SIZE_INFORMATION
:
1677 d_printf("\ttotal_alloc_units: %llu\n",
1678 (unsigned long long) fsinfo
.size_info
.out
.total_alloc_units
);
1679 d_printf("\tavail_alloc_units: %llu\n",
1680 (unsigned long long) fsinfo
.size_info
.out
.avail_alloc_units
);
1681 d_printf("\tsectors_per_unit: %lu\n",
1682 (unsigned long) fsinfo
.size_info
.out
.sectors_per_unit
);
1683 d_printf("\tbytes_per_sector: %lu\n",
1684 (unsigned long) fsinfo
.size_info
.out
.bytes_per_sector
);
1686 case RAW_QFS_DEVICE_INFO
:
1687 case RAW_QFS_DEVICE_INFORMATION
:
1688 d_printf("\tdevice_type: %lu\n",
1689 (unsigned long) fsinfo
.device_info
.out
.device_type
);
1690 d_printf("\tcharacteristics: 0x%lx\n",
1691 (unsigned long) fsinfo
.device_info
.out
.characteristics
);
1693 case RAW_QFS_ATTRIBUTE_INFORMATION
:
1694 case RAW_QFS_ATTRIBUTE_INFO
:
1695 d_printf("\tfs_attr: 0x%lx\n",
1696 (unsigned long) fsinfo
.attribute_info
.out
.fs_attr
);
1697 d_printf("\tmax_file_component_length: %lu\n",
1698 (unsigned long) fsinfo
.attribute_info
.out
.max_file_component_length
);
1699 d_printf("\tfs_type: %s\n", fsinfo
.attribute_info
.out
.fs_type
.s
);
1701 case RAW_QFS_UNIX_INFO
:
1702 d_printf("\tmajor_version: %hu\n",
1703 (unsigned short) fsinfo
.unix_info
.out
.major_version
);
1704 d_printf("\tminor_version: %hu\n",
1705 (unsigned short) fsinfo
.unix_info
.out
.minor_version
);
1706 d_printf("\tcapability: 0x%llx\n",
1707 (unsigned long long) fsinfo
.unix_info
.out
.capability
);
1709 case RAW_QFS_QUOTA_INFORMATION
:
1710 d_printf("\tunknown[3]: [%llu,%llu,%llu]\n",
1711 (unsigned long long) fsinfo
.quota_information
.out
.unknown
[0],
1712 (unsigned long long) fsinfo
.quota_information
.out
.unknown
[1],
1713 (unsigned long long) fsinfo
.quota_information
.out
.unknown
[2]);
1714 d_printf("\tquota_soft: %llu\n",
1715 (unsigned long long) fsinfo
.quota_information
.out
.quota_soft
);
1716 d_printf("\tquota_hard: %llu\n",
1717 (unsigned long long) fsinfo
.quota_information
.out
.quota_hard
);
1718 d_printf("\tquota_flags: 0x%llx\n",
1719 (unsigned long long) fsinfo
.quota_information
.out
.quota_flags
);
1721 case RAW_QFS_FULL_SIZE_INFORMATION
:
1722 d_printf("\ttotal_alloc_units: %llu\n",
1723 (unsigned long long) fsinfo
.full_size_information
.out
.total_alloc_units
);
1724 d_printf("\tcall_avail_alloc_units: %llu\n",
1725 (unsigned long long) fsinfo
.full_size_information
.out
.call_avail_alloc_units
);
1726 d_printf("\tactual_avail_alloc_units: %llu\n",
1727 (unsigned long long) fsinfo
.full_size_information
.out
.actual_avail_alloc_units
);
1728 d_printf("\tsectors_per_unit: %lu\n",
1729 (unsigned long) fsinfo
.full_size_information
.out
.sectors_per_unit
);
1730 d_printf("\tbytes_per_sector: %lu\n",
1731 (unsigned long) fsinfo
.full_size_information
.out
.bytes_per_sector
);
1733 case RAW_QFS_OBJECTID_INFORMATION
:
1734 d_printf("\tGUID: %s\n",
1735 GUID_string(ctx
,&fsinfo
.objectid_information
.out
.guid
));
1736 d_printf("\tunknown[6]: [%llu,%llu,%llu,%llu,%llu,%llu]\n",
1737 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[0],
1738 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[1],
1739 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[2],
1740 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[3],
1741 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[4],
1742 (unsigned long long) fsinfo
.objectid_information
.out
.unknown
[5] );
1744 case RAW_QFS_GENERIC
:
1745 d_printf("\twrong level returned\n");
1752 /****************************************************************************
1753 show as much information as possible about a file
1754 ****************************************************************************/
1755 static int cmd_allinfo(struct smbclient_context
*ctx
, const char **args
)
1758 union smb_fileinfo finfo
;
1763 d_printf("allinfo <filename>\n");
1766 fname
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
1768 /* first a ALL_INFO QPATHINFO */
1769 finfo
.generic
.level
= RAW_FILEINFO_ALL_INFO
;
1770 finfo
.generic
.in
.file
.path
= fname
;
1771 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1772 if (!NT_STATUS_IS_OK(status
)) {
1773 d_printf("%s - %s\n", fname
, nt_errstr(status
));
1777 d_printf("\tcreate_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.create_time
));
1778 d_printf("\taccess_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.access_time
));
1779 d_printf("\twrite_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.write_time
));
1780 d_printf("\tchange_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.change_time
));
1781 d_printf("\tattrib: 0x%x\n", finfo
.all_info
.out
.attrib
);
1782 d_printf("\talloc_size: %lu\n", (unsigned long)finfo
.all_info
.out
.alloc_size
);
1783 d_printf("\tsize: %lu\n", (unsigned long)finfo
.all_info
.out
.size
);
1784 d_printf("\tnlink: %u\n", finfo
.all_info
.out
.nlink
);
1785 d_printf("\tdelete_pending: %u\n", finfo
.all_info
.out
.delete_pending
);
1786 d_printf("\tdirectory: %u\n", finfo
.all_info
.out
.directory
);
1787 d_printf("\tea_size: %u\n", finfo
.all_info
.out
.ea_size
);
1788 d_printf("\tfname: '%s'\n", finfo
.all_info
.out
.fname
.s
);
1790 /* 8.3 name if any */
1791 finfo
.generic
.level
= RAW_FILEINFO_ALT_NAME_INFO
;
1792 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1793 if (NT_STATUS_IS_OK(status
)) {
1794 d_printf("\talt_name: %s\n", finfo
.alt_name_info
.out
.fname
.s
);
1797 /* file_id if available */
1798 finfo
.generic
.level
= RAW_FILEINFO_INTERNAL_INFORMATION
;
1799 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1800 if (NT_STATUS_IS_OK(status
)) {
1801 d_printf("\tfile_id %.0f\n",
1802 (double)finfo
.internal_information
.out
.file_id
);
1805 /* the EAs, if any */
1806 finfo
.generic
.level
= RAW_FILEINFO_ALL_EAS
;
1807 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1808 if (NT_STATUS_IS_OK(status
)) {
1810 for (i
=0;i
<finfo
.all_eas
.out
.num_eas
;i
++) {
1811 d_printf("\tEA[%d] flags=%d len=%d '%s'\n", i
,
1812 finfo
.all_eas
.out
.eas
[i
].flags
,
1813 (int)finfo
.all_eas
.out
.eas
[i
].value
.length
,
1814 finfo
.all_eas
.out
.eas
[i
].name
.s
);
1818 /* streams, if available */
1819 finfo
.generic
.level
= RAW_FILEINFO_STREAM_INFO
;
1820 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1821 if (NT_STATUS_IS_OK(status
)) {
1823 for (i
=0;i
<finfo
.stream_info
.out
.num_streams
;i
++) {
1824 d_printf("\tstream %d:\n", i
);
1825 d_printf("\t\tsize %ld\n",
1826 (long)finfo
.stream_info
.out
.streams
[i
].size
);
1827 d_printf("\t\talloc size %ld\n",
1828 (long)finfo
.stream_info
.out
.streams
[i
].alloc_size
);
1829 d_printf("\t\tname %s\n", finfo
.stream_info
.out
.streams
[i
].stream_name
.s
);
1833 /* dev/inode if available */
1834 finfo
.generic
.level
= RAW_FILEINFO_COMPRESSION_INFORMATION
;
1835 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1836 if (NT_STATUS_IS_OK(status
)) {
1837 d_printf("\tcompressed size %ld\n", (long)finfo
.compression_info
.out
.compressed_size
);
1838 d_printf("\tformat %ld\n", (long)finfo
.compression_info
.out
.format
);
1839 d_printf("\tunit_shift %ld\n", (long)finfo
.compression_info
.out
.unit_shift
);
1840 d_printf("\tchunk_shift %ld\n", (long)finfo
.compression_info
.out
.chunk_shift
);
1841 d_printf("\tcluster_shift %ld\n", (long)finfo
.compression_info
.out
.cluster_shift
);
1844 /* shadow copies if available */
1845 fnum
= smbcli_open(ctx
->cli
->tree
, fname
, O_RDONLY
, DENY_NONE
);
1847 struct smb_shadow_copy info
;
1849 info
.in
.file
.fnum
= fnum
;
1850 info
.in
.max_data
= ~0;
1851 status
= smb_raw_shadow_data(ctx
->cli
->tree
, ctx
, &info
);
1852 if (NT_STATUS_IS_OK(status
)) {
1853 d_printf("\tshadow_copy: %u volumes %u names\n",
1854 info
.out
.num_volumes
, info
.out
.num_names
);
1855 for (i
=0;i
<info
.out
.num_names
;i
++) {
1856 d_printf("\t%s\n", info
.out
.names
[i
]);
1857 finfo
.generic
.level
= RAW_FILEINFO_ALL_INFO
;
1858 finfo
.generic
.in
.file
.path
= talloc_asprintf(ctx
, "%s%s",
1859 info
.out
.names
[i
], fname
);
1860 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1861 if (NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_PATH_NOT_FOUND
) ||
1862 NT_STATUS_EQUAL(status
, NT_STATUS_OBJECT_NAME_NOT_FOUND
)) {
1865 if (!NT_STATUS_IS_OK(status
)) {
1866 d_printf("%s - %s\n", finfo
.generic
.in
.file
.path
,
1871 d_printf("\t\tcreate_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.create_time
));
1872 d_printf("\t\twrite_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.write_time
));
1873 d_printf("\t\tchange_time: %s\n", nt_time_string(ctx
, finfo
.all_info
.out
.change_time
));
1874 d_printf("\t\tsize: %lu\n", (unsigned long)finfo
.all_info
.out
.size
);
1883 /****************************************************************************
1885 ****************************************************************************/
1886 static int cmd_eainfo(struct smbclient_context
*ctx
, const char **args
)
1889 union smb_fileinfo finfo
;
1894 d_printf("eainfo <filename>\n");
1897 fname
= talloc_strdup(ctx
, args
[1]);
1899 finfo
.generic
.level
= RAW_FILEINFO_ALL_EAS
;
1900 finfo
.generic
.in
.file
.path
= fname
;
1901 status
= smb_raw_pathinfo(ctx
->cli
->tree
, ctx
, &finfo
);
1903 if (!NT_STATUS_IS_OK(status
)) {
1904 d_printf("RAW_FILEINFO_ALL_EAS - %s\n", nt_errstr(status
));
1908 d_printf("%s has %d EAs\n", fname
, finfo
.all_eas
.out
.num_eas
);
1910 for (i
=0;i
<finfo
.all_eas
.out
.num_eas
;i
++) {
1911 d_printf("\tEA[%d] flags=%d len=%d '%s'\n", i
,
1912 finfo
.all_eas
.out
.eas
[i
].flags
,
1913 (int)finfo
.all_eas
.out
.eas
[i
].value
.length
,
1914 finfo
.all_eas
.out
.eas
[i
].name
.s
);
1917 finfo
.all_eas
.out
.eas
[i
].value
.data
,
1918 finfo
.all_eas
.out
.eas
[i
].value
.length
);
1925 /****************************************************************************
1926 show any ACL on a file
1927 ****************************************************************************/
1928 static int cmd_acl(struct smbclient_context
*ctx
, const char **args
)
1931 union smb_fileinfo query
;
1936 d_printf("acl <filename>\n");
1939 fname
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
1941 fnum
= smbcli_nt_create_full(ctx
->cli
->tree
, fname
, 0,
1942 SEC_STD_READ_CONTROL
,
1944 NTCREATEX_SHARE_ACCESS_DELETE
|
1945 NTCREATEX_SHARE_ACCESS_READ
|
1946 NTCREATEX_SHARE_ACCESS_WRITE
,
1947 NTCREATEX_DISP_OPEN
,
1950 d_printf("%s - %s\n", fname
, smbcli_errstr(ctx
->cli
->tree
));
1954 query
.query_secdesc
.level
= RAW_FILEINFO_SEC_DESC
;
1955 query
.query_secdesc
.in
.file
.fnum
= fnum
;
1956 query
.query_secdesc
.in
.secinfo_flags
= 0x7;
1958 status
= smb_raw_fileinfo(ctx
->cli
->tree
, ctx
, &query
);
1959 if (!NT_STATUS_IS_OK(status
)) {
1960 d_printf("%s - %s\n", fname
, nt_errstr(status
));
1964 NDR_PRINT_DEBUG(security_descriptor
, query
.query_secdesc
.out
.sd
);
1969 /****************************************************************************
1970 lookup a name or sid
1971 ****************************************************************************/
1972 static int cmd_lookup(struct smbclient_context
*ctx
, const char **args
)
1975 struct dom_sid
*sid
;
1978 d_printf("lookup <sid|name>\n");
1982 sid
= dom_sid_parse_talloc(ctx
, args
[1]);
1985 status
= smblsa_lookup_name(ctx
->cli
, args
[1], ctx
, &sidstr
);
1986 if (!NT_STATUS_IS_OK(status
)) {
1987 d_printf("lsa_LookupNames - %s\n", nt_errstr(status
));
1991 d_printf("%s\n", sidstr
);
1994 status
= smblsa_lookup_sid(ctx
->cli
, args
[1], ctx
, &name
);
1995 if (!NT_STATUS_IS_OK(status
)) {
1996 d_printf("lsa_LookupSids - %s\n", nt_errstr(status
));
2000 d_printf("%s\n", name
);
2006 /****************************************************************************
2007 show privileges for a user
2008 ****************************************************************************/
2009 static int cmd_privileges(struct smbclient_context
*ctx
, const char **args
)
2012 struct dom_sid
*sid
;
2013 struct lsa_RightSet rights
;
2017 d_printf("privileges <sid|name>\n");
2021 sid
= dom_sid_parse_talloc(ctx
, args
[1]);
2023 const char *sid_str
;
2024 status
= smblsa_lookup_name(ctx
->cli
, args
[1], ctx
, &sid_str
);
2025 if (!NT_STATUS_IS_OK(status
)) {
2026 d_printf("lsa_LookupNames - %s\n", nt_errstr(status
));
2029 sid
= dom_sid_parse_talloc(ctx
, sid_str
);
2032 status
= smblsa_sid_privileges(ctx
->cli
, sid
, ctx
, &rights
);
2033 if (!NT_STATUS_IS_OK(status
)) {
2034 d_printf("lsa_EnumAccountRights - %s\n", nt_errstr(status
));
2038 for (i
=0;i
<rights
.count
;i
++) {
2039 d_printf("\t%s\n", rights
.names
[i
].string
);
2046 /****************************************************************************
2047 add privileges for a user
2048 ****************************************************************************/
2049 static int cmd_addprivileges(struct smbclient_context
*ctx
, const char **args
)
2052 struct dom_sid
*sid
;
2053 struct lsa_RightSet rights
;
2057 d_printf("addprivileges <sid|name> <privilege...>\n");
2061 sid
= dom_sid_parse_talloc(ctx
, args
[1]);
2063 const char *sid_str
;
2064 status
= smblsa_lookup_name(ctx
->cli
, args
[1], ctx
, &sid_str
);
2065 if (!NT_STATUS_IS_OK(status
)) {
2066 d_printf("lsa_LookupNames - %s\n", nt_errstr(status
));
2069 sid
= dom_sid_parse_talloc(ctx
, sid_str
);
2072 ZERO_STRUCT(rights
);
2073 for (i
= 2; args
[i
]; i
++) {
2074 rights
.names
= talloc_realloc(ctx
, rights
.names
,
2075 struct lsa_StringLarge
, rights
.count
+1);
2076 rights
.names
[rights
.count
].string
= talloc_strdup(ctx
, args
[i
]);
2081 status
= smblsa_sid_add_privileges(ctx
->cli
, sid
, ctx
, &rights
);
2082 if (!NT_STATUS_IS_OK(status
)) {
2083 d_printf("lsa_AddAccountRights - %s\n", nt_errstr(status
));
2090 /****************************************************************************
2091 delete privileges for a user
2092 ****************************************************************************/
2093 static int cmd_delprivileges(struct smbclient_context
*ctx
, const char **args
)
2096 struct dom_sid
*sid
;
2097 struct lsa_RightSet rights
;
2101 d_printf("delprivileges <sid|name> <privilege...>\n");
2105 sid
= dom_sid_parse_talloc(ctx
, args
[1]);
2107 const char *sid_str
;
2108 status
= smblsa_lookup_name(ctx
->cli
, args
[1], ctx
, &sid_str
);
2109 if (!NT_STATUS_IS_OK(status
)) {
2110 d_printf("lsa_LookupNames - %s\n", nt_errstr(status
));
2113 sid
= dom_sid_parse_talloc(ctx
, sid_str
);
2116 ZERO_STRUCT(rights
);
2117 for (i
= 2; args
[i
]; i
++) {
2118 rights
.names
= talloc_realloc(ctx
, rights
.names
,
2119 struct lsa_StringLarge
, rights
.count
+1);
2120 rights
.names
[rights
.count
].string
= talloc_strdup(ctx
, args
[i
]);
2125 status
= smblsa_sid_del_privileges(ctx
->cli
, sid
, ctx
, &rights
);
2126 if (!NT_STATUS_IS_OK(status
)) {
2127 d_printf("lsa_RemoveAccountRights - %s\n", nt_errstr(status
));
2135 /****************************************************************************
2137 ****************************************************************************/
2138 static int cmd_open(struct smbclient_context
*ctx
, const char **args
)
2143 TALLOC_CTX
*tmp_ctx
;
2146 d_printf("open <filename>\n");
2149 tmp_ctx
= talloc_new(ctx
);
2151 filename
= talloc_asprintf(tmp_ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2153 io
.generic
.level
= RAW_OPEN_NTCREATEX
;
2154 io
.ntcreatex
.in
.root_fid
.fnum
= 0;
2155 io
.ntcreatex
.in
.flags
= 0;
2156 io
.ntcreatex
.in
.access_mask
= SEC_RIGHTS_FILE_ALL
;
2157 io
.ntcreatex
.in
.create_options
= 0;
2158 io
.ntcreatex
.in
.file_attr
= FILE_ATTRIBUTE_NORMAL
;
2159 io
.ntcreatex
.in
.share_access
= NTCREATEX_SHARE_ACCESS_READ
;
2160 io
.ntcreatex
.in
.alloc_size
= 0;
2161 io
.ntcreatex
.in
.open_disposition
= NTCREATEX_DISP_OPEN_IF
;
2162 io
.ntcreatex
.in
.impersonation
= NTCREATEX_IMPERSONATION_ANONYMOUS
;
2163 io
.ntcreatex
.in
.security_flags
= 0;
2164 io
.ntcreatex
.in
.fname
= filename
;
2166 status
= smb_raw_open(ctx
->cli
->tree
, tmp_ctx
, &io
);
2167 talloc_free(tmp_ctx
);
2169 if (NT_STATUS_IS_OK(status
)) {
2170 d_printf("Opened file with fnum %u\n", (unsigned)io
.ntcreatex
.out
.file
.fnum
);
2172 d_printf("Opened failed: %s\n", nt_errstr(status
));
2178 /****************************************************************************
2180 ****************************************************************************/
2181 static int cmd_close(struct smbclient_context
*ctx
, const char **args
)
2188 d_printf("close <fnum>\n");
2192 fnum
= atoi(args
[1]);
2195 io
.generic
.level
= RAW_CLOSE_CLOSE
;
2196 io
.close
.in
.file
.fnum
= fnum
;
2198 status
= smb_raw_close(ctx
->cli
->tree
, &io
);
2200 if (NT_STATUS_IS_OK(status
)) {
2201 d_printf("Closed file OK\n");
2203 d_printf("Close failed: %s\n", nt_errstr(status
));
2210 /****************************************************************************
2212 ****************************************************************************/
2213 static int cmd_rmdir(struct smbclient_context
*ctx
, const char **args
)
2218 d_printf("rmdir <dirname>\n");
2221 mask
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2223 if (NT_STATUS_IS_ERR(smbcli_rmdir(ctx
->cli
->tree
, mask
))) {
2224 d_printf("%s removing remote directory file %s\n",
2225 smbcli_errstr(ctx
->cli
->tree
),mask
);
2231 /****************************************************************************
2233 ****************************************************************************/
2234 static int cmd_link(struct smbclient_context
*ctx
, const char **args
)
2238 if (!(ctx
->cli
->transport
->negotiate
.capabilities
& CAP_UNIX
)) {
2239 d_printf("Server doesn't support UNIX CIFS calls.\n");
2244 if (!args
[1] || !args
[2]) {
2245 d_printf("link <src> <dest>\n");
2249 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2250 dest
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[2]);
2252 if (NT_STATUS_IS_ERR(smbcli_unix_hardlink(ctx
->cli
->tree
, src
, dest
))) {
2253 d_printf("%s linking files (%s -> %s)\n", smbcli_errstr(ctx
->cli
->tree
), src
, dest
);
2260 /****************************************************************************
2262 ****************************************************************************/
2264 static int cmd_symlink(struct smbclient_context
*ctx
, const char **args
)
2268 if (!(ctx
->cli
->transport
->negotiate
.capabilities
& CAP_UNIX
)) {
2269 d_printf("Server doesn't support UNIX CIFS calls.\n");
2273 if (!args
[1] || !args
[2]) {
2274 d_printf("symlink <src> <dest>\n");
2278 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2279 dest
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[2]);
2281 if (NT_STATUS_IS_ERR(smbcli_unix_symlink(ctx
->cli
->tree
, src
, dest
))) {
2282 d_printf("%s symlinking files (%s -> %s)\n",
2283 smbcli_errstr(ctx
->cli
->tree
), src
, dest
);
2290 /****************************************************************************
2292 ****************************************************************************/
2294 static int cmd_chmod(struct smbclient_context
*ctx
, const char **args
)
2299 if (!(ctx
->cli
->transport
->negotiate
.capabilities
& CAP_UNIX
)) {
2300 d_printf("Server doesn't support UNIX CIFS calls.\n");
2304 if (!args
[1] || !args
[2]) {
2305 d_printf("chmod mode file\n");
2309 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[2]);
2311 mode
= (mode_t
)strtol(args
[1], NULL
, 8);
2313 if (NT_STATUS_IS_ERR(smbcli_unix_chmod(ctx
->cli
->tree
, src
, mode
))) {
2314 d_printf("%s chmod file %s 0%o\n",
2315 smbcli_errstr(ctx
->cli
->tree
), src
, (unsigned)mode
);
2322 /****************************************************************************
2324 ****************************************************************************/
2326 static int cmd_chown(struct smbclient_context
*ctx
, const char **args
)
2332 if (!(ctx
->cli
->transport
->negotiate
.capabilities
& CAP_UNIX
)) {
2333 d_printf("Server doesn't support UNIX CIFS calls.\n");
2337 if (!args
[1] || !args
[2] || !args
[3]) {
2338 d_printf("chown uid gid file\n");
2342 uid
= (uid_t
)atoi(args
[1]);
2343 gid
= (gid_t
)atoi(args
[2]);
2344 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[3]);
2346 if (NT_STATUS_IS_ERR(smbcli_unix_chown(ctx
->cli
->tree
, src
, uid
, gid
))) {
2347 d_printf("%s chown file %s uid=%d, gid=%d\n",
2348 smbcli_errstr(ctx
->cli
->tree
), src
, (int)uid
, (int)gid
);
2355 /****************************************************************************
2357 ****************************************************************************/
2358 static int cmd_rename(struct smbclient_context
*ctx
, const char **args
)
2362 if (!args
[1] || !args
[2]) {
2363 d_printf("rename <src> <dest>\n");
2367 src
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[1]);
2368 dest
= talloc_asprintf(ctx
, "%s%s", ctx
->remote_cur_dir
, args
[2]);
2370 if (NT_STATUS_IS_ERR(smbcli_rename(ctx
->cli
->tree
, src
, dest
))) {
2371 d_printf("%s renaming files\n",smbcli_errstr(ctx
->cli
->tree
));
2379 /****************************************************************************
2380 toggle the prompt flag
2381 ****************************************************************************/
2382 static int cmd_prompt(struct smbclient_context
*ctx
, const char **args
)
2384 ctx
->prompt
= !ctx
->prompt
;
2385 DEBUG(2,("prompting is now %s\n",ctx
->prompt
?"on":"off"));
2391 /****************************************************************************
2392 set the newer than time
2393 ****************************************************************************/
2394 static int cmd_newer(struct smbclient_context
*ctx
, const char **args
)
2398 if (args
[1] && (stat(args
[1],&sbuf
) == 0)) {
2399 ctx
->newer_than
= sbuf
.st_mtime
;
2400 DEBUG(1,("Getting files newer than %s",
2401 asctime(localtime(&ctx
->newer_than
))));
2403 ctx
->newer_than
= 0;
2406 if (args
[1] && ctx
->newer_than
== 0) {
2407 d_printf("Error setting newer-than time\n");
2414 /****************************************************************************
2415 set the archive level
2416 ****************************************************************************/
2417 static int cmd_archive(struct smbclient_context
*ctx
, const char **args
)
2420 ctx
->archive_level
= atoi(args
[1]);
2422 d_printf("Archive level is %d\n",ctx
->archive_level
);
2427 /****************************************************************************
2428 toggle the lowercaseflag
2429 ****************************************************************************/
2430 static int cmd_lowercase(struct smbclient_context
*ctx
, const char **args
)
2432 ctx
->lowercase
= !ctx
->lowercase
;
2433 DEBUG(2,("filename lowercasing is now %s\n",ctx
->lowercase
?"on":"off"));
2441 /****************************************************************************
2442 toggle the recurse flag
2443 ****************************************************************************/
2444 static int cmd_recurse(struct smbclient_context
*ctx
, const char **args
)
2446 ctx
->recurse
= !ctx
->recurse
;
2447 DEBUG(2,("directory recursion is now %s\n",ctx
->recurse
?"on":"off"));
2452 /****************************************************************************
2453 toggle the translate flag
2454 ****************************************************************************/
2455 static int cmd_translate(struct smbclient_context
*ctx
, const char **args
)
2457 ctx
->translation
= !ctx
->translation
;
2458 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
2459 ctx
->translation
?"on":"off"));
2465 /****************************************************************************
2466 do a printmode command
2467 ****************************************************************************/
2468 static int cmd_printmode(struct smbclient_context
*ctx
, const char **args
)
2471 if (strequal(args
[1],"text")) {
2474 if (strequal(args
[1],"graphics"))
2477 ctx
->printmode
= atoi(args
[1]);
2481 switch(ctx
->printmode
)
2484 DEBUG(2,("the printmode is now text\n"));
2487 DEBUG(2,("the printmode is now graphics\n"));
2490 DEBUG(2,("the printmode is now %d\n", ctx
->printmode
));
2497 /****************************************************************************
2499 ****************************************************************************/
2500 static int cmd_lcd(struct smbclient_context
*ctx
, const char **args
)
2506 DEBUG(2,("the local directory is now %s\n",getcwd(d
, PATH_MAX
)));
2511 /****************************************************************************
2513 ****************************************************************************/
2514 static int cmd_history(struct smbclient_context
*ctx
, const char **args
)
2516 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
2520 hlist
= history_list();
2522 for (i
= 0; hlist
&& hlist
[i
]; i
++) {
2523 DEBUG(0, ("%d: %s\n", i
, hlist
[i
]->line
));
2526 DEBUG(0,("no history without readline support\n"));
2532 /****************************************************************************
2533 get a file restarting at end of local file
2534 ****************************************************************************/
2535 static int cmd_reget(struct smbclient_context
*ctx
, const char **args
)
2541 d_printf("reget <filename>\n");
2544 remote_name
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, args
[1]);
2545 dos_clean_name(remote_name
);
2548 local_name
= talloc_strdup(ctx
, args
[2]);
2550 local_name
= talloc_strdup(ctx
, args
[1]);
2552 return do_get(ctx
, remote_name
, local_name
, true);
2555 /****************************************************************************
2556 put a file restarting at end of local file
2557 ****************************************************************************/
2558 static int cmd_reput(struct smbclient_context
*ctx
, const char **args
)
2564 d_printf("reput <filename>\n");
2567 local_name
= talloc_asprintf(ctx
, "%s\\%s", ctx
->remote_cur_dir
, args
[1]);
2569 if (!file_exist(local_name
)) {
2570 d_printf("%s does not exist\n", local_name
);
2575 remote_name
= talloc_strdup(ctx
, args
[2]);
2577 remote_name
= talloc_strdup(ctx
, args
[1]);
2579 dos_clean_name(remote_name
);
2581 return do_put(ctx
, remote_name
, local_name
, true);
2586 return a string representing a share type
2588 static const char *share_type_str(uint32_t type
)
2590 switch (type
& 0xF) {
2591 case STYPE_DISKTREE
:
2606 display a list of shares from a level 1 share enum
2608 static void display_share_result(struct srvsvc_NetShareCtr1
*ctr1
)
2612 for (i
=0;i
<ctr1
->count
;i
++) {
2613 struct srvsvc_NetShareInfo1
*info
= ctr1
->array
+i
;
2615 printf("\t%-15s %-10.10s %s\n",
2617 share_type_str(info
->type
),
2624 /****************************************************************************
2625 try and browse available shares on a host
2626 ****************************************************************************/
2627 static bool browse_host(struct loadparm_context
*lp_ctx
,
2628 struct tevent_context
*ev_ctx
,
2629 const char *query_host
)
2631 struct dcerpc_pipe
*p
;
2634 struct srvsvc_NetShareEnumAll r
;
2635 struct srvsvc_NetShareInfoCtr info_ctr
;
2636 uint32_t resume_handle
= 0;
2637 TALLOC_CTX
*mem_ctx
= talloc_init("browse_host");
2638 struct srvsvc_NetShareCtr1 ctr1
;
2639 uint32_t totalentries
= 0;
2641 binding
= talloc_asprintf(mem_ctx
, "ncacn_np:%s", query_host
);
2643 status
= dcerpc_pipe_connect(mem_ctx
, &p
, binding
,
2645 cmdline_credentials
, ev_ctx
,
2647 if (!NT_STATUS_IS_OK(status
)) {
2648 d_printf("Failed to connect to %s - %s\n",
2649 binding
, nt_errstr(status
));
2650 talloc_free(mem_ctx
);
2655 info_ctr
.ctr
.ctr1
= &ctr1
;
2657 r
.in
.server_unc
= talloc_asprintf(mem_ctx
,"\\\\%s",dcerpc_server_name(p
));
2658 r
.in
.info_ctr
= &info_ctr
;
2659 r
.in
.max_buffer
= ~0;
2660 r
.in
.resume_handle
= &resume_handle
;
2661 r
.out
.resume_handle
= &resume_handle
;
2662 r
.out
.totalentries
= &totalentries
;
2663 r
.out
.info_ctr
= &info_ctr
;
2665 d_printf("\n\tSharename Type Comment\n");
2666 d_printf("\t--------- ---- -------\n");
2670 status
= dcerpc_srvsvc_NetShareEnumAll_r(p
->binding_handle
, mem_ctx
, &r
);
2672 if (NT_STATUS_IS_OK(status
) &&
2673 (W_ERROR_EQUAL(r
.out
.result
, WERR_MORE_DATA
) ||
2674 W_ERROR_IS_OK(r
.out
.result
)) &&
2675 r
.out
.info_ctr
->ctr
.ctr1
) {
2676 display_share_result(r
.out
.info_ctr
->ctr
.ctr1
);
2677 resume_handle
+= r
.out
.info_ctr
->ctr
.ctr1
->count
;
2679 } while (NT_STATUS_IS_OK(status
) && W_ERROR_EQUAL(r
.out
.result
, WERR_MORE_DATA
));
2681 talloc_free(mem_ctx
);
2683 if (!NT_STATUS_IS_OK(status
) || !W_ERROR_IS_OK(r
.out
.result
)) {
2684 d_printf("Failed NetShareEnumAll %s - %s/%s\n",
2685 binding
, nt_errstr(status
), win_errstr(r
.out
.result
));
2692 /****************************************************************************
2693 try and browse available connections on a host
2694 ****************************************************************************/
2695 static bool list_servers(const char *wk_grp
)
2697 d_printf("REWRITE: list servers not implemented\n");
2701 /* Some constants for completing filename arguments */
2703 #define COMPL_NONE 0 /* No completions */
2704 #define COMPL_REMOTE 1 /* Complete remote filename */
2705 #define COMPL_LOCAL 2 /* Complete local filename */
2707 static int cmd_help(struct smbclient_context
*ctx
, const char **args
);
2709 /* This defines the commands supported by this client.
2710 * NOTE: The "!" must be the last one in the list because it's fn pointer
2711 * field is NULL, and NULL in that field is used in process_tok()
2712 * (below) to indicate the end of the list. crh
2717 int (*fn
)(struct smbclient_context
*ctx
, const char **args
);
2718 const char *description
;
2719 char compl_args
[2]; /* Completion argument info */
2722 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
2723 {"addprivileges",cmd_addprivileges
,"<sid|name> <privilege...> add privileges for a user",{COMPL_NONE
,COMPL_NONE
}},
2724 {"altname",cmd_altname
,"<file> show alt name",{COMPL_NONE
,COMPL_NONE
}},
2725 {"acl",cmd_acl
,"<file> show file ACL",{COMPL_NONE
,COMPL_NONE
}},
2726 {"allinfo",cmd_allinfo
,"<file> show all possible info about a file",{COMPL_NONE
,COMPL_NONE
}},
2727 {"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
}},
2728 {"cancel",cmd_rewrite
,"<jobid> cancel a print queue entry",{COMPL_NONE
,COMPL_NONE
}},
2729 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
2730 {"chmod",cmd_chmod
,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE
,COMPL_REMOTE
}},
2731 {"chown",cmd_chown
,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE
,COMPL_REMOTE
}},
2732 {"del",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2733 {"delprivileges",cmd_delprivileges
,"<sid|name> <privilege...> remove privileges for a user",{COMPL_NONE
,COMPL_NONE
}},
2734 {"deltree",cmd_deltree
,"<dir> delete a whole directory tree",{COMPL_REMOTE
,COMPL_NONE
}},
2735 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2736 {"du",cmd_du
,"<mask> computes the total size of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2737 {"eainfo",cmd_eainfo
,"<file> show EA contents for a file",{COMPL_NONE
,COMPL_NONE
}},
2738 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2739 {"fsinfo",cmd_fsinfo
,"query file system info",{COMPL_NONE
,COMPL_NONE
}},
2740 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
2741 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
2742 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
2743 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
2744 {"link",cmd_link
,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE
,COMPL_REMOTE
}},
2745 {"lookup",cmd_lookup
,"<sid|name> show SID for name or name for SID",{COMPL_NONE
,COMPL_NONE
}},
2746 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
2747 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2748 {"mask",cmd_select
,"<mask> mask all filenames against this",{COMPL_REMOTE
,COMPL_NONE
}},
2749 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
2750 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2751 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
2752 {"more",cmd_more
,"<remote name> view a remote file with your pager",{COMPL_REMOTE
,COMPL_NONE
}},
2753 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2754 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
2755 {"open",cmd_open
,"<mask> open a file",{COMPL_REMOTE
,COMPL_NONE
}},
2756 {"close",cmd_close
,"<fnum> close a file",{COMPL_NONE
,COMPL_NONE
}},
2757 {"privileges",cmd_privileges
,"<user> show privileges for a user",{COMPL_NONE
,COMPL_NONE
}},
2758 {"print",cmd_print
,"<file name> print a file",{COMPL_NONE
,COMPL_NONE
}},
2759 {"printmode",cmd_printmode
,"<graphics or text> set the print mode",{COMPL_NONE
,COMPL_NONE
}},
2760 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
2761 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
2762 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
2763 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2764 {"queue",cmd_rewrite
,"show the print queue",{COMPL_NONE
,COMPL_NONE
}},
2765 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2766 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2767 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
2768 {"reget",cmd_reget
,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE
,COMPL_LOCAL
}},
2769 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
2770 {"reput",cmd_reput
,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL
,COMPL_REMOTE
}},
2771 {"rm",cmd_del
,"<mask> delete all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2772 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2773 {"symlink",cmd_symlink
,"<src> <dest> create a UNIX symlink",{COMPL_REMOTE
,COMPL_REMOTE
}},
2774 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
2776 /* Yes, this must be here, see crh's comment above. */
2777 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
2778 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
2782 /*******************************************************************
2783 lookup a command string in the list of commands, including
2785 ******************************************************************/
2786 static int process_tok(const char *tok
)
2788 int i
= 0, matches
= 0;
2790 int tok_len
= strlen(tok
);
2792 while (commands
[i
].fn
!= NULL
) {
2793 if (strequal(commands
[i
].name
,tok
)) {
2797 } else if (strncasecmp(commands
[i
].name
, tok
, tok_len
) == 0) {
2806 else if (matches
== 1)
2812 /****************************************************************************
2814 ****************************************************************************/
2815 static int cmd_help(struct smbclient_context
*ctx
, const char **args
)
2820 if ((i
= process_tok(args
[1])) >= 0)
2821 d_printf("HELP %s:\n\t%s\n\n",commands
[i
].name
,commands
[i
].description
);
2823 while (commands
[i
].description
) {
2824 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
2825 d_printf("%-15s",commands
[i
].name
);
2834 static int process_line(struct smbclient_context
*ctx
, const char *cline
);
2835 /****************************************************************************
2836 process a -c command string
2837 ****************************************************************************/
2838 static int process_command_string(struct smbclient_context
*ctx
, const char *cmd
)
2843 lines
= str_list_make(NULL
, cmd
, ";");
2844 for (i
= 0; lines
[i
]; i
++) {
2845 rc
|= process_line(ctx
, lines
[i
]);
2852 #define MAX_COMPLETIONS 100
2860 } completion_remote_t
;
2862 static void completion_remote_filter(struct clilist_file_info
*f
, const char *mask
, void *state
)
2864 completion_remote_t
*info
= (completion_remote_t
*)state
;
2866 if ((info
->count
< MAX_COMPLETIONS
- 1) && (strncmp(info
->text
, f
->name
, info
->len
) == 0) && (!ISDOT(f
->name
)) && (!ISDOTDOT(f
->name
))) {
2867 if ((info
->dirmask
[0] == 0) && !(f
->attrib
& FILE_ATTRIBUTE_DIRECTORY
))
2868 info
->matches
[info
->count
] = strdup(f
->name
);
2872 if (info
->dirmask
[0] != 0)
2873 tmp
= talloc_asprintf(NULL
, "%s/%s", info
->dirmask
, f
->name
);
2875 tmp
= talloc_strdup(NULL
, f
->name
);
2877 if (f
->attrib
& FILE_ATTRIBUTE_DIRECTORY
)
2878 tmp
= talloc_append_string(NULL
, tmp
, "/");
2879 info
->matches
[info
->count
] = tmp
;
2881 if (info
->matches
[info
->count
] == NULL
)
2883 if (f
->attrib
& FILE_ATTRIBUTE_DIRECTORY
)
2884 smb_readline_ca_char(0);
2886 if (info
->count
== 1)
2887 info
->samelen
= strlen(info
->matches
[info
->count
]);
2889 while (strncmp(info
->matches
[info
->count
], info
->matches
[info
->count
-1], info
->samelen
) != 0)
2895 static char **remote_completion(const char *text
, int len
)
2899 completion_remote_t info
;
2905 if (len
>= PATH_MAX
)
2908 info
.matches
= malloc_array_p(char *, MAX_COMPLETIONS
);
2909 if (!info
.matches
) return NULL
;
2910 info
.matches
[0] = NULL
;
2912 for (i
= len
-1; i
>= 0; i
--)
2913 if ((text
[i
] == '/') || (text
[i
] == '\\'))
2915 info
.text
= text
+i
+1;
2916 info
.samelen
= info
.len
= len
-i
-1;
2919 info
.dirmask
= talloc_strndup(NULL
, text
, i
+1);
2920 info
.dirmask
[i
+1] = 0;
2921 ret
= asprintf(&dirmask
, "%s%*s*", rl_ctx
->remote_cur_dir
, i
-1,
2924 ret
= asprintf(&dirmask
, "%s*", rl_ctx
->remote_cur_dir
);
2930 if (smbcli_list(rl_ctx
->cli
->tree
, dirmask
,
2931 FILE_ATTRIBUTE_DIRECTORY
| FILE_ATTRIBUTE_SYSTEM
| FILE_ATTRIBUTE_HIDDEN
,
2932 completion_remote_filter
, &info
) < 0)
2935 if (info
.count
== 2)
2936 info
.matches
[0] = strdup(info
.matches
[1]);
2938 info
.matches
[0] = malloc_array_p(char, info
.samelen
+1);
2939 if (!info
.matches
[0])
2941 strncpy(info
.matches
[0], info
.matches
[1], info
.samelen
);
2942 info
.matches
[0][info
.samelen
] = 0;
2944 info
.matches
[info
.count
] = NULL
;
2945 return info
.matches
;
2948 for (i
= 0; i
< info
.count
; i
++)
2949 free(info
.matches
[i
]);
2954 static char **completion_fn(const char *text
, int start
, int end
)
2956 smb_readline_ca_char(' ');
2959 const char *buf
, *sp
;
2963 buf
= smb_readline_get_line_buffer();
2967 sp
= strchr(buf
, ' ');
2971 for (i
= 0; commands
[i
].name
; i
++)
2972 if ((strncmp(commands
[i
].name
, text
, sp
- buf
) == 0) && (commands
[i
].name
[sp
- buf
] == 0))
2974 if (commands
[i
].name
== NULL
)
2980 if (sp
== (buf
+ start
))
2981 compl_type
= commands
[i
].compl_args
[0];
2983 compl_type
= commands
[i
].compl_args
[1];
2985 if (compl_type
== COMPL_REMOTE
)
2986 return remote_completion(text
, end
- start
);
2987 else /* fall back to local filename completion */
2991 int i
, len
, samelen
= 0, count
=1;
2993 matches
= malloc_array_p(char *, MAX_COMPLETIONS
);
2994 if (!matches
) return NULL
;
2998 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
2999 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
3000 matches
[count
] = strdup(commands
[i
].name
);
3001 if (!matches
[count
])
3004 samelen
= strlen(matches
[count
]);
3006 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
3013 case 0: /* should never happen */
3017 matches
[0] = strdup(matches
[1]);
3020 matches
[0] = malloc_array_p(char, samelen
+1);
3023 strncpy(matches
[0], matches
[1], samelen
);
3024 matches
[0][samelen
] = 0;
3026 matches
[count
] = NULL
;
3031 while (count
>= 0) {
3032 free(matches
[count
]);
3040 /****************************************************************************
3041 make sure we swallow keepalives during idle time
3042 ****************************************************************************/
3043 static void readline_callback(void)
3045 static time_t last_t
;
3050 if (t
- last_t
< 5) return;
3054 smbcli_transport_process(rl_ctx
->cli
->transport
);
3056 if (rl_ctx
->cli
->tree
) {
3057 smbcli_chkpath(rl_ctx
->cli
->tree
, "\\");
3061 static int process_line(struct smbclient_context
*ctx
, const char *cline
)
3066 /* and get the first part of the command */
3067 args
= (const char **) str_list_make_shell(ctx
, cline
, NULL
);
3068 if (!args
|| !args
[0])
3071 if ((i
= process_tok(args
[0])) >= 0) {
3072 i
= commands
[i
].fn(ctx
, args
);
3073 } else if (i
== -2) {
3074 d_printf("%s: command abbreviation ambiguous\n",args
[0]);
3076 d_printf("%s: command not found\n",args
[0]);
3084 /****************************************************************************
3085 process commands on stdin
3086 ****************************************************************************/
3087 static int process_stdin(struct smbclient_context
*ctx
)
3091 /* display a prompt */
3092 char *the_prompt
= talloc_asprintf(ctx
, "smb: %s> ", ctx
->remote_cur_dir
);
3093 char *cline
= smb_readline(the_prompt
, readline_callback
, completion_fn
);
3094 talloc_free(the_prompt
);
3098 /* special case - first char is ! */
3099 if (*cline
== '!') {
3105 rc
|= process_command_string(ctx
, cline
);
3114 /*****************************************************
3115 return a connection to a server
3116 *******************************************************/
3117 static bool do_connect(struct smbclient_context
*ctx
,
3118 struct tevent_context
*ev_ctx
,
3119 struct resolve_context
*resolve_ctx
,
3120 const char *specified_server
, const char **ports
,
3121 const char *specified_share
,
3122 const char *socket_options
,
3123 struct cli_credentials
*cred
,
3124 struct smbcli_options
*options
,
3125 struct smbcli_session_options
*session_options
,
3126 struct gensec_settings
*gensec_settings
)
3129 char *server
, *share
;
3131 rl_ctx
= ctx
; /* Ugly hack */
3133 if (strncmp(specified_share
, "\\\\", 2) == 0 ||
3134 strncmp(specified_share
, "//", 2) == 0) {
3135 smbcli_parse_unc(specified_share
, ctx
, &server
, &share
);
3137 share
= talloc_strdup(ctx
, specified_share
);
3138 server
= talloc_strdup(ctx
, specified_server
);
3141 ctx
->remote_cur_dir
= talloc_strdup(ctx
, "\\");
3143 status
= smbcli_full_connection(ctx
, &ctx
->cli
, server
, ports
,
3147 ev_ctx
, options
, session_options
,
3149 if (!NT_STATUS_IS_OK(status
)) {
3150 d_printf("Connection to \\\\%s\\%s failed - %s\n",
3151 server
, share
, nt_errstr(status
));
3159 /****************************************************************************
3161 ****************************************************************************/
3162 static int do_host_query(struct loadparm_context
*lp_ctx
,
3163 struct tevent_context
*ev_ctx
,
3164 const char *query_host
,
3165 const char *workgroup
)
3167 browse_host(lp_ctx
, ev_ctx
, query_host
);
3168 list_servers(workgroup
);
3173 /****************************************************************************
3174 handle a message operation
3175 ****************************************************************************/
3176 static int do_message_op(const char *netbios_name
, const char *desthost
,
3177 const char **destports
, const char *destip
,
3179 struct tevent_context
*ev_ctx
,
3180 struct resolve_context
*resolve_ctx
,
3181 struct smbcli_options
*options
,
3182 const char *socket_options
)
3184 struct nbt_name called
, calling
;
3185 const char *server_name
;
3186 struct smbcli_state
*cli
;
3189 make_nbt_name_client(&calling
, netbios_name
);
3191 nbt_choose_called_name(NULL
, &called
, desthost
, name_type
);
3193 server_name
= destip
? destip
: desthost
;
3195 cli
= smbcli_state_init(NULL
);
3197 d_printf("smbcli_state_init() failed\n");
3201 ok
= smbcli_socket_connect(cli
, server_name
, destports
,
3202 ev_ctx
, resolve_ctx
, options
,
3206 d_printf("Connection to %s failed\n", server_name
);
3210 send_message(cli
, desthost
);
3217 /****************************************************************************
3219 ****************************************************************************/
3220 int main(int argc
,char *argv
[])
3222 char *base_directory
= NULL
;
3223 const char *dest_ip
= NULL
;
3225 const char *query_host
= NULL
;
3226 bool message
= false;
3227 char *desthost
= NULL
;
3229 const char *service
= NULL
;
3233 int name_type
= 0x20;
3234 TALLOC_CTX
*mem_ctx
;
3235 struct tevent_context
*ev_ctx
;
3236 struct smbclient_context
*ctx
;
3237 const char *cmdstr
= NULL
;
3238 struct smbcli_options smb_options
;
3239 struct smbcli_session_options smb_session_options
;
3241 struct poptOption long_options
[] = {
3244 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
3245 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
3246 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
3247 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
3248 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
3249 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
3250 { "send-buffer", 'b', POPT_ARG_INT
, NULL
, 'b', "Changes the transmit/send buffer", "BYTES" },
3251 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
3253 POPT_COMMON_CONNECTION
3254 POPT_COMMON_CREDENTIALS
3259 mem_ctx
= talloc_init("client.c/main");
3261 d_printf("\nclient.c: Not enough memory\n");
3265 ctx
= talloc_zero(mem_ctx
, struct smbclient_context
);
3266 ctx
->io_bufsize
= 64512;
3268 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
, 0);
3269 poptSetOtherOptionHelp(pc
, "[OPTIONS] service <password>");
3271 while ((opt
= poptGetNextOpt(pc
)) != -1) {
3274 /* Messages are sent to NetBIOS name type 0x3
3275 * (Messenger Service). Make sure we default
3276 * to port 139 instead of port 445. srl,crh
3279 desthost
= strdup(poptGetOptArg(pc
));
3280 if( 0 == port
) port
= 139;
3284 dest_ip
= poptGetOptArg(pc
);
3287 query_host
= strdup(poptGetOptArg(pc
));
3290 base_directory
= strdup(poptGetOptArg(pc
));
3293 ctx
->io_bufsize
= MAX(1, atoi(poptGetOptArg(pc
)));
3300 if(poptPeekArg(pc
)) {
3301 char *s
= strdup(poptGetArg(pc
));
3303 /* Convert any '/' characters in the service name to '\' characters */
3304 string_replace(s
, '/','\\');
3308 if (count_chars(s
,'\\') < 3) {
3309 d_printf("\n%s: Not enough '\\' characters in service\n",s
);
3310 poptPrintUsage(pc
, stderr
, 0);
3315 if (poptPeekArg(pc
)) {
3316 cli_credentials_set_password(cmdline_credentials
, poptGetArg(pc
), CRED_SPECIFIED
);
3321 if (!query_host
&& !service
&& !message
) {
3322 poptPrintUsage(pc
, stderr
, 0);
3326 poptFreeContext(pc
);
3328 lpcfg_smbcli_options(cmdline_lp_ctx
, &smb_options
);
3329 lpcfg_smbcli_session_options(cmdline_lp_ctx
, &smb_session_options
);
3331 ev_ctx
= s4_event_context_init(talloc_autofree_context());
3333 DEBUG( 3, ( "Client started (version %s).\n", SAMBA_VERSION_STRING
) );
3335 if (query_host
&& (p
=strchr_m(query_host
,'#'))) {
3338 sscanf(p
, "%x", &name_type
);
3342 rc
= do_host_query(cmdline_lp_ctx
, ev_ctx
, query_host
,
3343 lpcfg_workgroup(cmdline_lp_ctx
));
3348 rc
= do_message_op(lpcfg_netbios_name(cmdline_lp_ctx
), desthost
,
3349 lpcfg_smb_ports(cmdline_lp_ctx
), dest_ip
,
3351 lpcfg_resolve_context(cmdline_lp_ctx
),
3353 lpcfg_socket_options(cmdline_lp_ctx
));
3357 if (!do_connect(ctx
, ev_ctx
, lpcfg_resolve_context(cmdline_lp_ctx
),
3358 desthost
, lpcfg_smb_ports(cmdline_lp_ctx
), service
,
3359 lpcfg_socket_options(cmdline_lp_ctx
),
3360 cmdline_credentials
, &smb_options
, &smb_session_options
,
3361 lpcfg_gensec_settings(ctx
, cmdline_lp_ctx
)))
3364 if (base_directory
) {
3365 do_cd(ctx
, base_directory
);
3366 free(base_directory
);
3370 rc
= process_command_string(ctx
, cmdstr
);
3372 rc
= process_stdin(ctx
);
3376 talloc_free(mem_ctx
);