Revert "buildtools: Rename perl vendorarch configure option."
[Samba.git] / source3 / client / client.c
blobab46cb80a9a8d0f01c345b775855fd039eea0dc8
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 "system/filesys.h"
26 #include "popt_common.h"
27 #include "rpc_client/cli_pipe.h"
28 #include "client/client_proto.h"
29 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
30 #include "../lib/util/select.h"
31 #include "system/readline.h"
32 #include "../libcli/smbreadline/smbreadline.h"
33 #include "../libcli/security/security.h"
34 #include "system/select.h"
35 #include "libsmb/libsmb.h"
36 #include "libsmb/clirap.h"
37 #include "trans2.h"
38 #include "libsmb/nmblib.h"
39 #include "include/ntioctl.h"
40 #include "../libcli/smb/smbXcli_base.h"
42 #ifndef REGISTER
43 #define REGISTER 0
44 #endif
46 extern int do_smb_browse(void); /* mDNS browsing */
48 extern bool override_logfile;
49 extern char tar_type;
51 static int port = 0;
52 static char *service;
53 static char *desthost;
54 static bool grepable = false;
55 static char *cmdstr = NULL;
56 const char *cmd_ptr = NULL;
58 static int io_bufsize = 0; /* we use the default size */
59 static int io_timeout = (CLIENT_TIMEOUT/1000); /* Per operation timeout (in seconds). */
61 static int name_type = 0x20;
62 static int max_protocol = -1;
64 static int process_tok(char *tok);
65 static int cmd_help(void);
67 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
69 /* value for unused fid field in trans2 secondary request */
70 #define FID_UNUSED (0xFFFF)
72 time_t newer_than = 0;
73 static int archive_level = 0;
75 static bool translation = false;
76 static bool have_ip;
78 /* clitar bits insert */
79 extern int blocksize;
80 extern bool tar_inc;
81 extern bool tar_reset;
82 /* clitar bits end */
84 static bool prompt = true;
86 static bool recurse = false;
87 static bool showacls = false;
88 bool lowercase = false;
89 static bool backup_intent = false;
91 static struct sockaddr_storage dest_ss;
92 static char dest_ss_str[INET6_ADDRSTRLEN];
94 #define SEPARATORS " \t\n\r"
96 static bool abort_mget = true;
98 /* timing globals */
99 uint64_t get_total_size = 0;
100 unsigned int get_total_time_ms = 0;
101 static uint64_t put_total_size = 0;
102 static unsigned int put_total_time_ms = 0;
104 /* totals globals */
105 static double dir_total;
107 /* encrypted state. */
108 static bool smb_encrypt;
110 /* root cli_state connection */
112 struct cli_state *cli;
114 static char CLI_DIRSEP_CHAR = '\\';
115 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
117 /* Authentication for client connections. */
118 struct user_auth_info *auth_info;
120 /* Accessor functions for directory paths. */
121 static char *fileselection;
122 static const char *client_get_fileselection(void)
124 if (fileselection) {
125 return fileselection;
127 return "";
130 static const char *client_set_fileselection(const char *new_fs)
132 SAFE_FREE(fileselection);
133 if (new_fs) {
134 fileselection = SMB_STRDUP(new_fs);
136 return client_get_fileselection();
139 static char *cwd;
140 static const char *client_get_cwd(void)
142 if (cwd) {
143 return cwd;
145 return CLI_DIRSEP_STR;
148 static const char *client_set_cwd(const char *new_cwd)
150 SAFE_FREE(cwd);
151 if (new_cwd) {
152 cwd = SMB_STRDUP(new_cwd);
154 return client_get_cwd();
157 static char *cur_dir;
158 const char *client_get_cur_dir(void)
160 if (cur_dir) {
161 return cur_dir;
163 return CLI_DIRSEP_STR;
166 const char *client_set_cur_dir(const char *newdir)
168 SAFE_FREE(cur_dir);
169 if (newdir) {
170 cur_dir = SMB_STRDUP(newdir);
172 return client_get_cur_dir();
175 /****************************************************************************
176 Put up a yes/no prompt.
177 ****************************************************************************/
179 static bool yesno(const char *p)
181 char ans[20];
182 printf("%s",p);
184 if (!fgets(ans,sizeof(ans)-1,stdin))
185 return(False);
187 if (*ans == 'y' || *ans == 'Y')
188 return(True);
190 return(False);
193 /****************************************************************************
194 Write to a local file with CR/LF->LF translation if appropriate. Return the
195 number taken from the buffer. This may not equal the number written.
196 ****************************************************************************/
198 static int writefile(int f, char *b, int n)
200 int i;
202 if (!translation) {
203 return write(f,b,n);
206 i = 0;
207 while (i < n) {
208 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
209 b++;i++;
211 if (write(f, b, 1) != 1) {
212 break;
214 b++;
215 i++;
218 return(i);
221 /****************************************************************************
222 Read from a file with LF->CR/LF translation if appropriate. Return the
223 number read. read approx n bytes.
224 ****************************************************************************/
226 static int readfile(uint8_t *b, int n, XFILE *f)
228 int i;
229 int c;
231 if (!translation)
232 return x_fread(b,1,n,f);
234 i = 0;
235 while (i < (n - 1)) {
236 if ((c = x_getc(f)) == EOF) {
237 break;
240 if (c == '\n') { /* change all LFs to CR/LF */
241 b[i++] = '\r';
244 b[i++] = c;
247 return(i);
250 struct push_state {
251 XFILE *f;
252 off_t nread;
255 static size_t push_source(uint8_t *buf, size_t n, void *priv)
257 struct push_state *state = (struct push_state *)priv;
258 int result;
260 if (x_feof(state->f)) {
261 return 0;
264 result = readfile(buf, n, state->f);
265 state->nread += result;
266 return result;
269 /****************************************************************************
270 Send a message.
271 ****************************************************************************/
273 static void send_message(const char *username)
275 char buf[1600];
276 NTSTATUS status;
277 int i;
279 d_printf("Type your message, ending it with a Control-D\n");
281 i = 0;
282 while (i<sizeof(buf)-2) {
283 int c = fgetc(stdin);
284 if (c == EOF) {
285 break;
287 if (c == '\n') {
288 buf[i++] = '\r';
290 buf[i++] = c;
292 buf[i] = '\0';
294 status = cli_message(cli, desthost, username, buf);
295 if (!NT_STATUS_IS_OK(status)) {
296 d_fprintf(stderr, "cli_message returned %s\n",
297 nt_errstr(status));
301 /****************************************************************************
302 Check the space on a device.
303 ****************************************************************************/
305 static int do_dskattr(void)
307 int total, bsize, avail;
308 struct cli_state *targetcli = NULL;
309 char *targetpath = NULL;
310 TALLOC_CTX *ctx = talloc_tos();
311 NTSTATUS status;
313 status = cli_resolve_path(ctx, "", auth_info, cli,
314 client_get_cur_dir(), &targetcli,
315 &targetpath);
316 if (!NT_STATUS_IS_OK(status)) {
317 d_printf("Error in dskattr: %s\n", nt_errstr(status));
318 return 1;
321 status = cli_dskattr(targetcli, &bsize, &total, &avail);
322 if (!NT_STATUS_IS_OK(status)) {
323 d_printf("Error in dskattr: %s\n", nt_errstr(status));
324 return 1;
327 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
328 total, bsize, avail);
330 return 0;
333 /****************************************************************************
334 Show cd/pwd.
335 ****************************************************************************/
337 static int cmd_pwd(void)
339 d_printf("Current directory is %s",service);
340 d_printf("%s\n",client_get_cur_dir());
341 return 0;
344 /****************************************************************************
345 Ensure name has correct directory separators.
346 ****************************************************************************/
348 static void normalize_name(char *newdir)
350 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
351 string_replace(newdir,'/','\\');
355 /****************************************************************************
356 Change directory - inner section.
357 ****************************************************************************/
359 static int do_cd(const char *new_dir)
361 char *newdir = NULL;
362 char *saved_dir = NULL;
363 char *new_cd = NULL;
364 char *targetpath = NULL;
365 struct cli_state *targetcli = NULL;
366 SMB_STRUCT_STAT sbuf;
367 uint32 attributes;
368 int ret = 1;
369 TALLOC_CTX *ctx = talloc_stackframe();
370 NTSTATUS status;
372 newdir = talloc_strdup(ctx, new_dir);
373 if (!newdir) {
374 TALLOC_FREE(ctx);
375 return 1;
378 normalize_name(newdir);
380 /* Save the current directory in case the new directory is invalid */
382 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
383 if (!saved_dir) {
384 TALLOC_FREE(ctx);
385 return 1;
388 if (*newdir == CLI_DIRSEP_CHAR) {
389 client_set_cur_dir(newdir);
390 new_cd = newdir;
391 } else {
392 new_cd = talloc_asprintf(ctx, "%s%s",
393 client_get_cur_dir(),
394 newdir);
395 if (!new_cd) {
396 goto out;
400 /* Ensure cur_dir ends in a DIRSEP */
401 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
402 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
403 if (!new_cd) {
404 goto out;
407 client_set_cur_dir(new_cd);
409 new_cd = clean_name(ctx, new_cd);
410 client_set_cur_dir(new_cd);
412 status = cli_resolve_path(ctx, "", auth_info, cli, new_cd,
413 &targetcli, &targetpath);
414 if (!NT_STATUS_IS_OK(status)) {
415 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
416 client_set_cur_dir(saved_dir);
417 goto out;
420 if (strequal(targetpath,CLI_DIRSEP_STR )) {
421 TALLOC_FREE(ctx);
422 return 0;
425 /* Use a trans2_qpathinfo to test directories for modern servers.
426 Except Win9x doesn't support the qpathinfo_basic() call..... */
428 if (smbXcli_conn_protocol(targetcli->conn) > PROTOCOL_LANMAN2 && !targetcli->win95) {
430 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
431 &attributes);
432 if (!NT_STATUS_IS_OK(status)) {
433 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
434 client_set_cur_dir(saved_dir);
435 goto out;
438 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
439 d_printf("cd %s: not a directory\n", new_cd);
440 client_set_cur_dir(saved_dir);
441 goto out;
443 } else {
445 targetpath = talloc_asprintf(ctx,
446 "%s%s",
447 targetpath,
448 CLI_DIRSEP_STR );
449 if (!targetpath) {
450 client_set_cur_dir(saved_dir);
451 goto out;
453 targetpath = clean_name(ctx, targetpath);
454 if (!targetpath) {
455 client_set_cur_dir(saved_dir);
456 goto out;
459 status = cli_chkpath(targetcli, targetpath);
460 if (!NT_STATUS_IS_OK(status)) {
461 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
462 client_set_cur_dir(saved_dir);
463 goto out;
467 ret = 0;
469 out:
471 TALLOC_FREE(ctx);
472 return ret;
475 /****************************************************************************
476 Change directory.
477 ****************************************************************************/
479 static int cmd_cd(void)
481 char *buf = NULL;
482 int rc = 0;
484 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
485 rc = do_cd(buf);
486 } else {
487 d_printf("Current directory is %s\n",client_get_cur_dir());
490 return rc;
493 /****************************************************************************
494 Change directory.
495 ****************************************************************************/
497 static int cmd_cd_oneup(void)
499 return do_cd("..");
502 /*******************************************************************
503 Decide if a file should be operated on.
504 ********************************************************************/
506 static bool do_this_one(struct file_info *finfo)
508 if (!finfo->name) {
509 return false;
512 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
513 return true;
516 if (*client_get_fileselection() &&
517 !mask_match(finfo->name,client_get_fileselection(),false)) {
518 DEBUG(3,("mask_match %s failed\n", finfo->name));
519 return false;
522 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
523 DEBUG(3,("newer_than %s failed\n", finfo->name));
524 return false;
527 if ((archive_level==1 || archive_level==2) && !(finfo->mode & FILE_ATTRIBUTE_ARCHIVE)) {
528 DEBUG(3,("archive %s failed\n", finfo->name));
529 return false;
532 return true;
535 /****************************************************************************
536 Display info about a file.
537 ****************************************************************************/
539 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
540 const char *dir)
542 time_t t;
543 TALLOC_CTX *ctx = talloc_tos();
544 NTSTATUS status = NT_STATUS_OK;
546 if (!do_this_one(finfo)) {
547 return NT_STATUS_OK;
550 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
551 if (!showacls) {
552 d_printf(" %-30s%7.7s %8.0f %s",
553 finfo->name,
554 attrib_string(talloc_tos(), finfo->mode),
555 (double)finfo->size,
556 time_to_asc(t));
557 dir_total += finfo->size;
558 } else {
559 char *afname = NULL;
560 uint16_t fnum;
562 /* skip if this is . or .. */
563 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
564 return NT_STATUS_OK;
565 /* create absolute filename for cli_ntcreate() FIXME */
566 afname = talloc_asprintf(ctx,
567 "%s%s%s",
568 dir,
569 CLI_DIRSEP_STR,
570 finfo->name);
571 if (!afname) {
572 return NT_STATUS_NO_MEMORY;
574 /* print file meta date header */
575 d_printf( "FILENAME:%s\n", finfo->name);
576 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo->mode));
577 d_printf( "SIZE:%.0f\n", (double)finfo->size);
578 d_printf( "MTIME:%s", time_to_asc(t));
579 status = cli_ntcreate(cli_state, afname, 0,
580 CREATE_ACCESS_READ, 0,
581 FILE_SHARE_READ|FILE_SHARE_WRITE,
582 FILE_OPEN, 0x0, 0x0, &fnum, NULL);
583 if (!NT_STATUS_IS_OK(status)) {
584 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
585 afname, nt_errstr(status)));
586 } else {
587 struct security_descriptor *sd = NULL;
588 status = cli_query_secdesc(cli_state, fnum,
589 ctx, &sd);
590 if (!NT_STATUS_IS_OK(status)) {
591 DEBUG( 0, ("display_finfo() failed to "
592 "get security descriptor: %s",
593 nt_errstr(status)));
594 } else {
595 display_sec_desc(sd);
597 TALLOC_FREE(sd);
599 TALLOC_FREE(afname);
601 return status;
604 /****************************************************************************
605 Accumulate size of a file.
606 ****************************************************************************/
608 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
609 const char *dir)
611 if (do_this_one(finfo)) {
612 dir_total += finfo->size;
614 return NT_STATUS_OK;
617 static bool do_list_recurse;
618 static bool do_list_dirs;
619 static char *do_list_queue = 0;
620 static long do_list_queue_size = 0;
621 static long do_list_queue_start = 0;
622 static long do_list_queue_end = 0;
623 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
624 const char *dir);
626 /****************************************************************************
627 Functions for do_list_queue.
628 ****************************************************************************/
631 * The do_list_queue is a NUL-separated list of strings stored in a
632 * char*. Since this is a FIFO, we keep track of the beginning and
633 * ending locations of the data in the queue. When we overflow, we
634 * double the size of the char*. When the start of the data passes
635 * the midpoint, we move everything back. This is logically more
636 * complex than a linked list, but easier from a memory management
637 * angle. In any memory error condition, do_list_queue is reset.
638 * Functions check to ensure that do_list_queue is non-NULL before
639 * accessing it.
642 static void reset_do_list_queue(void)
644 SAFE_FREE(do_list_queue);
645 do_list_queue_size = 0;
646 do_list_queue_start = 0;
647 do_list_queue_end = 0;
650 static void init_do_list_queue(void)
652 reset_do_list_queue();
653 do_list_queue_size = 1024;
654 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
655 if (do_list_queue == 0) {
656 d_printf("malloc fail for size %d\n",
657 (int)do_list_queue_size);
658 reset_do_list_queue();
659 } else {
660 memset(do_list_queue, 0, do_list_queue_size);
664 static void adjust_do_list_queue(void)
667 * If the starting point of the queue is more than half way through,
668 * move everything toward the beginning.
671 if (do_list_queue == NULL) {
672 DEBUG(4,("do_list_queue is empty\n"));
673 do_list_queue_start = do_list_queue_end = 0;
674 return;
677 if (do_list_queue_start == do_list_queue_end) {
678 DEBUG(4,("do_list_queue is empty\n"));
679 do_list_queue_start = do_list_queue_end = 0;
680 *do_list_queue = '\0';
681 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
682 DEBUG(4,("sliding do_list_queue backward\n"));
683 memmove(do_list_queue,
684 do_list_queue + do_list_queue_start,
685 do_list_queue_end - do_list_queue_start);
686 do_list_queue_end -= do_list_queue_start;
687 do_list_queue_start = 0;
691 static void add_to_do_list_queue(const char *entry)
693 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
694 while (new_end > do_list_queue_size) {
695 do_list_queue_size *= 2;
696 DEBUG(4,("enlarging do_list_queue to %d\n",
697 (int)do_list_queue_size));
698 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
699 if (! do_list_queue) {
700 d_printf("failure enlarging do_list_queue to %d bytes\n",
701 (int)do_list_queue_size);
702 reset_do_list_queue();
703 } else {
704 memset(do_list_queue + do_list_queue_size / 2,
705 0, do_list_queue_size / 2);
708 if (do_list_queue) {
709 strlcpy_base(do_list_queue + do_list_queue_end,
710 entry, do_list_queue, do_list_queue_size);
711 do_list_queue_end = new_end;
712 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
713 entry, (int)do_list_queue_start, (int)do_list_queue_end));
717 static char *do_list_queue_head(void)
719 return do_list_queue + do_list_queue_start;
722 static void remove_do_list_queue_head(void)
724 if (do_list_queue_end > do_list_queue_start) {
725 do_list_queue_start += strlen(do_list_queue_head()) + 1;
726 adjust_do_list_queue();
727 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
728 (int)do_list_queue_start, (int)do_list_queue_end));
732 static int do_list_queue_empty(void)
734 return (! (do_list_queue && *do_list_queue));
737 /****************************************************************************
738 A helper for do_list.
739 ****************************************************************************/
741 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
742 const char *mask, void *state)
744 struct cli_state *cli_state = (struct cli_state *)state;
745 TALLOC_CTX *ctx = talloc_tos();
746 char *dir = NULL;
747 char *dir_end = NULL;
748 NTSTATUS status = NT_STATUS_OK;
750 /* Work out the directory. */
751 dir = talloc_strdup(ctx, mask);
752 if (!dir) {
753 return NT_STATUS_NO_MEMORY;
755 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
756 *dir_end = '\0';
759 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
760 if (do_list_dirs && do_this_one(f)) {
761 status = do_list_fn(cli_state, f, dir);
762 if (!NT_STATUS_IS_OK(status)) {
763 return status;
766 if (do_list_recurse &&
767 f->name &&
768 !strequal(f->name,".") &&
769 !strequal(f->name,"..")) {
770 char *mask2 = NULL;
771 char *p = NULL;
773 if (!f->name[0]) {
774 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
775 TALLOC_FREE(dir);
776 return NT_STATUS_UNSUCCESSFUL;
779 mask2 = talloc_asprintf(ctx,
780 "%s%s",
781 mntpoint,
782 mask);
783 if (!mask2) {
784 TALLOC_FREE(dir);
785 return NT_STATUS_NO_MEMORY;
787 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
788 if (p) {
789 p[1] = 0;
790 } else {
791 mask2[0] = '\0';
793 mask2 = talloc_asprintf_append(mask2,
794 "%s%s*",
795 f->name,
796 CLI_DIRSEP_STR);
797 if (!mask2) {
798 TALLOC_FREE(dir);
799 return NT_STATUS_NO_MEMORY;
801 add_to_do_list_queue(mask2);
802 TALLOC_FREE(mask2);
804 TALLOC_FREE(dir);
805 return NT_STATUS_OK;
808 if (do_this_one(f)) {
809 status = do_list_fn(cli_state, f, dir);
811 TALLOC_FREE(dir);
812 return status;
815 /****************************************************************************
816 A wrapper around cli_list that adds recursion.
817 ****************************************************************************/
819 NTSTATUS do_list(const char *mask,
820 uint16 attribute,
821 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
822 const char *dir),
823 bool rec,
824 bool dirs)
826 static int in_do_list = 0;
827 TALLOC_CTX *ctx = talloc_tos();
828 struct cli_state *targetcli = NULL;
829 char *targetpath = NULL;
830 NTSTATUS ret_status = NT_STATUS_OK;
831 NTSTATUS status = NT_STATUS_OK;
833 if (in_do_list && rec) {
834 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
835 exit(1);
838 in_do_list = 1;
840 do_list_recurse = rec;
841 do_list_dirs = dirs;
842 do_list_fn = fn;
844 if (rec) {
845 init_do_list_queue();
846 add_to_do_list_queue(mask);
848 while (!do_list_queue_empty()) {
850 * Need to copy head so that it doesn't become
851 * invalid inside the call to cli_list. This
852 * would happen if the list were expanded
853 * during the call.
854 * Fix from E. Jay Berkenbilt (ejb@ql.org)
856 char *head = talloc_strdup(ctx, do_list_queue_head());
858 if (!head) {
859 return NT_STATUS_NO_MEMORY;
862 /* check for dfs */
864 status = cli_resolve_path(ctx, "", auth_info, cli,
865 head, &targetcli,
866 &targetpath);
867 if (!NT_STATUS_IS_OK(status)) {
868 d_printf("do_list: [%s] %s\n", head,
869 nt_errstr(status));
870 remove_do_list_queue_head();
871 continue;
874 status = cli_list(targetcli, targetpath, attribute,
875 do_list_helper, targetcli);
876 if (!NT_STATUS_IS_OK(status)) {
877 d_printf("%s listing %s\n",
878 nt_errstr(status), targetpath);
879 ret_status = status;
881 remove_do_list_queue_head();
882 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
883 char *next_file = do_list_queue_head();
884 char *save_ch = 0;
885 if ((strlen(next_file) >= 2) &&
886 (next_file[strlen(next_file) - 1] == '*') &&
887 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
888 save_ch = next_file +
889 strlen(next_file) - 2;
890 *save_ch = '\0';
891 if (showacls) {
892 /* cwd is only used if showacls is on */
893 client_set_cwd(next_file);
896 if (!showacls) /* don't disturbe the showacls output */
897 d_printf("\n%s\n",next_file);
898 if (save_ch) {
899 *save_ch = CLI_DIRSEP_CHAR;
902 TALLOC_FREE(head);
903 TALLOC_FREE(targetpath);
905 } else {
906 /* check for dfs */
907 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
908 &targetcli, &targetpath);
909 if (NT_STATUS_IS_OK(status)) {
910 status = cli_list(targetcli, targetpath, attribute,
911 do_list_helper, targetcli);
912 if (!NT_STATUS_IS_OK(status)) {
913 d_printf("%s listing %s\n",
914 nt_errstr(status), targetpath);
915 ret_status = status;
917 TALLOC_FREE(targetpath);
918 } else {
919 d_printf("do_list: [%s] %s\n", mask, nt_errstr(status));
920 ret_status = status;
924 in_do_list = 0;
925 reset_do_list_queue();
926 return ret_status;
929 /****************************************************************************
930 Get a directory listing.
931 ****************************************************************************/
933 static int cmd_dir(void)
935 TALLOC_CTX *ctx = talloc_tos();
936 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
937 char *mask = NULL;
938 char *buf = NULL;
939 int rc = 1;
940 NTSTATUS status;
942 dir_total = 0;
943 mask = talloc_strdup(ctx, client_get_cur_dir());
944 if (!mask) {
945 return 1;
948 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
949 normalize_name(buf);
950 if (*buf == CLI_DIRSEP_CHAR) {
951 mask = talloc_strdup(ctx, buf);
952 } else {
953 mask = talloc_asprintf_append(mask, "%s", buf);
955 } else {
956 mask = talloc_asprintf_append(mask, "*");
958 if (!mask) {
959 return 1;
962 if (showacls) {
963 /* cwd is only used if showacls is on */
964 client_set_cwd(client_get_cur_dir());
967 status = do_list(mask, attribute, display_finfo, recurse, true);
968 if (!NT_STATUS_IS_OK(status)) {
969 return 1;
972 rc = do_dskattr();
974 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
976 return rc;
979 /****************************************************************************
980 Get a directory listing.
981 ****************************************************************************/
983 static int cmd_du(void)
985 TALLOC_CTX *ctx = talloc_tos();
986 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
987 char *mask = NULL;
988 char *buf = NULL;
989 NTSTATUS status;
990 int rc = 1;
992 dir_total = 0;
993 mask = talloc_strdup(ctx, client_get_cur_dir());
994 if (!mask) {
995 return 1;
997 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
998 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
999 if (!mask) {
1000 return 1;
1004 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1005 normalize_name(buf);
1006 if (*buf == CLI_DIRSEP_CHAR) {
1007 mask = talloc_strdup(ctx, buf);
1008 } else {
1009 mask = talloc_asprintf_append(mask, "%s", buf);
1011 } else {
1012 mask = talloc_strdup(ctx, "*");
1015 status = do_list(mask, attribute, do_du, recurse, true);
1016 if (!NT_STATUS_IS_OK(status)) {
1017 return 1;
1020 rc = do_dskattr();
1022 d_printf("Total number of bytes: %.0f\n", dir_total);
1024 return rc;
1027 static int cmd_echo(void)
1029 TALLOC_CTX *ctx = talloc_tos();
1030 char *num;
1031 char *data;
1032 NTSTATUS status;
1034 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1035 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1036 d_printf("echo <num> <data>\n");
1037 return 1;
1040 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1042 if (!NT_STATUS_IS_OK(status)) {
1043 d_printf("echo failed: %s\n", nt_errstr(status));
1044 return 1;
1047 return 0;
1050 /****************************************************************************
1051 Get a file from rname to lname
1052 ****************************************************************************/
1054 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1056 int *pfd = (int *)priv;
1057 if (writefile(*pfd, buf, n) == -1) {
1058 return map_nt_error_from_unix(errno);
1060 return NT_STATUS_OK;
1063 static int do_get(const char *rname, const char *lname_in, bool reget)
1065 TALLOC_CTX *ctx = talloc_tos();
1066 int handle = 0;
1067 uint16_t fnum;
1068 bool newhandle = false;
1069 struct timespec tp_start;
1070 uint16 attr;
1071 off_t size;
1072 off_t start = 0;
1073 off_t nread = 0;
1074 int rc = 0;
1075 struct cli_state *targetcli = NULL;
1076 char *targetname = NULL;
1077 char *lname = NULL;
1078 NTSTATUS status;
1080 lname = talloc_strdup(ctx, lname_in);
1081 if (!lname) {
1082 return 1;
1085 if (lowercase) {
1086 if (!strlower_m(lname)) {
1087 d_printf("strlower_m %s failed\n", lname);
1088 return 1;
1092 status = cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli,
1093 &targetname);
1094 if (!NT_STATUS_IS_OK(status)) {
1095 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1096 return 1;
1099 clock_gettime_mono(&tp_start);
1101 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1102 if (!NT_STATUS_IS_OK(status)) {
1103 d_printf("%s opening remote file %s\n", nt_errstr(status),
1104 rname);
1105 return 1;
1108 if(!strcmp(lname,"-")) {
1109 handle = fileno(stdout);
1110 } else {
1111 if (reget) {
1112 handle = open(lname, O_WRONLY|O_CREAT, 0644);
1113 if (handle >= 0) {
1114 start = lseek(handle, 0, SEEK_END);
1115 if (start == -1) {
1116 d_printf("Error seeking local file\n");
1117 return 1;
1120 } else {
1121 handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1123 newhandle = true;
1125 if (handle < 0) {
1126 d_printf("Error opening local file %s\n",lname);
1127 return 1;
1131 status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1132 NULL, NULL, NULL);
1133 if (!NT_STATUS_IS_OK(status)) {
1134 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1135 NULL);
1136 if(!NT_STATUS_IS_OK(status)) {
1137 d_printf("getattrib: %s\n", nt_errstr(status));
1138 return 1;
1142 DEBUG(1,("getting file %s of size %.0f as %s ",
1143 rname, (double)size, lname));
1145 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1146 writefile_sink, (void *)&handle, &nread);
1147 if (!NT_STATUS_IS_OK(status)) {
1148 d_fprintf(stderr, "parallel_read returned %s\n",
1149 nt_errstr(status));
1150 cli_close(targetcli, fnum);
1151 return 1;
1154 status = cli_close(targetcli, fnum);
1155 if (!NT_STATUS_IS_OK(status)) {
1156 d_printf("Error %s closing remote file\n", nt_errstr(status));
1157 rc = 1;
1160 if (newhandle) {
1161 close(handle);
1164 if (archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
1165 cli_setatr(cli, rname, attr & ~(uint16)FILE_ATTRIBUTE_ARCHIVE, 0);
1169 struct timespec tp_end;
1170 int this_time;
1172 clock_gettime_mono(&tp_end);
1173 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1174 get_total_time_ms += this_time;
1175 get_total_size += nread;
1177 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1178 nread / (1.024*this_time + 1.0e-4),
1179 get_total_size / (1.024*get_total_time_ms)));
1182 TALLOC_FREE(targetname);
1183 return rc;
1186 /****************************************************************************
1187 Get a file.
1188 ****************************************************************************/
1190 static int cmd_get(void)
1192 TALLOC_CTX *ctx = talloc_tos();
1193 char *lname = NULL;
1194 char *rname = NULL;
1195 char *fname = NULL;
1197 rname = talloc_strdup(ctx, client_get_cur_dir());
1198 if (!rname) {
1199 return 1;
1202 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1203 d_printf("get <filename> [localname]\n");
1204 return 1;
1206 rname = talloc_asprintf_append(rname, "%s", fname);
1207 if (!rname) {
1208 return 1;
1210 rname = clean_name(ctx, rname);
1211 if (!rname) {
1212 return 1;
1215 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1216 if (!lname) {
1217 lname = fname;
1220 return do_get(rname, lname, false);
1223 /****************************************************************************
1224 Do an mget operation on one file.
1225 ****************************************************************************/
1227 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1228 const char *dir)
1230 TALLOC_CTX *ctx = talloc_tos();
1231 NTSTATUS status = NT_STATUS_OK;
1232 char *rname = NULL;
1233 char *quest = NULL;
1234 char *saved_curdir = NULL;
1235 char *mget_mask = NULL;
1236 char *new_cd = NULL;
1238 if (!finfo->name) {
1239 return NT_STATUS_OK;
1242 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1243 return NT_STATUS_OK;
1245 if (abort_mget) {
1246 d_printf("mget aborted\n");
1247 return NT_STATUS_UNSUCCESSFUL;
1250 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
1251 if (asprintf(&quest,
1252 "Get directory %s? ",finfo->name) < 0) {
1253 return NT_STATUS_NO_MEMORY;
1255 } else {
1256 if (asprintf(&quest,
1257 "Get file %s? ",finfo->name) < 0) {
1258 return NT_STATUS_NO_MEMORY;
1262 if (prompt && !yesno(quest)) {
1263 SAFE_FREE(quest);
1264 return NT_STATUS_OK;
1266 SAFE_FREE(quest);
1268 if (!(finfo->mode & FILE_ATTRIBUTE_DIRECTORY)) {
1269 rname = talloc_asprintf(ctx,
1270 "%s%s",
1271 client_get_cur_dir(),
1272 finfo->name);
1273 if (!rname) {
1274 return NT_STATUS_NO_MEMORY;
1276 do_get(rname, finfo->name, false);
1277 TALLOC_FREE(rname);
1278 return NT_STATUS_OK;
1281 /* handle directories */
1282 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1283 if (!saved_curdir) {
1284 return NT_STATUS_NO_MEMORY;
1287 new_cd = talloc_asprintf(ctx,
1288 "%s%s%s",
1289 client_get_cur_dir(),
1290 finfo->name,
1291 CLI_DIRSEP_STR);
1292 if (!new_cd) {
1293 return NT_STATUS_NO_MEMORY;
1295 client_set_cur_dir(new_cd);
1297 string_replace(finfo->name,'\\','/');
1298 if (lowercase) {
1299 if (!strlower_m(finfo->name)) {
1300 return NT_STATUS_INVALID_PARAMETER;
1304 if (!directory_exist(finfo->name) &&
1305 mkdir(finfo->name,0777) != 0) {
1306 d_printf("failed to create directory %s\n",finfo->name);
1307 client_set_cur_dir(saved_curdir);
1308 return map_nt_error_from_unix(errno);
1311 if (chdir(finfo->name) != 0) {
1312 d_printf("failed to chdir to directory %s\n",finfo->name);
1313 client_set_cur_dir(saved_curdir);
1314 return map_nt_error_from_unix(errno);
1317 mget_mask = talloc_asprintf(ctx,
1318 "%s*",
1319 client_get_cur_dir());
1321 if (!mget_mask) {
1322 return NT_STATUS_NO_MEMORY;
1325 status = do_list(mget_mask,
1326 (FILE_ATTRIBUTE_SYSTEM
1327 | FILE_ATTRIBUTE_HIDDEN
1328 | FILE_ATTRIBUTE_DIRECTORY),
1329 do_mget, false, true);
1330 if (!NT_STATUS_IS_OK(status)
1331 && !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
1333 * Ignore access denied errors to ensure all permitted files are
1334 * pulled down.
1336 return status;
1339 if (chdir("..") == -1) {
1340 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1341 strerror(errno) );
1342 return map_nt_error_from_unix(errno);
1344 client_set_cur_dir(saved_curdir);
1345 TALLOC_FREE(mget_mask);
1346 TALLOC_FREE(saved_curdir);
1347 TALLOC_FREE(new_cd);
1348 return NT_STATUS_OK;
1351 /****************************************************************************
1352 View the file using the pager.
1353 ****************************************************************************/
1355 static int cmd_more(void)
1357 TALLOC_CTX *ctx = talloc_tos();
1358 char *rname = NULL;
1359 char *fname = NULL;
1360 char *lname = NULL;
1361 char *pager_cmd = NULL;
1362 const char *pager;
1363 int fd;
1364 int rc = 0;
1365 mode_t mask;
1367 rname = talloc_strdup(ctx, client_get_cur_dir());
1368 if (!rname) {
1369 return 1;
1372 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1373 if (!lname) {
1374 return 1;
1376 mask = umask(S_IRWXO | S_IRWXG);
1377 fd = mkstemp(lname);
1378 umask(mask);
1379 if (fd == -1) {
1380 d_printf("failed to create temporary file for more\n");
1381 return 1;
1383 close(fd);
1385 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1386 d_printf("more <filename>\n");
1387 unlink(lname);
1388 return 1;
1390 rname = talloc_asprintf_append(rname, "%s", fname);
1391 if (!rname) {
1392 return 1;
1394 rname = clean_name(ctx,rname);
1395 if (!rname) {
1396 return 1;
1399 rc = do_get(rname, lname, false);
1401 pager=getenv("PAGER");
1403 pager_cmd = talloc_asprintf(ctx,
1404 "%s %s",
1405 (pager? pager:PAGER),
1406 lname);
1407 if (!pager_cmd) {
1408 return 1;
1410 if (system(pager_cmd) == -1) {
1411 d_printf("system command '%s' returned -1\n",
1412 pager_cmd);
1414 unlink(lname);
1416 return rc;
1419 /****************************************************************************
1420 Do a mget command.
1421 ****************************************************************************/
1423 static int cmd_mget(void)
1425 TALLOC_CTX *ctx = talloc_tos();
1426 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1427 char *mget_mask = NULL;
1428 char *buf = NULL;
1429 NTSTATUS status = NT_STATUS_OK;
1431 if (recurse) {
1432 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1435 abort_mget = false;
1437 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1439 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1440 if (!mget_mask) {
1441 return 1;
1443 if (*buf == CLI_DIRSEP_CHAR) {
1444 mget_mask = talloc_strdup(ctx, buf);
1445 } else {
1446 mget_mask = talloc_asprintf_append(mget_mask,
1447 "%s", buf);
1449 if (!mget_mask) {
1450 return 1;
1452 status = do_list(mget_mask, attribute, do_mget, false, true);
1453 if (!NT_STATUS_IS_OK(status)) {
1454 return 1;
1458 if (mget_mask == NULL) {
1459 d_printf("nothing to mget\n");
1460 return 0;
1463 if (!*mget_mask) {
1464 mget_mask = talloc_asprintf(ctx,
1465 "%s*",
1466 client_get_cur_dir());
1467 if (!mget_mask) {
1468 return 1;
1470 status = do_list(mget_mask, attribute, do_mget, false, true);
1471 if (!NT_STATUS_IS_OK(status)) {
1472 return 1;
1476 return 0;
1479 /****************************************************************************
1480 Make a directory of name "name".
1481 ****************************************************************************/
1483 static bool do_mkdir(const char *name)
1485 TALLOC_CTX *ctx = talloc_tos();
1486 struct cli_state *targetcli;
1487 char *targetname = NULL;
1488 NTSTATUS status;
1490 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
1491 &targetname);
1492 if (!NT_STATUS_IS_OK(status)) {
1493 d_printf("mkdir %s: %s\n", name, nt_errstr(status));
1494 return false;
1497 status = cli_mkdir(targetcli, targetname);
1498 if (!NT_STATUS_IS_OK(status)) {
1499 d_printf("%s making remote directory %s\n",
1500 nt_errstr(status),name);
1501 return false;
1504 return true;
1507 /****************************************************************************
1508 Show 8.3 name of a file.
1509 ****************************************************************************/
1511 static bool do_altname(const char *name)
1513 fstring altname;
1514 NTSTATUS status;
1516 status = cli_qpathinfo_alt_name(cli, name, altname);
1517 if (!NT_STATUS_IS_OK(status)) {
1518 d_printf("%s getting alt name for %s\n",
1519 nt_errstr(status),name);
1520 return false;
1522 d_printf("%s\n", altname);
1524 return true;
1527 /****************************************************************************
1528 Exit client.
1529 ****************************************************************************/
1531 static int cmd_quit(void)
1533 cli_shutdown(cli);
1534 exit(0);
1535 /* NOTREACHED */
1536 return 0;
1539 /****************************************************************************
1540 Make a directory.
1541 ****************************************************************************/
1543 static int cmd_mkdir(void)
1545 TALLOC_CTX *ctx = talloc_tos();
1546 char *mask = NULL;
1547 char *buf = NULL;
1548 NTSTATUS status;
1550 mask = talloc_strdup(ctx, client_get_cur_dir());
1551 if (!mask) {
1552 return 1;
1555 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1556 if (!recurse) {
1557 d_printf("mkdir <dirname>\n");
1559 return 1;
1561 mask = talloc_asprintf_append(mask, "%s", buf);
1562 if (!mask) {
1563 return 1;
1566 if (recurse) {
1567 char *ddir = NULL;
1568 char *ddir2 = NULL;
1569 struct cli_state *targetcli;
1570 char *targetname = NULL;
1571 char *p = NULL;
1572 char *saveptr;
1574 ddir2 = talloc_strdup(ctx, "");
1575 if (!ddir2) {
1576 return 1;
1579 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
1580 &targetcli, &targetname);
1581 if (!NT_STATUS_IS_OK(status)) {
1582 return 1;
1585 ddir = talloc_strdup(ctx, targetname);
1586 if (!ddir) {
1587 return 1;
1589 trim_char(ddir,'.','\0');
1590 p = strtok_r(ddir, "/\\", &saveptr);
1591 while (p) {
1592 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1593 if (!ddir2) {
1594 return 1;
1596 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1597 do_mkdir(ddir2);
1599 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1600 if (!ddir2) {
1601 return 1;
1603 p = strtok_r(NULL, "/\\", &saveptr);
1605 } else {
1606 do_mkdir(mask);
1609 return 0;
1612 /****************************************************************************
1613 Show alt name.
1614 ****************************************************************************/
1616 static int cmd_altname(void)
1618 TALLOC_CTX *ctx = talloc_tos();
1619 char *name;
1620 char *buf;
1622 name = talloc_strdup(ctx, client_get_cur_dir());
1623 if (!name) {
1624 return 1;
1627 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1628 d_printf("altname <file>\n");
1629 return 1;
1631 name = talloc_asprintf_append(name, "%s", buf);
1632 if (!name) {
1633 return 1;
1635 do_altname(name);
1636 return 0;
1639 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1641 char *attrs = talloc_zero_array(mem_ctx, char, 17);
1642 int i = 0;
1644 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1645 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1646 attrs[i++] = 'E';
1648 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1649 attrs[i++] = 'N';
1651 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1652 attrs[i++] = 'O';
1654 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1655 attrs[i++] = 'C';
1657 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1658 attrs[i++] = 'r';
1660 if (mode & FILE_ATTRIBUTE_SPARSE) {
1661 attrs[i++] = 's';
1663 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1664 attrs[i++] = 'T';
1666 if (mode & FILE_ATTRIBUTE_NORMAL) {
1667 attrs[i++] = 'N';
1669 if (mode & FILE_ATTRIBUTE_READONLY) {
1670 attrs[i++] = 'R';
1672 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1673 attrs[i++] = 'H';
1675 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1676 attrs[i++] = 'S';
1678 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1679 attrs[i++] = 'D';
1681 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1682 attrs[i++] = 'A';
1685 return attrs;
1688 /****************************************************************************
1689 Show all info we can get
1690 ****************************************************************************/
1692 static int do_allinfo(const char *name)
1694 fstring altname;
1695 struct timespec b_time, a_time, m_time, c_time;
1696 off_t size;
1697 uint16_t mode;
1698 NTTIME tmp;
1699 uint16_t fnum;
1700 unsigned int num_streams;
1701 struct stream_struct *streams;
1702 int num_snapshots;
1703 char **snapshots;
1704 unsigned int i;
1705 NTSTATUS status;
1707 status = cli_qpathinfo_alt_name(cli, name, altname);
1708 if (!NT_STATUS_IS_OK(status)) {
1709 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1710 name);
1712 * Ignore not supported or not implemented, it does not
1713 * hurt if we can't list alternate names.
1715 if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED) ||
1716 NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) {
1717 altname[0] = '\0';
1718 } else {
1719 return false;
1722 d_printf("altname: %s\n", altname);
1724 status = cli_qpathinfo3(cli, name, &b_time, &a_time, &m_time, &c_time,
1725 &size, &mode, NULL);
1726 if (!NT_STATUS_IS_OK(status)) {
1727 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1728 name);
1729 return false;
1732 unix_timespec_to_nt_time(&tmp, b_time);
1733 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1735 unix_timespec_to_nt_time(&tmp, a_time);
1736 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1738 unix_timespec_to_nt_time(&tmp, m_time);
1739 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1741 unix_timespec_to_nt_time(&tmp, c_time);
1742 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1744 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1746 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1747 &streams);
1748 if (!NT_STATUS_IS_OK(status)) {
1749 d_printf("%s getting streams for %s\n", nt_errstr(status),
1750 name);
1751 return false;
1754 for (i=0; i<num_streams; i++) {
1755 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1756 (unsigned long long)streams[i].size);
1759 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1760 char *subst, *print;
1761 uint32_t flags;
1763 status = cli_readlink(cli, name, talloc_tos(), &subst, &print,
1764 &flags);
1765 if (!NT_STATUS_IS_OK(status)) {
1766 d_fprintf(stderr, "cli_readlink returned %s\n",
1767 nt_errstr(status));
1768 } else {
1769 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1770 subst, print, flags);
1771 TALLOC_FREE(subst);
1772 TALLOC_FREE(print);
1776 status = cli_ntcreate(cli, name, 0,
1777 SEC_FILE_READ_DATA | SEC_FILE_READ_ATTRIBUTE |
1778 SEC_STD_SYNCHRONIZE, 0,
1779 FILE_SHARE_READ|FILE_SHARE_WRITE
1780 |FILE_SHARE_DELETE,
1781 FILE_OPEN, 0x0, 0x0, &fnum, NULL);
1782 if (!NT_STATUS_IS_OK(status)) {
1784 * Ignore failure, it does not hurt if we can't list
1785 * snapshots
1787 return 0;
1789 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1790 true, &snapshots, &num_snapshots);
1791 if (!NT_STATUS_IS_OK(status)) {
1792 cli_close(cli, fnum);
1793 return 0;
1796 for (i=0; i<num_snapshots; i++) {
1797 char *snap_name;
1799 d_printf("%s\n", snapshots[i]);
1800 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1801 snapshots[i], name);
1802 status = cli_qpathinfo3(cli, snap_name, &b_time, &a_time,
1803 &m_time, &c_time, &size,
1804 NULL, NULL);
1805 if (!NT_STATUS_IS_OK(status)) {
1806 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1807 snap_name, nt_errstr(status));
1808 TALLOC_FREE(snap_name);
1809 continue;
1811 unix_timespec_to_nt_time(&tmp, b_time);
1812 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1813 unix_timespec_to_nt_time(&tmp, a_time);
1814 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1815 unix_timespec_to_nt_time(&tmp, m_time);
1816 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1817 unix_timespec_to_nt_time(&tmp, c_time);
1818 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1819 d_printf("size: %d\n", (int)size);
1822 TALLOC_FREE(snapshots);
1824 return 0;
1827 /****************************************************************************
1828 Show all info we can get
1829 ****************************************************************************/
1831 static int cmd_allinfo(void)
1833 TALLOC_CTX *ctx = talloc_tos();
1834 char *name;
1835 char *buf;
1837 name = talloc_strdup(ctx, client_get_cur_dir());
1838 if (!name) {
1839 return 1;
1842 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1843 d_printf("allinfo <file>\n");
1844 return 1;
1846 name = talloc_asprintf_append(name, "%s", buf);
1847 if (!name) {
1848 return 1;
1851 do_allinfo(name);
1853 return 0;
1856 /****************************************************************************
1857 Put a single file.
1858 ****************************************************************************/
1860 static int do_put(const char *rname, const char *lname, bool reput)
1862 TALLOC_CTX *ctx = talloc_tos();
1863 uint16_t fnum;
1864 XFILE *f;
1865 off_t start = 0;
1866 int rc = 0;
1867 struct timespec tp_start;
1868 struct cli_state *targetcli;
1869 char *targetname = NULL;
1870 struct push_state state;
1871 NTSTATUS status;
1873 status = cli_resolve_path(ctx, "", auth_info, cli, rname,
1874 &targetcli, &targetname);
1875 if (!NT_STATUS_IS_OK(status)) {
1876 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1877 return 1;
1880 clock_gettime_mono(&tp_start);
1882 if (reput) {
1883 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1884 if (NT_STATUS_IS_OK(status)) {
1885 if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1886 targetcli, fnum, NULL,
1887 &start, NULL, NULL,
1888 NULL, NULL, NULL)) &&
1889 !NT_STATUS_IS_OK(status = cli_getattrE(
1890 targetcli, fnum, NULL,
1891 &start, NULL, NULL,
1892 NULL))) {
1893 d_printf("getattrib: %s\n", nt_errstr(status));
1894 return 1;
1897 } else {
1898 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1901 if (!NT_STATUS_IS_OK(status)) {
1902 d_printf("%s opening remote file %s\n", nt_errstr(status),
1903 rname);
1904 return 1;
1907 /* allow files to be piped into smbclient
1908 jdblair 24.jun.98
1910 Note that in this case this function will exit(0) rather
1911 than returning. */
1912 if (!strcmp(lname, "-")) {
1913 f = x_stdin;
1914 /* size of file is not known */
1915 } else {
1916 f = x_fopen(lname,O_RDONLY, 0);
1917 if (f && reput) {
1918 if (x_tseek(f, start, SEEK_SET) == -1) {
1919 d_printf("Error seeking local file\n");
1920 x_fclose(f);
1921 return 1;
1926 if (!f) {
1927 d_printf("Error opening local file %s\n",lname);
1928 return 1;
1931 DEBUG(1,("putting file %s as %s ",lname,
1932 rname));
1934 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1936 state.f = f;
1937 state.nread = 0;
1939 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1940 &state);
1941 if (!NT_STATUS_IS_OK(status)) {
1942 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1943 rc = 1;
1946 status = cli_close(targetcli, fnum);
1947 if (!NT_STATUS_IS_OK(status)) {
1948 d_printf("%s closing remote file %s\n", nt_errstr(status),
1949 rname);
1950 if (f != x_stdin) {
1951 x_fclose(f);
1953 return 1;
1956 if (f != x_stdin) {
1957 x_fclose(f);
1961 struct timespec tp_end;
1962 int this_time;
1964 clock_gettime_mono(&tp_end);
1965 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1966 put_total_time_ms += this_time;
1967 put_total_size += state.nread;
1969 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1970 state.nread / (1.024*this_time + 1.0e-4),
1971 put_total_size / (1.024*put_total_time_ms)));
1974 if (f == x_stdin) {
1975 cli_shutdown(cli);
1976 exit(rc);
1979 return rc;
1982 /****************************************************************************
1983 Put a file.
1984 ****************************************************************************/
1986 static int cmd_put(void)
1988 TALLOC_CTX *ctx = talloc_tos();
1989 char *lname;
1990 char *rname;
1991 char *buf;
1993 rname = talloc_strdup(ctx, client_get_cur_dir());
1994 if (!rname) {
1995 return 1;
1998 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1999 d_printf("put <filename>\n");
2000 return 1;
2003 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2004 rname = talloc_asprintf_append(rname, "%s", buf);
2005 } else {
2006 rname = talloc_asprintf_append(rname, "%s", lname);
2008 if (!rname) {
2009 return 1;
2012 rname = clean_name(ctx, rname);
2013 if (!rname) {
2014 return 1;
2018 SMB_STRUCT_STAT st;
2019 /* allow '-' to represent stdin
2020 jdblair, 24.jun.98 */
2021 if (!file_exist_stat(lname, &st, false) &&
2022 (strcmp(lname,"-"))) {
2023 d_printf("%s does not exist\n",lname);
2024 return 1;
2028 return do_put(rname, lname, false);
2031 /*************************************
2032 File list structure.
2033 *************************************/
2035 static struct file_list {
2036 struct file_list *prev, *next;
2037 char *file_path;
2038 bool isdir;
2039 } *file_list;
2041 /****************************************************************************
2042 Free a file_list structure.
2043 ****************************************************************************/
2045 static void free_file_list (struct file_list *l_head)
2047 struct file_list *list, *next;
2049 for (list = l_head; list; list = next) {
2050 next = list->next;
2051 DLIST_REMOVE(l_head, list);
2052 SAFE_FREE(list->file_path);
2053 SAFE_FREE(list);
2057 /****************************************************************************
2058 Seek in a directory/file list until you get something that doesn't start with
2059 the specified name.
2060 ****************************************************************************/
2062 static bool seek_list(struct file_list *list, char *name)
2064 while (list) {
2065 trim_string(list->file_path,"./","\n");
2066 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2067 return true;
2069 list = list->next;
2072 return false;
2075 /****************************************************************************
2076 Set the file selection mask.
2077 ****************************************************************************/
2079 static int cmd_select(void)
2081 TALLOC_CTX *ctx = talloc_tos();
2082 char *new_fs = NULL;
2083 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2085 if (new_fs) {
2086 client_set_fileselection(new_fs);
2087 } else {
2088 client_set_fileselection("");
2090 return 0;
2093 /****************************************************************************
2094 Recursive file matching function act as find
2095 match must be always set to true when calling this function
2096 ****************************************************************************/
2098 static int file_find(struct file_list **list, const char *directory,
2099 const char *expression, bool match)
2101 DIR *dir;
2102 struct file_list *entry;
2103 struct stat statbuf;
2104 int ret;
2105 char *path;
2106 bool isdir;
2107 const char *dname;
2109 dir = opendir(directory);
2110 if (!dir)
2111 return -1;
2113 while ((dname = readdirname(dir))) {
2114 if (!strcmp("..", dname))
2115 continue;
2116 if (!strcmp(".", dname))
2117 continue;
2119 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2120 continue;
2123 isdir = false;
2124 if (!match || !gen_fnmatch(expression, dname)) {
2125 if (recurse) {
2126 ret = stat(path, &statbuf);
2127 if (ret == 0) {
2128 if (S_ISDIR(statbuf.st_mode)) {
2129 isdir = true;
2130 ret = file_find(list, path, expression, false);
2132 } else {
2133 d_printf("file_find: cannot stat file %s\n", path);
2136 if (ret == -1) {
2137 SAFE_FREE(path);
2138 closedir(dir);
2139 return -1;
2142 entry = SMB_MALLOC_P(struct file_list);
2143 if (!entry) {
2144 d_printf("Out of memory in file_find\n");
2145 closedir(dir);
2146 return -1;
2148 entry->file_path = path;
2149 entry->isdir = isdir;
2150 DLIST_ADD(*list, entry);
2151 } else {
2152 SAFE_FREE(path);
2156 closedir(dir);
2157 return 0;
2160 /****************************************************************************
2161 mput some files.
2162 ****************************************************************************/
2164 static int cmd_mput(void)
2166 TALLOC_CTX *ctx = talloc_tos();
2167 char *p = NULL;
2169 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2170 int ret;
2171 struct file_list *temp_list;
2172 char *quest, *lname, *rname;
2174 file_list = NULL;
2176 ret = file_find(&file_list, ".", p, true);
2177 if (ret) {
2178 free_file_list(file_list);
2179 continue;
2182 quest = NULL;
2183 lname = NULL;
2184 rname = NULL;
2186 for (temp_list = file_list; temp_list;
2187 temp_list = temp_list->next) {
2189 SAFE_FREE(lname);
2190 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2191 continue;
2193 trim_string(lname, "./", "/");
2195 /* check if it's a directory */
2196 if (temp_list->isdir) {
2197 /* if (!recurse) continue; */
2199 SAFE_FREE(quest);
2200 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2201 break;
2203 if (prompt && !yesno(quest)) { /* No */
2204 /* Skip the directory */
2205 lname[strlen(lname)-1] = '/';
2206 if (!seek_list(temp_list, lname))
2207 break;
2208 } else { /* Yes */
2209 SAFE_FREE(rname);
2210 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2211 break;
2213 normalize_name(rname);
2214 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2215 !do_mkdir(rname)) {
2216 DEBUG (0, ("Unable to make dir, skipping..."));
2217 /* Skip the directory */
2218 lname[strlen(lname)-1] = '/';
2219 if (!seek_list(temp_list, lname)) {
2220 break;
2224 continue;
2225 } else {
2226 SAFE_FREE(quest);
2227 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2228 break;
2230 if (prompt && !yesno(quest)) {
2231 /* No */
2232 continue;
2235 /* Yes */
2236 SAFE_FREE(rname);
2237 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2238 break;
2242 normalize_name(rname);
2244 do_put(rname, lname, false);
2246 free_file_list(file_list);
2247 SAFE_FREE(quest);
2248 SAFE_FREE(lname);
2249 SAFE_FREE(rname);
2252 return 0;
2255 /****************************************************************************
2256 Cancel a print job.
2257 ****************************************************************************/
2259 static int do_cancel(int job)
2261 if (cli_printjob_del(cli, job)) {
2262 d_printf("Job %d cancelled\n",job);
2263 return 0;
2264 } else {
2265 NTSTATUS status = cli_nt_error(cli);
2266 d_printf("Error cancelling job %d : %s\n",
2267 job, nt_errstr(status));
2268 return 1;
2272 /****************************************************************************
2273 Cancel a print job.
2274 ****************************************************************************/
2276 static int cmd_cancel(void)
2278 TALLOC_CTX *ctx = talloc_tos();
2279 char *buf = NULL;
2280 int job;
2282 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2283 d_printf("cancel <jobid> ...\n");
2284 return 1;
2286 do {
2287 job = atoi(buf);
2288 do_cancel(job);
2289 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2291 return 0;
2294 /****************************************************************************
2295 Print a file.
2296 ****************************************************************************/
2298 static int cmd_print(void)
2300 TALLOC_CTX *ctx = talloc_tos();
2301 char *lname = NULL;
2302 char *rname = NULL;
2303 char *p = NULL;
2305 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2306 d_printf("print <filename>\n");
2307 return 1;
2310 rname = talloc_strdup(ctx, lname);
2311 if (!rname) {
2312 return 1;
2314 p = strrchr_m(rname,'/');
2315 if (p) {
2316 rname = talloc_asprintf(ctx,
2317 "%s-%d",
2318 p+1,
2319 (int)getpid());
2321 if (strequal(lname,"-")) {
2322 rname = talloc_asprintf(ctx,
2323 "stdin-%d",
2324 (int)getpid());
2326 if (!rname) {
2327 return 1;
2330 return do_put(rname, lname, false);
2333 /****************************************************************************
2334 Show a print queue entry.
2335 ****************************************************************************/
2337 static void queue_fn(struct print_job_info *p)
2339 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2342 /****************************************************************************
2343 Show a print queue.
2344 ****************************************************************************/
2346 static int cmd_queue(void)
2348 cli_print_queue(cli, queue_fn);
2349 return 0;
2352 /****************************************************************************
2353 Delete some files.
2354 ****************************************************************************/
2356 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2357 const char *dir)
2359 TALLOC_CTX *ctx = talloc_tos();
2360 char *mask = NULL;
2361 NTSTATUS status;
2363 mask = talloc_asprintf(ctx,
2364 "%s%c%s",
2365 dir,
2366 CLI_DIRSEP_CHAR,
2367 finfo->name);
2368 if (!mask) {
2369 return NT_STATUS_NO_MEMORY;
2372 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2373 TALLOC_FREE(mask);
2374 return NT_STATUS_OK;
2377 status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2378 if (!NT_STATUS_IS_OK(status)) {
2379 d_printf("%s deleting remote file %s\n",
2380 nt_errstr(status), mask);
2382 TALLOC_FREE(mask);
2383 return status;
2386 /****************************************************************************
2387 Delete some files.
2388 ****************************************************************************/
2390 static int cmd_del(void)
2392 TALLOC_CTX *ctx = talloc_tos();
2393 char *mask = NULL;
2394 char *buf = NULL;
2395 NTSTATUS status = NT_STATUS_OK;
2396 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2398 if (recurse) {
2399 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2402 mask = talloc_strdup(ctx, client_get_cur_dir());
2403 if (!mask) {
2404 return 1;
2406 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2407 d_printf("del <filename>\n");
2408 return 1;
2410 mask = talloc_asprintf_append(mask, "%s", buf);
2411 if (!mask) {
2412 return 1;
2415 status = do_list(mask,attribute,do_del,false,false);
2416 if (!NT_STATUS_IS_OK(status)) {
2417 return 1;
2419 return 0;
2422 /****************************************************************************
2423 Wildcard delete some files.
2424 ****************************************************************************/
2426 static int cmd_wdel(void)
2428 TALLOC_CTX *ctx = talloc_tos();
2429 char *mask = NULL;
2430 char *buf = NULL;
2431 uint16 attribute;
2432 struct cli_state *targetcli;
2433 char *targetname = NULL;
2434 NTSTATUS status;
2436 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2437 d_printf("wdel 0x<attrib> <wcard>\n");
2438 return 1;
2441 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2443 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2444 d_printf("wdel 0x<attrib> <wcard>\n");
2445 return 1;
2448 mask = talloc_asprintf(ctx, "%s%s",
2449 client_get_cur_dir(),
2450 buf);
2451 if (!mask) {
2452 return 1;
2455 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2456 &targetname);
2457 if (!NT_STATUS_IS_OK(status)) {
2458 d_printf("cmd_wdel %s: %s\n", mask, nt_errstr(status));
2459 return 1;
2462 status = cli_unlink(targetcli, targetname, attribute);
2463 if (!NT_STATUS_IS_OK(status)) {
2464 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2465 targetname);
2467 return 0;
2470 /****************************************************************************
2471 ****************************************************************************/
2473 static int cmd_open(void)
2475 TALLOC_CTX *ctx = talloc_tos();
2476 char *mask = NULL;
2477 char *buf = NULL;
2478 char *targetname = NULL;
2479 struct cli_state *targetcli;
2480 uint16_t fnum = (uint16_t)-1;
2481 NTSTATUS status;
2483 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2484 d_printf("open <filename>\n");
2485 return 1;
2487 mask = talloc_asprintf(ctx,
2488 "%s%s",
2489 client_get_cur_dir(),
2490 buf);
2491 if (!mask) {
2492 return 1;
2495 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2496 &targetname);
2497 if (!NT_STATUS_IS_OK(status)) {
2498 d_printf("open %s: %s\n", mask, nt_errstr(status));
2499 return 1;
2502 status = cli_ntcreate(targetcli, targetname, 0,
2503 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2504 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2505 0x0, 0x0, &fnum, NULL);
2506 if (!NT_STATUS_IS_OK(status)) {
2507 status = cli_ntcreate(targetcli, targetname, 0,
2508 FILE_READ_DATA, 0,
2509 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2510 0x0, 0x0, &fnum, NULL);
2511 if (NT_STATUS_IS_OK(status)) {
2512 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2513 } else {
2514 d_printf("Failed to open file %s. %s\n",
2515 targetname, nt_errstr(status));
2517 } else {
2518 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2520 return 0;
2523 static int cmd_posix_encrypt(void)
2525 TALLOC_CTX *ctx = talloc_tos();
2526 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2528 if (cli->use_kerberos) {
2529 status = cli_gss_smb_encryption_start(cli);
2530 } else {
2531 char *domain = NULL;
2532 char *user = NULL;
2533 char *password = NULL;
2535 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2536 d_printf("posix_encrypt domain user password\n");
2537 return 1;
2540 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2541 d_printf("posix_encrypt domain user password\n");
2542 return 1;
2545 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2546 d_printf("posix_encrypt domain user password\n");
2547 return 1;
2550 status = cli_raw_ntlm_smb_encryption_start(cli,
2551 user,
2552 password,
2553 domain);
2556 if (!NT_STATUS_IS_OK(status)) {
2557 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2558 } else {
2559 d_printf("encryption on\n");
2560 smb_encrypt = true;
2563 return 0;
2566 /****************************************************************************
2567 ****************************************************************************/
2569 static int cmd_posix_open(void)
2571 TALLOC_CTX *ctx = talloc_tos();
2572 char *mask = NULL;
2573 char *buf = NULL;
2574 char *targetname = NULL;
2575 struct cli_state *targetcli;
2576 mode_t mode;
2577 uint16_t fnum;
2578 NTSTATUS status;
2580 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2581 d_printf("posix_open <filename> 0<mode>\n");
2582 return 1;
2584 mask = talloc_asprintf(ctx,
2585 "%s%s",
2586 client_get_cur_dir(),
2587 buf);
2588 if (!mask) {
2589 return 1;
2592 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2593 d_printf("posix_open <filename> 0<mode>\n");
2594 return 1;
2596 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2598 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2599 &targetname);
2600 if (!NT_STATUS_IS_OK(status)) {
2601 d_printf("posix_open %s: %s\n", mask, nt_errstr(status));
2602 return 1;
2605 status = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode,
2606 &fnum);
2607 if (!NT_STATUS_IS_OK(status)) {
2608 status = cli_posix_open(targetcli, targetname,
2609 O_CREAT|O_RDONLY, mode, &fnum);
2610 if (!NT_STATUS_IS_OK(status)) {
2611 d_printf("Failed to open file %s. %s\n", targetname,
2612 nt_errstr(status));
2613 } else {
2614 d_printf("posix_open file %s: for readonly fnum %d\n",
2615 targetname, fnum);
2617 } else {
2618 d_printf("posix_open file %s: for read/write fnum %d\n",
2619 targetname, fnum);
2622 return 0;
2625 static int cmd_posix_mkdir(void)
2627 TALLOC_CTX *ctx = talloc_tos();
2628 char *mask = NULL;
2629 char *buf = NULL;
2630 char *targetname = NULL;
2631 struct cli_state *targetcli;
2632 mode_t mode;
2633 NTSTATUS status;
2635 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2636 d_printf("posix_mkdir <filename> 0<mode>\n");
2637 return 1;
2639 mask = talloc_asprintf(ctx,
2640 "%s%s",
2641 client_get_cur_dir(),
2642 buf);
2643 if (!mask) {
2644 return 1;
2647 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2648 d_printf("posix_mkdir <filename> 0<mode>\n");
2649 return 1;
2651 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2653 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2654 &targetname);
2655 if (!NT_STATUS_IS_OK(status)) {
2656 d_printf("posix_mkdir %s: %s\n", mask, nt_errstr(status));
2657 return 1;
2660 status = cli_posix_mkdir(targetcli, targetname, mode);
2661 if (!NT_STATUS_IS_OK(status)) {
2662 d_printf("Failed to open file %s. %s\n",
2663 targetname, nt_errstr(status));
2664 } else {
2665 d_printf("posix_mkdir created directory %s\n", targetname);
2667 return 0;
2670 static int cmd_posix_unlink(void)
2672 TALLOC_CTX *ctx = talloc_tos();
2673 char *mask = NULL;
2674 char *buf = NULL;
2675 char *targetname = NULL;
2676 struct cli_state *targetcli;
2677 NTSTATUS status;
2679 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2680 d_printf("posix_unlink <filename>\n");
2681 return 1;
2683 mask = talloc_asprintf(ctx,
2684 "%s%s",
2685 client_get_cur_dir(),
2686 buf);
2687 if (!mask) {
2688 return 1;
2691 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2692 &targetname);
2693 if (!NT_STATUS_IS_OK(status)) {
2694 d_printf("posix_unlink %s: %s\n", mask, nt_errstr(status));
2695 return 1;
2698 status = cli_posix_unlink(targetcli, targetname);
2699 if (!NT_STATUS_IS_OK(status)) {
2700 d_printf("Failed to unlink file %s. %s\n",
2701 targetname, nt_errstr(status));
2702 } else {
2703 d_printf("posix_unlink deleted file %s\n", targetname);
2706 return 0;
2709 static int cmd_posix_rmdir(void)
2711 TALLOC_CTX *ctx = talloc_tos();
2712 char *mask = NULL;
2713 char *buf = NULL;
2714 char *targetname = NULL;
2715 struct cli_state *targetcli;
2716 NTSTATUS status;
2718 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2719 d_printf("posix_rmdir <filename>\n");
2720 return 1;
2722 mask = talloc_asprintf(ctx,
2723 "%s%s",
2724 client_get_cur_dir(),
2725 buf);
2726 if (!mask) {
2727 return 1;
2730 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2731 &targetname);
2732 if (!NT_STATUS_IS_OK(status)) {
2733 d_printf("posix_rmdir %s: %s\n", mask, nt_errstr(status));
2734 return 1;
2737 status = cli_posix_rmdir(targetcli, targetname);
2738 if (!NT_STATUS_IS_OK(status)) {
2739 d_printf("Failed to unlink directory %s. %s\n",
2740 targetname, nt_errstr(status));
2741 } else {
2742 d_printf("posix_rmdir deleted directory %s\n", targetname);
2745 return 0;
2748 static int cmd_close(void)
2750 TALLOC_CTX *ctx = talloc_tos();
2751 char *buf = NULL;
2752 int fnum;
2753 NTSTATUS status;
2755 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2756 d_printf("close <fnum>\n");
2757 return 1;
2760 fnum = atoi(buf);
2761 /* We really should use the targetcli here.... */
2762 status = cli_close(cli, fnum);
2763 if (!NT_STATUS_IS_OK(status)) {
2764 d_printf("close %d: %s\n", fnum, nt_errstr(status));
2765 return 1;
2767 return 0;
2770 static int cmd_posix(void)
2772 TALLOC_CTX *ctx = talloc_tos();
2773 uint16 major, minor;
2774 uint32 caplow, caphigh;
2775 char *caps;
2776 NTSTATUS status;
2778 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2779 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2780 return 1;
2783 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2784 &caphigh);
2785 if (!NT_STATUS_IS_OK(status)) {
2786 d_printf("Can't get UNIX CIFS extensions version from "
2787 "server: %s\n", nt_errstr(status));
2788 return 1;
2791 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2793 caps = talloc_strdup(ctx, "");
2794 if (!caps) {
2795 return 1;
2797 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2798 caps = talloc_asprintf_append(caps, "locks ");
2799 if (!caps) {
2800 return 1;
2803 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2804 caps = talloc_asprintf_append(caps, "acls ");
2805 if (!caps) {
2806 return 1;
2809 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2810 caps = talloc_asprintf_append(caps, "eas ");
2811 if (!caps) {
2812 return 1;
2815 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2816 caps = talloc_asprintf_append(caps, "pathnames ");
2817 if (!caps) {
2818 return 1;
2821 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2822 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2823 if (!caps) {
2824 return 1;
2827 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2828 caps = talloc_asprintf_append(caps, "large_read ");
2829 if (!caps) {
2830 return 1;
2833 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2834 caps = talloc_asprintf_append(caps, "large_write ");
2835 if (!caps) {
2836 return 1;
2839 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2840 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2841 if (!caps) {
2842 return 1;
2845 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2846 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2847 if (!caps) {
2848 return 1;
2852 if (*caps && caps[strlen(caps)-1] == ' ') {
2853 caps[strlen(caps)-1] = '\0';
2856 d_printf("Server supports CIFS capabilities %s\n", caps);
2858 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2859 caplow, caphigh);
2860 if (!NT_STATUS_IS_OK(status)) {
2861 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2862 nt_errstr(status));
2863 return 1;
2866 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2867 CLI_DIRSEP_CHAR = '/';
2868 *CLI_DIRSEP_STR = '/';
2869 client_set_cur_dir(CLI_DIRSEP_STR);
2872 return 0;
2875 static int cmd_lock(void)
2877 TALLOC_CTX *ctx = talloc_tos();
2878 char *buf = NULL;
2879 uint64_t start, len;
2880 enum brl_type lock_type;
2881 int fnum;
2882 NTSTATUS status;
2884 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2885 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2886 return 1;
2888 fnum = atoi(buf);
2890 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2891 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2892 return 1;
2895 if (*buf == 'r' || *buf == 'R') {
2896 lock_type = READ_LOCK;
2897 } else if (*buf == 'w' || *buf == 'W') {
2898 lock_type = WRITE_LOCK;
2899 } else {
2900 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2901 return 1;
2904 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2905 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2906 return 1;
2909 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2911 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2912 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2913 return 1;
2916 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2918 status = cli_posix_lock(cli, fnum, start, len, true, lock_type);
2919 if (!NT_STATUS_IS_OK(status)) {
2920 d_printf("lock failed %d: %s\n", fnum, nt_errstr(status));
2923 return 0;
2926 static int cmd_unlock(void)
2928 TALLOC_CTX *ctx = talloc_tos();
2929 char *buf = NULL;
2930 uint64_t start, len;
2931 int fnum;
2932 NTSTATUS status;
2934 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2935 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2936 return 1;
2938 fnum = atoi(buf);
2940 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2941 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2942 return 1;
2945 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2947 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2948 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2949 return 1;
2952 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2954 status = cli_posix_unlock(cli, fnum, start, len);
2955 if (!NT_STATUS_IS_OK(status)) {
2956 d_printf("unlock failed %d: %s\n", fnum, nt_errstr(status));
2959 return 0;
2963 /****************************************************************************
2964 Remove a directory.
2965 ****************************************************************************/
2967 static int cmd_rmdir(void)
2969 TALLOC_CTX *ctx = talloc_tos();
2970 char *mask = NULL;
2971 char *buf = NULL;
2972 char *targetname = NULL;
2973 struct cli_state *targetcli;
2974 NTSTATUS status;
2976 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2977 d_printf("rmdir <dirname>\n");
2978 return 1;
2980 mask = talloc_asprintf(ctx,
2981 "%s%s",
2982 client_get_cur_dir(),
2983 buf);
2984 if (!mask) {
2985 return 1;
2988 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2989 &targetname);
2990 if (!NT_STATUS_IS_OK(status)) {
2991 d_printf("rmdir %s: %s\n", mask, nt_errstr(status));
2992 return 1;
2995 status = cli_rmdir(targetcli, targetname);
2996 if (!NT_STATUS_IS_OK(status)) {
2997 d_printf("%s removing remote directory file %s\n",
2998 nt_errstr(status), mask);
3001 return 0;
3004 /****************************************************************************
3005 UNIX hardlink.
3006 ****************************************************************************/
3008 static int cmd_link(void)
3010 TALLOC_CTX *ctx = talloc_tos();
3011 char *oldname = NULL;
3012 char *newname = NULL;
3013 char *buf = NULL;
3014 char *buf2 = NULL;
3015 char *targetname = NULL;
3016 struct cli_state *targetcli;
3017 NTSTATUS status;
3019 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3020 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3021 d_printf("link <oldname> <newname>\n");
3022 return 1;
3024 oldname = talloc_asprintf(ctx,
3025 "%s%s",
3026 client_get_cur_dir(),
3027 buf);
3028 if (!oldname) {
3029 return 1;
3031 newname = talloc_asprintf(ctx,
3032 "%s%s",
3033 client_get_cur_dir(),
3034 buf2);
3035 if (!newname) {
3036 return 1;
3039 status = cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli,
3040 &targetname);
3041 if (!NT_STATUS_IS_OK(status)) {
3042 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3043 return 1;
3046 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3047 d_printf("Server doesn't support UNIX CIFS calls.\n");
3048 return 1;
3051 status = cli_posix_hardlink(targetcli, targetname, newname);
3052 if (!NT_STATUS_IS_OK(status)) {
3053 d_printf("%s linking files (%s -> %s)\n",
3054 nt_errstr(status), newname, oldname);
3055 return 1;
3057 return 0;
3060 /****************************************************************************
3061 UNIX readlink.
3062 ****************************************************************************/
3064 static int cmd_readlink(void)
3066 TALLOC_CTX *ctx = talloc_tos();
3067 char *name= NULL;
3068 char *buf = NULL;
3069 char *targetname = NULL;
3070 char linkname[PATH_MAX+1];
3071 struct cli_state *targetcli;
3072 NTSTATUS status;
3074 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3075 d_printf("readlink <name>\n");
3076 return 1;
3078 name = talloc_asprintf(ctx,
3079 "%s%s",
3080 client_get_cur_dir(),
3081 buf);
3082 if (!name) {
3083 return 1;
3086 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
3087 &targetname);
3088 if (!NT_STATUS_IS_OK(status)) {
3089 d_printf("readlink %s: %s\n", name, nt_errstr(status));
3090 return 1;
3093 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3094 d_printf("Server doesn't support UNIX CIFS calls.\n");
3095 return 1;
3098 status = cli_posix_readlink(targetcli, name, linkname, PATH_MAX+1);
3099 if (!NT_STATUS_IS_OK(status)) {
3100 d_printf("%s readlink on file %s\n",
3101 nt_errstr(status), name);
3102 return 1;
3105 d_printf("%s -> %s\n", name, linkname);
3107 return 0;
3111 /****************************************************************************
3112 UNIX symlink.
3113 ****************************************************************************/
3115 static int cmd_symlink(void)
3117 TALLOC_CTX *ctx = talloc_tos();
3118 char *oldname = NULL;
3119 char *newname = NULL;
3120 char *buf = NULL;
3121 char *buf2 = NULL;
3122 struct cli_state *newcli;
3123 NTSTATUS status;
3125 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3126 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3127 d_printf("symlink <oldname> <newname>\n");
3128 return 1;
3130 /* Oldname (link target) must be an untouched blob. */
3131 oldname = buf;
3133 if (SERVER_HAS_UNIX_CIFS(cli)) {
3134 newname = talloc_asprintf(ctx, "%s%s", client_get_cur_dir(),
3135 buf2);
3136 if (!newname) {
3137 return 1;
3139 /* New name must be present in share namespace. */
3140 status = cli_resolve_path(ctx, "", auth_info, cli, newname,
3141 &newcli, &newname);
3142 if (!NT_STATUS_IS_OK(status)) {
3143 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3144 return 1;
3146 status = cli_posix_symlink(newcli, oldname, newname);
3147 } else {
3148 status = cli_symlink(
3149 cli, oldname, buf2,
3150 buf2[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE);
3153 if (!NT_STATUS_IS_OK(status)) {
3154 d_printf("%s symlinking files (%s -> %s)\n",
3155 nt_errstr(status), oldname, newname);
3156 return 1;
3159 return 0;
3162 /****************************************************************************
3163 UNIX chmod.
3164 ****************************************************************************/
3166 static int cmd_chmod(void)
3168 TALLOC_CTX *ctx = talloc_tos();
3169 char *src = NULL;
3170 char *buf = NULL;
3171 char *buf2 = NULL;
3172 char *targetname = NULL;
3173 struct cli_state *targetcli;
3174 mode_t mode;
3175 NTSTATUS status;
3177 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3178 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3179 d_printf("chmod mode file\n");
3180 return 1;
3182 src = talloc_asprintf(ctx,
3183 "%s%s",
3184 client_get_cur_dir(),
3185 buf2);
3186 if (!src) {
3187 return 1;
3190 mode = (mode_t)strtol(buf, NULL, 8);
3192 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3193 &targetname);
3194 if (!NT_STATUS_IS_OK(status)) {
3195 d_printf("chmod %s: %s\n", src, nt_errstr(status));
3196 return 1;
3199 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3200 d_printf("Server doesn't support UNIX CIFS calls.\n");
3201 return 1;
3204 status = cli_posix_chmod(targetcli, targetname, mode);
3205 if (!NT_STATUS_IS_OK(status)) {
3206 d_printf("%s chmod file %s 0%o\n",
3207 nt_errstr(status), src, (unsigned int)mode);
3208 return 1;
3211 return 0;
3214 static const char *filetype_to_str(mode_t mode)
3216 if (S_ISREG(mode)) {
3217 return "regular file";
3218 } else if (S_ISDIR(mode)) {
3219 return "directory";
3220 } else
3221 #ifdef S_ISCHR
3222 if (S_ISCHR(mode)) {
3223 return "character device";
3224 } else
3225 #endif
3226 #ifdef S_ISBLK
3227 if (S_ISBLK(mode)) {
3228 return "block device";
3229 } else
3230 #endif
3231 #ifdef S_ISFIFO
3232 if (S_ISFIFO(mode)) {
3233 return "fifo";
3234 } else
3235 #endif
3236 #ifdef S_ISLNK
3237 if (S_ISLNK(mode)) {
3238 return "symbolic link";
3239 } else
3240 #endif
3241 #ifdef S_ISSOCK
3242 if (S_ISSOCK(mode)) {
3243 return "socket";
3244 } else
3245 #endif
3246 return "";
3249 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3251 if (m & bt) {
3252 return ret;
3253 } else {
3254 return '-';
3258 static char *unix_mode_to_str(char *s, mode_t m)
3260 char *p = s;
3261 const char *str = filetype_to_str(m);
3263 switch(str[0]) {
3264 case 'd':
3265 *p++ = 'd';
3266 break;
3267 case 'c':
3268 *p++ = 'c';
3269 break;
3270 case 'b':
3271 *p++ = 'b';
3272 break;
3273 case 'f':
3274 *p++ = 'p';
3275 break;
3276 case 's':
3277 *p++ = str[1] == 'y' ? 'l' : 's';
3278 break;
3279 case 'r':
3280 default:
3281 *p++ = '-';
3282 break;
3284 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3285 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3286 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3287 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3288 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3289 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3290 *p++ = rwx_to_str(m, S_IROTH, 'r');
3291 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3292 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3293 *p++ = '\0';
3294 return s;
3297 /****************************************************************************
3298 Utility function for UNIX getfacl.
3299 ****************************************************************************/
3301 static char *perms_to_string(fstring permstr, unsigned char perms)
3303 fstrcpy(permstr, "---");
3304 if (perms & SMB_POSIX_ACL_READ) {
3305 permstr[0] = 'r';
3307 if (perms & SMB_POSIX_ACL_WRITE) {
3308 permstr[1] = 'w';
3310 if (perms & SMB_POSIX_ACL_EXECUTE) {
3311 permstr[2] = 'x';
3313 return permstr;
3316 /****************************************************************************
3317 UNIX getfacl.
3318 ****************************************************************************/
3320 static int cmd_getfacl(void)
3322 TALLOC_CTX *ctx = talloc_tos();
3323 char *src = NULL;
3324 char *name = NULL;
3325 char *targetname = NULL;
3326 struct cli_state *targetcli;
3327 uint16 major, minor;
3328 uint32 caplow, caphigh;
3329 char *retbuf = NULL;
3330 size_t rb_size = 0;
3331 SMB_STRUCT_STAT sbuf;
3332 uint16 num_file_acls = 0;
3333 uint16 num_dir_acls = 0;
3334 uint16 i;
3335 NTSTATUS status;
3337 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3338 d_printf("getfacl filename\n");
3339 return 1;
3341 src = talloc_asprintf(ctx,
3342 "%s%s",
3343 client_get_cur_dir(),
3344 name);
3345 if (!src) {
3346 return 1;
3349 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3350 &targetname);
3351 if (!NT_STATUS_IS_OK(status)) {
3352 d_printf("stat %s: %s\n", src, nt_errstr(status));
3353 return 1;
3356 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3357 d_printf("Server doesn't support UNIX CIFS calls.\n");
3358 return 1;
3361 status = cli_unix_extensions_version(targetcli, &major, &minor,
3362 &caplow, &caphigh);
3363 if (!NT_STATUS_IS_OK(status)) {
3364 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3365 nt_errstr(status));
3366 return 1;
3369 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3370 d_printf("This server supports UNIX extensions "
3371 "but doesn't support POSIX ACLs.\n");
3372 return 1;
3375 status = cli_posix_stat(targetcli, targetname, &sbuf);
3376 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3377 d_printf("%s getfacl doing a stat on file %s\n",
3378 nt_errstr(status), src);
3379 return 1;
3382 status = cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf);
3383 if (!NT_STATUS_IS_OK(status)) {
3384 d_printf("%s getfacl file %s\n",
3385 nt_errstr(status), src);
3386 return 1;
3389 /* ToDo : Print out the ACL values. */
3390 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3391 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3392 src, (unsigned int)CVAL(retbuf,0) );
3393 return 1;
3396 num_file_acls = SVAL(retbuf,2);
3397 num_dir_acls = SVAL(retbuf,4);
3398 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3399 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3400 src,
3401 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3402 (unsigned int)rb_size);
3403 return 1;
3406 d_printf("# file: %s\n", src);
3407 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3409 if (num_file_acls == 0 && num_dir_acls == 0) {
3410 d_printf("No acls found.\n");
3413 for (i = 0; i < num_file_acls; i++) {
3414 uint32 uorg;
3415 fstring permstring;
3416 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3417 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3419 switch(tagtype) {
3420 case SMB_POSIX_ACL_USER_OBJ:
3421 d_printf("user::");
3422 break;
3423 case SMB_POSIX_ACL_USER:
3424 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3425 d_printf("user:%u:", uorg);
3426 break;
3427 case SMB_POSIX_ACL_GROUP_OBJ:
3428 d_printf("group::");
3429 break;
3430 case SMB_POSIX_ACL_GROUP:
3431 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3432 d_printf("group:%u:", uorg);
3433 break;
3434 case SMB_POSIX_ACL_MASK:
3435 d_printf("mask::");
3436 break;
3437 case SMB_POSIX_ACL_OTHER:
3438 d_printf("other::");
3439 break;
3440 default:
3441 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3442 src, (unsigned int)tagtype );
3443 SAFE_FREE(retbuf);
3444 return 1;
3447 d_printf("%s\n", perms_to_string(permstring, perms));
3450 for (i = 0; i < num_dir_acls; i++) {
3451 uint32 uorg;
3452 fstring permstring;
3453 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3454 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3456 switch(tagtype) {
3457 case SMB_POSIX_ACL_USER_OBJ:
3458 d_printf("default:user::");
3459 break;
3460 case SMB_POSIX_ACL_USER:
3461 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3462 d_printf("default:user:%u:", uorg);
3463 break;
3464 case SMB_POSIX_ACL_GROUP_OBJ:
3465 d_printf("default:group::");
3466 break;
3467 case SMB_POSIX_ACL_GROUP:
3468 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3469 d_printf("default:group:%u:", uorg);
3470 break;
3471 case SMB_POSIX_ACL_MASK:
3472 d_printf("default:mask::");
3473 break;
3474 case SMB_POSIX_ACL_OTHER:
3475 d_printf("default:other::");
3476 break;
3477 default:
3478 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3479 src, (unsigned int)tagtype );
3480 SAFE_FREE(retbuf);
3481 return 1;
3484 d_printf("%s\n", perms_to_string(permstring, perms));
3487 return 0;
3490 /****************************************************************************
3491 Get the EA list of a file
3492 ****************************************************************************/
3494 static int cmd_geteas(void)
3496 TALLOC_CTX *ctx = talloc_tos();
3497 char *src = NULL;
3498 char *name = NULL;
3499 char *targetname = NULL;
3500 struct cli_state *targetcli;
3501 NTSTATUS status;
3502 size_t i, num_eas;
3503 struct ea_struct *eas;
3505 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3506 d_printf("geteas filename\n");
3507 return 1;
3509 src = talloc_asprintf(ctx,
3510 "%s%s",
3511 client_get_cur_dir(),
3512 name);
3513 if (!src) {
3514 return 1;
3517 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3518 &targetname);
3519 if (!NT_STATUS_IS_OK(status)) {
3520 d_printf("stat %s: %s\n", src, nt_errstr(status));
3521 return 1;
3524 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3525 &num_eas, &eas);
3526 if (!NT_STATUS_IS_OK(status)) {
3527 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3528 return 1;
3531 for (i=0; i<num_eas; i++) {
3532 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3533 dump_data_file(eas[i].value.data, eas[i].value.length, false,
3534 stdout);
3535 d_printf("\n");
3538 TALLOC_FREE(eas);
3540 return 0;
3543 /****************************************************************************
3544 Set an EA of a file
3545 ****************************************************************************/
3547 static int cmd_setea(void)
3549 TALLOC_CTX *ctx = talloc_tos();
3550 char *src = NULL;
3551 char *name = NULL;
3552 char *eaname = NULL;
3553 char *eavalue = NULL;
3554 char *targetname = NULL;
3555 struct cli_state *targetcli;
3556 NTSTATUS status;
3558 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3559 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3560 d_printf("setea filename eaname value\n");
3561 return 1;
3563 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3564 eavalue = talloc_strdup(ctx, "");
3566 src = talloc_asprintf(ctx,
3567 "%s%s",
3568 client_get_cur_dir(),
3569 name);
3570 if (!src) {
3571 return 1;
3574 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3575 &targetname);
3576 if (!NT_STATUS_IS_OK(status)) {
3577 d_printf("stat %s: %s\n", src, nt_errstr(status));
3578 return 1;
3581 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3582 strlen(eavalue));
3583 if (!NT_STATUS_IS_OK(status)) {
3584 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3585 return 1;
3588 return 0;
3591 /****************************************************************************
3592 UNIX stat.
3593 ****************************************************************************/
3595 static int cmd_stat(void)
3597 TALLOC_CTX *ctx = talloc_tos();
3598 char *src = NULL;
3599 char *name = NULL;
3600 char *targetname = NULL;
3601 struct cli_state *targetcli;
3602 fstring mode_str;
3603 SMB_STRUCT_STAT sbuf;
3604 struct tm *lt;
3605 time_t tmp_time;
3606 NTSTATUS status;
3608 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3609 d_printf("stat file\n");
3610 return 1;
3612 src = talloc_asprintf(ctx,
3613 "%s%s",
3614 client_get_cur_dir(),
3615 name);
3616 if (!src) {
3617 return 1;
3620 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3621 &targetname);
3622 if (!NT_STATUS_IS_OK(status)) {
3623 d_printf("stat %s: %s\n", src, nt_errstr(status));
3624 return 1;
3627 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3628 d_printf("Server doesn't support UNIX CIFS calls.\n");
3629 return 1;
3632 status = cli_posix_stat(targetcli, targetname, &sbuf);
3633 if (!NT_STATUS_IS_OK(status)) {
3634 d_printf("%s stat file %s\n",
3635 nt_errstr(status), src);
3636 return 1;
3639 /* Print out the stat values. */
3640 d_printf("File: %s\n", src);
3641 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3642 (double)sbuf.st_ex_size,
3643 (unsigned int)sbuf.st_ex_blocks,
3644 filetype_to_str(sbuf.st_ex_mode));
3646 #if defined(S_ISCHR) && defined(S_ISBLK)
3647 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3648 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3649 (double)sbuf.st_ex_ino,
3650 (unsigned int)sbuf.st_ex_nlink,
3651 unix_dev_major(sbuf.st_ex_rdev),
3652 unix_dev_minor(sbuf.st_ex_rdev));
3653 } else
3654 #endif
3655 d_printf("Inode: %.0f\tLinks: %u\n",
3656 (double)sbuf.st_ex_ino,
3657 (unsigned int)sbuf.st_ex_nlink);
3659 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3660 ((int)sbuf.st_ex_mode & 0777),
3661 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3662 (unsigned int)sbuf.st_ex_uid,
3663 (unsigned int)sbuf.st_ex_gid);
3665 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3666 lt = localtime(&tmp_time);
3667 if (lt) {
3668 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3669 } else {
3670 fstrcpy(mode_str, "unknown");
3672 d_printf("Access: %s\n", mode_str);
3674 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3675 lt = localtime(&tmp_time);
3676 if (lt) {
3677 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3678 } else {
3679 fstrcpy(mode_str, "unknown");
3681 d_printf("Modify: %s\n", mode_str);
3683 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3684 lt = localtime(&tmp_time);
3685 if (lt) {
3686 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3687 } else {
3688 fstrcpy(mode_str, "unknown");
3690 d_printf("Change: %s\n", mode_str);
3692 return 0;
3696 /****************************************************************************
3697 UNIX chown.
3698 ****************************************************************************/
3700 static int cmd_chown(void)
3702 TALLOC_CTX *ctx = talloc_tos();
3703 char *src = NULL;
3704 uid_t uid;
3705 gid_t gid;
3706 char *buf, *buf2, *buf3;
3707 struct cli_state *targetcli;
3708 char *targetname = NULL;
3709 NTSTATUS status;
3711 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3712 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3713 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3714 d_printf("chown uid gid file\n");
3715 return 1;
3718 uid = (uid_t)atoi(buf);
3719 gid = (gid_t)atoi(buf2);
3721 src = talloc_asprintf(ctx,
3722 "%s%s",
3723 client_get_cur_dir(),
3724 buf3);
3725 if (!src) {
3726 return 1;
3728 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3729 &targetname);
3730 if (!NT_STATUS_IS_OK(status)) {
3731 d_printf("chown %s: %s\n", src, nt_errstr(status));
3732 return 1;
3735 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3736 d_printf("Server doesn't support UNIX CIFS calls.\n");
3737 return 1;
3740 status = cli_posix_chown(targetcli, targetname, uid, gid);
3741 if (!NT_STATUS_IS_OK(status)) {
3742 d_printf("%s chown file %s uid=%d, gid=%d\n",
3743 nt_errstr(status), src, (int)uid, (int)gid);
3744 return 1;
3747 return 0;
3750 /****************************************************************************
3751 Rename some file.
3752 ****************************************************************************/
3754 static int cmd_rename(void)
3756 TALLOC_CTX *ctx = talloc_tos();
3757 char *src, *dest;
3758 char *buf, *buf2;
3759 struct cli_state *targetcli;
3760 char *targetsrc;
3761 char *targetdest;
3762 NTSTATUS status;
3764 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3765 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3766 d_printf("rename <src> <dest>\n");
3767 return 1;
3770 src = talloc_asprintf(ctx,
3771 "%s%s",
3772 client_get_cur_dir(),
3773 buf);
3774 if (!src) {
3775 return 1;
3778 dest = talloc_asprintf(ctx,
3779 "%s%s",
3780 client_get_cur_dir(),
3781 buf2);
3782 if (!dest) {
3783 return 1;
3786 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3787 &targetsrc);
3788 if (!NT_STATUS_IS_OK(status)) {
3789 d_printf("rename %s: %s\n", src, nt_errstr(status));
3790 return 1;
3793 status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3794 &targetdest);
3795 if (!NT_STATUS_IS_OK(status)) {
3796 d_printf("rename %s: %s\n", dest, nt_errstr(status));
3797 return 1;
3800 status = cli_rename(targetcli, targetsrc, targetdest);
3801 if (!NT_STATUS_IS_OK(status)) {
3802 d_printf("%s renaming files %s -> %s \n",
3803 nt_errstr(status),
3804 targetsrc,
3805 targetdest);
3806 return 1;
3809 return 0;
3812 /****************************************************************************
3813 Print the volume name.
3814 ****************************************************************************/
3816 static int cmd_volume(void)
3818 char *volname;
3819 uint32_t serial_num;
3820 time_t create_date;
3821 NTSTATUS status;
3823 status = cli_get_fs_volume_info(cli, talloc_tos(),
3824 &volname, &serial_num,
3825 &create_date);
3826 if (!NT_STATUS_IS_OK(status)) {
3827 d_printf("Error %s getting volume info\n", nt_errstr(status));
3828 return 1;
3831 d_printf("Volume: |%s| serial number 0x%x\n",
3832 volname, (unsigned int)serial_num);
3833 return 0;
3836 /****************************************************************************
3837 Hard link files using the NT call.
3838 ****************************************************************************/
3840 static int cmd_hardlink(void)
3842 TALLOC_CTX *ctx = talloc_tos();
3843 char *src, *dest;
3844 char *buf, *buf2;
3845 struct cli_state *targetcli;
3846 char *targetname;
3847 NTSTATUS status;
3849 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3850 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3851 d_printf("hardlink <src> <dest>\n");
3852 return 1;
3855 src = talloc_asprintf(ctx,
3856 "%s%s",
3857 client_get_cur_dir(),
3858 buf);
3859 if (!src) {
3860 return 1;
3863 dest = talloc_asprintf(ctx,
3864 "%s%s",
3865 client_get_cur_dir(),
3866 buf2);
3867 if (!dest) {
3868 return 1;
3871 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3872 &targetname);
3873 if (!NT_STATUS_IS_OK(status)) {
3874 d_printf("hardlink %s: %s\n", src, nt_errstr(status));
3875 return 1;
3878 status = cli_nt_hardlink(targetcli, targetname, dest);
3879 if (!NT_STATUS_IS_OK(status)) {
3880 d_printf("%s doing an NT hard link of files\n",
3881 nt_errstr(status));
3882 return 1;
3885 return 0;
3888 /****************************************************************************
3889 Toggle the prompt flag.
3890 ****************************************************************************/
3892 static int cmd_prompt(void)
3894 prompt = !prompt;
3895 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3896 return 1;
3899 /****************************************************************************
3900 Set the newer than time.
3901 ****************************************************************************/
3903 static int cmd_newer(void)
3905 TALLOC_CTX *ctx = talloc_tos();
3906 char *buf;
3907 bool ok;
3908 SMB_STRUCT_STAT sbuf;
3910 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3911 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3912 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3913 DEBUG(1,("Getting files newer than %s",
3914 time_to_asc(newer_than)));
3915 } else {
3916 newer_than = 0;
3919 if (ok && newer_than == 0) {
3920 d_printf("Error setting newer-than time\n");
3921 return 1;
3924 return 0;
3927 /****************************************************************************
3928 Watch directory changes
3929 ****************************************************************************/
3931 static int cmd_notify(void)
3933 TALLOC_CTX *frame = talloc_stackframe();
3934 char *name, *buf;
3935 NTSTATUS status;
3936 uint16_t fnum;
3938 name = talloc_strdup(talloc_tos(), client_get_cur_dir());
3939 if (name == NULL) {
3940 goto fail;
3942 if (!next_token_talloc(talloc_tos(), &cmd_ptr, &buf, NULL)) {
3943 goto usage;
3945 name = talloc_asprintf_append(name, "%s", buf);
3946 if (name == NULL) {
3947 goto fail;
3949 status = cli_ntcreate(
3950 cli, name, 0, FILE_READ_DATA, 0,
3951 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3952 FILE_OPEN, 0, 0, &fnum, NULL);
3953 if (!NT_STATUS_IS_OK(status)) {
3954 d_printf("Could not open file: %s\n", nt_errstr(status));
3955 goto fail;
3958 while (1) {
3959 uint32_t i, num_changes;
3960 struct notify_change *changes;
3962 status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL,
3963 true,
3964 talloc_tos(), &num_changes, &changes);
3965 if (!NT_STATUS_IS_OK(status)) {
3966 d_printf("notify returned %s\n",
3967 nt_errstr(status));
3968 goto fail;
3970 for (i=0; i<num_changes; i++) {
3971 printf("%4.4x %s\n", changes[i].action,
3972 changes[i].name);
3974 TALLOC_FREE(changes);
3976 usage:
3977 d_printf("notify <file>\n");
3978 fail:
3979 TALLOC_FREE(frame);
3980 return 1;
3983 /****************************************************************************
3984 Set the archive level.
3985 ****************************************************************************/
3987 static int cmd_archive(void)
3989 TALLOC_CTX *ctx = talloc_tos();
3990 char *buf;
3992 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3993 archive_level = atoi(buf);
3994 } else {
3995 d_printf("Archive level is %d\n",archive_level);
3998 return 0;
4001 /****************************************************************************
4002 Toggle the backup_intent state.
4003 ****************************************************************************/
4005 static int cmd_backup(void)
4007 backup_intent = !backup_intent;
4008 cli_set_backup_intent(cli, backup_intent);
4009 DEBUG(2,("backup intent is now %s\n",backup_intent?"on":"off"));
4010 return 1;
4013 /****************************************************************************
4014 Toggle the lowercaseflag.
4015 ****************************************************************************/
4017 static int cmd_lowercase(void)
4019 lowercase = !lowercase;
4020 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
4021 return 0;
4024 /****************************************************************************
4025 Toggle the case sensitive flag.
4026 ****************************************************************************/
4028 static int cmd_setcase(void)
4030 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
4032 cli_set_case_sensitive(cli, !orig_case_sensitive);
4033 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
4034 "on":"off"));
4035 return 0;
4038 /****************************************************************************
4039 Toggle the showacls flag.
4040 ****************************************************************************/
4042 static int cmd_showacls(void)
4044 showacls = !showacls;
4045 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
4046 return 0;
4050 /****************************************************************************
4051 Toggle the recurse flag.
4052 ****************************************************************************/
4054 static int cmd_recurse(void)
4056 recurse = !recurse;
4057 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
4058 return 0;
4061 /****************************************************************************
4062 Toggle the translate flag.
4063 ****************************************************************************/
4065 static int cmd_translate(void)
4067 translation = !translation;
4068 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4069 translation?"on":"off"));
4070 return 0;
4073 /****************************************************************************
4074 Do the lcd command.
4075 ****************************************************************************/
4077 static int cmd_lcd(void)
4079 TALLOC_CTX *ctx = talloc_tos();
4080 char *buf;
4081 char *d;
4083 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4084 if (chdir(buf) == -1) {
4085 d_printf("chdir to %s failed (%s)\n",
4086 buf, strerror(errno));
4089 d = sys_getwd();
4090 if (!d) {
4091 return 1;
4093 DEBUG(2,("the local directory is now %s\n",d));
4094 SAFE_FREE(d);
4095 return 0;
4098 /****************************************************************************
4099 Get a file restarting at end of local file.
4100 ****************************************************************************/
4102 static int cmd_reget(void)
4104 TALLOC_CTX *ctx = talloc_tos();
4105 char *local_name = NULL;
4106 char *remote_name = NULL;
4107 char *fname = NULL;
4108 char *p = NULL;
4110 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4111 if (!remote_name) {
4112 return 1;
4115 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
4116 d_printf("reget <filename>\n");
4117 return 1;
4119 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
4120 if (!remote_name) {
4121 return 1;
4123 remote_name = clean_name(ctx,remote_name);
4124 if (!remote_name) {
4125 return 1;
4128 local_name = fname;
4129 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
4130 if (p) {
4131 local_name = p;
4134 return do_get(remote_name, local_name, true);
4137 /****************************************************************************
4138 Put a file restarting at end of local file.
4139 ****************************************************************************/
4141 static int cmd_reput(void)
4143 TALLOC_CTX *ctx = talloc_tos();
4144 char *local_name = NULL;
4145 char *remote_name = NULL;
4146 char *buf;
4147 SMB_STRUCT_STAT st;
4149 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4150 if (!remote_name) {
4151 return 1;
4154 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
4155 d_printf("reput <filename>\n");
4156 return 1;
4159 if (!file_exist_stat(local_name, &st, false)) {
4160 d_printf("%s does not exist\n", local_name);
4161 return 1;
4164 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4165 remote_name = talloc_asprintf_append(remote_name,
4166 "%s", buf);
4167 } else {
4168 remote_name = talloc_asprintf_append(remote_name,
4169 "%s", local_name);
4171 if (!remote_name) {
4172 return 1;
4175 remote_name = clean_name(ctx, remote_name);
4176 if (!remote_name) {
4177 return 1;
4180 return do_put(remote_name, local_name, true);
4183 /****************************************************************************
4184 List a share name.
4185 ****************************************************************************/
4187 static void browse_fn(const char *name, uint32 m,
4188 const char *comment, void *state)
4190 const char *typestr = "";
4192 switch (m & 7) {
4193 case STYPE_DISKTREE:
4194 typestr = "Disk";
4195 break;
4196 case STYPE_PRINTQ:
4197 typestr = "Printer";
4198 break;
4199 case STYPE_DEVICE:
4200 typestr = "Device";
4201 break;
4202 case STYPE_IPC:
4203 typestr = "IPC";
4204 break;
4206 /* FIXME: If the remote machine returns non-ascii characters
4207 in any of these fields, they can corrupt the output. We
4208 should remove them. */
4209 if (!grepable) {
4210 d_printf("\t%-15s %-10.10s%s\n",
4211 name,typestr,comment);
4212 } else {
4213 d_printf ("%s|%s|%s\n",typestr,name,comment);
4217 static bool browse_host_rpc(bool sort)
4219 NTSTATUS status;
4220 struct rpc_pipe_client *pipe_hnd = NULL;
4221 TALLOC_CTX *frame = talloc_stackframe();
4222 WERROR werr;
4223 struct srvsvc_NetShareInfoCtr info_ctr;
4224 struct srvsvc_NetShareCtr1 ctr1;
4225 uint32_t resume_handle = 0;
4226 uint32_t total_entries = 0;
4227 int i;
4228 struct dcerpc_binding_handle *b;
4230 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
4231 &pipe_hnd);
4233 if (!NT_STATUS_IS_OK(status)) {
4234 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4235 nt_errstr(status)));
4236 TALLOC_FREE(frame);
4237 return false;
4240 b = pipe_hnd->binding_handle;
4242 ZERO_STRUCT(info_ctr);
4243 ZERO_STRUCT(ctr1);
4245 info_ctr.level = 1;
4246 info_ctr.ctr.ctr1 = &ctr1;
4248 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4249 pipe_hnd->desthost,
4250 &info_ctr,
4251 0xffffffff,
4252 &total_entries,
4253 &resume_handle,
4254 &werr);
4256 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4257 TALLOC_FREE(pipe_hnd);
4258 TALLOC_FREE(frame);
4259 return false;
4262 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4263 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4264 browse_fn(info.name, info.type, info.comment, NULL);
4267 TALLOC_FREE(pipe_hnd);
4268 TALLOC_FREE(frame);
4269 return true;
4272 /****************************************************************************
4273 Try and browse available connections on a host.
4274 ****************************************************************************/
4276 static bool browse_host(bool sort)
4278 int ret;
4279 if (!grepable) {
4280 d_printf("\n\tSharename Type Comment\n");
4281 d_printf("\t--------- ---- -------\n");
4284 if (browse_host_rpc(sort)) {
4285 return true;
4288 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1) {
4289 NTSTATUS status = cli_nt_error(cli);
4290 d_printf("Error returning browse list: %s\n",
4291 nt_errstr(status));
4294 return (ret != -1);
4297 /****************************************************************************
4298 List a server name.
4299 ****************************************************************************/
4301 static void server_fn(const char *name, uint32 m,
4302 const char *comment, void *state)
4305 if (!grepable){
4306 d_printf("\t%-16s %s\n", name, comment);
4307 } else {
4308 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4312 /****************************************************************************
4313 Try and browse available connections on a host.
4314 ****************************************************************************/
4316 static bool list_servers(const char *wk_grp)
4318 fstring state;
4320 if (!cli->server_domain)
4321 return false;
4323 if (!grepable) {
4324 d_printf("\n\tServer Comment\n");
4325 d_printf("\t--------- -------\n");
4327 fstrcpy( state, "Server" );
4328 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4329 state);
4331 if (!grepable) {
4332 d_printf("\n\tWorkgroup Master\n");
4333 d_printf("\t--------- -------\n");
4336 fstrcpy( state, "Workgroup" );
4337 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4338 server_fn, state);
4339 return true;
4342 /****************************************************************************
4343 Print or set current VUID
4344 ****************************************************************************/
4346 static int cmd_vuid(void)
4348 TALLOC_CTX *ctx = talloc_tos();
4349 char *buf;
4351 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4352 d_printf("Current VUID is %d\n",
4353 cli_state_get_uid(cli));
4354 return 0;
4357 cli_state_set_uid(cli, atoi(buf));
4358 return 0;
4361 /****************************************************************************
4362 Setup a new VUID, by issuing a session setup
4363 ****************************************************************************/
4365 static int cmd_logon(void)
4367 TALLOC_CTX *ctx = talloc_tos();
4368 char *l_username, *l_password;
4369 NTSTATUS nt_status;
4371 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4372 d_printf("logon <username> [<password>]\n");
4373 return 0;
4376 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4377 char pwd[256] = {0};
4378 int rc;
4380 rc = samba_getpass("Password: ", pwd, sizeof(pwd), false, false);
4381 if (rc == 0) {
4382 l_password = talloc_strdup(ctx, pwd);
4385 if (!l_password) {
4386 return 1;
4389 nt_status = cli_session_setup(cli, l_username,
4390 l_password, strlen(l_password),
4391 l_password, strlen(l_password),
4392 lp_workgroup());
4393 if (!NT_STATUS_IS_OK(nt_status)) {
4394 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4395 return -1;
4398 d_printf("Current VUID is %d\n", cli_state_get_uid(cli));
4399 return 0;
4403 * close the session
4406 static int cmd_logoff(void)
4408 NTSTATUS status;
4410 status = cli_ulogoff(cli);
4411 if (!NT_STATUS_IS_OK(status)) {
4412 d_printf("logoff failed: %s\n", nt_errstr(status));
4413 return -1;
4416 d_printf("logoff successful\n");
4417 return 0;
4422 * tree connect (connect to a share)
4425 static int cmd_tcon(void)
4427 TALLOC_CTX *ctx = talloc_tos();
4428 char *sharename;
4429 NTSTATUS status;
4431 if (!next_token_talloc(ctx, &cmd_ptr, &sharename, NULL)) {
4432 d_printf("tcon <sharename>\n");
4433 return 0;
4436 if (!sharename) {
4437 return 1;
4440 status = cli_tree_connect(cli, sharename, "?????", "", 0);
4441 if (!NT_STATUS_IS_OK(status)) {
4442 d_printf("tcon failed: %s\n", nt_errstr(status));
4443 return -1;
4446 talloc_free(sharename);
4448 d_printf("tcon to %s successful, tid: %u\n", sharename,
4449 cli_state_get_tid(cli));
4450 return 0;
4454 * tree disconnect (disconnect from a share)
4457 static int cmd_tdis(void)
4459 NTSTATUS status;
4461 status = cli_tdis(cli);
4462 if (!NT_STATUS_IS_OK(status)) {
4463 d_printf("tdis failed: %s\n", nt_errstr(status));
4464 return -1;
4467 d_printf("tdis successful\n");
4468 return 0;
4473 * get or set tid
4476 static int cmd_tid(void)
4478 TALLOC_CTX *ctx = talloc_tos();
4479 char *tid_str;
4481 if (!next_token_talloc(ctx, &cmd_ptr, &tid_str, NULL)) {
4482 if (cli_state_has_tcon(cli)) {
4483 d_printf("current tid is %d\n", cli_state_get_tid(cli));
4484 } else {
4485 d_printf("no tcon currently\n");
4487 } else {
4488 uint16_t tid = atoi(tid_str);
4489 cli_state_set_tid(cli, tid);
4492 return 0;
4496 /****************************************************************************
4497 list active connections
4498 ****************************************************************************/
4500 static int cmd_list_connect(void)
4502 cli_cm_display(cli);
4503 return 0;
4506 /****************************************************************************
4507 display the current active client connection
4508 ****************************************************************************/
4510 static int cmd_show_connect( void )
4512 TALLOC_CTX *ctx = talloc_tos();
4513 struct cli_state *targetcli;
4514 char *targetpath;
4515 NTSTATUS status;
4517 status = cli_resolve_path(ctx, "", auth_info, cli,
4518 client_get_cur_dir(), &targetcli,
4519 &targetpath);
4520 if (!NT_STATUS_IS_OK(status)) {
4521 d_printf("showconnect %s: %s\n", cur_dir, nt_errstr(status));
4522 return 1;
4525 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli->conn), targetcli->share);
4526 return 0;
4529 /****************************************************************************
4530 iosize command
4531 ***************************************************************************/
4533 int cmd_iosize(void)
4535 TALLOC_CTX *ctx = talloc_tos();
4536 char *buf;
4537 int iosize;
4539 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4540 if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
4541 if (!smb_encrypt) {
4542 d_printf("iosize <n> or iosize 0x<n>. "
4543 "Minimum is 0 (default), "
4544 "max is 16776960 (0xFFFF00)\n");
4545 } else {
4546 d_printf("iosize <n> or iosize 0x<n>. "
4547 "(Encrypted connection) ,"
4548 "Minimum is 0 (default), "
4549 "max is 130048 (0x1FC00)\n");
4551 } else {
4552 d_printf("iosize <n> or iosize 0x<n>.\n");
4554 return 1;
4557 iosize = strtol(buf,NULL,0);
4558 if (smbXcli_conn_protocol(cli->conn) < PROTOCOL_SMB2_02) {
4559 if (smb_encrypt && (iosize < 0 || iosize > 0xFC00)) {
4560 d_printf("iosize out of range for encrypted "
4561 "connection (min = 0 (default), "
4562 "max = 130048 (0x1FC00)\n");
4563 return 1;
4564 } else if (!smb_encrypt && (iosize < 0 || iosize > 0xFFFF00)) {
4565 d_printf("iosize out of range (min = 0 (default), "
4566 "max = 16776960 (0xFFFF00)\n");
4567 return 1;
4571 io_bufsize = iosize;
4572 d_printf("iosize is now %d\n", io_bufsize);
4573 return 0;
4576 /****************************************************************************
4577 timeout command
4578 ***************************************************************************/
4580 static int cmd_timeout(void)
4582 TALLOC_CTX *ctx = talloc_tos();
4583 char *buf;
4585 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4586 unsigned int old_timeout = cli_set_timeout(cli, 0);
4587 cli_set_timeout(cli, old_timeout);
4588 d_printf("timeout <n> (per-operation timeout "
4589 "in seconds - currently %u).\n",
4590 old_timeout/1000);
4591 return 1;
4594 io_timeout = strtol(buf,NULL,0);
4595 cli_set_timeout(cli, io_timeout*1000);
4596 d_printf("io_timeout per operation is now %d\n", io_timeout);
4597 return 0;
4601 /****************************************************************************
4602 history
4603 ****************************************************************************/
4604 static int cmd_history(void)
4606 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4607 HIST_ENTRY **hlist;
4608 int i;
4610 hlist = history_list();
4612 for (i = 0; hlist && hlist[i]; i++) {
4613 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4615 #else
4616 DEBUG(0,("no history without readline support\n"));
4617 #endif
4619 return 0;
4622 /* Some constants for completing filename arguments */
4624 #define COMPL_NONE 0 /* No completions */
4625 #define COMPL_REMOTE 1 /* Complete remote filename */
4626 #define COMPL_LOCAL 2 /* Complete local filename */
4628 /* This defines the commands supported by this client.
4629 * NOTE: The "!" must be the last one in the list because it's fn pointer
4630 * field is NULL, and NULL in that field is used in process_tok()
4631 * (below) to indicate the end of the list. crh
4633 static struct {
4634 const char *name;
4635 int (*fn)(void);
4636 const char *description;
4637 char compl_args[2]; /* Completion argument info */
4638 } commands[] = {
4639 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4640 {"allinfo",cmd_allinfo,"<file> show all available info",
4641 {COMPL_NONE,COMPL_NONE}},
4642 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4643 {"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}},
4644 {"backup",cmd_backup,"toggle backup intent state",{COMPL_NONE,COMPL_NONE}},
4645 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4646 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4647 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4648 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4649 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_NONE}},
4650 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_NONE}},
4651 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_NONE}},
4652 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4653 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4654 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4655 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4656 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4657 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4658 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_NONE}},
4659 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4660 {COMPL_REMOTE, COMPL_NONE}},
4661 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4662 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4663 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4664 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4665 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4666 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4667 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4668 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4669 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4670 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4671 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4672 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4673 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4674 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4675 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4676 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4677 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4678 {"notify",cmd_notify,"<file>Get notified of dir changes",{COMPL_REMOTE,COMPL_NONE}},
4679 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4680 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4681 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4682 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4683 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4684 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4685 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4686 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4687 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4688 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4689 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4690 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4691 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4692 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4693 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4694 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4695 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4696 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4697 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4698 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4699 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4700 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_REMOTE,COMPL_NONE}},
4701 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4702 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4703 {COMPL_REMOTE, COMPL_LOCAL}},
4704 {"setmode",cmd_setmode,"<file name> <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4705 {"stat",cmd_stat,"<file name> Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_NONE}},
4706 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4707 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4708 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4709 {"timeout",cmd_timeout,"timeout <number> - set the per-operation timeout in seconds (default 20)",{COMPL_NONE,COMPL_NONE}},
4710 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4711 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4712 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4713 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4714 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4715 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4716 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4717 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4718 {"tcon",cmd_tcon,"connect to a share" ,{COMPL_NONE,COMPL_NONE}},
4719 {"tdis",cmd_tdis,"disconnect from a share",{COMPL_NONE,COMPL_NONE}},
4720 {"tid",cmd_tid,"show or set the current tid (tree-id)",{COMPL_NONE,COMPL_NONE}},
4721 {"logoff",cmd_logoff,"log off (close the session)",{COMPL_NONE,COMPL_NONE}},
4722 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4724 /* Yes, this must be here, see crh's comment above. */
4725 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4726 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4729 /*******************************************************************
4730 Lookup a command string in the list of commands, including
4731 abbreviations.
4732 ******************************************************************/
4734 static int process_tok(char *tok)
4736 int i = 0, matches = 0;
4737 int cmd=0;
4738 int tok_len = strlen(tok);
4740 while (commands[i].fn != NULL) {
4741 if (strequal(commands[i].name,tok)) {
4742 matches = 1;
4743 cmd = i;
4744 break;
4745 } else if (strnequal(commands[i].name, tok, tok_len)) {
4746 matches++;
4747 cmd = i;
4749 i++;
4752 if (matches == 0)
4753 return(-1);
4754 else if (matches == 1)
4755 return(cmd);
4756 else
4757 return(-2);
4760 /****************************************************************************
4761 Help.
4762 ****************************************************************************/
4764 static int cmd_help(void)
4766 TALLOC_CTX *ctx = talloc_tos();
4767 int i=0,j;
4768 char *buf;
4770 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4771 if ((i = process_tok(buf)) >= 0)
4772 d_printf("HELP %s:\n\t%s\n\n",
4773 commands[i].name,commands[i].description);
4774 } else {
4775 while (commands[i].description) {
4776 for (j=0; commands[i].description && (j<5); j++) {
4777 d_printf("%-15s",commands[i].name);
4778 i++;
4780 d_printf("\n");
4783 return 0;
4786 /****************************************************************************
4787 Process a -c command string.
4788 ****************************************************************************/
4790 static int process_command_string(const char *cmd_in)
4792 TALLOC_CTX *ctx = talloc_tos();
4793 char *cmd = talloc_strdup(ctx, cmd_in);
4794 int rc = 0;
4796 if (!cmd) {
4797 return 1;
4799 /* establish the connection if not already */
4801 if (!cli) {
4802 NTSTATUS status;
4804 status = cli_cm_open(talloc_tos(), NULL,
4805 have_ip ? dest_ss_str : desthost,
4806 service, auth_info,
4807 true, smb_encrypt,
4808 max_protocol, port, name_type,
4809 &cli);
4810 if (!NT_STATUS_IS_OK(status)) {
4811 return 1;
4813 cli_set_timeout(cli, io_timeout*1000);
4816 while (cmd[0] != '\0') {
4817 char *line;
4818 char *p;
4819 char *tok;
4820 int i;
4822 if ((p = strchr_m(cmd, ';')) == 0) {
4823 line = cmd;
4824 cmd += strlen(cmd);
4825 } else {
4826 *p = '\0';
4827 line = cmd;
4828 cmd = p + 1;
4831 /* and get the first part of the command */
4832 cmd_ptr = line;
4833 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4834 continue;
4837 if ((i = process_tok(tok)) >= 0) {
4838 rc = commands[i].fn();
4839 } else if (i == -2) {
4840 d_printf("%s: command abbreviation ambiguous\n",tok);
4841 } else {
4842 d_printf("%s: command not found\n",tok);
4846 return rc;
4849 #define MAX_COMPLETIONS 100
4851 struct completion_remote {
4852 char *dirmask;
4853 char **matches;
4854 int count, samelen;
4855 const char *text;
4856 int len;
4859 static NTSTATUS completion_remote_filter(const char *mnt,
4860 struct file_info *f,
4861 const char *mask,
4862 void *state)
4864 struct completion_remote *info = (struct completion_remote *)state;
4866 if (info->count >= MAX_COMPLETIONS - 1) {
4867 return NT_STATUS_OK;
4869 if (strncmp(info->text, f->name, info->len) != 0) {
4870 return NT_STATUS_OK;
4872 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4873 return NT_STATUS_OK;
4876 if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
4877 info->matches[info->count] = SMB_STRDUP(f->name);
4878 else {
4879 TALLOC_CTX *ctx = talloc_stackframe();
4880 char *tmp;
4882 tmp = talloc_strdup(ctx,info->dirmask);
4883 if (!tmp) {
4884 TALLOC_FREE(ctx);
4885 return NT_STATUS_NO_MEMORY;
4887 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4888 if (!tmp) {
4889 TALLOC_FREE(ctx);
4890 return NT_STATUS_NO_MEMORY;
4892 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4893 tmp = talloc_asprintf_append(tmp, "%s",
4894 CLI_DIRSEP_STR);
4896 if (!tmp) {
4897 TALLOC_FREE(ctx);
4898 return NT_STATUS_NO_MEMORY;
4900 info->matches[info->count] = SMB_STRDUP(tmp);
4901 TALLOC_FREE(ctx);
4903 if (info->matches[info->count] == NULL) {
4904 return NT_STATUS_OK;
4906 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4907 smb_readline_ca_char(0);
4909 if (info->count == 1) {
4910 info->samelen = strlen(info->matches[info->count]);
4911 } else {
4912 while (strncmp(info->matches[info->count],
4913 info->matches[info->count-1],
4914 info->samelen) != 0) {
4915 info->samelen--;
4918 info->count++;
4919 return NT_STATUS_OK;
4922 static char **remote_completion(const char *text, int len)
4924 TALLOC_CTX *ctx = talloc_stackframe();
4925 char *dirmask = NULL;
4926 char *targetpath = NULL;
4927 struct cli_state *targetcli = NULL;
4928 int i;
4929 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4930 NTSTATUS status;
4932 /* can't have non-static initialisation on Sun CC, so do it
4933 at run time here */
4934 info.samelen = len;
4935 info.text = text;
4936 info.len = len;
4938 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4939 if (!info.matches) {
4940 TALLOC_FREE(ctx);
4941 return NULL;
4945 * We're leaving matches[0] free to fill it later with the text to
4946 * display: Either the one single match or the longest common subset
4947 * of the matches.
4949 info.matches[0] = NULL;
4950 info.count = 1;
4952 for (i = len-1; i >= 0; i--) {
4953 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4954 break;
4958 info.text = text+i+1;
4959 info.samelen = info.len = len-i-1;
4961 if (i > 0) {
4962 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4963 if (!info.dirmask) {
4964 goto cleanup;
4966 strncpy(info.dirmask, text, i+1);
4967 info.dirmask[i+1] = 0;
4968 dirmask = talloc_asprintf(ctx,
4969 "%s%*s*",
4970 client_get_cur_dir(),
4971 i-1,
4972 text);
4973 } else {
4974 info.dirmask = SMB_STRDUP("");
4975 if (!info.dirmask) {
4976 goto cleanup;
4978 dirmask = talloc_asprintf(ctx,
4979 "%s*",
4980 client_get_cur_dir());
4982 if (!dirmask) {
4983 goto cleanup;
4986 status = cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli,
4987 &targetpath);
4988 if (!NT_STATUS_IS_OK(status)) {
4989 goto cleanup;
4991 status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
4992 completion_remote_filter, (void *)&info);
4993 if (!NT_STATUS_IS_OK(status)) {
4994 goto cleanup;
4997 if (info.count == 1) {
4999 * No matches at all, NULL indicates there is nothing
5001 SAFE_FREE(info.matches[0]);
5002 SAFE_FREE(info.matches);
5003 TALLOC_FREE(ctx);
5004 return NULL;
5007 if (info.count == 2) {
5009 * Exactly one match in matches[1], indicate this is the one
5010 * in matches[0].
5012 info.matches[0] = info.matches[1];
5013 info.matches[1] = NULL;
5014 info.count -= 1;
5015 TALLOC_FREE(ctx);
5016 return info.matches;
5020 * We got more than one possible match, set the result to the maximum
5021 * common subset
5024 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
5025 info.matches[info.count] = NULL;
5026 TALLOC_FREE(ctx);
5027 return info.matches;
5029 cleanup:
5030 for (i = 0; i < info.count; i++) {
5031 SAFE_FREE(info.matches[i]);
5033 SAFE_FREE(info.matches);
5034 SAFE_FREE(info.dirmask);
5035 TALLOC_FREE(ctx);
5036 return NULL;
5039 static char **completion_fn(const char *text, int start, int end)
5041 smb_readline_ca_char(' ');
5043 if (start) {
5044 const char *buf, *sp;
5045 int i;
5046 char compl_type;
5048 buf = smb_readline_get_line_buffer();
5049 if (buf == NULL)
5050 return NULL;
5052 sp = strchr(buf, ' ');
5053 if (sp == NULL)
5054 return NULL;
5056 for (i = 0; commands[i].name; i++) {
5057 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
5058 (commands[i].name[sp - buf] == 0)) {
5059 break;
5062 if (commands[i].name == NULL)
5063 return NULL;
5065 while (*sp == ' ')
5066 sp++;
5068 if (sp == (buf + start))
5069 compl_type = commands[i].compl_args[0];
5070 else
5071 compl_type = commands[i].compl_args[1];
5073 if (compl_type == COMPL_REMOTE)
5074 return remote_completion(text, end - start);
5075 else /* fall back to local filename completion */
5076 return NULL;
5077 } else {
5078 char **matches;
5079 int i, len, samelen = 0, count=1;
5081 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
5082 if (!matches) {
5083 return NULL;
5085 matches[0] = NULL;
5087 len = strlen(text);
5088 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
5089 if (strncmp(text, commands[i].name, len) == 0) {
5090 matches[count] = SMB_STRDUP(commands[i].name);
5091 if (!matches[count])
5092 goto cleanup;
5093 if (count == 1)
5094 samelen = strlen(matches[count]);
5095 else
5096 while (strncmp(matches[count], matches[count-1], samelen) != 0)
5097 samelen--;
5098 count++;
5102 switch (count) {
5103 case 0: /* should never happen */
5104 case 1:
5105 goto cleanup;
5106 case 2:
5107 matches[0] = SMB_STRDUP(matches[1]);
5108 break;
5109 default:
5110 matches[0] = (char *)SMB_MALLOC(samelen+1);
5111 if (!matches[0])
5112 goto cleanup;
5113 strncpy(matches[0], matches[1], samelen);
5114 matches[0][samelen] = 0;
5116 matches[count] = NULL;
5117 return matches;
5119 cleanup:
5120 for (i = 0; i < count; i++)
5121 free(matches[i]);
5123 free(matches);
5124 return NULL;
5128 static bool finished;
5130 /****************************************************************************
5131 Make sure we swallow keepalives during idle time.
5132 ****************************************************************************/
5134 static void readline_callback(void)
5136 static time_t last_t;
5137 struct timespec now;
5138 time_t t;
5139 NTSTATUS status;
5140 unsigned char garbage[16];
5142 clock_gettime_mono(&now);
5143 t = now.tv_sec;
5145 if (t - last_t < 5)
5146 return;
5148 last_t = t;
5150 /* Ping the server to keep the connection alive using SMBecho. */
5151 memset(garbage, 0xf0, sizeof(garbage));
5152 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
5153 if (NT_STATUS_IS_OK(status)) {
5154 return;
5157 if (!cli_state_is_connected(cli)) {
5158 DEBUG(0,("SMBecho failed (%s). The connection is "
5159 "disconnected now\n", nt_errstr(status)));
5160 finished = true;
5161 smb_readline_done();
5165 /****************************************************************************
5166 Process commands on stdin.
5167 ****************************************************************************/
5169 static int process_stdin(void)
5171 int rc = 0;
5173 while (!finished) {
5174 TALLOC_CTX *frame = talloc_stackframe();
5175 char *tok = NULL;
5176 char *the_prompt = NULL;
5177 char *line = NULL;
5178 int i;
5180 /* display a prompt */
5181 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
5182 TALLOC_FREE(frame);
5183 break;
5185 line = smb_readline(the_prompt, readline_callback, completion_fn);
5186 SAFE_FREE(the_prompt);
5187 if (!line) {
5188 TALLOC_FREE(frame);
5189 break;
5192 /* special case - first char is ! */
5193 if (*line == '!') {
5194 if (system(line + 1) == -1) {
5195 d_printf("system() command %s failed.\n",
5196 line+1);
5198 SAFE_FREE(line);
5199 TALLOC_FREE(frame);
5200 continue;
5203 /* and get the first part of the command */
5204 cmd_ptr = line;
5205 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
5206 TALLOC_FREE(frame);
5207 SAFE_FREE(line);
5208 continue;
5211 if ((i = process_tok(tok)) >= 0) {
5212 rc = commands[i].fn();
5213 } else if (i == -2) {
5214 d_printf("%s: command abbreviation ambiguous\n",tok);
5215 } else {
5216 d_printf("%s: command not found\n",tok);
5218 SAFE_FREE(line);
5219 TALLOC_FREE(frame);
5221 return rc;
5224 /****************************************************************************
5225 Process commands from the client.
5226 ****************************************************************************/
5228 static int process(const char *base_directory)
5230 int rc = 0;
5231 NTSTATUS status;
5233 status = cli_cm_open(talloc_tos(), NULL,
5234 have_ip ? dest_ss_str : desthost,
5235 service, auth_info, true, smb_encrypt,
5236 max_protocol, port, name_type, &cli);
5237 if (!NT_STATUS_IS_OK(status)) {
5238 return 1;
5241 cli_set_timeout(cli, io_timeout*1000);
5243 if (base_directory && *base_directory) {
5244 rc = do_cd(base_directory);
5245 if (rc) {
5246 cli_shutdown(cli);
5247 return rc;
5251 if (cmdstr) {
5252 rc = process_command_string(cmdstr);
5253 } else {
5254 process_stdin();
5257 cli_shutdown(cli);
5258 return rc;
5261 /****************************************************************************
5262 Handle a -L query.
5263 ****************************************************************************/
5265 static int do_host_query(const char *query_host)
5267 NTSTATUS status;
5269 status = cli_cm_open(talloc_tos(), NULL,
5270 have_ip ? dest_ss_str : query_host,
5271 "IPC$", auth_info, true, smb_encrypt,
5272 max_protocol, port, name_type, &cli);
5273 if (!NT_STATUS_IS_OK(status)) {
5274 return 1;
5277 cli_set_timeout(cli, io_timeout*1000);
5278 browse_host(true);
5280 /* Ensure that the host can do IPv4 */
5282 if (!interpret_addr(query_host)) {
5283 struct sockaddr_storage ss;
5284 if (interpret_string_addr(&ss, query_host, 0) &&
5285 (ss.ss_family != AF_INET)) {
5286 d_printf("%s is an IPv6 address -- no workgroup available\n",
5287 query_host);
5288 return 1;
5292 if (port != NBT_SMB_PORT) {
5294 /* Workgroups simply don't make sense over anything
5295 else but port 139... */
5297 cli_shutdown(cli);
5298 status = cli_cm_open(talloc_tos(), NULL,
5299 have_ip ? dest_ss_str : query_host,
5300 "IPC$", auth_info, true, smb_encrypt,
5301 max_protocol, NBT_SMB_PORT, name_type,
5302 &cli);
5303 if (!NT_STATUS_IS_OK(status)) {
5304 cli = NULL;
5308 if (cli == NULL) {
5309 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5310 return 1;
5313 cli_set_timeout(cli, io_timeout*1000);
5314 list_servers(lp_workgroup());
5316 cli_shutdown(cli);
5318 return(0);
5321 /****************************************************************************
5322 Handle a tar operation.
5323 ****************************************************************************/
5325 static int do_tar_op(const char *base_directory)
5327 int ret;
5329 /* do we already have a connection? */
5330 if (!cli) {
5331 NTSTATUS status;
5333 status = cli_cm_open(talloc_tos(), NULL,
5334 have_ip ? dest_ss_str : desthost,
5335 service, auth_info, true, smb_encrypt,
5336 max_protocol, port, name_type, &cli);
5337 if (!NT_STATUS_IS_OK(status)) {
5338 return 1;
5340 cli_set_timeout(cli, io_timeout*1000);
5343 recurse=true;
5345 if (base_directory && *base_directory) {
5346 ret = do_cd(base_directory);
5347 if (ret) {
5348 cli_shutdown(cli);
5349 return ret;
5353 ret=process_tar();
5355 cli_shutdown(cli);
5357 return(ret);
5360 /****************************************************************************
5361 Handle a message operation.
5362 ****************************************************************************/
5364 static int do_message_op(struct user_auth_info *a_info)
5366 NTSTATUS status;
5368 status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL,
5369 port ? port : NBT_SMB_PORT, name_type,
5370 lp_netbios_name(), SMB_SIGNING_DEFAULT, 0, &cli);
5371 if (!NT_STATUS_IS_OK(status)) {
5372 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5373 return 1;
5376 cli_set_timeout(cli, io_timeout*1000);
5377 send_message(get_cmdline_auth_info_username(a_info));
5378 cli_shutdown(cli);
5380 return 0;
5383 /****************************************************************************
5384 main program
5385 ****************************************************************************/
5387 int main(int argc,char *argv[])
5389 const char **const_argv = discard_const_p(const char *, argv);
5390 char *base_directory = NULL;
5391 int opt;
5392 char *query_host = NULL;
5393 bool message = false;
5394 static const char *new_name_resolve_order = NULL;
5395 poptContext pc;
5396 char *p;
5397 int rc = 0;
5398 bool tar_opt = false;
5399 bool service_opt = false;
5400 struct poptOption long_options[] = {
5401 POPT_AUTOHELP
5403 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5404 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5405 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5406 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5407 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5408 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5409 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5410 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5411 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5412 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5413 { "timeout", 't', POPT_ARG_INT, &io_timeout, 'b', "Changes the per-operation timeout", "SECONDS" },
5414 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5415 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5416 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5417 POPT_COMMON_SAMBA
5418 POPT_COMMON_CONNECTION
5419 POPT_COMMON_CREDENTIALS
5420 POPT_TABLEEND
5422 TALLOC_CTX *frame = talloc_stackframe();
5424 if (!client_set_cur_dir("\\")) {
5425 exit(ENOMEM);
5428 /* set default debug level to 1 regardless of what smb.conf sets */
5429 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5430 load_case_tables();
5432 lp_set_cmdline("log level", "1");
5434 auth_info = user_auth_info_init(frame);
5435 if (auth_info == NULL) {
5436 exit(1);
5438 popt_common_set_auth_info(auth_info);
5440 /* skip argv(0) */
5441 pc = poptGetContext("smbclient", argc, const_argv, long_options, 0);
5442 poptSetOtherOptionHelp(pc, "service <password>");
5444 while ((opt = poptGetNextOpt(pc)) != -1) {
5446 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5447 /* I see no other way to keep things sane --SSS */
5448 if (tar_opt == true) {
5449 while (poptPeekArg(pc)) {
5450 poptGetArg(pc);
5452 tar_opt = false;
5455 /* if the service has not yet been specified lets see if it is available in the popt stack */
5456 if (!service_opt && poptPeekArg(pc)) {
5457 service = talloc_strdup(frame, poptGetArg(pc));
5458 if (!service) {
5459 exit(ENOMEM);
5461 service_opt = true;
5464 /* if the service has already been retrieved then check if we have also a password */
5465 if (service_opt
5466 && (!get_cmdline_auth_info_got_pass(auth_info))
5467 && poptPeekArg(pc)) {
5468 set_cmdline_auth_info_password(auth_info,
5469 poptGetArg(pc));
5473 switch (opt) {
5474 case 'M':
5475 /* Messages are sent to NetBIOS name type 0x3
5476 * (Messenger Service). Make sure we default
5477 * to port 139 instead of port 445. srl,crh
5479 name_type = 0x03;
5480 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5481 if (!desthost) {
5482 exit(ENOMEM);
5484 if( !port )
5485 port = NBT_SMB_PORT;
5486 message = true;
5487 break;
5488 case 'I':
5490 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5491 exit(1);
5493 have_ip = true;
5494 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5496 break;
5497 case 'E':
5498 setup_logging("smbclient", DEBUG_STDERR );
5499 display_set_stderr();
5500 break;
5502 case 'L':
5503 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5504 if (!query_host) {
5505 exit(ENOMEM);
5507 break;
5508 case 'm':
5509 lp_set_cmdline("client max protocol", poptGetOptArg(pc));
5510 break;
5511 case 'T':
5512 /* We must use old option processing for this. Find the
5513 * position of the -T option in the raw argv[]. */
5515 int i;
5516 for (i = 1; i < argc; i++) {
5517 if (strncmp("-T", argv[i],2)==0)
5518 break;
5520 i++;
5521 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5522 poptPrintUsage(pc, stderr, 0);
5523 exit(1);
5526 /* this must be the last option, mark we have parsed it so that we know we have */
5527 tar_opt = true;
5528 break;
5529 case 'D':
5530 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5531 if (!base_directory) {
5532 exit(ENOMEM);
5534 break;
5535 case 'g':
5536 grepable=true;
5537 break;
5538 case 'e':
5539 smb_encrypt=true;
5540 break;
5541 case 'B':
5542 return(do_smb_browse());
5547 /* We may still have some leftovers after the last popt option has been called */
5548 if (tar_opt == true) {
5549 while (poptPeekArg(pc)) {
5550 poptGetArg(pc);
5552 tar_opt = false;
5555 /* if the service has not yet been specified lets see if it is available in the popt stack */
5556 if (!service_opt && poptPeekArg(pc)) {
5557 service = talloc_strdup(frame,poptGetArg(pc));
5558 if (!service) {
5559 exit(ENOMEM);
5561 service_opt = true;
5564 /* if the service has already been retrieved then check if we have also a password */
5565 if (service_opt
5566 && !get_cmdline_auth_info_got_pass(auth_info)
5567 && poptPeekArg(pc)) {
5568 set_cmdline_auth_info_password(auth_info,
5569 poptGetArg(pc));
5572 if ( override_logfile )
5573 setup_logging( lp_logfile(talloc_tos()), DEBUG_FILE );
5575 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5576 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5577 argv[0], get_dyn_CONFIGFILE());
5580 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5581 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5582 exit(-1);
5585 load_interfaces();
5587 if (service_opt && service) {
5588 size_t len;
5590 /* Convert any '/' characters in the service name to '\' characters */
5591 string_replace(service, '/','\\');
5592 if (count_chars(service,'\\') < 3) {
5593 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5594 poptPrintUsage(pc, stderr, 0);
5595 exit(1);
5597 /* Remove trailing slashes */
5598 len = strlen(service);
5599 while(len > 0 && service[len - 1] == '\\') {
5600 --len;
5601 service[len] = '\0';
5605 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5606 if (!init_names()) {
5607 fprintf(stderr, "init_names() failed\n");
5608 exit(1);
5611 if(new_name_resolve_order)
5612 lp_set_cmdline("name resolve order", new_name_resolve_order);
5614 if (!tar_type && !query_host && !service && !message) {
5615 poptPrintUsage(pc, stderr, 0);
5616 exit(1);
5619 poptFreeContext(pc);
5620 popt_burn_cmdline_password(argc, argv);
5622 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5624 /* Ensure we have a password (or equivalent). */
5625 set_cmdline_auth_info_getpass(auth_info);
5627 max_protocol = lp_cli_maxprotocol();
5629 if (tar_type) {
5630 if (cmdstr)
5631 process_command_string(cmdstr);
5632 rc = do_tar_op(base_directory);
5633 } else if (query_host && *query_host) {
5634 char *qhost = query_host;
5635 char *slash;
5637 while (*qhost == '\\' || *qhost == '/')
5638 qhost++;
5640 if ((slash = strchr_m(qhost, '/'))
5641 || (slash = strchr_m(qhost, '\\'))) {
5642 *slash = 0;
5645 if ((p=strchr_m(qhost, '#'))) {
5646 *p = 0;
5647 p++;
5648 sscanf(p, "%x", &name_type);
5651 rc = do_host_query(qhost);
5652 } else if (message) {
5653 rc = do_message_op(auth_info);
5654 } else if (process(base_directory)) {
5655 rc = 1;
5658 TALLOC_FREE(frame);
5659 return rc;