2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003
7 Copyright (C) Gerald (Jerry) Carter 2004
8 Copyright (C) Kalim Moghul 2005
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include "libsmbclient.h"
27 #include "client/client_proto.h"
32 extern BOOL AllowDebugChange
;
33 extern BOOL override_logfile
;
35 extern BOOL in_client
;
37 pstring cur_dir
= "/";
38 static pstring service
;
39 static pstring desthost
;
40 static pstring username
;
41 static pstring workgroup
;
42 static pstring calling_name
;
43 static BOOL grepable
=False
;
44 static char *cmdstr
= NULL
;
46 static int io_bufsize
= 64512;
48 static int name_type
= 0x20;
49 extern int max_protocol
;
51 static int process_tok(pstring tok
);
52 static int cmd_help(void);
54 /* 30 second timeout on most commands */
55 #define CLIENT_TIMEOUT (30*1000)
56 #define SHORT_TIMEOUT (5*1000)
58 /* value for unused fid field in trans2 secondary request */
59 #define FID_UNUSED (0xFFFF)
61 time_t newer_than
= 0;
62 static int archive_level
= 0;
64 static BOOL translation
= False
;
67 /* clitar bits insert */
70 extern BOOL tar_reset
;
74 static BOOL prompt
= True
;
76 static BOOL recurse
= False
;
77 BOOL lowercase
= False
;
79 static struct in_addr dest_ip
;
81 #define SEPARATORS " \t\n\r"
83 static BOOL abort_mget
= True
;
85 static pstring fileselection
= "";
87 extern file_info def_finfo
;
90 SMB_BIG_UINT get_total_size
= 0;
91 unsigned int get_total_time_ms
= 0;
92 static SMB_BIG_UINT put_total_size
= 0;
93 static unsigned int put_total_time_ms
= 0;
96 static double dir_total
;
98 /* root cli_state connection */
100 struct cli_state
*cli
;
103 /****************************************************************************
104 Authentication callback function for libsmbclient
105 ****************************************************************************/
108 get_auth_data_fn(const char * pServer
, const char * pShare
,
109 char * pWorkgroup
, int maxLenWorkgroup
,
110 char * pUsername
, int maxLenUsername
,
111 char * pPassword
, int maxLenPassword
)
113 char temp
[sizeof(fstring
)];
115 static char authUsername
[sizeof(fstring
)];
116 static char authWorkgroup
[sizeof(fstring
)];
117 static char authPassword
[sizeof(fstring
)];
118 static char authSet
= 0;
123 strncpy(pWorkgroup
, authWorkgroup
, maxLenWorkgroup
- 1);
124 strncpy(pUsername
, authUsername
, maxLenUsername
- 1);
125 strncpy(pPassword
, authPassword
, maxLenPassword
- 1);
129 d_printf("Workgroup: %s\n", workgroup
);
130 strncpy(pWorkgroup
, workgroup
, maxLenWorkgroup
- 1);
131 strncpy(authWorkgroup
, workgroup
, maxLenWorkgroup
- 1);
133 d_printf("Username: %s\n", username
);
134 strncpy(pUsername
, username
, maxLenUsername
- 1);
135 strncpy(authUsername
, username
, maxLenUsername
- 1);
137 if (cmdline_auth_info
.got_pass
)
139 strncpy(pPassword
, cmdline_auth_info
.password
, maxLenPassword
- 1);
140 strncpy(authPassword
, cmdline_auth_info
.password
, maxLenPassword
- 1);
144 char *pass
= getpass("Password: ");
147 if (temp
[strlen(temp
) - 1] == '\n') /* A new line? */
149 temp
[strlen(temp
) - 1] = '\0';
153 strncpy(pPassword
, temp
, maxLenPassword
- 1);
154 strncpy(authPassword
, pPassword
, maxLenPassword
- 1);
157 pstrcpy(cmdline_auth_info
.username
, authUsername
);
158 pstrcpy(cmdline_auth_info
.password
, authPassword
);
159 cmdline_auth_info
.got_pass
= True
;
160 set_global_myworkgroup(authWorkgroup
);
161 cli_cm_set_credentials(&cmdline_auth_info
);
166 /*******************************************************************
167 Return a string representing an attribute for a file.
168 ********************************************************************/
170 fstring
*mode_t_string(mode_t mode
)
172 static fstring attrstr
;
176 S_ISDIR(mode
) ? fstrcat(attrstr
, "d") : fstrcat(attrstr
, "-");
177 (mode
& S_IRUSR
) ? fstrcat(attrstr
, "r") : fstrcat(attrstr
, "-");
178 (mode
& S_IWUSR
) ? fstrcat(attrstr
, "w") : fstrcat(attrstr
, "-");
179 (mode
& S_IXUSR
) ? fstrcat(attrstr
, "x") : fstrcat(attrstr
, "-");
181 (mode
& S_IRGRP
) ? fstrcat(attrstr
, "r") : fstrcat(attrstr
, "-");
182 (mode
& S_IWGRP
) ? fstrcat(attrstr
, "w") : fstrcat(attrstr
, "-");
183 (mode
& S_IXGRP
) ? fstrcat(attrstr
, "x") : fstrcat(attrstr
, "-");
185 (mode
& S_IROTH
) ? fstrcat(attrstr
, "r") : fstrcat(attrstr
, "-");
186 (mode
& S_IWOTH
) ? fstrcat(attrstr
, "w") : fstrcat(attrstr
, "-");
187 (mode
& S_IXOTH
) ? fstrcat(attrstr
, "x") : fstrcat(attrstr
, "-");
193 /****************************************************************************
194 Write to a local file with CR/LF->LF translation if appropriate. Return the
195 number taken from the buffer. This may not equal the number written.
196 ****************************************************************************/
198 static int writefile(int f
, char *b
, int n
)
208 if (*b
== '\r' && (i
<(n
-1)) && *(b
+1) == '\n') {
211 if (write(f
, b
, 1) != 1) {
221 /****************************************************************************
222 Read from a file with LF->CR/LF translation if appropriate. Return the
223 number read. read approx n bytes.
224 ****************************************************************************/
226 static int readfile(char *b
, int n
, XFILE
*f
)
232 return x_fread(b
,1,n
,f
);
235 while (i
< (n
- 1) && (i
< BUFFER_SIZE
)) {
236 if ((c
= x_getc(f
)) == EOF
) {
240 if (c
== '\n') { /* change all LFs to CR/LF */
250 /****************************************************************************
252 ****************************************************************************/
254 static void send_message(void)
259 if (!cli_message_start(cli
, desthost
, username
, &grp_id
)) {
260 d_printf("message start: %s\n", cli_errstr(cli
));
265 d_printf("Connected. Type your message, ending it with a Control-D\n");
267 while (!feof(stdin
) && total_len
< 1600) {
268 int maxlen
= MIN(1600 - total_len
,127);
275 for (l
=0;l
<maxlen
&& (c
=fgetc(stdin
))!=EOF
;l
++) {
281 if (!cli_message_text(cli
, msg
, l
, grp_id
)) {
282 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli
));
289 if (total_len
>= 1600)
290 d_printf("the message was truncated to 1600 bytes\n");
292 d_printf("sent %d bytes\n",total_len
);
294 if (!cli_message_end(cli
, grp_id
)) {
295 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli
));
300 /****************************************************************************
301 Check the space on a device.
302 ****************************************************************************/
304 static int do_dskattr(void)
306 int total
, bsize
, avail
;
307 struct cli_state
*targetcli
;
310 if ( !cli_resolve_path( "", cli
, cur_dir
, &targetcli
, targetpath
) ) {
311 d_printf("Error in dskattr: %s\n", cli_errstr(cli
));
315 if (!cli_dskattr(targetcli
, &bsize
, &total
, &avail
)) {
316 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli
));
320 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
321 total
, bsize
, avail
);
326 /****************************************************************************
328 ****************************************************************************/
330 static int cmd_pwd(void)
332 d_printf("Current directory is %s",service
);
333 d_printf("%s\n",cur_dir
);
337 /****************************************************************************
338 Change directory - inner section.
339 ****************************************************************************/
341 static int do_cd(char *newdir
)
347 struct cli_state
*targetcli
;
348 SMB_STRUCT_STAT sbuf
;
354 /* Save the current directory in case the new directory is invalid */
355 pstrcpy(saved_dir
, cur_dir
);
357 pstrcpy(dname
, p
); /* first save the argument */
360 pstrcpy(cur_dir
,dname
);
362 pstrcat(cur_dir
,dname
);
364 if (*(cur_dir
+strlen(cur_dir
)-1) != '/') {
365 pstrcat(cur_dir
, "/");
368 all_string_sub(cur_dir
, "/./", "/", 0);
370 /* Format the directory in a libmsmbclient friendly way */
372 all_string_sub(cur_dir
, "/./", "/", 0);
373 pstrcpy(targetpath
, "smb:");
374 pstrcat(targetpath
, service
);
375 pstrcat(targetpath
, cur_dir
);
376 unix_format(targetpath
);
378 dh
= smbc_opendir(targetpath
);
382 d_printf("%s changing to directory %s\n", strerror(errno
), cur_dir
);
383 pstrcpy(cur_dir
, saved_dir
);
391 /****************************************************************************
393 ****************************************************************************/
395 static int cmd_cd(void)
400 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)))
403 d_printf("Current directory is %s\n",cur_dir
);
408 /*******************************************************************
409 Decide if a file should be operated on.
410 ********************************************************************/
412 static BOOL
do_this_one(file_info
*finfo
)
414 if (finfo
->mode
& aDIR
)
417 if (*fileselection
&&
418 !mask_match(finfo
->name
,fileselection
,False
)) {
419 DEBUG(3,("mask_match %s failed\n", finfo
->name
));
423 if (newer_than
&& finfo
->mtime
< newer_than
) {
424 DEBUG(3,("newer_than %s failed\n", finfo
->name
));
428 if ((archive_level
==1 || archive_level
==2) && !(finfo
->mode
& aARCH
)) {
429 DEBUG(3,("archive %s failed\n", finfo
->name
));
436 /****************************************************************************
437 Display info about a file.
438 ****************************************************************************/
440 static void display_finfo(file_info
*finfo
)
442 if (do_this_one(finfo
)) {
443 time_t t
= finfo
->mtime
; /* the time is assumed to be passed as GMT */
444 d_printf(" %-30s%7.7s %8.0f %s",
446 attrib_string(finfo
->mode
),
449 dir_total
+= finfo
->size
;
453 /****************************************************************************
454 Display info about a file.
455 ****************************************************************************/
457 static void display_stat(char *name
, struct stat
*st
)
459 time_t t
= st
->st_mtime
;
461 pstrcpy(time_str
, time_to_asc(t
));
462 time_str
[strlen(time_str
)-1] = 0;
463 d_printf("> %-30s", name
);
464 d_printf("%10.10s %8.0f %s\n", *mode_t_string(st
->st_mode
), (double)st
->st_size
, time_str
);
467 /****************************************************************************
468 Accumulate size of a file.
469 ****************************************************************************/
471 static void do_du(file_info
*finfo
)
473 if (do_this_one(finfo
)) {
474 dir_total
+= finfo
->size
;
478 static BOOL do_list_recurse
;
479 static BOOL do_list_dirs
;
480 static char *do_list_queue
= 0;
481 static long do_list_queue_size
= 0;
482 static long do_list_queue_start
= 0;
483 static long do_list_queue_end
= 0;
484 static void (*do_list_fn
)(file_info
*);
485 static void (*tool_list_fn
)(char *, struct stat
*);
487 /****************************************************************************
488 Functions for do_list_queue.
489 ****************************************************************************/
492 * The do_list_queue is a NUL-separated list of strings stored in a
493 * char*. Since this is a FIFO, we keep track of the beginning and
494 * ending locations of the data in the queue. When we overflow, we
495 * double the size of the char*. When the start of the data passes
496 * the midpoint, we move everything back. This is logically more
497 * complex than a linked list, but easier from a memory management
498 * angle. In any memory error condition, do_list_queue is reset.
499 * Functions check to ensure that do_list_queue is non-NULL before
503 static void reset_do_list_queue(void)
505 SAFE_FREE(do_list_queue
);
506 do_list_queue_size
= 0;
507 do_list_queue_start
= 0;
508 do_list_queue_end
= 0;
511 static void init_do_list_queue(void)
513 reset_do_list_queue();
514 do_list_queue_size
= 1024;
515 do_list_queue
= SMB_MALLOC(do_list_queue_size
);
516 if (do_list_queue
== 0) {
517 d_printf("malloc fail for size %d\n",
518 (int)do_list_queue_size
);
519 reset_do_list_queue();
521 memset(do_list_queue
, 0, do_list_queue_size
);
525 static void adjust_do_list_queue(void)
528 * If the starting point of the queue is more than half way through,
529 * move everything toward the beginning.
532 if (do_list_queue
== NULL
) {
533 DEBUG(4,("do_list_queue is empty\n"));
534 do_list_queue_start
= do_list_queue_end
= 0;
538 if (do_list_queue_start
== do_list_queue_end
) {
539 DEBUG(4,("do_list_queue is empty\n"));
540 do_list_queue_start
= do_list_queue_end
= 0;
541 *do_list_queue
= '\0';
542 } else if (do_list_queue_start
> (do_list_queue_size
/ 2)) {
543 DEBUG(4,("sliding do_list_queue backward\n"));
544 memmove(do_list_queue
,
545 do_list_queue
+ do_list_queue_start
,
546 do_list_queue_end
- do_list_queue_start
);
547 do_list_queue_end
-= do_list_queue_start
;
548 do_list_queue_start
= 0;
552 static void add_to_do_list_queue(const char* entry
)
554 long new_end
= do_list_queue_end
+ ((long)strlen(entry
)) + 1;
555 while (new_end
> do_list_queue_size
) {
556 do_list_queue_size
*= 2;
557 DEBUG(4,("enlarging do_list_queue to %d\n",
558 (int)do_list_queue_size
));
559 do_list_queue
= SMB_REALLOC(do_list_queue
, do_list_queue_size
);
560 if (!do_list_queue
) {
561 d_printf("failure enlarging do_list_queue to %d bytes\n",
562 (int)do_list_queue_size
);
563 reset_do_list_queue();
565 memset(do_list_queue
+ do_list_queue_size
/ 2,
566 0, do_list_queue_size
/ 2);
570 safe_strcpy_base(do_list_queue
+ do_list_queue_end
,
571 entry
, do_list_queue
, do_list_queue_size
);
572 do_list_queue_end
= new_end
;
573 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
574 entry
, (int)do_list_queue_start
, (int)do_list_queue_end
));
578 static char *do_list_queue_head(void)
580 return do_list_queue
+ do_list_queue_start
;
583 static void remove_do_list_queue_head(void)
585 if (do_list_queue_end
> do_list_queue_start
) {
586 do_list_queue_start
+= strlen(do_list_queue_head()) + 1;
587 adjust_do_list_queue();
588 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
589 (int)do_list_queue_start
, (int)do_list_queue_end
));
593 static int do_list_queue_empty(void)
595 return (! (do_list_queue
&& *do_list_queue
));
598 /****************************************************************************
599 A helper for tool_list.
600 ****************************************************************************/
602 static void tool_list_helper(const char *mntpoint
, struct stat
*f
, const char *mask
, void *state
)
604 /*if (f is a directory)
606 if (we want to do directories and we want to do this f)
608 execute the callback on f
610 if (recursion is set and f isn't . and it isn't ..)
612 make sure the name is valid
613 construct a full path out of the name
614 add the full path to the list
618 if (we want to do this f)
620 execute the callback on f
624 /****************************************************************************
625 A cli_list-like function that executes fn on each directory entry.
626 fn operates on the returned entry name and struct stat.
627 ****************************************************************************/
629 int tool_list( char *mask
,
631 void (*fn
)(char *, struct stat
*),
639 struct smbc_dirent
* dent
;
641 pstrcpy(res
, "smb:");
642 pstrcat(res
, service
);
643 pstrcat(res
, cur_dir
);
645 if ((dh
= smbc_opendir(res
)) < 1)
647 d_printf("Error: %s opening %s\n", strerror(errno
), res
);
651 while (dent
= smbc_readdir(dh
))
653 switch(dent
->smbc_type
)
657 case SMBC_FILE_SHARE
:
658 case SMBC_PRINTER_SHARE
:
659 case SMBC_COMMS_SHARE
:
666 pstrcpy(dentname
, res
);
667 pstrcat(dentname
, dent
->name
);
668 /*if (mask_match(dent->name, mask, False))*/
669 if (mask_match(dentname
, mask
, False
))
671 if (smbc_stat(dentname
, &stat
) < 0)
673 d_printf("> %s - stat error: %s\n", dent
->name
, strerror(errno
));
677 fn(dent
->name
, &stat
);
688 /****************************************************************************
689 A helper for do_list.
690 ****************************************************************************/
692 static void do_list_helper(const char *mntpoint
, file_info
*f
, const char *mask
, void *state
)
694 if (f
->mode
& aDIR
) {
695 if (do_list_dirs
&& do_this_one(f
)) {
698 if (do_list_recurse
&&
699 !strequal(f
->name
,".") &&
700 !strequal(f
->name
,"..")) {
705 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
709 pstrcpy(mask2
, mntpoint
);
710 pstrcat(mask2
, mask
);
711 p
= strrchr_m(mask2
,'/');
715 pstrcat(mask2
, f
->name
);
717 add_to_do_list_queue(mask2
);
722 if (do_this_one(f
)) {
727 /****************************************************************************
728 A wrapper around cli_list that adds recursion.
729 ****************************************************************************/
731 void do_list(const char *mask
,uint16 attribute
,void (*fn
)(file_info
*),BOOL rec
, BOOL dirs
)
733 static int in_do_list
= 0;
734 struct cli_state
*targetcli
;
737 if (in_do_list
&& rec
) {
738 fprintf(stderr
, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
744 do_list_recurse
= rec
;
749 init_do_list_queue();
750 add_to_do_list_queue(mask
);
752 while (! do_list_queue_empty()) {
754 * Need to copy head so that it doesn't become
755 * invalid inside the call to cli_list. This
756 * would happen if the list were expanded
758 * Fix from E. Jay Berkenbilt (ejb@ql.org)
761 pstrcpy(head
, do_list_queue_head());
765 if ( !cli_resolve_path( "", cli
, head
, &targetcli
, targetpath
) ) {
766 d_printf("do_list: [%s] %s\n", head
, cli_errstr(cli
));
767 remove_do_list_queue_head();
771 cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
);
772 remove_do_list_queue_head();
773 if ((! do_list_queue_empty()) && (fn
== display_finfo
)) {
774 char* next_file
= do_list_queue_head();
776 if ((strlen(next_file
) >= 2) &&
777 (next_file
[strlen(next_file
) - 1] == '*') &&
778 (next_file
[strlen(next_file
) - 2] == '/')) {
779 save_ch
= next_file
+
780 strlen(next_file
) - 2;
783 d_printf("\n%s\n",next_file
);
792 if ( cli_resolve_path( "", cli
, mask
, &targetcli
, targetpath
) ) {
793 if (cli_list(targetcli
, targetpath
, attribute
, do_list_helper
, NULL
) == -1)
794 d_printf("%s listing %s\n", cli_errstr(targetcli
), targetpath
);
797 d_printf("do_list: [%s] %s\n", mask
, cli_errstr(cli
));
802 reset_do_list_queue();
805 /****************************************************************************
806 Get a directory listing.
807 ****************************************************************************/
809 static int cmd_dir(void)
811 mode_t mode
= S_IFDIR
| S_IRWXU
| S_IRWXG
| S_IRWXO
;
816 pstrcpy(mask
, "smb:");
817 pstrcat(mask
, service
);
818 pstrcat(mask
, cur_dir
);
820 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)))
825 tool_list(mask
, mode
, display_stat
, recurse
, True
);
829 /****************************************************************************
830 Get a directory listing.
831 ****************************************************************************/
833 static int cmd_du(void)
835 uint16 attribute
= aDIR
| aSYSTEM
| aHIDDEN
;
842 pstrcpy(mask
,cur_dir
);
843 if(mask
[strlen(mask
)-1]!='/')
846 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
856 do_list(mask
, attribute
, do_du
, recurse
, True
);
860 d_printf("Total number of bytes: %.0f\n", dir_total
);
865 /****************************************************************************
866 Get a file from rname to lname
867 ****************************************************************************/
869 static int do_get(char *rname
, char *lname
, BOOL reget
)
871 int handle
= 0, fnum
;
872 BOOL newhandle
= False
;
874 struct timeval tp_start
;
875 int read_size
= io_bufsize
;
886 GetTimeOfDay(&tp_start
);
888 fnum
= smbc_open(rname
, O_RDONLY
, 0666);
891 d_printf("%s opening remote file %s\n", strerror(errno
), rname
);
895 if(!strcmp(lname
,"-")) {
896 handle
= fileno(stdout
);
899 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
, 0644);
901 start
= sys_lseek(handle
, 0, SEEK_END
);
904 d_printf("Error seeking local file\n");
909 handle
= sys_open(lname
, O_WRONLY
|O_CREAT
|O_TRUNC
, 0644);
914 d_printf("Error opening local file %s\n",lname
);
919 if (smbc_fstat(fnum
, &stat
) < 0)
921 d_printf("%s trying to stat remote file %s\n", strerror(errno
), rname
);
928 DEBUG(1,("getting file %s of size %.0f as %s ",
929 rname
, (double)stat
.st_size
, lname
));
931 if(!(data
= (char *)SMB_MALLOC(read_size
))) {
932 d_printf("malloc fail for size %d\n", read_size
);
939 if (smbc_lseek(fnum
, start
, SEEK_SET
) < 0)
941 d_printf("%s trying to lseek remote file %s\n", strerror(errno
), rname
);
949 int n
= smbc_read(fnum
, data
, read_size
);
953 d_printf("%s while reading remote file %s\n", strerror(errno
), rname
);
963 if (writefile(handle
,data
, n
) != n
) {
964 d_printf("Error writing local file\n");
972 if (nread
+ start
< stat
.st_size
) {
973 DEBUG (1, ("Short read when getting file %s. Only got %ld bytes.\n", rname
, (long)nread
));
979 if (smbc_close(fnum
) < 0)
981 d_printf("%s closing remote file %s\n", strerror(errno
), rname
);
989 /*if (archive_level >= 2 && (attr & aARCH)) {
990 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
994 struct timeval tp_end
;
997 GetTimeOfDay(&tp_end
);
999 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1000 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1001 get_total_time_ms
+= this_time
;
1002 get_total_size
+= nread
;
1004 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1005 nread
/ (1.024*this_time
+ 1.0e-4),
1006 get_total_size
/ (1.024*get_total_time_ms
)));
1012 /****************************************************************************
1014 ****************************************************************************/
1016 static int cmd_get(void)
1022 pstrcpy(rname
, "smb:");
1023 pstrcat(rname
, service
);
1024 pstrcat(rname
, cur_dir
);
1026 p
= rname
+ strlen(rname
);
1028 if (!next_token_nr(NULL
,p
,NULL
,sizeof(rname
)-strlen(rname
))) {
1029 d_printf("get <filename>\n");
1034 next_token_nr(NULL
,lname
,NULL
,sizeof(lname
));
1035 /*d_printf("lname: %s, rname: %s\n", lname, rname);*/
1036 return do_get(rname
, lname
, False
);
1039 /****************************************************************************
1040 Do an mget operation on one file.
1041 ****************************************************************************/
1043 static void do_mget(char *name
, struct stat
*st
)
1047 pstring saved_curdir
;
1051 if (strequal(name
,".") || strequal(name
,".."))
1054 if (S_ISDIR(st
->st_mode
))
1055 slprintf(quest
,sizeof(pstring
)-1, "Get directory %s%s? ", cur_dir
, name
);
1057 slprintf(quest
,sizeof(pstring
)-1, "Get file %s%s? ", cur_dir
, name
);
1059 if (prompt
&& !yesno(quest
))
1062 if (!S_ISDIR(st
->st_mode
)) {
1063 pstrcpy(rname
,"smb:");
1064 pstrcat(rname
,service
);
1065 pstrcat(rname
,cur_dir
);
1066 pstrcat(rname
,name
);
1067 do_get(rname
,name
, False
);
1071 /* handle directories */
1072 /* TODO: clean this code up for recursive calls */
1073 pstrcpy(saved_curdir
,cur_dir
);
1075 pstrcat(cur_dir
,name
);
1076 pstrcat(cur_dir
,"/");
1082 if (!directory_exist(name
,NULL
) &&
1083 mkdir(name
,0777) != 0) {
1084 d_printf("failed to create directory %s\n",name
);
1085 pstrcpy(cur_dir
,saved_curdir
);
1089 if (chdir(name
) != 0) {
1090 d_printf("failed to chdir to directory %s\n",name
);
1091 pstrcpy(cur_dir
,saved_curdir
);
1095 pstrcpy(mget_mask
,"smb:");
1096 pstrcat(mget_mask
,service
);
1097 pstrcat(mget_mask
,cur_dir
);
1098 pstrcat(mget_mask
,"*");
1100 /*d_printf("Calling with mask: %s\n", mget_mask);*/
1101 tool_list(mget_mask
, mode
, do_mget
, recurse
, recurse
);
1103 pstrcpy(cur_dir
,saved_curdir
);
1106 /****************************************************************************
1107 View the file using the pager.
1108 ****************************************************************************/
1110 static int cmd_more(void)
1112 pstring rname
,lname
,pager_cmd
;
1117 pstrcpy(rname
,cur_dir
);
1120 slprintf(lname
,sizeof(lname
)-1, "%s/smbmore.XXXXXX",tmpdir());
1121 fd
= smb_mkstemp(lname
);
1123 d_printf("failed to create temporary file for more\n");
1128 if (!next_token_nr(NULL
,rname
+strlen(rname
),NULL
,sizeof(rname
)-strlen(rname
))) {
1129 d_printf("more <filename>\n");
1135 rc
= do_get(rname
, lname
, False
);
1137 pager
=getenv("PAGER");
1139 slprintf(pager_cmd
,sizeof(pager_cmd
)-1,
1140 "%s %s",(pager
? pager
:PAGER
), lname
);
1147 /****************************************************************************
1149 ****************************************************************************/
1151 static int cmd_mget(void)
1160 while (next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1161 pstrcpy(mget_mask
, "smb:");
1162 pstrcat(mget_mask
, service
);
1163 pstrcat(mget_mask
,cur_dir
);
1164 if(mget_mask
[strlen(mget_mask
)-1]!='/')
1165 pstrcat(mget_mask
,"/");
1169 pstrcpy(mget_mask
, "smb:");
1170 pstrcat(mget_mask
, service
);
1171 pstrcat(mget_mask
,p
);
1174 pstrcat(mget_mask
,p
);
1175 /* TODO: enable directories on calls to tool_list
1176 once recursion is worked out */
1177 tool_list(mget_mask
, mode
, do_mget
, recurse
, recurse
);
1181 pstrcpy(mget_mask
, "smb:");
1182 pstrcat(mget_mask
, service
);
1183 pstrcat(mget_mask
,cur_dir
);
1184 if(mget_mask
[strlen(mget_mask
)-1]!='/')
1185 pstrcat(mget_mask
,"/");
1186 pstrcat(mget_mask
,"*");
1187 tool_list(mget_mask
, mode
, do_mget
, recurse
, recurse
);
1193 /****************************************************************************
1194 Make a directory of name "name".
1195 ****************************************************************************/
1197 static BOOL
do_mkdir(char *name
)
1199 if (smbc_mkdir(name
, 755) < 0)
1201 d_printf("Error: %s making remote directory %s\n", strerror(errno
), name
);
1208 /****************************************************************************
1209 Show 8.3 name of a file.
1210 ****************************************************************************/
1212 static BOOL
do_altname(char *name
)
1215 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli
, name
, altname
))) {
1216 d_printf("%s getting alt name for %s\n",
1217 cli_errstr(cli
),name
);
1220 d_printf("%s\n", altname
);
1225 /****************************************************************************
1227 ****************************************************************************/
1229 static int cmd_quit(void)
1237 /****************************************************************************
1239 ****************************************************************************/
1241 static int cmd_mkdir(void)
1249 pstrcpy(mask
,cur_dir
);
1251 if (!next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1253 d_printf("mkdir <dirname>\n");
1264 trim_char(ddir
,'.','\0');
1265 p
= strtok(ddir
,"/\\");
1269 pstrcpy(targetname
, "smb:");
1270 pstrcat(targetname
, service
);
1271 pstrcat(targetname
, "/");
1272 pstrcat(targetname
, ddir2
);
1273 DEBUG(3, ("Recursively making directory %s\n", targetname
));
1274 if ((dh
= smbc_opendir(targetname
)) < 0) {
1275 if (!do_mkdir(targetname
))
1282 p
= strtok(NULL
,"/\\");
1286 pstrcpy(targetname
, "smb:");
1287 pstrcat(targetname
, service
);
1288 pstrcat(targetname
, mask
);
1290 if (!do_mkdir(targetname
))
1297 /****************************************************************************
1299 ****************************************************************************/
1301 static int cmd_altname(void)
1307 pstrcpy(name
,cur_dir
);
1309 if (!next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1310 d_printf("altname <file>\n");
1320 /****************************************************************************
1322 ****************************************************************************/
1324 static int do_put(char *rname
, char *lname
, BOOL reput
)
1328 SMB_OFF_T start
= 0;
1331 int maxwrite
= io_bufsize
;
1333 struct timeval tp_start
;
1336 GetTimeOfDay(&tp_start
);
1339 fnum
= smbc_open(rname
, O_RDWR
|O_CREAT
, 0644);
1342 d_printf("%s opening remote file %s\n", strerror(errno
), rname
);
1345 if (smbc_fstat(fnum
, &stat
) < 0)
1347 d_printf("%s trying to stat remote file %s\n", strerror(errno
), rname
);
1351 start
= stat
.st_size
;
1353 fnum
= smbc_creat(rname
, 0644);
1356 d_printf("%s trying to create remote file %s\n", strerror(errno
), rname
);
1361 /* allow files to be piped into smbclient
1364 Note that in this case this function will exit(0) rather
1366 if (!strcmp(lname
, "-")) {
1368 /* size of file is not known */
1370 f
= x_fopen(lname
,O_RDONLY
, 0);
1372 if (x_tseek(f
, start
, SEEK_SET
) == -1) {
1373 d_printf("Error seeking local file\n");
1382 d_printf("Error opening local file %s\n",lname
);
1387 DEBUG(1,("putting file %s as %s ",lname
,rname
));
1389 buf
= (char *)SMB_MALLOC(maxwrite
);
1391 d_printf("ERROR: Not enough memory!\n");
1398 if (smbc_lseek(fnum
, start
, SEEK_SET
) < 0)
1400 d_printf("%s trying to lseek remote file %s\n", strerror(errno
), rname
);
1407 while (!x_feof(f
)) {
1411 if ((n
= readfile(buf
,n
,f
)) < 1) {
1412 if((n
== 0) && x_feof(f
))
1413 break; /* Empty local file. */
1415 d_printf("Error reading local file: %s\n", strerror(errno
));
1420 ret
= smbc_write(fnum
, buf
, n
);
1423 d_printf("Error writing file: %s\n", strerror(errno
));
1431 if (smbc_close(fnum
) < 0) {
1432 d_printf("%s closing remote file %s\n",strerror(errno
),rname
);
1447 struct timeval tp_end
;
1450 GetTimeOfDay(&tp_end
);
1452 (tp_end
.tv_sec
- tp_start
.tv_sec
)*1000 +
1453 (tp_end
.tv_usec
- tp_start
.tv_usec
)/1000;
1454 put_total_time_ms
+= this_time
;
1455 put_total_size
+= nread
;
1457 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1458 nread
/ (1.024*this_time
+ 1.0e-4),
1459 put_total_size
/ (1.024*put_total_time_ms
)));
1470 /****************************************************************************
1472 ****************************************************************************/
1474 static int cmd_put(void)
1481 pstrcpy(rname
, "smb:");
1482 pstrcat(rname
, service
);
1483 pstrcat(rname
, cur_dir
);
1485 if (!next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1486 d_printf("put <filename>\n");
1491 if (next_token_nr(NULL
,p
,NULL
,sizeof(buf
)))
1494 pstrcat(rname
,lname
);
1498 /* allow '-' to represent stdin
1499 jdblair, 24.jun.98 */
1500 if (!file_exist(lname
,&st
) &&
1501 (strcmp(lname
,"-"))) {
1502 d_printf("%s does not exist\n",lname
);
1507 /*d_printf("lname: %s, rname: %s\n", lname, rname);*/
1508 return do_put(rname
, lname
, False
);
1511 /*************************************
1512 File list structure.
1513 *************************************/
1515 static struct file_list
{
1516 struct file_list
*prev
, *next
;
1521 /****************************************************************************
1522 Free a file_list structure.
1523 ****************************************************************************/
1525 static void free_file_list (struct file_list
* list
)
1527 struct file_list
*tmp
;
1531 DLIST_REMOVE(list
, list
);
1532 SAFE_FREE(tmp
->file_path
);
1537 /****************************************************************************
1538 Seek in a directory/file list until you get something that doesn't start with
1540 ****************************************************************************/
1542 static BOOL
seek_list(struct file_list
*list
, char *name
)
1545 trim_string(list
->file_path
,"./","\n");
1546 if (strncmp(list
->file_path
, name
, strlen(name
)) != 0) {
1555 /****************************************************************************
1556 Set the file selection mask.
1557 ****************************************************************************/
1559 static int cmd_select(void)
1561 pstrcpy(fileselection
,"");
1562 next_token_nr(NULL
,fileselection
,NULL
,sizeof(fileselection
));
1567 /****************************************************************************
1568 Recursive file matching function act as find
1569 match must be always set to True when calling this function
1570 ****************************************************************************/
1572 static int file_find(struct file_list
**list
, const char *directory
,
1573 const char *expression
, BOOL match
)
1576 struct file_list
*entry
;
1577 struct stat statbuf
;
1583 dir
= opendir(directory
);
1587 while ((dname
= readdirname(dir
))) {
1588 if (!strcmp("..", dname
))
1590 if (!strcmp(".", dname
))
1593 if (asprintf(&path
, "%s/%s", directory
, dname
) <= 0) {
1598 if (!match
|| !gen_fnmatch(expression
, dname
)) {
1600 ret
= stat(path
, &statbuf
);
1602 if (S_ISDIR(statbuf
.st_mode
)) {
1604 ret
= file_find(list
, path
, expression
, False
);
1607 d_printf("file_find: cannot stat file %s\n", path
);
1616 entry
= SMB_MALLOC_P(struct file_list
);
1618 d_printf("Out of memory in file_find\n");
1622 entry
->file_path
= path
;
1623 entry
->isdir
= isdir
;
1624 DLIST_ADD(*list
, entry
);
1634 /****************************************************************************
1636 ****************************************************************************/
1638 static int cmd_mput(void)
1643 while (next_token_nr(NULL
,p
,NULL
,sizeof(buf
))) {
1645 struct file_list
*temp_list
;
1646 char *quest
, *lname
, *rname
;
1650 ret
= file_find(&file_list
, ".", p
, True
);
1652 free_file_list(file_list
);
1660 for (temp_list
= file_list
; temp_list
;
1661 temp_list
= temp_list
->next
) {
1664 if (asprintf(&lname
, "%s/", temp_list
->file_path
) <= 0)
1666 trim_string(lname
, "./", "/");
1668 /* check if it's a directory */
1669 if (temp_list
->isdir
) {
1670 /* if (!recurse) continue; */
1673 if (asprintf(&quest
, "Put directory %s? ", lname
) < 0) break;
1674 if (prompt
&& !yesno(quest
)) { /* No */
1675 /* Skip the directory */
1676 lname
[strlen(lname
)-1] = '/';
1677 if (!seek_list(temp_list
, lname
))
1681 if(asprintf(&rname
, "smb:%s%s%s", service
, cur_dir
, lname
) < 0) break;
1682 /*dos_format(rname);*/
1684 /* test if the directory exists by opening it */
1685 /*if (!((dh=smbc_opendir(rname)) < 0)) {
1689 /* test if the directory exists by making it */
1690 ret
= smbc_mkdir(rname
, 755);
1691 if ((ret
!= 0) && (errno
!= EEXIST
))
1693 d_printf("Error: %s. Unable to open or create dir %s, skipping...\n", strerror(errno
), rname
);
1694 /* Skip the directory */
1695 lname
[strlen(lname
)-1] = '/';
1696 if (!seek_list(temp_list
, lname
))
1703 if (asprintf(&quest
,"Put file %s? ", lname
) < 0) break;
1704 if (prompt
&& !yesno(quest
)) /* No */
1709 if (asprintf(&rname
, "smb:%s%s%s", service
, cur_dir
, lname
) < 0) break;
1712 /*d_printf("PUT: rname: %s, lname: %s\n", rname, lname);*/
1713 do_put(rname
, lname
, False
);
1715 free_file_list(file_list
);
1724 /****************************************************************************
1726 ****************************************************************************/
1728 static int do_cancel(int job
)
1730 if (cli_printjob_del(cli
, job
)) {
1731 d_printf("Job %d cancelled\n",job
);
1734 d_printf("Error cancelling job %d : %s\n",job
,cli_errstr(cli
));
1739 /****************************************************************************
1741 ****************************************************************************/
1743 static int cmd_cancel(void)
1748 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1749 d_printf("cancel <jobid> ...\n");
1755 } while (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)));
1760 /****************************************************************************
1762 ****************************************************************************/
1764 static int cmd_print(void)
1770 if (!next_token_nr(NULL
,lname
,NULL
, sizeof(lname
))) {
1771 d_printf("print <filename>\n");
1775 pstrcpy(rname
,lname
);
1776 p
= strrchr_m(rname
,'/');
1778 slprintf(rname
, sizeof(rname
)-1, "%s-%d", p
+1, (int)sys_getpid());
1781 if (strequal(lname
,"-")) {
1782 slprintf(rname
, sizeof(rname
)-1, "stdin-%d", (int)sys_getpid());
1785 return do_put(rname
, lname
, False
);
1788 /****************************************************************************
1789 Show a print queue entry.
1790 ****************************************************************************/
1792 static void queue_fn(struct print_job_info
*p
)
1794 d_printf("%-6d %-9d %s\n", (int)p
->id
, (int)p
->size
, p
->name
);
1797 /****************************************************************************
1799 ****************************************************************************/
1801 static int cmd_queue(void)
1803 cli_print_queue(cli
, queue_fn
);
1808 /****************************************************************************
1810 ****************************************************************************/
1812 static void do_del(file_info
*finfo
)
1816 pstrcpy(mask
,cur_dir
);
1817 pstrcat(mask
,finfo
->name
);
1819 if (finfo
->mode
& aDIR
)
1822 if (!cli_unlink(cli
, mask
)) {
1823 d_printf("%s deleting remote file %s\n",cli_errstr(cli
),mask
);
1827 /****************************************************************************
1829 ****************************************************************************/
1831 static int cmd_del(void)
1835 uint16 attribute
= aSYSTEM
| aHIDDEN
;
1840 pstrcpy(mask
,cur_dir
);
1842 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1843 d_printf("del <filename>\n");
1848 do_list(mask
, attribute
,do_del
,False
,False
);
1853 /****************************************************************************
1854 ****************************************************************************/
1856 static int cmd_open(void)
1860 struct cli_state
*targetcli
;
1863 pstrcpy(mask
,cur_dir
);
1865 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1866 d_printf("open <filename>\n");
1871 if ( !cli_resolve_path( "", cli
, mask
, &targetcli
, targetname
) ) {
1872 d_printf("open %s: %s\n", mask
, cli_errstr(cli
));
1876 cli_nt_create(targetcli
, targetname
, FILE_READ_DATA
);
1882 /****************************************************************************
1884 ****************************************************************************/
1886 static int cmd_rmdir(void)
1890 struct cli_state
*targetcli
;
1893 pstrcpy(mask
, "smb:");
1894 pstrcat(mask
, service
);
1895 pstrcat(mask
,cur_dir
);
1897 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
1898 d_printf("rmdir <dirname>\n");
1903 /*if ( !cli_resolve_path( "", cli, mask, &targetcli, targetname ) ) {
1904 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
1908 if (!cli_rmdir(targetcli, targetname)) {
1909 d_printf("%s removing remote directory file %s\n",
1910 cli_errstr(targetcli),mask);
1913 if (smbc_rmdir(mask
) < 0)
1914 d_printf("Error: %s removing remote directory file %s\n", strerror(errno
), mask
);
1919 /****************************************************************************
1921 ****************************************************************************/
1923 static int cmd_link(void)
1925 pstring oldname
,newname
;
1927 struct cli_state
*targetcli
;
1930 pstrcpy(oldname
,cur_dir
);
1931 pstrcpy(newname
,cur_dir
);
1933 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
1934 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1935 d_printf("link <oldname> <newname>\n");
1939 pstrcat(oldname
,buf
);
1940 pstrcat(newname
,buf2
);
1942 if ( !cli_resolve_path( "", cli
, oldname
, &targetcli
, targetname
) ) {
1943 d_printf("link %s: %s\n", oldname
, cli_errstr(cli
));
1947 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
1948 d_printf("Server doesn't support UNIX CIFS calls.\n");
1952 if (!cli_unix_hardlink(targetcli
, targetname
, newname
)) {
1953 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli
), newname
, oldname
);
1960 /****************************************************************************
1962 ****************************************************************************/
1964 static int cmd_symlink(void)
1966 pstring oldname
,newname
;
1969 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
1970 d_printf("Server doesn't support UNIX CIFS calls.\n");
1974 pstrcpy(newname
,cur_dir
);
1976 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
1977 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
1978 d_printf("symlink <oldname> <newname>\n");
1982 pstrcpy(oldname
,buf
);
1983 pstrcat(newname
,buf2
);
1985 if (!cli_unix_symlink(cli
, oldname
, newname
)) {
1986 d_printf("%s symlinking files (%s -> %s)\n",
1987 cli_errstr(cli
), newname
, oldname
);
1994 /****************************************************************************
1996 ****************************************************************************/
1998 static int cmd_chmod(void)
2003 struct cli_state
*targetcli
;
2006 pstrcpy(src
,cur_dir
);
2008 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
2009 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
2010 d_printf("chmod mode file\n");
2014 mode
= (mode_t
)strtol(buf
, NULL
, 8);
2017 if ( !cli_resolve_path( "", cli
, src
, &targetcli
, targetname
) ) {
2018 d_printf("chmod %s: %s\n", src
, cli_errstr(cli
));
2022 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2023 d_printf("Server doesn't support UNIX CIFS calls.\n");
2027 if (!cli_unix_chmod(targetcli
, targetname
, mode
)) {
2028 d_printf("%s chmod file %s 0%o\n",
2029 cli_errstr(targetcli
), src
, (unsigned int)mode
);
2036 static const char *filetype_to_str(mode_t mode
)
2038 if (S_ISREG(mode
)) {
2039 return "regular file";
2040 } else if (S_ISDIR(mode
)) {
2044 if (S_ISCHR(mode
)) {
2045 return "character device";
2049 if (S_ISBLK(mode
)) {
2050 return "block device";
2054 if (S_ISFIFO(mode
)) {
2059 if (S_ISLNK(mode
)) {
2060 return "symbolic link";
2064 if (S_ISSOCK(mode
)) {
2071 static char rwx_to_str(mode_t m
, mode_t bt
, char ret
)
2080 static char *unix_mode_to_str(char *s
, mode_t m
)
2083 const char *str
= filetype_to_str(m
);
2099 *p
++ = str
[1] == 'y' ? 'l' : 's';
2106 *p
++ = rwx_to_str(m
, S_IRUSR
, 'r');
2107 *p
++ = rwx_to_str(m
, S_IWUSR
, 'w');
2108 *p
++ = rwx_to_str(m
, S_IXUSR
, 'x');
2109 *p
++ = rwx_to_str(m
, S_IRGRP
, 'r');
2110 *p
++ = rwx_to_str(m
, S_IWGRP
, 'w');
2111 *p
++ = rwx_to_str(m
, S_IXGRP
, 'x');
2112 *p
++ = rwx_to_str(m
, S_IROTH
, 'r');
2113 *p
++ = rwx_to_str(m
, S_IWOTH
, 'w');
2114 *p
++ = rwx_to_str(m
, S_IXOTH
, 'x');
2119 /****************************************************************************
2120 Utility function for UNIX getfacl.
2121 ****************************************************************************/
2123 static char *perms_to_string(fstring permstr
, unsigned char perms
)
2125 fstrcpy(permstr
, "---");
2126 if (perms
& SMB_POSIX_ACL_READ
) {
2129 if (perms
& SMB_POSIX_ACL_WRITE
) {
2132 if (perms
& SMB_POSIX_ACL_EXECUTE
) {
2138 /****************************************************************************
2140 ****************************************************************************/
2142 static int cmd_getfacl(void)
2145 uint16 major
, minor
;
2146 uint32 caplow
, caphigh
;
2147 char *retbuf
= NULL
;
2149 SMB_STRUCT_STAT sbuf
;
2150 uint16 num_file_acls
= 0;
2151 uint16 num_dir_acls
= 0;
2153 struct cli_state
*targetcli
;
2156 pstrcpy(src
,cur_dir
);
2158 if (!next_token_nr(NULL
,name
,NULL
,sizeof(name
))) {
2159 d_printf("stat file\n");
2165 if ( !cli_resolve_path( "", cli
, src
, &targetcli
, targetname
) ) {
2166 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
2170 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2171 d_printf("Server doesn't support UNIX CIFS calls.\n");
2175 if (!cli_unix_extensions_version(targetcli
, &major
, &minor
, &caplow
, &caphigh
)) {
2176 d_printf("Can't get UNIX CIFS version from server.\n");
2180 if (!(caplow
& CIFS_UNIX_POSIX_ACLS_CAP
)) {
2181 d_printf("This server supports UNIX extensions but doesn't support POSIX ACLs.\n");
2186 if (!cli_unix_stat(targetcli
, targetname
, &sbuf
)) {
2187 d_printf("%s getfacl doing a stat on file %s\n",
2188 cli_errstr(targetcli
), src
);
2192 if (!cli_unix_getfacl(targetcli
, targetname
, &rb_size
, &retbuf
)) {
2193 d_printf("%s getfacl file %s\n",
2194 cli_errstr(targetcli
), src
);
2198 /* ToDo : Print out the ACL values. */
2199 if (SVAL(retbuf
,0) != SMB_POSIX_ACL_VERSION
|| rb_size
< 6) {
2200 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
2201 src
, (unsigned int)CVAL(retbuf
,0) );
2206 num_file_acls
= SVAL(retbuf
,2);
2207 num_dir_acls
= SVAL(retbuf
,4);
2208 if (rb_size
!= SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)) {
2209 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
2211 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE
+ SMB_POSIX_ACL_ENTRY_SIZE
*(num_file_acls
+num_dir_acls
)),
2212 (unsigned int)rb_size
);
2218 d_printf("# file: %s\n", src
);
2219 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf
.st_uid
, (unsigned int)sbuf
.st_gid
);
2221 if (num_file_acls
== 0 && num_dir_acls
== 0) {
2222 d_printf("No acls found.\n");
2225 for (i
= 0; i
< num_file_acls
; i
++) {
2228 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
));
2229 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
2232 case SMB_POSIX_ACL_USER_OBJ
:
2235 case SMB_POSIX_ACL_USER
:
2236 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
2237 d_printf("user:%u:", uorg
);
2239 case SMB_POSIX_ACL_GROUP_OBJ
:
2240 d_printf("group::");
2242 case SMB_POSIX_ACL_GROUP
:
2243 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+(i
*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
2244 d_printf("group:%u", uorg
);
2246 case SMB_POSIX_ACL_MASK
:
2249 case SMB_POSIX_ACL_OTHER
:
2250 d_printf("other::");
2253 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
2254 src
, (unsigned int)tagtype
);
2259 d_printf("%s\n", perms_to_string(permstring
, perms
));
2262 for (i
= 0; i
< num_dir_acls
; i
++) {
2265 unsigned char tagtype
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
));
2266 unsigned char perms
= CVAL(retbuf
, SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+1);
2269 case SMB_POSIX_ACL_USER_OBJ
:
2270 d_printf("default:user::");
2272 case SMB_POSIX_ACL_USER
:
2273 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
2274 d_printf("default:user:%u:", uorg
);
2276 case SMB_POSIX_ACL_GROUP_OBJ
:
2277 d_printf("default:group::");
2279 case SMB_POSIX_ACL_GROUP
:
2280 uorg
= IVAL(retbuf
,SMB_POSIX_ACL_HEADER_SIZE
+((i
+num_file_acls
)*SMB_POSIX_ACL_ENTRY_SIZE
)+2);
2281 d_printf("default:group:%u", uorg
);
2283 case SMB_POSIX_ACL_MASK
:
2284 d_printf("default:mask::");
2286 case SMB_POSIX_ACL_OTHER
:
2287 d_printf("default:other::");
2290 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
2291 src
, (unsigned int)tagtype
);
2296 d_printf("%s\n", perms_to_string(permstring
, perms
));
2303 /****************************************************************************
2305 ****************************************************************************/
2307 static int cmd_stat(void)
2311 SMB_STRUCT_STAT sbuf
;
2312 struct cli_state
*targetcli
;
2316 if (!SERVER_HAS_UNIX_CIFS(cli
)) {
2317 d_printf("Server doesn't support UNIX CIFS calls.\n");
2321 pstrcpy(src
,cur_dir
);
2323 if (!next_token_nr(NULL
,name
,NULL
,sizeof(name
))) {
2324 d_printf("stat file\n");
2331 if ( !cli_resolve_path( "", cli
, src
, &targetcli
, targetname
) ) {
2332 d_printf("stat %s: %s\n", src
, cli_errstr(cli
));
2336 if (!cli_unix_stat(targetcli
, targetname
, &sbuf
)) {
2337 d_printf("%s stat file %s\n",
2338 cli_errstr(targetcli
), src
);
2342 /* Print out the stat values. */
2343 d_printf("File: %s\n", src
);
2344 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
2345 (double)sbuf
.st_size
,
2346 (unsigned int)sbuf
.st_blocks
,
2347 filetype_to_str(sbuf
.st_mode
));
2349 #if defined(S_ISCHR) && defined(S_ISBLK)
2350 if (S_ISCHR(sbuf
.st_mode
) || S_ISBLK(sbuf
.st_mode
)) {
2351 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
2352 (double)sbuf
.st_ino
,
2353 (unsigned int)sbuf
.st_nlink
,
2354 unix_dev_major(sbuf
.st_rdev
),
2355 unix_dev_minor(sbuf
.st_rdev
));
2358 d_printf("Inode: %.0f\tLinks: %u\n",
2359 (double)sbuf
.st_ino
,
2360 (unsigned int)sbuf
.st_nlink
);
2362 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
2363 ((int)sbuf
.st_mode
& 0777),
2364 unix_mode_to_str(mode_str
, sbuf
.st_mode
),
2365 (unsigned int)sbuf
.st_uid
,
2366 (unsigned int)sbuf
.st_gid
);
2368 lt
= localtime(&sbuf
.st_atime
);
2370 strftime(mode_str
, sizeof(mode_str
), "%F %T %z", lt
);
2372 fstrcpy(mode_str
, "unknown");
2374 d_printf("Access: %s\n", mode_str
);
2376 lt
= localtime(&sbuf
.st_mtime
);
2378 strftime(mode_str
, sizeof(mode_str
), "%F %T %z", lt
);
2380 fstrcpy(mode_str
, "unknown");
2382 d_printf("Modify: %s\n", mode_str
);
2384 lt
= localtime(&sbuf
.st_ctime
);
2386 strftime(mode_str
, sizeof(mode_str
), "%F %T %z", lt
);
2388 fstrcpy(mode_str
, "unknown");
2390 d_printf("Change: %s\n", mode_str
);
2396 /****************************************************************************
2398 ****************************************************************************/
2400 static int cmd_chown(void)
2405 pstring buf
, buf2
, buf3
;
2406 struct cli_state
*targetcli
;
2409 pstrcpy(src
,cur_dir
);
2411 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
2412 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
)) ||
2413 !next_token_nr(NULL
,buf3
,NULL
, sizeof(buf3
))) {
2414 d_printf("chown uid gid file\n");
2418 uid
= (uid_t
)atoi(buf
);
2419 gid
= (gid_t
)atoi(buf2
);
2422 if ( !cli_resolve_path( "", cli
, src
, &targetcli
, targetname
) ) {
2423 d_printf("chown %s: %s\n", src
, cli_errstr(cli
));
2428 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2429 d_printf("Server doesn't support UNIX CIFS calls.\n");
2433 if (!cli_unix_chown(targetcli
, targetname
, uid
, gid
)) {
2434 d_printf("%s chown file %s uid=%d, gid=%d\n",
2435 cli_errstr(targetcli
), src
, (int)uid
, (int)gid
);
2442 /****************************************************************************
2444 ****************************************************************************/
2446 static int cmd_rename(void)
2450 pstring oname
, nname
;
2452 pstrcpy(src
, "smb:");
2453 pstrcat(src
, service
);
2454 pstrcat(src
, cur_dir
);
2457 if (!next_token_nr(NULL
,oname
,NULL
,sizeof(oname
)) ||
2458 !next_token_nr(NULL
,nname
,NULL
, sizeof(nname
))) {
2459 d_printf("rename <src> <dest>\n");
2463 pstrcat(src
, oname
);
2464 pstrcat(dest
, nname
);
2466 DEBUG(4, ("O: %s\nN: %s\n", src
, dest
));
2468 err
= smbc_rename(src
, dest
);
2471 d_printf("%s renaming files\n", strerror(errno
));
2478 /****************************************************************************
2479 Print the volume name.
2480 ****************************************************************************/
2482 static int cmd_volume(void)
2488 if (!cli_get_fs_volume_info(cli
, volname
, &serial_num
, &create_date
)) {
2489 d_printf("Errr %s getting volume info\n",cli_errstr(cli
));
2493 d_printf("Volume: |%s| serial number 0x%x\n", volname
, (unsigned int)serial_num
);
2497 /****************************************************************************
2498 Hard link files using the NT call.
2499 ****************************************************************************/
2501 static int cmd_hardlink(void)
2505 struct cli_state
*targetcli
;
2508 pstrcpy(src
,cur_dir
);
2509 pstrcpy(dest
,cur_dir
);
2511 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)) ||
2512 !next_token_nr(NULL
,buf2
,NULL
, sizeof(buf2
))) {
2513 d_printf("hardlink <src> <dest>\n");
2520 if ( !cli_resolve_path( "", cli
, src
, &targetcli
, targetname
) ) {
2521 d_printf("hardlink %s: %s\n", src
, cli_errstr(cli
));
2525 if (!SERVER_HAS_UNIX_CIFS(targetcli
)) {
2526 d_printf("Server doesn't support UNIX CIFS calls.\n");
2530 if (!cli_nt_hardlink(targetcli
, targetname
, dest
)) {
2531 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli
));
2538 /****************************************************************************
2539 Toggle the prompt flag.
2540 ****************************************************************************/
2542 static int cmd_prompt(void)
2545 DEBUG(2,("prompting is now %s\n",prompt
?"on":"off"));
2550 /****************************************************************************
2551 Set the newer than time.
2552 ****************************************************************************/
2554 static int cmd_newer(void)
2558 SMB_STRUCT_STAT sbuf
;
2560 ok
= next_token_nr(NULL
,buf
,NULL
,sizeof(buf
));
2561 if (ok
&& (sys_stat(buf
,&sbuf
) == 0)) {
2562 newer_than
= sbuf
.st_mtime
;
2563 DEBUG(1,("Getting files newer than %s",
2564 time_to_asc(newer_than
)));
2569 if (ok
&& newer_than
== 0) {
2570 d_printf("Error setting newer-than time\n");
2577 /****************************************************************************
2578 Set the archive level.
2579 ****************************************************************************/
2581 static int cmd_archive(void)
2585 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
2586 archive_level
= atoi(buf
);
2588 d_printf("Archive level is %d\n",archive_level
);
2593 /****************************************************************************
2594 Toggle the lowercaseflag.
2595 ****************************************************************************/
2597 static int cmd_lowercase(void)
2599 lowercase
= !lowercase
;
2600 DEBUG(2,("filename lowercasing is now %s\n",lowercase
?"on":"off"));
2605 /****************************************************************************
2606 Toggle the case sensitive flag.
2607 ****************************************************************************/
2609 static int cmd_setcase(void)
2611 BOOL orig_case_sensitive
= cli_set_case_sensitive(cli
, False
);
2613 cli_set_case_sensitive(cli
, !orig_case_sensitive
);
2614 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive
?
2620 /****************************************************************************
2621 Toggle the recurse flag.
2622 ****************************************************************************/
2624 static int cmd_recurse(void)
2627 DEBUG(2,("directory recursion is now %s\n",recurse
?"on":"off"));
2632 /****************************************************************************
2633 Toggle the translate flag.
2634 ****************************************************************************/
2636 static int cmd_translate(void)
2638 translation
= !translation
;
2639 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
2640 translation
?"on":"off"));
2645 /****************************************************************************
2647 ****************************************************************************/
2649 static int cmd_lcd(void)
2654 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
)))
2656 DEBUG(2,("the local directory is now %s\n",sys_getwd(d
)));
2661 /****************************************************************************
2662 Get a file restarting at end of local file.
2663 ****************************************************************************/
2665 static int cmd_reget(void)
2668 pstring remote_name
;
2671 pstrcpy(remote_name
, cur_dir
);
2672 pstrcat(remote_name
, "/");
2674 p
= remote_name
+ strlen(remote_name
);
2676 if (!next_token_nr(NULL
, p
, NULL
, sizeof(remote_name
) - strlen(remote_name
))) {
2677 d_printf("reget <filename>\n");
2680 pstrcpy(local_name
, p
);
2681 clean_name(remote_name
);
2683 next_token_nr(NULL
, local_name
, NULL
, sizeof(local_name
));
2685 return do_get(remote_name
, local_name
, True
);
2688 /****************************************************************************
2689 Put a file restarting at end of local file.
2690 ****************************************************************************/
2692 static int cmd_reput(void)
2695 pstring remote_name
;
2700 pstrcpy(remote_name
, cur_dir
);
2701 pstrcat(remote_name
, "/");
2703 if (!next_token_nr(NULL
, p
, NULL
, sizeof(buf
))) {
2704 d_printf("reput <filename>\n");
2707 pstrcpy(local_name
, p
);
2709 if (!file_exist(local_name
, &st
)) {
2710 d_printf("%s does not exist\n", local_name
);
2714 if (next_token_nr(NULL
, p
, NULL
, sizeof(buf
)))
2715 pstrcat(remote_name
, p
);
2717 pstrcat(remote_name
, local_name
);
2719 clean_name(remote_name
);
2721 return do_put(remote_name
, local_name
, True
);
2724 /****************************************************************************
2726 ****************************************************************************/
2728 static void browse_fn(const char *name
, uint32 m
,
2729 const char *comment
, void *state
)
2737 case STYPE_DISKTREE
:
2738 fstrcpy(typestr
,"Disk"); break;
2740 fstrcpy(typestr
,"Printer"); break;
2742 fstrcpy(typestr
,"Device"); break;
2744 fstrcpy(typestr
,"IPC"); break;
2746 /* FIXME: If the remote machine returns non-ascii characters
2747 in any of these fields, they can corrupt the output. We
2748 should remove them. */
2750 d_printf("\t%-15s %-10.10s%s\n",
2751 name
,typestr
,comment
);
2753 d_printf ("%s|%s|%s\n",typestr
,name
,comment
);
2757 /****************************************************************************
2758 Try and browse available connections on a host.
2759 ****************************************************************************/
2761 static BOOL
browse_host(BOOL sort
)
2765 d_printf("\n\tSharename Type Comment\n");
2766 d_printf("\t--------- ---- -------\n");
2769 if((ret
= cli_RNetShareEnum(cli
, browse_fn
, NULL
)) == -1)
2770 d_printf("Error returning browse list: %s\n", cli_errstr(cli
));
2775 /****************************************************************************
2777 ****************************************************************************/
2779 static void server_fn(const char *name
, uint32 m
,
2780 const char *comment
, void *state
)
2784 d_printf("\t%-16s %s\n", name
, comment
);
2786 d_printf("%s|%s|%s\n",(char *)state
, name
, comment
);
2790 /****************************************************************************
2791 Try and browse available connections on a host.
2792 ****************************************************************************/
2794 static BOOL
list_servers(const char *wk_grp
)
2798 if (!cli
->server_domain
)
2802 d_printf("\n\tServer Comment\n");
2803 d_printf("\t--------- -------\n");
2805 fstrcpy( state
, "Server" );
2806 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_ALL
, server_fn
,
2810 d_printf("\n\tWorkgroup Master\n");
2811 d_printf("\t--------- -------\n");
2814 fstrcpy( state
, "Workgroup" );
2815 cli_NetServerEnum(cli
, cli
->server_domain
, SV_TYPE_DOMAIN_ENUM
,
2820 /****************************************************************************
2821 Print or set current VUID
2822 ****************************************************************************/
2824 static int cmd_vuid(void)
2828 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
2829 d_printf("Current VUID is %d\n", cli
->vuid
);
2833 cli
->vuid
= atoi(buf
);
2837 /****************************************************************************
2838 Setup a new VUID, by issuing a session setup
2839 ****************************************************************************/
2841 static int cmd_logon(void)
2843 pstring l_username
, l_password
;
2846 if (!next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
2847 d_printf("logon <username> [<password>]\n");
2851 pstrcpy(l_username
, buf
);
2853 if (!next_token_nr(NULL
,buf2
,NULL
,sizeof(buf
)))
2855 char *pass
= getpass("Password: ");
2857 pstrcpy(l_password
, pass
);
2860 pstrcpy(l_password
, buf2
);
2862 if (!cli_session_setup(cli
, l_username
,
2863 l_password
, strlen(l_password
),
2864 l_password
, strlen(l_password
),
2866 d_printf("session setup failed: %s\n", cli_errstr(cli
));
2870 d_printf("Current VUID is %d\n", cli
->vuid
);
2875 /****************************************************************************
2876 list active connections
2877 ****************************************************************************/
2879 static int cmd_list_connect(void)
2886 /****************************************************************************
2887 display the current active client connection
2888 ****************************************************************************/
2890 static int cmd_show_connect( void )
2892 struct cli_state
*targetcli
;
2895 if ( !cli_resolve_path( "", cli
, cur_dir
, &targetcli
, targetpath
) ) {
2896 d_printf("showconnect %s: %s\n", cur_dir
, cli_errstr(cli
));
2900 d_printf("//%s/%s\n", targetcli
->desthost
, targetcli
->share
);
2904 /* Some constants for completing filename arguments */
2906 #define COMPL_NONE 0 /* No completions */
2907 #define COMPL_REMOTE 1 /* Complete remote filename */
2908 #define COMPL_LOCAL 2 /* Complete local filename */
2910 /* This defines the commands supported by this client.
2911 * NOTE: The "!" must be the last one in the list because it's fn pointer
2912 * field is NULL, and NULL in that field is used in process_tok()
2913 * (below) to indicate the end of the list. crh
2919 const char *description
;
2920 char compl_args
[2]; /* Completion argument info */
2922 {"?",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
2923 /* {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}}, */
2924 {"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
}},
2925 {"blocksize",cmd_block
,"blocksize <number> (default 20)",{COMPL_NONE
,COMPL_NONE
}},
2926 /* {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}}, */
2927 /* {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}}, */
2928 {"cd",cmd_cd
,"[directory] change/report the remote directory",{COMPL_REMOTE
,COMPL_NONE
}},
2929 /* {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}}, */
2930 /* {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}}, */
2931 /* {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}}, */
2932 {"dir",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2933 /* {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}}, */
2934 {"exit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2935 {"get",cmd_get
,"<remote name> [local name] get a file",{COMPL_REMOTE
,COMPL_LOCAL
}},
2936 /* {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}}, */
2937 /* {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}}, */
2938 {"help",cmd_help
,"[command] give help on a command",{COMPL_NONE
,COMPL_NONE
}},
2939 {"history",cmd_history
,"displays the command history",{COMPL_NONE
,COMPL_NONE
}},
2940 {"lcd",cmd_lcd
,"[directory] change/report the local current working directory",{COMPL_LOCAL
,COMPL_NONE
}},
2941 /* {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}}, */
2942 /* {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}}, */
2943 /* {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}}, */
2944 {"lowercase",cmd_lowercase
,"toggle lowercasing of filenames for get",{COMPL_NONE
,COMPL_NONE
}},
2945 {"ls",cmd_dir
,"<mask> list the contents of the current directory",{COMPL_REMOTE
,COMPL_NONE
}},
2946 /* {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}}, */
2947 {"md",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
2948 {"mget",cmd_mget
,"<mask> get all the matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2949 {"mkdir",cmd_mkdir
,"<directory> make a directory",{COMPL_NONE
,COMPL_NONE
}},
2950 /* {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}}, */
2951 {"mput",cmd_mput
,"<mask> put all matching files",{COMPL_REMOTE
,COMPL_NONE
}},
2952 {"newer",cmd_newer
,"<file> only mget files newer than the specified local file",{COMPL_LOCAL
,COMPL_NONE
}},
2953 /* {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}}, */
2954 /* {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}}, */
2955 {"prompt",cmd_prompt
,"toggle prompting for filenames for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
2956 {"put",cmd_put
,"<local name> [remote name] put a file",{COMPL_LOCAL
,COMPL_REMOTE
}},
2957 {"pwd",cmd_pwd
,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE
,COMPL_NONE
}},
2958 {"q",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2959 /* {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}}, */
2960 {"quit",cmd_quit
,"logoff the server",{COMPL_NONE
,COMPL_NONE
}},
2961 {"rd",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2962 {"recurse",cmd_recurse
,"toggle directory recursion for mget and mput",{COMPL_NONE
,COMPL_NONE
}},
2963 /* {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},*/
2964 {"rename",cmd_rename
,"<src> <dest> rename some files",{COMPL_REMOTE
,COMPL_REMOTE
}},
2965 /* {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},*/
2966 /* {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},*/
2967 {"rmdir",cmd_rmdir
,"<directory> remove a directory",{COMPL_NONE
,COMPL_NONE
}},
2968 /* {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},*/
2969 /* {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},*/
2970 /* {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},*/
2971 /* {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},*/
2972 {"tar",cmd_tar
,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE
,COMPL_NONE
}},
2973 {"tarmode",cmd_tarmode
,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE
,COMPL_NONE
}},
2974 {"translate",cmd_translate
,"toggle text translation for printing",{COMPL_NONE
,COMPL_NONE
}},
2975 /* {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}}, */
2976 /* {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}}, */
2978 /* Yes, this must be here, see crh's comment above. */
2979 {"!",NULL
,"run a shell command on the local system",{COMPL_NONE
,COMPL_NONE
}},
2980 {NULL
,NULL
,NULL
,{COMPL_NONE
,COMPL_NONE
}}
2983 /*******************************************************************
2984 Lookup a command string in the list of commands, including
2986 ******************************************************************/
2988 static int process_tok(pstring tok
)
2990 int i
= 0, matches
= 0;
2992 int tok_len
= strlen(tok
);
2994 while ((commands
[i
].fn
!= NULL
) || (strequal(commands
[i
].name
, "!"))) {
2995 if (strequal(commands
[i
].name
,tok
)) {
2999 } else if (strnequal(commands
[i
].name
, tok
, tok_len
)) {
3008 else if (matches
== 1)
3014 /****************************************************************************
3016 ****************************************************************************/
3018 static int cmd_help(void)
3023 if (next_token_nr(NULL
,buf
,NULL
,sizeof(buf
))) {
3024 if ((i
= process_tok(buf
)) >= 0)
3025 d_printf("HELP %s:\n\t%s\n\n",commands
[i
].name
,commands
[i
].description
);
3027 while (commands
[i
].description
) {
3028 for (j
=0; commands
[i
].description
&& (j
<5); j
++) {
3029 d_printf("%-15s",commands
[i
].name
);
3038 /****************************************************************************
3039 Process a -c command string.
3040 ****************************************************************************/
3042 static int process_command_string(char *cmd
)
3048 /* establish the connection if not already */
3051 cli
= cli_cm_open(desthost
, service
, True
);
3056 while (cmd
[0] != '\0') {
3061 if ((p
= strchr_m(cmd
, ';')) == 0) {
3062 strncpy(line
, cmd
, 999);
3068 strncpy(line
, cmd
, p
- cmd
);
3069 line
[p
- cmd
] = '\0';
3073 /* and get the first part of the command */
3075 if (!next_token_nr(&ptr
,tok
,NULL
,sizeof(tok
))) continue;
3077 if ((i
= process_tok(tok
)) >= 0) {
3078 rc
= commands
[i
].fn();
3079 } else if (i
== -2) {
3080 d_printf("%s: command abbreviation ambiguous\n",tok
);
3082 d_printf("%s: command not found\n",tok
);
3089 #define MAX_COMPLETIONS 100
3097 } completion_remote_t
;
3099 static void completion_remote_filter(const char *mnt
, file_info
*f
, const char *mask
, void *state
)
3101 completion_remote_t
*info
= (completion_remote_t
*)state
;
3103 if ((info
->count
< MAX_COMPLETIONS
- 1) && (strncmp(info
->text
, f
->name
, info
->len
) == 0) && (strcmp(f
->name
, ".") != 0) && (strcmp(f
->name
, "..") != 0)) {
3104 if ((info
->dirmask
[0] == 0) && !(f
->mode
& aDIR
))
3105 info
->matches
[info
->count
] = SMB_STRDUP(f
->name
);
3109 if (info
->dirmask
[0] != 0)
3110 pstrcpy(tmp
, info
->dirmask
);
3113 pstrcat(tmp
, f
->name
);
3116 info
->matches
[info
->count
] = SMB_STRDUP(tmp
);
3118 if (info
->matches
[info
->count
] == NULL
)
3121 smb_readline_ca_char(0);
3123 if (info
->count
== 1)
3124 info
->samelen
= strlen(info
->matches
[info
->count
]);
3126 while (strncmp(info
->matches
[info
->count
], info
->matches
[info
->count
-1], info
->samelen
) != 0)
3132 static char **remote_completion(const char *text
, int len
)
3136 completion_remote_t info
= { "", NULL
, 1, 0, NULL
, 0 };
3138 /* can't have non-static intialisation on Sun CC, so do it
3144 if (len
>= PATH_MAX
)
3147 info
.matches
= SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS
);
3148 if (!info
.matches
) return NULL
;
3149 info
.matches
[0] = NULL
;
3151 for (i
= len
-1; i
>= 0; i
--)
3152 if ((text
[i
] == '/') || (text
[i
] == '\\'))
3154 info
.text
= text
+i
+1;
3155 info
.samelen
= info
.len
= len
-i
-1;
3158 strncpy(info
.dirmask
, text
, i
+1);
3159 info
.dirmask
[i
+1] = 0;
3160 pstr_sprintf(dirmask
, "%s%*s*", cur_dir
, i
-1, text
);
3162 pstr_sprintf(dirmask
, "%s*", cur_dir
);
3164 if (cli_list(cli
, dirmask
, aDIR
| aSYSTEM
| aHIDDEN
, completion_remote_filter
, &info
) < 0)
3167 if (info
.count
== 2)
3168 info
.matches
[0] = SMB_STRDUP(info
.matches
[1]);
3170 info
.matches
[0] = SMB_MALLOC(info
.samelen
+1);
3171 if (!info
.matches
[0])
3173 strncpy(info
.matches
[0], info
.matches
[1], info
.samelen
);
3174 info
.matches
[0][info
.samelen
] = 0;
3176 info
.matches
[info
.count
] = NULL
;
3177 return info
.matches
;
3180 for (i
= 0; i
< info
.count
; i
++)
3181 free(info
.matches
[i
]);
3186 static char **completion_fn(const char *text
, int start
, int end
)
3188 smb_readline_ca_char(' ');
3191 const char *buf
, *sp
;
3195 buf
= smb_readline_get_line_buffer();
3199 sp
= strchr(buf
, ' ');
3203 for (i
= 0; commands
[i
].name
; i
++)
3204 if ((strncmp(commands
[i
].name
, text
, sp
- buf
) == 0) && (commands
[i
].name
[sp
- buf
] == 0))
3206 if (commands
[i
].name
== NULL
)
3212 if (sp
== (buf
+ start
))
3213 compl_type
= commands
[i
].compl_args
[0];
3215 compl_type
= commands
[i
].compl_args
[1];
3217 if (compl_type
== COMPL_REMOTE
)
3218 return remote_completion(text
, end
- start
);
3219 else /* fall back to local filename completion */
3223 int i
, len
, samelen
= 0, count
=1;
3225 matches
= SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS
);
3232 for (i
=0;commands
[i
].fn
&& count
< MAX_COMPLETIONS
-1;i
++) {
3233 if (strncmp(text
, commands
[i
].name
, len
) == 0) {
3234 matches
[count
] = SMB_STRDUP(commands
[i
].name
);
3235 if (!matches
[count
])
3238 samelen
= strlen(matches
[count
]);
3240 while (strncmp(matches
[count
], matches
[count
-1], samelen
) != 0)
3247 case 0: /* should never happen */
3251 matches
[0] = SMB_STRDUP(matches
[1]);
3254 matches
[0] = SMB_MALLOC(samelen
+1);
3257 strncpy(matches
[0], matches
[1], samelen
);
3258 matches
[0][samelen
] = 0;
3260 matches
[count
] = NULL
;
3264 for (i
= 0; i
< count
; i
++)
3272 /****************************************************************************
3273 Make sure we swallow keepalives during idle time.
3274 ****************************************************************************/
3276 static void readline_callback(void)
3279 struct timeval timeout
;
3280 static time_t last_t
;
3296 FD_SET(cli
->fd
,&fds
);
3299 timeout
.tv_usec
= 0;
3300 sys_select_intr(cli
->fd
+1,&fds
,NULL
,NULL
,&timeout
);
3302 /* We deliberately use receive_smb instead of
3303 client_receive_smb as we want to receive
3304 session keepalives and then drop them here.
3306 if (FD_ISSET(cli
->fd
,&fds
)) {
3307 receive_smb(cli
->fd
,cli
->inbuf
,0);
3311 cli_chkpath(cli
, "/");
3314 /****************************************************************************
3315 Process commands on stdin.
3316 ****************************************************************************/
3318 static int process_stdin(void)
3330 /* display a prompt */
3331 slprintf(the_prompt
, sizeof(the_prompt
)-1, "smb: %s> ", cur_dir
);
3332 /* Removed callback since we don't need to swallow keepalives with libsmbclient */
3333 /*cline = smb_readline(the_prompt, readline_callback, completion_fn);*/
3334 cline
= smb_readline(the_prompt
, NULL
, completion_fn
);
3338 pstrcpy(line
, cline
);
3340 /* special case - first char is ! */
3346 /* and get the first part of the command */
3348 if (!next_token_nr(&ptr
,tok
,NULL
,sizeof(tok
))) continue;
3350 if ((i
= process_tok(tok
)) >= 0) {
3351 rc
= commands
[i
].fn();
3352 } else if (i
== -2) {
3353 d_printf("%s: command abbreviation ambiguous\n",tok
);
3355 d_printf("%s: command not found\n",tok
);
3361 /****************************************************************************
3362 Process commands from the client.
3363 ****************************************************************************/
3365 static int process(char *base_directory
)
3369 /*cli = cli_cm_open(desthost, service, True);
3373 rc
= smbc_init(get_auth_data_fn
, 0); /* Initialize libsmbclient */
3376 d_printf("Error initializing libsmbclient: %s\n", strerror(errno
));
3380 if (*base_directory
) {
3381 rc
= do_cd(base_directory
);
3387 else /* start the auth fn*/
3395 rc
= process_command_string(cmdstr
);
3404 /****************************************************************************
3406 ****************************************************************************/
3408 static int do_host_query(char *query_host
)
3410 cli
= cli_cm_open(query_host
, "IPC$", True
);
3418 /* Workgroups simply don't make sense over anything
3419 else but port 139... */
3422 cli_cm_set_port( 139 );
3423 cli
= cli_cm_open(query_host
, "IPC$", True
);
3427 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
3431 list_servers(lp_workgroup());
3438 /****************************************************************************
3439 Handle a tar operation.
3440 ****************************************************************************/
3442 static int do_tar_op(char *base_directory
)
3446 /* do we already have a connection? */
3448 cli
= cli_cm_open(desthost
, service
, True
);
3455 if (*base_directory
) {
3456 ret
= do_cd(base_directory
);
3470 /****************************************************************************
3471 Handle a message operation.
3472 ****************************************************************************/
3474 static int do_message_op(void)
3477 struct nmb_name called
, calling
;
3478 fstring server_name
;
3479 char name_type_hex
[10];
3482 make_nmb_name(&calling
, calling_name
, 0x0);
3483 make_nmb_name(&called
, desthost
, name_type
);
3485 fstrcpy(server_name
, desthost
);
3486 snprintf(name_type_hex
, sizeof(name_type_hex
), "#%X", name_type
);
3487 fstrcat(server_name
, name_type_hex
);
3493 /* we can only do messages over port 139 (to windows clients at least) */
3495 msg_port
= port
? port
: 139;
3497 if (!(cli
=cli_initialise()) || (cli_set_port(cli
, msg_port
) != msg_port
) ||
3498 !cli_connect(cli
, server_name
, &ip
)) {
3499 d_printf("Connection to %s failed\n", desthost
);
3503 if (!cli_session_request(cli
, &calling
, &called
)) {
3504 d_printf("session request failed\n");
3516 /****************************************************************************
3518 ****************************************************************************/
3520 int main(int argc
,char *argv
[])
3522 pstring base_directory
;
3525 BOOL message
= False
;
3527 static const char *new_name_resolve_order
= NULL
;
3531 fstring new_workgroup
;
3532 struct poptOption long_options
[] = {
3535 { "name-resolve", 'R', POPT_ARG_STRING
, &new_name_resolve_order
, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
3536 { "message", 'M', POPT_ARG_STRING
, NULL
, 'M', "Send message", "HOST" },
3537 { "ip-address", 'I', POPT_ARG_STRING
, NULL
, 'I', "Use this IP to connect to", "IP" },
3538 { "stderr", 'E', POPT_ARG_NONE
, NULL
, 'E', "Write messages to stderr instead of stdout" },
3539 { "list", 'L', POPT_ARG_STRING
, NULL
, 'L', "Get a list of shares available on a host", "HOST" },
3540 { "terminal", 't', POPT_ARG_STRING
, NULL
, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
3541 { "max-protocol", 'm', POPT_ARG_STRING
, NULL
, 'm', "Set the max protocol level", "LEVEL" },
3542 { "tar", 'T', POPT_ARG_STRING
, NULL
, 'T', "Command line tar", "<c|x>IXFqgbNan" },
3543 { "directory", 'D', POPT_ARG_STRING
, NULL
, 'D', "Start from directory", "DIR" },
3544 { "command", 'c', POPT_ARG_STRING
, &cmdstr
, 'c', "Execute semicolon separated commands" },
3545 { "send-buffer", 'b', POPT_ARG_INT
, &io_bufsize
, 'b', "Changes the transmit/send buffer", "BYTES" },
3546 { "port", 'p', POPT_ARG_INT
, &port
, 'p', "Port to connect to", "PORT" },
3547 { "grepable", 'g', POPT_ARG_NONE
, NULL
, 'g', "Produce grepable output" },
3549 POPT_COMMON_CONNECTION
3550 POPT_COMMON_CREDENTIALS
3556 pstrcpy(term_code
, KANJI
);
3562 *base_directory
= 0;
3564 /* initialize the workgroup name so we can determine whether or
3565 not it was set by a command line option */
3567 set_global_myworkgroup( "" );
3568 set_global_myname( "" );
3570 /* set default debug level to 0 regardless of what smb.conf sets */
3571 setup_logging( "smbctool", True
);
3572 DEBUGLEVEL_CLASS
[DBGC_ALL
] = 1;
3573 if ((dbf
= x_fdup(x_stderr
))) {
3574 x_setbuf( dbf
, NULL
);
3577 pc
= poptGetContext("smbclient", argc
, (const char **) argv
, long_options
,
3578 POPT_CONTEXT_KEEP_FIRST
);
3579 poptSetOtherOptionHelp(pc
, "service <password>");
3581 in_client
= True
; /* Make sure that we tell lp_load we are */
3583 while ((opt
= poptGetNextOpt(pc
)) != -1) {
3586 /* Messages are sent to NetBIOS name type 0x3
3587 * (Messenger Service). Make sure we default
3588 * to port 139 instead of port 445. srl,crh
3591 cli_cm_set_dest_name_type( name_type
);
3592 pstrcpy(desthost
,poptGetOptArg(pc
));
3594 cli_cm_set_port( 139 );
3599 dest_ip
= *interpret_addr2(poptGetOptArg(pc
));
3600 if (is_zero_ip(dest_ip
))
3604 cli_cm_set_dest_ip( dest_ip
);
3612 display_set_stderr();
3616 pstrcpy(query_host
, poptGetOptArg(pc
));
3619 pstrcpy(term_code
, poptGetOptArg(pc
));
3622 max_protocol
= interpret_protocol(poptGetOptArg(pc
), max_protocol
);
3625 /* We must use old option processing for this. Find the
3626 * position of the -T option in the raw argv[]. */
3629 for (i
= 1; i
< argc
; i
++) {
3630 if (strncmp("-T", argv
[i
],2)==0)
3634 if (!(optnum
= tar_parseargs(argc
, argv
, poptGetOptArg(pc
), i
))) {
3635 poptPrintUsage(pc
, stderr
, 0);
3638 /* Now we must eat (optnum - i) options - they have
3639 * been processed by tar_parseargs().
3642 for (i
= 0; i
< optnum
; i
++)
3647 pstrcpy(base_directory
,poptGetOptArg(pc
));
3657 /* check for the -P option */
3660 cli_cm_set_port( port
);
3663 * Don't load debug level from smb.conf. It should be
3664 * set by cmdline arg or remain default (0)
3666 AllowDebugChange
= False
;
3668 /* save the workgroup...
3670 FIXME!! do we need to do this for other options as well
3671 (or maybe a generic way to keep lp_load() from overwriting
3674 fstrcpy( new_workgroup
, lp_workgroup() );
3675 pstrcpy( calling_name
, global_myname() );
3677 if ( override_logfile
)
3678 setup_logging( lp_logfile(), False
);
3682 if (!lp_load(dyn_CONFIGFILE
,True
,False
,False
,True
)) {
3683 fprintf(stderr
, "%s: Can't load %s - run testparm to debug it\n",
3684 argv
[0], dyn_CONFIGFILE
);
3689 if ( strlen(new_workgroup
) != 0 )
3690 set_global_myworkgroup( new_workgroup
);
3691 pstrcpy(workgroup
, lp_workgroup());
3693 if ( strlen(calling_name
) != 0 )
3694 set_global_myname( calling_name
);
3696 pstrcpy( calling_name
, global_myname() );
3698 if(poptPeekArg(pc
)) {
3699 pstrcpy(service
,poptGetArg(pc
));
3700 /* Convert any '\' characters in the service name to '/' characters */
3701 string_replace(service
, '\\','/');
3703 if (count_chars(service
,'/') < 3) {
3704 d_printf("\n%s: Not enough '/' characters in service\n",service
);
3705 poptPrintUsage(pc
, stderr
, 0);
3710 if (poptPeekArg(pc
) && !cmdline_auth_info
.got_pass
) {
3711 cmdline_auth_info
.got_pass
= True
;
3712 pstrcpy(cmdline_auth_info
.password
,poptGetArg(pc
));
3717 if(new_name_resolve_order
)
3718 lp_set_name_resolve_order(new_name_resolve_order
);
3720 if (!tar_type
&& !*query_host
&& !*service
&& !message
) {
3721 poptPrintUsage(pc
, stderr
, 0);
3725 poptFreeContext(pc
);
3727 /* store the username an password for dfs support */
3729 cli_cm_set_credentials( &cmdline_auth_info
);
3730 pstrcpy(username
, cmdline_auth_info
.username
);
3732 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING
));
3736 process_command_string(cmdstr
);
3737 return do_tar_op(base_directory
);
3741 char *qhost
= query_host
;
3744 while (*qhost
== '\\' || *qhost
== '/')
3747 if ((slash
= strchr_m(qhost
, '/'))
3748 || (slash
= strchr_m(qhost
, '\\'))) {
3752 if ((p
=strchr_m(qhost
, '#'))) {
3755 sscanf(p
, "%x", &name_type
);
3756 cli_cm_set_dest_name_type( name_type
);
3759 return do_host_query(qhost
);
3763 return do_message_op();
3766 if (process(base_directory
)) {