Add the "allinfo" command to smbclient
[Samba.git] / source / client / client.c
blob59ca2e0adcf32f666d1655f9473f84440051f04a
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;
36 extern bool in_client;
38 static int port = 0;
39 static char *service;
40 static char *desthost;
41 static char *calling_name;
42 static bool grepable = false;
43 static char *cmdstr = NULL;
44 static const char *cmd_ptr = NULL;
46 static int io_bufsize = 64512;
48 static int name_type = 0x20;
49 extern int max_protocol;
51 static int process_tok(char *tok);
52 static int cmd_help(void);
54 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
56 /* 30 second timeout on most commands */
57 #define CLIENT_TIMEOUT (30*1000)
58 #define SHORT_TIMEOUT (5*1000)
60 /* value for unused fid field in trans2 secondary request */
61 #define FID_UNUSED (0xFFFF)
63 time_t newer_than = 0;
64 static int archive_level = 0;
66 static bool translation = false;
67 static bool have_ip;
69 /* clitar bits insert */
70 extern int blocksize;
71 extern bool tar_inc;
72 extern bool tar_reset;
73 /* clitar bits end */
75 static bool prompt = true;
77 static bool recurse = false;
78 static bool showacls = false;
79 bool lowercase = false;
81 static struct sockaddr_storage dest_ss;
83 #define SEPARATORS " \t\n\r"
85 static bool abort_mget = true;
87 /* timing globals */
88 SMB_BIG_UINT get_total_size = 0;
89 unsigned int get_total_time_ms = 0;
90 static SMB_BIG_UINT 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(char *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 /****************************************************************************
219 Send a message.
220 ****************************************************************************/
222 static void send_message(void)
224 int total_len = 0;
225 int grp_id;
227 if (!cli_message_start(cli, desthost,
228 get_cmdline_auth_info_username(), &grp_id)) {
229 d_printf("message start: %s\n", cli_errstr(cli));
230 return;
234 d_printf("Connected. Type your message, ending it with a Control-D\n");
236 while (!feof(stdin) && total_len < 1600) {
237 int maxlen = MIN(1600 - total_len,127);
238 char msg[1024];
239 int l=0;
240 int c;
242 ZERO_ARRAY(msg);
244 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
245 if (c == '\n')
246 msg[l++] = '\r';
247 msg[l] = c;
250 if ((total_len > 0) && (strlen(msg) == 0)) {
251 break;
254 if (!cli_message_text(cli, msg, l, grp_id)) {
255 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
256 return;
259 total_len += l;
262 if (total_len >= 1600)
263 d_printf("the message was truncated to 1600 bytes\n");
264 else
265 d_printf("sent %d bytes\n",total_len);
267 if (!cli_message_end(cli, grp_id)) {
268 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
269 return;
273 /****************************************************************************
274 Check the space on a device.
275 ****************************************************************************/
277 static int do_dskattr(void)
279 int total, bsize, avail;
280 struct cli_state *targetcli = NULL;
281 char *targetpath = NULL;
282 TALLOC_CTX *ctx = talloc_tos();
284 if ( !cli_resolve_path(ctx, "", cli, client_get_cur_dir(), &targetcli, &targetpath)) {
285 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
286 return 1;
289 if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
290 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
291 return 1;
294 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
295 total, bsize, avail);
297 return 0;
300 /****************************************************************************
301 Show cd/pwd.
302 ****************************************************************************/
304 static int cmd_pwd(void)
306 d_printf("Current directory is %s",service);
307 d_printf("%s\n",client_get_cur_dir());
308 return 0;
311 /****************************************************************************
312 Change directory - inner section.
313 ****************************************************************************/
315 static int do_cd(const char *new_dir)
317 char *newdir = NULL;
318 char *saved_dir = NULL;
319 char *new_cd = NULL;
320 char *targetpath = NULL;
321 struct cli_state *targetcli = NULL;
322 SMB_STRUCT_STAT sbuf;
323 uint32 attributes;
324 int ret = 1;
325 TALLOC_CTX *ctx = talloc_stackframe();
327 newdir = talloc_strdup(ctx, new_dir);
328 if (!newdir) {
329 TALLOC_FREE(ctx);
330 return 1;
332 string_replace(newdir,'/','\\');
334 /* Save the current directory in case the new directory is invalid */
336 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
337 if (!saved_dir) {
338 TALLOC_FREE(ctx);
339 return 1;
342 if (*newdir == CLI_DIRSEP_CHAR) {
343 client_set_cur_dir(newdir);
344 new_cd = newdir;
345 } else {
346 new_cd = talloc_asprintf(ctx, "%s%s",
347 client_get_cur_dir(),
348 newdir);
349 if (!new_cd) {
350 goto out;
352 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
353 new_cd = talloc_asprintf_append(new_cd, CLI_DIRSEP_STR);
354 if (!new_cd) {
355 goto out;
358 client_set_cur_dir(new_cd);
360 if (!new_cd) {
361 goto out;
364 new_cd = clean_name(ctx, new_cd);
365 client_set_cur_dir(new_cd);
367 if ( !cli_resolve_path(ctx, "", cli, new_cd, &targetcli, &targetpath)) {
368 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
369 client_set_cur_dir(saved_dir);
370 goto out;
373 if (strequal(targetpath,CLI_DIRSEP_STR )) {
374 TALLOC_FREE(ctx);
375 return 0;
378 /* Use a trans2_qpathinfo to test directories for modern servers.
379 Except Win9x doesn't support the qpathinfo_basic() call..... */
381 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
382 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
383 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
384 client_set_cur_dir(saved_dir);
385 goto out;
388 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
389 d_printf("cd %s: not a directory\n", new_cd);
390 client_set_cur_dir(saved_dir);
391 goto out;
393 } else {
394 targetpath = talloc_asprintf(ctx,
395 "%s%s",
396 targetpath,
397 CLI_DIRSEP_STR );
398 if (!targetpath) {
399 client_set_cur_dir(saved_dir);
400 goto out;
402 targetpath = clean_name(ctx, targetpath);
403 if (!targetpath) {
404 client_set_cur_dir(saved_dir);
405 goto out;
408 if (!cli_chkpath(targetcli, targetpath)) {
409 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
410 client_set_cur_dir(saved_dir);
411 goto out;
415 ret = 0;
417 out:
419 TALLOC_FREE(ctx);
420 return ret;
423 /****************************************************************************
424 Change directory.
425 ****************************************************************************/
427 static int cmd_cd(void)
429 char *buf = NULL;
430 int rc = 0;
432 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
433 rc = do_cd(buf);
434 } else {
435 d_printf("Current directory is %s\n",client_get_cur_dir());
438 return rc;
441 /****************************************************************************
442 Change directory.
443 ****************************************************************************/
445 static int cmd_cd_oneup(void)
447 return do_cd("..");
450 /*******************************************************************
451 Decide if a file should be operated on.
452 ********************************************************************/
454 static bool do_this_one(file_info *finfo)
456 if (!finfo->name) {
457 return false;
460 if (finfo->mode & aDIR) {
461 return true;
464 if (*client_get_fileselection() &&
465 !mask_match(finfo->name,client_get_fileselection(),false)) {
466 DEBUG(3,("mask_match %s failed\n", finfo->name));
467 return false;
470 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
471 DEBUG(3,("newer_than %s failed\n", finfo->name));
472 return false;
475 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
476 DEBUG(3,("archive %s failed\n", finfo->name));
477 return false;
480 return true;
483 /****************************************************************************
484 Display info about a file.
485 ****************************************************************************/
487 static void display_finfo(file_info *finfo, const char *dir)
489 time_t t;
490 TALLOC_CTX *ctx = talloc_tos();
492 if (!do_this_one(finfo)) {
493 return;
496 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
497 if (!showacls) {
498 d_printf(" %-30s%7.7s %8.0f %s",
499 finfo->name,
500 attrib_string(finfo->mode),
501 (double)finfo->size,
502 time_to_asc(t));
503 dir_total += finfo->size;
504 } else {
505 char *afname = NULL;
506 int fnum;
508 /* skip if this is . or .. */
509 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
510 return;
511 /* create absolute filename for cli_nt_create() FIXME */
512 afname = talloc_asprintf(ctx,
513 "%s%s%s",
514 client_get_cwd(),
515 CLI_DIRSEP_STR,
516 finfo->name);
517 if (!afname) {
518 return;
520 /* print file meta date header */
521 d_printf( "FILENAME:%s\n", afname);
522 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
523 d_printf( "SIZE:%.0f\n", (double)finfo->size);
524 d_printf( "MTIME:%s", time_to_asc(t));
525 fnum = cli_nt_create(finfo->cli, afname, CREATE_ACCESS_READ);
526 if (fnum == -1) {
527 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
528 afname,
529 cli_errstr( finfo->cli)));
530 } else {
531 SEC_DESC *sd = NULL;
532 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
533 if (!sd) {
534 DEBUG( 0, ("display_finfo() failed to "
535 "get security descriptor: %s",
536 cli_errstr( finfo->cli)));
537 } else {
538 display_sec_desc(sd);
540 TALLOC_FREE(sd);
542 TALLOC_FREE(afname);
546 /****************************************************************************
547 Accumulate size of a file.
548 ****************************************************************************/
550 static void do_du(file_info *finfo, const char *dir)
552 if (do_this_one(finfo)) {
553 dir_total += finfo->size;
557 static bool do_list_recurse;
558 static bool do_list_dirs;
559 static char *do_list_queue = 0;
560 static long do_list_queue_size = 0;
561 static long do_list_queue_start = 0;
562 static long do_list_queue_end = 0;
563 static void (*do_list_fn)(file_info *, const char *dir);
565 /****************************************************************************
566 Functions for do_list_queue.
567 ****************************************************************************/
570 * The do_list_queue is a NUL-separated list of strings stored in a
571 * char*. Since this is a FIFO, we keep track of the beginning and
572 * ending locations of the data in the queue. When we overflow, we
573 * double the size of the char*. When the start of the data passes
574 * the midpoint, we move everything back. This is logically more
575 * complex than a linked list, but easier from a memory management
576 * angle. In any memory error condition, do_list_queue is reset.
577 * Functions check to ensure that do_list_queue is non-NULL before
578 * accessing it.
581 static void reset_do_list_queue(void)
583 SAFE_FREE(do_list_queue);
584 do_list_queue_size = 0;
585 do_list_queue_start = 0;
586 do_list_queue_end = 0;
589 static void init_do_list_queue(void)
591 reset_do_list_queue();
592 do_list_queue_size = 1024;
593 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
594 if (do_list_queue == 0) {
595 d_printf("malloc fail for size %d\n",
596 (int)do_list_queue_size);
597 reset_do_list_queue();
598 } else {
599 memset(do_list_queue, 0, do_list_queue_size);
603 static void adjust_do_list_queue(void)
606 * If the starting point of the queue is more than half way through,
607 * move everything toward the beginning.
610 if (do_list_queue == NULL) {
611 DEBUG(4,("do_list_queue is empty\n"));
612 do_list_queue_start = do_list_queue_end = 0;
613 return;
616 if (do_list_queue_start == do_list_queue_end) {
617 DEBUG(4,("do_list_queue is empty\n"));
618 do_list_queue_start = do_list_queue_end = 0;
619 *do_list_queue = '\0';
620 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
621 DEBUG(4,("sliding do_list_queue backward\n"));
622 memmove(do_list_queue,
623 do_list_queue + do_list_queue_start,
624 do_list_queue_end - do_list_queue_start);
625 do_list_queue_end -= do_list_queue_start;
626 do_list_queue_start = 0;
630 static void add_to_do_list_queue(const char *entry)
632 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
633 while (new_end > do_list_queue_size) {
634 do_list_queue_size *= 2;
635 DEBUG(4,("enlarging do_list_queue to %d\n",
636 (int)do_list_queue_size));
637 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
638 if (! do_list_queue) {
639 d_printf("failure enlarging do_list_queue to %d bytes\n",
640 (int)do_list_queue_size);
641 reset_do_list_queue();
642 } else {
643 memset(do_list_queue + do_list_queue_size / 2,
644 0, do_list_queue_size / 2);
647 if (do_list_queue) {
648 safe_strcpy_base(do_list_queue + do_list_queue_end,
649 entry, do_list_queue, do_list_queue_size);
650 do_list_queue_end = new_end;
651 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
652 entry, (int)do_list_queue_start, (int)do_list_queue_end));
656 static char *do_list_queue_head(void)
658 return do_list_queue + do_list_queue_start;
661 static void remove_do_list_queue_head(void)
663 if (do_list_queue_end > do_list_queue_start) {
664 do_list_queue_start += strlen(do_list_queue_head()) + 1;
665 adjust_do_list_queue();
666 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
667 (int)do_list_queue_start, (int)do_list_queue_end));
671 static int do_list_queue_empty(void)
673 return (! (do_list_queue && *do_list_queue));
676 /****************************************************************************
677 A helper for do_list.
678 ****************************************************************************/
680 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
682 TALLOC_CTX *ctx = talloc_tos();
683 char *dir = NULL;
684 char *dir_end = NULL;
686 /* Work out the directory. */
687 dir = talloc_strdup(ctx, mask);
688 if (!dir) {
689 return;
691 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
692 *dir_end = '\0';
695 if (f->mode & aDIR) {
696 if (do_list_dirs && do_this_one(f)) {
697 do_list_fn(f, dir);
699 if (do_list_recurse &&
700 f->name &&
701 !strequal(f->name,".") &&
702 !strequal(f->name,"..")) {
703 char *mask2 = NULL;
704 char *p = NULL;
706 if (!f->name[0]) {
707 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
708 TALLOC_FREE(dir);
709 return;
712 mask2 = talloc_asprintf(ctx,
713 "%s%s",
714 mntpoint,
715 mask);
716 if (!mask2) {
717 TALLOC_FREE(dir);
718 return;
720 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
721 if (!p) {
722 TALLOC_FREE(dir);
723 return;
725 p[1] = 0;
726 mask2 = talloc_asprintf_append(mask2,
727 "%s%s*",
728 f->name,
729 CLI_DIRSEP_STR);
730 if (!mask2) {
731 TALLOC_FREE(dir);
732 return;
734 add_to_do_list_queue(mask2);
735 TALLOC_FREE(mask2);
737 TALLOC_FREE(dir);
738 return;
741 if (do_this_one(f)) {
742 do_list_fn(f,dir);
744 TALLOC_FREE(dir);
747 /****************************************************************************
748 A wrapper around cli_list that adds recursion.
749 ****************************************************************************/
751 void do_list(const char *mask,
752 uint16 attribute,
753 void (*fn)(file_info *, const char *dir),
754 bool rec,
755 bool dirs)
757 static int in_do_list = 0;
758 TALLOC_CTX *ctx = talloc_tos();
759 struct cli_state *targetcli = NULL;
760 char *targetpath = NULL;
762 if (in_do_list && rec) {
763 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
764 exit(1);
767 in_do_list = 1;
769 do_list_recurse = rec;
770 do_list_dirs = dirs;
771 do_list_fn = fn;
773 if (rec) {
774 init_do_list_queue();
775 add_to_do_list_queue(mask);
777 while (!do_list_queue_empty()) {
779 * Need to copy head so that it doesn't become
780 * invalid inside the call to cli_list. This
781 * would happen if the list were expanded
782 * during the call.
783 * Fix from E. Jay Berkenbilt (ejb@ql.org)
785 char *head = talloc_strdup(ctx, do_list_queue_head());
787 if (!head) {
788 return;
791 /* check for dfs */
793 if ( !cli_resolve_path(ctx, "", cli, head, &targetcli, &targetpath ) ) {
794 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
795 remove_do_list_queue_head();
796 continue;
799 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
800 remove_do_list_queue_head();
801 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
802 char *next_file = do_list_queue_head();
803 char *save_ch = 0;
804 if ((strlen(next_file) >= 2) &&
805 (next_file[strlen(next_file) - 1] == '*') &&
806 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
807 save_ch = next_file +
808 strlen(next_file) - 2;
809 *save_ch = '\0';
810 if (showacls) {
811 /* cwd is only used if showacls is on */
812 client_set_cwd(next_file);
815 if (!showacls) /* don't disturbe the showacls output */
816 d_printf("\n%s\n",next_file);
817 if (save_ch) {
818 *save_ch = CLI_DIRSEP_CHAR;
821 TALLOC_FREE(head);
822 TALLOC_FREE(targetpath);
824 } else {
825 /* check for dfs */
826 if (cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetpath)) {
827 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
828 d_printf("%s listing %s\n",
829 cli_errstr(targetcli), targetpath);
831 TALLOC_FREE(targetpath);
832 } else {
833 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
837 in_do_list = 0;
838 reset_do_list_queue();
841 /****************************************************************************
842 Get a directory listing.
843 ****************************************************************************/
845 static int cmd_dir(void)
847 TALLOC_CTX *ctx = talloc_tos();
848 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
849 char *mask = NULL;
850 char *buf = NULL;
851 int rc = 1;
853 dir_total = 0;
854 if (strcmp(client_get_cur_dir(), CLI_DIRSEP_STR) != 0) {
855 mask = talloc_strdup(ctx, client_get_cur_dir());
856 if (!mask) {
857 return 1;
859 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
860 mask = talloc_asprintf_append(mask, CLI_DIRSEP_STR);
862 } else {
863 mask = talloc_strdup(ctx, CLI_DIRSEP_STR);
866 if (!mask) {
867 return 1;
870 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
871 string_replace(buf,'/','\\');
872 if (*buf == CLI_DIRSEP_CHAR) {
873 mask = talloc_strdup(ctx, buf + 1);
874 } else {
875 mask = talloc_asprintf_append(mask, buf);
877 } else {
878 mask = talloc_asprintf_append(mask, "*");
880 if (!mask) {
881 return 1;
884 if (showacls) {
885 /* cwd is only used if showacls is on */
886 client_set_cwd(client_get_cur_dir());
889 do_list(mask, attribute, display_finfo, recurse, true);
891 rc = do_dskattr();
893 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
895 return rc;
898 /****************************************************************************
899 Get a directory listing.
900 ****************************************************************************/
902 static int cmd_du(void)
904 TALLOC_CTX *ctx = talloc_tos();
905 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
906 char *mask = NULL;
907 char *buf = NULL;
908 int rc = 1;
910 dir_total = 0;
911 mask = talloc_strdup(ctx, client_get_cur_dir());
912 if (!mask) {
913 return 1;
915 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
916 mask = talloc_asprintf_append(mask, CLI_DIRSEP_STR);
917 if (!mask) {
918 return 1;
922 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
923 string_replace(buf,'/','\\');
924 if (*buf == CLI_DIRSEP_CHAR) {
925 mask = talloc_strdup(ctx, buf);
926 } else {
927 mask = talloc_asprintf_append(mask, buf);
929 } else {
930 mask = talloc_strdup(ctx, "*");
933 do_list(mask, attribute, do_du, recurse, true);
935 rc = do_dskattr();
937 d_printf("Total number of bytes: %.0f\n", dir_total);
939 return rc;
942 static int cmd_echo(void)
944 TALLOC_CTX *ctx = talloc_tos();
945 char *num;
946 char *data;
948 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
949 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
950 d_printf("echo <num> <data>\n");
951 return 1;
954 if (!cli_echo(cli, atoi(num), (uint8 *)data, strlen(data))) {
955 d_printf("echo failed: %s\n",
956 nt_errstr(cli_get_nt_error(cli)));
957 return 1;
960 return 0;
963 /****************************************************************************
964 Get a file from rname to lname
965 ****************************************************************************/
967 static int do_get(const char *rname, const char *lname_in, bool reget)
969 TALLOC_CTX *ctx = talloc_tos();
970 int handle = 0, fnum;
971 bool newhandle = false;
972 char *data = NULL;
973 struct timeval tp_start;
974 int read_size = io_bufsize;
975 uint16 attr;
976 SMB_OFF_T size;
977 off_t start = 0;
978 off_t nread = 0;
979 int rc = 0;
980 struct cli_state *targetcli = NULL;
981 char *targetname = NULL;
982 char *lname = NULL;
984 lname = talloc_strdup(ctx, lname_in);
985 if (!lname) {
986 return 1;
989 if (lowercase) {
990 strlower_m(lname);
993 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname ) ) {
994 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
995 return 1;
998 GetTimeOfDay(&tp_start);
1000 fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
1002 if (fnum == -1) {
1003 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1004 return 1;
1007 if(!strcmp(lname,"-")) {
1008 handle = fileno(stdout);
1009 } else {
1010 if (reget) {
1011 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1012 if (handle >= 0) {
1013 start = sys_lseek(handle, 0, SEEK_END);
1014 if (start == -1) {
1015 d_printf("Error seeking local file\n");
1016 return 1;
1019 } else {
1020 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1022 newhandle = true;
1024 if (handle < 0) {
1025 d_printf("Error opening local file %s\n",lname);
1026 return 1;
1030 if (!cli_qfileinfo(targetcli, fnum,
1031 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1032 !cli_getattrE(targetcli, fnum,
1033 &attr, &size, NULL, NULL, NULL)) {
1034 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1035 return 1;
1038 DEBUG(1,("getting file %s of size %.0f as %s ",
1039 rname, (double)size, lname));
1041 if(!(data = (char *)SMB_MALLOC(read_size))) {
1042 d_printf("malloc fail for size %d\n", read_size);
1043 cli_close(targetcli, fnum);
1044 return 1;
1047 while (1) {
1048 int n = cli_read(targetcli, fnum, data, nread + start, read_size);
1050 if (n <= 0)
1051 break;
1053 if (writefile(handle,data, n) != n) {
1054 d_printf("Error writing local file\n");
1055 rc = 1;
1056 break;
1059 nread += n;
1062 if (nread + start < size) {
1063 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
1064 rname, (long)nread));
1066 rc = 1;
1069 SAFE_FREE(data);
1071 if (!cli_close(targetcli, fnum)) {
1072 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1073 rc = 1;
1076 if (newhandle) {
1077 close(handle);
1080 if (archive_level >= 2 && (attr & aARCH)) {
1081 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1085 struct timeval tp_end;
1086 int this_time;
1088 GetTimeOfDay(&tp_end);
1089 this_time =
1090 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1091 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1092 get_total_time_ms += this_time;
1093 get_total_size += nread;
1095 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1096 nread / (1.024*this_time + 1.0e-4),
1097 get_total_size / (1.024*get_total_time_ms)));
1100 TALLOC_FREE(targetname);
1101 return rc;
1104 /****************************************************************************
1105 Get a file.
1106 ****************************************************************************/
1108 static int cmd_get(void)
1110 TALLOC_CTX *ctx = talloc_tos();
1111 char *lname = NULL;
1112 char *rname = NULL;
1113 char *fname = NULL;
1115 rname = talloc_asprintf(ctx,
1116 "%s%s",
1117 client_get_cur_dir(),
1118 CLI_DIRSEP_STR);
1119 if (!rname) {
1120 return 1;
1123 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1124 d_printf("get <filename> [localname]\n");
1125 return 1;
1127 rname = talloc_asprintf_append(rname, fname);
1128 if (!rname) {
1129 return 1;
1131 rname = clean_name(ctx, rname);
1132 if (!rname) {
1133 return 1;
1136 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1137 if (!lname) {
1138 lname = fname;
1141 return do_get(rname, lname, false);
1144 /****************************************************************************
1145 Do an mget operation on one file.
1146 ****************************************************************************/
1148 static void do_mget(file_info *finfo, const char *dir)
1150 TALLOC_CTX *ctx = talloc_tos();
1151 char *rname = NULL;
1152 char *quest = NULL;
1153 char *saved_curdir = NULL;
1154 char *mget_mask = NULL;
1155 char *new_cd = NULL;
1157 if (!finfo->name) {
1158 return;
1161 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1162 return;
1164 if (abort_mget) {
1165 d_printf("mget aborted\n");
1166 return;
1169 if (finfo->mode & aDIR) {
1170 if (asprintf(&quest,
1171 "Get directory %s? ",finfo->name) < 0) {
1172 return;
1174 } else {
1175 if (asprintf(&quest,
1176 "Get file %s? ",finfo->name) < 0) {
1177 return;
1181 if (prompt && !yesno(quest)) {
1182 SAFE_FREE(quest);
1183 return;
1185 SAFE_FREE(quest);
1187 if (!(finfo->mode & aDIR)) {
1188 rname = talloc_asprintf(ctx,
1189 "%s%s",
1190 client_get_cur_dir(),
1191 finfo->name);
1192 if (!rname) {
1193 return;
1195 do_get(rname, finfo->name, false);
1196 TALLOC_FREE(rname);
1197 return;
1200 /* handle directories */
1201 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1202 if (!saved_curdir) {
1203 return;
1206 new_cd = talloc_asprintf(ctx,
1207 "%s%s%s",
1208 client_get_cur_dir(),
1209 finfo->name,
1210 CLI_DIRSEP_STR);
1211 if (!new_cd) {
1212 return;
1214 client_set_cur_dir(new_cd);
1216 string_replace(finfo->name,'\\','/');
1217 if (lowercase) {
1218 strlower_m(finfo->name);
1221 if (!directory_exist(finfo->name,NULL) &&
1222 mkdir(finfo->name,0777) != 0) {
1223 d_printf("failed to create directory %s\n",finfo->name);
1224 client_set_cur_dir(saved_curdir);
1225 return;
1228 if (chdir(finfo->name) != 0) {
1229 d_printf("failed to chdir to directory %s\n",finfo->name);
1230 client_set_cur_dir(saved_curdir);
1231 return;
1234 mget_mask = talloc_asprintf(ctx,
1235 "%s*",
1236 client_get_cur_dir());
1238 if (!mget_mask) {
1239 return;
1242 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1243 chdir("..");
1244 client_set_cur_dir(saved_curdir);
1245 TALLOC_FREE(mget_mask);
1246 TALLOC_FREE(saved_curdir);
1247 TALLOC_FREE(new_cd);
1250 /****************************************************************************
1251 View the file using the pager.
1252 ****************************************************************************/
1254 static int cmd_more(void)
1256 TALLOC_CTX *ctx = talloc_tos();
1257 char *rname = NULL;
1258 char *fname = NULL;
1259 char *lname = NULL;
1260 char *pager_cmd = NULL;
1261 const char *pager;
1262 int fd;
1263 int rc = 0;
1265 rname = talloc_asprintf(ctx,
1266 "%s%s",
1267 client_get_cur_dir(),
1268 CLI_DIRSEP_STR);
1269 if (!rname) {
1270 return 1;
1273 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1274 if (!lname) {
1275 return 1;
1277 fd = smb_mkstemp(lname);
1278 if (fd == -1) {
1279 d_printf("failed to create temporary file for more\n");
1280 return 1;
1282 close(fd);
1284 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1285 d_printf("more <filename>\n");
1286 unlink(lname);
1287 return 1;
1289 rname = talloc_asprintf_append(rname, fname);
1290 if (!rname) {
1291 return 1;
1293 rname = clean_name(ctx,rname);
1294 if (!rname) {
1295 return 1;
1298 rc = do_get(rname, lname, false);
1300 pager=getenv("PAGER");
1302 pager_cmd = talloc_asprintf(ctx,
1303 "%s %s",
1304 (pager? pager:PAGER),
1305 lname);
1306 if (!pager_cmd) {
1307 return 1;
1309 system(pager_cmd);
1310 unlink(lname);
1312 return rc;
1315 /****************************************************************************
1316 Do a mget command.
1317 ****************************************************************************/
1319 static int cmd_mget(void)
1321 TALLOC_CTX *ctx = talloc_tos();
1322 uint16 attribute = aSYSTEM | aHIDDEN;
1323 char *mget_mask = NULL;
1324 char *buf = NULL;
1326 if (recurse) {
1327 attribute |= aDIR;
1330 abort_mget = false;
1332 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1333 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1334 if (!mget_mask) {
1335 return 1;
1337 if ((mget_mask[0] != '\0') &&
1338 (mget_mask[strlen(mget_mask)-1]!=CLI_DIRSEP_CHAR)) {
1339 mget_mask = talloc_asprintf_append(mget_mask,
1340 CLI_DIRSEP_STR);
1341 if (!mget_mask) {
1342 return 1;
1346 if (*buf == CLI_DIRSEP_CHAR) {
1347 mget_mask = talloc_strdup(ctx, buf);
1348 } else {
1349 mget_mask = talloc_asprintf_append(mget_mask,
1350 buf);
1352 if (!mget_mask) {
1353 return 1;
1355 do_list(mget_mask, attribute, do_mget, false, true);
1358 if (!*mget_mask) {
1359 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1360 if (!mget_mask) {
1361 return 1;
1363 if(mget_mask[strlen(mget_mask)-1]!=CLI_DIRSEP_CHAR) {
1364 mget_mask = talloc_asprintf_append(mget_mask,
1365 CLI_DIRSEP_STR);
1366 if (!mget_mask) {
1367 return 1;
1370 mget_mask = talloc_asprintf_append(mget_mask, "*");
1371 if (!mget_mask) {
1372 return 1;
1374 do_list(mget_mask, attribute, do_mget, false, true);
1377 return 0;
1380 /****************************************************************************
1381 Make a directory of name "name".
1382 ****************************************************************************/
1384 static bool do_mkdir(const char *name)
1386 TALLOC_CTX *ctx = talloc_tos();
1387 struct cli_state *targetcli;
1388 char *targetname = NULL;
1390 if (!cli_resolve_path(ctx, "", cli, name, &targetcli, &targetname)) {
1391 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1392 return false;
1395 if (!cli_mkdir(targetcli, targetname)) {
1396 d_printf("%s making remote directory %s\n",
1397 cli_errstr(targetcli),name);
1398 return false;
1401 return true;
1404 /****************************************************************************
1405 Show 8.3 name of a file.
1406 ****************************************************************************/
1408 static bool do_altname(const char *name)
1410 fstring altname;
1412 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1413 d_printf("%s getting alt name for %s\n",
1414 cli_errstr(cli),name);
1415 return false;
1417 d_printf("%s\n", altname);
1419 return true;
1422 /****************************************************************************
1423 Exit client.
1424 ****************************************************************************/
1426 static int cmd_quit(void)
1428 cli_cm_shutdown();
1429 exit(0);
1430 /* NOTREACHED */
1431 return 0;
1434 /****************************************************************************
1435 Make a directory.
1436 ****************************************************************************/
1438 static int cmd_mkdir(void)
1440 TALLOC_CTX *ctx = talloc_tos();
1441 char *mask = NULL;
1442 char *buf = NULL;
1444 mask = talloc_strdup(ctx, client_get_cur_dir());
1445 if (!mask) {
1446 return 1;
1449 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1450 if (!recurse) {
1451 d_printf("mkdir <dirname>\n");
1453 return 1;
1455 mask = talloc_asprintf_append(mask, buf);
1456 if (!mask) {
1457 return 1;
1460 if (recurse) {
1461 char *ddir = NULL;
1462 char *ddir2 = NULL;
1463 struct cli_state *targetcli;
1464 char *targetname = NULL;
1465 char *p = NULL;
1467 ddir2 = talloc_strdup(ctx, "");
1468 if (!ddir2) {
1469 return 1;
1472 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
1473 return 1;
1476 ddir = talloc_strdup(ctx, targetname);
1477 if (!ddir) {
1478 return 1;
1480 trim_char(ddir,'.','\0');
1481 p = strtok(ddir,"/\\");
1482 while (p) {
1483 ddir2 = talloc_asprintf_append(ddir2, p);
1484 if (!ddir2) {
1485 return 1;
1487 if (!cli_chkpath(targetcli, ddir2)) {
1488 do_mkdir(ddir2);
1490 ddir2 = talloc_asprintf_append(ddir2, CLI_DIRSEP_STR);
1491 if (!ddir2) {
1492 return 1;
1494 p = strtok(NULL,"/\\");
1496 } else {
1497 do_mkdir(mask);
1500 return 0;
1503 /****************************************************************************
1504 Show alt name.
1505 ****************************************************************************/
1507 static int cmd_altname(void)
1509 TALLOC_CTX *ctx = talloc_tos();
1510 char *name;
1511 char *buf;
1513 name = talloc_strdup(ctx, client_get_cur_dir());
1514 if (!name) {
1515 return 1;
1518 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1519 d_printf("altname <file>\n");
1520 return 1;
1522 name = talloc_asprintf_append(name, buf);
1523 if (!name) {
1524 return 1;
1526 do_altname(name);
1527 return 0;
1530 /****************************************************************************
1531 Show all info we can get
1532 ****************************************************************************/
1534 static int do_allinfo(const char *name)
1536 fstring altname;
1537 struct timespec b_time, a_time, m_time, c_time;
1538 SMB_OFF_T size;
1539 uint16_t mode;
1540 SMB_INO_T ino;
1541 NTTIME tmp;
1542 unsigned int num_streams;
1543 struct stream_struct *streams;
1544 unsigned int i;
1546 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1547 d_printf("%s getting alt name for %s\n",
1548 cli_errstr(cli),name);
1549 return false;
1551 d_printf("altname: %s\n", altname);
1553 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1554 &size, &mode, &ino)) {
1555 d_printf("%s getting pathinfo for %s\n",
1556 cli_errstr(cli),name);
1557 return false;
1560 unix_timespec_to_nt_time(&tmp, b_time);
1561 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1563 unix_timespec_to_nt_time(&tmp, a_time);
1564 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1566 unix_timespec_to_nt_time(&tmp, m_time);
1567 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1569 unix_timespec_to_nt_time(&tmp, c_time);
1570 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1572 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1573 &streams)) {
1574 d_printf("%s getting streams for %s\n",
1575 cli_errstr(cli),name);
1576 return false;
1579 for (i=0; i<num_streams; i++) {
1580 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1581 (unsigned long long)streams[i].size);
1584 return 0;
1587 /****************************************************************************
1588 Show all info we can get
1589 ****************************************************************************/
1591 static int cmd_allinfo(void)
1593 TALLOC_CTX *ctx = talloc_tos();
1594 char *name;
1595 char *buf;
1597 name = talloc_strdup(ctx, client_get_cur_dir());
1598 if (!name) {
1599 return 1;
1602 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1603 d_printf("altname <file>\n");
1604 return 1;
1606 name = talloc_asprintf_append(name, buf);
1607 if (!name) {
1608 return 1;
1611 do_allinfo(name);
1613 return 0;
1616 /****************************************************************************
1617 Put a single file.
1618 ****************************************************************************/
1620 static int do_put(const char *rname, const char *lname, bool reput)
1622 TALLOC_CTX *ctx = talloc_tos();
1623 int fnum;
1624 XFILE *f;
1625 SMB_OFF_T start = 0;
1626 off_t nread = 0;
1627 char *buf = NULL;
1628 int maxwrite = io_bufsize;
1629 int rc = 0;
1630 struct timeval tp_start;
1631 struct cli_state *targetcli;
1632 char *targetname = NULL;
1634 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname)) {
1635 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1636 return 1;
1639 GetTimeOfDay(&tp_start);
1641 if (reput) {
1642 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
1643 if (fnum >= 0) {
1644 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1645 !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
1646 d_printf("getattrib: %s\n",cli_errstr(cli));
1647 return 1;
1650 } else {
1651 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1654 if (fnum == -1) {
1655 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1656 return 1;
1659 /* allow files to be piped into smbclient
1660 jdblair 24.jun.98
1662 Note that in this case this function will exit(0) rather
1663 than returning. */
1664 if (!strcmp(lname, "-")) {
1665 f = x_stdin;
1666 /* size of file is not known */
1667 } else {
1668 f = x_fopen(lname,O_RDONLY, 0);
1669 if (f && reput) {
1670 if (x_tseek(f, start, SEEK_SET) == -1) {
1671 d_printf("Error seeking local file\n");
1672 return 1;
1677 if (!f) {
1678 d_printf("Error opening local file %s\n",lname);
1679 return 1;
1682 DEBUG(1,("putting file %s as %s ",lname,
1683 rname));
1685 buf = (char *)SMB_MALLOC(maxwrite);
1686 if (!buf) {
1687 d_printf("ERROR: Not enough memory!\n");
1688 return 1;
1690 while (!x_feof(f)) {
1691 int n = maxwrite;
1692 int ret;
1694 if ((n = readfile(buf,n,f)) < 1) {
1695 if((n == 0) && x_feof(f))
1696 break; /* Empty local file. */
1698 d_printf("Error reading local file: %s\n", strerror(errno));
1699 rc = 1;
1700 break;
1703 ret = cli_write(targetcli, fnum, 0, buf, nread + start, n);
1705 if (n != ret) {
1706 d_printf("Error writing file: %s\n", cli_errstr(cli));
1707 rc = 1;
1708 break;
1711 nread += n;
1714 if (!cli_close(targetcli, fnum)) {
1715 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1716 x_fclose(f);
1717 SAFE_FREE(buf);
1718 return 1;
1721 if (f != x_stdin) {
1722 x_fclose(f);
1725 SAFE_FREE(buf);
1728 struct timeval tp_end;
1729 int this_time;
1731 GetTimeOfDay(&tp_end);
1732 this_time =
1733 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1734 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1735 put_total_time_ms += this_time;
1736 put_total_size += nread;
1738 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1739 nread / (1.024*this_time + 1.0e-4),
1740 put_total_size / (1.024*put_total_time_ms)));
1743 if (f == x_stdin) {
1744 cli_cm_shutdown();
1745 exit(0);
1748 return rc;
1751 /****************************************************************************
1752 Put a file.
1753 ****************************************************************************/
1755 static int cmd_put(void)
1757 TALLOC_CTX *ctx = talloc_tos();
1758 char *lname;
1759 char *rname;
1760 char *buf;
1762 rname = talloc_asprintf(ctx,
1763 "%s%s",
1764 client_get_cur_dir(),
1765 CLI_DIRSEP_STR);
1766 if (!rname) {
1767 return 1;
1770 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1771 d_printf("put <filename>\n");
1772 return 1;
1775 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1776 rname = talloc_asprintf_append(rname, buf);
1777 } else {
1778 rname = talloc_asprintf_append(rname, lname);
1780 if (!rname) {
1781 return 1;
1784 rname = clean_name(ctx, rname);
1785 if (!rname) {
1786 return 1;
1790 SMB_STRUCT_STAT st;
1791 /* allow '-' to represent stdin
1792 jdblair, 24.jun.98 */
1793 if (!file_exist(lname,&st) &&
1794 (strcmp(lname,"-"))) {
1795 d_printf("%s does not exist\n",lname);
1796 return 1;
1800 return do_put(rname, lname, false);
1803 /*************************************
1804 File list structure.
1805 *************************************/
1807 static struct file_list {
1808 struct file_list *prev, *next;
1809 char *file_path;
1810 bool isdir;
1811 } *file_list;
1813 /****************************************************************************
1814 Free a file_list structure.
1815 ****************************************************************************/
1817 static void free_file_list (struct file_list *list_head)
1819 struct file_list *list, *next;
1821 for (list = list_head; list; list = next) {
1822 next = list->next;
1823 DLIST_REMOVE(list_head, list);
1824 SAFE_FREE(list->file_path);
1825 SAFE_FREE(list);
1829 /****************************************************************************
1830 Seek in a directory/file list until you get something that doesn't start with
1831 the specified name.
1832 ****************************************************************************/
1834 static bool seek_list(struct file_list *list, char *name)
1836 while (list) {
1837 trim_string(list->file_path,"./","\n");
1838 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1839 return true;
1841 list = list->next;
1844 return false;
1847 /****************************************************************************
1848 Set the file selection mask.
1849 ****************************************************************************/
1851 static int cmd_select(void)
1853 TALLOC_CTX *ctx = talloc_tos();
1854 char *new_fs = NULL;
1855 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1857 if (new_fs) {
1858 client_set_fileselection(new_fs);
1859 } else {
1860 client_set_fileselection("");
1862 return 0;
1865 /****************************************************************************
1866 Recursive file matching function act as find
1867 match must be always set to true when calling this function
1868 ****************************************************************************/
1870 static int file_find(struct file_list **list, const char *directory,
1871 const char *expression, bool match)
1873 SMB_STRUCT_DIR *dir;
1874 struct file_list *entry;
1875 struct stat statbuf;
1876 int ret;
1877 char *path;
1878 bool isdir;
1879 const char *dname;
1881 dir = sys_opendir(directory);
1882 if (!dir)
1883 return -1;
1885 while ((dname = readdirname(dir))) {
1886 if (!strcmp("..", dname))
1887 continue;
1888 if (!strcmp(".", dname))
1889 continue;
1891 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1892 continue;
1895 isdir = false;
1896 if (!match || !gen_fnmatch(expression, dname)) {
1897 if (recurse) {
1898 ret = stat(path, &statbuf);
1899 if (ret == 0) {
1900 if (S_ISDIR(statbuf.st_mode)) {
1901 isdir = true;
1902 ret = file_find(list, path, expression, false);
1904 } else {
1905 d_printf("file_find: cannot stat file %s\n", path);
1908 if (ret == -1) {
1909 SAFE_FREE(path);
1910 sys_closedir(dir);
1911 return -1;
1914 entry = SMB_MALLOC_P(struct file_list);
1915 if (!entry) {
1916 d_printf("Out of memory in file_find\n");
1917 sys_closedir(dir);
1918 return -1;
1920 entry->file_path = path;
1921 entry->isdir = isdir;
1922 DLIST_ADD(*list, entry);
1923 } else {
1924 SAFE_FREE(path);
1928 sys_closedir(dir);
1929 return 0;
1932 /****************************************************************************
1933 mput some files.
1934 ****************************************************************************/
1936 static int cmd_mput(void)
1938 TALLOC_CTX *ctx = talloc_tos();
1939 char *p = NULL;
1941 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1942 int ret;
1943 struct file_list *temp_list;
1944 char *quest, *lname, *rname;
1946 file_list = NULL;
1948 ret = file_find(&file_list, ".", p, true);
1949 if (ret) {
1950 free_file_list(file_list);
1951 continue;
1954 quest = NULL;
1955 lname = NULL;
1956 rname = NULL;
1958 for (temp_list = file_list; temp_list;
1959 temp_list = temp_list->next) {
1961 SAFE_FREE(lname);
1962 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1963 continue;
1965 trim_string(lname, "./", "/");
1967 /* check if it's a directory */
1968 if (temp_list->isdir) {
1969 /* if (!recurse) continue; */
1971 SAFE_FREE(quest);
1972 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1973 break;
1975 if (prompt && !yesno(quest)) { /* No */
1976 /* Skip the directory */
1977 lname[strlen(lname)-1] = '/';
1978 if (!seek_list(temp_list, lname))
1979 break;
1980 } else { /* Yes */
1981 SAFE_FREE(rname);
1982 if(asprintf(&rname, "%s%s", cur_dir, lname) < 0) {
1983 break;
1985 string_replace(rname,'/','\\');
1986 if (!cli_chkpath(cli, rname) &&
1987 !do_mkdir(rname)) {
1988 DEBUG (0, ("Unable to make dir, skipping..."));
1989 /* Skip the directory */
1990 lname[strlen(lname)-1] = '/';
1991 if (!seek_list(temp_list, lname)) {
1992 break;
1996 continue;
1997 } else {
1998 SAFE_FREE(quest);
1999 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2000 break;
2002 if (prompt && !yesno(quest)) {
2003 /* No */
2004 continue;
2007 /* Yes */
2008 SAFE_FREE(rname);
2009 if (asprintf(&rname, "%s%s", cur_dir, lname) < 0) {
2010 break;
2014 string_replace(rname,'/','\\');
2016 do_put(rname, lname, false);
2018 free_file_list(file_list);
2019 SAFE_FREE(quest);
2020 SAFE_FREE(lname);
2021 SAFE_FREE(rname);
2024 return 0;
2027 /****************************************************************************
2028 Cancel a print job.
2029 ****************************************************************************/
2031 static int do_cancel(int job)
2033 if (cli_printjob_del(cli, job)) {
2034 d_printf("Job %d cancelled\n",job);
2035 return 0;
2036 } else {
2037 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2038 return 1;
2042 /****************************************************************************
2043 Cancel a print job.
2044 ****************************************************************************/
2046 static int cmd_cancel(void)
2048 TALLOC_CTX *ctx = talloc_tos();
2049 char *buf = NULL;
2050 int job;
2052 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2053 d_printf("cancel <jobid> ...\n");
2054 return 1;
2056 do {
2057 job = atoi(buf);
2058 do_cancel(job);
2059 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2061 return 0;
2064 /****************************************************************************
2065 Print a file.
2066 ****************************************************************************/
2068 static int cmd_print(void)
2070 TALLOC_CTX *ctx = talloc_tos();
2071 char *lname = NULL;
2072 char *rname = NULL;
2073 char *p = NULL;
2075 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2076 d_printf("print <filename>\n");
2077 return 1;
2080 rname = talloc_strdup(ctx, lname);
2081 if (!rname) {
2082 return 1;
2084 p = strrchr_m(rname,'/');
2085 if (p) {
2086 rname = talloc_asprintf(ctx,
2087 "%s-%d",
2088 p+1,
2089 (int)sys_getpid());
2091 if (strequal(lname,"-")) {
2092 rname = talloc_asprintf(ctx,
2093 "stdin-%d",
2094 (int)sys_getpid());
2096 if (!rname) {
2097 return 1;
2100 return do_put(rname, lname, false);
2103 /****************************************************************************
2104 Show a print queue entry.
2105 ****************************************************************************/
2107 static void queue_fn(struct print_job_info *p)
2109 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2112 /****************************************************************************
2113 Show a print queue.
2114 ****************************************************************************/
2116 static int cmd_queue(void)
2118 cli_print_queue(cli, queue_fn);
2119 return 0;
2122 /****************************************************************************
2123 Delete some files.
2124 ****************************************************************************/
2126 static void do_del(file_info *finfo, const char *dir)
2128 TALLOC_CTX *ctx = talloc_tos();
2129 char *mask = NULL;
2131 mask = talloc_asprintf(ctx,
2132 "%s%c%s",
2133 dir,
2134 CLI_DIRSEP_CHAR,
2135 finfo->name);
2136 if (!mask) {
2137 return;
2140 if (finfo->mode & aDIR) {
2141 TALLOC_FREE(mask);
2142 return;
2145 if (!cli_unlink(finfo->cli, mask)) {
2146 d_printf("%s deleting remote file %s\n",
2147 cli_errstr(finfo->cli),mask);
2149 TALLOC_FREE(mask);
2152 /****************************************************************************
2153 Delete some files.
2154 ****************************************************************************/
2156 static int cmd_del(void)
2158 TALLOC_CTX *ctx = talloc_tos();
2159 char *mask = NULL;
2160 char *buf = NULL;
2161 uint16 attribute = aSYSTEM | aHIDDEN;
2163 if (recurse) {
2164 attribute |= aDIR;
2167 mask = talloc_strdup(ctx, client_get_cur_dir());
2168 if (!mask) {
2169 return 1;
2171 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2172 d_printf("del <filename>\n");
2173 return 1;
2175 mask = talloc_asprintf_append(mask, buf);
2176 if (!mask) {
2177 return 1;
2180 do_list(mask,attribute,do_del,false,false);
2181 return 0;
2184 /****************************************************************************
2185 Wildcard delete some files.
2186 ****************************************************************************/
2188 static int cmd_wdel(void)
2190 TALLOC_CTX *ctx = talloc_tos();
2191 char *mask = NULL;
2192 char *buf = NULL;
2193 uint16 attribute;
2194 struct cli_state *targetcli;
2195 char *targetname = NULL;
2197 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2198 d_printf("wdel 0x<attrib> <wcard>\n");
2199 return 1;
2202 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2204 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2205 d_printf("wdel 0x<attrib> <wcard>\n");
2206 return 1;
2209 mask = talloc_asprintf(ctx, "%s%s",
2210 client_get_cur_dir(),
2211 buf);
2212 if (!mask) {
2213 return 1;
2216 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2217 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2218 return 1;
2221 if (!cli_unlink_full(targetcli, targetname, attribute)) {
2222 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2224 return 0;
2227 /****************************************************************************
2228 ****************************************************************************/
2230 static int cmd_open(void)
2232 TALLOC_CTX *ctx = talloc_tos();
2233 char *mask = NULL;
2234 char *buf = NULL;
2235 char *targetname = NULL;
2236 struct cli_state *targetcli;
2237 int fnum;
2239 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2240 d_printf("open <filename>\n");
2241 return 1;
2243 mask = talloc_asprintf(ctx,
2244 "%s%s",
2245 client_get_cur_dir(),
2246 buf);
2247 if (!mask) {
2248 return 1;
2251 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2252 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2253 return 1;
2256 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA|FILE_WRITE_DATA);
2257 if (fnum == -1) {
2258 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA);
2259 if (fnum != -1) {
2260 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2261 } else {
2262 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2264 } else {
2265 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2267 return 0;
2270 static int cmd_posix_encrypt(void)
2272 TALLOC_CTX *ctx = talloc_tos();
2273 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2275 if (cli->use_kerberos) {
2276 status = cli_gss_smb_encryption_start(cli);
2277 } else {
2278 char *domain = NULL;
2279 char *user = NULL;
2280 char *password = NULL;
2282 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2283 d_printf("posix_encrypt domain user password\n");
2284 return 1;
2287 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2288 d_printf("posix_encrypt domain user password\n");
2289 return 1;
2292 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2293 d_printf("posix_encrypt domain user password\n");
2294 return 1;
2297 status = cli_raw_ntlm_smb_encryption_start(cli,
2298 user,
2299 password,
2300 domain);
2303 if (!NT_STATUS_IS_OK(status)) {
2304 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2305 } else {
2306 d_printf("encryption on\n");
2307 smb_encrypt = true;
2310 return 0;
2313 /****************************************************************************
2314 ****************************************************************************/
2316 static int cmd_posix_open(void)
2318 TALLOC_CTX *ctx = talloc_tos();
2319 char *mask = NULL;
2320 char *buf = NULL;
2321 char *targetname = NULL;
2322 struct cli_state *targetcli;
2323 mode_t mode;
2324 int fnum;
2326 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2327 d_printf("posix_open <filename> 0<mode>\n");
2328 return 1;
2330 mask = talloc_asprintf(ctx,
2331 "%s%s",
2332 client_get_cur_dir(),
2333 buf);
2334 if (!mask) {
2335 return 1;
2338 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2339 d_printf("posix_open <filename> 0<mode>\n");
2340 return 1;
2342 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2344 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2345 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2346 return 1;
2349 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode);
2350 if (fnum == -1) {
2351 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode);
2352 if (fnum != -1) {
2353 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2354 } else {
2355 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2357 } else {
2358 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2361 return 0;
2364 static int cmd_posix_mkdir(void)
2366 TALLOC_CTX *ctx = talloc_tos();
2367 char *mask = NULL;
2368 char *buf = NULL;
2369 char *targetname = NULL;
2370 struct cli_state *targetcli;
2371 mode_t mode;
2372 int fnum;
2374 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2375 d_printf("posix_mkdir <filename> 0<mode>\n");
2376 return 1;
2378 mask = talloc_asprintf(ctx,
2379 "%s%s",
2380 client_get_cur_dir(),
2381 buf);
2382 if (!mask) {
2383 return 1;
2386 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2387 d_printf("posix_mkdir <filename> 0<mode>\n");
2388 return 1;
2390 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2392 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2393 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2394 return 1;
2397 fnum = cli_posix_mkdir(targetcli, targetname, mode);
2398 if (fnum == -1) {
2399 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2400 } else {
2401 d_printf("posix_mkdir created directory %s\n", targetname);
2403 return 0;
2406 static int cmd_posix_unlink(void)
2408 TALLOC_CTX *ctx = talloc_tos();
2409 char *mask = NULL;
2410 char *buf = NULL;
2411 char *targetname = NULL;
2412 struct cli_state *targetcli;
2414 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2415 d_printf("posix_unlink <filename>\n");
2416 return 1;
2418 mask = talloc_asprintf(ctx,
2419 "%s%s",
2420 client_get_cur_dir(),
2421 buf);
2422 if (!mask) {
2423 return 1;
2426 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2427 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2428 return 1;
2431 if (!cli_posix_unlink(targetcli, targetname)) {
2432 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2433 } else {
2434 d_printf("posix_unlink deleted file %s\n", targetname);
2437 return 0;
2440 static int cmd_posix_rmdir(void)
2442 TALLOC_CTX *ctx = talloc_tos();
2443 char *mask = NULL;
2444 char *buf = NULL;
2445 char *targetname = NULL;
2446 struct cli_state *targetcli;
2448 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2449 d_printf("posix_rmdir <filename>\n");
2450 return 1;
2452 mask = talloc_asprintf(ctx,
2453 "%s%s",
2454 client_get_cur_dir(),
2455 buf);
2456 if (!mask) {
2457 return 1;
2460 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2461 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2462 return 1;
2465 if (!cli_posix_rmdir(targetcli, targetname)) {
2466 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2467 } else {
2468 d_printf("posix_rmdir deleted directory %s\n", targetname);
2471 return 0;
2474 static int cmd_close(void)
2476 TALLOC_CTX *ctx = talloc_tos();
2477 char *buf = NULL;
2478 int fnum;
2480 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2481 d_printf("close <fnum>\n");
2482 return 1;
2485 fnum = atoi(buf);
2486 /* We really should use the targetcli here.... */
2487 if (!cli_close(cli, fnum)) {
2488 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2489 return 1;
2491 return 0;
2494 static int cmd_posix(void)
2496 TALLOC_CTX *ctx = talloc_tos();
2497 uint16 major, minor;
2498 uint32 caplow, caphigh;
2499 char *caps;
2501 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2502 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2503 return 1;
2506 if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2507 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2508 return 1;
2511 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2513 caps = talloc_strdup(ctx, "");
2514 if (!caps) {
2515 return 1;
2517 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2518 caps = talloc_asprintf_append(caps, "locks ");
2519 if (!caps) {
2520 return 1;
2523 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2524 caps = talloc_asprintf_append(caps, "acls ");
2525 if (!caps) {
2526 return 1;
2529 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2530 caps = talloc_asprintf_append(caps, "eas ");
2531 if (!caps) {
2532 return 1;
2535 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2536 caps = talloc_asprintf_append(caps, "pathnames ");
2537 if (!caps) {
2538 return 1;
2541 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2542 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2543 if (!caps) {
2544 return 1;
2547 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2548 caps = talloc_asprintf_append(caps, "large_read ");
2549 if (!caps) {
2550 return 1;
2553 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2554 caps = talloc_asprintf_append(caps, "large_write ");
2555 if (!caps) {
2556 return 1;
2559 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2560 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2561 if (!caps) {
2562 return 1;
2565 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2566 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2567 if (!caps) {
2568 return 1;
2572 if (*caps && caps[strlen(caps)-1] == ' ') {
2573 caps[strlen(caps)-1] = '\0';
2576 d_printf("Server supports CIFS capabilities %s\n", caps);
2578 if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2579 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2580 return 1;
2583 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2584 CLI_DIRSEP_CHAR = '/';
2585 *CLI_DIRSEP_STR = '/';
2586 client_set_cur_dir(CLI_DIRSEP_STR);
2589 return 0;
2592 static int cmd_lock(void)
2594 TALLOC_CTX *ctx = talloc_tos();
2595 char *buf = NULL;
2596 SMB_BIG_UINT start, len;
2597 enum brl_type lock_type;
2598 int fnum;
2600 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2601 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2602 return 1;
2604 fnum = atoi(buf);
2606 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2607 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2608 return 1;
2611 if (*buf == 'r' || *buf == 'R') {
2612 lock_type = READ_LOCK;
2613 } else if (*buf == 'w' || *buf == 'W') {
2614 lock_type = WRITE_LOCK;
2615 } else {
2616 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2617 return 1;
2620 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2621 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2622 return 1;
2625 start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2627 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2628 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2629 return 1;
2632 len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2634 if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
2635 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2638 return 0;
2641 static int cmd_unlock(void)
2643 TALLOC_CTX *ctx = talloc_tos();
2644 char *buf = NULL;
2645 SMB_BIG_UINT start, len;
2646 int fnum;
2648 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2649 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2650 return 1;
2652 fnum = atoi(buf);
2654 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2655 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2656 return 1;
2659 start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2661 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2662 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2663 return 1;
2666 len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
2668 if (!cli_posix_unlock(cli, fnum, start, len)) {
2669 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2672 return 0;
2676 /****************************************************************************
2677 Remove a directory.
2678 ****************************************************************************/
2680 static int cmd_rmdir(void)
2682 TALLOC_CTX *ctx = talloc_tos();
2683 char *mask = NULL;
2684 char *buf = NULL;
2685 char *targetname = NULL;
2686 struct cli_state *targetcli;
2688 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2689 d_printf("rmdir <dirname>\n");
2690 return 1;
2692 mask = talloc_asprintf(ctx,
2693 "%s%s",
2694 client_get_cur_dir(),
2695 buf);
2696 if (!mask) {
2697 return 1;
2700 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2701 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2702 return 1;
2705 if (!cli_rmdir(targetcli, targetname)) {
2706 d_printf("%s removing remote directory file %s\n",
2707 cli_errstr(targetcli),mask);
2710 return 0;
2713 /****************************************************************************
2714 UNIX hardlink.
2715 ****************************************************************************/
2717 static int cmd_link(void)
2719 TALLOC_CTX *ctx = talloc_tos();
2720 char *oldname = NULL;
2721 char *newname = NULL;
2722 char *buf = NULL;
2723 char *buf2 = NULL;
2724 char *targetname = NULL;
2725 struct cli_state *targetcli;
2727 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2728 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2729 d_printf("link <oldname> <newname>\n");
2730 return 1;
2732 oldname = talloc_asprintf(ctx,
2733 "%s%s",
2734 client_get_cur_dir(),
2735 buf);
2736 if (!oldname) {
2737 return 1;
2739 newname = talloc_asprintf(ctx,
2740 "%s%s",
2741 client_get_cur_dir(),
2742 buf2);
2743 if (!newname) {
2744 return 1;
2747 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2748 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2749 return 1;
2752 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2753 d_printf("Server doesn't support UNIX CIFS calls.\n");
2754 return 1;
2757 if (!cli_unix_hardlink(targetcli, targetname, newname)) {
2758 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2759 return 1;
2761 return 0;
2764 /****************************************************************************
2765 UNIX symlink.
2766 ****************************************************************************/
2768 static int cmd_symlink(void)
2770 TALLOC_CTX *ctx = talloc_tos();
2771 char *oldname = NULL;
2772 char *newname = NULL;
2773 char *buf = NULL;
2774 char *buf2 = NULL;
2775 char *targetname = NULL;
2776 struct cli_state *targetcli;
2778 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2779 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2780 d_printf("symlink <oldname> <newname>\n");
2781 return 1;
2783 oldname = talloc_asprintf(ctx,
2784 "%s%s",
2785 client_get_cur_dir(),
2786 buf);
2787 if (!oldname) {
2788 return 1;
2790 newname = talloc_asprintf(ctx,
2791 "%s%s",
2792 client_get_cur_dir(),
2793 buf2);
2794 if (!newname) {
2795 return 1;
2798 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2799 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2800 return 1;
2803 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2804 d_printf("Server doesn't support UNIX CIFS calls.\n");
2805 return 1;
2808 if (!cli_unix_symlink(targetcli, targetname, newname)) {
2809 d_printf("%s symlinking files (%s -> %s)\n",
2810 cli_errstr(targetcli), newname, targetname);
2811 return 1;
2814 return 0;
2817 /****************************************************************************
2818 UNIX chmod.
2819 ****************************************************************************/
2821 static int cmd_chmod(void)
2823 TALLOC_CTX *ctx = talloc_tos();
2824 char *src = NULL;
2825 char *buf = NULL;
2826 char *buf2 = NULL;
2827 char *targetname = NULL;
2828 struct cli_state *targetcli;
2829 mode_t mode;
2831 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2832 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2833 d_printf("chmod mode file\n");
2834 return 1;
2836 src = talloc_asprintf(ctx,
2837 "%s%s",
2838 client_get_cur_dir(),
2839 buf2);
2840 if (!src) {
2841 return 1;
2844 mode = (mode_t)strtol(buf, NULL, 8);
2846 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2847 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2848 return 1;
2851 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2852 d_printf("Server doesn't support UNIX CIFS calls.\n");
2853 return 1;
2856 if (!cli_unix_chmod(targetcli, targetname, mode)) {
2857 d_printf("%s chmod file %s 0%o\n",
2858 cli_errstr(targetcli), src, (unsigned int)mode);
2859 return 1;
2862 return 0;
2865 static const char *filetype_to_str(mode_t mode)
2867 if (S_ISREG(mode)) {
2868 return "regular file";
2869 } else if (S_ISDIR(mode)) {
2870 return "directory";
2871 } else
2872 #ifdef S_ISCHR
2873 if (S_ISCHR(mode)) {
2874 return "character device";
2875 } else
2876 #endif
2877 #ifdef S_ISBLK
2878 if (S_ISBLK(mode)) {
2879 return "block device";
2880 } else
2881 #endif
2882 #ifdef S_ISFIFO
2883 if (S_ISFIFO(mode)) {
2884 return "fifo";
2885 } else
2886 #endif
2887 #ifdef S_ISLNK
2888 if (S_ISLNK(mode)) {
2889 return "symbolic link";
2890 } else
2891 #endif
2892 #ifdef S_ISSOCK
2893 if (S_ISSOCK(mode)) {
2894 return "socket";
2895 } else
2896 #endif
2897 return "";
2900 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2902 if (m & bt) {
2903 return ret;
2904 } else {
2905 return '-';
2909 static char *unix_mode_to_str(char *s, mode_t m)
2911 char *p = s;
2912 const char *str = filetype_to_str(m);
2914 switch(str[0]) {
2915 case 'd':
2916 *p++ = 'd';
2917 break;
2918 case 'c':
2919 *p++ = 'c';
2920 break;
2921 case 'b':
2922 *p++ = 'b';
2923 break;
2924 case 'f':
2925 *p++ = 'p';
2926 break;
2927 case 's':
2928 *p++ = str[1] == 'y' ? 'l' : 's';
2929 break;
2930 case 'r':
2931 default:
2932 *p++ = '-';
2933 break;
2935 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2936 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2937 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2938 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2939 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2940 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2941 *p++ = rwx_to_str(m, S_IROTH, 'r');
2942 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2943 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2944 *p++ = '\0';
2945 return s;
2948 /****************************************************************************
2949 Utility function for UNIX getfacl.
2950 ****************************************************************************/
2952 static char *perms_to_string(fstring permstr, unsigned char perms)
2954 fstrcpy(permstr, "---");
2955 if (perms & SMB_POSIX_ACL_READ) {
2956 permstr[0] = 'r';
2958 if (perms & SMB_POSIX_ACL_WRITE) {
2959 permstr[1] = 'w';
2961 if (perms & SMB_POSIX_ACL_EXECUTE) {
2962 permstr[2] = 'x';
2964 return permstr;
2967 /****************************************************************************
2968 UNIX getfacl.
2969 ****************************************************************************/
2971 static int cmd_getfacl(void)
2973 TALLOC_CTX *ctx = talloc_tos();
2974 char *src = NULL;
2975 char *name = NULL;
2976 char *targetname = NULL;
2977 struct cli_state *targetcli;
2978 uint16 major, minor;
2979 uint32 caplow, caphigh;
2980 char *retbuf = NULL;
2981 size_t rb_size = 0;
2982 SMB_STRUCT_STAT sbuf;
2983 uint16 num_file_acls = 0;
2984 uint16 num_dir_acls = 0;
2985 uint16 i;
2987 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2988 d_printf("getfacl filename\n");
2989 return 1;
2991 src = talloc_asprintf(ctx,
2992 "%s%s",
2993 client_get_cur_dir(),
2994 name);
2995 if (!src) {
2996 return 1;
2999 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3000 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3001 return 1;
3004 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3005 d_printf("Server doesn't support UNIX CIFS calls.\n");
3006 return 1;
3009 if (!cli_unix_extensions_version(targetcli, &major, &minor,
3010 &caplow, &caphigh)) {
3011 d_printf("Can't get UNIX CIFS version from server.\n");
3012 return 1;
3015 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3016 d_printf("This server supports UNIX extensions "
3017 "but doesn't support POSIX ACLs.\n");
3018 return 1;
3021 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3022 d_printf("%s getfacl doing a stat on file %s\n",
3023 cli_errstr(targetcli), src);
3024 return 1;
3027 if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
3028 d_printf("%s getfacl file %s\n",
3029 cli_errstr(targetcli), src);
3030 return 1;
3033 /* ToDo : Print out the ACL values. */
3034 if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
3035 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3036 src, (unsigned int)CVAL(retbuf,0) );
3037 SAFE_FREE(retbuf);
3038 return 1;
3041 num_file_acls = SVAL(retbuf,2);
3042 num_dir_acls = SVAL(retbuf,4);
3043 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3044 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3045 src,
3046 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3047 (unsigned int)rb_size);
3049 SAFE_FREE(retbuf);
3050 return 1;
3053 d_printf("# file: %s\n", src);
3054 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
3056 if (num_file_acls == 0 && num_dir_acls == 0) {
3057 d_printf("No acls found.\n");
3060 for (i = 0; i < num_file_acls; i++) {
3061 uint32 uorg;
3062 fstring permstring;
3063 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3064 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3066 switch(tagtype) {
3067 case SMB_POSIX_ACL_USER_OBJ:
3068 d_printf("user::");
3069 break;
3070 case SMB_POSIX_ACL_USER:
3071 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3072 d_printf("user:%u:", uorg);
3073 break;
3074 case SMB_POSIX_ACL_GROUP_OBJ:
3075 d_printf("group::");
3076 break;
3077 case SMB_POSIX_ACL_GROUP:
3078 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3079 d_printf("group:%u", uorg);
3080 break;
3081 case SMB_POSIX_ACL_MASK:
3082 d_printf("mask::");
3083 break;
3084 case SMB_POSIX_ACL_OTHER:
3085 d_printf("other::");
3086 break;
3087 default:
3088 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3089 src, (unsigned int)tagtype );
3090 SAFE_FREE(retbuf);
3091 return 1;
3094 d_printf("%s\n", perms_to_string(permstring, perms));
3097 for (i = 0; i < num_dir_acls; i++) {
3098 uint32 uorg;
3099 fstring permstring;
3100 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3101 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3103 switch(tagtype) {
3104 case SMB_POSIX_ACL_USER_OBJ:
3105 d_printf("default:user::");
3106 break;
3107 case SMB_POSIX_ACL_USER:
3108 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3109 d_printf("default:user:%u:", uorg);
3110 break;
3111 case SMB_POSIX_ACL_GROUP_OBJ:
3112 d_printf("default:group::");
3113 break;
3114 case SMB_POSIX_ACL_GROUP:
3115 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3116 d_printf("default:group:%u", uorg);
3117 break;
3118 case SMB_POSIX_ACL_MASK:
3119 d_printf("default:mask::");
3120 break;
3121 case SMB_POSIX_ACL_OTHER:
3122 d_printf("default:other::");
3123 break;
3124 default:
3125 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3126 src, (unsigned int)tagtype );
3127 SAFE_FREE(retbuf);
3128 return 1;
3131 d_printf("%s\n", perms_to_string(permstring, perms));
3134 SAFE_FREE(retbuf);
3135 return 0;
3138 /****************************************************************************
3139 UNIX stat.
3140 ****************************************************************************/
3142 static int cmd_stat(void)
3144 TALLOC_CTX *ctx = talloc_tos();
3145 char *src = NULL;
3146 char *name = NULL;
3147 char *targetname = NULL;
3148 struct cli_state *targetcli;
3149 fstring mode_str;
3150 SMB_STRUCT_STAT sbuf;
3151 struct tm *lt;
3153 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3154 d_printf("stat file\n");
3155 return 1;
3157 src = talloc_asprintf(ctx,
3158 "%s%s",
3159 client_get_cur_dir(),
3160 name);
3161 if (!src) {
3162 return 1;
3165 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3166 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3167 return 1;
3170 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3171 d_printf("Server doesn't support UNIX CIFS calls.\n");
3172 return 1;
3175 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3176 d_printf("%s stat file %s\n",
3177 cli_errstr(targetcli), src);
3178 return 1;
3181 /* Print out the stat values. */
3182 d_printf("File: %s\n", src);
3183 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3184 (double)sbuf.st_size,
3185 (unsigned int)sbuf.st_blocks,
3186 filetype_to_str(sbuf.st_mode));
3188 #if defined(S_ISCHR) && defined(S_ISBLK)
3189 if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
3190 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3191 (double)sbuf.st_ino,
3192 (unsigned int)sbuf.st_nlink,
3193 unix_dev_major(sbuf.st_rdev),
3194 unix_dev_minor(sbuf.st_rdev));
3195 } else
3196 #endif
3197 d_printf("Inode: %.0f\tLinks: %u\n",
3198 (double)sbuf.st_ino,
3199 (unsigned int)sbuf.st_nlink);
3201 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3202 ((int)sbuf.st_mode & 0777),
3203 unix_mode_to_str(mode_str, sbuf.st_mode),
3204 (unsigned int)sbuf.st_uid,
3205 (unsigned int)sbuf.st_gid);
3207 lt = localtime(&sbuf.st_atime);
3208 if (lt) {
3209 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3210 } else {
3211 fstrcpy(mode_str, "unknown");
3213 d_printf("Access: %s\n", mode_str);
3215 lt = localtime(&sbuf.st_mtime);
3216 if (lt) {
3217 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3218 } else {
3219 fstrcpy(mode_str, "unknown");
3221 d_printf("Modify: %s\n", mode_str);
3223 lt = localtime(&sbuf.st_ctime);
3224 if (lt) {
3225 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3226 } else {
3227 fstrcpy(mode_str, "unknown");
3229 d_printf("Change: %s\n", mode_str);
3231 return 0;
3235 /****************************************************************************
3236 UNIX chown.
3237 ****************************************************************************/
3239 static int cmd_chown(void)
3241 TALLOC_CTX *ctx = talloc_tos();
3242 char *src = NULL;
3243 uid_t uid;
3244 gid_t gid;
3245 char *buf, *buf2, *buf3;
3246 struct cli_state *targetcli;
3247 char *targetname = NULL;
3249 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3250 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3251 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3252 d_printf("chown uid gid file\n");
3253 return 1;
3256 uid = (uid_t)atoi(buf);
3257 gid = (gid_t)atoi(buf2);
3259 src = talloc_asprintf(ctx,
3260 "%s%s",
3261 client_get_cur_dir(),
3262 buf3);
3263 if (!src) {
3264 return 1;
3266 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname) ) {
3267 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3268 return 1;
3271 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3272 d_printf("Server doesn't support UNIX CIFS calls.\n");
3273 return 1;
3276 if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
3277 d_printf("%s chown file %s uid=%d, gid=%d\n",
3278 cli_errstr(targetcli), src, (int)uid, (int)gid);
3279 return 1;
3282 return 0;
3285 /****************************************************************************
3286 Rename some file.
3287 ****************************************************************************/
3289 static int cmd_rename(void)
3291 TALLOC_CTX *ctx = talloc_tos();
3292 char *src, *dest;
3293 char *buf, *buf2;
3294 struct cli_state *targetcli;
3295 char *targetsrc;
3296 char *targetdest;
3298 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3299 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3300 d_printf("rename <src> <dest>\n");
3301 return 1;
3304 src = talloc_asprintf(ctx,
3305 "%s%s",
3306 client_get_cur_dir(),
3307 buf);
3308 if (!src) {
3309 return 1;
3312 dest = talloc_asprintf(ctx,
3313 "%s%s",
3314 client_get_cur_dir(),
3315 buf2);
3316 if (!dest) {
3317 return 1;
3320 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetsrc)) {
3321 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3322 return 1;
3325 if (!cli_resolve_path(ctx, "", cli, dest, &targetcli, &targetdest)) {
3326 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3327 return 1;
3330 if (!cli_rename(targetcli, targetsrc, targetdest)) {
3331 d_printf("%s renaming files %s -> %s \n",
3332 cli_errstr(targetcli),
3333 targetsrc,
3334 targetdest);
3335 return 1;
3338 return 0;
3341 /****************************************************************************
3342 Print the volume name.
3343 ****************************************************************************/
3345 static int cmd_volume(void)
3347 fstring volname;
3348 uint32 serial_num;
3349 time_t create_date;
3351 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3352 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3353 return 1;
3356 d_printf("Volume: |%s| serial number 0x%x\n",
3357 volname, (unsigned int)serial_num);
3358 return 0;
3361 /****************************************************************************
3362 Hard link files using the NT call.
3363 ****************************************************************************/
3365 static int cmd_hardlink(void)
3367 TALLOC_CTX *ctx = talloc_tos();
3368 char *src, *dest;
3369 char *buf, *buf2;
3370 struct cli_state *targetcli;
3371 char *targetname;
3373 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3374 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3375 d_printf("hardlink <src> <dest>\n");
3376 return 1;
3379 src = talloc_asprintf(ctx,
3380 "%s%s",
3381 client_get_cur_dir(),
3382 buf);
3383 if (!src) {
3384 return 1;
3387 dest = talloc_asprintf(ctx,
3388 "%s%s",
3389 client_get_cur_dir(),
3390 buf2);
3391 if (!dest) {
3392 return 1;
3395 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3396 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3397 return 1;
3400 if (!cli_nt_hardlink(targetcli, targetname, dest)) {
3401 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3402 return 1;
3405 return 0;
3408 /****************************************************************************
3409 Toggle the prompt flag.
3410 ****************************************************************************/
3412 static int cmd_prompt(void)
3414 prompt = !prompt;
3415 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3416 return 1;
3419 /****************************************************************************
3420 Set the newer than time.
3421 ****************************************************************************/
3423 static int cmd_newer(void)
3425 TALLOC_CTX *ctx = talloc_tos();
3426 char *buf;
3427 bool ok;
3428 SMB_STRUCT_STAT sbuf;
3430 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3431 if (ok && (sys_stat(buf,&sbuf) == 0)) {
3432 newer_than = sbuf.st_mtime;
3433 DEBUG(1,("Getting files newer than %s",
3434 time_to_asc(newer_than)));
3435 } else {
3436 newer_than = 0;
3439 if (ok && newer_than == 0) {
3440 d_printf("Error setting newer-than time\n");
3441 return 1;
3444 return 0;
3447 /****************************************************************************
3448 Set the archive level.
3449 ****************************************************************************/
3451 static int cmd_archive(void)
3453 TALLOC_CTX *ctx = talloc_tos();
3454 char *buf;
3456 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3457 archive_level = atoi(buf);
3458 } else {
3459 d_printf("Archive level is %d\n",archive_level);
3462 return 0;
3465 /****************************************************************************
3466 Toggle the lowercaseflag.
3467 ****************************************************************************/
3469 static int cmd_lowercase(void)
3471 lowercase = !lowercase;
3472 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3473 return 0;
3476 /****************************************************************************
3477 Toggle the case sensitive flag.
3478 ****************************************************************************/
3480 static int cmd_setcase(void)
3482 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3484 cli_set_case_sensitive(cli, !orig_case_sensitive);
3485 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3486 "on":"off"));
3487 return 0;
3490 /****************************************************************************
3491 Toggle the showacls flag.
3492 ****************************************************************************/
3494 static int cmd_showacls(void)
3496 showacls = !showacls;
3497 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3498 return 0;
3502 /****************************************************************************
3503 Toggle the recurse flag.
3504 ****************************************************************************/
3506 static int cmd_recurse(void)
3508 recurse = !recurse;
3509 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3510 return 0;
3513 /****************************************************************************
3514 Toggle the translate flag.
3515 ****************************************************************************/
3517 static int cmd_translate(void)
3519 translation = !translation;
3520 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3521 translation?"on":"off"));
3522 return 0;
3525 /****************************************************************************
3526 Do the lcd command.
3527 ****************************************************************************/
3529 static int cmd_lcd(void)
3531 TALLOC_CTX *ctx = talloc_tos();
3532 char *buf;
3533 char *d;
3535 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3536 chdir(buf);
3538 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3539 if (!d) {
3540 return 1;
3542 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3543 return 0;
3546 /****************************************************************************
3547 Get a file restarting at end of local file.
3548 ****************************************************************************/
3550 static int cmd_reget(void)
3552 TALLOC_CTX *ctx = talloc_tos();
3553 char *local_name = NULL;
3554 char *remote_name = NULL;
3555 char *fname = NULL;
3556 char *p = NULL;
3558 remote_name = talloc_asprintf(ctx,
3559 "%s%s",
3560 client_get_cur_dir(),
3561 CLI_DIRSEP_STR);
3562 if (!remote_name) {
3563 return 1;
3566 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3567 d_printf("reget <filename>\n");
3568 return 1;
3570 remote_name = talloc_asprintf_append(remote_name, fname);
3571 if (!remote_name) {
3572 return 1;
3574 remote_name = clean_name(ctx,remote_name);
3575 if (!remote_name) {
3576 return 1;
3579 local_name = fname;
3580 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3581 if (p) {
3582 local_name = p;
3585 return do_get(remote_name, local_name, true);
3588 /****************************************************************************
3589 Put a file restarting at end of local file.
3590 ****************************************************************************/
3592 static int cmd_reput(void)
3594 TALLOC_CTX *ctx = talloc_tos();
3595 char *local_name = NULL;
3596 char *remote_name = NULL;
3597 char *buf;
3598 SMB_STRUCT_STAT st;
3600 remote_name = talloc_asprintf(ctx,
3601 "%s%s",
3602 client_get_cur_dir(),
3603 CLI_DIRSEP_STR);
3604 if (!remote_name) {
3605 return 1;
3608 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3609 d_printf("reput <filename>\n");
3610 return 1;
3613 if (!file_exist(local_name, &st)) {
3614 d_printf("%s does not exist\n", local_name);
3615 return 1;
3618 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3619 remote_name = talloc_asprintf_append(remote_name,
3620 buf);
3621 } else {
3622 remote_name = talloc_asprintf_append(remote_name,
3623 local_name);
3625 if (!remote_name) {
3626 return 1;
3629 remote_name = clean_name(ctx, remote_name);
3630 if (!remote_name) {
3631 return 1;
3634 return do_put(remote_name, local_name, true);
3637 /****************************************************************************
3638 List a share name.
3639 ****************************************************************************/
3641 static void browse_fn(const char *name, uint32 m,
3642 const char *comment, void *state)
3644 const char *typestr = "";
3646 switch (m & 7) {
3647 case STYPE_DISKTREE:
3648 typestr = "Disk";
3649 break;
3650 case STYPE_PRINTQ:
3651 typestr = "Printer";
3652 break;
3653 case STYPE_DEVICE:
3654 typestr = "Device";
3655 break;
3656 case STYPE_IPC:
3657 typestr = "IPC";
3658 break;
3660 /* FIXME: If the remote machine returns non-ascii characters
3661 in any of these fields, they can corrupt the output. We
3662 should remove them. */
3663 if (!grepable) {
3664 d_printf("\t%-15s %-10.10s%s\n",
3665 name,typestr,comment);
3666 } else {
3667 d_printf ("%s|%s|%s\n",typestr,name,comment);
3671 static bool browse_host_rpc(bool sort)
3673 NTSTATUS status;
3674 struct rpc_pipe_client *pipe_hnd;
3675 TALLOC_CTX *frame = talloc_stackframe();
3676 ENUM_HND enum_hnd;
3677 WERROR werr;
3678 SRV_SHARE_INFO_CTR ctr;
3679 int i;
3681 init_enum_hnd(&enum_hnd, 0);
3683 pipe_hnd = cli_rpc_pipe_open_noauth(cli, PI_SRVSVC, &status);
3685 if (pipe_hnd == NULL) {
3686 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3687 nt_errstr(status)));
3688 TALLOC_FREE(frame);
3689 return false;
3692 werr = rpccli_srvsvc_net_share_enum(pipe_hnd, frame, 1, &ctr,
3693 0xffffffff, &enum_hnd);
3695 if (!W_ERROR_IS_OK(werr)) {
3696 cli_rpc_pipe_close(pipe_hnd);
3697 TALLOC_FREE(frame);
3698 return false;
3701 for (i=0; i<ctr.num_entries; i++) {
3702 SRV_SHARE_INFO_1 *info = &ctr.share.info1[i];
3703 char *name, *comment;
3704 name = rpcstr_pull_unistr2_talloc(
3705 frame, &info->info_1_str.uni_netname);
3706 comment = rpcstr_pull_unistr2_talloc(
3707 frame, &info->info_1_str.uni_remark);
3708 browse_fn(name, info->info_1.type, comment, NULL);
3711 cli_rpc_pipe_close(pipe_hnd);
3712 TALLOC_FREE(frame);
3713 return true;
3716 /****************************************************************************
3717 Try and browse available connections on a host.
3718 ****************************************************************************/
3720 static bool browse_host(bool sort)
3722 int ret;
3723 if (!grepable) {
3724 d_printf("\n\tSharename Type Comment\n");
3725 d_printf("\t--------- ---- -------\n");
3728 if (browse_host_rpc(sort)) {
3729 return true;
3732 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3733 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3735 return (ret != -1);
3738 /****************************************************************************
3739 List a server name.
3740 ****************************************************************************/
3742 static void server_fn(const char *name, uint32 m,
3743 const char *comment, void *state)
3746 if (!grepable){
3747 d_printf("\t%-16s %s\n", name, comment);
3748 } else {
3749 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3753 /****************************************************************************
3754 Try and browse available connections on a host.
3755 ****************************************************************************/
3757 static bool list_servers(const char *wk_grp)
3759 fstring state;
3761 if (!cli->server_domain)
3762 return false;
3764 if (!grepable) {
3765 d_printf("\n\tServer Comment\n");
3766 d_printf("\t--------- -------\n");
3768 fstrcpy( state, "Server" );
3769 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3770 state);
3772 if (!grepable) {
3773 d_printf("\n\tWorkgroup Master\n");
3774 d_printf("\t--------- -------\n");
3777 fstrcpy( state, "Workgroup" );
3778 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3779 server_fn, state);
3780 return true;
3783 /****************************************************************************
3784 Print or set current VUID
3785 ****************************************************************************/
3787 static int cmd_vuid(void)
3789 TALLOC_CTX *ctx = talloc_tos();
3790 char *buf;
3792 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3793 d_printf("Current VUID is %d\n", cli->vuid);
3794 return 0;
3797 cli->vuid = atoi(buf);
3798 return 0;
3801 /****************************************************************************
3802 Setup a new VUID, by issuing a session setup
3803 ****************************************************************************/
3805 static int cmd_logon(void)
3807 TALLOC_CTX *ctx = talloc_tos();
3808 char *l_username, *l_password;
3810 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3811 d_printf("logon <username> [<password>]\n");
3812 return 0;
3815 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3816 char *pass = getpass("Password: ");
3817 if (pass) {
3818 l_password = talloc_strdup(ctx,pass);
3821 if (!l_password) {
3822 return 1;
3825 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3826 l_password, strlen(l_password),
3827 l_password, strlen(l_password),
3828 lp_workgroup()))) {
3829 d_printf("session setup failed: %s\n", cli_errstr(cli));
3830 return -1;
3833 d_printf("Current VUID is %d\n", cli->vuid);
3834 return 0;
3838 /****************************************************************************
3839 list active connections
3840 ****************************************************************************/
3842 static int cmd_list_connect(void)
3844 cli_cm_display();
3845 return 0;
3848 /****************************************************************************
3849 display the current active client connection
3850 ****************************************************************************/
3852 static int cmd_show_connect( void )
3854 TALLOC_CTX *ctx = talloc_tos();
3855 struct cli_state *targetcli;
3856 char *targetpath;
3858 if (!cli_resolve_path(ctx, "", cli, client_get_cur_dir(),
3859 &targetcli, &targetpath ) ) {
3860 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3861 return 1;
3864 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3865 return 0;
3868 /****************************************************************************
3869 iosize command
3870 ***************************************************************************/
3872 int cmd_iosize(void)
3874 TALLOC_CTX *ctx = talloc_tos();
3875 char *buf;
3876 int iosize;
3878 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3879 if (!smb_encrypt) {
3880 d_printf("iosize <n> or iosize 0x<n>. "
3881 "Minimum is 16384 (0x4000), "
3882 "max is 16776960 (0xFFFF00)\n");
3883 } else {
3884 d_printf("iosize <n> or iosize 0x<n>. "
3885 "(Encrypted connection) ,"
3886 "Minimum is 16384 (0x4000), "
3887 "max is 130048 (0x1FC00)\n");
3889 return 1;
3892 iosize = strtol(buf,NULL,0);
3893 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3894 d_printf("iosize out of range for encrypted "
3895 "connection (min = 16384 (0x4000), "
3896 "max = 130048 (0x1FC00)");
3897 return 1;
3898 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3899 d_printf("iosize out of range (min = 16384 (0x4000), "
3900 "max = 16776960 (0xFFFF00)");
3901 return 1;
3904 io_bufsize = iosize;
3905 d_printf("iosize is now %d\n", io_bufsize);
3906 return 0;
3910 /* Some constants for completing filename arguments */
3912 #define COMPL_NONE 0 /* No completions */
3913 #define COMPL_REMOTE 1 /* Complete remote filename */
3914 #define COMPL_LOCAL 2 /* Complete local filename */
3916 /* This defines the commands supported by this client.
3917 * NOTE: The "!" must be the last one in the list because it's fn pointer
3918 * field is NULL, and NULL in that field is used in process_tok()
3919 * (below) to indicate the end of the list. crh
3921 static struct {
3922 const char *name;
3923 int (*fn)(void);
3924 const char *description;
3925 char compl_args[2]; /* Completion argument info */
3926 } commands[] = {
3927 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3928 {"allinfo",cmd_allinfo,"<file> show all available info",
3929 {COMPL_NONE,COMPL_NONE}},
3930 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3931 {"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}},
3932 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3933 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3934 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3935 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3936 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3937 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3938 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3939 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3940 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3941 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3942 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3943 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3944 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3945 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3946 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3947 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3948 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3949 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3950 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3951 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3952 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3953 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3954 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3955 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3956 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3957 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3958 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3959 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3960 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3961 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3962 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3963 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3964 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3965 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3966 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3967 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3968 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3969 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3970 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3971 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
3972 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3973 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3974 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3975 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3976 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3977 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3978 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
3979 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3980 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3981 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3982 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3983 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3984 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
3985 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
3986 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
3987 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3988 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
3989 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
3990 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
3991 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3992 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
3993 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
3994 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3995 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
3996 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
3997 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
3998 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4000 /* Yes, this must be here, see crh's comment above. */
4001 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4002 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4005 /*******************************************************************
4006 Lookup a command string in the list of commands, including
4007 abbreviations.
4008 ******************************************************************/
4010 static int process_tok(char *tok)
4012 int i = 0, matches = 0;
4013 int cmd=0;
4014 int tok_len = strlen(tok);
4016 while (commands[i].fn != NULL) {
4017 if (strequal(commands[i].name,tok)) {
4018 matches = 1;
4019 cmd = i;
4020 break;
4021 } else if (strnequal(commands[i].name, tok, tok_len)) {
4022 matches++;
4023 cmd = i;
4025 i++;
4028 if (matches == 0)
4029 return(-1);
4030 else if (matches == 1)
4031 return(cmd);
4032 else
4033 return(-2);
4036 /****************************************************************************
4037 Help.
4038 ****************************************************************************/
4040 static int cmd_help(void)
4042 TALLOC_CTX *ctx = talloc_tos();
4043 int i=0,j;
4044 char *buf;
4046 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4047 if ((i = process_tok(buf)) >= 0)
4048 d_printf("HELP %s:\n\t%s\n\n",
4049 commands[i].name,commands[i].description);
4050 } else {
4051 while (commands[i].description) {
4052 for (j=0; commands[i].description && (j<5); j++) {
4053 d_printf("%-15s",commands[i].name);
4054 i++;
4056 d_printf("\n");
4059 return 0;
4062 /****************************************************************************
4063 Process a -c command string.
4064 ****************************************************************************/
4066 static int process_command_string(const char *cmd_in)
4068 TALLOC_CTX *ctx = talloc_tos();
4069 char *cmd = talloc_strdup(ctx, cmd_in);
4070 int rc = 0;
4072 if (!cmd) {
4073 return 1;
4075 /* establish the connection if not already */
4077 if (!cli) {
4078 cli = cli_cm_open(talloc_tos(), NULL, desthost,
4079 service, true, smb_encrypt);
4080 if (!cli) {
4081 return 1;
4085 while (cmd[0] != '\0') {
4086 char *line;
4087 char *p;
4088 char *tok;
4089 int i;
4091 if ((p = strchr_m(cmd, ';')) == 0) {
4092 line = cmd;
4093 cmd += strlen(cmd);
4094 } else {
4095 *p = '\0';
4096 line = cmd;
4097 cmd = p + 1;
4100 /* and get the first part of the command */
4101 cmd_ptr = line;
4102 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4103 continue;
4106 if ((i = process_tok(tok)) >= 0) {
4107 rc = commands[i].fn();
4108 } else if (i == -2) {
4109 d_printf("%s: command abbreviation ambiguous\n",tok);
4110 } else {
4111 d_printf("%s: command not found\n",tok);
4115 return rc;
4118 #define MAX_COMPLETIONS 100
4120 typedef struct {
4121 char *dirmask;
4122 char **matches;
4123 int count, samelen;
4124 const char *text;
4125 int len;
4126 } completion_remote_t;
4128 static void completion_remote_filter(const char *mnt,
4129 file_info *f,
4130 const char *mask,
4131 void *state)
4133 completion_remote_t *info = (completion_remote_t *)state;
4135 if ((info->count < MAX_COMPLETIONS - 1) &&
4136 (strncmp(info->text, f->name, info->len) == 0) &&
4137 (strcmp(f->name, ".") != 0) &&
4138 (strcmp(f->name, "..") != 0)) {
4139 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4140 info->matches[info->count] = SMB_STRDUP(f->name);
4141 else {
4142 TALLOC_CTX *ctx = talloc_stackframe();
4143 char *tmp;
4145 if (info->dirmask && info->dirmask[0] != 0) {
4146 tmp = talloc_strdup(ctx,info->dirmask);
4147 } else {
4148 tmp = talloc_strdup(ctx,"");
4150 if (!tmp) {
4151 TALLOC_FREE(ctx);
4152 return;
4154 tmp = talloc_asprintf_append(tmp, f->name);
4155 if (!tmp) {
4156 TALLOC_FREE(ctx);
4157 return;
4159 if (f->mode & aDIR) {
4160 tmp = talloc_asprintf_append(tmp, "/");
4162 if (!tmp) {
4163 TALLOC_FREE(ctx);
4164 return;
4166 info->matches[info->count] = SMB_STRDUP(tmp);
4167 TALLOC_FREE(ctx);
4169 if (info->matches[info->count] == NULL) {
4170 return;
4172 if (f->mode & aDIR) {
4173 smb_readline_ca_char(0);
4175 if (info->count == 1) {
4176 info->samelen = strlen(info->matches[info->count]);
4177 } else {
4178 while (strncmp(info->matches[info->count],
4179 info->matches[info->count-1],
4180 info->samelen) != 0) {
4181 info->samelen--;
4184 info->count++;
4188 static char **remote_completion(const char *text, int len)
4190 TALLOC_CTX *ctx = talloc_stackframe();
4191 char *dirmask = NULL;
4192 char *targetpath = NULL;
4193 struct cli_state *targetcli = NULL;
4194 int i;
4195 completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4197 /* can't have non-static intialisation on Sun CC, so do it
4198 at run time here */
4199 info.samelen = len;
4200 info.text = text;
4201 info.len = len;
4203 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4204 if (!info.matches) {
4205 TALLOC_FREE(ctx);
4206 return NULL;
4210 * We're leaving matches[0] free to fill it later with the text to
4211 * display: Either the one single match or the longest common subset
4212 * of the matches.
4214 info.matches[0] = NULL;
4215 info.count = 1;
4217 for (i = len-1; i >= 0; i--) {
4218 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4219 break;
4223 info.text = text+i+1;
4224 info.samelen = info.len = len-i-1;
4226 if (i > 0) {
4227 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4228 if (!info.dirmask) {
4229 goto cleanup;
4231 strncpy(info.dirmask, text, i+1);
4232 info.dirmask[i+1] = 0;
4233 dirmask = talloc_asprintf(ctx,
4234 "%s%*s*",
4235 client_get_cur_dir(),
4236 i-1,
4237 text);
4238 } else {
4239 info.dirmask = SMB_STRDUP("");
4240 if (!info.dirmask) {
4241 goto cleanup;
4243 dirmask = talloc_asprintf(ctx,
4244 "%s*",
4245 client_get_cur_dir());
4247 if (!dirmask) {
4248 goto cleanup;
4251 if (!cli_resolve_path(ctx, "", cli, dirmask, &targetcli, &targetpath)) {
4252 goto cleanup;
4254 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4255 completion_remote_filter, (void *)&info) < 0) {
4256 goto cleanup;
4259 if (info.count == 1) {
4261 * No matches at all, NULL indicates there is nothing
4263 SAFE_FREE(info.matches[0]);
4264 SAFE_FREE(info.matches);
4265 TALLOC_FREE(ctx);
4266 return NULL;
4269 if (info.count == 2) {
4271 * Exactly one match in matches[1], indicate this is the one
4272 * in matches[0].
4274 info.matches[0] = info.matches[1];
4275 info.matches[1] = NULL;
4276 info.count -= 1;
4277 TALLOC_FREE(ctx);
4278 return info.matches;
4282 * We got more than one possible match, set the result to the maximum
4283 * common subset
4286 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4287 info.matches[info.count] = NULL;
4288 return info.matches;
4290 cleanup:
4291 for (i = 0; i < info.count; i++) {
4292 SAFE_FREE(info.matches[i]);
4294 SAFE_FREE(info.matches);
4295 SAFE_FREE(info.dirmask);
4296 TALLOC_FREE(ctx);
4297 return NULL;
4300 static char **completion_fn(const char *text, int start, int end)
4302 smb_readline_ca_char(' ');
4304 if (start) {
4305 const char *buf, *sp;
4306 int i;
4307 char compl_type;
4309 buf = smb_readline_get_line_buffer();
4310 if (buf == NULL)
4311 return NULL;
4313 sp = strchr(buf, ' ');
4314 if (sp == NULL)
4315 return NULL;
4317 for (i = 0; commands[i].name; i++) {
4318 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4319 (commands[i].name[sp - buf] == 0)) {
4320 break;
4323 if (commands[i].name == NULL)
4324 return NULL;
4326 while (*sp == ' ')
4327 sp++;
4329 if (sp == (buf + start))
4330 compl_type = commands[i].compl_args[0];
4331 else
4332 compl_type = commands[i].compl_args[1];
4334 if (compl_type == COMPL_REMOTE)
4335 return remote_completion(text, end - start);
4336 else /* fall back to local filename completion */
4337 return NULL;
4338 } else {
4339 char **matches;
4340 int i, len, samelen = 0, count=1;
4342 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4343 if (!matches) {
4344 return NULL;
4346 matches[0] = NULL;
4348 len = strlen(text);
4349 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4350 if (strncmp(text, commands[i].name, len) == 0) {
4351 matches[count] = SMB_STRDUP(commands[i].name);
4352 if (!matches[count])
4353 goto cleanup;
4354 if (count == 1)
4355 samelen = strlen(matches[count]);
4356 else
4357 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4358 samelen--;
4359 count++;
4363 switch (count) {
4364 case 0: /* should never happen */
4365 case 1:
4366 goto cleanup;
4367 case 2:
4368 matches[0] = SMB_STRDUP(matches[1]);
4369 break;
4370 default:
4371 matches[0] = (char *)SMB_MALLOC(samelen+1);
4372 if (!matches[0])
4373 goto cleanup;
4374 strncpy(matches[0], matches[1], samelen);
4375 matches[0][samelen] = 0;
4377 matches[count] = NULL;
4378 return matches;
4380 cleanup:
4381 for (i = 0; i < count; i++)
4382 free(matches[i]);
4384 free(matches);
4385 return NULL;
4389 /****************************************************************************
4390 Make sure we swallow keepalives during idle time.
4391 ****************************************************************************/
4393 static void readline_callback(void)
4395 fd_set fds;
4396 struct timeval timeout;
4397 static time_t last_t;
4398 time_t t;
4400 t = time(NULL);
4402 if (t - last_t < 5)
4403 return;
4405 last_t = t;
4407 again:
4409 if (cli->fd == -1)
4410 return;
4412 FD_ZERO(&fds);
4413 FD_SET(cli->fd,&fds);
4415 timeout.tv_sec = 0;
4416 timeout.tv_usec = 0;
4417 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4419 /* We deliberately use receive_smb_raw instead of
4420 client_receive_smb as we want to receive
4421 session keepalives and then drop them here.
4423 if (FD_ISSET(cli->fd,&fds)) {
4424 if (receive_smb_raw(cli->fd,cli->inbuf,0,0,&cli->smb_rw_error) == -1) {
4425 DEBUG(0, ("Read from server failed, maybe it closed the "
4426 "connection\n"));
4427 return;
4429 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4430 DEBUG(0, ("Read from server "
4431 "returned unexpected packet!\n"));
4432 return;
4435 goto again;
4438 /* Ping the server to keep the connection alive using SMBecho. */
4440 unsigned char garbage[16];
4441 memset(garbage, 0xf0, sizeof(garbage));
4442 cli_echo(cli, 1, garbage, sizeof(garbage));
4446 /****************************************************************************
4447 Process commands on stdin.
4448 ****************************************************************************/
4450 static int process_stdin(void)
4452 int rc = 0;
4454 while (1) {
4455 TALLOC_CTX *frame = talloc_stackframe();
4456 char *tok = NULL;
4457 char *the_prompt = NULL;
4458 char *line = NULL;
4459 int i;
4461 /* display a prompt */
4462 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4463 TALLOC_FREE(frame);
4464 break;
4466 line = smb_readline(the_prompt, readline_callback, completion_fn);
4467 SAFE_FREE(the_prompt);
4468 if (!line) {
4469 TALLOC_FREE(frame);
4470 break;
4473 /* special case - first char is ! */
4474 if (*line == '!') {
4475 system(line + 1);
4476 SAFE_FREE(line);
4477 TALLOC_FREE(frame);
4478 continue;
4481 /* and get the first part of the command */
4482 cmd_ptr = line;
4483 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4484 TALLOC_FREE(frame);
4485 SAFE_FREE(line);
4486 continue;
4489 if ((i = process_tok(tok)) >= 0) {
4490 rc = commands[i].fn();
4491 } else if (i == -2) {
4492 d_printf("%s: command abbreviation ambiguous\n",tok);
4493 } else {
4494 d_printf("%s: command not found\n",tok);
4496 SAFE_FREE(line);
4497 TALLOC_FREE(frame);
4499 return rc;
4502 /****************************************************************************
4503 Process commands from the client.
4504 ****************************************************************************/
4506 static int process(const char *base_directory)
4508 int rc = 0;
4510 cli = cli_cm_open(talloc_tos(), NULL,
4511 desthost, service, true, smb_encrypt);
4512 if (!cli) {
4513 return 1;
4516 if (base_directory && *base_directory) {
4517 rc = do_cd(base_directory);
4518 if (rc) {
4519 cli_cm_shutdown();
4520 return rc;
4524 if (cmdstr) {
4525 rc = process_command_string(cmdstr);
4526 } else {
4527 process_stdin();
4530 cli_cm_shutdown();
4531 return rc;
4534 /****************************************************************************
4535 Handle a -L query.
4536 ****************************************************************************/
4538 static int do_host_query(const char *query_host)
4540 cli = cli_cm_open(talloc_tos(), NULL,
4541 query_host, "IPC$", true, smb_encrypt);
4542 if (!cli)
4543 return 1;
4545 browse_host(true);
4547 if (port != 139) {
4549 /* Workgroups simply don't make sense over anything
4550 else but port 139... */
4552 cli_cm_shutdown();
4553 cli_cm_set_port( 139 );
4554 cli = cli_cm_open(talloc_tos(), NULL,
4555 query_host, "IPC$", true, smb_encrypt);
4558 if (cli == NULL) {
4559 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4560 return 1;
4563 list_servers(lp_workgroup());
4565 cli_cm_shutdown();
4567 return(0);
4570 /****************************************************************************
4571 Handle a tar operation.
4572 ****************************************************************************/
4574 static int do_tar_op(const char *base_directory)
4576 int ret;
4578 /* do we already have a connection? */
4579 if (!cli) {
4580 cli = cli_cm_open(talloc_tos(), NULL,
4581 desthost, service, true, smb_encrypt);
4582 if (!cli)
4583 return 1;
4586 recurse=true;
4588 if (base_directory && *base_directory) {
4589 ret = do_cd(base_directory);
4590 if (ret) {
4591 cli_cm_shutdown();
4592 return ret;
4596 ret=process_tar();
4598 cli_cm_shutdown();
4600 return(ret);
4603 /****************************************************************************
4604 Handle a message operation.
4605 ****************************************************************************/
4607 static int do_message_op(void)
4609 struct sockaddr_storage ss;
4610 struct nmb_name called, calling;
4611 fstring server_name;
4612 char name_type_hex[10];
4613 int msg_port;
4614 NTSTATUS status;
4616 make_nmb_name(&calling, calling_name, 0x0);
4617 make_nmb_name(&called , desthost, name_type);
4619 fstrcpy(server_name, desthost);
4620 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4621 fstrcat(server_name, name_type_hex);
4623 zero_addr(&ss);
4624 if (have_ip)
4625 ss = dest_ss;
4627 /* we can only do messages over port 139 (to windows clients at least) */
4629 msg_port = port ? port : 139;
4631 if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port)) {
4632 d_printf("Connection to %s failed\n", desthost);
4633 return 1;
4636 status = cli_connect(cli, server_name, &ss);
4637 if (!NT_STATUS_IS_OK(status)) {
4638 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4639 return 1;
4642 if (!cli_session_request(cli, &calling, &called)) {
4643 d_printf("session request failed\n");
4644 cli_cm_shutdown();
4645 return 1;
4648 send_message();
4649 cli_cm_shutdown();
4651 return 0;
4654 /****************************************************************************
4655 main program
4656 ****************************************************************************/
4658 int main(int argc,char *argv[])
4660 char *base_directory = NULL;
4661 int opt;
4662 char *query_host = NULL;
4663 bool message = false;
4664 char *term_code = NULL;
4665 static const char *new_name_resolve_order = NULL;
4666 poptContext pc;
4667 char *p;
4668 int rc = 0;
4669 fstring new_workgroup;
4670 bool tar_opt = false;
4671 bool service_opt = false;
4672 struct poptOption long_options[] = {
4673 POPT_AUTOHELP
4675 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4676 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4677 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4678 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4679 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4680 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4681 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4682 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4683 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4684 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4685 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4686 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4687 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4688 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4689 POPT_COMMON_SAMBA
4690 POPT_COMMON_CONNECTION
4691 POPT_COMMON_CREDENTIALS
4692 POPT_TABLEEND
4694 TALLOC_CTX *frame = talloc_stackframe();
4696 if (!client_set_cur_dir("\\")) {
4697 exit(ENOMEM);
4700 #ifdef KANJI
4701 term_code = talloc_strdup(frame,KANJI);
4702 #else /* KANJI */
4703 term_code = talloc_strdup(frame,"");
4704 #endif /* KANJI */
4705 if (!term_code) {
4706 exit(ENOMEM);
4709 /* initialize the workgroup name so we can determine whether or
4710 not it was set by a command line option */
4712 set_global_myworkgroup( "" );
4713 set_global_myname( "" );
4715 /* set default debug level to 1 regardless of what smb.conf sets */
4716 setup_logging( "smbclient", true );
4717 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4718 if ((dbf = x_fdup(x_stderr))) {
4719 x_setbuf( dbf, NULL );
4722 load_case_tables();
4724 /* skip argv(0) */
4725 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4726 poptSetOtherOptionHelp(pc, "service <password>");
4728 in_client = true; /* Make sure that we tell lp_load we are */
4730 while ((opt = poptGetNextOpt(pc)) != -1) {
4732 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4733 /* I see no other way to keep things sane --SSS */
4734 if (tar_opt == true) {
4735 while (poptPeekArg(pc)) {
4736 poptGetArg(pc);
4738 tar_opt = false;
4741 /* if the service has not yet been specified lets see if it is available in the popt stack */
4742 if (!service_opt && poptPeekArg(pc)) {
4743 service = talloc_strdup(frame, poptGetArg(pc));
4744 if (!service) {
4745 exit(ENOMEM);
4747 service_opt = true;
4750 /* if the service has already been retrieved then check if we have also a password */
4751 if (service_opt && (!get_cmdline_auth_info_got_pass()) && poptPeekArg(pc)) {
4752 set_cmdline_auth_info_password(poptGetArg(pc));
4755 switch (opt) {
4756 case 'M':
4757 /* Messages are sent to NetBIOS name type 0x3
4758 * (Messenger Service). Make sure we default
4759 * to port 139 instead of port 445. srl,crh
4761 name_type = 0x03;
4762 cli_cm_set_dest_name_type( name_type );
4763 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4764 if (!desthost) {
4765 exit(ENOMEM);
4767 if( !port )
4768 cli_cm_set_port( 139 );
4769 message = true;
4770 break;
4771 case 'I':
4773 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4774 exit(1);
4776 have_ip = true;
4778 cli_cm_set_dest_ss(&dest_ss);
4780 break;
4781 case 'E':
4782 if (dbf) {
4783 x_fclose(dbf);
4785 dbf = x_stderr;
4786 display_set_stderr();
4787 break;
4789 case 'L':
4790 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4791 if (!query_host) {
4792 exit(ENOMEM);
4794 break;
4795 case 't':
4796 term_code = talloc_strdup(frame,poptGetOptArg(pc));
4797 if (!term_code) {
4798 exit(ENOMEM);
4800 break;
4801 case 'm':
4802 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4803 break;
4804 case 'T':
4805 /* We must use old option processing for this. Find the
4806 * position of the -T option in the raw argv[]. */
4808 int i;
4809 for (i = 1; i < argc; i++) {
4810 if (strncmp("-T", argv[i],2)==0)
4811 break;
4813 i++;
4814 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4815 poptPrintUsage(pc, stderr, 0);
4816 exit(1);
4819 /* this must be the last option, mark we have parsed it so that we know we have */
4820 tar_opt = true;
4821 break;
4822 case 'D':
4823 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4824 if (!base_directory) {
4825 exit(ENOMEM);
4827 break;
4828 case 'g':
4829 grepable=true;
4830 break;
4831 case 'e':
4832 smb_encrypt=true;
4833 break;
4834 case 'B':
4835 return(do_smb_browse());
4840 /* We may still have some leftovers after the last popt option has been called */
4841 if (tar_opt == true) {
4842 while (poptPeekArg(pc)) {
4843 poptGetArg(pc);
4845 tar_opt = false;
4848 /* if the service has not yet been specified lets see if it is available in the popt stack */
4849 if (!service_opt && poptPeekArg(pc)) {
4850 service = talloc_strdup(frame,poptGetArg(pc));
4851 if (!service) {
4852 exit(ENOMEM);
4854 service_opt = true;
4857 /* if the service has already been retrieved then check if we have also a password */
4858 if (service_opt && !get_cmdline_auth_info_got_pass() && poptPeekArg(pc)) {
4859 set_cmdline_auth_info_password(poptGetArg(pc));
4862 /* check for the -P option */
4864 if ( port != 0 )
4865 cli_cm_set_port( port );
4868 * Don't load debug level from smb.conf. It should be
4869 * set by cmdline arg or remain default (0)
4871 AllowDebugChange = false;
4873 /* save the workgroup...
4875 FIXME!! do we need to do this for other options as well
4876 (or maybe a generic way to keep lp_load() from overwriting
4877 everything)? */
4879 fstrcpy( new_workgroup, lp_workgroup() );
4880 calling_name = talloc_strdup(frame, global_myname() );
4881 if (!calling_name) {
4882 exit(ENOMEM);
4885 if ( override_logfile )
4886 setup_logging( lp_logfile(), false );
4888 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4889 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4890 argv[0], get_dyn_CONFIGFILE());
4893 load_interfaces();
4895 if (service_opt && service) {
4896 size_t len;
4898 /* Convert any '/' characters in the service name to '\' characters */
4899 string_replace(service, '/','\\');
4900 if (count_chars(service,'\\') < 3) {
4901 d_printf("\n%s: Not enough '\\' characters in service\n",service);
4902 poptPrintUsage(pc, stderr, 0);
4903 exit(1);
4905 /* Remove trailing slashes */
4906 len = strlen(service);
4907 while(len > 0 && service[len - 1] == '\\') {
4908 --len;
4909 service[len] = '\0';
4913 if ( strlen(new_workgroup) != 0 ) {
4914 set_global_myworkgroup( new_workgroup );
4917 if ( strlen(calling_name) != 0 ) {
4918 set_global_myname( calling_name );
4919 } else {
4920 TALLOC_FREE(calling_name);
4921 calling_name = talloc_strdup(frame, global_myname() );
4924 smb_encrypt = get_cmdline_auth_info_smb_encrypt();
4925 init_names();
4927 if(new_name_resolve_order)
4928 lp_set_name_resolve_order(new_name_resolve_order);
4930 if (!tar_type && !query_host && !service && !message) {
4931 poptPrintUsage(pc, stderr, 0);
4932 exit(1);
4935 poptFreeContext(pc);
4937 /* Store the username and password for dfs support */
4939 cli_cm_set_credentials();
4941 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
4943 if (tar_type) {
4944 if (cmdstr)
4945 process_command_string(cmdstr);
4946 return do_tar_op(base_directory);
4949 if (query_host && *query_host) {
4950 char *qhost = query_host;
4951 char *slash;
4953 while (*qhost == '\\' || *qhost == '/')
4954 qhost++;
4956 if ((slash = strchr_m(qhost, '/'))
4957 || (slash = strchr_m(qhost, '\\'))) {
4958 *slash = 0;
4961 if ((p=strchr_m(qhost, '#'))) {
4962 *p = 0;
4963 p++;
4964 sscanf(p, "%x", &name_type);
4965 cli_cm_set_dest_name_type( name_type );
4968 return do_host_query(qhost);
4971 if (message) {
4972 return do_message_op();
4975 if (process(base_directory)) {
4976 return 1;
4979 TALLOC_FREE(frame);
4980 return rc;