Fix more asprintf and "ignoring return code" warnings from gcc 4.3.
[Samba/nascimento.git] / source3 / client / client.c
blobc63921aa1afa64bd167d464bc7a269067b451877
1 /*
2 Unix SMB/CIFS implementation.
3 SMB client
4 Copyright (C) Andrew Tridgell 1994-1998
5 Copyright (C) Simo Sorce 2001-2002
6 Copyright (C) Jelmer Vernooij 2003
7 Copyright (C) Gerald (Jerry) Carter 2004
8 Copyright (C) Jeremy Allison 1994-2007
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "includes.h"
25 #include "client/client_proto.h"
26 #include "include/rpc_client.h"
27 #ifndef REGISTER
28 #define REGISTER 0
29 #endif
31 extern int do_smb_browse(void); /* mDNS browsing */
33 extern bool AllowDebugChange;
34 extern bool override_logfile;
35 extern char tar_type;
37 static int port = 0;
38 static char *service;
39 static char *desthost;
40 static char *calling_name;
41 static bool grepable = false;
42 static char *cmdstr = NULL;
43 const char *cmd_ptr = NULL;
45 static int io_bufsize = 524288;
47 static int name_type = 0x20;
48 extern int max_protocol;
50 static int process_tok(char *tok);
51 static int cmd_help(void);
53 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55 /* 30 second timeout on most commands */
56 #define CLIENT_TIMEOUT (30*1000)
57 #define SHORT_TIMEOUT (5*1000)
59 /* value for unused fid field in trans2 secondary request */
60 #define FID_UNUSED (0xFFFF)
62 time_t newer_than = 0;
63 static int archive_level = 0;
65 static bool translation = false;
66 static bool have_ip;
68 /* clitar bits insert */
69 extern int blocksize;
70 extern bool tar_inc;
71 extern bool tar_reset;
72 /* clitar bits end */
74 static bool prompt = true;
76 static bool recurse = false;
77 static bool showacls = false;
78 bool lowercase = false;
80 static struct sockaddr_storage dest_ss;
82 #define SEPARATORS " \t\n\r"
84 static bool abort_mget = true;
86 /* timing globals */
87 uint64_t get_total_size = 0;
88 unsigned int get_total_time_ms = 0;
89 static uint64_t put_total_size = 0;
90 static unsigned int put_total_time_ms = 0;
92 /* totals globals */
93 static double dir_total;
95 /* encrypted state. */
96 static bool smb_encrypt;
98 /* root cli_state connection */
100 struct cli_state *cli;
102 static char CLI_DIRSEP_CHAR = '\\';
103 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
105 /* Accessor functions for directory paths. */
106 static char *fileselection;
107 static const char *client_get_fileselection(void)
109 if (fileselection) {
110 return fileselection;
112 return "";
115 static const char *client_set_fileselection(const char *new_fs)
117 SAFE_FREE(fileselection);
118 if (new_fs) {
119 fileselection = SMB_STRDUP(new_fs);
121 return client_get_fileselection();
124 static char *cwd;
125 static const char *client_get_cwd(void)
127 if (cwd) {
128 return cwd;
130 return CLI_DIRSEP_STR;
133 static const char *client_set_cwd(const char *new_cwd)
135 SAFE_FREE(cwd);
136 if (new_cwd) {
137 cwd = SMB_STRDUP(new_cwd);
139 return client_get_cwd();
142 static char *cur_dir;
143 const char *client_get_cur_dir(void)
145 if (cur_dir) {
146 return cur_dir;
148 return CLI_DIRSEP_STR;
151 const char *client_set_cur_dir(const char *newdir)
153 SAFE_FREE(cur_dir);
154 if (newdir) {
155 cur_dir = SMB_STRDUP(newdir);
157 return client_get_cur_dir();
160 /****************************************************************************
161 Write to a local file with CR/LF->LF translation if appropriate. Return the
162 number taken from the buffer. This may not equal the number written.
163 ****************************************************************************/
165 static int writefile(int f, char *b, int n)
167 int i;
169 if (!translation) {
170 return write(f,b,n);
173 i = 0;
174 while (i < n) {
175 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
176 b++;i++;
178 if (write(f, b, 1) != 1) {
179 break;
181 b++;
182 i++;
185 return(i);
188 /****************************************************************************
189 Read from a file with LF->CR/LF translation if appropriate. Return the
190 number read. read approx n bytes.
191 ****************************************************************************/
193 static int readfile(uint8_t *b, int n, XFILE *f)
195 int i;
196 int c;
198 if (!translation)
199 return x_fread(b,1,n,f);
201 i = 0;
202 while (i < (n - 1) && (i < BUFFER_SIZE)) {
203 if ((c = x_getc(f)) == EOF) {
204 break;
207 if (c == '\n') { /* change all LFs to CR/LF */
208 b[i++] = '\r';
211 b[i++] = c;
214 return(i);
217 struct push_state {
218 XFILE *f;
219 SMB_OFF_T nread;
222 static size_t push_source(uint8_t *buf, size_t n, void *priv)
224 struct push_state *state = (struct push_state *)priv;
225 int result;
227 if (x_feof(state->f)) {
228 return 0;
231 result = readfile(buf, n, state->f);
232 state->nread += result;
233 return result;
236 /****************************************************************************
237 Send a message.
238 ****************************************************************************/
240 static void send_message(const char *username)
242 int total_len = 0;
243 int grp_id;
245 if (!cli_message_start(cli, desthost, username, &grp_id)) {
246 d_printf("message start: %s\n", cli_errstr(cli));
247 return;
251 d_printf("Connected. Type your message, ending it with a Control-D\n");
253 while (!feof(stdin) && total_len < 1600) {
254 int maxlen = MIN(1600 - total_len,127);
255 char msg[1024];
256 int l=0;
257 int c;
259 ZERO_ARRAY(msg);
261 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
262 if (c == '\n')
263 msg[l++] = '\r';
264 msg[l] = c;
267 if ((total_len > 0) && (strlen(msg) == 0)) {
268 break;
271 if (!cli_message_text(cli, msg, l, grp_id)) {
272 d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
273 return;
276 total_len += l;
279 if (total_len >= 1600)
280 d_printf("the message was truncated to 1600 bytes\n");
281 else
282 d_printf("sent %d bytes\n",total_len);
284 if (!cli_message_end(cli, grp_id)) {
285 d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
286 return;
290 /****************************************************************************
291 Check the space on a device.
292 ****************************************************************************/
294 static int do_dskattr(void)
296 int total, bsize, avail;
297 struct cli_state *targetcli = NULL;
298 char *targetpath = NULL;
299 TALLOC_CTX *ctx = talloc_tos();
301 if ( !cli_resolve_path(ctx, "", cli, client_get_cur_dir(), &targetcli, &targetpath)) {
302 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
303 return 1;
306 if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
307 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
308 return 1;
311 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
312 total, bsize, avail);
314 return 0;
317 /****************************************************************************
318 Show cd/pwd.
319 ****************************************************************************/
321 static int cmd_pwd(void)
323 d_printf("Current directory is %s",service);
324 d_printf("%s\n",client_get_cur_dir());
325 return 0;
328 /****************************************************************************
329 Ensure name has correct directory separators.
330 ****************************************************************************/
332 static void normalize_name(char *newdir)
334 if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
335 string_replace(newdir,'/','\\');
339 /****************************************************************************
340 Change directory - inner section.
341 ****************************************************************************/
343 static int do_cd(const char *new_dir)
345 char *newdir = NULL;
346 char *saved_dir = NULL;
347 char *new_cd = NULL;
348 char *targetpath = NULL;
349 struct cli_state *targetcli = NULL;
350 SMB_STRUCT_STAT sbuf;
351 uint32 attributes;
352 int ret = 1;
353 TALLOC_CTX *ctx = talloc_stackframe();
355 newdir = talloc_strdup(ctx, new_dir);
356 if (!newdir) {
357 TALLOC_FREE(ctx);
358 return 1;
361 normalize_name(newdir);
363 /* Save the current directory in case the new directory is invalid */
365 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
366 if (!saved_dir) {
367 TALLOC_FREE(ctx);
368 return 1;
371 if (*newdir == CLI_DIRSEP_CHAR) {
372 client_set_cur_dir(newdir);
373 new_cd = newdir;
374 } else {
375 new_cd = talloc_asprintf(ctx, "%s%s",
376 client_get_cur_dir(),
377 newdir);
378 if (!new_cd) {
379 goto out;
383 /* Ensure cur_dir ends in a DIRSEP */
384 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
385 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
386 if (!new_cd) {
387 goto out;
390 client_set_cur_dir(new_cd);
392 new_cd = clean_name(ctx, new_cd);
393 client_set_cur_dir(new_cd);
395 if ( !cli_resolve_path(ctx, "", cli, new_cd, &targetcli, &targetpath)) {
396 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
397 client_set_cur_dir(saved_dir);
398 goto out;
401 if (strequal(targetpath,CLI_DIRSEP_STR )) {
402 TALLOC_FREE(ctx);
403 return 0;
406 /* Use a trans2_qpathinfo to test directories for modern servers.
407 Except Win9x doesn't support the qpathinfo_basic() call..... */
409 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
410 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
411 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
412 client_set_cur_dir(saved_dir);
413 goto out;
416 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
417 d_printf("cd %s: not a directory\n", new_cd);
418 client_set_cur_dir(saved_dir);
419 goto out;
421 } else {
422 targetpath = talloc_asprintf(ctx,
423 "%s%s",
424 targetpath,
425 CLI_DIRSEP_STR );
426 if (!targetpath) {
427 client_set_cur_dir(saved_dir);
428 goto out;
430 targetpath = clean_name(ctx, targetpath);
431 if (!targetpath) {
432 client_set_cur_dir(saved_dir);
433 goto out;
436 if (!cli_chkpath(targetcli, targetpath)) {
437 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
438 client_set_cur_dir(saved_dir);
439 goto out;
443 ret = 0;
445 out:
447 TALLOC_FREE(ctx);
448 return ret;
451 /****************************************************************************
452 Change directory.
453 ****************************************************************************/
455 static int cmd_cd(void)
457 char *buf = NULL;
458 int rc = 0;
460 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
461 rc = do_cd(buf);
462 } else {
463 d_printf("Current directory is %s\n",client_get_cur_dir());
466 return rc;
469 /****************************************************************************
470 Change directory.
471 ****************************************************************************/
473 static int cmd_cd_oneup(void)
475 return do_cd("..");
478 /*******************************************************************
479 Decide if a file should be operated on.
480 ********************************************************************/
482 static bool do_this_one(file_info *finfo)
484 if (!finfo->name) {
485 return false;
488 if (finfo->mode & aDIR) {
489 return true;
492 if (*client_get_fileselection() &&
493 !mask_match(finfo->name,client_get_fileselection(),false)) {
494 DEBUG(3,("mask_match %s failed\n", finfo->name));
495 return false;
498 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
499 DEBUG(3,("newer_than %s failed\n", finfo->name));
500 return false;
503 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
504 DEBUG(3,("archive %s failed\n", finfo->name));
505 return false;
508 return true;
511 /****************************************************************************
512 Display info about a file.
513 ****************************************************************************/
515 static void display_finfo(file_info *finfo, const char *dir)
517 time_t t;
518 TALLOC_CTX *ctx = talloc_tos();
520 if (!do_this_one(finfo)) {
521 return;
524 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
525 if (!showacls) {
526 d_printf(" %-30s%7.7s %8.0f %s",
527 finfo->name,
528 attrib_string(finfo->mode),
529 (double)finfo->size,
530 time_to_asc(t));
531 dir_total += finfo->size;
532 } else {
533 char *afname = NULL;
534 int fnum;
536 /* skip if this is . or .. */
537 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
538 return;
539 /* create absolute filename for cli_nt_create() FIXME */
540 afname = talloc_asprintf(ctx,
541 "%s%s%s",
542 dir,
543 CLI_DIRSEP_STR,
544 finfo->name);
545 if (!afname) {
546 return;
548 /* print file meta date header */
549 d_printf( "FILENAME:%s\n", finfo->name);
550 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
551 d_printf( "SIZE:%.0f\n", (double)finfo->size);
552 d_printf( "MTIME:%s", time_to_asc(t));
553 fnum = cli_nt_create(finfo->cli, afname, CREATE_ACCESS_READ);
554 if (fnum == -1) {
555 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
556 afname,
557 cli_errstr( finfo->cli)));
558 } else {
559 SEC_DESC *sd = NULL;
560 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
561 if (!sd) {
562 DEBUG( 0, ("display_finfo() failed to "
563 "get security descriptor: %s",
564 cli_errstr( finfo->cli)));
565 } else {
566 display_sec_desc(sd);
568 TALLOC_FREE(sd);
570 TALLOC_FREE(afname);
574 /****************************************************************************
575 Accumulate size of a file.
576 ****************************************************************************/
578 static void do_du(file_info *finfo, const char *dir)
580 if (do_this_one(finfo)) {
581 dir_total += finfo->size;
585 static bool do_list_recurse;
586 static bool do_list_dirs;
587 static char *do_list_queue = 0;
588 static long do_list_queue_size = 0;
589 static long do_list_queue_start = 0;
590 static long do_list_queue_end = 0;
591 static void (*do_list_fn)(file_info *, const char *dir);
593 /****************************************************************************
594 Functions for do_list_queue.
595 ****************************************************************************/
598 * The do_list_queue is a NUL-separated list of strings stored in a
599 * char*. Since this is a FIFO, we keep track of the beginning and
600 * ending locations of the data in the queue. When we overflow, we
601 * double the size of the char*. When the start of the data passes
602 * the midpoint, we move everything back. This is logically more
603 * complex than a linked list, but easier from a memory management
604 * angle. In any memory error condition, do_list_queue is reset.
605 * Functions check to ensure that do_list_queue is non-NULL before
606 * accessing it.
609 static void reset_do_list_queue(void)
611 SAFE_FREE(do_list_queue);
612 do_list_queue_size = 0;
613 do_list_queue_start = 0;
614 do_list_queue_end = 0;
617 static void init_do_list_queue(void)
619 reset_do_list_queue();
620 do_list_queue_size = 1024;
621 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
622 if (do_list_queue == 0) {
623 d_printf("malloc fail for size %d\n",
624 (int)do_list_queue_size);
625 reset_do_list_queue();
626 } else {
627 memset(do_list_queue, 0, do_list_queue_size);
631 static void adjust_do_list_queue(void)
634 * If the starting point of the queue is more than half way through,
635 * move everything toward the beginning.
638 if (do_list_queue == NULL) {
639 DEBUG(4,("do_list_queue is empty\n"));
640 do_list_queue_start = do_list_queue_end = 0;
641 return;
644 if (do_list_queue_start == do_list_queue_end) {
645 DEBUG(4,("do_list_queue is empty\n"));
646 do_list_queue_start = do_list_queue_end = 0;
647 *do_list_queue = '\0';
648 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
649 DEBUG(4,("sliding do_list_queue backward\n"));
650 memmove(do_list_queue,
651 do_list_queue + do_list_queue_start,
652 do_list_queue_end - do_list_queue_start);
653 do_list_queue_end -= do_list_queue_start;
654 do_list_queue_start = 0;
658 static void add_to_do_list_queue(const char *entry)
660 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
661 while (new_end > do_list_queue_size) {
662 do_list_queue_size *= 2;
663 DEBUG(4,("enlarging do_list_queue to %d\n",
664 (int)do_list_queue_size));
665 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
666 if (! do_list_queue) {
667 d_printf("failure enlarging do_list_queue to %d bytes\n",
668 (int)do_list_queue_size);
669 reset_do_list_queue();
670 } else {
671 memset(do_list_queue + do_list_queue_size / 2,
672 0, do_list_queue_size / 2);
675 if (do_list_queue) {
676 safe_strcpy_base(do_list_queue + do_list_queue_end,
677 entry, do_list_queue, do_list_queue_size);
678 do_list_queue_end = new_end;
679 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
680 entry, (int)do_list_queue_start, (int)do_list_queue_end));
684 static char *do_list_queue_head(void)
686 return do_list_queue + do_list_queue_start;
689 static void remove_do_list_queue_head(void)
691 if (do_list_queue_end > do_list_queue_start) {
692 do_list_queue_start += strlen(do_list_queue_head()) + 1;
693 adjust_do_list_queue();
694 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
695 (int)do_list_queue_start, (int)do_list_queue_end));
699 static int do_list_queue_empty(void)
701 return (! (do_list_queue && *do_list_queue));
704 /****************************************************************************
705 A helper for do_list.
706 ****************************************************************************/
708 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
710 TALLOC_CTX *ctx = talloc_tos();
711 char *dir = NULL;
712 char *dir_end = NULL;
714 /* Work out the directory. */
715 dir = talloc_strdup(ctx, mask);
716 if (!dir) {
717 return;
719 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
720 *dir_end = '\0';
723 if (f->mode & aDIR) {
724 if (do_list_dirs && do_this_one(f)) {
725 do_list_fn(f, dir);
727 if (do_list_recurse &&
728 f->name &&
729 !strequal(f->name,".") &&
730 !strequal(f->name,"..")) {
731 char *mask2 = NULL;
732 char *p = NULL;
734 if (!f->name[0]) {
735 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
736 TALLOC_FREE(dir);
737 return;
740 mask2 = talloc_asprintf(ctx,
741 "%s%s",
742 mntpoint,
743 mask);
744 if (!mask2) {
745 TALLOC_FREE(dir);
746 return;
748 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
749 if (!p) {
750 TALLOC_FREE(dir);
751 return;
753 p[1] = 0;
754 mask2 = talloc_asprintf_append(mask2,
755 "%s%s*",
756 f->name,
757 CLI_DIRSEP_STR);
758 if (!mask2) {
759 TALLOC_FREE(dir);
760 return;
762 add_to_do_list_queue(mask2);
763 TALLOC_FREE(mask2);
765 TALLOC_FREE(dir);
766 return;
769 if (do_this_one(f)) {
770 do_list_fn(f,dir);
772 TALLOC_FREE(dir);
775 /****************************************************************************
776 A wrapper around cli_list that adds recursion.
777 ****************************************************************************/
779 void do_list(const char *mask,
780 uint16 attribute,
781 void (*fn)(file_info *, const char *dir),
782 bool rec,
783 bool dirs)
785 static int in_do_list = 0;
786 TALLOC_CTX *ctx = talloc_tos();
787 struct cli_state *targetcli = NULL;
788 char *targetpath = NULL;
790 if (in_do_list && rec) {
791 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
792 exit(1);
795 in_do_list = 1;
797 do_list_recurse = rec;
798 do_list_dirs = dirs;
799 do_list_fn = fn;
801 if (rec) {
802 init_do_list_queue();
803 add_to_do_list_queue(mask);
805 while (!do_list_queue_empty()) {
807 * Need to copy head so that it doesn't become
808 * invalid inside the call to cli_list. This
809 * would happen if the list were expanded
810 * during the call.
811 * Fix from E. Jay Berkenbilt (ejb@ql.org)
813 char *head = talloc_strdup(ctx, do_list_queue_head());
815 if (!head) {
816 return;
819 /* check for dfs */
821 if ( !cli_resolve_path(ctx, "", cli, head, &targetcli, &targetpath ) ) {
822 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
823 remove_do_list_queue_head();
824 continue;
827 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
828 remove_do_list_queue_head();
829 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
830 char *next_file = do_list_queue_head();
831 char *save_ch = 0;
832 if ((strlen(next_file) >= 2) &&
833 (next_file[strlen(next_file) - 1] == '*') &&
834 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
835 save_ch = next_file +
836 strlen(next_file) - 2;
837 *save_ch = '\0';
838 if (showacls) {
839 /* cwd is only used if showacls is on */
840 client_set_cwd(next_file);
843 if (!showacls) /* don't disturbe the showacls output */
844 d_printf("\n%s\n",next_file);
845 if (save_ch) {
846 *save_ch = CLI_DIRSEP_CHAR;
849 TALLOC_FREE(head);
850 TALLOC_FREE(targetpath);
852 } else {
853 /* check for dfs */
854 if (cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetpath)) {
855 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
856 d_printf("%s listing %s\n",
857 cli_errstr(targetcli), targetpath);
859 TALLOC_FREE(targetpath);
860 } else {
861 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
865 in_do_list = 0;
866 reset_do_list_queue();
869 /****************************************************************************
870 Get a directory listing.
871 ****************************************************************************/
873 static int cmd_dir(void)
875 TALLOC_CTX *ctx = talloc_tos();
876 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
877 char *mask = NULL;
878 char *buf = NULL;
879 int rc = 1;
881 dir_total = 0;
882 mask = talloc_strdup(ctx, client_get_cur_dir());
883 if (!mask) {
884 return 1;
887 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
888 normalize_name(buf);
889 if (*buf == CLI_DIRSEP_CHAR) {
890 mask = talloc_strdup(ctx, buf);
891 } else {
892 mask = talloc_asprintf_append(mask, "%s", buf);
894 } else {
895 mask = talloc_asprintf_append(mask, "*");
897 if (!mask) {
898 return 1;
901 if (showacls) {
902 /* cwd is only used if showacls is on */
903 client_set_cwd(client_get_cur_dir());
906 do_list(mask, attribute, display_finfo, recurse, true);
908 rc = do_dskattr();
910 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
912 return rc;
915 /****************************************************************************
916 Get a directory listing.
917 ****************************************************************************/
919 static int cmd_du(void)
921 TALLOC_CTX *ctx = talloc_tos();
922 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
923 char *mask = NULL;
924 char *buf = NULL;
925 int rc = 1;
927 dir_total = 0;
928 mask = talloc_strdup(ctx, client_get_cur_dir());
929 if (!mask) {
930 return 1;
932 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
933 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
934 if (!mask) {
935 return 1;
939 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
940 normalize_name(buf);
941 if (*buf == CLI_DIRSEP_CHAR) {
942 mask = talloc_strdup(ctx, buf);
943 } else {
944 mask = talloc_asprintf_append(mask, "%s", buf);
946 } else {
947 mask = talloc_strdup(ctx, "*");
950 do_list(mask, attribute, do_du, recurse, true);
952 rc = do_dskattr();
954 d_printf("Total number of bytes: %.0f\n", dir_total);
956 return rc;
959 static int cmd_echo(void)
961 TALLOC_CTX *ctx = talloc_tos();
962 char *num;
963 char *data;
964 NTSTATUS status;
966 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
967 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
968 d_printf("echo <num> <data>\n");
969 return 1;
972 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
974 if (!NT_STATUS_IS_OK(status)) {
975 d_printf("echo failed: %s\n", nt_errstr(status));
976 return 1;
979 return 0;
982 /****************************************************************************
983 Get a file from rname to lname
984 ****************************************************************************/
986 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
988 int *pfd = (int *)priv;
989 if (writefile(*pfd, buf, n) == -1) {
990 return map_nt_error_from_unix(errno);
992 return NT_STATUS_OK;
995 static int do_get(const char *rname, const char *lname_in, bool reget)
997 TALLOC_CTX *ctx = talloc_tos();
998 int handle = 0, fnum;
999 bool newhandle = false;
1000 struct timeval tp_start;
1001 uint16 attr;
1002 SMB_OFF_T size;
1003 off_t start = 0;
1004 SMB_OFF_T nread = 0;
1005 int rc = 0;
1006 struct cli_state *targetcli = NULL;
1007 char *targetname = NULL;
1008 char *lname = NULL;
1009 NTSTATUS status;
1011 lname = talloc_strdup(ctx, lname_in);
1012 if (!lname) {
1013 return 1;
1016 if (lowercase) {
1017 strlower_m(lname);
1020 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname ) ) {
1021 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1022 return 1;
1025 GetTimeOfDay(&tp_start);
1027 fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
1029 if (fnum == -1) {
1030 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1031 return 1;
1034 if(!strcmp(lname,"-")) {
1035 handle = fileno(stdout);
1036 } else {
1037 if (reget) {
1038 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1039 if (handle >= 0) {
1040 start = sys_lseek(handle, 0, SEEK_END);
1041 if (start == -1) {
1042 d_printf("Error seeking local file\n");
1043 return 1;
1046 } else {
1047 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1049 newhandle = true;
1051 if (handle < 0) {
1052 d_printf("Error opening local file %s\n",lname);
1053 return 1;
1057 if (!cli_qfileinfo(targetcli, fnum,
1058 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1059 !cli_getattrE(targetcli, fnum,
1060 &attr, &size, NULL, NULL, NULL)) {
1061 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1062 return 1;
1065 DEBUG(1,("getting file %s of size %.0f as %s ",
1066 rname, (double)size, lname));
1068 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1069 writefile_sink, (void *)&handle, &nread);
1070 if (!NT_STATUS_IS_OK(status)) {
1071 d_fprintf(stderr, "parallel_read returned %s\n",
1072 nt_errstr(status));
1073 cli_close(targetcli, fnum);
1074 return 1;
1077 if (!cli_close(targetcli, fnum)) {
1078 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1079 rc = 1;
1082 if (newhandle) {
1083 close(handle);
1086 if (archive_level >= 2 && (attr & aARCH)) {
1087 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1091 struct timeval tp_end;
1092 int this_time;
1094 GetTimeOfDay(&tp_end);
1095 this_time =
1096 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1097 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1098 get_total_time_ms += this_time;
1099 get_total_size += nread;
1101 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1102 nread / (1.024*this_time + 1.0e-4),
1103 get_total_size / (1.024*get_total_time_ms)));
1106 TALLOC_FREE(targetname);
1107 return rc;
1110 /****************************************************************************
1111 Get a file.
1112 ****************************************************************************/
1114 static int cmd_get(void)
1116 TALLOC_CTX *ctx = talloc_tos();
1117 char *lname = NULL;
1118 char *rname = NULL;
1119 char *fname = NULL;
1121 rname = talloc_strdup(ctx, client_get_cur_dir());
1122 if (!rname) {
1123 return 1;
1126 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1127 d_printf("get <filename> [localname]\n");
1128 return 1;
1130 rname = talloc_asprintf_append(rname, "%s", fname);
1131 if (!rname) {
1132 return 1;
1134 rname = clean_name(ctx, rname);
1135 if (!rname) {
1136 return 1;
1139 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1140 if (!lname) {
1141 lname = fname;
1144 return do_get(rname, lname, false);
1147 /****************************************************************************
1148 Do an mget operation on one file.
1149 ****************************************************************************/
1151 static void do_mget(file_info *finfo, const char *dir)
1153 TALLOC_CTX *ctx = talloc_tos();
1154 char *rname = NULL;
1155 char *quest = NULL;
1156 char *saved_curdir = NULL;
1157 char *mget_mask = NULL;
1158 char *new_cd = NULL;
1160 if (!finfo->name) {
1161 return;
1164 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1165 return;
1167 if (abort_mget) {
1168 d_printf("mget aborted\n");
1169 return;
1172 if (finfo->mode & aDIR) {
1173 if (asprintf(&quest,
1174 "Get directory %s? ",finfo->name) < 0) {
1175 return;
1177 } else {
1178 if (asprintf(&quest,
1179 "Get file %s? ",finfo->name) < 0) {
1180 return;
1184 if (prompt && !yesno(quest)) {
1185 SAFE_FREE(quest);
1186 return;
1188 SAFE_FREE(quest);
1190 if (!(finfo->mode & aDIR)) {
1191 rname = talloc_asprintf(ctx,
1192 "%s%s",
1193 client_get_cur_dir(),
1194 finfo->name);
1195 if (!rname) {
1196 return;
1198 do_get(rname, finfo->name, false);
1199 TALLOC_FREE(rname);
1200 return;
1203 /* handle directories */
1204 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1205 if (!saved_curdir) {
1206 return;
1209 new_cd = talloc_asprintf(ctx,
1210 "%s%s%s",
1211 client_get_cur_dir(),
1212 finfo->name,
1213 CLI_DIRSEP_STR);
1214 if (!new_cd) {
1215 return;
1217 client_set_cur_dir(new_cd);
1219 string_replace(finfo->name,'\\','/');
1220 if (lowercase) {
1221 strlower_m(finfo->name);
1224 if (!directory_exist(finfo->name) &&
1225 mkdir(finfo->name,0777) != 0) {
1226 d_printf("failed to create directory %s\n",finfo->name);
1227 client_set_cur_dir(saved_curdir);
1228 return;
1231 if (chdir(finfo->name) != 0) {
1232 d_printf("failed to chdir to directory %s\n",finfo->name);
1233 client_set_cur_dir(saved_curdir);
1234 return;
1237 mget_mask = talloc_asprintf(ctx,
1238 "%s*",
1239 client_get_cur_dir());
1241 if (!mget_mask) {
1242 return;
1245 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1246 if (chdir("..") == -1) {
1247 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1248 strerror(errno) );
1250 client_set_cur_dir(saved_curdir);
1251 TALLOC_FREE(mget_mask);
1252 TALLOC_FREE(saved_curdir);
1253 TALLOC_FREE(new_cd);
1256 /****************************************************************************
1257 View the file using the pager.
1258 ****************************************************************************/
1260 static int cmd_more(void)
1262 TALLOC_CTX *ctx = talloc_tos();
1263 char *rname = NULL;
1264 char *fname = NULL;
1265 char *lname = NULL;
1266 char *pager_cmd = NULL;
1267 const char *pager;
1268 int fd;
1269 int rc = 0;
1271 rname = talloc_strdup(ctx, client_get_cur_dir());
1272 if (!rname) {
1273 return 1;
1276 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1277 if (!lname) {
1278 return 1;
1280 fd = smb_mkstemp(lname);
1281 if (fd == -1) {
1282 d_printf("failed to create temporary file for more\n");
1283 return 1;
1285 close(fd);
1287 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1288 d_printf("more <filename>\n");
1289 unlink(lname);
1290 return 1;
1292 rname = talloc_asprintf_append(rname, "%s", fname);
1293 if (!rname) {
1294 return 1;
1296 rname = clean_name(ctx,rname);
1297 if (!rname) {
1298 return 1;
1301 rc = do_get(rname, lname, false);
1303 pager=getenv("PAGER");
1305 pager_cmd = talloc_asprintf(ctx,
1306 "%s %s",
1307 (pager? pager:PAGER),
1308 lname);
1309 if (!pager_cmd) {
1310 return 1;
1312 if (system(pager_cmd) == -1) {
1313 d_printf("system command '%s' returned -1\n",
1314 pager_cmd);
1316 unlink(lname);
1318 return rc;
1321 /****************************************************************************
1322 Do a mget command.
1323 ****************************************************************************/
1325 static int cmd_mget(void)
1327 TALLOC_CTX *ctx = talloc_tos();
1328 uint16 attribute = aSYSTEM | aHIDDEN;
1329 char *mget_mask = NULL;
1330 char *buf = NULL;
1332 if (recurse) {
1333 attribute |= aDIR;
1336 abort_mget = false;
1338 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1339 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1340 if (!mget_mask) {
1341 return 1;
1343 if (*buf == CLI_DIRSEP_CHAR) {
1344 mget_mask = talloc_strdup(ctx, buf);
1345 } else {
1346 mget_mask = talloc_asprintf_append(mget_mask,
1347 "%s", buf);
1349 if (!mget_mask) {
1350 return 1;
1352 do_list(mget_mask, attribute, do_mget, false, true);
1355 if (!*mget_mask) {
1356 mget_mask = talloc_asprintf(ctx,
1357 "%s*",
1358 client_get_cur_dir());
1359 if (!mget_mask) {
1360 return 1;
1362 do_list(mget_mask, attribute, do_mget, false, true);
1365 return 0;
1368 /****************************************************************************
1369 Make a directory of name "name".
1370 ****************************************************************************/
1372 static bool do_mkdir(const char *name)
1374 TALLOC_CTX *ctx = talloc_tos();
1375 struct cli_state *targetcli;
1376 char *targetname = NULL;
1378 if (!cli_resolve_path(ctx, "", cli, name, &targetcli, &targetname)) {
1379 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1380 return false;
1383 if (!cli_mkdir(targetcli, targetname)) {
1384 d_printf("%s making remote directory %s\n",
1385 cli_errstr(targetcli),name);
1386 return false;
1389 return true;
1392 /****************************************************************************
1393 Show 8.3 name of a file.
1394 ****************************************************************************/
1396 static bool do_altname(const char *name)
1398 fstring altname;
1400 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1401 d_printf("%s getting alt name for %s\n",
1402 cli_errstr(cli),name);
1403 return false;
1405 d_printf("%s\n", altname);
1407 return true;
1410 /****************************************************************************
1411 Exit client.
1412 ****************************************************************************/
1414 static int cmd_quit(void)
1416 cli_cm_shutdown();
1417 exit(0);
1418 /* NOTREACHED */
1419 return 0;
1422 /****************************************************************************
1423 Make a directory.
1424 ****************************************************************************/
1426 static int cmd_mkdir(void)
1428 TALLOC_CTX *ctx = talloc_tos();
1429 char *mask = NULL;
1430 char *buf = NULL;
1432 mask = talloc_strdup(ctx, client_get_cur_dir());
1433 if (!mask) {
1434 return 1;
1437 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1438 if (!recurse) {
1439 d_printf("mkdir <dirname>\n");
1441 return 1;
1443 mask = talloc_asprintf_append(mask, "%s", buf);
1444 if (!mask) {
1445 return 1;
1448 if (recurse) {
1449 char *ddir = NULL;
1450 char *ddir2 = NULL;
1451 struct cli_state *targetcli;
1452 char *targetname = NULL;
1453 char *p = NULL;
1454 char *saveptr;
1456 ddir2 = talloc_strdup(ctx, "");
1457 if (!ddir2) {
1458 return 1;
1461 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
1462 return 1;
1465 ddir = talloc_strdup(ctx, targetname);
1466 if (!ddir) {
1467 return 1;
1469 trim_char(ddir,'.','\0');
1470 p = strtok_r(ddir, "/\\", &saveptr);
1471 while (p) {
1472 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1473 if (!ddir2) {
1474 return 1;
1476 if (!cli_chkpath(targetcli, ddir2)) {
1477 do_mkdir(ddir2);
1479 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1480 if (!ddir2) {
1481 return 1;
1483 p = strtok_r(NULL, "/\\", &saveptr);
1485 } else {
1486 do_mkdir(mask);
1489 return 0;
1492 /****************************************************************************
1493 Show alt name.
1494 ****************************************************************************/
1496 static int cmd_altname(void)
1498 TALLOC_CTX *ctx = talloc_tos();
1499 char *name;
1500 char *buf;
1502 name = talloc_strdup(ctx, client_get_cur_dir());
1503 if (!name) {
1504 return 1;
1507 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1508 d_printf("altname <file>\n");
1509 return 1;
1511 name = talloc_asprintf_append(name, "%s", buf);
1512 if (!name) {
1513 return 1;
1515 do_altname(name);
1516 return 0;
1519 /****************************************************************************
1520 Show all info we can get
1521 ****************************************************************************/
1523 static int do_allinfo(const char *name)
1525 fstring altname;
1526 struct timespec b_time, a_time, m_time, c_time;
1527 SMB_OFF_T size;
1528 uint16_t mode;
1529 SMB_INO_T ino;
1530 NTTIME tmp;
1531 unsigned int num_streams;
1532 struct stream_struct *streams;
1533 unsigned int i;
1535 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1536 d_printf("%s getting alt name for %s\n",
1537 cli_errstr(cli),name);
1538 return false;
1540 d_printf("altname: %s\n", altname);
1542 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1543 &size, &mode, &ino)) {
1544 d_printf("%s getting pathinfo for %s\n",
1545 cli_errstr(cli),name);
1546 return false;
1549 unix_timespec_to_nt_time(&tmp, b_time);
1550 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1552 unix_timespec_to_nt_time(&tmp, a_time);
1553 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1555 unix_timespec_to_nt_time(&tmp, m_time);
1556 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1558 unix_timespec_to_nt_time(&tmp, c_time);
1559 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1561 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1562 &streams)) {
1563 d_printf("%s getting streams for %s\n",
1564 cli_errstr(cli),name);
1565 return false;
1568 for (i=0; i<num_streams; i++) {
1569 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1570 (unsigned long long)streams[i].size);
1573 return 0;
1576 /****************************************************************************
1577 Show all info we can get
1578 ****************************************************************************/
1580 static int cmd_allinfo(void)
1582 TALLOC_CTX *ctx = talloc_tos();
1583 char *name;
1584 char *buf;
1586 name = talloc_strdup(ctx, client_get_cur_dir());
1587 if (!name) {
1588 return 1;
1591 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1592 d_printf("allinfo <file>\n");
1593 return 1;
1595 name = talloc_asprintf_append(name, "%s", buf);
1596 if (!name) {
1597 return 1;
1600 do_allinfo(name);
1602 return 0;
1605 /****************************************************************************
1606 Put a single file.
1607 ****************************************************************************/
1609 static int do_put(const char *rname, const char *lname, bool reput)
1611 TALLOC_CTX *ctx = talloc_tos();
1612 int fnum;
1613 XFILE *f;
1614 SMB_OFF_T start = 0;
1615 int rc = 0;
1616 struct timeval tp_start;
1617 struct cli_state *targetcli;
1618 char *targetname = NULL;
1619 struct push_state state;
1620 NTSTATUS status;
1622 if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname)) {
1623 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1624 return 1;
1627 GetTimeOfDay(&tp_start);
1629 if (reput) {
1630 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
1631 if (fnum >= 0) {
1632 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1633 !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
1634 d_printf("getattrib: %s\n",cli_errstr(cli));
1635 return 1;
1638 } else {
1639 fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
1642 if (fnum == -1) {
1643 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1644 return 1;
1647 /* allow files to be piped into smbclient
1648 jdblair 24.jun.98
1650 Note that in this case this function will exit(0) rather
1651 than returning. */
1652 if (!strcmp(lname, "-")) {
1653 f = x_stdin;
1654 /* size of file is not known */
1655 } else {
1656 f = x_fopen(lname,O_RDONLY, 0);
1657 if (f && reput) {
1658 if (x_tseek(f, start, SEEK_SET) == -1) {
1659 d_printf("Error seeking local file\n");
1660 return 1;
1665 if (!f) {
1666 d_printf("Error opening local file %s\n",lname);
1667 return 1;
1670 DEBUG(1,("putting file %s as %s ",lname,
1671 rname));
1673 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1675 state.f = f;
1676 state.nread = 0;
1678 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1679 &state);
1680 if (!NT_STATUS_IS_OK(status)) {
1681 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1684 if (!cli_close(targetcli, fnum)) {
1685 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1686 x_fclose(f);
1687 return 1;
1690 if (f != x_stdin) {
1691 x_fclose(f);
1695 struct timeval tp_end;
1696 int this_time;
1698 GetTimeOfDay(&tp_end);
1699 this_time =
1700 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1701 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1702 put_total_time_ms += this_time;
1703 put_total_size += state.nread;
1705 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1706 state.nread / (1.024*this_time + 1.0e-4),
1707 put_total_size / (1.024*put_total_time_ms)));
1710 if (f == x_stdin) {
1711 cli_cm_shutdown();
1712 exit(0);
1715 return rc;
1718 /****************************************************************************
1719 Put a file.
1720 ****************************************************************************/
1722 static int cmd_put(void)
1724 TALLOC_CTX *ctx = talloc_tos();
1725 char *lname;
1726 char *rname;
1727 char *buf;
1729 rname = talloc_strdup(ctx, client_get_cur_dir());
1730 if (!rname) {
1731 return 1;
1734 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1735 d_printf("put <filename>\n");
1736 return 1;
1739 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1740 rname = talloc_asprintf_append(rname, "%s", buf);
1741 } else {
1742 rname = talloc_asprintf_append(rname, "%s", lname);
1744 if (!rname) {
1745 return 1;
1748 rname = clean_name(ctx, rname);
1749 if (!rname) {
1750 return 1;
1754 SMB_STRUCT_STAT st;
1755 /* allow '-' to represent stdin
1756 jdblair, 24.jun.98 */
1757 if (!file_exist_stat(lname,&st) &&
1758 (strcmp(lname,"-"))) {
1759 d_printf("%s does not exist\n",lname);
1760 return 1;
1764 return do_put(rname, lname, false);
1767 /*************************************
1768 File list structure.
1769 *************************************/
1771 static struct file_list {
1772 struct file_list *prev, *next;
1773 char *file_path;
1774 bool isdir;
1775 } *file_list;
1777 /****************************************************************************
1778 Free a file_list structure.
1779 ****************************************************************************/
1781 static void free_file_list (struct file_list *list_head)
1783 struct file_list *list, *next;
1785 for (list = list_head; list; list = next) {
1786 next = list->next;
1787 DLIST_REMOVE(list_head, list);
1788 SAFE_FREE(list->file_path);
1789 SAFE_FREE(list);
1793 /****************************************************************************
1794 Seek in a directory/file list until you get something that doesn't start with
1795 the specified name.
1796 ****************************************************************************/
1798 static bool seek_list(struct file_list *list, char *name)
1800 while (list) {
1801 trim_string(list->file_path,"./","\n");
1802 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1803 return true;
1805 list = list->next;
1808 return false;
1811 /****************************************************************************
1812 Set the file selection mask.
1813 ****************************************************************************/
1815 static int cmd_select(void)
1817 TALLOC_CTX *ctx = talloc_tos();
1818 char *new_fs = NULL;
1819 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1821 if (new_fs) {
1822 client_set_fileselection(new_fs);
1823 } else {
1824 client_set_fileselection("");
1826 return 0;
1829 /****************************************************************************
1830 Recursive file matching function act as find
1831 match must be always set to true when calling this function
1832 ****************************************************************************/
1834 static int file_find(struct file_list **list, const char *directory,
1835 const char *expression, bool match)
1837 SMB_STRUCT_DIR *dir;
1838 struct file_list *entry;
1839 struct stat statbuf;
1840 int ret;
1841 char *path;
1842 bool isdir;
1843 const char *dname;
1845 dir = sys_opendir(directory);
1846 if (!dir)
1847 return -1;
1849 while ((dname = readdirname(dir))) {
1850 if (!strcmp("..", dname))
1851 continue;
1852 if (!strcmp(".", dname))
1853 continue;
1855 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1856 continue;
1859 isdir = false;
1860 if (!match || !gen_fnmatch(expression, dname)) {
1861 if (recurse) {
1862 ret = stat(path, &statbuf);
1863 if (ret == 0) {
1864 if (S_ISDIR(statbuf.st_mode)) {
1865 isdir = true;
1866 ret = file_find(list, path, expression, false);
1868 } else {
1869 d_printf("file_find: cannot stat file %s\n", path);
1872 if (ret == -1) {
1873 SAFE_FREE(path);
1874 sys_closedir(dir);
1875 return -1;
1878 entry = SMB_MALLOC_P(struct file_list);
1879 if (!entry) {
1880 d_printf("Out of memory in file_find\n");
1881 sys_closedir(dir);
1882 return -1;
1884 entry->file_path = path;
1885 entry->isdir = isdir;
1886 DLIST_ADD(*list, entry);
1887 } else {
1888 SAFE_FREE(path);
1892 sys_closedir(dir);
1893 return 0;
1896 /****************************************************************************
1897 mput some files.
1898 ****************************************************************************/
1900 static int cmd_mput(void)
1902 TALLOC_CTX *ctx = talloc_tos();
1903 char *p = NULL;
1905 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1906 int ret;
1907 struct file_list *temp_list;
1908 char *quest, *lname, *rname;
1910 file_list = NULL;
1912 ret = file_find(&file_list, ".", p, true);
1913 if (ret) {
1914 free_file_list(file_list);
1915 continue;
1918 quest = NULL;
1919 lname = NULL;
1920 rname = NULL;
1922 for (temp_list = file_list; temp_list;
1923 temp_list = temp_list->next) {
1925 SAFE_FREE(lname);
1926 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1927 continue;
1929 trim_string(lname, "./", "/");
1931 /* check if it's a directory */
1932 if (temp_list->isdir) {
1933 /* if (!recurse) continue; */
1935 SAFE_FREE(quest);
1936 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1937 break;
1939 if (prompt && !yesno(quest)) { /* No */
1940 /* Skip the directory */
1941 lname[strlen(lname)-1] = '/';
1942 if (!seek_list(temp_list, lname))
1943 break;
1944 } else { /* Yes */
1945 SAFE_FREE(rname);
1946 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1947 break;
1949 normalize_name(rname);
1950 if (!cli_chkpath(cli, rname) &&
1951 !do_mkdir(rname)) {
1952 DEBUG (0, ("Unable to make dir, skipping..."));
1953 /* Skip the directory */
1954 lname[strlen(lname)-1] = '/';
1955 if (!seek_list(temp_list, lname)) {
1956 break;
1960 continue;
1961 } else {
1962 SAFE_FREE(quest);
1963 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1964 break;
1966 if (prompt && !yesno(quest)) {
1967 /* No */
1968 continue;
1971 /* Yes */
1972 SAFE_FREE(rname);
1973 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1974 break;
1978 normalize_name(rname);
1980 do_put(rname, lname, false);
1982 free_file_list(file_list);
1983 SAFE_FREE(quest);
1984 SAFE_FREE(lname);
1985 SAFE_FREE(rname);
1988 return 0;
1991 /****************************************************************************
1992 Cancel a print job.
1993 ****************************************************************************/
1995 static int do_cancel(int job)
1997 if (cli_printjob_del(cli, job)) {
1998 d_printf("Job %d cancelled\n",job);
1999 return 0;
2000 } else {
2001 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2002 return 1;
2006 /****************************************************************************
2007 Cancel a print job.
2008 ****************************************************************************/
2010 static int cmd_cancel(void)
2012 TALLOC_CTX *ctx = talloc_tos();
2013 char *buf = NULL;
2014 int job;
2016 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2017 d_printf("cancel <jobid> ...\n");
2018 return 1;
2020 do {
2021 job = atoi(buf);
2022 do_cancel(job);
2023 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2025 return 0;
2028 /****************************************************************************
2029 Print a file.
2030 ****************************************************************************/
2032 static int cmd_print(void)
2034 TALLOC_CTX *ctx = talloc_tos();
2035 char *lname = NULL;
2036 char *rname = NULL;
2037 char *p = NULL;
2039 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2040 d_printf("print <filename>\n");
2041 return 1;
2044 rname = talloc_strdup(ctx, lname);
2045 if (!rname) {
2046 return 1;
2048 p = strrchr_m(rname,'/');
2049 if (p) {
2050 rname = talloc_asprintf(ctx,
2051 "%s-%d",
2052 p+1,
2053 (int)sys_getpid());
2055 if (strequal(lname,"-")) {
2056 rname = talloc_asprintf(ctx,
2057 "stdin-%d",
2058 (int)sys_getpid());
2060 if (!rname) {
2061 return 1;
2064 return do_put(rname, lname, false);
2067 /****************************************************************************
2068 Show a print queue entry.
2069 ****************************************************************************/
2071 static void queue_fn(struct print_job_info *p)
2073 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2076 /****************************************************************************
2077 Show a print queue.
2078 ****************************************************************************/
2080 static int cmd_queue(void)
2082 cli_print_queue(cli, queue_fn);
2083 return 0;
2086 /****************************************************************************
2087 Delete some files.
2088 ****************************************************************************/
2090 static void do_del(file_info *finfo, const char *dir)
2092 TALLOC_CTX *ctx = talloc_tos();
2093 char *mask = NULL;
2095 mask = talloc_asprintf(ctx,
2096 "%s%c%s",
2097 dir,
2098 CLI_DIRSEP_CHAR,
2099 finfo->name);
2100 if (!mask) {
2101 return;
2104 if (finfo->mode & aDIR) {
2105 TALLOC_FREE(mask);
2106 return;
2109 if (!cli_unlink(finfo->cli, mask)) {
2110 d_printf("%s deleting remote file %s\n",
2111 cli_errstr(finfo->cli),mask);
2113 TALLOC_FREE(mask);
2116 /****************************************************************************
2117 Delete some files.
2118 ****************************************************************************/
2120 static int cmd_del(void)
2122 TALLOC_CTX *ctx = talloc_tos();
2123 char *mask = NULL;
2124 char *buf = NULL;
2125 uint16 attribute = aSYSTEM | aHIDDEN;
2127 if (recurse) {
2128 attribute |= aDIR;
2131 mask = talloc_strdup(ctx, client_get_cur_dir());
2132 if (!mask) {
2133 return 1;
2135 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2136 d_printf("del <filename>\n");
2137 return 1;
2139 mask = talloc_asprintf_append(mask, "%s", buf);
2140 if (!mask) {
2141 return 1;
2144 do_list(mask,attribute,do_del,false,false);
2145 return 0;
2148 /****************************************************************************
2149 Wildcard delete some files.
2150 ****************************************************************************/
2152 static int cmd_wdel(void)
2154 TALLOC_CTX *ctx = talloc_tos();
2155 char *mask = NULL;
2156 char *buf = NULL;
2157 uint16 attribute;
2158 struct cli_state *targetcli;
2159 char *targetname = NULL;
2161 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2162 d_printf("wdel 0x<attrib> <wcard>\n");
2163 return 1;
2166 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2168 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2169 d_printf("wdel 0x<attrib> <wcard>\n");
2170 return 1;
2173 mask = talloc_asprintf(ctx, "%s%s",
2174 client_get_cur_dir(),
2175 buf);
2176 if (!mask) {
2177 return 1;
2180 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2181 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2182 return 1;
2185 if (!cli_unlink_full(targetcli, targetname, attribute)) {
2186 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2188 return 0;
2191 /****************************************************************************
2192 ****************************************************************************/
2194 static int cmd_open(void)
2196 TALLOC_CTX *ctx = talloc_tos();
2197 char *mask = NULL;
2198 char *buf = NULL;
2199 char *targetname = NULL;
2200 struct cli_state *targetcli;
2201 int fnum;
2203 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2204 d_printf("open <filename>\n");
2205 return 1;
2207 mask = talloc_asprintf(ctx,
2208 "%s%s",
2209 client_get_cur_dir(),
2210 buf);
2211 if (!mask) {
2212 return 1;
2215 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2216 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2217 return 1;
2220 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA|FILE_WRITE_DATA);
2221 if (fnum == -1) {
2222 fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA);
2223 if (fnum != -1) {
2224 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2225 } else {
2226 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2228 } else {
2229 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2231 return 0;
2234 static int cmd_posix_encrypt(void)
2236 TALLOC_CTX *ctx = talloc_tos();
2237 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2239 if (cli->use_kerberos) {
2240 status = cli_gss_smb_encryption_start(cli);
2241 } else {
2242 char *domain = NULL;
2243 char *user = NULL;
2244 char *password = NULL;
2246 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2247 d_printf("posix_encrypt domain user password\n");
2248 return 1;
2251 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2252 d_printf("posix_encrypt domain user password\n");
2253 return 1;
2256 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2257 d_printf("posix_encrypt domain user password\n");
2258 return 1;
2261 status = cli_raw_ntlm_smb_encryption_start(cli,
2262 user,
2263 password,
2264 domain);
2267 if (!NT_STATUS_IS_OK(status)) {
2268 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2269 } else {
2270 d_printf("encryption on\n");
2271 smb_encrypt = true;
2274 return 0;
2277 /****************************************************************************
2278 ****************************************************************************/
2280 static int cmd_posix_open(void)
2282 TALLOC_CTX *ctx = talloc_tos();
2283 char *mask = NULL;
2284 char *buf = NULL;
2285 char *targetname = NULL;
2286 struct cli_state *targetcli;
2287 mode_t mode;
2288 int fnum;
2290 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2291 d_printf("posix_open <filename> 0<mode>\n");
2292 return 1;
2294 mask = talloc_asprintf(ctx,
2295 "%s%s",
2296 client_get_cur_dir(),
2297 buf);
2298 if (!mask) {
2299 return 1;
2302 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2303 d_printf("posix_open <filename> 0<mode>\n");
2304 return 1;
2306 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2308 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2309 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2310 return 1;
2313 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode);
2314 if (fnum == -1) {
2315 fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode);
2316 if (fnum != -1) {
2317 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2318 } else {
2319 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2321 } else {
2322 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2325 return 0;
2328 static int cmd_posix_mkdir(void)
2330 TALLOC_CTX *ctx = talloc_tos();
2331 char *mask = NULL;
2332 char *buf = NULL;
2333 char *targetname = NULL;
2334 struct cli_state *targetcli;
2335 mode_t mode;
2336 int fnum;
2338 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2339 d_printf("posix_mkdir <filename> 0<mode>\n");
2340 return 1;
2342 mask = talloc_asprintf(ctx,
2343 "%s%s",
2344 client_get_cur_dir(),
2345 buf);
2346 if (!mask) {
2347 return 1;
2350 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2351 d_printf("posix_mkdir <filename> 0<mode>\n");
2352 return 1;
2354 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2356 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2357 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2358 return 1;
2361 fnum = cli_posix_mkdir(targetcli, targetname, mode);
2362 if (fnum == -1) {
2363 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2364 } else {
2365 d_printf("posix_mkdir created directory %s\n", targetname);
2367 return 0;
2370 static int cmd_posix_unlink(void)
2372 TALLOC_CTX *ctx = talloc_tos();
2373 char *mask = NULL;
2374 char *buf = NULL;
2375 char *targetname = NULL;
2376 struct cli_state *targetcli;
2378 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2379 d_printf("posix_unlink <filename>\n");
2380 return 1;
2382 mask = talloc_asprintf(ctx,
2383 "%s%s",
2384 client_get_cur_dir(),
2385 buf);
2386 if (!mask) {
2387 return 1;
2390 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2391 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2392 return 1;
2395 if (!cli_posix_unlink(targetcli, targetname)) {
2396 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2397 } else {
2398 d_printf("posix_unlink deleted file %s\n", targetname);
2401 return 0;
2404 static int cmd_posix_rmdir(void)
2406 TALLOC_CTX *ctx = talloc_tos();
2407 char *mask = NULL;
2408 char *buf = NULL;
2409 char *targetname = NULL;
2410 struct cli_state *targetcli;
2412 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2413 d_printf("posix_rmdir <filename>\n");
2414 return 1;
2416 mask = talloc_asprintf(ctx,
2417 "%s%s",
2418 client_get_cur_dir(),
2419 buf);
2420 if (!mask) {
2421 return 1;
2424 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2425 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2426 return 1;
2429 if (!cli_posix_rmdir(targetcli, targetname)) {
2430 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2431 } else {
2432 d_printf("posix_rmdir deleted directory %s\n", targetname);
2435 return 0;
2438 static int cmd_close(void)
2440 TALLOC_CTX *ctx = talloc_tos();
2441 char *buf = NULL;
2442 int fnum;
2444 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2445 d_printf("close <fnum>\n");
2446 return 1;
2449 fnum = atoi(buf);
2450 /* We really should use the targetcli here.... */
2451 if (!cli_close(cli, fnum)) {
2452 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2453 return 1;
2455 return 0;
2458 static int cmd_posix(void)
2460 TALLOC_CTX *ctx = talloc_tos();
2461 uint16 major, minor;
2462 uint32 caplow, caphigh;
2463 char *caps;
2465 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2466 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2467 return 1;
2470 if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2471 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2472 return 1;
2475 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2477 caps = talloc_strdup(ctx, "");
2478 if (!caps) {
2479 return 1;
2481 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2482 caps = talloc_asprintf_append(caps, "locks ");
2483 if (!caps) {
2484 return 1;
2487 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2488 caps = talloc_asprintf_append(caps, "acls ");
2489 if (!caps) {
2490 return 1;
2493 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2494 caps = talloc_asprintf_append(caps, "eas ");
2495 if (!caps) {
2496 return 1;
2499 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2500 caps = talloc_asprintf_append(caps, "pathnames ");
2501 if (!caps) {
2502 return 1;
2505 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2506 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2507 if (!caps) {
2508 return 1;
2511 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2512 caps = talloc_asprintf_append(caps, "large_read ");
2513 if (!caps) {
2514 return 1;
2517 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2518 caps = talloc_asprintf_append(caps, "large_write ");
2519 if (!caps) {
2520 return 1;
2523 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2524 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2525 if (!caps) {
2526 return 1;
2529 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2530 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2531 if (!caps) {
2532 return 1;
2536 if (*caps && caps[strlen(caps)-1] == ' ') {
2537 caps[strlen(caps)-1] = '\0';
2540 d_printf("Server supports CIFS capabilities %s\n", caps);
2542 if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2543 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2544 return 1;
2547 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2548 CLI_DIRSEP_CHAR = '/';
2549 *CLI_DIRSEP_STR = '/';
2550 client_set_cur_dir(CLI_DIRSEP_STR);
2553 return 0;
2556 static int cmd_lock(void)
2558 TALLOC_CTX *ctx = talloc_tos();
2559 char *buf = NULL;
2560 uint64_t start, len;
2561 enum brl_type lock_type;
2562 int fnum;
2564 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2565 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2566 return 1;
2568 fnum = atoi(buf);
2570 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2571 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2572 return 1;
2575 if (*buf == 'r' || *buf == 'R') {
2576 lock_type = READ_LOCK;
2577 } else if (*buf == 'w' || *buf == 'W') {
2578 lock_type = WRITE_LOCK;
2579 } else {
2580 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2581 return 1;
2584 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2585 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2586 return 1;
2589 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2591 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2592 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2593 return 1;
2596 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2598 if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
2599 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2602 return 0;
2605 static int cmd_unlock(void)
2607 TALLOC_CTX *ctx = talloc_tos();
2608 char *buf = NULL;
2609 uint64_t start, len;
2610 int fnum;
2612 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2613 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2614 return 1;
2616 fnum = atoi(buf);
2618 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2619 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2620 return 1;
2623 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2625 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2626 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2627 return 1;
2630 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2632 if (!cli_posix_unlock(cli, fnum, start, len)) {
2633 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2636 return 0;
2640 /****************************************************************************
2641 Remove a directory.
2642 ****************************************************************************/
2644 static int cmd_rmdir(void)
2646 TALLOC_CTX *ctx = talloc_tos();
2647 char *mask = NULL;
2648 char *buf = NULL;
2649 char *targetname = NULL;
2650 struct cli_state *targetcli;
2652 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2653 d_printf("rmdir <dirname>\n");
2654 return 1;
2656 mask = talloc_asprintf(ctx,
2657 "%s%s",
2658 client_get_cur_dir(),
2659 buf);
2660 if (!mask) {
2661 return 1;
2664 if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
2665 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2666 return 1;
2669 if (!cli_rmdir(targetcli, targetname)) {
2670 d_printf("%s removing remote directory file %s\n",
2671 cli_errstr(targetcli),mask);
2674 return 0;
2677 /****************************************************************************
2678 UNIX hardlink.
2679 ****************************************************************************/
2681 static int cmd_link(void)
2683 TALLOC_CTX *ctx = talloc_tos();
2684 char *oldname = NULL;
2685 char *newname = NULL;
2686 char *buf = NULL;
2687 char *buf2 = NULL;
2688 char *targetname = NULL;
2689 struct cli_state *targetcli;
2691 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2692 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2693 d_printf("link <oldname> <newname>\n");
2694 return 1;
2696 oldname = talloc_asprintf(ctx,
2697 "%s%s",
2698 client_get_cur_dir(),
2699 buf);
2700 if (!oldname) {
2701 return 1;
2703 newname = talloc_asprintf(ctx,
2704 "%s%s",
2705 client_get_cur_dir(),
2706 buf2);
2707 if (!newname) {
2708 return 1;
2711 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2712 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2713 return 1;
2716 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2717 d_printf("Server doesn't support UNIX CIFS calls.\n");
2718 return 1;
2721 if (!cli_unix_hardlink(targetcli, targetname, newname)) {
2722 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2723 return 1;
2725 return 0;
2728 /****************************************************************************
2729 UNIX symlink.
2730 ****************************************************************************/
2732 static int cmd_symlink(void)
2734 TALLOC_CTX *ctx = talloc_tos();
2735 char *oldname = NULL;
2736 char *newname = NULL;
2737 char *buf = NULL;
2738 char *buf2 = NULL;
2739 char *targetname = NULL;
2740 struct cli_state *targetcli;
2742 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2743 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2744 d_printf("symlink <oldname> <newname>\n");
2745 return 1;
2747 oldname = talloc_asprintf(ctx,
2748 "%s%s",
2749 client_get_cur_dir(),
2750 buf);
2751 if (!oldname) {
2752 return 1;
2754 newname = talloc_asprintf(ctx,
2755 "%s%s",
2756 client_get_cur_dir(),
2757 buf2);
2758 if (!newname) {
2759 return 1;
2762 if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
2763 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2764 return 1;
2767 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2768 d_printf("Server doesn't support UNIX CIFS calls.\n");
2769 return 1;
2772 if (!cli_unix_symlink(targetcli, targetname, newname)) {
2773 d_printf("%s symlinking files (%s -> %s)\n",
2774 cli_errstr(targetcli), newname, targetname);
2775 return 1;
2778 return 0;
2781 /****************************************************************************
2782 UNIX chmod.
2783 ****************************************************************************/
2785 static int cmd_chmod(void)
2787 TALLOC_CTX *ctx = talloc_tos();
2788 char *src = NULL;
2789 char *buf = NULL;
2790 char *buf2 = NULL;
2791 char *targetname = NULL;
2792 struct cli_state *targetcli;
2793 mode_t mode;
2795 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2796 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2797 d_printf("chmod mode file\n");
2798 return 1;
2800 src = talloc_asprintf(ctx,
2801 "%s%s",
2802 client_get_cur_dir(),
2803 buf2);
2804 if (!src) {
2805 return 1;
2808 mode = (mode_t)strtol(buf, NULL, 8);
2810 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2811 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2812 return 1;
2815 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2816 d_printf("Server doesn't support UNIX CIFS calls.\n");
2817 return 1;
2820 if (!cli_unix_chmod(targetcli, targetname, mode)) {
2821 d_printf("%s chmod file %s 0%o\n",
2822 cli_errstr(targetcli), src, (unsigned int)mode);
2823 return 1;
2826 return 0;
2829 static const char *filetype_to_str(mode_t mode)
2831 if (S_ISREG(mode)) {
2832 return "regular file";
2833 } else if (S_ISDIR(mode)) {
2834 return "directory";
2835 } else
2836 #ifdef S_ISCHR
2837 if (S_ISCHR(mode)) {
2838 return "character device";
2839 } else
2840 #endif
2841 #ifdef S_ISBLK
2842 if (S_ISBLK(mode)) {
2843 return "block device";
2844 } else
2845 #endif
2846 #ifdef S_ISFIFO
2847 if (S_ISFIFO(mode)) {
2848 return "fifo";
2849 } else
2850 #endif
2851 #ifdef S_ISLNK
2852 if (S_ISLNK(mode)) {
2853 return "symbolic link";
2854 } else
2855 #endif
2856 #ifdef S_ISSOCK
2857 if (S_ISSOCK(mode)) {
2858 return "socket";
2859 } else
2860 #endif
2861 return "";
2864 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2866 if (m & bt) {
2867 return ret;
2868 } else {
2869 return '-';
2873 static char *unix_mode_to_str(char *s, mode_t m)
2875 char *p = s;
2876 const char *str = filetype_to_str(m);
2878 switch(str[0]) {
2879 case 'd':
2880 *p++ = 'd';
2881 break;
2882 case 'c':
2883 *p++ = 'c';
2884 break;
2885 case 'b':
2886 *p++ = 'b';
2887 break;
2888 case 'f':
2889 *p++ = 'p';
2890 break;
2891 case 's':
2892 *p++ = str[1] == 'y' ? 'l' : 's';
2893 break;
2894 case 'r':
2895 default:
2896 *p++ = '-';
2897 break;
2899 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2900 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2901 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2902 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2903 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2904 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2905 *p++ = rwx_to_str(m, S_IROTH, 'r');
2906 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2907 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2908 *p++ = '\0';
2909 return s;
2912 /****************************************************************************
2913 Utility function for UNIX getfacl.
2914 ****************************************************************************/
2916 static char *perms_to_string(fstring permstr, unsigned char perms)
2918 fstrcpy(permstr, "---");
2919 if (perms & SMB_POSIX_ACL_READ) {
2920 permstr[0] = 'r';
2922 if (perms & SMB_POSIX_ACL_WRITE) {
2923 permstr[1] = 'w';
2925 if (perms & SMB_POSIX_ACL_EXECUTE) {
2926 permstr[2] = 'x';
2928 return permstr;
2931 /****************************************************************************
2932 UNIX getfacl.
2933 ****************************************************************************/
2935 static int cmd_getfacl(void)
2937 TALLOC_CTX *ctx = talloc_tos();
2938 char *src = NULL;
2939 char *name = NULL;
2940 char *targetname = NULL;
2941 struct cli_state *targetcli;
2942 uint16 major, minor;
2943 uint32 caplow, caphigh;
2944 char *retbuf = NULL;
2945 size_t rb_size = 0;
2946 SMB_STRUCT_STAT sbuf;
2947 uint16 num_file_acls = 0;
2948 uint16 num_dir_acls = 0;
2949 uint16 i;
2951 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2952 d_printf("getfacl filename\n");
2953 return 1;
2955 src = talloc_asprintf(ctx,
2956 "%s%s",
2957 client_get_cur_dir(),
2958 name);
2959 if (!src) {
2960 return 1;
2963 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
2964 d_printf("stat %s: %s\n", src, cli_errstr(cli));
2965 return 1;
2968 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2969 d_printf("Server doesn't support UNIX CIFS calls.\n");
2970 return 1;
2973 if (!cli_unix_extensions_version(targetcli, &major, &minor,
2974 &caplow, &caphigh)) {
2975 d_printf("Can't get UNIX CIFS version from server.\n");
2976 return 1;
2979 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
2980 d_printf("This server supports UNIX extensions "
2981 "but doesn't support POSIX ACLs.\n");
2982 return 1;
2985 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
2986 d_printf("%s getfacl doing a stat on file %s\n",
2987 cli_errstr(targetcli), src);
2988 return 1;
2991 if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
2992 d_printf("%s getfacl file %s\n",
2993 cli_errstr(targetcli), src);
2994 return 1;
2997 /* ToDo : Print out the ACL values. */
2998 if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
2999 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3000 src, (unsigned int)CVAL(retbuf,0) );
3001 SAFE_FREE(retbuf);
3002 return 1;
3005 num_file_acls = SVAL(retbuf,2);
3006 num_dir_acls = SVAL(retbuf,4);
3007 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3008 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3009 src,
3010 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3011 (unsigned int)rb_size);
3013 SAFE_FREE(retbuf);
3014 return 1;
3017 d_printf("# file: %s\n", src);
3018 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
3020 if (num_file_acls == 0 && num_dir_acls == 0) {
3021 d_printf("No acls found.\n");
3024 for (i = 0; i < num_file_acls; i++) {
3025 uint32 uorg;
3026 fstring permstring;
3027 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3028 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3030 switch(tagtype) {
3031 case SMB_POSIX_ACL_USER_OBJ:
3032 d_printf("user::");
3033 break;
3034 case SMB_POSIX_ACL_USER:
3035 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3036 d_printf("user:%u:", uorg);
3037 break;
3038 case SMB_POSIX_ACL_GROUP_OBJ:
3039 d_printf("group::");
3040 break;
3041 case SMB_POSIX_ACL_GROUP:
3042 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3043 d_printf("group:%u:", uorg);
3044 break;
3045 case SMB_POSIX_ACL_MASK:
3046 d_printf("mask::");
3047 break;
3048 case SMB_POSIX_ACL_OTHER:
3049 d_printf("other::");
3050 break;
3051 default:
3052 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3053 src, (unsigned int)tagtype );
3054 SAFE_FREE(retbuf);
3055 return 1;
3058 d_printf("%s\n", perms_to_string(permstring, perms));
3061 for (i = 0; i < num_dir_acls; i++) {
3062 uint32 uorg;
3063 fstring permstring;
3064 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3065 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3067 switch(tagtype) {
3068 case SMB_POSIX_ACL_USER_OBJ:
3069 d_printf("default:user::");
3070 break;
3071 case SMB_POSIX_ACL_USER:
3072 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3073 d_printf("default:user:%u:", uorg);
3074 break;
3075 case SMB_POSIX_ACL_GROUP_OBJ:
3076 d_printf("default:group::");
3077 break;
3078 case SMB_POSIX_ACL_GROUP:
3079 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3080 d_printf("default:group:%u:", uorg);
3081 break;
3082 case SMB_POSIX_ACL_MASK:
3083 d_printf("default:mask::");
3084 break;
3085 case SMB_POSIX_ACL_OTHER:
3086 d_printf("default:other::");
3087 break;
3088 default:
3089 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3090 src, (unsigned int)tagtype );
3091 SAFE_FREE(retbuf);
3092 return 1;
3095 d_printf("%s\n", perms_to_string(permstring, perms));
3098 SAFE_FREE(retbuf);
3099 return 0;
3102 /****************************************************************************
3103 UNIX stat.
3104 ****************************************************************************/
3106 static int cmd_stat(void)
3108 TALLOC_CTX *ctx = talloc_tos();
3109 char *src = NULL;
3110 char *name = NULL;
3111 char *targetname = NULL;
3112 struct cli_state *targetcli;
3113 fstring mode_str;
3114 SMB_STRUCT_STAT sbuf;
3115 struct tm *lt;
3117 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3118 d_printf("stat file\n");
3119 return 1;
3121 src = talloc_asprintf(ctx,
3122 "%s%s",
3123 client_get_cur_dir(),
3124 name);
3125 if (!src) {
3126 return 1;
3129 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3130 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3131 return 1;
3134 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3135 d_printf("Server doesn't support UNIX CIFS calls.\n");
3136 return 1;
3139 if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
3140 d_printf("%s stat file %s\n",
3141 cli_errstr(targetcli), src);
3142 return 1;
3145 /* Print out the stat values. */
3146 d_printf("File: %s\n", src);
3147 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3148 (double)sbuf.st_size,
3149 (unsigned int)sbuf.st_blocks,
3150 filetype_to_str(sbuf.st_mode));
3152 #if defined(S_ISCHR) && defined(S_ISBLK)
3153 if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
3154 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3155 (double)sbuf.st_ino,
3156 (unsigned int)sbuf.st_nlink,
3157 unix_dev_major(sbuf.st_rdev),
3158 unix_dev_minor(sbuf.st_rdev));
3159 } else
3160 #endif
3161 d_printf("Inode: %.0f\tLinks: %u\n",
3162 (double)sbuf.st_ino,
3163 (unsigned int)sbuf.st_nlink);
3165 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3166 ((int)sbuf.st_mode & 0777),
3167 unix_mode_to_str(mode_str, sbuf.st_mode),
3168 (unsigned int)sbuf.st_uid,
3169 (unsigned int)sbuf.st_gid);
3171 lt = localtime(&sbuf.st_atime);
3172 if (lt) {
3173 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3174 } else {
3175 fstrcpy(mode_str, "unknown");
3177 d_printf("Access: %s\n", mode_str);
3179 lt = localtime(&sbuf.st_mtime);
3180 if (lt) {
3181 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3182 } else {
3183 fstrcpy(mode_str, "unknown");
3185 d_printf("Modify: %s\n", mode_str);
3187 lt = localtime(&sbuf.st_ctime);
3188 if (lt) {
3189 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3190 } else {
3191 fstrcpy(mode_str, "unknown");
3193 d_printf("Change: %s\n", mode_str);
3195 return 0;
3199 /****************************************************************************
3200 UNIX chown.
3201 ****************************************************************************/
3203 static int cmd_chown(void)
3205 TALLOC_CTX *ctx = talloc_tos();
3206 char *src = NULL;
3207 uid_t uid;
3208 gid_t gid;
3209 char *buf, *buf2, *buf3;
3210 struct cli_state *targetcli;
3211 char *targetname = NULL;
3213 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3214 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3215 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3216 d_printf("chown uid gid file\n");
3217 return 1;
3220 uid = (uid_t)atoi(buf);
3221 gid = (gid_t)atoi(buf2);
3223 src = talloc_asprintf(ctx,
3224 "%s%s",
3225 client_get_cur_dir(),
3226 buf3);
3227 if (!src) {
3228 return 1;
3230 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname) ) {
3231 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3232 return 1;
3235 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3236 d_printf("Server doesn't support UNIX CIFS calls.\n");
3237 return 1;
3240 if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
3241 d_printf("%s chown file %s uid=%d, gid=%d\n",
3242 cli_errstr(targetcli), src, (int)uid, (int)gid);
3243 return 1;
3246 return 0;
3249 /****************************************************************************
3250 Rename some file.
3251 ****************************************************************************/
3253 static int cmd_rename(void)
3255 TALLOC_CTX *ctx = talloc_tos();
3256 char *src, *dest;
3257 char *buf, *buf2;
3258 struct cli_state *targetcli;
3259 char *targetsrc;
3260 char *targetdest;
3262 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3263 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3264 d_printf("rename <src> <dest>\n");
3265 return 1;
3268 src = talloc_asprintf(ctx,
3269 "%s%s",
3270 client_get_cur_dir(),
3271 buf);
3272 if (!src) {
3273 return 1;
3276 dest = talloc_asprintf(ctx,
3277 "%s%s",
3278 client_get_cur_dir(),
3279 buf2);
3280 if (!dest) {
3281 return 1;
3284 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetsrc)) {
3285 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3286 return 1;
3289 if (!cli_resolve_path(ctx, "", cli, dest, &targetcli, &targetdest)) {
3290 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3291 return 1;
3294 if (!cli_rename(targetcli, targetsrc, targetdest)) {
3295 d_printf("%s renaming files %s -> %s \n",
3296 cli_errstr(targetcli),
3297 targetsrc,
3298 targetdest);
3299 return 1;
3302 return 0;
3305 /****************************************************************************
3306 Print the volume name.
3307 ****************************************************************************/
3309 static int cmd_volume(void)
3311 fstring volname;
3312 uint32 serial_num;
3313 time_t create_date;
3315 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3316 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3317 return 1;
3320 d_printf("Volume: |%s| serial number 0x%x\n",
3321 volname, (unsigned int)serial_num);
3322 return 0;
3325 /****************************************************************************
3326 Hard link files using the NT call.
3327 ****************************************************************************/
3329 static int cmd_hardlink(void)
3331 TALLOC_CTX *ctx = talloc_tos();
3332 char *src, *dest;
3333 char *buf, *buf2;
3334 struct cli_state *targetcli;
3335 char *targetname;
3337 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3338 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3339 d_printf("hardlink <src> <dest>\n");
3340 return 1;
3343 src = talloc_asprintf(ctx,
3344 "%s%s",
3345 client_get_cur_dir(),
3346 buf);
3347 if (!src) {
3348 return 1;
3351 dest = talloc_asprintf(ctx,
3352 "%s%s",
3353 client_get_cur_dir(),
3354 buf2);
3355 if (!dest) {
3356 return 1;
3359 if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
3360 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3361 return 1;
3364 if (!cli_nt_hardlink(targetcli, targetname, dest)) {
3365 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3366 return 1;
3369 return 0;
3372 /****************************************************************************
3373 Toggle the prompt flag.
3374 ****************************************************************************/
3376 static int cmd_prompt(void)
3378 prompt = !prompt;
3379 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3380 return 1;
3383 /****************************************************************************
3384 Set the newer than time.
3385 ****************************************************************************/
3387 static int cmd_newer(void)
3389 TALLOC_CTX *ctx = talloc_tos();
3390 char *buf;
3391 bool ok;
3392 SMB_STRUCT_STAT sbuf;
3394 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3395 if (ok && (sys_stat(buf,&sbuf) == 0)) {
3396 newer_than = sbuf.st_mtime;
3397 DEBUG(1,("Getting files newer than %s",
3398 time_to_asc(newer_than)));
3399 } else {
3400 newer_than = 0;
3403 if (ok && newer_than == 0) {
3404 d_printf("Error setting newer-than time\n");
3405 return 1;
3408 return 0;
3411 /****************************************************************************
3412 Set the archive level.
3413 ****************************************************************************/
3415 static int cmd_archive(void)
3417 TALLOC_CTX *ctx = talloc_tos();
3418 char *buf;
3420 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3421 archive_level = atoi(buf);
3422 } else {
3423 d_printf("Archive level is %d\n",archive_level);
3426 return 0;
3429 /****************************************************************************
3430 Toggle the lowercaseflag.
3431 ****************************************************************************/
3433 static int cmd_lowercase(void)
3435 lowercase = !lowercase;
3436 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3437 return 0;
3440 /****************************************************************************
3441 Toggle the case sensitive flag.
3442 ****************************************************************************/
3444 static int cmd_setcase(void)
3446 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3448 cli_set_case_sensitive(cli, !orig_case_sensitive);
3449 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3450 "on":"off"));
3451 return 0;
3454 /****************************************************************************
3455 Toggle the showacls flag.
3456 ****************************************************************************/
3458 static int cmd_showacls(void)
3460 showacls = !showacls;
3461 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3462 return 0;
3466 /****************************************************************************
3467 Toggle the recurse flag.
3468 ****************************************************************************/
3470 static int cmd_recurse(void)
3472 recurse = !recurse;
3473 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3474 return 0;
3477 /****************************************************************************
3478 Toggle the translate flag.
3479 ****************************************************************************/
3481 static int cmd_translate(void)
3483 translation = !translation;
3484 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3485 translation?"on":"off"));
3486 return 0;
3489 /****************************************************************************
3490 Do the lcd command.
3491 ****************************************************************************/
3493 static int cmd_lcd(void)
3495 TALLOC_CTX *ctx = talloc_tos();
3496 char *buf;
3497 char *d;
3499 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3500 if (chdir(buf) == -1) {
3501 d_printf("chdir to %s failed (%s)\n",
3502 buf, strerror(errno));
3505 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3506 if (!d) {
3507 return 1;
3509 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3510 return 0;
3513 /****************************************************************************
3514 Get a file restarting at end of local file.
3515 ****************************************************************************/
3517 static int cmd_reget(void)
3519 TALLOC_CTX *ctx = talloc_tos();
3520 char *local_name = NULL;
3521 char *remote_name = NULL;
3522 char *fname = NULL;
3523 char *p = NULL;
3525 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3526 if (!remote_name) {
3527 return 1;
3530 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3531 d_printf("reget <filename>\n");
3532 return 1;
3534 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3535 if (!remote_name) {
3536 return 1;
3538 remote_name = clean_name(ctx,remote_name);
3539 if (!remote_name) {
3540 return 1;
3543 local_name = fname;
3544 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3545 if (p) {
3546 local_name = p;
3549 return do_get(remote_name, local_name, true);
3552 /****************************************************************************
3553 Put a file restarting at end of local file.
3554 ****************************************************************************/
3556 static int cmd_reput(void)
3558 TALLOC_CTX *ctx = talloc_tos();
3559 char *local_name = NULL;
3560 char *remote_name = NULL;
3561 char *buf;
3562 SMB_STRUCT_STAT st;
3564 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3565 if (!remote_name) {
3566 return 1;
3569 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3570 d_printf("reput <filename>\n");
3571 return 1;
3574 if (!file_exist_stat(local_name, &st)) {
3575 d_printf("%s does not exist\n", local_name);
3576 return 1;
3579 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3580 remote_name = talloc_asprintf_append(remote_name,
3581 "%s", buf);
3582 } else {
3583 remote_name = talloc_asprintf_append(remote_name,
3584 "%s", local_name);
3586 if (!remote_name) {
3587 return 1;
3590 remote_name = clean_name(ctx, remote_name);
3591 if (!remote_name) {
3592 return 1;
3595 return do_put(remote_name, local_name, true);
3598 /****************************************************************************
3599 List a share name.
3600 ****************************************************************************/
3602 static void browse_fn(const char *name, uint32 m,
3603 const char *comment, void *state)
3605 const char *typestr = "";
3607 switch (m & 7) {
3608 case STYPE_DISKTREE:
3609 typestr = "Disk";
3610 break;
3611 case STYPE_PRINTQ:
3612 typestr = "Printer";
3613 break;
3614 case STYPE_DEVICE:
3615 typestr = "Device";
3616 break;
3617 case STYPE_IPC:
3618 typestr = "IPC";
3619 break;
3621 /* FIXME: If the remote machine returns non-ascii characters
3622 in any of these fields, they can corrupt the output. We
3623 should remove them. */
3624 if (!grepable) {
3625 d_printf("\t%-15s %-10.10s%s\n",
3626 name,typestr,comment);
3627 } else {
3628 d_printf ("%s|%s|%s\n",typestr,name,comment);
3632 static bool browse_host_rpc(bool sort)
3634 NTSTATUS status;
3635 struct rpc_pipe_client *pipe_hnd;
3636 TALLOC_CTX *frame = talloc_stackframe();
3637 WERROR werr;
3638 struct srvsvc_NetShareInfoCtr info_ctr;
3639 struct srvsvc_NetShareCtr1 ctr1;
3640 uint32_t resume_handle = 0;
3641 uint32_t total_entries = 0;
3642 int i;
3644 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3645 &pipe_hnd);
3647 if (!NT_STATUS_IS_OK(status)) {
3648 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3649 nt_errstr(status)));
3650 TALLOC_FREE(frame);
3651 return false;
3654 ZERO_STRUCT(info_ctr);
3655 ZERO_STRUCT(ctr1);
3657 info_ctr.level = 1;
3658 info_ctr.ctr.ctr1 = &ctr1;
3660 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3661 pipe_hnd->desthost,
3662 &info_ctr,
3663 0xffffffff,
3664 &total_entries,
3665 &resume_handle,
3666 &werr);
3668 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3669 TALLOC_FREE(pipe_hnd);
3670 TALLOC_FREE(frame);
3671 return false;
3674 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3675 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3676 browse_fn(info.name, info.type, info.comment, NULL);
3679 TALLOC_FREE(pipe_hnd);
3680 TALLOC_FREE(frame);
3681 return true;
3684 /****************************************************************************
3685 Try and browse available connections on a host.
3686 ****************************************************************************/
3688 static bool browse_host(bool sort)
3690 int ret;
3691 if (!grepable) {
3692 d_printf("\n\tSharename Type Comment\n");
3693 d_printf("\t--------- ---- -------\n");
3696 if (browse_host_rpc(sort)) {
3697 return true;
3700 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3701 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3703 return (ret != -1);
3706 /****************************************************************************
3707 List a server name.
3708 ****************************************************************************/
3710 static void server_fn(const char *name, uint32 m,
3711 const char *comment, void *state)
3714 if (!grepable){
3715 d_printf("\t%-16s %s\n", name, comment);
3716 } else {
3717 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3721 /****************************************************************************
3722 Try and browse available connections on a host.
3723 ****************************************************************************/
3725 static bool list_servers(const char *wk_grp)
3727 fstring state;
3729 if (!cli->server_domain)
3730 return false;
3732 if (!grepable) {
3733 d_printf("\n\tServer Comment\n");
3734 d_printf("\t--------- -------\n");
3736 fstrcpy( state, "Server" );
3737 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3738 state);
3740 if (!grepable) {
3741 d_printf("\n\tWorkgroup Master\n");
3742 d_printf("\t--------- -------\n");
3745 fstrcpy( state, "Workgroup" );
3746 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3747 server_fn, state);
3748 return true;
3751 /****************************************************************************
3752 Print or set current VUID
3753 ****************************************************************************/
3755 static int cmd_vuid(void)
3757 TALLOC_CTX *ctx = talloc_tos();
3758 char *buf;
3760 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3761 d_printf("Current VUID is %d\n", cli->vuid);
3762 return 0;
3765 cli->vuid = atoi(buf);
3766 return 0;
3769 /****************************************************************************
3770 Setup a new VUID, by issuing a session setup
3771 ****************************************************************************/
3773 static int cmd_logon(void)
3775 TALLOC_CTX *ctx = talloc_tos();
3776 char *l_username, *l_password;
3778 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3779 d_printf("logon <username> [<password>]\n");
3780 return 0;
3783 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3784 char *pass = getpass("Password: ");
3785 if (pass) {
3786 l_password = talloc_strdup(ctx,pass);
3789 if (!l_password) {
3790 return 1;
3793 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3794 l_password, strlen(l_password),
3795 l_password, strlen(l_password),
3796 lp_workgroup()))) {
3797 d_printf("session setup failed: %s\n", cli_errstr(cli));
3798 return -1;
3801 d_printf("Current VUID is %d\n", cli->vuid);
3802 return 0;
3806 /****************************************************************************
3807 list active connections
3808 ****************************************************************************/
3810 static int cmd_list_connect(void)
3812 cli_cm_display();
3813 return 0;
3816 /****************************************************************************
3817 display the current active client connection
3818 ****************************************************************************/
3820 static int cmd_show_connect( void )
3822 TALLOC_CTX *ctx = talloc_tos();
3823 struct cli_state *targetcli;
3824 char *targetpath;
3826 if (!cli_resolve_path(ctx, "", cli, client_get_cur_dir(),
3827 &targetcli, &targetpath ) ) {
3828 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3829 return 1;
3832 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3833 return 0;
3836 /****************************************************************************
3837 iosize command
3838 ***************************************************************************/
3840 int cmd_iosize(void)
3842 TALLOC_CTX *ctx = talloc_tos();
3843 char *buf;
3844 int iosize;
3846 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3847 if (!smb_encrypt) {
3848 d_printf("iosize <n> or iosize 0x<n>. "
3849 "Minimum is 16384 (0x4000), "
3850 "max is 16776960 (0xFFFF00)\n");
3851 } else {
3852 d_printf("iosize <n> or iosize 0x<n>. "
3853 "(Encrypted connection) ,"
3854 "Minimum is 16384 (0x4000), "
3855 "max is 130048 (0x1FC00)\n");
3857 return 1;
3860 iosize = strtol(buf,NULL,0);
3861 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3862 d_printf("iosize out of range for encrypted "
3863 "connection (min = 16384 (0x4000), "
3864 "max = 130048 (0x1FC00)");
3865 return 1;
3866 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3867 d_printf("iosize out of range (min = 16384 (0x4000), "
3868 "max = 16776960 (0xFFFF00)");
3869 return 1;
3872 io_bufsize = iosize;
3873 d_printf("iosize is now %d\n", io_bufsize);
3874 return 0;
3878 /* Some constants for completing filename arguments */
3880 #define COMPL_NONE 0 /* No completions */
3881 #define COMPL_REMOTE 1 /* Complete remote filename */
3882 #define COMPL_LOCAL 2 /* Complete local filename */
3884 /* This defines the commands supported by this client.
3885 * NOTE: The "!" must be the last one in the list because it's fn pointer
3886 * field is NULL, and NULL in that field is used in process_tok()
3887 * (below) to indicate the end of the list. crh
3889 static struct {
3890 const char *name;
3891 int (*fn)(void);
3892 const char *description;
3893 char compl_args[2]; /* Completion argument info */
3894 } commands[] = {
3895 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3896 {"allinfo",cmd_allinfo,"<file> show all available info",
3897 {COMPL_NONE,COMPL_NONE}},
3898 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3899 {"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}},
3900 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3901 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3902 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3903 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3904 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3905 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3906 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3907 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3908 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3909 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3910 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3911 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3912 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3913 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3914 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3915 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3916 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3917 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3918 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3919 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3920 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3921 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3922 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3923 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3924 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3925 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3926 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3927 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3928 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3929 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3930 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3931 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3932 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3933 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3934 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3935 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3936 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3937 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3938 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3939 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
3940 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3941 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3942 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3943 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3944 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3945 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3946 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
3947 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3948 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3949 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3950 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3951 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3952 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
3953 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
3954 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
3955 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3956 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
3957 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
3958 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
3959 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3960 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
3961 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
3962 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3963 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
3964 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
3965 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
3966 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
3968 /* Yes, this must be here, see crh's comment above. */
3969 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
3970 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
3973 /*******************************************************************
3974 Lookup a command string in the list of commands, including
3975 abbreviations.
3976 ******************************************************************/
3978 static int process_tok(char *tok)
3980 int i = 0, matches = 0;
3981 int cmd=0;
3982 int tok_len = strlen(tok);
3984 while (commands[i].fn != NULL) {
3985 if (strequal(commands[i].name,tok)) {
3986 matches = 1;
3987 cmd = i;
3988 break;
3989 } else if (strnequal(commands[i].name, tok, tok_len)) {
3990 matches++;
3991 cmd = i;
3993 i++;
3996 if (matches == 0)
3997 return(-1);
3998 else if (matches == 1)
3999 return(cmd);
4000 else
4001 return(-2);
4004 /****************************************************************************
4005 Help.
4006 ****************************************************************************/
4008 static int cmd_help(void)
4010 TALLOC_CTX *ctx = talloc_tos();
4011 int i=0,j;
4012 char *buf;
4014 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4015 if ((i = process_tok(buf)) >= 0)
4016 d_printf("HELP %s:\n\t%s\n\n",
4017 commands[i].name,commands[i].description);
4018 } else {
4019 while (commands[i].description) {
4020 for (j=0; commands[i].description && (j<5); j++) {
4021 d_printf("%-15s",commands[i].name);
4022 i++;
4024 d_printf("\n");
4027 return 0;
4030 /****************************************************************************
4031 Process a -c command string.
4032 ****************************************************************************/
4034 static int process_command_string(const char *cmd_in)
4036 TALLOC_CTX *ctx = talloc_tos();
4037 char *cmd = talloc_strdup(ctx, cmd_in);
4038 int rc = 0;
4040 if (!cmd) {
4041 return 1;
4043 /* establish the connection if not already */
4045 if (!cli) {
4046 cli = cli_cm_open(talloc_tos(), NULL, desthost,
4047 service, true, smb_encrypt);
4048 if (!cli) {
4049 return 1;
4053 while (cmd[0] != '\0') {
4054 char *line;
4055 char *p;
4056 char *tok;
4057 int i;
4059 if ((p = strchr_m(cmd, ';')) == 0) {
4060 line = cmd;
4061 cmd += strlen(cmd);
4062 } else {
4063 *p = '\0';
4064 line = cmd;
4065 cmd = p + 1;
4068 /* and get the first part of the command */
4069 cmd_ptr = line;
4070 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4071 continue;
4074 if ((i = process_tok(tok)) >= 0) {
4075 rc = commands[i].fn();
4076 } else if (i == -2) {
4077 d_printf("%s: command abbreviation ambiguous\n",tok);
4078 } else {
4079 d_printf("%s: command not found\n",tok);
4083 return rc;
4086 #define MAX_COMPLETIONS 100
4088 typedef struct {
4089 char *dirmask;
4090 char **matches;
4091 int count, samelen;
4092 const char *text;
4093 int len;
4094 } completion_remote_t;
4096 static void completion_remote_filter(const char *mnt,
4097 file_info *f,
4098 const char *mask,
4099 void *state)
4101 completion_remote_t *info = (completion_remote_t *)state;
4103 if ((info->count < MAX_COMPLETIONS - 1) &&
4104 (strncmp(info->text, f->name, info->len) == 0) &&
4105 (strcmp(f->name, ".") != 0) &&
4106 (strcmp(f->name, "..") != 0)) {
4107 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4108 info->matches[info->count] = SMB_STRDUP(f->name);
4109 else {
4110 TALLOC_CTX *ctx = talloc_stackframe();
4111 char *tmp;
4113 tmp = talloc_strdup(ctx,info->dirmask);
4114 if (!tmp) {
4115 TALLOC_FREE(ctx);
4116 return;
4118 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4119 if (!tmp) {
4120 TALLOC_FREE(ctx);
4121 return;
4123 if (f->mode & aDIR) {
4124 tmp = talloc_asprintf_append(tmp, "%s", CLI_DIRSEP_STR);
4126 if (!tmp) {
4127 TALLOC_FREE(ctx);
4128 return;
4130 info->matches[info->count] = SMB_STRDUP(tmp);
4131 TALLOC_FREE(ctx);
4133 if (info->matches[info->count] == NULL) {
4134 return;
4136 if (f->mode & aDIR) {
4137 smb_readline_ca_char(0);
4139 if (info->count == 1) {
4140 info->samelen = strlen(info->matches[info->count]);
4141 } else {
4142 while (strncmp(info->matches[info->count],
4143 info->matches[info->count-1],
4144 info->samelen) != 0) {
4145 info->samelen--;
4148 info->count++;
4152 static char **remote_completion(const char *text, int len)
4154 TALLOC_CTX *ctx = talloc_stackframe();
4155 char *dirmask = NULL;
4156 char *targetpath = NULL;
4157 struct cli_state *targetcli = NULL;
4158 int i;
4159 completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4161 /* can't have non-static intialisation on Sun CC, so do it
4162 at run time here */
4163 info.samelen = len;
4164 info.text = text;
4165 info.len = len;
4167 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4168 if (!info.matches) {
4169 TALLOC_FREE(ctx);
4170 return NULL;
4174 * We're leaving matches[0] free to fill it later with the text to
4175 * display: Either the one single match or the longest common subset
4176 * of the matches.
4178 info.matches[0] = NULL;
4179 info.count = 1;
4181 for (i = len-1; i >= 0; i--) {
4182 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4183 break;
4187 info.text = text+i+1;
4188 info.samelen = info.len = len-i-1;
4190 if (i > 0) {
4191 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4192 if (!info.dirmask) {
4193 goto cleanup;
4195 strncpy(info.dirmask, text, i+1);
4196 info.dirmask[i+1] = 0;
4197 dirmask = talloc_asprintf(ctx,
4198 "%s%*s*",
4199 client_get_cur_dir(),
4200 i-1,
4201 text);
4202 } else {
4203 info.dirmask = SMB_STRDUP("");
4204 if (!info.dirmask) {
4205 goto cleanup;
4207 dirmask = talloc_asprintf(ctx,
4208 "%s*",
4209 client_get_cur_dir());
4211 if (!dirmask) {
4212 goto cleanup;
4215 if (!cli_resolve_path(ctx, "", cli, dirmask, &targetcli, &targetpath)) {
4216 goto cleanup;
4218 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4219 completion_remote_filter, (void *)&info) < 0) {
4220 goto cleanup;
4223 if (info.count == 1) {
4225 * No matches at all, NULL indicates there is nothing
4227 SAFE_FREE(info.matches[0]);
4228 SAFE_FREE(info.matches);
4229 TALLOC_FREE(ctx);
4230 return NULL;
4233 if (info.count == 2) {
4235 * Exactly one match in matches[1], indicate this is the one
4236 * in matches[0].
4238 info.matches[0] = info.matches[1];
4239 info.matches[1] = NULL;
4240 info.count -= 1;
4241 TALLOC_FREE(ctx);
4242 return info.matches;
4246 * We got more than one possible match, set the result to the maximum
4247 * common subset
4250 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4251 info.matches[info.count] = NULL;
4252 return info.matches;
4254 cleanup:
4255 for (i = 0; i < info.count; i++) {
4256 SAFE_FREE(info.matches[i]);
4258 SAFE_FREE(info.matches);
4259 SAFE_FREE(info.dirmask);
4260 TALLOC_FREE(ctx);
4261 return NULL;
4264 static char **completion_fn(const char *text, int start, int end)
4266 smb_readline_ca_char(' ');
4268 if (start) {
4269 const char *buf, *sp;
4270 int i;
4271 char compl_type;
4273 buf = smb_readline_get_line_buffer();
4274 if (buf == NULL)
4275 return NULL;
4277 sp = strchr(buf, ' ');
4278 if (sp == NULL)
4279 return NULL;
4281 for (i = 0; commands[i].name; i++) {
4282 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4283 (commands[i].name[sp - buf] == 0)) {
4284 break;
4287 if (commands[i].name == NULL)
4288 return NULL;
4290 while (*sp == ' ')
4291 sp++;
4293 if (sp == (buf + start))
4294 compl_type = commands[i].compl_args[0];
4295 else
4296 compl_type = commands[i].compl_args[1];
4298 if (compl_type == COMPL_REMOTE)
4299 return remote_completion(text, end - start);
4300 else /* fall back to local filename completion */
4301 return NULL;
4302 } else {
4303 char **matches;
4304 int i, len, samelen = 0, count=1;
4306 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4307 if (!matches) {
4308 return NULL;
4310 matches[0] = NULL;
4312 len = strlen(text);
4313 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4314 if (strncmp(text, commands[i].name, len) == 0) {
4315 matches[count] = SMB_STRDUP(commands[i].name);
4316 if (!matches[count])
4317 goto cleanup;
4318 if (count == 1)
4319 samelen = strlen(matches[count]);
4320 else
4321 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4322 samelen--;
4323 count++;
4327 switch (count) {
4328 case 0: /* should never happen */
4329 case 1:
4330 goto cleanup;
4331 case 2:
4332 matches[0] = SMB_STRDUP(matches[1]);
4333 break;
4334 default:
4335 matches[0] = (char *)SMB_MALLOC(samelen+1);
4336 if (!matches[0])
4337 goto cleanup;
4338 strncpy(matches[0], matches[1], samelen);
4339 matches[0][samelen] = 0;
4341 matches[count] = NULL;
4342 return matches;
4344 cleanup:
4345 for (i = 0; i < count; i++)
4346 free(matches[i]);
4348 free(matches);
4349 return NULL;
4353 static bool finished;
4355 /****************************************************************************
4356 Make sure we swallow keepalives during idle time.
4357 ****************************************************************************/
4359 static void readline_callback(void)
4361 fd_set fds;
4362 struct timeval timeout;
4363 static time_t last_t;
4364 time_t t;
4366 t = time(NULL);
4368 if (t - last_t < 5)
4369 return;
4371 last_t = t;
4373 again:
4375 if (cli->fd == -1)
4376 return;
4378 FD_ZERO(&fds);
4379 FD_SET(cli->fd,&fds);
4381 timeout.tv_sec = 0;
4382 timeout.tv_usec = 0;
4383 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4385 /* We deliberately use receive_smb_raw instead of
4386 client_receive_smb as we want to receive
4387 session keepalives and then drop them here.
4389 if (FD_ISSET(cli->fd,&fds)) {
4390 NTSTATUS status;
4391 size_t len;
4393 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4395 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4397 if (!NT_STATUS_IS_OK(status)) {
4398 DEBUG(0, ("Read from server failed, maybe it closed "
4399 "the connection\n"));
4401 finished = true;
4402 smb_readline_done();
4403 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4404 set_smb_read_error(&cli->smb_rw_error,
4405 SMB_READ_EOF);
4406 return;
4409 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4410 set_smb_read_error(&cli->smb_rw_error,
4411 SMB_READ_TIMEOUT);
4412 return;
4415 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4416 return;
4418 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4419 DEBUG(0, ("Read from server "
4420 "returned unexpected packet!\n"));
4421 return;
4424 goto again;
4427 /* Ping the server to keep the connection alive using SMBecho. */
4429 NTSTATUS status;
4430 unsigned char garbage[16];
4431 memset(garbage, 0xf0, sizeof(garbage));
4432 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4434 if (!NT_STATUS_IS_OK(status)) {
4435 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4436 "the connection\n"));
4437 finished = true;
4438 smb_readline_done();
4443 /****************************************************************************
4444 Process commands on stdin.
4445 ****************************************************************************/
4447 static int process_stdin(void)
4449 int rc = 0;
4451 while (!finished) {
4452 TALLOC_CTX *frame = talloc_stackframe();
4453 char *tok = NULL;
4454 char *the_prompt = NULL;
4455 char *line = NULL;
4456 int i;
4458 /* display a prompt */
4459 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4460 TALLOC_FREE(frame);
4461 break;
4463 line = smb_readline(the_prompt, readline_callback, completion_fn);
4464 SAFE_FREE(the_prompt);
4465 if (!line) {
4466 TALLOC_FREE(frame);
4467 break;
4470 /* special case - first char is ! */
4471 if (*line == '!') {
4472 if (system(line + 1) == -1) {
4473 d_printf("system() command %s failed.\n",
4474 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 struct sockaddr_storage ss;
4542 cli = cli_cm_open(talloc_tos(), NULL,
4543 query_host, "IPC$", true, smb_encrypt);
4544 if (!cli)
4545 return 1;
4547 browse_host(true);
4549 if (interpret_string_addr(&ss, query_host, 0) && (ss.ss_family != AF_INET)) {
4550 d_printf("%s is an IPv6 address -- no workgroup available\n",
4551 query_host);
4552 return 1;
4555 if (port != 139) {
4557 /* Workgroups simply don't make sense over anything
4558 else but port 139... */
4560 cli_cm_shutdown();
4561 cli_cm_set_port( 139 );
4562 cli = cli_cm_open(talloc_tos(), NULL,
4563 query_host, "IPC$", true, smb_encrypt);
4566 if (cli == NULL) {
4567 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4568 return 1;
4571 list_servers(lp_workgroup());
4573 cli_cm_shutdown();
4575 return(0);
4578 /****************************************************************************
4579 Handle a tar operation.
4580 ****************************************************************************/
4582 static int do_tar_op(const char *base_directory)
4584 int ret;
4586 /* do we already have a connection? */
4587 if (!cli) {
4588 cli = cli_cm_open(talloc_tos(), NULL,
4589 desthost, service, true, smb_encrypt);
4590 if (!cli)
4591 return 1;
4594 recurse=true;
4596 if (base_directory && *base_directory) {
4597 ret = do_cd(base_directory);
4598 if (ret) {
4599 cli_cm_shutdown();
4600 return ret;
4604 ret=process_tar();
4606 cli_cm_shutdown();
4608 return(ret);
4611 /****************************************************************************
4612 Handle a message operation.
4613 ****************************************************************************/
4615 static int do_message_op(struct user_auth_info *auth_info)
4617 struct sockaddr_storage ss;
4618 struct nmb_name called, calling;
4619 fstring server_name;
4620 char name_type_hex[10];
4621 int msg_port;
4622 NTSTATUS status;
4624 make_nmb_name(&calling, calling_name, 0x0);
4625 make_nmb_name(&called , desthost, name_type);
4627 fstrcpy(server_name, desthost);
4628 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4629 fstrcat(server_name, name_type_hex);
4631 zero_sockaddr(&ss);
4632 if (have_ip)
4633 ss = dest_ss;
4635 /* we can only do messages over port 139 (to windows clients at least) */
4637 msg_port = port ? port : 139;
4639 if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port)) {
4640 d_printf("Connection to %s failed\n", desthost);
4641 return 1;
4644 status = cli_connect(cli, server_name, &ss);
4645 if (!NT_STATUS_IS_OK(status)) {
4646 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4647 return 1;
4650 if (!cli_session_request(cli, &calling, &called)) {
4651 d_printf("session request failed\n");
4652 cli_cm_shutdown();
4653 return 1;
4656 send_message(get_cmdline_auth_info_username(auth_info));
4657 cli_cm_shutdown();
4659 return 0;
4662 /****************************************************************************
4663 main program
4664 ****************************************************************************/
4666 int main(int argc,char *argv[])
4668 char *base_directory = NULL;
4669 int opt;
4670 char *query_host = NULL;
4671 bool message = false;
4672 char *term_code = NULL;
4673 static const char *new_name_resolve_order = NULL;
4674 poptContext pc;
4675 char *p;
4676 int rc = 0;
4677 fstring new_workgroup;
4678 bool tar_opt = false;
4679 bool service_opt = false;
4680 struct poptOption long_options[] = {
4681 POPT_AUTOHELP
4683 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4684 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4685 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4686 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4687 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4688 { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
4689 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4690 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4691 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4692 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4693 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4694 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4695 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4696 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4697 POPT_COMMON_SAMBA
4698 POPT_COMMON_CONNECTION
4699 POPT_COMMON_CREDENTIALS
4700 POPT_TABLEEND
4702 TALLOC_CTX *frame = talloc_stackframe();
4703 struct user_auth_info *auth_info;
4705 if (!client_set_cur_dir("\\")) {
4706 exit(ENOMEM);
4709 #ifdef KANJI
4710 term_code = talloc_strdup(frame,KANJI);
4711 #else /* KANJI */
4712 term_code = talloc_strdup(frame,"");
4713 #endif /* KANJI */
4714 if (!term_code) {
4715 exit(ENOMEM);
4718 /* initialize the workgroup name so we can determine whether or
4719 not it was set by a command line option */
4721 set_global_myworkgroup( "" );
4722 set_global_myname( "" );
4724 /* set default debug level to 1 regardless of what smb.conf sets */
4725 setup_logging( "smbclient", true );
4726 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4727 if ((dbf = x_fdup(x_stderr))) {
4728 x_setbuf( dbf, NULL );
4731 load_case_tables();
4733 auth_info = user_auth_info_init(frame);
4734 if (auth_info == NULL) {
4735 exit(1);
4737 popt_common_set_auth_info(auth_info);
4739 /* skip argv(0) */
4740 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4741 poptSetOtherOptionHelp(pc, "service <password>");
4743 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4745 while ((opt = poptGetNextOpt(pc)) != -1) {
4747 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4748 /* I see no other way to keep things sane --SSS */
4749 if (tar_opt == true) {
4750 while (poptPeekArg(pc)) {
4751 poptGetArg(pc);
4753 tar_opt = false;
4756 /* if the service has not yet been specified lets see if it is available in the popt stack */
4757 if (!service_opt && poptPeekArg(pc)) {
4758 service = talloc_strdup(frame, poptGetArg(pc));
4759 if (!service) {
4760 exit(ENOMEM);
4762 service_opt = true;
4765 /* if the service has already been retrieved then check if we have also a password */
4766 if (service_opt
4767 && (!get_cmdline_auth_info_got_pass(auth_info))
4768 && poptPeekArg(pc)) {
4769 set_cmdline_auth_info_password(auth_info,
4770 poptGetArg(pc));
4773 switch (opt) {
4774 case 'M':
4775 /* Messages are sent to NetBIOS name type 0x3
4776 * (Messenger Service). Make sure we default
4777 * to port 139 instead of port 445. srl,crh
4779 name_type = 0x03;
4780 cli_cm_set_dest_name_type( name_type );
4781 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4782 if (!desthost) {
4783 exit(ENOMEM);
4785 if( !port )
4786 cli_cm_set_port( 139 );
4787 message = true;
4788 break;
4789 case 'I':
4791 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4792 exit(1);
4794 have_ip = true;
4796 cli_cm_set_dest_ss(&dest_ss);
4798 break;
4799 case 'E':
4800 if (dbf) {
4801 x_fclose(dbf);
4803 dbf = x_stderr;
4804 display_set_stderr();
4805 break;
4807 case 'L':
4808 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4809 if (!query_host) {
4810 exit(ENOMEM);
4812 break;
4813 case 't':
4814 term_code = talloc_strdup(frame,poptGetOptArg(pc));
4815 if (!term_code) {
4816 exit(ENOMEM);
4818 break;
4819 case 'm':
4820 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4821 break;
4822 case 'T':
4823 /* We must use old option processing for this. Find the
4824 * position of the -T option in the raw argv[]. */
4826 int i;
4827 for (i = 1; i < argc; i++) {
4828 if (strncmp("-T", argv[i],2)==0)
4829 break;
4831 i++;
4832 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4833 poptPrintUsage(pc, stderr, 0);
4834 exit(1);
4837 /* this must be the last option, mark we have parsed it so that we know we have */
4838 tar_opt = true;
4839 break;
4840 case 'D':
4841 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4842 if (!base_directory) {
4843 exit(ENOMEM);
4845 break;
4846 case 'g':
4847 grepable=true;
4848 break;
4849 case 'e':
4850 smb_encrypt=true;
4851 break;
4852 case 'B':
4853 return(do_smb_browse());
4858 /* We may still have some leftovers after the last popt option has been called */
4859 if (tar_opt == true) {
4860 while (poptPeekArg(pc)) {
4861 poptGetArg(pc);
4863 tar_opt = false;
4866 /* if the service has not yet been specified lets see if it is available in the popt stack */
4867 if (!service_opt && poptPeekArg(pc)) {
4868 service = talloc_strdup(frame,poptGetArg(pc));
4869 if (!service) {
4870 exit(ENOMEM);
4872 service_opt = true;
4875 /* if the service has already been retrieved then check if we have also a password */
4876 if (service_opt
4877 && !get_cmdline_auth_info_got_pass(auth_info)
4878 && poptPeekArg(pc)) {
4879 set_cmdline_auth_info_password(auth_info,
4880 poptGetArg(pc));
4883 /* check for the -P option */
4885 if ( port != 0 )
4886 cli_cm_set_port( port );
4889 * Don't load debug level from smb.conf. It should be
4890 * set by cmdline arg or remain default (0)
4892 AllowDebugChange = false;
4894 /* save the workgroup...
4896 FIXME!! do we need to do this for other options as well
4897 (or maybe a generic way to keep lp_load() from overwriting
4898 everything)? */
4900 fstrcpy( new_workgroup, lp_workgroup() );
4901 calling_name = talloc_strdup(frame, global_myname() );
4902 if (!calling_name) {
4903 exit(ENOMEM);
4906 if ( override_logfile )
4907 setup_logging( lp_logfile(), false );
4909 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4910 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4911 argv[0], get_dyn_CONFIGFILE());
4914 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
4915 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
4916 exit(-1);
4919 load_interfaces();
4921 if (service_opt && service) {
4922 size_t len;
4924 /* Convert any '/' characters in the service name to '\' characters */
4925 string_replace(service, '/','\\');
4926 if (count_chars(service,'\\') < 3) {
4927 d_printf("\n%s: Not enough '\\' characters in service\n",service);
4928 poptPrintUsage(pc, stderr, 0);
4929 exit(1);
4931 /* Remove trailing slashes */
4932 len = strlen(service);
4933 while(len > 0 && service[len - 1] == '\\') {
4934 --len;
4935 service[len] = '\0';
4939 if ( strlen(new_workgroup) != 0 ) {
4940 set_global_myworkgroup( new_workgroup );
4943 if ( strlen(calling_name) != 0 ) {
4944 set_global_myname( calling_name );
4945 } else {
4946 TALLOC_FREE(calling_name);
4947 calling_name = talloc_strdup(frame, global_myname() );
4950 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
4951 if (!init_names()) {
4952 fprintf(stderr, "init_names() failed\n");
4953 exit(1);
4956 if(new_name_resolve_order)
4957 lp_set_name_resolve_order(new_name_resolve_order);
4959 if (!tar_type && !query_host && !service && !message) {
4960 poptPrintUsage(pc, stderr, 0);
4961 exit(1);
4964 poptFreeContext(pc);
4966 /* Store the username and password for dfs support */
4968 cli_cm_set_credentials(auth_info);
4970 DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
4972 if (tar_type) {
4973 if (cmdstr)
4974 process_command_string(cmdstr);
4975 return do_tar_op(base_directory);
4978 if (query_host && *query_host) {
4979 char *qhost = query_host;
4980 char *slash;
4982 while (*qhost == '\\' || *qhost == '/')
4983 qhost++;
4985 if ((slash = strchr_m(qhost, '/'))
4986 || (slash = strchr_m(qhost, '\\'))) {
4987 *slash = 0;
4990 if ((p=strchr_m(qhost, '#'))) {
4991 *p = 0;
4992 p++;
4993 sscanf(p, "%x", &name_type);
4994 cli_cm_set_dest_name_type( name_type );
4997 return do_host_query(qhost);
5000 if (message) {
5001 return do_message_op(auth_info);
5004 if (process(base_directory)) {
5005 return 1;
5008 TALLOC_FREE(frame);
5009 return rc;