Remove another global from clidfs that is only used in client.c.
[Samba.git] / source3 / client / client.c
blobcfe33c46c2fb131f29c7f91d4d9e44a03417535a
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
8 Copyright (C) Jeremy Allison 1994-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
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 int do_smb_browse(void); /* mDNS browsing */
33 extern bool AllowDebugChange;
34 extern bool override_logfile;
35 extern char tar_type;
37 static int port = 0;
38 static char *service;
39 static char *desthost;
40 static char *calling_name;
41 static bool grepable = false;
42 static char *cmdstr = NULL;
43 const char *cmd_ptr = NULL;
45 static int io_bufsize = 524288;
47 static int name_type = 0x20;
48 static int max_protocol = PROTOCOL_NT1;
50 static int process_tok(char *tok);
51 static int cmd_help(void);
53 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55 /* 30 second timeout on most commands */
56 #define CLIENT_TIMEOUT (30*1000)
57 #define SHORT_TIMEOUT (5*1000)
59 /* value for unused fid field in trans2 secondary request */
60 #define FID_UNUSED (0xFFFF)
62 time_t newer_than = 0;
63 static int archive_level = 0;
65 static bool translation = false;
66 static bool have_ip;
68 /* clitar bits insert */
69 extern int blocksize;
70 extern bool tar_inc;
71 extern bool tar_reset;
72 /* clitar bits end */
74 static bool prompt = true;
76 static bool recurse = false;
77 static bool showacls = false;
78 bool lowercase = false;
80 static struct sockaddr_storage dest_ss;
81 static char dest_ss_str[INET6_ADDRSTRLEN];
83 #define SEPARATORS " \t\n\r"
85 static bool abort_mget = true;
87 /* timing globals */
88 uint64_t get_total_size = 0;
89 unsigned int get_total_time_ms = 0;
90 static uint64_t put_total_size = 0;
91 static unsigned int put_total_time_ms = 0;
93 /* totals globals */
94 static double dir_total;
96 /* encrypted state. */
97 static bool smb_encrypt;
99 /* root cli_state connection */
101 struct cli_state *cli;
103 static char CLI_DIRSEP_CHAR = '\\';
104 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
106 /* Accessor functions for directory paths. */
107 static char *fileselection;
108 static const char *client_get_fileselection(void)
110 if (fileselection) {
111 return fileselection;
113 return "";
116 static const char *client_set_fileselection(const char *new_fs)
118 SAFE_FREE(fileselection);
119 if (new_fs) {
120 fileselection = SMB_STRDUP(new_fs);
122 return client_get_fileselection();
125 static char *cwd;
126 static const char *client_get_cwd(void)
128 if (cwd) {
129 return cwd;
131 return CLI_DIRSEP_STR;
134 static const char *client_set_cwd(const char *new_cwd)
136 SAFE_FREE(cwd);
137 if (new_cwd) {
138 cwd = SMB_STRDUP(new_cwd);
140 return client_get_cwd();
143 static char *cur_dir;
144 const char *client_get_cur_dir(void)
146 if (cur_dir) {
147 return cur_dir;
149 return CLI_DIRSEP_STR;
152 const char *client_set_cur_dir(const char *newdir)
154 SAFE_FREE(cur_dir);
155 if (newdir) {
156 cur_dir = SMB_STRDUP(newdir);
158 return client_get_cur_dir();
161 /****************************************************************************
162 Write to a local file with CR/LF->LF translation if appropriate. Return the
163 number taken from the buffer. This may not equal the number written.
164 ****************************************************************************/
166 static int writefile(int f, char *b, int n)
168 int i;
170 if (!translation) {
171 return write(f,b,n);
174 i = 0;
175 while (i < n) {
176 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
177 b++;i++;
179 if (write(f, b, 1) != 1) {
180 break;
182 b++;
183 i++;
186 return(i);
189 /****************************************************************************
190 Read from a file with LF->CR/LF translation if appropriate. Return the
191 number read. read approx n bytes.
192 ****************************************************************************/
194 static int readfile(uint8_t *b, int n, XFILE *f)
196 int i;
197 int c;
199 if (!translation)
200 return x_fread(b,1,n,f);
202 i = 0;
203 while (i < (n - 1) && (i < BUFFER_SIZE)) {
204 if ((c = x_getc(f)) == EOF) {
205 break;
208 if (c == '\n') { /* change all LFs to CR/LF */
209 b[i++] = '\r';
212 b[i++] = c;
215 return(i);
218 struct push_state {
219 XFILE *f;
220 SMB_OFF_T nread;
223 static size_t push_source(uint8_t *buf, size_t n, void *priv)
225 struct push_state *state = (struct push_state *)priv;
226 int result;
228 if (x_feof(state->f)) {
229 return 0;
232 result = readfile(buf, n, state->f);
233 state->nread += result;
234 return result;
237 /****************************************************************************
238 Send a message.
239 ****************************************************************************/
241 static void send_message(const char *username)
243 int total_len = 0;
244 int grp_id;
246 if (!cli_message_start(cli, desthost, username, &grp_id)) {
247 d_printf("message start: %s\n", cli_errstr(cli));
248 return;
252 d_printf("Connected. Type your message, ending it with a Control-D\n");
254 while (!feof(stdin) && total_len < 1600) {
255 int maxlen = MIN(1600 - total_len,127);
256 char msg[1024];
257 int l=0;
258 int c;
260 ZERO_ARRAY(msg);
262 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
263 if (c == '\n')
264 msg[l++] = '\r';
265 msg[l] = c;
268 if ((total_len > 0) && (strlen(msg) == 0)) {
269 break;
272 if (!cli_message_text(cli, msg, l, grp_id)) {
273 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
274 return;
277 total_len += l;
280 if (total_len >= 1600)
281 d_printf("the message was truncated to 1600 bytes\n");
282 else
283 d_printf("sent %d bytes\n",total_len);
285 if (!cli_message_end(cli, grp_id)) {
286 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
287 return;
291 /****************************************************************************
292 Check the space on a device.
293 ****************************************************************************/
295 static int do_dskattr(void)
297 int total, bsize, avail;
298 struct cli_state *targetcli = NULL;
299 char *targetpath = NULL;
300 TALLOC_CTX *ctx = talloc_tos();
302 if ( !cli_resolve_path(ctx, "", cli, client_get_cur_dir(), &targetcli, &targetpath)) {
303 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
304 return 1;
307 if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
308 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
309 return 1;
312 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
313 total, bsize, avail);
315 return 0;
318 /****************************************************************************
319 Show cd/pwd.
320 ****************************************************************************/
322 static int cmd_pwd(void)
324 d_printf("Current directory is %s",service);
325 d_printf("%s\n",client_get_cur_dir());
326 return 0;
329 /****************************************************************************
330 Ensure name has correct directory separators.
331 ****************************************************************************/
333 static void normalize_name(char *newdir)
335 if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
336 string_replace(newdir,'/','\\');
340 /****************************************************************************
341 Change directory - inner section.
342 ****************************************************************************/
344 static int do_cd(const char *new_dir)
346 char *newdir = NULL;
347 char *saved_dir = NULL;
348 char *new_cd = NULL;
349 char *targetpath = NULL;
350 struct cli_state *targetcli = NULL;
351 SMB_STRUCT_STAT sbuf;
352 uint32 attributes;
353 int ret = 1;
354 TALLOC_CTX *ctx = talloc_stackframe();
356 newdir = talloc_strdup(ctx, new_dir);
357 if (!newdir) {
358 TALLOC_FREE(ctx);
359 return 1;
362 normalize_name(newdir);
364 /* Save the current directory in case the new directory is invalid */
366 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
367 if (!saved_dir) {
368 TALLOC_FREE(ctx);
369 return 1;
372 if (*newdir == CLI_DIRSEP_CHAR) {
373 client_set_cur_dir(newdir);
374 new_cd = newdir;
375 } else {
376 new_cd = talloc_asprintf(ctx, "%s%s",
377 client_get_cur_dir(),
378 newdir);
379 if (!new_cd) {
380 goto out;
384 /* Ensure cur_dir ends in a DIRSEP */
385 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
386 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
387 if (!new_cd) {
388 goto out;
391 client_set_cur_dir(new_cd);
393 new_cd = clean_name(ctx, new_cd);
394 client_set_cur_dir(new_cd);
396 if ( !cli_resolve_path(ctx, "", cli, new_cd, &targetcli, &targetpath)) {
397 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
398 client_set_cur_dir(saved_dir);
399 goto out;
402 if (strequal(targetpath,CLI_DIRSEP_STR )) {
403 TALLOC_FREE(ctx);
404 return 0;
407 /* Use a trans2_qpathinfo to test directories for modern servers.
408 Except Win9x doesn't support the qpathinfo_basic() call..... */
410 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
411 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
412 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
413 client_set_cur_dir(saved_dir);
414 goto out;
417 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
418 d_printf("cd %s: not a directory\n", new_cd);
419 client_set_cur_dir(saved_dir);
420 goto out;
422 } else {
423 targetpath = talloc_asprintf(ctx,
424 "%s%s",
425 targetpath,
426 CLI_DIRSEP_STR );
427 if (!targetpath) {
428 client_set_cur_dir(saved_dir);
429 goto out;
431 targetpath = clean_name(ctx, targetpath);
432 if (!targetpath) {
433 client_set_cur_dir(saved_dir);
434 goto out;
437 if (!cli_chkpath(targetcli, targetpath)) {
438 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
439 client_set_cur_dir(saved_dir);
440 goto out;
444 ret = 0;
446 out:
448 TALLOC_FREE(ctx);
449 return ret;
452 /****************************************************************************
453 Change directory.
454 ****************************************************************************/
456 static int cmd_cd(void)
458 char *buf = NULL;
459 int rc = 0;
461 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
462 rc = do_cd(buf);
463 } else {
464 d_printf("Current directory is %s\n",client_get_cur_dir());
467 return rc;
470 /****************************************************************************
471 Change directory.
472 ****************************************************************************/
474 static int cmd_cd_oneup(void)
476 return do_cd("..");
479 /*******************************************************************
480 Decide if a file should be operated on.
481 ********************************************************************/
483 static bool do_this_one(file_info *finfo)
485 if (!finfo->name) {
486 return false;
489 if (finfo->mode & aDIR) {
490 return true;
493 if (*client_get_fileselection() &&
494 !mask_match(finfo->name,client_get_fileselection(),false)) {
495 DEBUG(3,("mask_match %s failed\n", finfo->name));
496 return false;
499 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
500 DEBUG(3,("newer_than %s failed\n", finfo->name));
501 return false;
504 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
505 DEBUG(3,("archive %s failed\n", finfo->name));
506 return false;
509 return true;
512 /****************************************************************************
513 Display info about a file.
514 ****************************************************************************/
516 static void display_finfo(file_info *finfo, const char *dir)
518 time_t t;
519 TALLOC_CTX *ctx = talloc_tos();
521 if (!do_this_one(finfo)) {
522 return;
525 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
526 if (!showacls) {
527 d_printf(" %-30s%7.7s %8.0f %s",
528 finfo->name,
529 attrib_string(finfo->mode),
530 (double)finfo->size,
531 time_to_asc(t));
532 dir_total += finfo->size;
533 } else {
534 char *afname = NULL;
535 int fnum;
537 /* skip if this is . or .. */
538 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
539 return;
540 /* create absolute filename for cli_nt_create() FIXME */
541 afname = talloc_asprintf(ctx,
542 "%s%s%s",
543 dir,
544 CLI_DIRSEP_STR,
545 finfo->name);
546 if (!afname) {
547 return;
549 /* print file meta date header */
550 d_printf( "FILENAME:%s\n", finfo->name);
551 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
552 d_printf( "SIZE:%.0f\n", (double)finfo->size);
553 d_printf( "MTIME:%s", time_to_asc(t));
554 fnum = cli_nt_create(finfo->cli, afname, CREATE_ACCESS_READ);
555 if (fnum == -1) {
556 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
557 afname,
558 cli_errstr( finfo->cli)));
559 } else {
560 SEC_DESC *sd = NULL;
561 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
562 if (!sd) {
563 DEBUG( 0, ("display_finfo() failed to "
564 "get security descriptor: %s",
565 cli_errstr( finfo->cli)));
566 } else {
567 display_sec_desc(sd);
569 TALLOC_FREE(sd);
571 TALLOC_FREE(afname);
575 /****************************************************************************
576 Accumulate size of a file.
577 ****************************************************************************/
579 static void do_du(file_info *finfo, const char *dir)
581 if (do_this_one(finfo)) {
582 dir_total += finfo->size;
586 static bool do_list_recurse;
587 static bool do_list_dirs;
588 static char *do_list_queue = 0;
589 static long do_list_queue_size = 0;
590 static long do_list_queue_start = 0;
591 static long do_list_queue_end = 0;
592 static void (*do_list_fn)(file_info *, const char *dir);
594 /****************************************************************************
595 Functions for do_list_queue.
596 ****************************************************************************/
599 * The do_list_queue is a NUL-separated list of strings stored in a
600 * char*. Since this is a FIFO, we keep track of the beginning and
601 * ending locations of the data in the queue. When we overflow, we
602 * double the size of the char*. When the start of the data passes
603 * the midpoint, we move everything back. This is logically more
604 * complex than a linked list, but easier from a memory management
605 * angle. In any memory error condition, do_list_queue is reset.
606 * Functions check to ensure that do_list_queue is non-NULL before
607 * accessing it.
610 static void reset_do_list_queue(void)
612 SAFE_FREE(do_list_queue);
613 do_list_queue_size = 0;
614 do_list_queue_start = 0;
615 do_list_queue_end = 0;
618 static void init_do_list_queue(void)
620 reset_do_list_queue();
621 do_list_queue_size = 1024;
622 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
623 if (do_list_queue == 0) {
624 d_printf("malloc fail for size %d\n",
625 (int)do_list_queue_size);
626 reset_do_list_queue();
627 } else {
628 memset(do_list_queue, 0, do_list_queue_size);
632 static void adjust_do_list_queue(void)
635 * If the starting point of the queue is more than half way through,
636 * move everything toward the beginning.
639 if (do_list_queue == NULL) {
640 DEBUG(4,("do_list_queue is empty\n"));
641 do_list_queue_start = do_list_queue_end = 0;
642 return;
645 if (do_list_queue_start == do_list_queue_end) {
646 DEBUG(4,("do_list_queue is empty\n"));
647 do_list_queue_start = do_list_queue_end = 0;
648 *do_list_queue = '\0';
649 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
650 DEBUG(4,("sliding do_list_queue backward\n"));
651 memmove(do_list_queue,
652 do_list_queue + do_list_queue_start,
653 do_list_queue_end - do_list_queue_start);
654 do_list_queue_end -= do_list_queue_start;
655 do_list_queue_start = 0;
659 static void add_to_do_list_queue(const char *entry)
661 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
662 while (new_end > do_list_queue_size) {
663 do_list_queue_size *= 2;
664 DEBUG(4,("enlarging do_list_queue to %d\n",
665 (int)do_list_queue_size));
666 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
667 if (! do_list_queue) {
668 d_printf("failure enlarging do_list_queue to %d bytes\n",
669 (int)do_list_queue_size);
670 reset_do_list_queue();
671 } else {
672 memset(do_list_queue + do_list_queue_size / 2,
673 0, do_list_queue_size / 2);
676 if (do_list_queue) {
677 safe_strcpy_base(do_list_queue + do_list_queue_end,
678 entry, do_list_queue, do_list_queue_size);
679 do_list_queue_end = new_end;
680 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
681 entry, (int)do_list_queue_start, (int)do_list_queue_end));
685 static char *do_list_queue_head(void)
687 return do_list_queue + do_list_queue_start;
690 static void remove_do_list_queue_head(void)
692 if (do_list_queue_end > do_list_queue_start) {
693 do_list_queue_start += strlen(do_list_queue_head()) + 1;
694 adjust_do_list_queue();
695 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
696 (int)do_list_queue_start, (int)do_list_queue_end));
700 static int do_list_queue_empty(void)
702 return (! (do_list_queue && *do_list_queue));
705 /****************************************************************************
706 A helper for do_list.
707 ****************************************************************************/
709 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
711 TALLOC_CTX *ctx = talloc_tos();
712 char *dir = NULL;
713 char *dir_end = NULL;
715 /* Work out the directory. */
716 dir = talloc_strdup(ctx, mask);
717 if (!dir) {
718 return;
720 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
721 *dir_end = '\0';
724 if (f->mode & aDIR) {
725 if (do_list_dirs && do_this_one(f)) {
726 do_list_fn(f, dir);
728 if (do_list_recurse &&
729 f->name &&
730 !strequal(f->name,".") &&
731 !strequal(f->name,"..")) {
732 char *mask2 = NULL;
733 char *p = NULL;
735 if (!f->name[0]) {
736 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
737 TALLOC_FREE(dir);
738 return;
741 mask2 = talloc_asprintf(ctx,
742 "%s%s",
743 mntpoint,
744 mask);
745 if (!mask2) {
746 TALLOC_FREE(dir);
747 return;
749 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
750 if (p) {
751 p[1] = 0;
752 } else {
753 mask2[0] = '\0';
755 mask2 = talloc_asprintf_append(mask2,
756 "%s%s*",
757 f->name,
758 CLI_DIRSEP_STR);
759 if (!mask2) {
760 TALLOC_FREE(dir);
761 return;
763 add_to_do_list_queue(mask2);
764 TALLOC_FREE(mask2);
766 TALLOC_FREE(dir);
767 return;
770 if (do_this_one(f)) {
771 do_list_fn(f,dir);
773 TALLOC_FREE(dir);
776 /****************************************************************************
777 A wrapper around cli_list that adds recursion.
778 ****************************************************************************/
780 void do_list(const char *mask,
781 uint16 attribute,
782 void (*fn)(file_info *, const char *dir),
783 bool rec,
784 bool dirs)
786 static int in_do_list = 0;
787 TALLOC_CTX *ctx = talloc_tos();
788 struct cli_state *targetcli = NULL;
789 char *targetpath = NULL;
791 if (in_do_list && rec) {
792 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
793 exit(1);
796 in_do_list = 1;
798 do_list_recurse = rec;
799 do_list_dirs = dirs;
800 do_list_fn = fn;
802 if (rec) {
803 init_do_list_queue();
804 add_to_do_list_queue(mask);
806 while (!do_list_queue_empty()) {
808 * Need to copy head so that it doesn't become
809 * invalid inside the call to cli_list. This
810 * would happen if the list were expanded
811 * during the call.
812 * Fix from E. Jay Berkenbilt (ejb@ql.org)
814 char *head = talloc_strdup(ctx, do_list_queue_head());
816 if (!head) {
817 return;
820 /* check for dfs */
822 if ( !cli_resolve_path(ctx, "", cli, head, &targetcli, &targetpath ) ) {
823 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
824 remove_do_list_queue_head();
825 continue;
828 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
829 remove_do_list_queue_head();
830 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
831 char *next_file = do_list_queue_head();
832 char *save_ch = 0;
833 if ((strlen(next_file) >= 2) &&
834 (next_file[strlen(next_file) - 1] == '*') &&
835 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
836 save_ch = next_file +
837 strlen(next_file) - 2;
838 *save_ch = '\0';
839 if (showacls) {
840 /* cwd is only used if showacls is on */
841 client_set_cwd(next_file);
844 if (!showacls) /* don't disturbe the showacls output */
845 d_printf("\n%s\n",next_file);
846 if (save_ch) {
847 *save_ch = CLI_DIRSEP_CHAR;
850 TALLOC_FREE(head);
851 TALLOC_FREE(targetpath);
853 } else {
854 /* check for dfs */
855 if (cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetpath)) {
856 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
857 d_printf("%s listing %s\n",
858 cli_errstr(targetcli), targetpath);
860 TALLOC_FREE(targetpath);
861 } else {
862 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
866 in_do_list = 0;
867 reset_do_list_queue();
870 /****************************************************************************
871 Get a directory listing.
872 ****************************************************************************/
874 static int cmd_dir(void)
876 TALLOC_CTX *ctx = talloc_tos();
877 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
878 char *mask = NULL;
879 char *buf = NULL;
880 int rc = 1;
882 dir_total = 0;
883 mask = talloc_strdup(ctx, client_get_cur_dir());
884 if (!mask) {
885 return 1;
888 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
889 normalize_name(buf);
890 if (*buf == CLI_DIRSEP_CHAR) {
891 mask = talloc_strdup(ctx, buf);
892 } else {
893 mask = talloc_asprintf_append(mask, "%s", buf);
895 } else {
896 mask = talloc_asprintf_append(mask, "*");
898 if (!mask) {
899 return 1;
902 if (showacls) {
903 /* cwd is only used if showacls is on */
904 client_set_cwd(client_get_cur_dir());
907 do_list(mask, attribute, display_finfo, recurse, true);
909 rc = do_dskattr();
911 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
913 return rc;
916 /****************************************************************************
917 Get a directory listing.
918 ****************************************************************************/
920 static int cmd_du(void)
922 TALLOC_CTX *ctx = talloc_tos();
923 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
924 char *mask = NULL;
925 char *buf = NULL;
926 int rc = 1;
928 dir_total = 0;
929 mask = talloc_strdup(ctx, client_get_cur_dir());
930 if (!mask) {
931 return 1;
933 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
934 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
935 if (!mask) {
936 return 1;
940 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
941 normalize_name(buf);
942 if (*buf == CLI_DIRSEP_CHAR) {
943 mask = talloc_strdup(ctx, buf);
944 } else {
945 mask = talloc_asprintf_append(mask, "%s", buf);
947 } else {
948 mask = talloc_strdup(ctx, "*");
951 do_list(mask, attribute, do_du, recurse, true);
953 rc = do_dskattr();
955 d_printf("Total number of bytes: %.0f\n", dir_total);
957 return rc;
960 static int cmd_echo(void)
962 TALLOC_CTX *ctx = talloc_tos();
963 char *num;
964 char *data;
965 NTSTATUS status;
967 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
968 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
969 d_printf("echo <num> <data>\n");
970 return 1;
973 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
975 if (!NT_STATUS_IS_OK(status)) {
976 d_printf("echo failed: %s\n", nt_errstr(status));
977 return 1;
980 return 0;
983 /****************************************************************************
984 Get a file from rname to lname
985 ****************************************************************************/
987 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
989 int *pfd = (int *)priv;
990 if (writefile(*pfd, buf, n) == -1) {
991 return map_nt_error_from_unix(errno);
993 return NT_STATUS_OK;
996 static int do_get(const char *rname, const char *lname_in, bool reget)
998 TALLOC_CTX *ctx = talloc_tos();
999 int handle = 0, fnum;
1000 bool newhandle = false;
1001 struct timeval tp_start;
1002 uint16 attr;
1003 SMB_OFF_T size;
1004 off_t start = 0;
1005 SMB_OFF_T nread = 0;
1006 int rc = 0;
1007 struct cli_state *targetcli = NULL;
1008 char *targetname = NULL;
1009 char *lname = NULL;
1010 NTSTATUS status;
1012 lname = talloc_strdup(ctx, lname_in);
1013 if (!lname) {
1014 return 1;
1017 if (lowercase) {
1018 strlower_m(lname);
1021 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname ) ) {
1022 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1023 return 1;
1026 GetTimeOfDay(&tp_start);
1028 fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
1030 if (fnum == -1) {
1031 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1032 return 1;
1035 if(!strcmp(lname,"-")) {
1036 handle = fileno(stdout);
1037 } else {
1038 if (reget) {
1039 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1040 if (handle >= 0) {
1041 start = sys_lseek(handle, 0, SEEK_END);
1042 if (start == -1) {
1043 d_printf("Error seeking local file\n");
1044 return 1;
1047 } else {
1048 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1050 newhandle = true;
1052 if (handle < 0) {
1053 d_printf("Error opening local file %s\n",lname);
1054 return 1;
1058 if (!cli_qfileinfo(targetcli, fnum,
1059 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1060 !cli_getattrE(targetcli, fnum,
1061 &attr, &size, NULL, NULL, NULL)) {
1062 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1063 return 1;
1066 DEBUG(1,("getting file %s of size %.0f as %s ",
1067 rname, (double)size, lname));
1069 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1070 writefile_sink, (void *)&handle, &nread);
1071 if (!NT_STATUS_IS_OK(status)) {
1072 d_fprintf(stderr, "parallel_read returned %s\n",
1073 nt_errstr(status));
1074 cli_close(targetcli, fnum);
1075 return 1;
1078 if (!cli_close(targetcli, fnum)) {
1079 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1080 rc = 1;
1083 if (newhandle) {
1084 close(handle);
1087 if (archive_level >= 2 && (attr & aARCH)) {
1088 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1092 struct timeval tp_end;
1093 int this_time;
1095 GetTimeOfDay(&tp_end);
1096 this_time =
1097 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1098 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1099 get_total_time_ms += this_time;
1100 get_total_size += nread;
1102 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1103 nread / (1.024*this_time + 1.0e-4),
1104 get_total_size / (1.024*get_total_time_ms)));
1107 TALLOC_FREE(targetname);
1108 return rc;
1111 /****************************************************************************
1112 Get a file.
1113 ****************************************************************************/
1115 static int cmd_get(void)
1117 TALLOC_CTX *ctx = talloc_tos();
1118 char *lname = NULL;
1119 char *rname = NULL;
1120 char *fname = NULL;
1122 rname = talloc_strdup(ctx, client_get_cur_dir());
1123 if (!rname) {
1124 return 1;
1127 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1128 d_printf("get <filename> [localname]\n");
1129 return 1;
1131 rname = talloc_asprintf_append(rname, "%s", fname);
1132 if (!rname) {
1133 return 1;
1135 rname = clean_name(ctx, rname);
1136 if (!rname) {
1137 return 1;
1140 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1141 if (!lname) {
1142 lname = fname;
1145 return do_get(rname, lname, false);
1148 /****************************************************************************
1149 Do an mget operation on one file.
1150 ****************************************************************************/
1152 static void do_mget(file_info *finfo, const char *dir)
1154 TALLOC_CTX *ctx = talloc_tos();
1155 char *rname = NULL;
1156 char *quest = NULL;
1157 char *saved_curdir = NULL;
1158 char *mget_mask = NULL;
1159 char *new_cd = NULL;
1161 if (!finfo->name) {
1162 return;
1165 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1166 return;
1168 if (abort_mget) {
1169 d_printf("mget aborted\n");
1170 return;
1173 if (finfo->mode & aDIR) {
1174 if (asprintf(&quest,
1175 "Get directory %s? ",finfo->name) < 0) {
1176 return;
1178 } else {
1179 if (asprintf(&quest,
1180 "Get file %s? ",finfo->name) < 0) {
1181 return;
1185 if (prompt && !yesno(quest)) {
1186 SAFE_FREE(quest);
1187 return;
1189 SAFE_FREE(quest);
1191 if (!(finfo->mode & aDIR)) {
1192 rname = talloc_asprintf(ctx,
1193 "%s%s",
1194 client_get_cur_dir(),
1195 finfo->name);
1196 if (!rname) {
1197 return;
1199 do_get(rname, finfo->name, false);
1200 TALLOC_FREE(rname);
1201 return;
1204 /* handle directories */
1205 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1206 if (!saved_curdir) {
1207 return;
1210 new_cd = talloc_asprintf(ctx,
1211 "%s%s%s",
1212 client_get_cur_dir(),
1213 finfo->name,
1214 CLI_DIRSEP_STR);
1215 if (!new_cd) {
1216 return;
1218 client_set_cur_dir(new_cd);
1220 string_replace(finfo->name,'\\','/');
1221 if (lowercase) {
1222 strlower_m(finfo->name);
1225 if (!directory_exist(finfo->name) &&
1226 mkdir(finfo->name,0777) != 0) {
1227 d_printf("failed to create directory %s\n",finfo->name);
1228 client_set_cur_dir(saved_curdir);
1229 return;
1232 if (chdir(finfo->name) != 0) {
1233 d_printf("failed to chdir to directory %s\n",finfo->name);
1234 client_set_cur_dir(saved_curdir);
1235 return;
1238 mget_mask = talloc_asprintf(ctx,
1239 "%s*",
1240 client_get_cur_dir());
1242 if (!mget_mask) {
1243 return;
1246 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1247 if (chdir("..") == -1) {
1248 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1249 strerror(errno) );
1251 client_set_cur_dir(saved_curdir);
1252 TALLOC_FREE(mget_mask);
1253 TALLOC_FREE(saved_curdir);
1254 TALLOC_FREE(new_cd);
1257 /****************************************************************************
1258 View the file using the pager.
1259 ****************************************************************************/
1261 static int cmd_more(void)
1263 TALLOC_CTX *ctx = talloc_tos();
1264 char *rname = NULL;
1265 char *fname = NULL;
1266 char *lname = NULL;
1267 char *pager_cmd = NULL;
1268 const char *pager;
1269 int fd;
1270 int rc = 0;
1272 rname = talloc_strdup(ctx, client_get_cur_dir());
1273 if (!rname) {
1274 return 1;
1277 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1278 if (!lname) {
1279 return 1;
1281 fd = smb_mkstemp(lname);
1282 if (fd == -1) {
1283 d_printf("failed to create temporary file for more\n");
1284 return 1;
1286 close(fd);
1288 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1289 d_printf("more <filename>\n");
1290 unlink(lname);
1291 return 1;
1293 rname = talloc_asprintf_append(rname, "%s", fname);
1294 if (!rname) {
1295 return 1;
1297 rname = clean_name(ctx,rname);
1298 if (!rname) {
1299 return 1;
1302 rc = do_get(rname, lname, false);
1304 pager=getenv("PAGER");
1306 pager_cmd = talloc_asprintf(ctx,
1307 "%s %s",
1308 (pager? pager:PAGER),
1309 lname);
1310 if (!pager_cmd) {
1311 return 1;
1313 if (system(pager_cmd) == -1) {
1314 d_printf("system command '%s' returned -1\n",
1315 pager_cmd);
1317 unlink(lname);
1319 return rc;
1322 /****************************************************************************
1323 Do a mget command.
1324 ****************************************************************************/
1326 static int cmd_mget(void)
1328 TALLOC_CTX *ctx = talloc_tos();
1329 uint16 attribute = aSYSTEM | aHIDDEN;
1330 char *mget_mask = NULL;
1331 char *buf = NULL;
1333 if (recurse) {
1334 attribute |= aDIR;
1337 abort_mget = false;
1339 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1340 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1341 if (!mget_mask) {
1342 return 1;
1344 if (*buf == CLI_DIRSEP_CHAR) {
1345 mget_mask = talloc_strdup(ctx, buf);
1346 } else {
1347 mget_mask = talloc_asprintf_append(mget_mask,
1348 "%s", buf);
1350 if (!mget_mask) {
1351 return 1;
1353 do_list(mget_mask, attribute, do_mget, false, true);
1356 if (mget_mask == NULL) {
1357 d_printf("nothing to mget\n");
1358 return 0;
1361 if (!*mget_mask) {
1362 mget_mask = talloc_asprintf(ctx,
1363 "%s*",
1364 client_get_cur_dir());
1365 if (!mget_mask) {
1366 return 1;
1368 do_list(mget_mask, attribute, do_mget, false, true);
1371 return 0;
1374 /****************************************************************************
1375 Make a directory of name "name".
1376 ****************************************************************************/
1378 static bool do_mkdir(const char *name)
1380 TALLOC_CTX *ctx = talloc_tos();
1381 struct cli_state *targetcli;
1382 char *targetname = NULL;
1384 if (!cli_resolve_path(ctx, "", cli, name, &targetcli, &targetname)) {
1385 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1386 return false;
1389 if (!cli_mkdir(targetcli, targetname)) {
1390 d_printf("%s making remote directory %s\n",
1391 cli_errstr(targetcli),name);
1392 return false;
1395 return true;
1398 /****************************************************************************
1399 Show 8.3 name of a file.
1400 ****************************************************************************/
1402 static bool do_altname(const char *name)
1404 fstring altname;
1406 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1407 d_printf("%s getting alt name for %s\n",
1408 cli_errstr(cli),name);
1409 return false;
1411 d_printf("%s\n", altname);
1413 return true;
1416 /****************************************************************************
1417 Exit client.
1418 ****************************************************************************/
1420 static int cmd_quit(void)
1422 cli_cm_shutdown();
1423 exit(0);
1424 /* NOTREACHED */
1425 return 0;
1428 /****************************************************************************
1429 Make a directory.
1430 ****************************************************************************/
1432 static int cmd_mkdir(void)
1434 TALLOC_CTX *ctx = talloc_tos();
1435 char *mask = NULL;
1436 char *buf = NULL;
1438 mask = talloc_strdup(ctx, client_get_cur_dir());
1439 if (!mask) {
1440 return 1;
1443 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1444 if (!recurse) {
1445 d_printf("mkdir <dirname>\n");
1447 return 1;
1449 mask = talloc_asprintf_append(mask, "%s", buf);
1450 if (!mask) {
1451 return 1;
1454 if (recurse) {
1455 char *ddir = NULL;
1456 char *ddir2 = NULL;
1457 struct cli_state *targetcli;
1458 char *targetname = NULL;
1459 char *p = NULL;
1460 char *saveptr;
1462 ddir2 = talloc_strdup(ctx, "");
1463 if (!ddir2) {
1464 return 1;
1467 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
1468 return 1;
1471 ddir = talloc_strdup(ctx, targetname);
1472 if (!ddir) {
1473 return 1;
1475 trim_char(ddir,'.','\0');
1476 p = strtok_r(ddir, "/\\", &saveptr);
1477 while (p) {
1478 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1479 if (!ddir2) {
1480 return 1;
1482 if (!cli_chkpath(targetcli, ddir2)) {
1483 do_mkdir(ddir2);
1485 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1486 if (!ddir2) {
1487 return 1;
1489 p = strtok_r(NULL, "/\\", &saveptr);
1491 } else {
1492 do_mkdir(mask);
1495 return 0;
1498 /****************************************************************************
1499 Show alt name.
1500 ****************************************************************************/
1502 static int cmd_altname(void)
1504 TALLOC_CTX *ctx = talloc_tos();
1505 char *name;
1506 char *buf;
1508 name = talloc_strdup(ctx, client_get_cur_dir());
1509 if (!name) {
1510 return 1;
1513 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1514 d_printf("altname <file>\n");
1515 return 1;
1517 name = talloc_asprintf_append(name, "%s", buf);
1518 if (!name) {
1519 return 1;
1521 do_altname(name);
1522 return 0;
1525 /****************************************************************************
1526 Show all info we can get
1527 ****************************************************************************/
1529 static int do_allinfo(const char *name)
1531 fstring altname;
1532 struct timespec b_time, a_time, m_time, c_time;
1533 SMB_OFF_T size;
1534 uint16_t mode;
1535 SMB_INO_T ino;
1536 NTTIME tmp;
1537 unsigned int num_streams;
1538 struct stream_struct *streams;
1539 unsigned int i;
1541 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1542 d_printf("%s getting alt name for %s\n",
1543 cli_errstr(cli),name);
1544 return false;
1546 d_printf("altname: %s\n", altname);
1548 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1549 &size, &mode, &ino)) {
1550 d_printf("%s getting pathinfo for %s\n",
1551 cli_errstr(cli),name);
1552 return false;
1555 unix_timespec_to_nt_time(&tmp, b_time);
1556 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1558 unix_timespec_to_nt_time(&tmp, a_time);
1559 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1561 unix_timespec_to_nt_time(&tmp, m_time);
1562 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1564 unix_timespec_to_nt_time(&tmp, c_time);
1565 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1567 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1568 &streams)) {
1569 d_printf("%s getting streams for %s\n",
1570 cli_errstr(cli),name);
1571 return false;
1574 for (i=0; i<num_streams; i++) {
1575 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1576 (unsigned long long)streams[i].size);
1579 return 0;
1582 /****************************************************************************
1583 Show all info we can get
1584 ****************************************************************************/
1586 static int cmd_allinfo(void)
1588 TALLOC_CTX *ctx = talloc_tos();
1589 char *name;
1590 char *buf;
1592 name = talloc_strdup(ctx, client_get_cur_dir());
1593 if (!name) {
1594 return 1;
1597 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1598 d_printf("allinfo <file>\n");
1599 return 1;
1601 name = talloc_asprintf_append(name, "%s", buf);
1602 if (!name) {
1603 return 1;
1606 do_allinfo(name);
1608 return 0;
1611 /****************************************************************************
1612 Put a single file.
1613 ****************************************************************************/
1615 static int do_put(const char *rname, const char *lname, bool reput)
1617 TALLOC_CTX *ctx = talloc_tos();
1618 int fnum;
1619 XFILE *f;
1620 SMB_OFF_T start = 0;
1621 int rc = 0;
1622 struct timeval tp_start;
1623 struct cli_state *targetcli;
1624 char *targetname = NULL;
1625 struct push_state state;
1626 NTSTATUS status;
1628 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname)) {
1629 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1630 return 1;
1633 GetTimeOfDay(&tp_start);
1635 if (reput) {
1636 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
1637 if (fnum >= 0) {
1638 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1639 !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
1640 d_printf("getattrib: %s\n",cli_errstr(cli));
1641 return 1;
1644 } else {
1645 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1648 if (fnum == -1) {
1649 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1650 return 1;
1653 /* allow files to be piped into smbclient
1654 jdblair 24.jun.98
1656 Note that in this case this function will exit(0) rather
1657 than returning. */
1658 if (!strcmp(lname, "-")) {
1659 f = x_stdin;
1660 /* size of file is not known */
1661 } else {
1662 f = x_fopen(lname,O_RDONLY, 0);
1663 if (f && reput) {
1664 if (x_tseek(f, start, SEEK_SET) == -1) {
1665 d_printf("Error seeking local file\n");
1666 return 1;
1671 if (!f) {
1672 d_printf("Error opening local file %s\n",lname);
1673 return 1;
1676 DEBUG(1,("putting file %s as %s ",lname,
1677 rname));
1679 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1681 state.f = f;
1682 state.nread = 0;
1684 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1685 &state);
1686 if (!NT_STATUS_IS_OK(status)) {
1687 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1690 if (!cli_close(targetcli, fnum)) {
1691 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1692 x_fclose(f);
1693 return 1;
1696 if (f != x_stdin) {
1697 x_fclose(f);
1701 struct timeval tp_end;
1702 int this_time;
1704 GetTimeOfDay(&tp_end);
1705 this_time =
1706 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1707 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1708 put_total_time_ms += this_time;
1709 put_total_size += state.nread;
1711 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1712 state.nread / (1.024*this_time + 1.0e-4),
1713 put_total_size / (1.024*put_total_time_ms)));
1716 if (f == x_stdin) {
1717 cli_cm_shutdown();
1718 exit(0);
1721 return rc;
1724 /****************************************************************************
1725 Put a file.
1726 ****************************************************************************/
1728 static int cmd_put(void)
1730 TALLOC_CTX *ctx = talloc_tos();
1731 char *lname;
1732 char *rname;
1733 char *buf;
1735 rname = talloc_strdup(ctx, client_get_cur_dir());
1736 if (!rname) {
1737 return 1;
1740 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1741 d_printf("put <filename>\n");
1742 return 1;
1745 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1746 rname = talloc_asprintf_append(rname, "%s", buf);
1747 } else {
1748 rname = talloc_asprintf_append(rname, "%s", lname);
1750 if (!rname) {
1751 return 1;
1754 rname = clean_name(ctx, rname);
1755 if (!rname) {
1756 return 1;
1760 SMB_STRUCT_STAT st;
1761 /* allow '-' to represent stdin
1762 jdblair, 24.jun.98 */
1763 if (!file_exist_stat(lname,&st) &&
1764 (strcmp(lname,"-"))) {
1765 d_printf("%s does not exist\n",lname);
1766 return 1;
1770 return do_put(rname, lname, false);
1773 /*************************************
1774 File list structure.
1775 *************************************/
1777 static struct file_list {
1778 struct file_list *prev, *next;
1779 char *file_path;
1780 bool isdir;
1781 } *file_list;
1783 /****************************************************************************
1784 Free a file_list structure.
1785 ****************************************************************************/
1787 static void free_file_list (struct file_list *list_head)
1789 struct file_list *list, *next;
1791 for (list = list_head; list; list = next) {
1792 next = list->next;
1793 DLIST_REMOVE(list_head, list);
1794 SAFE_FREE(list->file_path);
1795 SAFE_FREE(list);
1799 /****************************************************************************
1800 Seek in a directory/file list until you get something that doesn't start with
1801 the specified name.
1802 ****************************************************************************/
1804 static bool seek_list(struct file_list *list, char *name)
1806 while (list) {
1807 trim_string(list->file_path,"./","\n");
1808 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1809 return true;
1811 list = list->next;
1814 return false;
1817 /****************************************************************************
1818 Set the file selection mask.
1819 ****************************************************************************/
1821 static int cmd_select(void)
1823 TALLOC_CTX *ctx = talloc_tos();
1824 char *new_fs = NULL;
1825 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1827 if (new_fs) {
1828 client_set_fileselection(new_fs);
1829 } else {
1830 client_set_fileselection("");
1832 return 0;
1835 /****************************************************************************
1836 Recursive file matching function act as find
1837 match must be always set to true when calling this function
1838 ****************************************************************************/
1840 static int file_find(struct file_list **list, const char *directory,
1841 const char *expression, bool match)
1843 SMB_STRUCT_DIR *dir;
1844 struct file_list *entry;
1845 struct stat statbuf;
1846 int ret;
1847 char *path;
1848 bool isdir;
1849 const char *dname;
1851 dir = sys_opendir(directory);
1852 if (!dir)
1853 return -1;
1855 while ((dname = readdirname(dir))) {
1856 if (!strcmp("..", dname))
1857 continue;
1858 if (!strcmp(".", dname))
1859 continue;
1861 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1862 continue;
1865 isdir = false;
1866 if (!match || !gen_fnmatch(expression, dname)) {
1867 if (recurse) {
1868 ret = stat(path, &statbuf);
1869 if (ret == 0) {
1870 if (S_ISDIR(statbuf.st_mode)) {
1871 isdir = true;
1872 ret = file_find(list, path, expression, false);
1874 } else {
1875 d_printf("file_find: cannot stat file %s\n", path);
1878 if (ret == -1) {
1879 SAFE_FREE(path);
1880 sys_closedir(dir);
1881 return -1;
1884 entry = SMB_MALLOC_P(struct file_list);
1885 if (!entry) {
1886 d_printf("Out of memory in file_find\n");
1887 sys_closedir(dir);
1888 return -1;
1890 entry->file_path = path;
1891 entry->isdir = isdir;
1892 DLIST_ADD(*list, entry);
1893 } else {
1894 SAFE_FREE(path);
1898 sys_closedir(dir);
1899 return 0;
1902 /****************************************************************************
1903 mput some files.
1904 ****************************************************************************/
1906 static int cmd_mput(void)
1908 TALLOC_CTX *ctx = talloc_tos();
1909 char *p = NULL;
1911 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1912 int ret;
1913 struct file_list *temp_list;
1914 char *quest, *lname, *rname;
1916 file_list = NULL;
1918 ret = file_find(&file_list, ".", p, true);
1919 if (ret) {
1920 free_file_list(file_list);
1921 continue;
1924 quest = NULL;
1925 lname = NULL;
1926 rname = NULL;
1928 for (temp_list = file_list; temp_list;
1929 temp_list = temp_list->next) {
1931 SAFE_FREE(lname);
1932 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1933 continue;
1935 trim_string(lname, "./", "/");
1937 /* check if it's a directory */
1938 if (temp_list->isdir) {
1939 /* if (!recurse) continue; */
1941 SAFE_FREE(quest);
1942 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1943 break;
1945 if (prompt && !yesno(quest)) { /* No */
1946 /* Skip the directory */
1947 lname[strlen(lname)-1] = '/';
1948 if (!seek_list(temp_list, lname))
1949 break;
1950 } else { /* Yes */
1951 SAFE_FREE(rname);
1952 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1953 break;
1955 normalize_name(rname);
1956 if (!cli_chkpath(cli, rname) &&
1957 !do_mkdir(rname)) {
1958 DEBUG (0, ("Unable to make dir, skipping..."));
1959 /* Skip the directory */
1960 lname[strlen(lname)-1] = '/';
1961 if (!seek_list(temp_list, lname)) {
1962 break;
1966 continue;
1967 } else {
1968 SAFE_FREE(quest);
1969 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1970 break;
1972 if (prompt && !yesno(quest)) {
1973 /* No */
1974 continue;
1977 /* Yes */
1978 SAFE_FREE(rname);
1979 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1980 break;
1984 normalize_name(rname);
1986 do_put(rname, lname, false);
1988 free_file_list(file_list);
1989 SAFE_FREE(quest);
1990 SAFE_FREE(lname);
1991 SAFE_FREE(rname);
1994 return 0;
1997 /****************************************************************************
1998 Cancel a print job.
1999 ****************************************************************************/
2001 static int do_cancel(int job)
2003 if (cli_printjob_del(cli, job)) {
2004 d_printf("Job %d cancelled\n",job);
2005 return 0;
2006 } else {
2007 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2008 return 1;
2012 /****************************************************************************
2013 Cancel a print job.
2014 ****************************************************************************/
2016 static int cmd_cancel(void)
2018 TALLOC_CTX *ctx = talloc_tos();
2019 char *buf = NULL;
2020 int job;
2022 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2023 d_printf("cancel <jobid> ...\n");
2024 return 1;
2026 do {
2027 job = atoi(buf);
2028 do_cancel(job);
2029 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2031 return 0;
2034 /****************************************************************************
2035 Print a file.
2036 ****************************************************************************/
2038 static int cmd_print(void)
2040 TALLOC_CTX *ctx = talloc_tos();
2041 char *lname = NULL;
2042 char *rname = NULL;
2043 char *p = NULL;
2045 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2046 d_printf("print <filename>\n");
2047 return 1;
2050 rname = talloc_strdup(ctx, lname);
2051 if (!rname) {
2052 return 1;
2054 p = strrchr_m(rname,'/');
2055 if (p) {
2056 rname = talloc_asprintf(ctx,
2057 "%s-%d",
2058 p+1,
2059 (int)sys_getpid());
2061 if (strequal(lname,"-")) {
2062 rname = talloc_asprintf(ctx,
2063 "stdin-%d",
2064 (int)sys_getpid());
2066 if (!rname) {
2067 return 1;
2070 return do_put(rname, lname, false);
2073 /****************************************************************************
2074 Show a print queue entry.
2075 ****************************************************************************/
2077 static void queue_fn(struct print_job_info *p)
2079 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2082 /****************************************************************************
2083 Show a print queue.
2084 ****************************************************************************/
2086 static int cmd_queue(void)
2088 cli_print_queue(cli, queue_fn);
2089 return 0;
2092 /****************************************************************************
2093 Delete some files.
2094 ****************************************************************************/
2096 static void do_del(file_info *finfo, const char *dir)
2098 TALLOC_CTX *ctx = talloc_tos();
2099 char *mask = NULL;
2101 mask = talloc_asprintf(ctx,
2102 "%s%c%s",
2103 dir,
2104 CLI_DIRSEP_CHAR,
2105 finfo->name);
2106 if (!mask) {
2107 return;
2110 if (finfo->mode & aDIR) {
2111 TALLOC_FREE(mask);
2112 return;
2115 if (!cli_unlink(finfo->cli, mask)) {
2116 d_printf("%s deleting remote file %s\n",
2117 cli_errstr(finfo->cli),mask);
2119 TALLOC_FREE(mask);
2122 /****************************************************************************
2123 Delete some files.
2124 ****************************************************************************/
2126 static int cmd_del(void)
2128 TALLOC_CTX *ctx = talloc_tos();
2129 char *mask = NULL;
2130 char *buf = NULL;
2131 uint16 attribute = aSYSTEM | aHIDDEN;
2133 if (recurse) {
2134 attribute |= aDIR;
2137 mask = talloc_strdup(ctx, client_get_cur_dir());
2138 if (!mask) {
2139 return 1;
2141 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2142 d_printf("del <filename>\n");
2143 return 1;
2145 mask = talloc_asprintf_append(mask, "%s", buf);
2146 if (!mask) {
2147 return 1;
2150 do_list(mask,attribute,do_del,false,false);
2151 return 0;
2154 /****************************************************************************
2155 Wildcard delete some files.
2156 ****************************************************************************/
2158 static int cmd_wdel(void)
2160 TALLOC_CTX *ctx = talloc_tos();
2161 char *mask = NULL;
2162 char *buf = NULL;
2163 uint16 attribute;
2164 struct cli_state *targetcli;
2165 char *targetname = NULL;
2167 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2168 d_printf("wdel 0x<attrib> <wcard>\n");
2169 return 1;
2172 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2174 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2175 d_printf("wdel 0x<attrib> <wcard>\n");
2176 return 1;
2179 mask = talloc_asprintf(ctx, "%s%s",
2180 client_get_cur_dir(),
2181 buf);
2182 if (!mask) {
2183 return 1;
2186 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2187 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2188 return 1;
2191 if (!cli_unlink_full(targetcli, targetname, attribute)) {
2192 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2194 return 0;
2197 /****************************************************************************
2198 ****************************************************************************/
2200 static int cmd_open(void)
2202 TALLOC_CTX *ctx = talloc_tos();
2203 char *mask = NULL;
2204 char *buf = NULL;
2205 char *targetname = NULL;
2206 struct cli_state *targetcli;
2207 int fnum;
2209 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2210 d_printf("open <filename>\n");
2211 return 1;
2213 mask = talloc_asprintf(ctx,
2214 "%s%s",
2215 client_get_cur_dir(),
2216 buf);
2217 if (!mask) {
2218 return 1;
2221 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2222 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2223 return 1;
2226 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA|FILE_WRITE_DATA);
2227 if (fnum == -1) {
2228 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA);
2229 if (fnum != -1) {
2230 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2231 } else {
2232 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2234 } else {
2235 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2237 return 0;
2240 static int cmd_posix_encrypt(void)
2242 TALLOC_CTX *ctx = talloc_tos();
2243 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2245 if (cli->use_kerberos) {
2246 status = cli_gss_smb_encryption_start(cli);
2247 } else {
2248 char *domain = NULL;
2249 char *user = NULL;
2250 char *password = NULL;
2252 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2253 d_printf("posix_encrypt domain user password\n");
2254 return 1;
2257 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2258 d_printf("posix_encrypt domain user password\n");
2259 return 1;
2262 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2263 d_printf("posix_encrypt domain user password\n");
2264 return 1;
2267 status = cli_raw_ntlm_smb_encryption_start(cli,
2268 user,
2269 password,
2270 domain);
2273 if (!NT_STATUS_IS_OK(status)) {
2274 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2275 } else {
2276 d_printf("encryption on\n");
2277 smb_encrypt = true;
2280 return 0;
2283 /****************************************************************************
2284 ****************************************************************************/
2286 static int cmd_posix_open(void)
2288 TALLOC_CTX *ctx = talloc_tos();
2289 char *mask = NULL;
2290 char *buf = NULL;
2291 char *targetname = NULL;
2292 struct cli_state *targetcli;
2293 mode_t mode;
2294 int fnum;
2296 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2297 d_printf("posix_open <filename> 0<mode>\n");
2298 return 1;
2300 mask = talloc_asprintf(ctx,
2301 "%s%s",
2302 client_get_cur_dir(),
2303 buf);
2304 if (!mask) {
2305 return 1;
2308 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2309 d_printf("posix_open <filename> 0<mode>\n");
2310 return 1;
2312 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2314 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2315 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2316 return 1;
2319 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode);
2320 if (fnum == -1) {
2321 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode);
2322 if (fnum != -1) {
2323 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2324 } else {
2325 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2327 } else {
2328 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2331 return 0;
2334 static int cmd_posix_mkdir(void)
2336 TALLOC_CTX *ctx = talloc_tos();
2337 char *mask = NULL;
2338 char *buf = NULL;
2339 char *targetname = NULL;
2340 struct cli_state *targetcli;
2341 mode_t mode;
2342 int fnum;
2344 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2345 d_printf("posix_mkdir <filename> 0<mode>\n");
2346 return 1;
2348 mask = talloc_asprintf(ctx,
2349 "%s%s",
2350 client_get_cur_dir(),
2351 buf);
2352 if (!mask) {
2353 return 1;
2356 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2357 d_printf("posix_mkdir <filename> 0<mode>\n");
2358 return 1;
2360 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2362 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2363 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2364 return 1;
2367 fnum = cli_posix_mkdir(targetcli, targetname, mode);
2368 if (fnum == -1) {
2369 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2370 } else {
2371 d_printf("posix_mkdir created directory %s\n", targetname);
2373 return 0;
2376 static int cmd_posix_unlink(void)
2378 TALLOC_CTX *ctx = talloc_tos();
2379 char *mask = NULL;
2380 char *buf = NULL;
2381 char *targetname = NULL;
2382 struct cli_state *targetcli;
2384 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2385 d_printf("posix_unlink <filename>\n");
2386 return 1;
2388 mask = talloc_asprintf(ctx,
2389 "%s%s",
2390 client_get_cur_dir(),
2391 buf);
2392 if (!mask) {
2393 return 1;
2396 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2397 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2398 return 1;
2401 if (!cli_posix_unlink(targetcli, targetname)) {
2402 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2403 } else {
2404 d_printf("posix_unlink deleted file %s\n", targetname);
2407 return 0;
2410 static int cmd_posix_rmdir(void)
2412 TALLOC_CTX *ctx = talloc_tos();
2413 char *mask = NULL;
2414 char *buf = NULL;
2415 char *targetname = NULL;
2416 struct cli_state *targetcli;
2418 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2419 d_printf("posix_rmdir <filename>\n");
2420 return 1;
2422 mask = talloc_asprintf(ctx,
2423 "%s%s",
2424 client_get_cur_dir(),
2425 buf);
2426 if (!mask) {
2427 return 1;
2430 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2431 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2432 return 1;
2435 if (!cli_posix_rmdir(targetcli, targetname)) {
2436 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2437 } else {
2438 d_printf("posix_rmdir deleted directory %s\n", targetname);
2441 return 0;
2444 static int cmd_close(void)
2446 TALLOC_CTX *ctx = talloc_tos();
2447 char *buf = NULL;
2448 int fnum;
2450 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2451 d_printf("close <fnum>\n");
2452 return 1;
2455 fnum = atoi(buf);
2456 /* We really should use the targetcli here.... */
2457 if (!cli_close(cli, fnum)) {
2458 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2459 return 1;
2461 return 0;
2464 static int cmd_posix(void)
2466 TALLOC_CTX *ctx = talloc_tos();
2467 uint16 major, minor;
2468 uint32 caplow, caphigh;
2469 char *caps;
2471 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2472 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2473 return 1;
2476 if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2477 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2478 return 1;
2481 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2483 caps = talloc_strdup(ctx, "");
2484 if (!caps) {
2485 return 1;
2487 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2488 caps = talloc_asprintf_append(caps, "locks ");
2489 if (!caps) {
2490 return 1;
2493 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2494 caps = talloc_asprintf_append(caps, "acls ");
2495 if (!caps) {
2496 return 1;
2499 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2500 caps = talloc_asprintf_append(caps, "eas ");
2501 if (!caps) {
2502 return 1;
2505 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2506 caps = talloc_asprintf_append(caps, "pathnames ");
2507 if (!caps) {
2508 return 1;
2511 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2512 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2513 if (!caps) {
2514 return 1;
2517 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2518 caps = talloc_asprintf_append(caps, "large_read ");
2519 if (!caps) {
2520 return 1;
2523 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2524 caps = talloc_asprintf_append(caps, "large_write ");
2525 if (!caps) {
2526 return 1;
2529 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2530 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2531 if (!caps) {
2532 return 1;
2535 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2536 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2537 if (!caps) {
2538 return 1;
2542 if (*caps && caps[strlen(caps)-1] == ' ') {
2543 caps[strlen(caps)-1] = '\0';
2546 d_printf("Server supports CIFS capabilities %s\n", caps);
2548 if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2549 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2550 return 1;
2553 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2554 CLI_DIRSEP_CHAR = '/';
2555 *CLI_DIRSEP_STR = '/';
2556 client_set_cur_dir(CLI_DIRSEP_STR);
2559 return 0;
2562 static int cmd_lock(void)
2564 TALLOC_CTX *ctx = talloc_tos();
2565 char *buf = NULL;
2566 uint64_t start, len;
2567 enum brl_type lock_type;
2568 int fnum;
2570 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2571 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2572 return 1;
2574 fnum = atoi(buf);
2576 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2577 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2578 return 1;
2581 if (*buf == 'r' || *buf == 'R') {
2582 lock_type = READ_LOCK;
2583 } else if (*buf == 'w' || *buf == 'W') {
2584 lock_type = WRITE_LOCK;
2585 } else {
2586 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2587 return 1;
2590 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2591 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2592 return 1;
2595 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2597 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2598 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2599 return 1;
2602 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2604 if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
2605 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2608 return 0;
2611 static int cmd_unlock(void)
2613 TALLOC_CTX *ctx = talloc_tos();
2614 char *buf = NULL;
2615 uint64_t start, len;
2616 int fnum;
2618 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2619 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2620 return 1;
2622 fnum = atoi(buf);
2624 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2625 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2626 return 1;
2629 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2631 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2632 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2633 return 1;
2636 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2638 if (!cli_posix_unlock(cli, fnum, start, len)) {
2639 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2642 return 0;
2646 /****************************************************************************
2647 Remove a directory.
2648 ****************************************************************************/
2650 static int cmd_rmdir(void)
2652 TALLOC_CTX *ctx = talloc_tos();
2653 char *mask = NULL;
2654 char *buf = NULL;
2655 char *targetname = NULL;
2656 struct cli_state *targetcli;
2658 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2659 d_printf("rmdir <dirname>\n");
2660 return 1;
2662 mask = talloc_asprintf(ctx,
2663 "%s%s",
2664 client_get_cur_dir(),
2665 buf);
2666 if (!mask) {
2667 return 1;
2670 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2671 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2672 return 1;
2675 if (!cli_rmdir(targetcli, targetname)) {
2676 d_printf("%s removing remote directory file %s\n",
2677 cli_errstr(targetcli),mask);
2680 return 0;
2683 /****************************************************************************
2684 UNIX hardlink.
2685 ****************************************************************************/
2687 static int cmd_link(void)
2689 TALLOC_CTX *ctx = talloc_tos();
2690 char *oldname = NULL;
2691 char *newname = NULL;
2692 char *buf = NULL;
2693 char *buf2 = NULL;
2694 char *targetname = NULL;
2695 struct cli_state *targetcli;
2697 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2698 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2699 d_printf("link <oldname> <newname>\n");
2700 return 1;
2702 oldname = talloc_asprintf(ctx,
2703 "%s%s",
2704 client_get_cur_dir(),
2705 buf);
2706 if (!oldname) {
2707 return 1;
2709 newname = talloc_asprintf(ctx,
2710 "%s%s",
2711 client_get_cur_dir(),
2712 buf2);
2713 if (!newname) {
2714 return 1;
2717 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2718 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2719 return 1;
2722 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2723 d_printf("Server doesn't support UNIX CIFS calls.\n");
2724 return 1;
2727 if (!cli_unix_hardlink(targetcli, targetname, newname)) {
2728 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2729 return 1;
2731 return 0;
2734 /****************************************************************************
2735 UNIX symlink.
2736 ****************************************************************************/
2738 static int cmd_symlink(void)
2740 TALLOC_CTX *ctx = talloc_tos();
2741 char *oldname = NULL;
2742 char *newname = NULL;
2743 char *buf = NULL;
2744 char *buf2 = NULL;
2745 char *targetname = NULL;
2746 struct cli_state *targetcli;
2748 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2749 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2750 d_printf("symlink <oldname> <newname>\n");
2751 return 1;
2753 oldname = talloc_asprintf(ctx,
2754 "%s%s",
2755 client_get_cur_dir(),
2756 buf);
2757 if (!oldname) {
2758 return 1;
2760 newname = talloc_asprintf(ctx,
2761 "%s%s",
2762 client_get_cur_dir(),
2763 buf2);
2764 if (!newname) {
2765 return 1;
2768 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2769 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2770 return 1;
2773 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2774 d_printf("Server doesn't support UNIX CIFS calls.\n");
2775 return 1;
2778 if (!cli_unix_symlink(targetcli, targetname, newname)) {
2779 d_printf("%s symlinking files (%s -> %s)\n",
2780 cli_errstr(targetcli), newname, targetname);
2781 return 1;
2784 return 0;
2787 /****************************************************************************
2788 UNIX chmod.
2789 ****************************************************************************/
2791 static int cmd_chmod(void)
2793 TALLOC_CTX *ctx = talloc_tos();
2794 char *src = NULL;
2795 char *buf = NULL;
2796 char *buf2 = NULL;
2797 char *targetname = NULL;
2798 struct cli_state *targetcli;
2799 mode_t mode;
2801 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2802 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2803 d_printf("chmod mode file\n");
2804 return 1;
2806 src = talloc_asprintf(ctx,
2807 "%s%s",
2808 client_get_cur_dir(),
2809 buf2);
2810 if (!src) {
2811 return 1;
2814 mode = (mode_t)strtol(buf, NULL, 8);
2816 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2817 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2818 return 1;
2821 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2822 d_printf("Server doesn't support UNIX CIFS calls.\n");
2823 return 1;
2826 if (!cli_unix_chmod(targetcli, targetname, mode)) {
2827 d_printf("%s chmod file %s 0%o\n",
2828 cli_errstr(targetcli), src, (unsigned int)mode);
2829 return 1;
2832 return 0;
2835 static const char *filetype_to_str(mode_t mode)
2837 if (S_ISREG(mode)) {
2838 return "regular file";
2839 } else if (S_ISDIR(mode)) {
2840 return "directory";
2841 } else
2842 #ifdef S_ISCHR
2843 if (S_ISCHR(mode)) {
2844 return "character device";
2845 } else
2846 #endif
2847 #ifdef S_ISBLK
2848 if (S_ISBLK(mode)) {
2849 return "block device";
2850 } else
2851 #endif
2852 #ifdef S_ISFIFO
2853 if (S_ISFIFO(mode)) {
2854 return "fifo";
2855 } else
2856 #endif
2857 #ifdef S_ISLNK
2858 if (S_ISLNK(mode)) {
2859 return "symbolic link";
2860 } else
2861 #endif
2862 #ifdef S_ISSOCK
2863 if (S_ISSOCK(mode)) {
2864 return "socket";
2865 } else
2866 #endif
2867 return "";
2870 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2872 if (m & bt) {
2873 return ret;
2874 } else {
2875 return '-';
2879 static char *unix_mode_to_str(char *s, mode_t m)
2881 char *p = s;
2882 const char *str = filetype_to_str(m);
2884 switch(str[0]) {
2885 case 'd':
2886 *p++ = 'd';
2887 break;
2888 case 'c':
2889 *p++ = 'c';
2890 break;
2891 case 'b':
2892 *p++ = 'b';
2893 break;
2894 case 'f':
2895 *p++ = 'p';
2896 break;
2897 case 's':
2898 *p++ = str[1] == 'y' ? 'l' : 's';
2899 break;
2900 case 'r':
2901 default:
2902 *p++ = '-';
2903 break;
2905 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2906 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2907 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2908 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2909 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2910 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2911 *p++ = rwx_to_str(m, S_IROTH, 'r');
2912 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2913 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2914 *p++ = '\0';
2915 return s;
2918 /****************************************************************************
2919 Utility function for UNIX getfacl.
2920 ****************************************************************************/
2922 static char *perms_to_string(fstring permstr, unsigned char perms)
2924 fstrcpy(permstr, "---");
2925 if (perms & SMB_POSIX_ACL_READ) {
2926 permstr[0] = 'r';
2928 if (perms & SMB_POSIX_ACL_WRITE) {
2929 permstr[1] = 'w';
2931 if (perms & SMB_POSIX_ACL_EXECUTE) {
2932 permstr[2] = 'x';
2934 return permstr;
2937 /****************************************************************************
2938 UNIX getfacl.
2939 ****************************************************************************/
2941 static int cmd_getfacl(void)
2943 TALLOC_CTX *ctx = talloc_tos();
2944 char *src = NULL;
2945 char *name = NULL;
2946 char *targetname = NULL;
2947 struct cli_state *targetcli;
2948 uint16 major, minor;
2949 uint32 caplow, caphigh;
2950 char *retbuf = NULL;
2951 size_t rb_size = 0;
2952 SMB_STRUCT_STAT sbuf;
2953 uint16 num_file_acls = 0;
2954 uint16 num_dir_acls = 0;
2955 uint16 i;
2957 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2958 d_printf("getfacl filename\n");
2959 return 1;
2961 src = talloc_asprintf(ctx,
2962 "%s%s",
2963 client_get_cur_dir(),
2964 name);
2965 if (!src) {
2966 return 1;
2969 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2970 d_printf("stat %s: %s\n", src, cli_errstr(cli));
2971 return 1;
2974 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2975 d_printf("Server doesn't support UNIX CIFS calls.\n");
2976 return 1;
2979 if (!cli_unix_extensions_version(targetcli, &major, &minor,
2980 &caplow, &caphigh)) {
2981 d_printf("Can't get UNIX CIFS version from server.\n");
2982 return 1;
2985 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
2986 d_printf("This server supports UNIX extensions "
2987 "but doesn't support POSIX ACLs.\n");
2988 return 1;
2991 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
2992 d_printf("%s getfacl doing a stat on file %s\n",
2993 cli_errstr(targetcli), src);
2994 return 1;
2997 if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
2998 d_printf("%s getfacl file %s\n",
2999 cli_errstr(targetcli), src);
3000 return 1;
3003 /* ToDo : Print out the ACL values. */
3004 if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
3005 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3006 src, (unsigned int)CVAL(retbuf,0) );
3007 SAFE_FREE(retbuf);
3008 return 1;
3011 num_file_acls = SVAL(retbuf,2);
3012 num_dir_acls = SVAL(retbuf,4);
3013 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3014 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3015 src,
3016 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3017 (unsigned int)rb_size);
3019 SAFE_FREE(retbuf);
3020 return 1;
3023 d_printf("# file: %s\n", src);
3024 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
3026 if (num_file_acls == 0 && num_dir_acls == 0) {
3027 d_printf("No acls found.\n");
3030 for (i = 0; i < num_file_acls; i++) {
3031 uint32 uorg;
3032 fstring permstring;
3033 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3034 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3036 switch(tagtype) {
3037 case SMB_POSIX_ACL_USER_OBJ:
3038 d_printf("user::");
3039 break;
3040 case SMB_POSIX_ACL_USER:
3041 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3042 d_printf("user:%u:", uorg);
3043 break;
3044 case SMB_POSIX_ACL_GROUP_OBJ:
3045 d_printf("group::");
3046 break;
3047 case SMB_POSIX_ACL_GROUP:
3048 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3049 d_printf("group:%u:", uorg);
3050 break;
3051 case SMB_POSIX_ACL_MASK:
3052 d_printf("mask::");
3053 break;
3054 case SMB_POSIX_ACL_OTHER:
3055 d_printf("other::");
3056 break;
3057 default:
3058 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3059 src, (unsigned int)tagtype );
3060 SAFE_FREE(retbuf);
3061 return 1;
3064 d_printf("%s\n", perms_to_string(permstring, perms));
3067 for (i = 0; i < num_dir_acls; i++) {
3068 uint32 uorg;
3069 fstring permstring;
3070 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3071 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3073 switch(tagtype) {
3074 case SMB_POSIX_ACL_USER_OBJ:
3075 d_printf("default:user::");
3076 break;
3077 case SMB_POSIX_ACL_USER:
3078 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3079 d_printf("default:user:%u:", uorg);
3080 break;
3081 case SMB_POSIX_ACL_GROUP_OBJ:
3082 d_printf("default:group::");
3083 break;
3084 case SMB_POSIX_ACL_GROUP:
3085 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3086 d_printf("default:group:%u:", uorg);
3087 break;
3088 case SMB_POSIX_ACL_MASK:
3089 d_printf("default:mask::");
3090 break;
3091 case SMB_POSIX_ACL_OTHER:
3092 d_printf("default:other::");
3093 break;
3094 default:
3095 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3096 src, (unsigned int)tagtype );
3097 SAFE_FREE(retbuf);
3098 return 1;
3101 d_printf("%s\n", perms_to_string(permstring, perms));
3104 SAFE_FREE(retbuf);
3105 return 0;
3108 /****************************************************************************
3109 UNIX stat.
3110 ****************************************************************************/
3112 static int cmd_stat(void)
3114 TALLOC_CTX *ctx = talloc_tos();
3115 char *src = NULL;
3116 char *name = NULL;
3117 char *targetname = NULL;
3118 struct cli_state *targetcli;
3119 fstring mode_str;
3120 SMB_STRUCT_STAT sbuf;
3121 struct tm *lt;
3123 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3124 d_printf("stat file\n");
3125 return 1;
3127 src = talloc_asprintf(ctx,
3128 "%s%s",
3129 client_get_cur_dir(),
3130 name);
3131 if (!src) {
3132 return 1;
3135 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3136 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3137 return 1;
3140 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3141 d_printf("Server doesn't support UNIX CIFS calls.\n");
3142 return 1;
3145 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3146 d_printf("%s stat file %s\n",
3147 cli_errstr(targetcli), src);
3148 return 1;
3151 /* Print out the stat values. */
3152 d_printf("File: %s\n", src);
3153 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3154 (double)sbuf.st_size,
3155 (unsigned int)sbuf.st_blocks,
3156 filetype_to_str(sbuf.st_mode));
3158 #if defined(S_ISCHR) && defined(S_ISBLK)
3159 if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
3160 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3161 (double)sbuf.st_ino,
3162 (unsigned int)sbuf.st_nlink,
3163 unix_dev_major(sbuf.st_rdev),
3164 unix_dev_minor(sbuf.st_rdev));
3165 } else
3166 #endif
3167 d_printf("Inode: %.0f\tLinks: %u\n",
3168 (double)sbuf.st_ino,
3169 (unsigned int)sbuf.st_nlink);
3171 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3172 ((int)sbuf.st_mode & 0777),
3173 unix_mode_to_str(mode_str, sbuf.st_mode),
3174 (unsigned int)sbuf.st_uid,
3175 (unsigned int)sbuf.st_gid);
3177 lt = localtime(&sbuf.st_atime);
3178 if (lt) {
3179 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3180 } else {
3181 fstrcpy(mode_str, "unknown");
3183 d_printf("Access: %s\n", mode_str);
3185 lt = localtime(&sbuf.st_mtime);
3186 if (lt) {
3187 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3188 } else {
3189 fstrcpy(mode_str, "unknown");
3191 d_printf("Modify: %s\n", mode_str);
3193 lt = localtime(&sbuf.st_ctime);
3194 if (lt) {
3195 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3196 } else {
3197 fstrcpy(mode_str, "unknown");
3199 d_printf("Change: %s\n", mode_str);
3201 return 0;
3205 /****************************************************************************
3206 UNIX chown.
3207 ****************************************************************************/
3209 static int cmd_chown(void)
3211 TALLOC_CTX *ctx = talloc_tos();
3212 char *src = NULL;
3213 uid_t uid;
3214 gid_t gid;
3215 char *buf, *buf2, *buf3;
3216 struct cli_state *targetcli;
3217 char *targetname = NULL;
3219 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3220 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3221 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3222 d_printf("chown uid gid file\n");
3223 return 1;
3226 uid = (uid_t)atoi(buf);
3227 gid = (gid_t)atoi(buf2);
3229 src = talloc_asprintf(ctx,
3230 "%s%s",
3231 client_get_cur_dir(),
3232 buf3);
3233 if (!src) {
3234 return 1;
3236 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname) ) {
3237 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3238 return 1;
3241 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3242 d_printf("Server doesn't support UNIX CIFS calls.\n");
3243 return 1;
3246 if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
3247 d_printf("%s chown file %s uid=%d, gid=%d\n",
3248 cli_errstr(targetcli), src, (int)uid, (int)gid);
3249 return 1;
3252 return 0;
3255 /****************************************************************************
3256 Rename some file.
3257 ****************************************************************************/
3259 static int cmd_rename(void)
3261 TALLOC_CTX *ctx = talloc_tos();
3262 char *src, *dest;
3263 char *buf, *buf2;
3264 struct cli_state *targetcli;
3265 char *targetsrc;
3266 char *targetdest;
3268 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3269 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3270 d_printf("rename <src> <dest>\n");
3271 return 1;
3274 src = talloc_asprintf(ctx,
3275 "%s%s",
3276 client_get_cur_dir(),
3277 buf);
3278 if (!src) {
3279 return 1;
3282 dest = talloc_asprintf(ctx,
3283 "%s%s",
3284 client_get_cur_dir(),
3285 buf2);
3286 if (!dest) {
3287 return 1;
3290 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetsrc)) {
3291 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3292 return 1;
3295 if (!cli_resolve_path(ctx, "", cli, dest, &targetcli, &targetdest)) {
3296 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3297 return 1;
3300 if (!cli_rename(targetcli, targetsrc, targetdest)) {
3301 d_printf("%s renaming files %s -> %s \n",
3302 cli_errstr(targetcli),
3303 targetsrc,
3304 targetdest);
3305 return 1;
3308 return 0;
3311 /****************************************************************************
3312 Print the volume name.
3313 ****************************************************************************/
3315 static int cmd_volume(void)
3317 fstring volname;
3318 uint32 serial_num;
3319 time_t create_date;
3321 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3322 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3323 return 1;
3326 d_printf("Volume: |%s| serial number 0x%x\n",
3327 volname, (unsigned int)serial_num);
3328 return 0;
3331 /****************************************************************************
3332 Hard link files using the NT call.
3333 ****************************************************************************/
3335 static int cmd_hardlink(void)
3337 TALLOC_CTX *ctx = talloc_tos();
3338 char *src, *dest;
3339 char *buf, *buf2;
3340 struct cli_state *targetcli;
3341 char *targetname;
3343 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3344 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3345 d_printf("hardlink <src> <dest>\n");
3346 return 1;
3349 src = talloc_asprintf(ctx,
3350 "%s%s",
3351 client_get_cur_dir(),
3352 buf);
3353 if (!src) {
3354 return 1;
3357 dest = talloc_asprintf(ctx,
3358 "%s%s",
3359 client_get_cur_dir(),
3360 buf2);
3361 if (!dest) {
3362 return 1;
3365 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3366 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3367 return 1;
3370 if (!cli_nt_hardlink(targetcli, targetname, dest)) {
3371 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3372 return 1;
3375 return 0;
3378 /****************************************************************************
3379 Toggle the prompt flag.
3380 ****************************************************************************/
3382 static int cmd_prompt(void)
3384 prompt = !prompt;
3385 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3386 return 1;
3389 /****************************************************************************
3390 Set the newer than time.
3391 ****************************************************************************/
3393 static int cmd_newer(void)
3395 TALLOC_CTX *ctx = talloc_tos();
3396 char *buf;
3397 bool ok;
3398 SMB_STRUCT_STAT sbuf;
3400 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3401 if (ok && (sys_stat(buf,&sbuf) == 0)) {
3402 newer_than = sbuf.st_mtime;
3403 DEBUG(1,("Getting files newer than %s",
3404 time_to_asc(newer_than)));
3405 } else {
3406 newer_than = 0;
3409 if (ok && newer_than == 0) {
3410 d_printf("Error setting newer-than time\n");
3411 return 1;
3414 return 0;
3417 /****************************************************************************
3418 Set the archive level.
3419 ****************************************************************************/
3421 static int cmd_archive(void)
3423 TALLOC_CTX *ctx = talloc_tos();
3424 char *buf;
3426 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3427 archive_level = atoi(buf);
3428 } else {
3429 d_printf("Archive level is %d\n",archive_level);
3432 return 0;
3435 /****************************************************************************
3436 Toggle the lowercaseflag.
3437 ****************************************************************************/
3439 static int cmd_lowercase(void)
3441 lowercase = !lowercase;
3442 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3443 return 0;
3446 /****************************************************************************
3447 Toggle the case sensitive flag.
3448 ****************************************************************************/
3450 static int cmd_setcase(void)
3452 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3454 cli_set_case_sensitive(cli, !orig_case_sensitive);
3455 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3456 "on":"off"));
3457 return 0;
3460 /****************************************************************************
3461 Toggle the showacls flag.
3462 ****************************************************************************/
3464 static int cmd_showacls(void)
3466 showacls = !showacls;
3467 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3468 return 0;
3472 /****************************************************************************
3473 Toggle the recurse flag.
3474 ****************************************************************************/
3476 static int cmd_recurse(void)
3478 recurse = !recurse;
3479 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3480 return 0;
3483 /****************************************************************************
3484 Toggle the translate flag.
3485 ****************************************************************************/
3487 static int cmd_translate(void)
3489 translation = !translation;
3490 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3491 translation?"on":"off"));
3492 return 0;
3495 /****************************************************************************
3496 Do the lcd command.
3497 ****************************************************************************/
3499 static int cmd_lcd(void)
3501 TALLOC_CTX *ctx = talloc_tos();
3502 char *buf;
3503 char *d;
3505 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3506 if (chdir(buf) == -1) {
3507 d_printf("chdir to %s failed (%s)\n",
3508 buf, strerror(errno));
3511 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3512 if (!d) {
3513 return 1;
3515 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3516 return 0;
3519 /****************************************************************************
3520 Get a file restarting at end of local file.
3521 ****************************************************************************/
3523 static int cmd_reget(void)
3525 TALLOC_CTX *ctx = talloc_tos();
3526 char *local_name = NULL;
3527 char *remote_name = NULL;
3528 char *fname = NULL;
3529 char *p = NULL;
3531 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3532 if (!remote_name) {
3533 return 1;
3536 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3537 d_printf("reget <filename>\n");
3538 return 1;
3540 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3541 if (!remote_name) {
3542 return 1;
3544 remote_name = clean_name(ctx,remote_name);
3545 if (!remote_name) {
3546 return 1;
3549 local_name = fname;
3550 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3551 if (p) {
3552 local_name = p;
3555 return do_get(remote_name, local_name, true);
3558 /****************************************************************************
3559 Put a file restarting at end of local file.
3560 ****************************************************************************/
3562 static int cmd_reput(void)
3564 TALLOC_CTX *ctx = talloc_tos();
3565 char *local_name = NULL;
3566 char *remote_name = NULL;
3567 char *buf;
3568 SMB_STRUCT_STAT st;
3570 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3571 if (!remote_name) {
3572 return 1;
3575 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3576 d_printf("reput <filename>\n");
3577 return 1;
3580 if (!file_exist_stat(local_name, &st)) {
3581 d_printf("%s does not exist\n", local_name);
3582 return 1;
3585 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3586 remote_name = talloc_asprintf_append(remote_name,
3587 "%s", buf);
3588 } else {
3589 remote_name = talloc_asprintf_append(remote_name,
3590 "%s", local_name);
3592 if (!remote_name) {
3593 return 1;
3596 remote_name = clean_name(ctx, remote_name);
3597 if (!remote_name) {
3598 return 1;
3601 return do_put(remote_name, local_name, true);
3604 /****************************************************************************
3605 List a share name.
3606 ****************************************************************************/
3608 static void browse_fn(const char *name, uint32 m,
3609 const char *comment, void *state)
3611 const char *typestr = "";
3613 switch (m & 7) {
3614 case STYPE_DISKTREE:
3615 typestr = "Disk";
3616 break;
3617 case STYPE_PRINTQ:
3618 typestr = "Printer";
3619 break;
3620 case STYPE_DEVICE:
3621 typestr = "Device";
3622 break;
3623 case STYPE_IPC:
3624 typestr = "IPC";
3625 break;
3627 /* FIXME: If the remote machine returns non-ascii characters
3628 in any of these fields, they can corrupt the output. We
3629 should remove them. */
3630 if (!grepable) {
3631 d_printf("\t%-15s %-10.10s%s\n",
3632 name,typestr,comment);
3633 } else {
3634 d_printf ("%s|%s|%s\n",typestr,name,comment);
3638 static bool browse_host_rpc(bool sort)
3640 NTSTATUS status;
3641 struct rpc_pipe_client *pipe_hnd;
3642 TALLOC_CTX *frame = talloc_stackframe();
3643 WERROR werr;
3644 struct srvsvc_NetShareInfoCtr info_ctr;
3645 struct srvsvc_NetShareCtr1 ctr1;
3646 uint32_t resume_handle = 0;
3647 uint32_t total_entries = 0;
3648 int i;
3650 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3651 &pipe_hnd);
3653 if (!NT_STATUS_IS_OK(status)) {
3654 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3655 nt_errstr(status)));
3656 TALLOC_FREE(frame);
3657 return false;
3660 ZERO_STRUCT(info_ctr);
3661 ZERO_STRUCT(ctr1);
3663 info_ctr.level = 1;
3664 info_ctr.ctr.ctr1 = &ctr1;
3666 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3667 pipe_hnd->desthost,
3668 &info_ctr,
3669 0xffffffff,
3670 &total_entries,
3671 &resume_handle,
3672 &werr);
3674 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3675 TALLOC_FREE(pipe_hnd);
3676 TALLOC_FREE(frame);
3677 return false;
3680 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3681 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3682 browse_fn(info.name, info.type, info.comment, NULL);
3685 TALLOC_FREE(pipe_hnd);
3686 TALLOC_FREE(frame);
3687 return true;
3690 /****************************************************************************
3691 Try and browse available connections on a host.
3692 ****************************************************************************/
3694 static bool browse_host(bool sort)
3696 int ret;
3697 if (!grepable) {
3698 d_printf("\n\tSharename Type Comment\n");
3699 d_printf("\t--------- ---- -------\n");
3702 if (browse_host_rpc(sort)) {
3703 return true;
3706 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3707 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3709 return (ret != -1);
3712 /****************************************************************************
3713 List a server name.
3714 ****************************************************************************/
3716 static void server_fn(const char *name, uint32 m,
3717 const char *comment, void *state)
3720 if (!grepable){
3721 d_printf("\t%-16s %s\n", name, comment);
3722 } else {
3723 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3727 /****************************************************************************
3728 Try and browse available connections on a host.
3729 ****************************************************************************/
3731 static bool list_servers(const char *wk_grp)
3733 fstring state;
3735 if (!cli->server_domain)
3736 return false;
3738 if (!grepable) {
3739 d_printf("\n\tServer Comment\n");
3740 d_printf("\t--------- -------\n");
3742 fstrcpy( state, "Server" );
3743 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3744 state);
3746 if (!grepable) {
3747 d_printf("\n\tWorkgroup Master\n");
3748 d_printf("\t--------- -------\n");
3751 fstrcpy( state, "Workgroup" );
3752 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3753 server_fn, state);
3754 return true;
3757 /****************************************************************************
3758 Print or set current VUID
3759 ****************************************************************************/
3761 static int cmd_vuid(void)
3763 TALLOC_CTX *ctx = talloc_tos();
3764 char *buf;
3766 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3767 d_printf("Current VUID is %d\n", cli->vuid);
3768 return 0;
3771 cli->vuid = atoi(buf);
3772 return 0;
3775 /****************************************************************************
3776 Setup a new VUID, by issuing a session setup
3777 ****************************************************************************/
3779 static int cmd_logon(void)
3781 TALLOC_CTX *ctx = talloc_tos();
3782 char *l_username, *l_password;
3784 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3785 d_printf("logon <username> [<password>]\n");
3786 return 0;
3789 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3790 char *pass = getpass("Password: ");
3791 if (pass) {
3792 l_password = talloc_strdup(ctx,pass);
3795 if (!l_password) {
3796 return 1;
3799 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3800 l_password, strlen(l_password),
3801 l_password, strlen(l_password),
3802 lp_workgroup()))) {
3803 d_printf("session setup failed: %s\n", cli_errstr(cli));
3804 return -1;
3807 d_printf("Current VUID is %d\n", cli->vuid);
3808 return 0;
3812 /****************************************************************************
3813 list active connections
3814 ****************************************************************************/
3816 static int cmd_list_connect(void)
3818 cli_cm_display();
3819 return 0;
3822 /****************************************************************************
3823 display the current active client connection
3824 ****************************************************************************/
3826 static int cmd_show_connect( void )
3828 TALLOC_CTX *ctx = talloc_tos();
3829 struct cli_state *targetcli;
3830 char *targetpath;
3832 if (!cli_resolve_path(ctx, "", cli, client_get_cur_dir(),
3833 &targetcli, &targetpath ) ) {
3834 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3835 return 1;
3838 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3839 return 0;
3842 /****************************************************************************
3843 iosize command
3844 ***************************************************************************/
3846 int cmd_iosize(void)
3848 TALLOC_CTX *ctx = talloc_tos();
3849 char *buf;
3850 int iosize;
3852 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3853 if (!smb_encrypt) {
3854 d_printf("iosize <n> or iosize 0x<n>. "
3855 "Minimum is 16384 (0x4000), "
3856 "max is 16776960 (0xFFFF00)\n");
3857 } else {
3858 d_printf("iosize <n> or iosize 0x<n>. "
3859 "(Encrypted connection) ,"
3860 "Minimum is 16384 (0x4000), "
3861 "max is 130048 (0x1FC00)\n");
3863 return 1;
3866 iosize = strtol(buf,NULL,0);
3867 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3868 d_printf("iosize out of range for encrypted "
3869 "connection (min = 16384 (0x4000), "
3870 "max = 130048 (0x1FC00)");
3871 return 1;
3872 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3873 d_printf("iosize out of range (min = 16384 (0x4000), "
3874 "max = 16776960 (0xFFFF00)");
3875 return 1;
3878 io_bufsize = iosize;
3879 d_printf("iosize is now %d\n", io_bufsize);
3880 return 0;
3884 /* Some constants for completing filename arguments */
3886 #define COMPL_NONE 0 /* No completions */
3887 #define COMPL_REMOTE 1 /* Complete remote filename */
3888 #define COMPL_LOCAL 2 /* Complete local filename */
3890 /* This defines the commands supported by this client.
3891 * NOTE: The "!" must be the last one in the list because it's fn pointer
3892 * field is NULL, and NULL in that field is used in process_tok()
3893 * (below) to indicate the end of the list. crh
3895 static struct {
3896 const char *name;
3897 int (*fn)(void);
3898 const char *description;
3899 char compl_args[2]; /* Completion argument info */
3900 } commands[] = {
3901 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3902 {"allinfo",cmd_allinfo,"<file> show all available info",
3903 {COMPL_NONE,COMPL_NONE}},
3904 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3905 {"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}},
3906 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3907 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3908 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3909 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3910 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3911 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3912 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3913 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3914 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3915 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3916 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3917 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3918 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3919 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3920 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3921 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3922 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3923 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3924 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3925 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3926 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3927 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3928 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3929 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3930 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3931 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3932 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3933 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3934 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3935 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3936 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3937 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3938 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3939 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3940 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3941 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3942 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3943 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3944 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3945 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
3946 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3947 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3948 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3949 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3950 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3951 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3952 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
3953 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3954 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3955 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3956 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3957 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3958 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
3959 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
3960 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
3961 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3962 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
3963 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
3964 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
3965 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3966 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
3967 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
3968 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3969 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
3970 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
3971 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
3972 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
3974 /* Yes, this must be here, see crh's comment above. */
3975 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
3976 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
3979 /*******************************************************************
3980 Lookup a command string in the list of commands, including
3981 abbreviations.
3982 ******************************************************************/
3984 static int process_tok(char *tok)
3986 int i = 0, matches = 0;
3987 int cmd=0;
3988 int tok_len = strlen(tok);
3990 while (commands[i].fn != NULL) {
3991 if (strequal(commands[i].name,tok)) {
3992 matches = 1;
3993 cmd = i;
3994 break;
3995 } else if (strnequal(commands[i].name, tok, tok_len)) {
3996 matches++;
3997 cmd = i;
3999 i++;
4002 if (matches == 0)
4003 return(-1);
4004 else if (matches == 1)
4005 return(cmd);
4006 else
4007 return(-2);
4010 /****************************************************************************
4011 Help.
4012 ****************************************************************************/
4014 static int cmd_help(void)
4016 TALLOC_CTX *ctx = talloc_tos();
4017 int i=0,j;
4018 char *buf;
4020 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4021 if ((i = process_tok(buf)) >= 0)
4022 d_printf("HELP %s:\n\t%s\n\n",
4023 commands[i].name,commands[i].description);
4024 } else {
4025 while (commands[i].description) {
4026 for (j=0; commands[i].description && (j<5); j++) {
4027 d_printf("%-15s",commands[i].name);
4028 i++;
4030 d_printf("\n");
4033 return 0;
4036 /****************************************************************************
4037 Process a -c command string.
4038 ****************************************************************************/
4040 static int process_command_string(const char *cmd_in)
4042 TALLOC_CTX *ctx = talloc_tos();
4043 char *cmd = talloc_strdup(ctx, cmd_in);
4044 int rc = 0;
4046 if (!cmd) {
4047 return 1;
4049 /* establish the connection if not already */
4051 if (!cli) {
4052 cli = cli_cm_open(talloc_tos(), NULL,
4053 have_ip ? dest_ss_str : desthost,
4054 service, true, smb_encrypt,
4055 max_protocol);
4056 if (!cli) {
4057 return 1;
4061 while (cmd[0] != '\0') {
4062 char *line;
4063 char *p;
4064 char *tok;
4065 int i;
4067 if ((p = strchr_m(cmd, ';')) == 0) {
4068 line = cmd;
4069 cmd += strlen(cmd);
4070 } else {
4071 *p = '\0';
4072 line = cmd;
4073 cmd = p + 1;
4076 /* and get the first part of the command */
4077 cmd_ptr = line;
4078 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4079 continue;
4082 if ((i = process_tok(tok)) >= 0) {
4083 rc = commands[i].fn();
4084 } else if (i == -2) {
4085 d_printf("%s: command abbreviation ambiguous\n",tok);
4086 } else {
4087 d_printf("%s: command not found\n",tok);
4091 return rc;
4094 #define MAX_COMPLETIONS 100
4096 typedef struct {
4097 char *dirmask;
4098 char **matches;
4099 int count, samelen;
4100 const char *text;
4101 int len;
4102 } completion_remote_t;
4104 static void completion_remote_filter(const char *mnt,
4105 file_info *f,
4106 const char *mask,
4107 void *state)
4109 completion_remote_t *info = (completion_remote_t *)state;
4111 if ((info->count < MAX_COMPLETIONS - 1) &&
4112 (strncmp(info->text, f->name, info->len) == 0) &&
4113 (strcmp(f->name, ".") != 0) &&
4114 (strcmp(f->name, "..") != 0)) {
4115 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4116 info->matches[info->count] = SMB_STRDUP(f->name);
4117 else {
4118 TALLOC_CTX *ctx = talloc_stackframe();
4119 char *tmp;
4121 tmp = talloc_strdup(ctx,info->dirmask);
4122 if (!tmp) {
4123 TALLOC_FREE(ctx);
4124 return;
4126 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4127 if (!tmp) {
4128 TALLOC_FREE(ctx);
4129 return;
4131 if (f->mode & aDIR) {
4132 tmp = talloc_asprintf_append(tmp, "%s", CLI_DIRSEP_STR);
4134 if (!tmp) {
4135 TALLOC_FREE(ctx);
4136 return;
4138 info->matches[info->count] = SMB_STRDUP(tmp);
4139 TALLOC_FREE(ctx);
4141 if (info->matches[info->count] == NULL) {
4142 return;
4144 if (f->mode & aDIR) {
4145 smb_readline_ca_char(0);
4147 if (info->count == 1) {
4148 info->samelen = strlen(info->matches[info->count]);
4149 } else {
4150 while (strncmp(info->matches[info->count],
4151 info->matches[info->count-1],
4152 info->samelen) != 0) {
4153 info->samelen--;
4156 info->count++;
4160 static char **remote_completion(const char *text, int len)
4162 TALLOC_CTX *ctx = talloc_stackframe();
4163 char *dirmask = NULL;
4164 char *targetpath = NULL;
4165 struct cli_state *targetcli = NULL;
4166 int i;
4167 completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4169 /* can't have non-static intialisation on Sun CC, so do it
4170 at run time here */
4171 info.samelen = len;
4172 info.text = text;
4173 info.len = len;
4175 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4176 if (!info.matches) {
4177 TALLOC_FREE(ctx);
4178 return NULL;
4182 * We're leaving matches[0] free to fill it later with the text to
4183 * display: Either the one single match or the longest common subset
4184 * of the matches.
4186 info.matches[0] = NULL;
4187 info.count = 1;
4189 for (i = len-1; i >= 0; i--) {
4190 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4191 break;
4195 info.text = text+i+1;
4196 info.samelen = info.len = len-i-1;
4198 if (i > 0) {
4199 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4200 if (!info.dirmask) {
4201 goto cleanup;
4203 strncpy(info.dirmask, text, i+1);
4204 info.dirmask[i+1] = 0;
4205 dirmask = talloc_asprintf(ctx,
4206 "%s%*s*",
4207 client_get_cur_dir(),
4208 i-1,
4209 text);
4210 } else {
4211 info.dirmask = SMB_STRDUP("");
4212 if (!info.dirmask) {
4213 goto cleanup;
4215 dirmask = talloc_asprintf(ctx,
4216 "%s*",
4217 client_get_cur_dir());
4219 if (!dirmask) {
4220 goto cleanup;
4223 if (!cli_resolve_path(ctx, "", cli, dirmask, &targetcli, &targetpath)) {
4224 goto cleanup;
4226 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4227 completion_remote_filter, (void *)&info) < 0) {
4228 goto cleanup;
4231 if (info.count == 1) {
4233 * No matches at all, NULL indicates there is nothing
4235 SAFE_FREE(info.matches[0]);
4236 SAFE_FREE(info.matches);
4237 TALLOC_FREE(ctx);
4238 return NULL;
4241 if (info.count == 2) {
4243 * Exactly one match in matches[1], indicate this is the one
4244 * in matches[0].
4246 info.matches[0] = info.matches[1];
4247 info.matches[1] = NULL;
4248 info.count -= 1;
4249 TALLOC_FREE(ctx);
4250 return info.matches;
4254 * We got more than one possible match, set the result to the maximum
4255 * common subset
4258 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4259 info.matches[info.count] = NULL;
4260 return info.matches;
4262 cleanup:
4263 for (i = 0; i < info.count; i++) {
4264 SAFE_FREE(info.matches[i]);
4266 SAFE_FREE(info.matches);
4267 SAFE_FREE(info.dirmask);
4268 TALLOC_FREE(ctx);
4269 return NULL;
4272 static char **completion_fn(const char *text, int start, int end)
4274 smb_readline_ca_char(' ');
4276 if (start) {
4277 const char *buf, *sp;
4278 int i;
4279 char compl_type;
4281 buf = smb_readline_get_line_buffer();
4282 if (buf == NULL)
4283 return NULL;
4285 sp = strchr(buf, ' ');
4286 if (sp == NULL)
4287 return NULL;
4289 for (i = 0; commands[i].name; i++) {
4290 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4291 (commands[i].name[sp - buf] == 0)) {
4292 break;
4295 if (commands[i].name == NULL)
4296 return NULL;
4298 while (*sp == ' ')
4299 sp++;
4301 if (sp == (buf + start))
4302 compl_type = commands[i].compl_args[0];
4303 else
4304 compl_type = commands[i].compl_args[1];
4306 if (compl_type == COMPL_REMOTE)
4307 return remote_completion(text, end - start);
4308 else /* fall back to local filename completion */
4309 return NULL;
4310 } else {
4311 char **matches;
4312 int i, len, samelen = 0, count=1;
4314 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4315 if (!matches) {
4316 return NULL;
4318 matches[0] = NULL;
4320 len = strlen(text);
4321 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4322 if (strncmp(text, commands[i].name, len) == 0) {
4323 matches[count] = SMB_STRDUP(commands[i].name);
4324 if (!matches[count])
4325 goto cleanup;
4326 if (count == 1)
4327 samelen = strlen(matches[count]);
4328 else
4329 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4330 samelen--;
4331 count++;
4335 switch (count) {
4336 case 0: /* should never happen */
4337 case 1:
4338 goto cleanup;
4339 case 2:
4340 matches[0] = SMB_STRDUP(matches[1]);
4341 break;
4342 default:
4343 matches[0] = (char *)SMB_MALLOC(samelen+1);
4344 if (!matches[0])
4345 goto cleanup;
4346 strncpy(matches[0], matches[1], samelen);
4347 matches[0][samelen] = 0;
4349 matches[count] = NULL;
4350 return matches;
4352 cleanup:
4353 for (i = 0; i < count; i++)
4354 free(matches[i]);
4356 free(matches);
4357 return NULL;
4361 static bool finished;
4363 /****************************************************************************
4364 Make sure we swallow keepalives during idle time.
4365 ****************************************************************************/
4367 static void readline_callback(void)
4369 fd_set fds;
4370 struct timeval timeout;
4371 static time_t last_t;
4372 time_t t;
4374 t = time(NULL);
4376 if (t - last_t < 5)
4377 return;
4379 last_t = t;
4381 again:
4383 if (cli->fd == -1)
4384 return;
4386 FD_ZERO(&fds);
4387 FD_SET(cli->fd,&fds);
4389 timeout.tv_sec = 0;
4390 timeout.tv_usec = 0;
4391 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4393 /* We deliberately use receive_smb_raw instead of
4394 client_receive_smb as we want to receive
4395 session keepalives and then drop them here.
4397 if (FD_ISSET(cli->fd,&fds)) {
4398 NTSTATUS status;
4399 size_t len;
4401 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4403 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4405 if (!NT_STATUS_IS_OK(status)) {
4406 DEBUG(0, ("Read from server failed, maybe it closed "
4407 "the connection\n"));
4409 finished = true;
4410 smb_readline_done();
4411 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4412 set_smb_read_error(&cli->smb_rw_error,
4413 SMB_READ_EOF);
4414 return;
4417 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4418 set_smb_read_error(&cli->smb_rw_error,
4419 SMB_READ_TIMEOUT);
4420 return;
4423 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4424 return;
4426 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4427 DEBUG(0, ("Read from server "
4428 "returned unexpected packet!\n"));
4429 return;
4432 goto again;
4435 /* Ping the server to keep the connection alive using SMBecho. */
4437 NTSTATUS status;
4438 unsigned char garbage[16];
4439 memset(garbage, 0xf0, sizeof(garbage));
4440 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4442 if (!NT_STATUS_IS_OK(status)) {
4443 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4444 "the connection\n"));
4445 finished = true;
4446 smb_readline_done();
4451 /****************************************************************************
4452 Process commands on stdin.
4453 ****************************************************************************/
4455 static int process_stdin(void)
4457 int rc = 0;
4459 while (!finished) {
4460 TALLOC_CTX *frame = talloc_stackframe();
4461 char *tok = NULL;
4462 char *the_prompt = NULL;
4463 char *line = NULL;
4464 int i;
4466 /* display a prompt */
4467 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4468 TALLOC_FREE(frame);
4469 break;
4471 line = smb_readline(the_prompt, readline_callback, completion_fn);
4472 SAFE_FREE(the_prompt);
4473 if (!line) {
4474 TALLOC_FREE(frame);
4475 break;
4478 /* special case - first char is ! */
4479 if (*line == '!') {
4480 if (system(line + 1) == -1) {
4481 d_printf("system() command %s failed.\n",
4482 line+1);
4484 SAFE_FREE(line);
4485 TALLOC_FREE(frame);
4486 continue;
4489 /* and get the first part of the command */
4490 cmd_ptr = line;
4491 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4492 TALLOC_FREE(frame);
4493 SAFE_FREE(line);
4494 continue;
4497 if ((i = process_tok(tok)) >= 0) {
4498 rc = commands[i].fn();
4499 } else if (i == -2) {
4500 d_printf("%s: command abbreviation ambiguous\n",tok);
4501 } else {
4502 d_printf("%s: command not found\n",tok);
4504 SAFE_FREE(line);
4505 TALLOC_FREE(frame);
4507 return rc;
4510 /****************************************************************************
4511 Process commands from the client.
4512 ****************************************************************************/
4514 static int process(const char *base_directory)
4516 int rc = 0;
4518 cli = cli_cm_open(talloc_tos(), NULL,
4519 have_ip ? dest_ss_str : desthost,
4520 service, true, smb_encrypt,
4521 max_protocol);
4522 if (!cli) {
4523 return 1;
4526 if (base_directory && *base_directory) {
4527 rc = do_cd(base_directory);
4528 if (rc) {
4529 cli_cm_shutdown();
4530 return rc;
4534 if (cmdstr) {
4535 rc = process_command_string(cmdstr);
4536 } else {
4537 process_stdin();
4540 cli_cm_shutdown();
4541 return rc;
4544 /****************************************************************************
4545 Handle a -L query.
4546 ****************************************************************************/
4548 static int do_host_query(const char *query_host)
4550 struct sockaddr_storage ss;
4552 cli = cli_cm_open(talloc_tos(), NULL,
4553 query_host, "IPC$", true, smb_encrypt,
4554 max_protocol);
4555 if (!cli)
4556 return 1;
4558 browse_host(true);
4560 if (interpret_string_addr(&ss, query_host, 0) && (ss.ss_family != AF_INET)) {
4561 d_printf("%s is an IPv6 address -- no workgroup available\n",
4562 query_host);
4563 return 1;
4566 if (port != 139) {
4568 /* Workgroups simply don't make sense over anything
4569 else but port 139... */
4571 cli_cm_shutdown();
4572 cli_cm_set_port( 139 );
4573 cli = cli_cm_open(talloc_tos(), NULL,
4574 query_host, "IPC$", true, smb_encrypt,
4575 max_protocol);
4578 if (cli == NULL) {
4579 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4580 return 1;
4583 list_servers(lp_workgroup());
4585 cli_cm_shutdown();
4587 return(0);
4590 /****************************************************************************
4591 Handle a tar operation.
4592 ****************************************************************************/
4594 static int do_tar_op(const char *base_directory)
4596 int ret;
4598 /* do we already have a connection? */
4599 if (!cli) {
4600 cli = cli_cm_open(talloc_tos(), NULL,
4601 have_ip ? dest_ss_str : desthost,
4602 service, true, smb_encrypt,
4603 max_protocol);
4604 if (!cli)
4605 return 1;
4608 recurse=true;
4610 if (base_directory && *base_directory) {
4611 ret = do_cd(base_directory);
4612 if (ret) {
4613 cli_cm_shutdown();
4614 return ret;
4618 ret=process_tar();
4620 cli_cm_shutdown();
4622 return(ret);
4625 /****************************************************************************
4626 Handle a message operation.
4627 ****************************************************************************/
4629 static int do_message_op(struct user_auth_info *auth_info)
4631 struct sockaddr_storage ss;
4632 struct nmb_name called, calling;
4633 fstring server_name;
4634 char name_type_hex[10];
4635 int msg_port;
4636 NTSTATUS status;
4638 make_nmb_name(&calling, calling_name, 0x0);
4639 make_nmb_name(&called , desthost, name_type);
4641 fstrcpy(server_name, desthost);
4642 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4643 fstrcat(server_name, name_type_hex);
4645 zero_sockaddr(&ss);
4646 if (have_ip)
4647 ss = dest_ss;
4649 /* we can only do messages over port 139 (to windows clients at least) */
4651 msg_port = port ? port : 139;
4653 if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port)) {
4654 d_printf("Connection to %s failed\n", desthost);
4655 return 1;
4658 status = cli_connect(cli, server_name, &ss);
4659 if (!NT_STATUS_IS_OK(status)) {
4660 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4661 return 1;
4664 if (!cli_session_request(cli, &calling, &called)) {
4665 d_printf("session request failed\n");
4666 cli_cm_shutdown();
4667 return 1;
4670 send_message(get_cmdline_auth_info_username(auth_info));
4671 cli_cm_shutdown();
4673 return 0;
4676 /****************************************************************************
4677 main program
4678 ****************************************************************************/
4680 int main(int argc,char *argv[])
4682 char *base_directory = NULL;
4683 int opt;
4684 char *query_host = NULL;
4685 bool message = false;
4686 char *term_code = NULL;
4687 static const char *new_name_resolve_order = NULL;
4688 poptContext pc;
4689 char *p;
4690 int rc = 0;
4691 fstring new_workgroup;
4692 bool tar_opt = false;
4693 bool service_opt = false;
4694 struct poptOption long_options[] = {
4695 POPT_AUTOHELP
4697 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4698 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4699 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4700 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4701 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4702 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4703 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4704 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4705 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4706 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4707 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4708 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4709 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4710 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4711 POPT_COMMON_SAMBA
4712 POPT_COMMON_CONNECTION
4713 POPT_COMMON_CREDENTIALS
4714 POPT_TABLEEND
4716 TALLOC_CTX *frame = talloc_stackframe();
4717 struct user_auth_info *auth_info;
4719 if (!client_set_cur_dir("\\")) {
4720 exit(ENOMEM);
4723 #ifdef KANJI
4724 term_code = talloc_strdup(frame,KANJI);
4725 #else /* KANJI */
4726 term_code = talloc_strdup(frame,"");
4727 #endif /* KANJI */
4728 if (!term_code) {
4729 exit(ENOMEM);
4732 /* initialize the workgroup name so we can determine whether or
4733 not it was set by a command line option */
4735 set_global_myworkgroup( "" );
4736 set_global_myname( "" );
4738 /* set default debug level to 1 regardless of what smb.conf sets */
4739 setup_logging( "smbclient", true );
4740 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4741 if ((dbf = x_fdup(x_stderr))) {
4742 x_setbuf( dbf, NULL );
4745 load_case_tables();
4747 auth_info = user_auth_info_init(frame);
4748 if (auth_info == NULL) {
4749 exit(1);
4751 popt_common_set_auth_info(auth_info);
4753 /* skip argv(0) */
4754 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4755 poptSetOtherOptionHelp(pc, "service <password>");
4757 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4759 while ((opt = poptGetNextOpt(pc)) != -1) {
4761 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4762 /* I see no other way to keep things sane --SSS */
4763 if (tar_opt == true) {
4764 while (poptPeekArg(pc)) {
4765 poptGetArg(pc);
4767 tar_opt = false;
4770 /* if the service has not yet been specified lets see if it is available in the popt stack */
4771 if (!service_opt && poptPeekArg(pc)) {
4772 service = talloc_strdup(frame, poptGetArg(pc));
4773 if (!service) {
4774 exit(ENOMEM);
4776 service_opt = true;
4779 /* if the service has already been retrieved then check if we have also a password */
4780 if (service_opt
4781 && (!get_cmdline_auth_info_got_pass(auth_info))
4782 && poptPeekArg(pc)) {
4783 set_cmdline_auth_info_password(auth_info,
4784 poptGetArg(pc));
4787 switch (opt) {
4788 case 'M':
4789 /* Messages are sent to NetBIOS name type 0x3
4790 * (Messenger Service). Make sure we default
4791 * to port 139 instead of port 445. srl,crh
4793 name_type = 0x03;
4794 cli_cm_set_dest_name_type( name_type );
4795 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4796 if (!desthost) {
4797 exit(ENOMEM);
4799 if( !port )
4800 cli_cm_set_port( 139 );
4801 message = true;
4802 break;
4803 case 'I':
4805 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4806 exit(1);
4808 have_ip = true;
4809 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
4811 break;
4812 case 'E':
4813 if (dbf) {
4814 x_fclose(dbf);
4816 dbf = x_stderr;
4817 display_set_stderr();
4818 break;
4820 case 'L':
4821 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4822 if (!query_host) {
4823 exit(ENOMEM);
4825 break;
4826 case 't':
4827 term_code = talloc_strdup(frame,poptGetOptArg(pc));
4828 if (!term_code) {
4829 exit(ENOMEM);
4831 break;
4832 case 'm':
4833 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4834 break;
4835 case 'T':
4836 /* We must use old option processing for this. Find the
4837 * position of the -T option in the raw argv[]. */
4839 int i;
4840 for (i = 1; i < argc; i++) {
4841 if (strncmp("-T", argv[i],2)==0)
4842 break;
4844 i++;
4845 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4846 poptPrintUsage(pc, stderr, 0);
4847 exit(1);
4850 /* this must be the last option, mark we have parsed it so that we know we have */
4851 tar_opt = true;
4852 break;
4853 case 'D':
4854 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4855 if (!base_directory) {
4856 exit(ENOMEM);
4858 break;
4859 case 'g':
4860 grepable=true;
4861 break;
4862 case 'e':
4863 smb_encrypt=true;
4864 break;
4865 case 'B':
4866 return(do_smb_browse());
4871 /* We may still have some leftovers after the last popt option has been called */
4872 if (tar_opt == true) {
4873 while (poptPeekArg(pc)) {
4874 poptGetArg(pc);
4876 tar_opt = false;
4879 /* if the service has not yet been specified lets see if it is available in the popt stack */
4880 if (!service_opt && poptPeekArg(pc)) {
4881 service = talloc_strdup(frame,poptGetArg(pc));
4882 if (!service) {
4883 exit(ENOMEM);
4885 service_opt = true;
4888 /* if the service has already been retrieved then check if we have also a password */
4889 if (service_opt
4890 && !get_cmdline_auth_info_got_pass(auth_info)
4891 && poptPeekArg(pc)) {
4892 set_cmdline_auth_info_password(auth_info,
4893 poptGetArg(pc));
4896 /* check for the -P option */
4898 if ( port != 0 )
4899 cli_cm_set_port( port );
4902 * Don't load debug level from smb.conf. It should be
4903 * set by cmdline arg or remain default (0)
4905 AllowDebugChange = false;
4907 /* save the workgroup...
4909 FIXME!! do we need to do this for other options as well
4910 (or maybe a generic way to keep lp_load() from overwriting
4911 everything)? */
4913 fstrcpy( new_workgroup, lp_workgroup() );
4914 calling_name = talloc_strdup(frame, global_myname() );
4915 if (!calling_name) {
4916 exit(ENOMEM);
4919 if ( override_logfile )
4920 setup_logging( lp_logfile(), false );
4922 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4923 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4924 argv[0], get_dyn_CONFIGFILE());
4927 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
4928 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
4929 exit(-1);
4932 load_interfaces();
4934 if (service_opt && service) {
4935 size_t len;
4937 /* Convert any '/' characters in the service name to '\' characters */
4938 string_replace(service, '/','\\');
4939 if (count_chars(service,'\\') < 3) {
4940 d_printf("\n%s: Not enough '\\' characters in service\n",service);
4941 poptPrintUsage(pc, stderr, 0);
4942 exit(1);
4944 /* Remove trailing slashes */
4945 len = strlen(service);
4946 while(len > 0 && service[len - 1] == '\\') {
4947 --len;
4948 service[len] = '\0';
4952 if ( strlen(new_workgroup) != 0 ) {
4953 set_global_myworkgroup( new_workgroup );
4956 if ( strlen(calling_name) != 0 ) {
4957 set_global_myname( calling_name );
4958 } else {
4959 TALLOC_FREE(calling_name);
4960 calling_name = talloc_strdup(frame, global_myname() );
4963 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
4964 if (!init_names()) {
4965 fprintf(stderr, "init_names() failed\n");
4966 exit(1);
4969 if(new_name_resolve_order)
4970 lp_set_name_resolve_order(new_name_resolve_order);
4972 if (!tar_type && !query_host && !service && !message) {
4973 poptPrintUsage(pc, stderr, 0);
4974 exit(1);
4977 poptFreeContext(pc);
4979 /* Store the username and password for dfs support */
4981 cli_cm_set_credentials(auth_info);
4983 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
4985 if (tar_type) {
4986 if (cmdstr)
4987 process_command_string(cmdstr);
4988 return do_tar_op(base_directory);
4991 if (query_host && *query_host) {
4992 char *qhost = query_host;
4993 char *slash;
4995 while (*qhost == '\\' || *qhost == '/')
4996 qhost++;
4998 if ((slash = strchr_m(qhost, '/'))
4999 || (slash = strchr_m(qhost, '\\'))) {
5000 *slash = 0;
5003 if ((p=strchr_m(qhost, '#'))) {
5004 *p = 0;
5005 p++;
5006 sscanf(p, "%x", &name_type);
5007 cli_cm_set_dest_name_type( name_type );
5010 return do_host_query(qhost);
5013 if (message) {
5014 return do_message_op(auth_info);
5017 if (process(base_directory)) {
5018 return 1;
5021 TALLOC_FREE(frame);
5022 return rc;