r19810: more merge work....does not compile currently. Working on smbd merge
[Samba.git] / source / client / client.c
blob3b153a7e04c9da7d53534d5f8b99cb45fb38aea6
1 /*
2 Unix SMB/CIFS implementation.
3 SMB client
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
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 2 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, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include "includes.h"
25 #include "client/client_proto.h"
26 #include "include/rpc_client.h"
27 #ifndef REGISTER
28 #define REGISTER 0
29 #endif
31 extern BOOL AllowDebugChange;
32 extern BOOL override_logfile;
33 extern char tar_type;
34 extern BOOL in_client;
35 static int port = 0;
36 pstring cur_dir = "\\";
37 static pstring cd_path = "";
38 static pstring service;
39 static pstring desthost;
40 static pstring username;
41 static pstring calling_name;
42 static BOOL grepable=False;
43 static char *cmdstr = NULL;
45 static int io_bufsize = 64512;
47 static int name_type = 0x20;
48 extern int max_protocol;
50 static int process_tok(pstring tok);
51 static int cmd_help(void);
53 static TALLOC_CTX *ctx;
54 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55 static pstring cwd;
57 /* 30 second timeout on most commands */
58 #define CLIENT_TIMEOUT (30*1000)
59 #define SHORT_TIMEOUT (5*1000)
61 /* value for unused fid field in trans2 secondary request */
62 #define FID_UNUSED (0xFFFF)
64 time_t newer_than = 0;
65 static int archive_level = 0;
67 static BOOL translation = False;
68 static BOOL have_ip;
70 /* clitar bits insert */
71 extern int blocksize;
72 extern BOOL tar_inc;
73 extern BOOL tar_reset;
74 /* clitar bits end */
77 static BOOL prompt = True;
79 static BOOL recurse = False;
80 static BOOL showacls = False;
81 BOOL lowercase = False;
83 static struct in_addr dest_ip;
85 #define SEPARATORS " \t\n\r"
87 static BOOL abort_mget = True;
89 static pstring fileselection = "";
91 extern file_info def_finfo;
93 /* timing globals */
94 SMB_BIG_UINT get_total_size = 0;
95 unsigned int get_total_time_ms = 0;
96 static SMB_BIG_UINT put_total_size = 0;
97 static unsigned int put_total_time_ms = 0;
99 /* totals globals */
100 static double dir_total;
102 /* root cli_state connection */
104 struct cli_state *cli;
106 static char CLI_DIRSEP_CHAR = '\\';
107 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
109 /****************************************************************************
110 Write to a local file with CR/LF->LF translation if appropriate. Return the
111 number taken from the buffer. This may not equal the number written.
112 ****************************************************************************/
114 static int writefile(int f, char *b, int n)
116 int i;
118 if (!translation) {
119 return write(f,b,n);
122 i = 0;
123 while (i < n) {
124 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
125 b++;i++;
127 if (write(f, b, 1) != 1) {
128 break;
130 b++;
131 i++;
134 return(i);
137 /****************************************************************************
138 Read from a file with LF->CR/LF translation if appropriate. Return the
139 number read. read approx n bytes.
140 ****************************************************************************/
142 static int readfile(char *b, int n, XFILE *f)
144 int i;
145 int c;
147 if (!translation)
148 return x_fread(b,1,n,f);
150 i = 0;
151 while (i < (n - 1) && (i < BUFFER_SIZE)) {
152 if ((c = x_getc(f)) == EOF) {
153 break;
156 if (c == '\n') { /* change all LFs to CR/LF */
157 b[i++] = '\r';
160 b[i++] = c;
163 return(i);
166 /****************************************************************************
167 Send a message.
168 ****************************************************************************/
170 static void send_message(void)
172 int total_len = 0;
173 int grp_id;
175 if (!cli_message_start(cli, desthost, username, &grp_id)) {
176 d_printf("message start: %s\n", cli_errstr(cli));
177 return;
181 d_printf("Connected. Type your message, ending it with a Control-D\n");
183 while (!feof(stdin) && total_len < 1600) {
184 int maxlen = MIN(1600 - total_len,127);
185 pstring msg;
186 int l=0;
187 int c;
189 ZERO_ARRAY(msg);
191 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
192 if (c == '\n')
193 msg[l++] = '\r';
194 msg[l] = c;
197 if (!cli_message_text(cli, msg, l, grp_id)) {
198 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
199 return;
202 total_len += l;
205 if (total_len >= 1600)
206 d_printf("the message was truncated to 1600 bytes\n");
207 else
208 d_printf("sent %d bytes\n",total_len);
210 if (!cli_message_end(cli, grp_id)) {
211 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
212 return;
216 /****************************************************************************
217 Check the space on a device.
218 ****************************************************************************/
220 static int do_dskattr(void)
222 int total, bsize, avail;
223 struct cli_state *targetcli;
224 pstring targetpath;
226 if ( !cli_resolve_path( "", cli, cur_dir, &targetcli, targetpath ) ) {
227 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
228 return 1;
231 if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
232 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
233 return 1;
236 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
237 total, bsize, avail);
239 return 0;
242 /****************************************************************************
243 Show cd/pwd.
244 ****************************************************************************/
246 static int cmd_pwd(void)
248 d_printf("Current directory is %s",service);
249 d_printf("%s\n",cur_dir);
250 return 0;
253 /****************************************************************************
254 Change directory - inner section.
255 ****************************************************************************/
257 static int do_cd(char *newdir)
259 char *p = newdir;
260 pstring saved_dir;
261 pstring dname;
262 pstring targetpath;
263 struct cli_state *targetcli;
264 SMB_STRUCT_STAT sbuf;
265 uint32 attributes;
266 int ret = 1;
268 dos_format(newdir);
270 /* Save the current directory in case the new directory is invalid */
272 pstrcpy(saved_dir, cur_dir);
274 if (*p == CLI_DIRSEP_CHAR)
275 pstrcpy(cur_dir,p);
276 else
277 pstrcat(cur_dir,p);
279 if ((cur_dir[0] != '\0') && (*(cur_dir+strlen(cur_dir)-1) != CLI_DIRSEP_CHAR)) {
280 pstrcat(cur_dir, CLI_DIRSEP_STR);
283 dos_clean_name(cur_dir);
284 pstrcpy( dname, cur_dir );
285 pstrcat(cur_dir,CLI_DIRSEP_STR);
286 dos_clean_name(cur_dir);
288 if ( !cli_resolve_path( "", cli, dname, &targetcli, targetpath ) ) {
289 d_printf("cd %s: %s\n", dname, cli_errstr(cli));
290 pstrcpy(cur_dir,saved_dir);
291 goto out;
295 if ( strequal(targetpath,CLI_DIRSEP_STR ) )
296 return 0;
298 /* Use a trans2_qpathinfo to test directories for modern servers.
299 Except Win9x doesn't support the qpathinfo_basic() call..... */
301 if ( targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95 ) {
302 if ( !cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
303 d_printf("cd %s: %s\n", dname, cli_errstr(targetcli));
304 pstrcpy(cur_dir,saved_dir);
305 goto out;
308 if ( !(attributes&FILE_ATTRIBUTE_DIRECTORY) ) {
309 d_printf("cd %s: not a directory\n", dname);
310 pstrcpy(cur_dir,saved_dir);
311 goto out;
313 } else {
314 pstrcat( targetpath, CLI_DIRSEP_STR );
315 dos_clean_name( targetpath );
317 if ( !cli_chkpath(targetcli, targetpath) ) {
318 d_printf("cd %s: %s\n", dname, cli_errstr(targetcli));
319 pstrcpy(cur_dir,saved_dir);
320 goto out;
324 ret = 0;
326 out:
328 pstrcpy(cd_path,cur_dir);
329 return ret;
332 /****************************************************************************
333 Change directory.
334 ****************************************************************************/
336 static int cmd_cd(void)
338 pstring buf;
339 int rc = 0;
341 if (next_token_nr(NULL,buf,NULL,sizeof(buf)))
342 rc = do_cd(buf);
343 else
344 d_printf("Current directory is %s\n",cur_dir);
346 return rc;
349 /*******************************************************************
350 Decide if a file should be operated on.
351 ********************************************************************/
353 static BOOL do_this_one(file_info *finfo)
355 if (finfo->mode & aDIR)
356 return(True);
358 if (*fileselection &&
359 !mask_match(finfo->name,fileselection,False)) {
360 DEBUG(3,("mask_match %s failed\n", finfo->name));
361 return False;
364 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
365 DEBUG(3,("newer_than %s failed\n", finfo->name));
366 return(False);
369 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
370 DEBUG(3,("archive %s failed\n", finfo->name));
371 return(False);
374 return(True);
377 /****************************************************************************
378 Display info about a file.
379 ****************************************************************************/
381 static void display_finfo(file_info *finfo)
383 if (do_this_one(finfo)) {
384 time_t t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
385 if (!showacls) {
386 d_printf(" %-30s%7.7s %8.0f %s",
387 finfo->name,
388 attrib_string(finfo->mode),
389 (double)finfo->size,
390 time_to_asc(&t));
391 dir_total += finfo->size;
392 } else {
393 pstring afname;
394 int fnum;
396 /* skip if this is . or .. */
397 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
398 return;
399 /* create absolute filename for cli_nt_create() FIXME */
400 pstrcpy( afname, cwd);
401 pstrcat( afname, "\\");
402 pstrcat( afname, finfo->name);
403 /* print file meta date header */
404 d_printf( "FILENAME:%s\n", afname);
405 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
406 d_printf( "SIZE:%.0f\n", (double)finfo->size);
407 d_printf( "MTIME:%s", time_to_asc(&t));
408 fnum = cli_nt_create(cli, afname, CREATE_ACCESS_READ);
409 if (fnum == -1) {
410 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
411 afname,
412 cli_errstr( cli)));
413 } else {
414 SEC_DESC *sd = NULL;
415 sd = cli_query_secdesc(cli, fnum, ctx);
416 if (!sd) {
417 DEBUG( 0, ("display_finfo() failed to "
418 "get security descriptor: %s",
419 cli_errstr( cli)));
420 } else {
421 display_sec_desc(sd);
428 /****************************************************************************
429 Accumulate size of a file.
430 ****************************************************************************/
432 static void do_du(file_info *finfo)
434 if (do_this_one(finfo)) {
435 dir_total += finfo->size;
439 static BOOL do_list_recurse;
440 static BOOL do_list_dirs;
441 static char *do_list_queue = 0;
442 static long do_list_queue_size = 0;
443 static long do_list_queue_start = 0;
444 static long do_list_queue_end = 0;
445 static void (*do_list_fn)(file_info *);
447 /****************************************************************************
448 Functions for do_list_queue.
449 ****************************************************************************/
452 * The do_list_queue is a NUL-separated list of strings stored in a
453 * char*. Since this is a FIFO, we keep track of the beginning and
454 * ending locations of the data in the queue. When we overflow, we
455 * double the size of the char*. When the start of the data passes
456 * the midpoint, we move everything back. This is logically more
457 * complex than a linked list, but easier from a memory management
458 * angle. In any memory error condition, do_list_queue is reset.
459 * Functions check to ensure that do_list_queue is non-NULL before
460 * accessing it.
463 static void reset_do_list_queue(void)
465 SAFE_FREE(do_list_queue);
466 do_list_queue_size = 0;
467 do_list_queue_start = 0;
468 do_list_queue_end = 0;
471 static void init_do_list_queue(void)
473 reset_do_list_queue();
474 do_list_queue_size = 1024;
475 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
476 if (do_list_queue == 0) {
477 d_printf("malloc fail for size %d\n",
478 (int)do_list_queue_size);
479 reset_do_list_queue();
480 } else {
481 memset(do_list_queue, 0, do_list_queue_size);
485 static void adjust_do_list_queue(void)
488 * If the starting point of the queue is more than half way through,
489 * move everything toward the beginning.
492 if (do_list_queue == NULL) {
493 DEBUG(4,("do_list_queue is empty\n"));
494 do_list_queue_start = do_list_queue_end = 0;
495 return;
498 if (do_list_queue_start == do_list_queue_end) {
499 DEBUG(4,("do_list_queue is empty\n"));
500 do_list_queue_start = do_list_queue_end = 0;
501 *do_list_queue = '\0';
502 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
503 DEBUG(4,("sliding do_list_queue backward\n"));
504 memmove(do_list_queue,
505 do_list_queue + do_list_queue_start,
506 do_list_queue_end - do_list_queue_start);
507 do_list_queue_end -= do_list_queue_start;
508 do_list_queue_start = 0;
512 static void add_to_do_list_queue(const char* entry)
514 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
515 while (new_end > do_list_queue_size) {
516 do_list_queue_size *= 2;
517 DEBUG(4,("enlarging do_list_queue to %d\n",
518 (int)do_list_queue_size));
519 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
520 if (! do_list_queue) {
521 d_printf("failure enlarging do_list_queue to %d bytes\n",
522 (int)do_list_queue_size);
523 reset_do_list_queue();
524 } else {
525 memset(do_list_queue + do_list_queue_size / 2,
526 0, do_list_queue_size / 2);
529 if (do_list_queue) {
530 safe_strcpy_base(do_list_queue + do_list_queue_end,
531 entry, do_list_queue, do_list_queue_size);
532 do_list_queue_end = new_end;
533 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
534 entry, (int)do_list_queue_start, (int)do_list_queue_end));
538 static char *do_list_queue_head(void)
540 return do_list_queue + do_list_queue_start;
543 static void remove_do_list_queue_head(void)
545 if (do_list_queue_end > do_list_queue_start) {
546 do_list_queue_start += strlen(do_list_queue_head()) + 1;
547 adjust_do_list_queue();
548 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
549 (int)do_list_queue_start, (int)do_list_queue_end));
553 static int do_list_queue_empty(void)
555 return (! (do_list_queue && *do_list_queue));
558 /****************************************************************************
559 A helper for do_list.
560 ****************************************************************************/
562 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
564 char *dir_end;
566 /* save the directory */
567 pstrcpy( f->dir, mask );
568 if ( (dir_end = strrchr( f->dir, CLI_DIRSEP_CHAR )) != NULL ) {
569 *dir_end = '\0';
572 if (f->mode & aDIR) {
573 if (do_list_dirs && do_this_one(f)) {
574 do_list_fn(f);
576 if (do_list_recurse &&
577 !strequal(f->name,".") &&
578 !strequal(f->name,"..")) {
579 pstring mask2;
580 char *p;
582 if (!f->name[0]) {
583 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
584 return;
587 pstrcpy(mask2, mntpoint);
588 pstrcat(mask2, mask);
589 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
590 if (!p)
591 return;
592 p[1] = 0;
593 pstrcat(mask2, f->name);
594 pstrcat(mask2,"\\*");
595 add_to_do_list_queue(mask2);
597 return;
600 if (do_this_one(f)) {
601 do_list_fn(f);
605 /****************************************************************************
606 A wrapper around cli_list that adds recursion.
607 ****************************************************************************/
609 void do_list(const char *mask,uint16 attribute,void (*fn)(file_info *),BOOL rec, BOOL dirs)
611 static int in_do_list = 0;
612 struct cli_state *targetcli;
613 pstring targetpath;
615 if (in_do_list && rec) {
616 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
617 exit(1);
620 in_do_list = 1;
622 do_list_recurse = rec;
623 do_list_dirs = dirs;
624 do_list_fn = fn;
626 if (rec) {
627 init_do_list_queue();
628 add_to_do_list_queue(mask);
630 while (! do_list_queue_empty()) {
632 * Need to copy head so that it doesn't become
633 * invalid inside the call to cli_list. This
634 * would happen if the list were expanded
635 * during the call.
636 * Fix from E. Jay Berkenbilt (ejb@ql.org)
638 pstring head;
639 pstrcpy(head, do_list_queue_head());
641 /* check for dfs */
643 if ( !cli_resolve_path( "", cli, head, &targetcli, targetpath ) ) {
644 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
645 remove_do_list_queue_head();
646 continue;
649 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
650 remove_do_list_queue_head();
651 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
652 char* next_file = do_list_queue_head();
653 char* save_ch = 0;
654 if ((strlen(next_file) >= 2) &&
655 (next_file[strlen(next_file) - 1] == '*') &&
656 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
657 save_ch = next_file +
658 strlen(next_file) - 2;
659 *save_ch = '\0';
660 if (showacls) /* cwd is only used if showacls is on */
661 pstrcpy( cwd, next_file);
663 if (!showacls) /* don't disturbe the showacls output */
664 d_printf("\n%s\n",next_file);
665 if (save_ch) {
666 *save_ch = CLI_DIRSEP_CHAR;
670 } else {
671 /* check for dfs */
673 if ( cli_resolve_path( "", cli, mask, &targetcli, targetpath ) ) {
674 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1)
675 d_printf("%s listing %s\n", cli_errstr(targetcli), targetpath);
677 else
678 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
682 in_do_list = 0;
683 reset_do_list_queue();
686 /****************************************************************************
687 Get a directory listing.
688 ****************************************************************************/
690 static int cmd_dir(void)
692 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
693 pstring mask;
694 pstring buf;
695 char *p=buf;
696 int rc;
698 dir_total = 0;
699 if (strcmp(cur_dir, CLI_DIRSEP_STR) != 0) {
700 pstrcpy(mask,cur_dir);
701 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR))
702 pstrcat(mask,CLI_DIRSEP_STR);
703 } else {
704 pstrcpy(mask, CLI_DIRSEP_STR);
707 if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
708 dos_format(p);
709 if (*p == CLI_DIRSEP_CHAR)
710 pstrcpy(mask,p + 1);
711 else
712 pstrcat(mask,p);
713 } else {
714 pstrcat(mask,"*");
717 do_list(mask, attribute, display_finfo, recurse, True);
719 rc = do_dskattr();
721 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
723 return rc;
726 /****************************************************************************
727 Get a directory listing.
728 ****************************************************************************/
730 static int cmd_du(void)
732 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
733 pstring mask;
734 pstring buf;
735 char *p=buf;
736 int rc;
738 dir_total = 0;
739 pstrcpy(mask,cur_dir);
740 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR))
741 pstrcat(mask,CLI_DIRSEP_STR);
743 if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
744 dos_format(p);
745 if (*p == CLI_DIRSEP_CHAR)
746 pstrcpy(mask,p);
747 else
748 pstrcat(mask,p);
749 } else {
750 pstrcat(mask,"*");
753 do_list(mask, attribute, do_du, recurse, True);
755 rc = do_dskattr();
757 d_printf("Total number of bytes: %.0f\n", dir_total);
759 return rc;
762 /****************************************************************************
763 Get a file from rname to lname
764 ****************************************************************************/
766 static int do_get(char *rname, char *lname, BOOL reget)
768 int handle = 0, fnum;
769 BOOL newhandle = False;
770 char *data;
771 struct timeval tp_start;
772 int read_size = io_bufsize;
773 uint16 attr;
774 SMB_OFF_T size;
775 off_t start = 0;
776 off_t nread = 0;
777 int rc = 0;
778 struct cli_state *targetcli;
779 pstring targetname;
782 if (lowercase) {
783 strlower_m(lname);
786 if ( !cli_resolve_path( "", cli, rname, &targetcli, targetname ) ) {
787 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
788 return 1;
791 GetTimeOfDay(&tp_start);
793 if ( targetcli->dfsroot ) {
794 pstring path;
796 /* we need to refer to the full \server\share\path format
797 for dfs shares */
799 pstrcpy( path, targetname );
800 cli_dfs_make_full_path( targetname, targetcli->desthost,
801 targetcli->share, path);
804 fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
806 if (fnum == -1) {
807 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
808 return 1;
811 if(!strcmp(lname,"-")) {
812 handle = fileno(stdout);
813 } else {
814 if (reget) {
815 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
816 if (handle >= 0) {
817 start = sys_lseek(handle, 0, SEEK_END);
818 if (start == -1) {
819 d_printf("Error seeking local file\n");
820 return 1;
823 } else {
824 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
826 newhandle = True;
828 if (handle < 0) {
829 d_printf("Error opening local file %s\n",lname);
830 return 1;
834 if (!cli_qfileinfo(targetcli, fnum,
835 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
836 !cli_getattrE(targetcli, fnum,
837 &attr, &size, NULL, NULL, NULL)) {
838 d_printf("getattrib: %s\n",cli_errstr(targetcli));
839 return 1;
842 DEBUG(1,("getting file %s of size %.0f as %s ",
843 rname, (double)size, lname));
845 if(!(data = (char *)SMB_MALLOC(read_size))) {
846 d_printf("malloc fail for size %d\n", read_size);
847 cli_close(targetcli, fnum);
848 return 1;
851 while (1) {
852 int n = cli_read(targetcli, fnum, data, nread + start, read_size);
854 if (n <= 0)
855 break;
857 if (writefile(handle,data, n) != n) {
858 d_printf("Error writing local file\n");
859 rc = 1;
860 break;
863 nread += n;
866 if (nread + start < size) {
867 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
868 rname, (long)nread));
870 rc = 1;
873 SAFE_FREE(data);
875 if (!cli_close(targetcli, fnum)) {
876 d_printf("Error %s closing remote file\n",cli_errstr(cli));
877 rc = 1;
880 if (newhandle) {
881 close(handle);
884 if (archive_level >= 2 && (attr & aARCH)) {
885 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
889 struct timeval tp_end;
890 int this_time;
892 GetTimeOfDay(&tp_end);
893 this_time =
894 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
895 (tp_end.tv_usec - tp_start.tv_usec)/1000;
896 get_total_time_ms += this_time;
897 get_total_size += nread;
899 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
900 nread / (1.024*this_time + 1.0e-4),
901 get_total_size / (1.024*get_total_time_ms)));
904 return rc;
907 /****************************************************************************
908 Get a file.
909 ****************************************************************************/
911 static int cmd_get(void)
913 pstring lname;
914 pstring rname;
915 char *p;
917 pstrcpy(rname,cur_dir);
918 pstrcat(rname,CLI_DIRSEP_STR);
920 p = rname + strlen(rname);
922 if (!next_token_nr(NULL,p,NULL,sizeof(rname)-strlen(rname))) {
923 d_printf("get <filename>\n");
924 return 1;
926 pstrcpy(lname,p);
927 dos_clean_name(rname);
929 next_token_nr(NULL,lname,NULL,sizeof(lname));
931 return do_get(rname, lname, False);
934 /****************************************************************************
935 Do an mget operation on one file.
936 ****************************************************************************/
938 static void do_mget(file_info *finfo)
940 pstring rname;
941 pstring quest;
942 pstring saved_curdir;
943 pstring mget_mask;
945 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
946 return;
948 if (abort_mget) {
949 d_printf("mget aborted\n");
950 return;
953 if (finfo->mode & aDIR)
954 slprintf(quest,sizeof(pstring)-1,
955 "Get directory %s? ",finfo->name);
956 else
957 slprintf(quest,sizeof(pstring)-1,
958 "Get file %s? ",finfo->name);
960 if (prompt && !yesno(quest))
961 return;
963 if (!(finfo->mode & aDIR)) {
964 pstrcpy(rname,cur_dir);
965 pstrcat(rname,finfo->name);
966 do_get(rname, finfo->name, False);
967 return;
970 /* handle directories */
971 pstrcpy(saved_curdir,cur_dir);
973 pstrcat(cur_dir,finfo->name);
974 pstrcat(cur_dir,CLI_DIRSEP_STR);
976 unix_format(finfo->name);
977 if (lowercase)
978 strlower_m(finfo->name);
980 if (!directory_exist(finfo->name,NULL) &&
981 mkdir(finfo->name,0777) != 0) {
982 d_printf("failed to create directory %s\n",finfo->name);
983 pstrcpy(cur_dir,saved_curdir);
984 return;
987 if (chdir(finfo->name) != 0) {
988 d_printf("failed to chdir to directory %s\n",finfo->name);
989 pstrcpy(cur_dir,saved_curdir);
990 return;
993 pstrcpy(mget_mask,cur_dir);
994 pstrcat(mget_mask,"*");
996 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,False, True);
997 chdir("..");
998 pstrcpy(cur_dir,saved_curdir);
1001 /****************************************************************************
1002 View the file using the pager.
1003 ****************************************************************************/
1005 static int cmd_more(void)
1007 pstring rname,lname,pager_cmd;
1008 char *pager;
1009 int fd;
1010 int rc = 0;
1012 pstrcpy(rname,cur_dir);
1013 pstrcat(rname,CLI_DIRSEP_STR);
1015 slprintf(lname,sizeof(lname)-1, "%s/smbmore.XXXXXX",tmpdir());
1016 fd = smb_mkstemp(lname);
1017 if (fd == -1) {
1018 d_printf("failed to create temporary file for more\n");
1019 return 1;
1021 close(fd);
1023 if (!next_token_nr(NULL,rname+strlen(rname),NULL,sizeof(rname)-strlen(rname))) {
1024 d_printf("more <filename>\n");
1025 unlink(lname);
1026 return 1;
1028 dos_clean_name(rname);
1030 rc = do_get(rname, lname, False);
1032 pager=getenv("PAGER");
1034 slprintf(pager_cmd,sizeof(pager_cmd)-1,
1035 "%s %s",(pager? pager:PAGER), lname);
1036 system(pager_cmd);
1037 unlink(lname);
1039 return rc;
1042 /****************************************************************************
1043 Do a mget command.
1044 ****************************************************************************/
1046 static int cmd_mget(void)
1048 uint16 attribute = aSYSTEM | aHIDDEN;
1049 pstring mget_mask;
1050 pstring buf;
1051 char *p=buf;
1053 *mget_mask = 0;
1055 if (recurse)
1056 attribute |= aDIR;
1058 abort_mget = False;
1060 while (next_token_nr(NULL,p,NULL,sizeof(buf))) {
1061 pstrcpy(mget_mask,cur_dir);
1062 if ((mget_mask[0] != '\0') && (mget_mask[strlen(mget_mask)-1]!=CLI_DIRSEP_CHAR))
1063 pstrcat(mget_mask,CLI_DIRSEP_STR);
1065 if (*p == CLI_DIRSEP_CHAR)
1066 pstrcpy(mget_mask,p);
1067 else
1068 pstrcat(mget_mask,p);
1069 do_list(mget_mask, attribute,do_mget,False,True);
1072 if (!*mget_mask) {
1073 pstrcpy(mget_mask,cur_dir);
1074 if(mget_mask[strlen(mget_mask)-1]!=CLI_DIRSEP_CHAR)
1075 pstrcat(mget_mask,CLI_DIRSEP_STR);
1076 pstrcat(mget_mask,"*");
1077 do_list(mget_mask, attribute,do_mget,False,True);
1080 return 0;
1083 /****************************************************************************
1084 Make a directory of name "name".
1085 ****************************************************************************/
1087 static BOOL do_mkdir(char *name)
1089 struct cli_state *targetcli;
1090 pstring targetname;
1092 if ( !cli_resolve_path( "", cli, name, &targetcli, targetname ) ) {
1093 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1094 return False;
1097 if (!cli_mkdir(targetcli, targetname)) {
1098 d_printf("%s making remote directory %s\n",
1099 cli_errstr(targetcli),name);
1100 return(False);
1103 return(True);
1106 /****************************************************************************
1107 Show 8.3 name of a file.
1108 ****************************************************************************/
1110 static BOOL do_altname(char *name)
1112 pstring altname;
1113 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1114 d_printf("%s getting alt name for %s\n",
1115 cli_errstr(cli),name);
1116 return(False);
1118 d_printf("%s\n", altname);
1120 return(True);
1123 /****************************************************************************
1124 Exit client.
1125 ****************************************************************************/
1127 static int cmd_quit(void)
1129 cli_cm_shutdown();
1130 talloc_destroy( ctx);
1131 exit(0);
1132 /* NOTREACHED */
1133 return 0;
1136 /****************************************************************************
1137 Make a directory.
1138 ****************************************************************************/
1140 static int cmd_mkdir(void)
1142 pstring mask;
1143 pstring buf;
1144 char *p=buf;
1146 pstrcpy(mask,cur_dir);
1148 if (!next_token_nr(NULL,p,NULL,sizeof(buf))) {
1149 if (!recurse)
1150 d_printf("mkdir <dirname>\n");
1151 return 1;
1153 pstrcat(mask,p);
1155 if (recurse) {
1156 pstring ddir;
1157 pstring ddir2;
1158 *ddir2 = 0;
1160 pstrcpy(ddir,mask);
1161 trim_char(ddir,'.','\0');
1162 p = strtok(ddir,"/\\");
1163 while (p) {
1164 pstrcat(ddir2,p);
1165 if (!cli_chkpath(cli, ddir2)) {
1166 do_mkdir(ddir2);
1168 pstrcat(ddir2,CLI_DIRSEP_STR);
1169 p = strtok(NULL,"/\\");
1171 } else {
1172 do_mkdir(mask);
1175 return 0;
1178 /****************************************************************************
1179 Show alt name.
1180 ****************************************************************************/
1182 static int cmd_altname(void)
1184 pstring name;
1185 pstring buf;
1186 char *p=buf;
1188 pstrcpy(name,cur_dir);
1190 if (!next_token_nr(NULL,p,NULL,sizeof(buf))) {
1191 d_printf("altname <file>\n");
1192 return 1;
1194 pstrcat(name,p);
1196 do_altname(name);
1198 return 0;
1201 /****************************************************************************
1202 Put a single file.
1203 ****************************************************************************/
1205 static int do_put(char *rname, char *lname, BOOL reput)
1207 int fnum;
1208 XFILE *f;
1209 SMB_OFF_T start = 0;
1210 off_t nread = 0;
1211 char *buf = NULL;
1212 int maxwrite = io_bufsize;
1213 int rc = 0;
1214 struct timeval tp_start;
1215 struct cli_state *targetcli;
1216 pstring targetname;
1218 if ( !cli_resolve_path( "", cli, rname, &targetcli, targetname ) ) {
1219 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1220 return 1;
1223 GetTimeOfDay(&tp_start);
1225 if (reput) {
1226 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
1227 if (fnum >= 0) {
1228 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1229 !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
1230 d_printf("getattrib: %s\n",cli_errstr(cli));
1231 return 1;
1234 } else {
1235 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1238 if (fnum == -1) {
1239 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1240 return 1;
1243 /* allow files to be piped into smbclient
1244 jdblair 24.jun.98
1246 Note that in this case this function will exit(0) rather
1247 than returning. */
1248 if (!strcmp(lname, "-")) {
1249 f = x_stdin;
1250 /* size of file is not known */
1251 } else {
1252 f = x_fopen(lname,O_RDONLY, 0);
1253 if (f && reput) {
1254 if (x_tseek(f, start, SEEK_SET) == -1) {
1255 d_printf("Error seeking local file\n");
1256 return 1;
1261 if (!f) {
1262 d_printf("Error opening local file %s\n",lname);
1263 return 1;
1266 DEBUG(1,("putting file %s as %s ",lname,
1267 rname));
1269 buf = (char *)SMB_MALLOC(maxwrite);
1270 if (!buf) {
1271 d_printf("ERROR: Not enough memory!\n");
1272 return 1;
1274 while (!x_feof(f)) {
1275 int n = maxwrite;
1276 int ret;
1278 if ((n = readfile(buf,n,f)) < 1) {
1279 if((n == 0) && x_feof(f))
1280 break; /* Empty local file. */
1282 d_printf("Error reading local file: %s\n", strerror(errno));
1283 rc = 1;
1284 break;
1287 ret = cli_write(targetcli, fnum, 0, buf, nread + start, n);
1289 if (n != ret) {
1290 d_printf("Error writing file: %s\n", cli_errstr(cli));
1291 rc = 1;
1292 break;
1295 nread += n;
1298 if (!cli_close(targetcli, fnum)) {
1299 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1300 x_fclose(f);
1301 SAFE_FREE(buf);
1302 return 1;
1306 if (f != x_stdin) {
1307 x_fclose(f);
1310 SAFE_FREE(buf);
1313 struct timeval tp_end;
1314 int this_time;
1316 GetTimeOfDay(&tp_end);
1317 this_time =
1318 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1319 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1320 put_total_time_ms += this_time;
1321 put_total_size += nread;
1323 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1324 nread / (1.024*this_time + 1.0e-4),
1325 put_total_size / (1.024*put_total_time_ms)));
1328 if (f == x_stdin) {
1329 cli_cm_shutdown();
1330 exit(0);
1333 return rc;
1336 /****************************************************************************
1337 Put a file.
1338 ****************************************************************************/
1340 static int cmd_put(void)
1342 pstring lname;
1343 pstring rname;
1344 pstring buf;
1345 char *p=buf;
1347 pstrcpy(rname,cur_dir);
1348 pstrcat(rname,CLI_DIRSEP_STR);
1350 if (!next_token_nr(NULL,p,NULL,sizeof(buf))) {
1351 d_printf("put <filename>\n");
1352 return 1;
1354 pstrcpy(lname,p);
1356 if (next_token_nr(NULL,p,NULL,sizeof(buf)))
1357 pstrcat(rname,p);
1358 else
1359 pstrcat(rname,lname);
1361 dos_clean_name(rname);
1364 SMB_STRUCT_STAT st;
1365 /* allow '-' to represent stdin
1366 jdblair, 24.jun.98 */
1367 if (!file_exist(lname,&st) &&
1368 (strcmp(lname,"-"))) {
1369 d_printf("%s does not exist\n",lname);
1370 return 1;
1374 return do_put(rname, lname, False);
1377 /*************************************
1378 File list structure.
1379 *************************************/
1381 static struct file_list {
1382 struct file_list *prev, *next;
1383 char *file_path;
1384 BOOL isdir;
1385 } *file_list;
1387 /****************************************************************************
1388 Free a file_list structure.
1389 ****************************************************************************/
1391 static void free_file_list (struct file_list *list_head)
1393 struct file_list *list, *next;
1395 for (list = list_head; list; list = next) {
1396 next = list->next;
1397 DLIST_REMOVE(list_head, list);
1398 SAFE_FREE(list->file_path);
1399 SAFE_FREE(list);
1403 /****************************************************************************
1404 Seek in a directory/file list until you get something that doesn't start with
1405 the specified name.
1406 ****************************************************************************/
1408 static BOOL seek_list(struct file_list *list, char *name)
1410 while (list) {
1411 trim_string(list->file_path,"./","\n");
1412 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1413 return(True);
1415 list = list->next;
1418 return(False);
1421 /****************************************************************************
1422 Set the file selection mask.
1423 ****************************************************************************/
1425 static int cmd_select(void)
1427 pstrcpy(fileselection,"");
1428 next_token_nr(NULL,fileselection,NULL,sizeof(fileselection));
1430 return 0;
1433 /****************************************************************************
1434 Recursive file matching function act as find
1435 match must be always set to True when calling this function
1436 ****************************************************************************/
1438 static int file_find(struct file_list **list, const char *directory,
1439 const char *expression, BOOL match)
1441 SMB_STRUCT_DIR *dir;
1442 struct file_list *entry;
1443 struct stat statbuf;
1444 int ret;
1445 char *path;
1446 BOOL isdir;
1447 const char *dname;
1449 dir = sys_opendir(directory);
1450 if (!dir)
1451 return -1;
1453 while ((dname = readdirname(dir))) {
1454 if (!strcmp("..", dname))
1455 continue;
1456 if (!strcmp(".", dname))
1457 continue;
1459 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1460 continue;
1463 isdir = False;
1464 if (!match || !gen_fnmatch(expression, dname)) {
1465 if (recurse) {
1466 ret = stat(path, &statbuf);
1467 if (ret == 0) {
1468 if (S_ISDIR(statbuf.st_mode)) {
1469 isdir = True;
1470 ret = file_find(list, path, expression, False);
1472 } else {
1473 d_printf("file_find: cannot stat file %s\n", path);
1476 if (ret == -1) {
1477 SAFE_FREE(path);
1478 sys_closedir(dir);
1479 return -1;
1482 entry = SMB_MALLOC_P(struct file_list);
1483 if (!entry) {
1484 d_printf("Out of memory in file_find\n");
1485 sys_closedir(dir);
1486 return -1;
1488 entry->file_path = path;
1489 entry->isdir = isdir;
1490 DLIST_ADD(*list, entry);
1491 } else {
1492 SAFE_FREE(path);
1496 sys_closedir(dir);
1497 return 0;
1500 /****************************************************************************
1501 mput some files.
1502 ****************************************************************************/
1504 static int cmd_mput(void)
1506 pstring buf;
1507 char *p=buf;
1509 while (next_token_nr(NULL,p,NULL,sizeof(buf))) {
1510 int ret;
1511 struct file_list *temp_list;
1512 char *quest, *lname, *rname;
1514 file_list = NULL;
1516 ret = file_find(&file_list, ".", p, True);
1517 if (ret) {
1518 free_file_list(file_list);
1519 continue;
1522 quest = NULL;
1523 lname = NULL;
1524 rname = NULL;
1526 for (temp_list = file_list; temp_list;
1527 temp_list = temp_list->next) {
1529 SAFE_FREE(lname);
1530 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0)
1531 continue;
1532 trim_string(lname, "./", "/");
1534 /* check if it's a directory */
1535 if (temp_list->isdir) {
1536 /* if (!recurse) continue; */
1538 SAFE_FREE(quest);
1539 if (asprintf(&quest, "Put directory %s? ", lname) < 0) break;
1540 if (prompt && !yesno(quest)) { /* No */
1541 /* Skip the directory */
1542 lname[strlen(lname)-1] = '/';
1543 if (!seek_list(temp_list, lname))
1544 break;
1545 } else { /* Yes */
1546 SAFE_FREE(rname);
1547 if(asprintf(&rname, "%s%s", cur_dir, lname) < 0) break;
1548 dos_format(rname);
1549 if (!cli_chkpath(cli, rname) &&
1550 !do_mkdir(rname)) {
1551 DEBUG (0, ("Unable to make dir, skipping..."));
1552 /* Skip the directory */
1553 lname[strlen(lname)-1] = '/';
1554 if (!seek_list(temp_list, lname))
1555 break;
1558 continue;
1559 } else {
1560 SAFE_FREE(quest);
1561 if (asprintf(&quest,"Put file %s? ", lname) < 0) break;
1562 if (prompt && !yesno(quest)) /* No */
1563 continue;
1565 /* Yes */
1566 SAFE_FREE(rname);
1567 if (asprintf(&rname, "%s%s", cur_dir, lname) < 0) break;
1570 dos_format(rname);
1572 do_put(rname, lname, False);
1574 free_file_list(file_list);
1575 SAFE_FREE(quest);
1576 SAFE_FREE(lname);
1577 SAFE_FREE(rname);
1580 return 0;
1583 /****************************************************************************
1584 Cancel a print job.
1585 ****************************************************************************/
1587 static int do_cancel(int job)
1589 if (cli_printjob_del(cli, job)) {
1590 d_printf("Job %d cancelled\n",job);
1591 return 0;
1592 } else {
1593 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
1594 return 1;
1598 /****************************************************************************
1599 Cancel a print job.
1600 ****************************************************************************/
1602 static int cmd_cancel(void)
1604 pstring buf;
1605 int job;
1607 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1608 d_printf("cancel <jobid> ...\n");
1609 return 1;
1611 do {
1612 job = atoi(buf);
1613 do_cancel(job);
1614 } while (next_token_nr(NULL,buf,NULL,sizeof(buf)));
1616 return 0;
1619 /****************************************************************************
1620 Print a file.
1621 ****************************************************************************/
1623 static int cmd_print(void)
1625 pstring lname;
1626 pstring rname;
1627 char *p;
1629 if (!next_token_nr(NULL,lname,NULL, sizeof(lname))) {
1630 d_printf("print <filename>\n");
1631 return 1;
1634 pstrcpy(rname,lname);
1635 p = strrchr_m(rname,'/');
1636 if (p) {
1637 slprintf(rname, sizeof(rname)-1, "%s-%d", p+1, (int)sys_getpid());
1640 if (strequal(lname,"-")) {
1641 slprintf(rname, sizeof(rname)-1, "stdin-%d", (int)sys_getpid());
1644 return do_put(rname, lname, False);
1647 /****************************************************************************
1648 Show a print queue entry.
1649 ****************************************************************************/
1651 static void queue_fn(struct print_job_info *p)
1653 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
1656 /****************************************************************************
1657 Show a print queue.
1658 ****************************************************************************/
1660 static int cmd_queue(void)
1662 cli_print_queue(cli, queue_fn);
1664 return 0;
1667 /****************************************************************************
1668 Delete some files.
1669 ****************************************************************************/
1671 static void do_del(file_info *finfo)
1673 pstring mask;
1675 pstr_sprintf( mask, "%s\\%s", finfo->dir, finfo->name );
1677 if (finfo->mode & aDIR)
1678 return;
1680 if (!cli_unlink(cli, mask)) {
1681 d_printf("%s deleting remote file %s\n",cli_errstr(cli),mask);
1685 /****************************************************************************
1686 Delete some files.
1687 ****************************************************************************/
1689 static int cmd_del(void)
1691 pstring mask;
1692 pstring buf;
1693 uint16 attribute = aSYSTEM | aHIDDEN;
1695 if (recurse)
1696 attribute |= aDIR;
1698 pstrcpy(mask,cur_dir);
1700 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1701 d_printf("del <filename>\n");
1702 return 1;
1704 pstrcat(mask,buf);
1706 do_list(mask, attribute,do_del,False,False);
1708 return 0;
1711 /****************************************************************************
1712 ****************************************************************************/
1714 static int cmd_open(void)
1716 pstring mask;
1717 pstring buf;
1718 struct cli_state *targetcli;
1719 pstring targetname;
1720 int fnum;
1722 pstrcpy(mask,cur_dir);
1724 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1725 d_printf("open <filename>\n");
1726 return 1;
1728 pstrcat(mask,buf);
1730 if ( !cli_resolve_path( "", cli, mask, &targetcli, targetname ) ) {
1731 d_printf("open %s: %s\n", mask, cli_errstr(cli));
1732 return 1;
1735 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA|FILE_WRITE_DATA);
1736 if (fnum == -1) {
1737 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA);
1738 if (fnum != -1) {
1739 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
1740 } else {
1741 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
1743 } else {
1744 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
1747 return 0;
1750 static int cmd_close(void)
1752 fstring buf;
1753 int fnum;
1755 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1756 d_printf("close <fnum>\n");
1757 return 1;
1760 fnum = atoi(buf);
1761 /* We really should use the targetcli here.... */
1762 if (!cli_close(cli, fnum)) {
1763 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
1764 return 1;
1766 return 0;
1769 static int cmd_posix(void)
1771 uint16 major, minor;
1772 uint32 caplow, caphigh;
1773 pstring caps;
1775 if (!SERVER_HAS_UNIX_CIFS(cli)) {
1776 d_printf("Server doesn't support UNIX CIFS extensions.\n");
1777 return 1;
1780 if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
1781 d_printf("Can't get UNIX CIFS extensions version from server.\n");
1782 return 1;
1785 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
1787 *caps = '\0';
1788 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
1789 pstrcat(caps, "locks ");
1791 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
1792 pstrcat(caps, "acls ");
1794 if (caplow & CIFS_UNIX_XATTTR_CAP) {
1795 pstrcat(caps, "eas ");
1797 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
1798 pstrcat(caps, "pathnames ");
1801 if (strlen(caps) > 0 && caps[strlen(caps)-1] == ' ') {
1802 caps[strlen(caps)-1] = '\0';
1805 if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
1806 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
1807 return 1;
1810 d_printf("Selecting server supported CIFS capabilities %s\n", caps);
1812 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
1813 CLI_DIRSEP_CHAR = '/';
1814 *CLI_DIRSEP_STR = '/';
1815 pstrcpy(cur_dir, CLI_DIRSEP_STR);
1818 return 0;
1821 static int cmd_lock(void)
1823 fstring buf;
1824 SMB_BIG_UINT start, len;
1825 enum brl_type lock_type;
1826 int fnum;
1828 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1829 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
1830 return 1;
1832 fnum = atoi(buf);
1834 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1835 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
1836 return 1;
1839 if (*buf == 'r' || *buf == 'R') {
1840 lock_type = READ_LOCK;
1841 } else if (*buf == 'w' || *buf == 'W') {
1842 lock_type = WRITE_LOCK;
1843 } else {
1844 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
1845 return 1;
1848 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1849 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
1850 return 1;
1853 start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
1855 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1856 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
1857 return 1;
1860 len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
1862 if (!cli_posix_lock(cli, fnum, start, len, True, lock_type)) {
1863 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
1866 return 0;
1869 static int cmd_unlock(void)
1871 fstring buf;
1872 SMB_BIG_UINT start, len;
1873 int fnum;
1875 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1876 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
1877 return 1;
1879 fnum = atoi(buf);
1881 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1882 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
1883 return 1;
1886 start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
1888 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1889 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
1890 return 1;
1893 len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
1895 if (!cli_posix_unlock(cli, fnum, start, len)) {
1896 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
1899 return 0;
1903 /****************************************************************************
1904 Remove a directory.
1905 ****************************************************************************/
1907 static int cmd_rmdir(void)
1909 pstring mask;
1910 pstring buf;
1911 struct cli_state *targetcli;
1912 pstring targetname;
1914 pstrcpy(mask,cur_dir);
1916 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
1917 d_printf("rmdir <dirname>\n");
1918 return 1;
1920 pstrcat(mask,buf);
1922 if ( !cli_resolve_path( "", cli, mask, &targetcli, targetname ) ) {
1923 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
1924 return 1;
1927 if (!cli_rmdir(targetcli, targetname)) {
1928 d_printf("%s removing remote directory file %s\n",
1929 cli_errstr(targetcli),mask);
1932 return 0;
1935 /****************************************************************************
1936 UNIX hardlink.
1937 ****************************************************************************/
1939 static int cmd_link(void)
1941 pstring oldname,newname;
1942 pstring buf,buf2;
1943 struct cli_state *targetcli;
1944 pstring targetname;
1946 pstrcpy(oldname,cur_dir);
1947 pstrcpy(newname,cur_dir);
1949 if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) ||
1950 !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
1951 d_printf("link <oldname> <newname>\n");
1952 return 1;
1955 pstrcat(oldname,buf);
1956 pstrcat(newname,buf2);
1958 if ( !cli_resolve_path( "", cli, oldname, &targetcli, targetname ) ) {
1959 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
1960 return 1;
1963 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
1964 d_printf("Server doesn't support UNIX CIFS calls.\n");
1965 return 1;
1968 if (!cli_unix_hardlink(targetcli, targetname, newname)) {
1969 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
1970 return 1;
1973 return 0;
1976 /****************************************************************************
1977 UNIX symlink.
1978 ****************************************************************************/
1980 static int cmd_symlink(void)
1982 pstring oldname,newname;
1983 pstring buf,buf2;
1985 if (!SERVER_HAS_UNIX_CIFS(cli)) {
1986 d_printf("Server doesn't support UNIX CIFS calls.\n");
1987 return 1;
1990 pstrcpy(newname,cur_dir);
1992 if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) ||
1993 !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
1994 d_printf("symlink <oldname> <newname>\n");
1995 return 1;
1998 pstrcpy(oldname,buf);
1999 pstrcat(newname,buf2);
2001 if (!cli_unix_symlink(cli, oldname, newname)) {
2002 d_printf("%s symlinking files (%s -> %s)\n",
2003 cli_errstr(cli), newname, oldname);
2004 return 1;
2007 return 0;
2010 /****************************************************************************
2011 UNIX chmod.
2012 ****************************************************************************/
2014 static int cmd_chmod(void)
2016 pstring src;
2017 mode_t mode;
2018 pstring buf, buf2;
2019 struct cli_state *targetcli;
2020 pstring targetname;
2022 pstrcpy(src,cur_dir);
2024 if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) ||
2025 !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
2026 d_printf("chmod mode file\n");
2027 return 1;
2030 mode = (mode_t)strtol(buf, NULL, 8);
2031 pstrcat(src,buf2);
2033 if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
2034 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2035 return 1;
2038 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2039 d_printf("Server doesn't support UNIX CIFS calls.\n");
2040 return 1;
2043 if (!cli_unix_chmod(targetcli, targetname, mode)) {
2044 d_printf("%s chmod file %s 0%o\n",
2045 cli_errstr(targetcli), src, (unsigned int)mode);
2046 return 1;
2049 return 0;
2052 static const char *filetype_to_str(mode_t mode)
2054 if (S_ISREG(mode)) {
2055 return "regular file";
2056 } else if (S_ISDIR(mode)) {
2057 return "directory";
2058 } else
2059 #ifdef S_ISCHR
2060 if (S_ISCHR(mode)) {
2061 return "character device";
2062 } else
2063 #endif
2064 #ifdef S_ISBLK
2065 if (S_ISBLK(mode)) {
2066 return "block device";
2067 } else
2068 #endif
2069 #ifdef S_ISFIFO
2070 if (S_ISFIFO(mode)) {
2071 return "fifo";
2072 } else
2073 #endif
2074 #ifdef S_ISLNK
2075 if (S_ISLNK(mode)) {
2076 return "symbolic link";
2077 } else
2078 #endif
2079 #ifdef S_ISSOCK
2080 if (S_ISSOCK(mode)) {
2081 return "socket";
2082 } else
2083 #endif
2084 return "";
2087 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2089 if (m & bt) {
2090 return ret;
2091 } else {
2092 return '-';
2096 static char *unix_mode_to_str(char *s, mode_t m)
2098 char *p = s;
2099 const char *str = filetype_to_str(m);
2101 switch(str[0]) {
2102 case 'd':
2103 *p++ = 'd';
2104 break;
2105 case 'c':
2106 *p++ = 'c';
2107 break;
2108 case 'b':
2109 *p++ = 'b';
2110 break;
2111 case 'f':
2112 *p++ = 'p';
2113 break;
2114 case 's':
2115 *p++ = str[1] == 'y' ? 'l' : 's';
2116 break;
2117 case 'r':
2118 default:
2119 *p++ = '-';
2120 break;
2122 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2123 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2124 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2125 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2126 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2127 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2128 *p++ = rwx_to_str(m, S_IROTH, 'r');
2129 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2130 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2131 *p++ = '\0';
2132 return s;
2135 /****************************************************************************
2136 Utility function for UNIX getfacl.
2137 ****************************************************************************/
2139 static char *perms_to_string(fstring permstr, unsigned char perms)
2141 fstrcpy(permstr, "---");
2142 if (perms & SMB_POSIX_ACL_READ) {
2143 permstr[0] = 'r';
2145 if (perms & SMB_POSIX_ACL_WRITE) {
2146 permstr[1] = 'w';
2148 if (perms & SMB_POSIX_ACL_EXECUTE) {
2149 permstr[2] = 'x';
2151 return permstr;
2154 /****************************************************************************
2155 UNIX getfacl.
2156 ****************************************************************************/
2158 static int cmd_getfacl(void)
2160 pstring src, name;
2161 uint16 major, minor;
2162 uint32 caplow, caphigh;
2163 char *retbuf = NULL;
2164 size_t rb_size = 0;
2165 SMB_STRUCT_STAT sbuf;
2166 uint16 num_file_acls = 0;
2167 uint16 num_dir_acls = 0;
2168 uint16 i;
2169 struct cli_state *targetcli;
2170 pstring targetname;
2172 pstrcpy(src,cur_dir);
2174 if (!next_token_nr(NULL,name,NULL,sizeof(name))) {
2175 d_printf("stat file\n");
2176 return 1;
2179 pstrcat(src,name);
2181 if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
2182 d_printf("stat %s: %s\n", src, cli_errstr(cli));
2183 return 1;
2186 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2187 d_printf("Server doesn't support UNIX CIFS calls.\n");
2188 return 1;
2191 if (!cli_unix_extensions_version(targetcli, &major, &minor, &caplow, &caphigh)) {
2192 d_printf("Can't get UNIX CIFS version from server.\n");
2193 return 1;
2196 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
2197 d_printf("This server supports UNIX extensions but doesn't support POSIX ACLs.\n");
2198 return 1;
2202 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
2203 d_printf("%s getfacl doing a stat on file %s\n",
2204 cli_errstr(targetcli), src);
2205 return 1;
2208 if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
2209 d_printf("%s getfacl file %s\n",
2210 cli_errstr(targetcli), src);
2211 return 1;
2214 /* ToDo : Print out the ACL values. */
2215 if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
2216 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
2217 src, (unsigned int)CVAL(retbuf,0) );
2218 SAFE_FREE(retbuf);
2219 return 1;
2222 num_file_acls = SVAL(retbuf,2);
2223 num_dir_acls = SVAL(retbuf,4);
2224 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
2225 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
2226 src,
2227 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
2228 (unsigned int)rb_size);
2230 SAFE_FREE(retbuf);
2231 return 1;
2234 d_printf("# file: %s\n", src);
2235 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
2237 if (num_file_acls == 0 && num_dir_acls == 0) {
2238 d_printf("No acls found.\n");
2241 for (i = 0; i < num_file_acls; i++) {
2242 uint32 uorg;
2243 fstring permstring;
2244 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
2245 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
2247 switch(tagtype) {
2248 case SMB_POSIX_ACL_USER_OBJ:
2249 d_printf("user::");
2250 break;
2251 case SMB_POSIX_ACL_USER:
2252 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
2253 d_printf("user:%u:", uorg);
2254 break;
2255 case SMB_POSIX_ACL_GROUP_OBJ:
2256 d_printf("group::");
2257 break;
2258 case SMB_POSIX_ACL_GROUP:
2259 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
2260 d_printf("group:%u", uorg);
2261 break;
2262 case SMB_POSIX_ACL_MASK:
2263 d_printf("mask::");
2264 break;
2265 case SMB_POSIX_ACL_OTHER:
2266 d_printf("other::");
2267 break;
2268 default:
2269 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
2270 src, (unsigned int)tagtype );
2271 SAFE_FREE(retbuf);
2272 return 1;
2275 d_printf("%s\n", perms_to_string(permstring, perms));
2278 for (i = 0; i < num_dir_acls; i++) {
2279 uint32 uorg;
2280 fstring permstring;
2281 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
2282 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
2284 switch(tagtype) {
2285 case SMB_POSIX_ACL_USER_OBJ:
2286 d_printf("default:user::");
2287 break;
2288 case SMB_POSIX_ACL_USER:
2289 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
2290 d_printf("default:user:%u:", uorg);
2291 break;
2292 case SMB_POSIX_ACL_GROUP_OBJ:
2293 d_printf("default:group::");
2294 break;
2295 case SMB_POSIX_ACL_GROUP:
2296 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
2297 d_printf("default:group:%u", uorg);
2298 break;
2299 case SMB_POSIX_ACL_MASK:
2300 d_printf("default:mask::");
2301 break;
2302 case SMB_POSIX_ACL_OTHER:
2303 d_printf("default:other::");
2304 break;
2305 default:
2306 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
2307 src, (unsigned int)tagtype );
2308 SAFE_FREE(retbuf);
2309 return 1;
2312 d_printf("%s\n", perms_to_string(permstring, perms));
2315 SAFE_FREE(retbuf);
2316 return 0;
2319 /****************************************************************************
2320 UNIX stat.
2321 ****************************************************************************/
2323 static int cmd_stat(void)
2325 pstring src, name;
2326 fstring mode_str;
2327 SMB_STRUCT_STAT sbuf;
2328 struct cli_state *targetcli;
2329 struct tm *lt;
2330 pstring targetname;
2332 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2333 d_printf("Server doesn't support UNIX CIFS calls.\n");
2334 return 1;
2337 pstrcpy(src,cur_dir);
2339 if (!next_token_nr(NULL,name,NULL,sizeof(name))) {
2340 d_printf("stat file\n");
2341 return 1;
2344 pstrcat(src,name);
2347 if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
2348 d_printf("stat %s: %s\n", src, cli_errstr(cli));
2349 return 1;
2352 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
2353 d_printf("%s stat file %s\n",
2354 cli_errstr(targetcli), src);
2355 return 1;
2358 /* Print out the stat values. */
2359 d_printf("File: %s\n", src);
2360 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
2361 (double)sbuf.st_size,
2362 (unsigned int)sbuf.st_blocks,
2363 filetype_to_str(sbuf.st_mode));
2365 #if defined(S_ISCHR) && defined(S_ISBLK)
2366 if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
2367 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
2368 (double)sbuf.st_ino,
2369 (unsigned int)sbuf.st_nlink,
2370 unix_dev_major(sbuf.st_rdev),
2371 unix_dev_minor(sbuf.st_rdev));
2372 } else
2373 #endif
2374 d_printf("Inode: %.0f\tLinks: %u\n",
2375 (double)sbuf.st_ino,
2376 (unsigned int)sbuf.st_nlink);
2378 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
2379 ((int)sbuf.st_mode & 0777),
2380 unix_mode_to_str(mode_str, sbuf.st_mode),
2381 (unsigned int)sbuf.st_uid,
2382 (unsigned int)sbuf.st_gid);
2384 lt = localtime(&sbuf.st_atime);
2385 if (lt) {
2386 strftime(mode_str, sizeof(mode_str), "%F %T %z", lt);
2387 } else {
2388 fstrcpy(mode_str, "unknown");
2390 d_printf("Access: %s\n", mode_str);
2392 lt = localtime(&sbuf.st_mtime);
2393 if (lt) {
2394 strftime(mode_str, sizeof(mode_str), "%F %T %z", lt);
2395 } else {
2396 fstrcpy(mode_str, "unknown");
2398 d_printf("Modify: %s\n", mode_str);
2400 lt = localtime(&sbuf.st_ctime);
2401 if (lt) {
2402 strftime(mode_str, sizeof(mode_str), "%F %T %z", lt);
2403 } else {
2404 fstrcpy(mode_str, "unknown");
2406 d_printf("Change: %s\n", mode_str);
2408 return 0;
2412 /****************************************************************************
2413 UNIX chown.
2414 ****************************************************************************/
2416 static int cmd_chown(void)
2418 pstring src;
2419 uid_t uid;
2420 gid_t gid;
2421 pstring buf, buf2, buf3;
2422 struct cli_state *targetcli;
2423 pstring targetname;
2425 pstrcpy(src,cur_dir);
2427 if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) ||
2428 !next_token_nr(NULL,buf2,NULL, sizeof(buf2)) ||
2429 !next_token_nr(NULL,buf3,NULL, sizeof(buf3))) {
2430 d_printf("chown uid gid file\n");
2431 return 1;
2434 uid = (uid_t)atoi(buf);
2435 gid = (gid_t)atoi(buf2);
2436 pstrcat(src,buf3);
2438 if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
2439 d_printf("chown %s: %s\n", src, cli_errstr(cli));
2440 return 1;
2444 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2445 d_printf("Server doesn't support UNIX CIFS calls.\n");
2446 return 1;
2449 if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
2450 d_printf("%s chown file %s uid=%d, gid=%d\n",
2451 cli_errstr(targetcli), src, (int)uid, (int)gid);
2452 return 1;
2455 return 0;
2458 /****************************************************************************
2459 Rename some file.
2460 ****************************************************************************/
2462 static int cmd_rename(void)
2464 pstring src,dest;
2465 pstring buf,buf2;
2467 pstrcpy(src,cur_dir);
2468 pstrcpy(dest,cur_dir);
2470 if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) ||
2471 !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
2472 d_printf("rename <src> <dest>\n");
2473 return 1;
2476 pstrcat(src,buf);
2477 pstrcat(dest,buf2);
2479 if (!cli_rename(cli, src, dest)) {
2480 d_printf("%s renaming files\n",cli_errstr(cli));
2481 return 1;
2484 return 0;
2487 /****************************************************************************
2488 Print the volume name.
2489 ****************************************************************************/
2491 static int cmd_volume(void)
2493 fstring volname;
2494 uint32 serial_num;
2495 time_t create_date;
2497 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
2498 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
2499 return 1;
2502 d_printf("Volume: |%s| serial number 0x%x\n", volname, (unsigned int)serial_num);
2503 return 0;
2506 /****************************************************************************
2507 Hard link files using the NT call.
2508 ****************************************************************************/
2510 static int cmd_hardlink(void)
2512 pstring src,dest;
2513 pstring buf,buf2;
2514 struct cli_state *targetcli;
2515 pstring targetname;
2517 pstrcpy(src,cur_dir);
2518 pstrcpy(dest,cur_dir);
2520 if (!next_token_nr(NULL,buf,NULL,sizeof(buf)) ||
2521 !next_token_nr(NULL,buf2,NULL, sizeof(buf2))) {
2522 d_printf("hardlink <src> <dest>\n");
2523 return 1;
2526 pstrcat(src,buf);
2527 pstrcat(dest,buf2);
2529 if ( !cli_resolve_path( "", cli, src, &targetcli, targetname ) ) {
2530 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
2531 return 1;
2534 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2535 d_printf("Server doesn't support UNIX CIFS calls.\n");
2536 return 1;
2539 if (!cli_nt_hardlink(targetcli, targetname, dest)) {
2540 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
2541 return 1;
2544 return 0;
2547 /****************************************************************************
2548 Toggle the prompt flag.
2549 ****************************************************************************/
2551 static int cmd_prompt(void)
2553 prompt = !prompt;
2554 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
2556 return 1;
2559 /****************************************************************************
2560 Set the newer than time.
2561 ****************************************************************************/
2563 static int cmd_newer(void)
2565 pstring buf;
2566 BOOL ok;
2567 SMB_STRUCT_STAT sbuf;
2569 ok = next_token_nr(NULL,buf,NULL,sizeof(buf));
2570 if (ok && (sys_stat(buf,&sbuf) == 0)) {
2571 newer_than = sbuf.st_mtime;
2572 DEBUG(1,("Getting files newer than %s",
2573 time_to_asc(&newer_than)));
2574 } else {
2575 newer_than = 0;
2578 if (ok && newer_than == 0) {
2579 d_printf("Error setting newer-than time\n");
2580 return 1;
2583 return 0;
2586 /****************************************************************************
2587 Set the archive level.
2588 ****************************************************************************/
2590 static int cmd_archive(void)
2592 pstring buf;
2594 if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
2595 archive_level = atoi(buf);
2596 } else
2597 d_printf("Archive level is %d\n",archive_level);
2599 return 0;
2602 /****************************************************************************
2603 Toggle the lowercaseflag.
2604 ****************************************************************************/
2606 static int cmd_lowercase(void)
2608 lowercase = !lowercase;
2609 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
2611 return 0;
2614 /****************************************************************************
2615 Toggle the case sensitive flag.
2616 ****************************************************************************/
2618 static int cmd_setcase(void)
2620 BOOL orig_case_sensitive = cli_set_case_sensitive(cli, False);
2622 cli_set_case_sensitive(cli, !orig_case_sensitive);
2623 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
2624 "on":"off"));
2626 return 0;
2629 /****************************************************************************
2630 Toggle the showacls flag.
2631 ****************************************************************************/
2633 static int cmd_showacls(void)
2635 showacls = !showacls;
2636 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
2638 if (!ctx && showacls)
2639 ctx = talloc_init("smbclient:showacls");
2640 if (!ctx) {
2641 DEBUG( 0, ("cmd_showacls() out of memory. talloc_init() failed.\n"));
2644 return 0;
2648 /****************************************************************************
2649 Toggle the recurse flag.
2650 ****************************************************************************/
2652 static int cmd_recurse(void)
2654 recurse = !recurse;
2655 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
2657 return 0;
2660 /****************************************************************************
2661 Toggle the translate flag.
2662 ****************************************************************************/
2664 static int cmd_translate(void)
2666 translation = !translation;
2667 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
2668 translation?"on":"off"));
2670 return 0;
2673 /****************************************************************************
2674 Do the lcd command.
2675 ****************************************************************************/
2677 static int cmd_lcd(void)
2679 pstring buf;
2680 pstring d;
2682 if (next_token_nr(NULL,buf,NULL,sizeof(buf)))
2683 chdir(buf);
2684 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
2686 return 0;
2689 /****************************************************************************
2690 Get a file restarting at end of local file.
2691 ****************************************************************************/
2693 static int cmd_reget(void)
2695 pstring local_name;
2696 pstring remote_name;
2697 char *p;
2699 pstrcpy(remote_name, cur_dir);
2700 pstrcat(remote_name, CLI_DIRSEP_STR);
2702 p = remote_name + strlen(remote_name);
2704 if (!next_token_nr(NULL, p, NULL, sizeof(remote_name) - strlen(remote_name))) {
2705 d_printf("reget <filename>\n");
2706 return 1;
2708 pstrcpy(local_name, p);
2709 dos_clean_name(remote_name);
2711 next_token_nr(NULL, local_name, NULL, sizeof(local_name));
2713 return do_get(remote_name, local_name, True);
2716 /****************************************************************************
2717 Put a file restarting at end of local file.
2718 ****************************************************************************/
2720 static int cmd_reput(void)
2722 pstring local_name;
2723 pstring remote_name;
2724 pstring buf;
2725 char *p = buf;
2726 SMB_STRUCT_STAT st;
2728 pstrcpy(remote_name, cur_dir);
2729 pstrcat(remote_name, CLI_DIRSEP_STR);
2731 if (!next_token_nr(NULL, p, NULL, sizeof(buf))) {
2732 d_printf("reput <filename>\n");
2733 return 1;
2735 pstrcpy(local_name, p);
2737 if (!file_exist(local_name, &st)) {
2738 d_printf("%s does not exist\n", local_name);
2739 return 1;
2742 if (next_token_nr(NULL, p, NULL, sizeof(buf)))
2743 pstrcat(remote_name, p);
2744 else
2745 pstrcat(remote_name, local_name);
2747 dos_clean_name(remote_name);
2749 return do_put(remote_name, local_name, True);
2752 /****************************************************************************
2753 List a share name.
2754 ****************************************************************************/
2756 static void browse_fn(const char *name, uint32 m,
2757 const char *comment, void *state)
2759 fstring typestr;
2761 *typestr=0;
2763 switch (m & 7)
2765 case STYPE_DISKTREE:
2766 fstrcpy(typestr,"Disk"); break;
2767 case STYPE_PRINTQ:
2768 fstrcpy(typestr,"Printer"); break;
2769 case STYPE_DEVICE:
2770 fstrcpy(typestr,"Device"); break;
2771 case STYPE_IPC:
2772 fstrcpy(typestr,"IPC"); break;
2774 /* FIXME: If the remote machine returns non-ascii characters
2775 in any of these fields, they can corrupt the output. We
2776 should remove them. */
2777 if (!grepable) {
2778 d_printf("\t%-15s %-10.10s%s\n",
2779 name,typestr,comment);
2780 } else {
2781 d_printf ("%s|%s|%s\n",typestr,name,comment);
2785 static BOOL browse_host_rpc(BOOL sort)
2787 NTSTATUS status;
2788 struct rpc_pipe_client *pipe_hnd;
2789 TALLOC_CTX *mem_ctx;
2790 uint32 enum_hnd = 0;
2791 uint32 *penum_hnd = &enum_hnd;
2792 struct srvsvc_NetShareCtr1 ctr1;
2793 union srvsvc_NetShareCtr ctr;
2794 int i;
2795 uint32 level;
2796 uint32 numentries;
2798 mem_ctx = talloc_new(NULL);
2799 if (mem_ctx == NULL) {
2800 DEBUG(0, ("talloc_new failed\n"));
2801 return False;
2804 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SRVSVC, &status);
2806 if (pipe_hnd == NULL) {
2807 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
2808 nt_errstr(status)));
2809 TALLOC_FREE(mem_ctx);
2810 return False;
2813 ZERO_STRUCT(ctr1);
2814 level = 1;
2815 ctr.ctr1 = &ctr1;
2817 status = rpccli_srvsvc_NetShareEnum(pipe_hnd, mem_ctx, "", &level,
2818 &ctr, 0xffffffff, &numentries,
2819 &penum_hnd);
2821 if (!NT_STATUS_IS_OK(status)) {
2822 TALLOC_FREE(mem_ctx);
2823 cli_rpc_pipe_close(pipe_hnd);
2824 return False;
2827 for (i=0; i<numentries; i++) {
2828 struct srvsvc_NetShareInfo1 *info = &ctr.ctr1->array[i];
2829 browse_fn(info->name, info->type, info->comment, NULL);
2832 TALLOC_FREE(mem_ctx);
2833 cli_rpc_pipe_close(pipe_hnd);
2834 return True;
2837 /****************************************************************************
2838 Try and browse available connections on a host.
2839 ****************************************************************************/
2841 static BOOL browse_host(BOOL sort)
2843 int ret;
2844 if (!grepable) {
2845 d_printf("\n\tSharename Type Comment\n");
2846 d_printf("\t--------- ---- -------\n");
2849 if (browse_host_rpc(sort)) {
2850 return True;
2853 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
2854 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
2856 return (ret != -1);
2859 /****************************************************************************
2860 List a server name.
2861 ****************************************************************************/
2863 static void server_fn(const char *name, uint32 m,
2864 const char *comment, void *state)
2867 if (!grepable){
2868 d_printf("\t%-16s %s\n", name, comment);
2869 } else {
2870 d_printf("%s|%s|%s\n",(char *)state, name, comment);
2874 /****************************************************************************
2875 Try and browse available connections on a host.
2876 ****************************************************************************/
2878 static BOOL list_servers(const char *wk_grp)
2880 fstring state;
2882 if (!cli->server_domain)
2883 return False;
2885 if (!grepable) {
2886 d_printf("\n\tServer Comment\n");
2887 d_printf("\t--------- -------\n");
2889 fstrcpy( state, "Server" );
2890 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
2891 state);
2893 if (!grepable) {
2894 d_printf("\n\tWorkgroup Master\n");
2895 d_printf("\t--------- -------\n");
2898 fstrcpy( state, "Workgroup" );
2899 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
2900 server_fn, state);
2901 return True;
2904 /****************************************************************************
2905 Print or set current VUID
2906 ****************************************************************************/
2908 static int cmd_vuid(void)
2910 fstring buf;
2912 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
2913 d_printf("Current VUID is %d\n", cli->vuid);
2914 return 0;
2917 cli->vuid = atoi(buf);
2918 return 0;
2921 /****************************************************************************
2922 Setup a new VUID, by issuing a session setup
2923 ****************************************************************************/
2925 static int cmd_logon(void)
2927 pstring l_username, l_password;
2928 pstring buf,buf2;
2930 if (!next_token_nr(NULL,buf,NULL,sizeof(buf))) {
2931 d_printf("logon <username> [<password>]\n");
2932 return 0;
2935 pstrcpy(l_username, buf);
2937 if (!next_token_nr(NULL,buf2,NULL,sizeof(buf)))
2939 char *pass = getpass("Password: ");
2940 if (pass)
2941 pstrcpy(l_password, pass);
2943 else
2944 pstrcpy(l_password, buf2);
2946 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
2947 l_password, strlen(l_password),
2948 l_password, strlen(l_password),
2949 lp_workgroup()))) {
2950 d_printf("session setup failed: %s\n", cli_errstr(cli));
2951 return -1;
2954 d_printf("Current VUID is %d\n", cli->vuid);
2955 return 0;
2959 /****************************************************************************
2960 list active connections
2961 ****************************************************************************/
2963 static int cmd_list_connect(void)
2965 cli_cm_display();
2967 return 0;
2970 /****************************************************************************
2971 display the current active client connection
2972 ****************************************************************************/
2974 static int cmd_show_connect( void )
2976 struct cli_state *targetcli;
2977 pstring targetpath;
2979 if ( !cli_resolve_path( "", cli, cur_dir, &targetcli, targetpath ) ) {
2980 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
2981 return 1;
2984 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
2985 return 0;
2988 /* Some constants for completing filename arguments */
2990 #define COMPL_NONE 0 /* No completions */
2991 #define COMPL_REMOTE 1 /* Complete remote filename */
2992 #define COMPL_LOCAL 2 /* Complete local filename */
2994 /* This defines the commands supported by this client.
2995 * NOTE: The "!" must be the last one in the list because it's fn pointer
2996 * field is NULL, and NULL in that field is used in process_tok()
2997 * (below) to indicate the end of the list. crh
2999 static struct
3001 const char *name;
3002 int (*fn)(void);
3003 const char *description;
3004 char compl_args[2]; /* Completion argument info */
3005 } commands[] = {
3006 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3007 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3008 {"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}},
3009 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3010 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3011 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3012 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3013 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3014 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3015 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3016 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3017 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3018 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3019 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3020 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3021 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3022 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3023 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3024 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3025 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3026 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3027 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3028 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3029 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3030 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3031 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3032 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3033 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3034 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3035 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3036 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3037 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3038 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3039 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3040 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
3041 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3042 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3043 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3044 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3045 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3046 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3047 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
3048 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3049 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3050 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3051 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3052 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3053 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
3054 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
3055 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
3056 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3057 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
3058 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
3059 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
3060 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3061 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
3062 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
3063 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
3064 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
3065 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
3067 /* Yes, this must be here, see crh's comment above. */
3068 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
3069 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
3072 /*******************************************************************
3073 Lookup a command string in the list of commands, including
3074 abbreviations.
3075 ******************************************************************/
3077 static int process_tok(pstring tok)
3079 int i = 0, matches = 0;
3080 int cmd=0;
3081 int tok_len = strlen(tok);
3083 while (commands[i].fn != NULL) {
3084 if (strequal(commands[i].name,tok)) {
3085 matches = 1;
3086 cmd = i;
3087 break;
3088 } else if (strnequal(commands[i].name, tok, tok_len)) {
3089 matches++;
3090 cmd = i;
3092 i++;
3095 if (matches == 0)
3096 return(-1);
3097 else if (matches == 1)
3098 return(cmd);
3099 else
3100 return(-2);
3103 /****************************************************************************
3104 Help.
3105 ****************************************************************************/
3107 static int cmd_help(void)
3109 int i=0,j;
3110 pstring buf;
3112 if (next_token_nr(NULL,buf,NULL,sizeof(buf))) {
3113 if ((i = process_tok(buf)) >= 0)
3114 d_printf("HELP %s:\n\t%s\n\n",commands[i].name,commands[i].description);
3115 } else {
3116 while (commands[i].description) {
3117 for (j=0; commands[i].description && (j<5); j++) {
3118 d_printf("%-15s",commands[i].name);
3119 i++;
3121 d_printf("\n");
3124 return 0;
3127 /****************************************************************************
3128 Process a -c command string.
3129 ****************************************************************************/
3131 static int process_command_string(char *cmd)
3133 pstring line;
3134 const char *ptr;
3135 int rc = 0;
3137 /* establish the connection if not already */
3139 if (!cli) {
3140 cli = cli_cm_open(desthost, service, True);
3141 if (!cli)
3142 return 0;
3145 while (cmd[0] != '\0') {
3146 char *p;
3147 pstring tok;
3148 int i;
3150 if ((p = strchr_m(cmd, ';')) == 0) {
3151 strncpy(line, cmd, 999);
3152 line[1000] = '\0';
3153 cmd += strlen(cmd);
3154 } else {
3155 if (p - cmd > 999)
3156 p = cmd + 999;
3157 strncpy(line, cmd, p - cmd);
3158 line[p - cmd] = '\0';
3159 cmd = p + 1;
3162 /* and get the first part of the command */
3163 ptr = line;
3164 if (!next_token_nr(&ptr,tok,NULL,sizeof(tok))) continue;
3166 if ((i = process_tok(tok)) >= 0) {
3167 rc = commands[i].fn();
3168 } else if (i == -2) {
3169 d_printf("%s: command abbreviation ambiguous\n",tok);
3170 } else {
3171 d_printf("%s: command not found\n",tok);
3175 return rc;
3178 #define MAX_COMPLETIONS 100
3180 typedef struct {
3181 pstring dirmask;
3182 char **matches;
3183 int count, samelen;
3184 const char *text;
3185 int len;
3186 } completion_remote_t;
3188 static void completion_remote_filter(const char *mnt, file_info *f, const char *mask, void *state)
3190 completion_remote_t *info = (completion_remote_t *)state;
3192 if ((info->count < MAX_COMPLETIONS - 1) && (strncmp(info->text, f->name, info->len) == 0) && (strcmp(f->name, ".") != 0) && (strcmp(f->name, "..") != 0)) {
3193 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
3194 info->matches[info->count] = SMB_STRDUP(f->name);
3195 else {
3196 pstring tmp;
3198 if (info->dirmask[0] != 0)
3199 pstrcpy(tmp, info->dirmask);
3200 else
3201 tmp[0] = 0;
3202 pstrcat(tmp, f->name);
3203 if (f->mode & aDIR)
3204 pstrcat(tmp, "/");
3205 info->matches[info->count] = SMB_STRDUP(tmp);
3207 if (info->matches[info->count] == NULL)
3208 return;
3209 if (f->mode & aDIR)
3210 smb_readline_ca_char(0);
3212 if (info->count == 1)
3213 info->samelen = strlen(info->matches[info->count]);
3214 else
3215 while (strncmp(info->matches[info->count], info->matches[info->count-1], info->samelen) != 0)
3216 info->samelen--;
3217 info->count++;
3221 static char **remote_completion(const char *text, int len)
3223 pstring dirmask;
3224 int i;
3225 completion_remote_t info = { "", NULL, 1, 0, NULL, 0 };
3227 /* can't have non-static intialisation on Sun CC, so do it
3228 at run time here */
3229 info.samelen = len;
3230 info.text = text;
3231 info.len = len;
3233 if (len >= MIN(PATH_MAX,sizeof(pstring))) {
3234 return(NULL);
3237 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
3238 if (!info.matches) {
3239 return NULL;
3243 * We're leaving matches[0] free to fill it later with the text to
3244 * display: Either the one single match or the longest common subset
3245 * of the matches.
3247 info.matches[0] = NULL;
3248 info.count = 1;
3250 for (i = len-1; i >= 0; i--) {
3251 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
3252 break;
3256 info.text = text+i+1;
3257 info.samelen = info.len = len-i-1;
3259 if (i > 0) {
3260 strncpy(info.dirmask, text, i+1);
3261 info.dirmask[i+1] = 0;
3262 pstr_sprintf(dirmask, "%s%*s*", cur_dir, i-1, text);
3263 } else {
3264 pstr_sprintf(dirmask, "%s*", cur_dir);
3267 if (cli_list(cli, dirmask, aDIR | aSYSTEM | aHIDDEN, completion_remote_filter, &info) < 0)
3268 goto cleanup;
3270 if (info.count == 1) {
3273 * No matches at all, NULL indicates there is nothing
3276 SAFE_FREE(info.matches[0]);
3277 SAFE_FREE(info.matches);
3278 return NULL;
3281 if (info.count == 2) {
3284 * Exactly one match in matches[1], indicate this is the one
3285 * in matches[0].
3288 info.matches[0] = info.matches[1];
3289 info.matches[1] = NULL;
3290 info.count -= 1;
3291 return info.matches;
3295 * We got more than one possible match, set the result to the maximum
3296 * common subset
3299 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
3300 info.matches[info.count] = NULL;
3301 return info.matches;
3303 cleanup:
3304 for (i = 0; i < info.count; i++)
3305 free(info.matches[i]);
3306 free(info.matches);
3307 return NULL;
3310 static char **completion_fn(const char *text, int start, int end)
3312 smb_readline_ca_char(' ');
3314 if (start) {
3315 const char *buf, *sp;
3316 int i;
3317 char compl_type;
3319 buf = smb_readline_get_line_buffer();
3320 if (buf == NULL)
3321 return NULL;
3323 sp = strchr(buf, ' ');
3324 if (sp == NULL)
3325 return NULL;
3327 for (i = 0; commands[i].name; i++) {
3328 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
3329 (commands[i].name[sp - buf] == 0)) {
3330 break;
3333 if (commands[i].name == NULL)
3334 return NULL;
3336 while (*sp == ' ')
3337 sp++;
3339 if (sp == (buf + start))
3340 compl_type = commands[i].compl_args[0];
3341 else
3342 compl_type = commands[i].compl_args[1];
3344 if (compl_type == COMPL_REMOTE)
3345 return remote_completion(text, end - start);
3346 else /* fall back to local filename completion */
3347 return NULL;
3348 } else {
3349 char **matches;
3350 int i, len, samelen = 0, count=1;
3352 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
3353 if (!matches) {
3354 return NULL;
3356 matches[0] = NULL;
3358 len = strlen(text);
3359 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
3360 if (strncmp(text, commands[i].name, len) == 0) {
3361 matches[count] = SMB_STRDUP(commands[i].name);
3362 if (!matches[count])
3363 goto cleanup;
3364 if (count == 1)
3365 samelen = strlen(matches[count]);
3366 else
3367 while (strncmp(matches[count], matches[count-1], samelen) != 0)
3368 samelen--;
3369 count++;
3373 switch (count) {
3374 case 0: /* should never happen */
3375 case 1:
3376 goto cleanup;
3377 case 2:
3378 matches[0] = SMB_STRDUP(matches[1]);
3379 break;
3380 default:
3381 matches[0] = (char *)SMB_MALLOC(samelen+1);
3382 if (!matches[0])
3383 goto cleanup;
3384 strncpy(matches[0], matches[1], samelen);
3385 matches[0][samelen] = 0;
3387 matches[count] = NULL;
3388 return matches;
3390 cleanup:
3391 for (i = 0; i < count; i++)
3392 free(matches[i]);
3394 free(matches);
3395 return NULL;
3399 /****************************************************************************
3400 Make sure we swallow keepalives during idle time.
3401 ****************************************************************************/
3403 static void readline_callback(void)
3405 fd_set fds;
3406 struct timeval timeout;
3407 static time_t last_t;
3408 time_t t;
3410 t = time(NULL);
3412 if (t - last_t < 5)
3413 return;
3415 last_t = t;
3417 again:
3419 if (cli->fd == -1)
3420 return;
3422 FD_ZERO(&fds);
3423 FD_SET(cli->fd,&fds);
3425 timeout.tv_sec = 0;
3426 timeout.tv_usec = 0;
3427 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
3429 /* We deliberately use receive_smb instead of
3430 client_receive_smb as we want to receive
3431 session keepalives and then drop them here.
3433 if (FD_ISSET(cli->fd,&fds)) {
3434 if (!receive_smb(cli->fd,cli->inbuf,0)) {
3435 DEBUG(0, ("Read from server failed, maybe it closed the "
3436 "connection\n"));
3437 return;
3439 goto again;
3442 /* Ping the server to keep the connection alive using SMBecho. */
3444 unsigned char garbage[16];
3445 memset(garbage, 0xf0, sizeof(garbage));
3446 cli_echo(cli, garbage, sizeof(garbage));
3450 /****************************************************************************
3451 Process commands on stdin.
3452 ****************************************************************************/
3454 static int process_stdin(void)
3456 const char *ptr;
3457 int rc = 0;
3459 while (1) {
3460 pstring tok;
3461 pstring the_prompt;
3462 char *cline;
3463 pstring line;
3464 int i;
3466 /* display a prompt */
3467 slprintf(the_prompt, sizeof(the_prompt)-1, "smb: %s> ", cur_dir);
3468 cline = smb_readline(the_prompt, readline_callback, completion_fn);
3470 if (!cline) break;
3472 pstrcpy(line, cline);
3474 /* special case - first char is ! */
3475 if (*line == '!') {
3476 system(line + 1);
3477 continue;
3480 /* and get the first part of the command */
3481 ptr = line;
3482 if (!next_token_nr(&ptr,tok,NULL,sizeof(tok))) continue;
3484 if ((i = process_tok(tok)) >= 0) {
3485 rc = commands[i].fn();
3486 } else if (i == -2) {
3487 d_printf("%s: command abbreviation ambiguous\n",tok);
3488 } else {
3489 d_printf("%s: command not found\n",tok);
3492 return rc;
3495 /****************************************************************************
3496 Process commands from the client.
3497 ****************************************************************************/
3499 static int process(char *base_directory)
3501 int rc = 0;
3503 cli = cli_cm_open(desthost, service, True);
3504 if (!cli) {
3505 return 1;
3508 if (*base_directory) {
3509 rc = do_cd(base_directory);
3510 if (rc) {
3511 cli_cm_shutdown();
3512 return rc;
3516 if (cmdstr) {
3517 rc = process_command_string(cmdstr);
3518 } else {
3519 process_stdin();
3522 cli_cm_shutdown();
3523 return rc;
3526 /****************************************************************************
3527 Handle a -L query.
3528 ****************************************************************************/
3530 static int do_host_query(char *query_host)
3532 cli = cli_cm_open(query_host, "IPC$", True);
3533 if (!cli)
3534 return 1;
3536 browse_host(True);
3538 if (port != 139) {
3540 /* Workgroups simply don't make sense over anything
3541 else but port 139... */
3543 cli_cm_shutdown();
3544 cli_cm_set_port( 139 );
3545 cli = cli_cm_open(query_host, "IPC$", True);
3548 if (cli == NULL) {
3549 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
3550 return 1;
3553 list_servers(lp_workgroup());
3555 cli_cm_shutdown();
3557 return(0);
3560 /****************************************************************************
3561 Handle a tar operation.
3562 ****************************************************************************/
3564 static int do_tar_op(char *base_directory)
3566 int ret;
3568 /* do we already have a connection? */
3569 if (!cli) {
3570 cli = cli_cm_open(desthost, service, True);
3571 if (!cli)
3572 return 1;
3575 recurse=True;
3577 if (*base_directory) {
3578 ret = do_cd(base_directory);
3579 if (ret) {
3580 cli_cm_shutdown();
3581 return ret;
3585 ret=process_tar();
3587 cli_cm_shutdown();
3589 return(ret);
3592 /****************************************************************************
3593 Handle a message operation.
3594 ****************************************************************************/
3596 static int do_message_op(void)
3598 struct in_addr ip;
3599 struct nmb_name called, calling;
3600 fstring server_name;
3601 char name_type_hex[10];
3602 int msg_port;
3604 make_nmb_name(&calling, calling_name, 0x0);
3605 make_nmb_name(&called , desthost, name_type);
3607 fstrcpy(server_name, desthost);
3608 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
3609 fstrcat(server_name, name_type_hex);
3611 zero_ip(&ip);
3612 if (have_ip)
3613 ip = dest_ip;
3615 /* we can only do messages over port 139 (to windows clients at least) */
3617 msg_port = port ? port : 139;
3619 if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port) ||
3620 !cli_connect(cli, server_name, &ip)) {
3621 d_printf("Connection to %s failed\n", desthost);
3622 return 1;
3625 if (!cli_session_request(cli, &calling, &called)) {
3626 d_printf("session request failed\n");
3627 cli_cm_shutdown();
3628 return 1;
3631 send_message();
3632 cli_cm_shutdown();
3634 return 0;
3638 /****************************************************************************
3639 main program
3640 ****************************************************************************/
3642 int main(int argc,char *argv[])
3644 pstring base_directory;
3645 int opt;
3646 pstring query_host;
3647 BOOL message = False;
3648 pstring term_code;
3649 static const char *new_name_resolve_order = NULL;
3650 poptContext pc;
3651 char *p;
3652 int rc = 0;
3653 fstring new_workgroup;
3654 struct poptOption long_options[] = {
3655 POPT_AUTOHELP
3657 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
3658 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
3659 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
3660 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
3661 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
3662 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
3663 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
3664 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
3665 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
3666 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
3667 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
3668 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
3669 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
3670 POPT_COMMON_SAMBA
3671 POPT_COMMON_CONNECTION
3672 POPT_COMMON_CREDENTIALS
3673 POPT_TABLEEND
3676 load_case_tables();
3678 #ifdef KANJI
3679 pstrcpy(term_code, KANJI);
3680 #else /* KANJI */
3681 *term_code = 0;
3682 #endif /* KANJI */
3684 *query_host = 0;
3685 *base_directory = 0;
3687 /* initialize the workgroup name so we can determine whether or
3688 not it was set by a command line option */
3690 set_global_myworkgroup( "" );
3691 set_global_myname( "" );
3693 /* set default debug level to 0 regardless of what smb.conf sets */
3694 setup_logging( "smbclient", True );
3695 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
3696 if ((dbf = x_fdup(x_stderr))) {
3697 x_setbuf( dbf, NULL );
3700 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options,
3701 POPT_CONTEXT_KEEP_FIRST);
3702 poptSetOtherOptionHelp(pc, "service <password>");
3704 in_client = True; /* Make sure that we tell lp_load we are */
3706 while ((opt = poptGetNextOpt(pc)) != -1) {
3707 switch (opt) {
3708 case 'M':
3709 /* Messages are sent to NetBIOS name type 0x3
3710 * (Messenger Service). Make sure we default
3711 * to port 139 instead of port 445. srl,crh
3713 name_type = 0x03;
3714 cli_cm_set_dest_name_type( name_type );
3715 pstrcpy(desthost,poptGetOptArg(pc));
3716 if( !port )
3717 cli_cm_set_port( 139 );
3718 message = True;
3719 break;
3720 case 'I':
3722 dest_ip = *interpret_addr2(poptGetOptArg(pc));
3723 if (is_zero_ip(dest_ip))
3724 exit(1);
3725 have_ip = True;
3727 cli_cm_set_dest_ip( dest_ip );
3729 break;
3730 case 'E':
3731 if (dbf) {
3732 x_fclose(dbf);
3734 dbf = x_stderr;
3735 display_set_stderr();
3736 break;
3738 case 'L':
3739 pstrcpy(query_host, poptGetOptArg(pc));
3740 break;
3741 case 't':
3742 pstrcpy(term_code, poptGetOptArg(pc));
3743 break;
3744 case 'm':
3745 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
3746 break;
3747 case 'T':
3748 /* We must use old option processing for this. Find the
3749 * position of the -T option in the raw argv[]. */
3751 int i, optnum;
3752 for (i = 1; i < argc; i++) {
3753 if (strncmp("-T", argv[i],2)==0)
3754 break;
3756 i++;
3757 if (!(optnum = tar_parseargs(argc, argv, poptGetOptArg(pc), i))) {
3758 poptPrintUsage(pc, stderr, 0);
3759 exit(1);
3761 /* Now we must eat (optnum - i) options - they have
3762 * been processed by tar_parseargs().
3764 optnum -= i;
3765 for (i = 0; i < optnum; i++)
3766 poptGetOptArg(pc);
3768 break;
3769 case 'D':
3770 pstrcpy(base_directory,poptGetOptArg(pc));
3771 break;
3772 case 'g':
3773 grepable=True;
3774 break;
3778 poptGetArg(pc);
3780 /* check for the -P option */
3782 if ( port != 0 )
3783 cli_cm_set_port( port );
3786 * Don't load debug level from smb.conf. It should be
3787 * set by cmdline arg or remain default (0)
3789 AllowDebugChange = False;
3791 /* save the workgroup...
3793 FIXME!! do we need to do this for other options as well
3794 (or maybe a generic way to keep lp_load() from overwriting
3795 everything)? */
3797 fstrcpy( new_workgroup, lp_workgroup() );
3798 pstrcpy( calling_name, global_myname() );
3800 if ( override_logfile )
3801 setup_logging( lp_logfile(), False );
3803 if (!lp_load(dyn_CONFIGFILE,True,False,False,True)) {
3804 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
3805 argv[0], dyn_CONFIGFILE);
3808 load_interfaces();
3810 if ( strlen(new_workgroup) != 0 )
3811 set_global_myworkgroup( new_workgroup );
3813 if ( strlen(calling_name) != 0 )
3814 set_global_myname( calling_name );
3815 else
3816 pstrcpy( calling_name, global_myname() );
3818 if(poptPeekArg(pc)) {
3819 pstrcpy(service,poptGetArg(pc));
3820 /* Convert any '/' characters in the service name to '\' characters */
3821 string_replace(service, '/','\\');
3823 if (count_chars(service,'\\') < 3) {
3824 d_printf("\n%s: Not enough '\\' characters in service\n",service);
3825 poptPrintUsage(pc, stderr, 0);
3826 exit(1);
3830 if (poptPeekArg(pc) && !cmdline_auth_info.got_pass) {
3831 cmdline_auth_info.got_pass = True;
3832 pstrcpy(cmdline_auth_info.password,poptGetArg(pc));
3835 init_names();
3837 if(new_name_resolve_order)
3838 lp_set_name_resolve_order(new_name_resolve_order);
3840 if (!tar_type && !*query_host && !*service && !message) {
3841 poptPrintUsage(pc, stderr, 0);
3842 exit(1);
3845 poptFreeContext(pc);
3847 /* store the username an password for dfs support */
3849 cli_cm_set_credentials( &cmdline_auth_info );
3850 pstrcpy(username, cmdline_auth_info.username);
3852 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
3854 if (tar_type) {
3855 if (cmdstr)
3856 process_command_string(cmdstr);
3857 return do_tar_op(base_directory);
3860 if (*query_host) {
3861 char *qhost = query_host;
3862 char *slash;
3864 while (*qhost == '\\' || *qhost == '/')
3865 qhost++;
3867 if ((slash = strchr_m(qhost, '/'))
3868 || (slash = strchr_m(qhost, '\\'))) {
3869 *slash = 0;
3872 if ((p=strchr_m(qhost, '#'))) {
3873 *p = 0;
3874 p++;
3875 sscanf(p, "%x", &name_type);
3876 cli_cm_set_dest_name_type( name_type );
3879 return do_host_query(qhost);
3882 if (message) {
3883 return do_message_op();
3886 if (process(base_directory)) {
3887 return 1;
3890 talloc_destroy( ctx);
3891 return rc;