librpc: Shorten dcerpc_binding_handle_call a bit
[Samba/gebeck_regimport.git] / source3 / client / client.c
blobe21d867c55c7bb361897c7c049642cc696294812
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 = 524288;
60 static int name_type = 0x20;
61 static int max_protocol = PROTOCOL_NT1;
63 static int process_tok(char *tok);
64 static int cmd_help(void);
66 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
68 /* value for unused fid field in trans2 secondary request */
69 #define FID_UNUSED (0xFFFF)
71 time_t newer_than = 0;
72 static int archive_level = 0;
74 static bool translation = false;
75 static bool have_ip;
77 /* clitar bits insert */
78 extern int blocksize;
79 extern bool tar_inc;
80 extern bool tar_reset;
81 /* clitar bits end */
83 static bool prompt = true;
85 static bool recurse = false;
86 static bool showacls = false;
87 bool lowercase = false;
88 static bool backup_intent = false;
90 static struct sockaddr_storage dest_ss;
91 static char dest_ss_str[INET6_ADDRSTRLEN];
93 #define SEPARATORS " \t\n\r"
95 static bool abort_mget = true;
97 /* timing globals */
98 uint64_t get_total_size = 0;
99 unsigned int get_total_time_ms = 0;
100 static uint64_t put_total_size = 0;
101 static unsigned int put_total_time_ms = 0;
103 /* totals globals */
104 static double dir_total;
106 /* encrypted state. */
107 static bool smb_encrypt;
109 /* root cli_state connection */
111 struct cli_state *cli;
113 static char CLI_DIRSEP_CHAR = '\\';
114 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
116 /* Authentication for client connections. */
117 struct user_auth_info *auth_info;
119 /* Accessor functions for directory paths. */
120 static char *fileselection;
121 static const char *client_get_fileselection(void)
123 if (fileselection) {
124 return fileselection;
126 return "";
129 static const char *client_set_fileselection(const char *new_fs)
131 SAFE_FREE(fileselection);
132 if (new_fs) {
133 fileselection = SMB_STRDUP(new_fs);
135 return client_get_fileselection();
138 static char *cwd;
139 static const char *client_get_cwd(void)
141 if (cwd) {
142 return cwd;
144 return CLI_DIRSEP_STR;
147 static const char *client_set_cwd(const char *new_cwd)
149 SAFE_FREE(cwd);
150 if (new_cwd) {
151 cwd = SMB_STRDUP(new_cwd);
153 return client_get_cwd();
156 static char *cur_dir;
157 const char *client_get_cur_dir(void)
159 if (cur_dir) {
160 return cur_dir;
162 return CLI_DIRSEP_STR;
165 const char *client_set_cur_dir(const char *newdir)
167 SAFE_FREE(cur_dir);
168 if (newdir) {
169 cur_dir = SMB_STRDUP(newdir);
171 return client_get_cur_dir();
174 /****************************************************************************
175 Put up a yes/no prompt.
176 ****************************************************************************/
178 static bool yesno(const char *p)
180 char ans[20];
181 printf("%s",p);
183 if (!fgets(ans,sizeof(ans)-1,stdin))
184 return(False);
186 if (*ans == 'y' || *ans == 'Y')
187 return(True);
189 return(False);
192 /****************************************************************************
193 Write to a local file with CR/LF->LF translation if appropriate. Return the
194 number taken from the buffer. This may not equal the number written.
195 ****************************************************************************/
197 static int writefile(int f, char *b, int n)
199 int i;
201 if (!translation) {
202 return write(f,b,n);
205 i = 0;
206 while (i < n) {
207 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
208 b++;i++;
210 if (write(f, b, 1) != 1) {
211 break;
213 b++;
214 i++;
217 return(i);
220 /****************************************************************************
221 Read from a file with LF->CR/LF translation if appropriate. Return the
222 number read. read approx n bytes.
223 ****************************************************************************/
225 static int readfile(uint8_t *b, int n, XFILE *f)
227 int i;
228 int c;
230 if (!translation)
231 return x_fread(b,1,n,f);
233 i = 0;
234 while (i < (n - 1) && (i < BUFFER_SIZE)) {
235 if ((c = x_getc(f)) == EOF) {
236 break;
239 if (c == '\n') { /* change all LFs to CR/LF */
240 b[i++] = '\r';
243 b[i++] = c;
246 return(i);
249 struct push_state {
250 XFILE *f;
251 off_t nread;
254 static size_t push_source(uint8_t *buf, size_t n, void *priv)
256 struct push_state *state = (struct push_state *)priv;
257 int result;
259 if (x_feof(state->f)) {
260 return 0;
263 result = readfile(buf, n, state->f);
264 state->nread += result;
265 return result;
268 /****************************************************************************
269 Send a message.
270 ****************************************************************************/
272 static void send_message(const char *username)
274 char buf[1600];
275 NTSTATUS status;
276 int i;
278 d_printf("Type your message, ending it with a Control-D\n");
280 i = 0;
281 while (i<sizeof(buf)-2) {
282 int c = fgetc(stdin);
283 if (c == EOF) {
284 break;
286 if (c == '\n') {
287 buf[i++] = '\r';
289 buf[i++] = c;
291 buf[i] = '\0';
293 status = cli_message(cli, desthost, username, buf);
294 if (!NT_STATUS_IS_OK(status)) {
295 d_fprintf(stderr, "cli_message returned %s\n",
296 nt_errstr(status));
300 /****************************************************************************
301 Check the space on a device.
302 ****************************************************************************/
304 static int do_dskattr(void)
306 int total, bsize, avail;
307 struct cli_state *targetcli = NULL;
308 char *targetpath = NULL;
309 TALLOC_CTX *ctx = talloc_tos();
310 NTSTATUS status;
312 status = cli_resolve_path(ctx, "", auth_info, cli,
313 client_get_cur_dir(), &targetcli,
314 &targetpath);
315 if (!NT_STATUS_IS_OK(status)) {
316 d_printf("Error in dskattr: %s\n", nt_errstr(status));
317 return 1;
320 status = cli_dskattr(targetcli, &bsize, &total, &avail);
321 if (!NT_STATUS_IS_OK(status)) {
322 d_printf("Error in dskattr: %s\n", nt_errstr(status));
323 return 1;
326 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
327 total, bsize, avail);
329 return 0;
332 /****************************************************************************
333 Show cd/pwd.
334 ****************************************************************************/
336 static int cmd_pwd(void)
338 d_printf("Current directory is %s",service);
339 d_printf("%s\n",client_get_cur_dir());
340 return 0;
343 /****************************************************************************
344 Ensure name has correct directory separators.
345 ****************************************************************************/
347 static void normalize_name(char *newdir)
349 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
350 string_replace(newdir,'/','\\');
354 /****************************************************************************
355 Change directory - inner section.
356 ****************************************************************************/
358 static int do_cd(const char *new_dir)
360 char *newdir = NULL;
361 char *saved_dir = NULL;
362 char *new_cd = NULL;
363 char *targetpath = NULL;
364 struct cli_state *targetcli = NULL;
365 SMB_STRUCT_STAT sbuf;
366 uint32 attributes;
367 int ret = 1;
368 TALLOC_CTX *ctx = talloc_stackframe();
369 NTSTATUS status;
371 newdir = talloc_strdup(ctx, new_dir);
372 if (!newdir) {
373 TALLOC_FREE(ctx);
374 return 1;
377 normalize_name(newdir);
379 /* Save the current directory in case the new directory is invalid */
381 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
382 if (!saved_dir) {
383 TALLOC_FREE(ctx);
384 return 1;
387 if (*newdir == CLI_DIRSEP_CHAR) {
388 client_set_cur_dir(newdir);
389 new_cd = newdir;
390 } else {
391 new_cd = talloc_asprintf(ctx, "%s%s",
392 client_get_cur_dir(),
393 newdir);
394 if (!new_cd) {
395 goto out;
399 /* Ensure cur_dir ends in a DIRSEP */
400 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
401 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
402 if (!new_cd) {
403 goto out;
406 client_set_cur_dir(new_cd);
408 new_cd = clean_name(ctx, new_cd);
409 client_set_cur_dir(new_cd);
411 status = cli_resolve_path(ctx, "", auth_info, cli, new_cd,
412 &targetcli, &targetpath);
413 if (!NT_STATUS_IS_OK(status)) {
414 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
415 client_set_cur_dir(saved_dir);
416 goto out;
419 if (strequal(targetpath,CLI_DIRSEP_STR )) {
420 TALLOC_FREE(ctx);
421 return 0;
424 /* Use a trans2_qpathinfo to test directories for modern servers.
425 Except Win9x doesn't support the qpathinfo_basic() call..... */
427 if (smbXcli_conn_protocol(targetcli->conn) > PROTOCOL_LANMAN2 && !targetcli->win95) {
429 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
430 &attributes);
431 if (!NT_STATUS_IS_OK(status)) {
432 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
433 client_set_cur_dir(saved_dir);
434 goto out;
437 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
438 d_printf("cd %s: not a directory\n", new_cd);
439 client_set_cur_dir(saved_dir);
440 goto out;
442 } else {
444 targetpath = talloc_asprintf(ctx,
445 "%s%s",
446 targetpath,
447 CLI_DIRSEP_STR );
448 if (!targetpath) {
449 client_set_cur_dir(saved_dir);
450 goto out;
452 targetpath = clean_name(ctx, targetpath);
453 if (!targetpath) {
454 client_set_cur_dir(saved_dir);
455 goto out;
458 status = cli_chkpath(targetcli, targetpath);
459 if (!NT_STATUS_IS_OK(status)) {
460 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
461 client_set_cur_dir(saved_dir);
462 goto out;
466 ret = 0;
468 out:
470 TALLOC_FREE(ctx);
471 return ret;
474 /****************************************************************************
475 Change directory.
476 ****************************************************************************/
478 static int cmd_cd(void)
480 char *buf = NULL;
481 int rc = 0;
483 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
484 rc = do_cd(buf);
485 } else {
486 d_printf("Current directory is %s\n",client_get_cur_dir());
489 return rc;
492 /****************************************************************************
493 Change directory.
494 ****************************************************************************/
496 static int cmd_cd_oneup(void)
498 return do_cd("..");
501 /*******************************************************************
502 Decide if a file should be operated on.
503 ********************************************************************/
505 static bool do_this_one(struct file_info *finfo)
507 if (!finfo->name) {
508 return false;
511 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
512 return true;
515 if (*client_get_fileselection() &&
516 !mask_match(finfo->name,client_get_fileselection(),false)) {
517 DEBUG(3,("mask_match %s failed\n", finfo->name));
518 return false;
521 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
522 DEBUG(3,("newer_than %s failed\n", finfo->name));
523 return false;
526 if ((archive_level==1 || archive_level==2) && !(finfo->mode & FILE_ATTRIBUTE_ARCHIVE)) {
527 DEBUG(3,("archive %s failed\n", finfo->name));
528 return false;
531 return true;
534 /****************************************************************************
535 Display info about a file.
536 ****************************************************************************/
538 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
539 const char *dir)
541 time_t t;
542 TALLOC_CTX *ctx = talloc_tos();
543 NTSTATUS status = NT_STATUS_OK;
545 if (!do_this_one(finfo)) {
546 return NT_STATUS_OK;
549 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
550 if (!showacls) {
551 d_printf(" %-30s%7.7s %8.0f %s",
552 finfo->name,
553 attrib_string(talloc_tos(), finfo->mode),
554 (double)finfo->size,
555 time_to_asc(t));
556 dir_total += finfo->size;
557 } else {
558 char *afname = NULL;
559 uint16_t fnum;
561 /* skip if this is . or .. */
562 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
563 return NT_STATUS_OK;
564 /* create absolute filename for cli_ntcreate() FIXME */
565 afname = talloc_asprintf(ctx,
566 "%s%s%s",
567 dir,
568 CLI_DIRSEP_STR,
569 finfo->name);
570 if (!afname) {
571 return NT_STATUS_NO_MEMORY;
573 /* print file meta date header */
574 d_printf( "FILENAME:%s\n", finfo->name);
575 d_printf( "MODE:%s\n", attrib_string(talloc_tos(), finfo->mode));
576 d_printf( "SIZE:%.0f\n", (double)finfo->size);
577 d_printf( "MTIME:%s", time_to_asc(t));
578 status = cli_ntcreate(cli_state, afname, 0,
579 CREATE_ACCESS_READ, 0,
580 FILE_SHARE_READ|FILE_SHARE_WRITE,
581 FILE_OPEN, 0x0, 0x0, &fnum);
582 if (!NT_STATUS_IS_OK(status)) {
583 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
584 afname, nt_errstr(status)));
585 } else {
586 struct security_descriptor *sd = NULL;
587 status = cli_query_secdesc(cli_state, fnum,
588 ctx, &sd);
589 if (!NT_STATUS_IS_OK(status)) {
590 DEBUG( 0, ("display_finfo() failed to "
591 "get security descriptor: %s",
592 nt_errstr(status)));
593 } else {
594 display_sec_desc(sd);
596 TALLOC_FREE(sd);
598 TALLOC_FREE(afname);
600 return status;
603 /****************************************************************************
604 Accumulate size of a file.
605 ****************************************************************************/
607 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
608 const char *dir)
610 if (do_this_one(finfo)) {
611 dir_total += finfo->size;
613 return NT_STATUS_OK;
616 static bool do_list_recurse;
617 static bool do_list_dirs;
618 static char *do_list_queue = 0;
619 static long do_list_queue_size = 0;
620 static long do_list_queue_start = 0;
621 static long do_list_queue_end = 0;
622 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
623 const char *dir);
625 /****************************************************************************
626 Functions for do_list_queue.
627 ****************************************************************************/
630 * The do_list_queue is a NUL-separated list of strings stored in a
631 * char*. Since this is a FIFO, we keep track of the beginning and
632 * ending locations of the data in the queue. When we overflow, we
633 * double the size of the char*. When the start of the data passes
634 * the midpoint, we move everything back. This is logically more
635 * complex than a linked list, but easier from a memory management
636 * angle. In any memory error condition, do_list_queue is reset.
637 * Functions check to ensure that do_list_queue is non-NULL before
638 * accessing it.
641 static void reset_do_list_queue(void)
643 SAFE_FREE(do_list_queue);
644 do_list_queue_size = 0;
645 do_list_queue_start = 0;
646 do_list_queue_end = 0;
649 static void init_do_list_queue(void)
651 reset_do_list_queue();
652 do_list_queue_size = 1024;
653 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
654 if (do_list_queue == 0) {
655 d_printf("malloc fail for size %d\n",
656 (int)do_list_queue_size);
657 reset_do_list_queue();
658 } else {
659 memset(do_list_queue, 0, do_list_queue_size);
663 static void adjust_do_list_queue(void)
666 * If the starting point of the queue is more than half way through,
667 * move everything toward the beginning.
670 if (do_list_queue == NULL) {
671 DEBUG(4,("do_list_queue is empty\n"));
672 do_list_queue_start = do_list_queue_end = 0;
673 return;
676 if (do_list_queue_start == do_list_queue_end) {
677 DEBUG(4,("do_list_queue is empty\n"));
678 do_list_queue_start = do_list_queue_end = 0;
679 *do_list_queue = '\0';
680 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
681 DEBUG(4,("sliding do_list_queue backward\n"));
682 memmove(do_list_queue,
683 do_list_queue + do_list_queue_start,
684 do_list_queue_end - do_list_queue_start);
685 do_list_queue_end -= do_list_queue_start;
686 do_list_queue_start = 0;
690 static void add_to_do_list_queue(const char *entry)
692 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
693 while (new_end > do_list_queue_size) {
694 do_list_queue_size *= 2;
695 DEBUG(4,("enlarging do_list_queue to %d\n",
696 (int)do_list_queue_size));
697 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
698 if (! do_list_queue) {
699 d_printf("failure enlarging do_list_queue to %d bytes\n",
700 (int)do_list_queue_size);
701 reset_do_list_queue();
702 } else {
703 memset(do_list_queue + do_list_queue_size / 2,
704 0, do_list_queue_size / 2);
707 if (do_list_queue) {
708 strlcpy_base(do_list_queue + do_list_queue_end,
709 entry, do_list_queue, do_list_queue_size);
710 do_list_queue_end = new_end;
711 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
712 entry, (int)do_list_queue_start, (int)do_list_queue_end));
716 static char *do_list_queue_head(void)
718 return do_list_queue + do_list_queue_start;
721 static void remove_do_list_queue_head(void)
723 if (do_list_queue_end > do_list_queue_start) {
724 do_list_queue_start += strlen(do_list_queue_head()) + 1;
725 adjust_do_list_queue();
726 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
727 (int)do_list_queue_start, (int)do_list_queue_end));
731 static int do_list_queue_empty(void)
733 return (! (do_list_queue && *do_list_queue));
736 /****************************************************************************
737 A helper for do_list.
738 ****************************************************************************/
740 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
741 const char *mask, void *state)
743 struct cli_state *cli_state = (struct cli_state *)state;
744 TALLOC_CTX *ctx = talloc_tos();
745 char *dir = NULL;
746 char *dir_end = NULL;
747 NTSTATUS status = NT_STATUS_OK;
749 /* Work out the directory. */
750 dir = talloc_strdup(ctx, mask);
751 if (!dir) {
752 return NT_STATUS_NO_MEMORY;
754 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
755 *dir_end = '\0';
758 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
759 if (do_list_dirs && do_this_one(f)) {
760 status = do_list_fn(cli_state, f, dir);
761 if (!NT_STATUS_IS_OK(status)) {
762 return status;
765 if (do_list_recurse &&
766 f->name &&
767 !strequal(f->name,".") &&
768 !strequal(f->name,"..")) {
769 char *mask2 = NULL;
770 char *p = NULL;
772 if (!f->name[0]) {
773 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
774 TALLOC_FREE(dir);
775 return NT_STATUS_UNSUCCESSFUL;
778 mask2 = talloc_asprintf(ctx,
779 "%s%s",
780 mntpoint,
781 mask);
782 if (!mask2) {
783 TALLOC_FREE(dir);
784 return NT_STATUS_NO_MEMORY;
786 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
787 if (p) {
788 p[1] = 0;
789 } else {
790 mask2[0] = '\0';
792 mask2 = talloc_asprintf_append(mask2,
793 "%s%s*",
794 f->name,
795 CLI_DIRSEP_STR);
796 if (!mask2) {
797 TALLOC_FREE(dir);
798 return NT_STATUS_NO_MEMORY;
800 add_to_do_list_queue(mask2);
801 TALLOC_FREE(mask2);
803 TALLOC_FREE(dir);
804 return NT_STATUS_OK;
807 if (do_this_one(f)) {
808 status = do_list_fn(cli_state, f, dir);
810 TALLOC_FREE(dir);
811 return status;
814 /****************************************************************************
815 A wrapper around cli_list that adds recursion.
816 ****************************************************************************/
818 NTSTATUS do_list(const char *mask,
819 uint16 attribute,
820 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
821 const char *dir),
822 bool rec,
823 bool dirs)
825 static int in_do_list = 0;
826 TALLOC_CTX *ctx = talloc_tos();
827 struct cli_state *targetcli = NULL;
828 char *targetpath = NULL;
829 NTSTATUS ret_status = NT_STATUS_OK;
830 NTSTATUS status = NT_STATUS_OK;
832 if (in_do_list && rec) {
833 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
834 exit(1);
837 in_do_list = 1;
839 do_list_recurse = rec;
840 do_list_dirs = dirs;
841 do_list_fn = fn;
843 if (rec) {
844 init_do_list_queue();
845 add_to_do_list_queue(mask);
847 while (!do_list_queue_empty()) {
849 * Need to copy head so that it doesn't become
850 * invalid inside the call to cli_list. This
851 * would happen if the list were expanded
852 * during the call.
853 * Fix from E. Jay Berkenbilt (ejb@ql.org)
855 char *head = talloc_strdup(ctx, do_list_queue_head());
857 if (!head) {
858 return NT_STATUS_NO_MEMORY;
861 /* check for dfs */
863 status = cli_resolve_path(ctx, "", auth_info, cli,
864 head, &targetcli,
865 &targetpath);
866 if (!NT_STATUS_IS_OK(status)) {
867 d_printf("do_list: [%s] %s\n", head,
868 nt_errstr(status));
869 remove_do_list_queue_head();
870 continue;
873 status = cli_list(targetcli, targetpath, attribute,
874 do_list_helper, targetcli);
875 if (!NT_STATUS_IS_OK(status)) {
876 d_printf("%s listing %s\n",
877 nt_errstr(status), targetpath);
878 ret_status = status;
880 remove_do_list_queue_head();
881 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
882 char *next_file = do_list_queue_head();
883 char *save_ch = 0;
884 if ((strlen(next_file) >= 2) &&
885 (next_file[strlen(next_file) - 1] == '*') &&
886 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
887 save_ch = next_file +
888 strlen(next_file) - 2;
889 *save_ch = '\0';
890 if (showacls) {
891 /* cwd is only used if showacls is on */
892 client_set_cwd(next_file);
895 if (!showacls) /* don't disturbe the showacls output */
896 d_printf("\n%s\n",next_file);
897 if (save_ch) {
898 *save_ch = CLI_DIRSEP_CHAR;
901 TALLOC_FREE(head);
902 TALLOC_FREE(targetpath);
904 } else {
905 /* check for dfs */
906 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
907 &targetcli, &targetpath);
908 if (NT_STATUS_IS_OK(status)) {
909 status = cli_list(targetcli, targetpath, attribute,
910 do_list_helper, targetcli);
911 if (!NT_STATUS_IS_OK(status)) {
912 d_printf("%s listing %s\n",
913 nt_errstr(status), targetpath);
914 ret_status = status;
916 TALLOC_FREE(targetpath);
917 } else {
918 d_printf("do_list: [%s] %s\n", mask, nt_errstr(status));
919 ret_status = status;
923 in_do_list = 0;
924 reset_do_list_queue();
925 return ret_status;
928 /****************************************************************************
929 Get a directory listing.
930 ****************************************************************************/
932 static int cmd_dir(void)
934 TALLOC_CTX *ctx = talloc_tos();
935 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
936 char *mask = NULL;
937 char *buf = NULL;
938 int rc = 1;
939 NTSTATUS status;
941 dir_total = 0;
942 mask = talloc_strdup(ctx, client_get_cur_dir());
943 if (!mask) {
944 return 1;
947 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
948 normalize_name(buf);
949 if (*buf == CLI_DIRSEP_CHAR) {
950 mask = talloc_strdup(ctx, buf);
951 } else {
952 mask = talloc_asprintf_append(mask, "%s", buf);
954 } else {
955 mask = talloc_asprintf_append(mask, "*");
957 if (!mask) {
958 return 1;
961 if (showacls) {
962 /* cwd is only used if showacls is on */
963 client_set_cwd(client_get_cur_dir());
966 status = do_list(mask, attribute, display_finfo, recurse, true);
967 if (!NT_STATUS_IS_OK(status)) {
968 return 1;
971 rc = do_dskattr();
973 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
975 return rc;
978 /****************************************************************************
979 Get a directory listing.
980 ****************************************************************************/
982 static int cmd_du(void)
984 TALLOC_CTX *ctx = talloc_tos();
985 uint16 attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
986 char *mask = NULL;
987 char *buf = NULL;
988 NTSTATUS status;
989 int rc = 1;
991 dir_total = 0;
992 mask = talloc_strdup(ctx, client_get_cur_dir());
993 if (!mask) {
994 return 1;
996 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
997 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
998 if (!mask) {
999 return 1;
1003 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1004 normalize_name(buf);
1005 if (*buf == CLI_DIRSEP_CHAR) {
1006 mask = talloc_strdup(ctx, buf);
1007 } else {
1008 mask = talloc_asprintf_append(mask, "%s", buf);
1010 } else {
1011 mask = talloc_strdup(ctx, "*");
1014 status = do_list(mask, attribute, do_du, recurse, true);
1015 if (!NT_STATUS_IS_OK(status)) {
1016 return 1;
1019 rc = do_dskattr();
1021 d_printf("Total number of bytes: %.0f\n", dir_total);
1023 return rc;
1026 static int cmd_echo(void)
1028 TALLOC_CTX *ctx = talloc_tos();
1029 char *num;
1030 char *data;
1031 NTSTATUS status;
1033 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1034 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1035 d_printf("echo <num> <data>\n");
1036 return 1;
1039 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1041 if (!NT_STATUS_IS_OK(status)) {
1042 d_printf("echo failed: %s\n", nt_errstr(status));
1043 return 1;
1046 return 0;
1049 /****************************************************************************
1050 Get a file from rname to lname
1051 ****************************************************************************/
1053 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1055 int *pfd = (int *)priv;
1056 if (writefile(*pfd, buf, n) == -1) {
1057 return map_nt_error_from_unix(errno);
1059 return NT_STATUS_OK;
1062 static int do_get(const char *rname, const char *lname_in, bool reget)
1064 TALLOC_CTX *ctx = talloc_tos();
1065 int handle = 0;
1066 uint16_t fnum;
1067 bool newhandle = false;
1068 struct timespec tp_start;
1069 uint16 attr;
1070 off_t size;
1071 off_t start = 0;
1072 off_t nread = 0;
1073 int rc = 0;
1074 struct cli_state *targetcli = NULL;
1075 char *targetname = NULL;
1076 char *lname = NULL;
1077 NTSTATUS status;
1079 lname = talloc_strdup(ctx, lname_in);
1080 if (!lname) {
1081 return 1;
1084 if (lowercase) {
1085 if (!strlower_m(lname)) {
1086 d_printf("strlower_m %s failed\n", lname);
1087 return 1;
1091 status = cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli,
1092 &targetname);
1093 if (!NT_STATUS_IS_OK(status)) {
1094 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1095 return 1;
1098 clock_gettime_mono(&tp_start);
1100 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1101 if (!NT_STATUS_IS_OK(status)) {
1102 d_printf("%s opening remote file %s\n", nt_errstr(status),
1103 rname);
1104 return 1;
1107 if(!strcmp(lname,"-")) {
1108 handle = fileno(stdout);
1109 } else {
1110 if (reget) {
1111 handle = open(lname, O_WRONLY|O_CREAT, 0644);
1112 if (handle >= 0) {
1113 start = lseek(handle, 0, SEEK_END);
1114 if (start == -1) {
1115 d_printf("Error seeking local file\n");
1116 return 1;
1119 } else {
1120 handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1122 newhandle = true;
1124 if (handle < 0) {
1125 d_printf("Error opening local file %s\n",lname);
1126 return 1;
1130 status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1131 NULL, NULL, NULL);
1132 if (!NT_STATUS_IS_OK(status)) {
1133 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1134 NULL);
1135 if(!NT_STATUS_IS_OK(status)) {
1136 d_printf("getattrib: %s\n", nt_errstr(status));
1137 return 1;
1141 DEBUG(1,("getting file %s of size %.0f as %s ",
1142 rname, (double)size, lname));
1144 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1145 writefile_sink, (void *)&handle, &nread);
1146 if (!NT_STATUS_IS_OK(status)) {
1147 d_fprintf(stderr, "parallel_read returned %s\n",
1148 nt_errstr(status));
1149 cli_close(targetcli, fnum);
1150 return 1;
1153 status = cli_close(targetcli, fnum);
1154 if (!NT_STATUS_IS_OK(status)) {
1155 d_printf("Error %s closing remote file\n", nt_errstr(status));
1156 rc = 1;
1159 if (newhandle) {
1160 close(handle);
1163 if (archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
1164 cli_setatr(cli, rname, attr & ~(uint16)FILE_ATTRIBUTE_ARCHIVE, 0);
1168 struct timespec tp_end;
1169 int this_time;
1171 clock_gettime_mono(&tp_end);
1172 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1173 get_total_time_ms += this_time;
1174 get_total_size += nread;
1176 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1177 nread / (1.024*this_time + 1.0e-4),
1178 get_total_size / (1.024*get_total_time_ms)));
1181 TALLOC_FREE(targetname);
1182 return rc;
1185 /****************************************************************************
1186 Get a file.
1187 ****************************************************************************/
1189 static int cmd_get(void)
1191 TALLOC_CTX *ctx = talloc_tos();
1192 char *lname = NULL;
1193 char *rname = NULL;
1194 char *fname = NULL;
1196 rname = talloc_strdup(ctx, client_get_cur_dir());
1197 if (!rname) {
1198 return 1;
1201 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1202 d_printf("get <filename> [localname]\n");
1203 return 1;
1205 rname = talloc_asprintf_append(rname, "%s", fname);
1206 if (!rname) {
1207 return 1;
1209 rname = clean_name(ctx, rname);
1210 if (!rname) {
1211 return 1;
1214 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1215 if (!lname) {
1216 lname = fname;
1219 return do_get(rname, lname, false);
1222 /****************************************************************************
1223 Do an mget operation on one file.
1224 ****************************************************************************/
1226 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1227 const char *dir)
1229 TALLOC_CTX *ctx = talloc_tos();
1230 NTSTATUS status = NT_STATUS_OK;
1231 char *rname = NULL;
1232 char *quest = NULL;
1233 char *saved_curdir = NULL;
1234 char *mget_mask = NULL;
1235 char *new_cd = NULL;
1237 if (!finfo->name) {
1238 return NT_STATUS_OK;
1241 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1242 return NT_STATUS_OK;
1244 if (abort_mget) {
1245 d_printf("mget aborted\n");
1246 return NT_STATUS_UNSUCCESSFUL;
1249 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
1250 if (asprintf(&quest,
1251 "Get directory %s? ",finfo->name) < 0) {
1252 return NT_STATUS_NO_MEMORY;
1254 } else {
1255 if (asprintf(&quest,
1256 "Get file %s? ",finfo->name) < 0) {
1257 return NT_STATUS_NO_MEMORY;
1261 if (prompt && !yesno(quest)) {
1262 SAFE_FREE(quest);
1263 return NT_STATUS_OK;
1265 SAFE_FREE(quest);
1267 if (!(finfo->mode & FILE_ATTRIBUTE_DIRECTORY)) {
1268 rname = talloc_asprintf(ctx,
1269 "%s%s",
1270 client_get_cur_dir(),
1271 finfo->name);
1272 if (!rname) {
1273 return NT_STATUS_NO_MEMORY;
1275 do_get(rname, finfo->name, false);
1276 TALLOC_FREE(rname);
1277 return NT_STATUS_OK;
1280 /* handle directories */
1281 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1282 if (!saved_curdir) {
1283 return NT_STATUS_NO_MEMORY;
1286 new_cd = talloc_asprintf(ctx,
1287 "%s%s%s",
1288 client_get_cur_dir(),
1289 finfo->name,
1290 CLI_DIRSEP_STR);
1291 if (!new_cd) {
1292 return NT_STATUS_NO_MEMORY;
1294 client_set_cur_dir(new_cd);
1296 string_replace(finfo->name,'\\','/');
1297 if (lowercase) {
1298 if (!strlower_m(finfo->name)) {
1299 return NT_STATUS_INVALID_PARAMETER;
1303 if (!directory_exist(finfo->name) &&
1304 mkdir(finfo->name,0777) != 0) {
1305 d_printf("failed to create directory %s\n",finfo->name);
1306 client_set_cur_dir(saved_curdir);
1307 return map_nt_error_from_unix(errno);
1310 if (chdir(finfo->name) != 0) {
1311 d_printf("failed to chdir to directory %s\n",finfo->name);
1312 client_set_cur_dir(saved_curdir);
1313 return map_nt_error_from_unix(errno);
1316 mget_mask = talloc_asprintf(ctx,
1317 "%s*",
1318 client_get_cur_dir());
1320 if (!mget_mask) {
1321 return NT_STATUS_NO_MEMORY;
1324 status = do_list(mget_mask,
1325 (FILE_ATTRIBUTE_SYSTEM
1326 | FILE_ATTRIBUTE_HIDDEN
1327 | FILE_ATTRIBUTE_DIRECTORY),
1328 do_mget, false, true);
1329 if (!NT_STATUS_IS_OK(status)
1330 && !NT_STATUS_EQUAL(status, NT_STATUS_ACCESS_DENIED)) {
1332 * Ignore access denied errors to ensure all permitted files are
1333 * pulled down.
1335 return status;
1338 if (chdir("..") == -1) {
1339 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1340 strerror(errno) );
1341 return map_nt_error_from_unix(errno);
1343 client_set_cur_dir(saved_curdir);
1344 TALLOC_FREE(mget_mask);
1345 TALLOC_FREE(saved_curdir);
1346 TALLOC_FREE(new_cd);
1347 return NT_STATUS_OK;
1350 /****************************************************************************
1351 View the file using the pager.
1352 ****************************************************************************/
1354 static int cmd_more(void)
1356 TALLOC_CTX *ctx = talloc_tos();
1357 char *rname = NULL;
1358 char *fname = NULL;
1359 char *lname = NULL;
1360 char *pager_cmd = NULL;
1361 const char *pager;
1362 int fd;
1363 int rc = 0;
1364 mode_t mask;
1366 rname = talloc_strdup(ctx, client_get_cur_dir());
1367 if (!rname) {
1368 return 1;
1371 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1372 if (!lname) {
1373 return 1;
1375 mask = umask(S_IRWXO | S_IRWXG);
1376 fd = mkstemp(lname);
1377 umask(mask);
1378 if (fd == -1) {
1379 d_printf("failed to create temporary file for more\n");
1380 return 1;
1382 close(fd);
1384 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1385 d_printf("more <filename>\n");
1386 unlink(lname);
1387 return 1;
1389 rname = talloc_asprintf_append(rname, "%s", fname);
1390 if (!rname) {
1391 return 1;
1393 rname = clean_name(ctx,rname);
1394 if (!rname) {
1395 return 1;
1398 rc = do_get(rname, lname, false);
1400 pager=getenv("PAGER");
1402 pager_cmd = talloc_asprintf(ctx,
1403 "%s %s",
1404 (pager? pager:PAGER),
1405 lname);
1406 if (!pager_cmd) {
1407 return 1;
1409 if (system(pager_cmd) == -1) {
1410 d_printf("system command '%s' returned -1\n",
1411 pager_cmd);
1413 unlink(lname);
1415 return rc;
1418 /****************************************************************************
1419 Do a mget command.
1420 ****************************************************************************/
1422 static int cmd_mget(void)
1424 TALLOC_CTX *ctx = talloc_tos();
1425 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1426 char *mget_mask = NULL;
1427 char *buf = NULL;
1428 NTSTATUS status = NT_STATUS_OK;
1430 if (recurse) {
1431 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1434 abort_mget = false;
1436 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1438 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1439 if (!mget_mask) {
1440 return 1;
1442 if (*buf == CLI_DIRSEP_CHAR) {
1443 mget_mask = talloc_strdup(ctx, buf);
1444 } else {
1445 mget_mask = talloc_asprintf_append(mget_mask,
1446 "%s", buf);
1448 if (!mget_mask) {
1449 return 1;
1451 status = do_list(mget_mask, attribute, do_mget, false, true);
1452 if (!NT_STATUS_IS_OK(status)) {
1453 return 1;
1457 if (mget_mask == NULL) {
1458 d_printf("nothing to mget\n");
1459 return 0;
1462 if (!*mget_mask) {
1463 mget_mask = talloc_asprintf(ctx,
1464 "%s*",
1465 client_get_cur_dir());
1466 if (!mget_mask) {
1467 return 1;
1469 status = do_list(mget_mask, attribute, do_mget, false, true);
1470 if (!NT_STATUS_IS_OK(status)) {
1471 return 1;
1475 return 0;
1478 /****************************************************************************
1479 Make a directory of name "name".
1480 ****************************************************************************/
1482 static bool do_mkdir(const char *name)
1484 TALLOC_CTX *ctx = talloc_tos();
1485 struct cli_state *targetcli;
1486 char *targetname = NULL;
1487 NTSTATUS status;
1489 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
1490 &targetname);
1491 if (!NT_STATUS_IS_OK(status)) {
1492 d_printf("mkdir %s: %s\n", name, nt_errstr(status));
1493 return false;
1496 status = cli_mkdir(targetcli, targetname);
1497 if (!NT_STATUS_IS_OK(status)) {
1498 d_printf("%s making remote directory %s\n",
1499 nt_errstr(status),name);
1500 return false;
1503 return true;
1506 /****************************************************************************
1507 Show 8.3 name of a file.
1508 ****************************************************************************/
1510 static bool do_altname(const char *name)
1512 fstring altname;
1513 NTSTATUS status;
1515 status = cli_qpathinfo_alt_name(cli, name, altname);
1516 if (!NT_STATUS_IS_OK(status)) {
1517 d_printf("%s getting alt name for %s\n",
1518 nt_errstr(status),name);
1519 return false;
1521 d_printf("%s\n", altname);
1523 return true;
1526 /****************************************************************************
1527 Exit client.
1528 ****************************************************************************/
1530 static int cmd_quit(void)
1532 cli_shutdown(cli);
1533 exit(0);
1534 /* NOTREACHED */
1535 return 0;
1538 /****************************************************************************
1539 Make a directory.
1540 ****************************************************************************/
1542 static int cmd_mkdir(void)
1544 TALLOC_CTX *ctx = talloc_tos();
1545 char *mask = NULL;
1546 char *buf = NULL;
1547 NTSTATUS status;
1549 mask = talloc_strdup(ctx, client_get_cur_dir());
1550 if (!mask) {
1551 return 1;
1554 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1555 if (!recurse) {
1556 d_printf("mkdir <dirname>\n");
1558 return 1;
1560 mask = talloc_asprintf_append(mask, "%s", buf);
1561 if (!mask) {
1562 return 1;
1565 if (recurse) {
1566 char *ddir = NULL;
1567 char *ddir2 = NULL;
1568 struct cli_state *targetcli;
1569 char *targetname = NULL;
1570 char *p = NULL;
1571 char *saveptr;
1573 ddir2 = talloc_strdup(ctx, "");
1574 if (!ddir2) {
1575 return 1;
1578 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
1579 &targetcli, &targetname);
1580 if (!NT_STATUS_IS_OK(status)) {
1581 return 1;
1584 ddir = talloc_strdup(ctx, targetname);
1585 if (!ddir) {
1586 return 1;
1588 trim_char(ddir,'.','\0');
1589 p = strtok_r(ddir, "/\\", &saveptr);
1590 while (p) {
1591 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1592 if (!ddir2) {
1593 return 1;
1595 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1596 do_mkdir(ddir2);
1598 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1599 if (!ddir2) {
1600 return 1;
1602 p = strtok_r(NULL, "/\\", &saveptr);
1604 } else {
1605 do_mkdir(mask);
1608 return 0;
1611 /****************************************************************************
1612 Show alt name.
1613 ****************************************************************************/
1615 static int cmd_altname(void)
1617 TALLOC_CTX *ctx = talloc_tos();
1618 char *name;
1619 char *buf;
1621 name = talloc_strdup(ctx, client_get_cur_dir());
1622 if (!name) {
1623 return 1;
1626 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1627 d_printf("altname <file>\n");
1628 return 1;
1630 name = talloc_asprintf_append(name, "%s", buf);
1631 if (!name) {
1632 return 1;
1634 do_altname(name);
1635 return 0;
1638 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1640 char *attrs = talloc_zero_array(mem_ctx, char, 17);
1641 int i = 0;
1643 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1644 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1645 attrs[i++] = 'E';
1647 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1648 attrs[i++] = 'N';
1650 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1651 attrs[i++] = 'O';
1653 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1654 attrs[i++] = 'C';
1656 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1657 attrs[i++] = 'r';
1659 if (mode & FILE_ATTRIBUTE_SPARSE) {
1660 attrs[i++] = 's';
1662 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1663 attrs[i++] = 'T';
1665 if (mode & FILE_ATTRIBUTE_NORMAL) {
1666 attrs[i++] = 'N';
1668 if (mode & FILE_ATTRIBUTE_READONLY) {
1669 attrs[i++] = 'R';
1671 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1672 attrs[i++] = 'H';
1674 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1675 attrs[i++] = 'S';
1677 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1678 attrs[i++] = 'D';
1680 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1681 attrs[i++] = 'A';
1684 return attrs;
1687 /****************************************************************************
1688 Show all info we can get
1689 ****************************************************************************/
1691 static int do_allinfo(const char *name)
1693 fstring altname;
1694 struct timespec b_time, a_time, m_time, c_time;
1695 off_t size;
1696 uint16_t mode;
1697 SMB_INO_T ino;
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);
1711 return false;
1713 d_printf("altname: %s\n", altname);
1715 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1716 &size, &mode, &ino);
1717 if (!NT_STATUS_IS_OK(status)) {
1718 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1719 name);
1720 return false;
1723 unix_timespec_to_nt_time(&tmp, b_time);
1724 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1726 unix_timespec_to_nt_time(&tmp, a_time);
1727 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1729 unix_timespec_to_nt_time(&tmp, m_time);
1730 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1732 unix_timespec_to_nt_time(&tmp, c_time);
1733 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1735 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1737 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1738 &streams);
1739 if (!NT_STATUS_IS_OK(status)) {
1740 d_printf("%s getting streams for %s\n", nt_errstr(status),
1741 name);
1742 return false;
1745 for (i=0; i<num_streams; i++) {
1746 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1747 (unsigned long long)streams[i].size);
1750 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1751 char *subst, *print;
1752 uint32_t flags;
1754 status = cli_readlink(cli, name, talloc_tos(), &subst, &print,
1755 &flags);
1756 if (!NT_STATUS_IS_OK(status)) {
1757 d_fprintf(stderr, "cli_readlink returned %s\n",
1758 nt_errstr(status));
1759 } else {
1760 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1761 subst, print, flags);
1762 TALLOC_FREE(subst);
1763 TALLOC_FREE(print);
1767 status = cli_ntcreate(cli, name, 0,
1768 SEC_FILE_READ_DATA | SEC_FILE_READ_ATTRIBUTE |
1769 SEC_STD_SYNCHRONIZE, 0,
1770 FILE_SHARE_READ|FILE_SHARE_WRITE
1771 |FILE_SHARE_DELETE,
1772 FILE_OPEN, 0x0, 0x0, &fnum);
1773 if (!NT_STATUS_IS_OK(status)) {
1775 * Ignore failure, it does not hurt if we can't list
1776 * snapshots
1778 return 0;
1780 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1781 true, &snapshots, &num_snapshots);
1782 if (!NT_STATUS_IS_OK(status)) {
1783 cli_close(cli, fnum);
1784 return 0;
1787 for (i=0; i<num_snapshots; i++) {
1788 char *snap_name;
1790 d_printf("%s\n", snapshots[i]);
1791 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1792 snapshots[i], name);
1793 status = cli_qpathinfo2(cli, snap_name, &b_time, &a_time,
1794 &m_time, &c_time, &size,
1795 NULL, NULL);
1796 if (!NT_STATUS_IS_OK(status)) {
1797 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1798 snap_name, nt_errstr(status));
1799 TALLOC_FREE(snap_name);
1800 continue;
1802 unix_timespec_to_nt_time(&tmp, b_time);
1803 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1804 unix_timespec_to_nt_time(&tmp, a_time);
1805 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1806 unix_timespec_to_nt_time(&tmp, m_time);
1807 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1808 unix_timespec_to_nt_time(&tmp, c_time);
1809 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1810 d_printf("size: %d\n", (int)size);
1813 TALLOC_FREE(snapshots);
1815 return 0;
1818 /****************************************************************************
1819 Show all info we can get
1820 ****************************************************************************/
1822 static int cmd_allinfo(void)
1824 TALLOC_CTX *ctx = talloc_tos();
1825 char *name;
1826 char *buf;
1828 name = talloc_strdup(ctx, client_get_cur_dir());
1829 if (!name) {
1830 return 1;
1833 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1834 d_printf("allinfo <file>\n");
1835 return 1;
1837 name = talloc_asprintf_append(name, "%s", buf);
1838 if (!name) {
1839 return 1;
1842 do_allinfo(name);
1844 return 0;
1847 /****************************************************************************
1848 Put a single file.
1849 ****************************************************************************/
1851 static int do_put(const char *rname, const char *lname, bool reput)
1853 TALLOC_CTX *ctx = talloc_tos();
1854 uint16_t fnum;
1855 XFILE *f;
1856 off_t start = 0;
1857 int rc = 0;
1858 struct timespec tp_start;
1859 struct cli_state *targetcli;
1860 char *targetname = NULL;
1861 struct push_state state;
1862 NTSTATUS status;
1864 status = cli_resolve_path(ctx, "", auth_info, cli, rname,
1865 &targetcli, &targetname);
1866 if (!NT_STATUS_IS_OK(status)) {
1867 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1868 return 1;
1871 clock_gettime_mono(&tp_start);
1873 if (reput) {
1874 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1875 if (NT_STATUS_IS_OK(status)) {
1876 if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1877 targetcli, fnum, NULL,
1878 &start, NULL, NULL,
1879 NULL, NULL, NULL)) &&
1880 !NT_STATUS_IS_OK(status = cli_getattrE(
1881 targetcli, fnum, NULL,
1882 &start, NULL, NULL,
1883 NULL))) {
1884 d_printf("getattrib: %s\n", nt_errstr(status));
1885 return 1;
1888 } else {
1889 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1892 if (!NT_STATUS_IS_OK(status)) {
1893 d_printf("%s opening remote file %s\n", nt_errstr(status),
1894 rname);
1895 return 1;
1898 /* allow files to be piped into smbclient
1899 jdblair 24.jun.98
1901 Note that in this case this function will exit(0) rather
1902 than returning. */
1903 if (!strcmp(lname, "-")) {
1904 f = x_stdin;
1905 /* size of file is not known */
1906 } else {
1907 f = x_fopen(lname,O_RDONLY, 0);
1908 if (f && reput) {
1909 if (x_tseek(f, start, SEEK_SET) == -1) {
1910 d_printf("Error seeking local file\n");
1911 x_fclose(f);
1912 return 1;
1917 if (!f) {
1918 d_printf("Error opening local file %s\n",lname);
1919 return 1;
1922 DEBUG(1,("putting file %s as %s ",lname,
1923 rname));
1925 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1927 state.f = f;
1928 state.nread = 0;
1930 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1931 &state);
1932 if (!NT_STATUS_IS_OK(status)) {
1933 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1934 rc = 1;
1937 status = cli_close(targetcli, fnum);
1938 if (!NT_STATUS_IS_OK(status)) {
1939 d_printf("%s closing remote file %s\n", nt_errstr(status),
1940 rname);
1941 if (f != x_stdin) {
1942 x_fclose(f);
1944 return 1;
1947 if (f != x_stdin) {
1948 x_fclose(f);
1952 struct timespec tp_end;
1953 int this_time;
1955 clock_gettime_mono(&tp_end);
1956 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1957 put_total_time_ms += this_time;
1958 put_total_size += state.nread;
1960 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1961 state.nread / (1.024*this_time + 1.0e-4),
1962 put_total_size / (1.024*put_total_time_ms)));
1965 if (f == x_stdin) {
1966 cli_shutdown(cli);
1967 exit(rc);
1970 return rc;
1973 /****************************************************************************
1974 Put a file.
1975 ****************************************************************************/
1977 static int cmd_put(void)
1979 TALLOC_CTX *ctx = talloc_tos();
1980 char *lname;
1981 char *rname;
1982 char *buf;
1984 rname = talloc_strdup(ctx, client_get_cur_dir());
1985 if (!rname) {
1986 return 1;
1989 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1990 d_printf("put <filename>\n");
1991 return 1;
1994 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1995 rname = talloc_asprintf_append(rname, "%s", buf);
1996 } else {
1997 rname = talloc_asprintf_append(rname, "%s", lname);
1999 if (!rname) {
2000 return 1;
2003 rname = clean_name(ctx, rname);
2004 if (!rname) {
2005 return 1;
2009 SMB_STRUCT_STAT st;
2010 /* allow '-' to represent stdin
2011 jdblair, 24.jun.98 */
2012 if (!file_exist_stat(lname, &st, false) &&
2013 (strcmp(lname,"-"))) {
2014 d_printf("%s does not exist\n",lname);
2015 return 1;
2019 return do_put(rname, lname, false);
2022 /*************************************
2023 File list structure.
2024 *************************************/
2026 static struct file_list {
2027 struct file_list *prev, *next;
2028 char *file_path;
2029 bool isdir;
2030 } *file_list;
2032 /****************************************************************************
2033 Free a file_list structure.
2034 ****************************************************************************/
2036 static void free_file_list (struct file_list *l_head)
2038 struct file_list *list, *next;
2040 for (list = l_head; list; list = next) {
2041 next = list->next;
2042 DLIST_REMOVE(l_head, list);
2043 SAFE_FREE(list->file_path);
2044 SAFE_FREE(list);
2048 /****************************************************************************
2049 Seek in a directory/file list until you get something that doesn't start with
2050 the specified name.
2051 ****************************************************************************/
2053 static bool seek_list(struct file_list *list, char *name)
2055 while (list) {
2056 trim_string(list->file_path,"./","\n");
2057 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2058 return true;
2060 list = list->next;
2063 return false;
2066 /****************************************************************************
2067 Set the file selection mask.
2068 ****************************************************************************/
2070 static int cmd_select(void)
2072 TALLOC_CTX *ctx = talloc_tos();
2073 char *new_fs = NULL;
2074 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2076 if (new_fs) {
2077 client_set_fileselection(new_fs);
2078 } else {
2079 client_set_fileselection("");
2081 return 0;
2084 /****************************************************************************
2085 Recursive file matching function act as find
2086 match must be always set to true when calling this function
2087 ****************************************************************************/
2089 static int file_find(struct file_list **list, const char *directory,
2090 const char *expression, bool match)
2092 DIR *dir;
2093 struct file_list *entry;
2094 struct stat statbuf;
2095 int ret;
2096 char *path;
2097 bool isdir;
2098 const char *dname;
2100 dir = opendir(directory);
2101 if (!dir)
2102 return -1;
2104 while ((dname = readdirname(dir))) {
2105 if (!strcmp("..", dname))
2106 continue;
2107 if (!strcmp(".", dname))
2108 continue;
2110 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2111 continue;
2114 isdir = false;
2115 if (!match || !gen_fnmatch(expression, dname)) {
2116 if (recurse) {
2117 ret = stat(path, &statbuf);
2118 if (ret == 0) {
2119 if (S_ISDIR(statbuf.st_mode)) {
2120 isdir = true;
2121 ret = file_find(list, path, expression, false);
2123 } else {
2124 d_printf("file_find: cannot stat file %s\n", path);
2127 if (ret == -1) {
2128 SAFE_FREE(path);
2129 closedir(dir);
2130 return -1;
2133 entry = SMB_MALLOC_P(struct file_list);
2134 if (!entry) {
2135 d_printf("Out of memory in file_find\n");
2136 closedir(dir);
2137 return -1;
2139 entry->file_path = path;
2140 entry->isdir = isdir;
2141 DLIST_ADD(*list, entry);
2142 } else {
2143 SAFE_FREE(path);
2147 closedir(dir);
2148 return 0;
2151 /****************************************************************************
2152 mput some files.
2153 ****************************************************************************/
2155 static int cmd_mput(void)
2157 TALLOC_CTX *ctx = talloc_tos();
2158 char *p = NULL;
2160 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2161 int ret;
2162 struct file_list *temp_list;
2163 char *quest, *lname, *rname;
2165 file_list = NULL;
2167 ret = file_find(&file_list, ".", p, true);
2168 if (ret) {
2169 free_file_list(file_list);
2170 continue;
2173 quest = NULL;
2174 lname = NULL;
2175 rname = NULL;
2177 for (temp_list = file_list; temp_list;
2178 temp_list = temp_list->next) {
2180 SAFE_FREE(lname);
2181 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2182 continue;
2184 trim_string(lname, "./", "/");
2186 /* check if it's a directory */
2187 if (temp_list->isdir) {
2188 /* if (!recurse) continue; */
2190 SAFE_FREE(quest);
2191 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2192 break;
2194 if (prompt && !yesno(quest)) { /* No */
2195 /* Skip the directory */
2196 lname[strlen(lname)-1] = '/';
2197 if (!seek_list(temp_list, lname))
2198 break;
2199 } else { /* Yes */
2200 SAFE_FREE(rname);
2201 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2202 break;
2204 normalize_name(rname);
2205 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2206 !do_mkdir(rname)) {
2207 DEBUG (0, ("Unable to make dir, skipping..."));
2208 /* Skip the directory */
2209 lname[strlen(lname)-1] = '/';
2210 if (!seek_list(temp_list, lname)) {
2211 break;
2215 continue;
2216 } else {
2217 SAFE_FREE(quest);
2218 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2219 break;
2221 if (prompt && !yesno(quest)) {
2222 /* No */
2223 continue;
2226 /* Yes */
2227 SAFE_FREE(rname);
2228 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2229 break;
2233 normalize_name(rname);
2235 do_put(rname, lname, false);
2237 free_file_list(file_list);
2238 SAFE_FREE(quest);
2239 SAFE_FREE(lname);
2240 SAFE_FREE(rname);
2243 return 0;
2246 /****************************************************************************
2247 Cancel a print job.
2248 ****************************************************************************/
2250 static int do_cancel(int job)
2252 if (cli_printjob_del(cli, job)) {
2253 d_printf("Job %d cancelled\n",job);
2254 return 0;
2255 } else {
2256 NTSTATUS status = cli_nt_error(cli);
2257 d_printf("Error cancelling job %d : %s\n",
2258 job, nt_errstr(status));
2259 return 1;
2263 /****************************************************************************
2264 Cancel a print job.
2265 ****************************************************************************/
2267 static int cmd_cancel(void)
2269 TALLOC_CTX *ctx = talloc_tos();
2270 char *buf = NULL;
2271 int job;
2273 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2274 d_printf("cancel <jobid> ...\n");
2275 return 1;
2277 do {
2278 job = atoi(buf);
2279 do_cancel(job);
2280 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2282 return 0;
2285 /****************************************************************************
2286 Print a file.
2287 ****************************************************************************/
2289 static int cmd_print(void)
2291 TALLOC_CTX *ctx = talloc_tos();
2292 char *lname = NULL;
2293 char *rname = NULL;
2294 char *p = NULL;
2296 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2297 d_printf("print <filename>\n");
2298 return 1;
2301 rname = talloc_strdup(ctx, lname);
2302 if (!rname) {
2303 return 1;
2305 p = strrchr_m(rname,'/');
2306 if (p) {
2307 rname = talloc_asprintf(ctx,
2308 "%s-%d",
2309 p+1,
2310 (int)getpid());
2312 if (strequal(lname,"-")) {
2313 rname = talloc_asprintf(ctx,
2314 "stdin-%d",
2315 (int)getpid());
2317 if (!rname) {
2318 return 1;
2321 return do_put(rname, lname, false);
2324 /****************************************************************************
2325 Show a print queue entry.
2326 ****************************************************************************/
2328 static void queue_fn(struct print_job_info *p)
2330 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2333 /****************************************************************************
2334 Show a print queue.
2335 ****************************************************************************/
2337 static int cmd_queue(void)
2339 cli_print_queue(cli, queue_fn);
2340 return 0;
2343 /****************************************************************************
2344 Delete some files.
2345 ****************************************************************************/
2347 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2348 const char *dir)
2350 TALLOC_CTX *ctx = talloc_tos();
2351 char *mask = NULL;
2352 NTSTATUS status;
2354 mask = talloc_asprintf(ctx,
2355 "%s%c%s",
2356 dir,
2357 CLI_DIRSEP_CHAR,
2358 finfo->name);
2359 if (!mask) {
2360 return NT_STATUS_NO_MEMORY;
2363 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2364 TALLOC_FREE(mask);
2365 return NT_STATUS_OK;
2368 status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2369 if (!NT_STATUS_IS_OK(status)) {
2370 d_printf("%s deleting remote file %s\n",
2371 nt_errstr(status), mask);
2373 TALLOC_FREE(mask);
2374 return status;
2377 /****************************************************************************
2378 Delete some files.
2379 ****************************************************************************/
2381 static int cmd_del(void)
2383 TALLOC_CTX *ctx = talloc_tos();
2384 char *mask = NULL;
2385 char *buf = NULL;
2386 NTSTATUS status = NT_STATUS_OK;
2387 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2389 if (recurse) {
2390 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2393 mask = talloc_strdup(ctx, client_get_cur_dir());
2394 if (!mask) {
2395 return 1;
2397 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2398 d_printf("del <filename>\n");
2399 return 1;
2401 mask = talloc_asprintf_append(mask, "%s", buf);
2402 if (!mask) {
2403 return 1;
2406 status = do_list(mask,attribute,do_del,false,false);
2407 if (!NT_STATUS_IS_OK(status)) {
2408 return 1;
2410 return 0;
2413 /****************************************************************************
2414 Wildcard delete some files.
2415 ****************************************************************************/
2417 static int cmd_wdel(void)
2419 TALLOC_CTX *ctx = talloc_tos();
2420 char *mask = NULL;
2421 char *buf = NULL;
2422 uint16 attribute;
2423 struct cli_state *targetcli;
2424 char *targetname = NULL;
2425 NTSTATUS status;
2427 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2428 d_printf("wdel 0x<attrib> <wcard>\n");
2429 return 1;
2432 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2434 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2435 d_printf("wdel 0x<attrib> <wcard>\n");
2436 return 1;
2439 mask = talloc_asprintf(ctx, "%s%s",
2440 client_get_cur_dir(),
2441 buf);
2442 if (!mask) {
2443 return 1;
2446 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2447 &targetname);
2448 if (!NT_STATUS_IS_OK(status)) {
2449 d_printf("cmd_wdel %s: %s\n", mask, nt_errstr(status));
2450 return 1;
2453 status = cli_unlink(targetcli, targetname, attribute);
2454 if (!NT_STATUS_IS_OK(status)) {
2455 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2456 targetname);
2458 return 0;
2461 /****************************************************************************
2462 ****************************************************************************/
2464 static int cmd_open(void)
2466 TALLOC_CTX *ctx = talloc_tos();
2467 char *mask = NULL;
2468 char *buf = NULL;
2469 char *targetname = NULL;
2470 struct cli_state *targetcli;
2471 uint16_t fnum = (uint16_t)-1;
2472 NTSTATUS status;
2474 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2475 d_printf("open <filename>\n");
2476 return 1;
2478 mask = talloc_asprintf(ctx,
2479 "%s%s",
2480 client_get_cur_dir(),
2481 buf);
2482 if (!mask) {
2483 return 1;
2486 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2487 &targetname);
2488 if (!NT_STATUS_IS_OK(status)) {
2489 d_printf("open %s: %s\n", mask, nt_errstr(status));
2490 return 1;
2493 status = cli_ntcreate(targetcli, targetname, 0,
2494 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2495 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2496 0x0, 0x0, &fnum);
2497 if (!NT_STATUS_IS_OK(status)) {
2498 status = cli_ntcreate(targetcli, targetname, 0,
2499 FILE_READ_DATA, 0,
2500 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2501 0x0, 0x0, &fnum);
2502 if (NT_STATUS_IS_OK(status)) {
2503 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2504 } else {
2505 d_printf("Failed to open file %s. %s\n",
2506 targetname, nt_errstr(status));
2508 } else {
2509 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2511 return 0;
2514 static int cmd_posix_encrypt(void)
2516 TALLOC_CTX *ctx = talloc_tos();
2517 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2519 if (cli->use_kerberos) {
2520 status = cli_gss_smb_encryption_start(cli);
2521 } else {
2522 char *domain = NULL;
2523 char *user = NULL;
2524 char *password = NULL;
2526 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2527 d_printf("posix_encrypt domain user password\n");
2528 return 1;
2531 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2532 d_printf("posix_encrypt domain user password\n");
2533 return 1;
2536 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2537 d_printf("posix_encrypt domain user password\n");
2538 return 1;
2541 status = cli_raw_ntlm_smb_encryption_start(cli,
2542 user,
2543 password,
2544 domain);
2547 if (!NT_STATUS_IS_OK(status)) {
2548 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2549 } else {
2550 d_printf("encryption on\n");
2551 smb_encrypt = true;
2554 return 0;
2557 /****************************************************************************
2558 ****************************************************************************/
2560 static int cmd_posix_open(void)
2562 TALLOC_CTX *ctx = talloc_tos();
2563 char *mask = NULL;
2564 char *buf = NULL;
2565 char *targetname = NULL;
2566 struct cli_state *targetcli;
2567 mode_t mode;
2568 uint16_t fnum;
2569 NTSTATUS status;
2571 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2572 d_printf("posix_open <filename> 0<mode>\n");
2573 return 1;
2575 mask = talloc_asprintf(ctx,
2576 "%s%s",
2577 client_get_cur_dir(),
2578 buf);
2579 if (!mask) {
2580 return 1;
2583 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2584 d_printf("posix_open <filename> 0<mode>\n");
2585 return 1;
2587 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2589 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2590 &targetname);
2591 if (!NT_STATUS_IS_OK(status)) {
2592 d_printf("posix_open %s: %s\n", mask, nt_errstr(status));
2593 return 1;
2596 status = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode,
2597 &fnum);
2598 if (!NT_STATUS_IS_OK(status)) {
2599 status = cli_posix_open(targetcli, targetname,
2600 O_CREAT|O_RDONLY, mode, &fnum);
2601 if (!NT_STATUS_IS_OK(status)) {
2602 d_printf("Failed to open file %s. %s\n", targetname,
2603 nt_errstr(status));
2604 } else {
2605 d_printf("posix_open file %s: for readonly fnum %d\n",
2606 targetname, fnum);
2608 } else {
2609 d_printf("posix_open file %s: for read/write fnum %d\n",
2610 targetname, fnum);
2613 return 0;
2616 static int cmd_posix_mkdir(void)
2618 TALLOC_CTX *ctx = talloc_tos();
2619 char *mask = NULL;
2620 char *buf = NULL;
2621 char *targetname = NULL;
2622 struct cli_state *targetcli;
2623 mode_t mode;
2624 NTSTATUS status;
2626 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2627 d_printf("posix_mkdir <filename> 0<mode>\n");
2628 return 1;
2630 mask = talloc_asprintf(ctx,
2631 "%s%s",
2632 client_get_cur_dir(),
2633 buf);
2634 if (!mask) {
2635 return 1;
2638 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2639 d_printf("posix_mkdir <filename> 0<mode>\n");
2640 return 1;
2642 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2644 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2645 &targetname);
2646 if (!NT_STATUS_IS_OK(status)) {
2647 d_printf("posix_mkdir %s: %s\n", mask, nt_errstr(status));
2648 return 1;
2651 status = cli_posix_mkdir(targetcli, targetname, mode);
2652 if (!NT_STATUS_IS_OK(status)) {
2653 d_printf("Failed to open file %s. %s\n",
2654 targetname, nt_errstr(status));
2655 } else {
2656 d_printf("posix_mkdir created directory %s\n", targetname);
2658 return 0;
2661 static int cmd_posix_unlink(void)
2663 TALLOC_CTX *ctx = talloc_tos();
2664 char *mask = NULL;
2665 char *buf = NULL;
2666 char *targetname = NULL;
2667 struct cli_state *targetcli;
2668 NTSTATUS status;
2670 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2671 d_printf("posix_unlink <filename>\n");
2672 return 1;
2674 mask = talloc_asprintf(ctx,
2675 "%s%s",
2676 client_get_cur_dir(),
2677 buf);
2678 if (!mask) {
2679 return 1;
2682 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2683 &targetname);
2684 if (!NT_STATUS_IS_OK(status)) {
2685 d_printf("posix_unlink %s: %s\n", mask, nt_errstr(status));
2686 return 1;
2689 status = cli_posix_unlink(targetcli, targetname);
2690 if (!NT_STATUS_IS_OK(status)) {
2691 d_printf("Failed to unlink file %s. %s\n",
2692 targetname, nt_errstr(status));
2693 } else {
2694 d_printf("posix_unlink deleted file %s\n", targetname);
2697 return 0;
2700 static int cmd_posix_rmdir(void)
2702 TALLOC_CTX *ctx = talloc_tos();
2703 char *mask = NULL;
2704 char *buf = NULL;
2705 char *targetname = NULL;
2706 struct cli_state *targetcli;
2707 NTSTATUS status;
2709 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2710 d_printf("posix_rmdir <filename>\n");
2711 return 1;
2713 mask = talloc_asprintf(ctx,
2714 "%s%s",
2715 client_get_cur_dir(),
2716 buf);
2717 if (!mask) {
2718 return 1;
2721 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2722 &targetname);
2723 if (!NT_STATUS_IS_OK(status)) {
2724 d_printf("posix_rmdir %s: %s\n", mask, nt_errstr(status));
2725 return 1;
2728 status = cli_posix_rmdir(targetcli, targetname);
2729 if (!NT_STATUS_IS_OK(status)) {
2730 d_printf("Failed to unlink directory %s. %s\n",
2731 targetname, nt_errstr(status));
2732 } else {
2733 d_printf("posix_rmdir deleted directory %s\n", targetname);
2736 return 0;
2739 static int cmd_close(void)
2741 TALLOC_CTX *ctx = talloc_tos();
2742 char *buf = NULL;
2743 int fnum;
2744 NTSTATUS status;
2746 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2747 d_printf("close <fnum>\n");
2748 return 1;
2751 fnum = atoi(buf);
2752 /* We really should use the targetcli here.... */
2753 status = cli_close(cli, fnum);
2754 if (!NT_STATUS_IS_OK(status)) {
2755 d_printf("close %d: %s\n", fnum, nt_errstr(status));
2756 return 1;
2758 return 0;
2761 static int cmd_posix(void)
2763 TALLOC_CTX *ctx = talloc_tos();
2764 uint16 major, minor;
2765 uint32 caplow, caphigh;
2766 char *caps;
2767 NTSTATUS status;
2769 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2770 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2771 return 1;
2774 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2775 &caphigh);
2776 if (!NT_STATUS_IS_OK(status)) {
2777 d_printf("Can't get UNIX CIFS extensions version from "
2778 "server: %s\n", nt_errstr(status));
2779 return 1;
2782 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2784 caps = talloc_strdup(ctx, "");
2785 if (!caps) {
2786 return 1;
2788 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2789 caps = talloc_asprintf_append(caps, "locks ");
2790 if (!caps) {
2791 return 1;
2794 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2795 caps = talloc_asprintf_append(caps, "acls ");
2796 if (!caps) {
2797 return 1;
2800 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2801 caps = talloc_asprintf_append(caps, "eas ");
2802 if (!caps) {
2803 return 1;
2806 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2807 caps = talloc_asprintf_append(caps, "pathnames ");
2808 if (!caps) {
2809 return 1;
2812 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2813 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2814 if (!caps) {
2815 return 1;
2818 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2819 caps = talloc_asprintf_append(caps, "large_read ");
2820 if (!caps) {
2821 return 1;
2824 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2825 caps = talloc_asprintf_append(caps, "large_write ");
2826 if (!caps) {
2827 return 1;
2830 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2831 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2832 if (!caps) {
2833 return 1;
2836 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2837 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2838 if (!caps) {
2839 return 1;
2843 if (*caps && caps[strlen(caps)-1] == ' ') {
2844 caps[strlen(caps)-1] = '\0';
2847 d_printf("Server supports CIFS capabilities %s\n", caps);
2849 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2850 caplow, caphigh);
2851 if (!NT_STATUS_IS_OK(status)) {
2852 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2853 nt_errstr(status));
2854 return 1;
2857 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2858 CLI_DIRSEP_CHAR = '/';
2859 *CLI_DIRSEP_STR = '/';
2860 client_set_cur_dir(CLI_DIRSEP_STR);
2863 return 0;
2866 static int cmd_lock(void)
2868 TALLOC_CTX *ctx = talloc_tos();
2869 char *buf = NULL;
2870 uint64_t start, len;
2871 enum brl_type lock_type;
2872 int fnum;
2873 NTSTATUS status;
2875 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2876 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2877 return 1;
2879 fnum = atoi(buf);
2881 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2882 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2883 return 1;
2886 if (*buf == 'r' || *buf == 'R') {
2887 lock_type = READ_LOCK;
2888 } else if (*buf == 'w' || *buf == 'W') {
2889 lock_type = WRITE_LOCK;
2890 } else {
2891 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2892 return 1;
2895 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2896 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2897 return 1;
2900 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2902 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2903 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2904 return 1;
2907 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2909 status = cli_posix_lock(cli, fnum, start, len, true, lock_type);
2910 if (!NT_STATUS_IS_OK(status)) {
2911 d_printf("lock failed %d: %s\n", fnum, nt_errstr(status));
2914 return 0;
2917 static int cmd_unlock(void)
2919 TALLOC_CTX *ctx = talloc_tos();
2920 char *buf = NULL;
2921 uint64_t start, len;
2922 int fnum;
2923 NTSTATUS status;
2925 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2926 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2927 return 1;
2929 fnum = atoi(buf);
2931 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2932 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2933 return 1;
2936 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2938 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2939 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2940 return 1;
2943 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2945 status = cli_posix_unlock(cli, fnum, start, len);
2946 if (!NT_STATUS_IS_OK(status)) {
2947 d_printf("unlock failed %d: %s\n", fnum, nt_errstr(status));
2950 return 0;
2954 /****************************************************************************
2955 Remove a directory.
2956 ****************************************************************************/
2958 static int cmd_rmdir(void)
2960 TALLOC_CTX *ctx = talloc_tos();
2961 char *mask = NULL;
2962 char *buf = NULL;
2963 char *targetname = NULL;
2964 struct cli_state *targetcli;
2965 NTSTATUS status;
2967 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2968 d_printf("rmdir <dirname>\n");
2969 return 1;
2971 mask = talloc_asprintf(ctx,
2972 "%s%s",
2973 client_get_cur_dir(),
2974 buf);
2975 if (!mask) {
2976 return 1;
2979 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2980 &targetname);
2981 if (!NT_STATUS_IS_OK(status)) {
2982 d_printf("rmdir %s: %s\n", mask, nt_errstr(status));
2983 return 1;
2986 status = cli_rmdir(targetcli, targetname);
2987 if (!NT_STATUS_IS_OK(status)) {
2988 d_printf("%s removing remote directory file %s\n",
2989 nt_errstr(status), mask);
2992 return 0;
2995 /****************************************************************************
2996 UNIX hardlink.
2997 ****************************************************************************/
2999 static int cmd_link(void)
3001 TALLOC_CTX *ctx = talloc_tos();
3002 char *oldname = NULL;
3003 char *newname = NULL;
3004 char *buf = NULL;
3005 char *buf2 = NULL;
3006 char *targetname = NULL;
3007 struct cli_state *targetcli;
3008 NTSTATUS status;
3010 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3011 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3012 d_printf("link <oldname> <newname>\n");
3013 return 1;
3015 oldname = talloc_asprintf(ctx,
3016 "%s%s",
3017 client_get_cur_dir(),
3018 buf);
3019 if (!oldname) {
3020 return 1;
3022 newname = talloc_asprintf(ctx,
3023 "%s%s",
3024 client_get_cur_dir(),
3025 buf2);
3026 if (!newname) {
3027 return 1;
3030 status = cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli,
3031 &targetname);
3032 if (!NT_STATUS_IS_OK(status)) {
3033 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3034 return 1;
3037 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3038 d_printf("Server doesn't support UNIX CIFS calls.\n");
3039 return 1;
3042 status = cli_posix_hardlink(targetcli, targetname, newname);
3043 if (!NT_STATUS_IS_OK(status)) {
3044 d_printf("%s linking files (%s -> %s)\n",
3045 nt_errstr(status), newname, oldname);
3046 return 1;
3048 return 0;
3051 /****************************************************************************
3052 UNIX readlink.
3053 ****************************************************************************/
3055 static int cmd_readlink(void)
3057 TALLOC_CTX *ctx = talloc_tos();
3058 char *name= NULL;
3059 char *buf = NULL;
3060 char *targetname = NULL;
3061 char linkname[PATH_MAX+1];
3062 struct cli_state *targetcli;
3063 NTSTATUS status;
3065 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3066 d_printf("readlink <name>\n");
3067 return 1;
3069 name = talloc_asprintf(ctx,
3070 "%s%s",
3071 client_get_cur_dir(),
3072 buf);
3073 if (!name) {
3074 return 1;
3077 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
3078 &targetname);
3079 if (!NT_STATUS_IS_OK(status)) {
3080 d_printf("readlink %s: %s\n", name, nt_errstr(status));
3081 return 1;
3084 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3085 d_printf("Server doesn't support UNIX CIFS calls.\n");
3086 return 1;
3089 status = cli_posix_readlink(targetcli, name, linkname, PATH_MAX+1);
3090 if (!NT_STATUS_IS_OK(status)) {
3091 d_printf("%s readlink on file %s\n",
3092 nt_errstr(status), name);
3093 return 1;
3096 d_printf("%s -> %s\n", name, linkname);
3098 return 0;
3102 /****************************************************************************
3103 UNIX symlink.
3104 ****************************************************************************/
3106 static int cmd_symlink(void)
3108 TALLOC_CTX *ctx = talloc_tos();
3109 char *oldname = NULL;
3110 char *newname = NULL;
3111 char *buf = NULL;
3112 char *buf2 = NULL;
3113 struct cli_state *newcli;
3114 NTSTATUS status;
3116 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3117 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3118 d_printf("symlink <oldname> <newname>\n");
3119 return 1;
3121 /* Oldname (link target) must be an untouched blob. */
3122 oldname = buf;
3124 if (SERVER_HAS_UNIX_CIFS(cli)) {
3125 newname = talloc_asprintf(ctx, "%s%s", client_get_cur_dir(),
3126 buf2);
3127 if (!newname) {
3128 return 1;
3130 /* New name must be present in share namespace. */
3131 status = cli_resolve_path(ctx, "", auth_info, cli, newname,
3132 &newcli, &newname);
3133 if (!NT_STATUS_IS_OK(status)) {
3134 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3135 return 1;
3137 status = cli_posix_symlink(newcli, oldname, newname);
3138 } else {
3139 status = cli_symlink(
3140 cli, oldname, buf2,
3141 buf2[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE);
3144 if (!NT_STATUS_IS_OK(status)) {
3145 d_printf("%s symlinking files (%s -> %s)\n",
3146 nt_errstr(status), oldname, newname);
3147 return 1;
3150 return 0;
3153 /****************************************************************************
3154 UNIX chmod.
3155 ****************************************************************************/
3157 static int cmd_chmod(void)
3159 TALLOC_CTX *ctx = talloc_tos();
3160 char *src = NULL;
3161 char *buf = NULL;
3162 char *buf2 = NULL;
3163 char *targetname = NULL;
3164 struct cli_state *targetcli;
3165 mode_t mode;
3166 NTSTATUS status;
3168 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3169 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3170 d_printf("chmod mode file\n");
3171 return 1;
3173 src = talloc_asprintf(ctx,
3174 "%s%s",
3175 client_get_cur_dir(),
3176 buf2);
3177 if (!src) {
3178 return 1;
3181 mode = (mode_t)strtol(buf, NULL, 8);
3183 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3184 &targetname);
3185 if (!NT_STATUS_IS_OK(status)) {
3186 d_printf("chmod %s: %s\n", src, nt_errstr(status));
3187 return 1;
3190 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3191 d_printf("Server doesn't support UNIX CIFS calls.\n");
3192 return 1;
3195 status = cli_posix_chmod(targetcli, targetname, mode);
3196 if (!NT_STATUS_IS_OK(status)) {
3197 d_printf("%s chmod file %s 0%o\n",
3198 nt_errstr(status), src, (unsigned int)mode);
3199 return 1;
3202 return 0;
3205 static const char *filetype_to_str(mode_t mode)
3207 if (S_ISREG(mode)) {
3208 return "regular file";
3209 } else if (S_ISDIR(mode)) {
3210 return "directory";
3211 } else
3212 #ifdef S_ISCHR
3213 if (S_ISCHR(mode)) {
3214 return "character device";
3215 } else
3216 #endif
3217 #ifdef S_ISBLK
3218 if (S_ISBLK(mode)) {
3219 return "block device";
3220 } else
3221 #endif
3222 #ifdef S_ISFIFO
3223 if (S_ISFIFO(mode)) {
3224 return "fifo";
3225 } else
3226 #endif
3227 #ifdef S_ISLNK
3228 if (S_ISLNK(mode)) {
3229 return "symbolic link";
3230 } else
3231 #endif
3232 #ifdef S_ISSOCK
3233 if (S_ISSOCK(mode)) {
3234 return "socket";
3235 } else
3236 #endif
3237 return "";
3240 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3242 if (m & bt) {
3243 return ret;
3244 } else {
3245 return '-';
3249 static char *unix_mode_to_str(char *s, mode_t m)
3251 char *p = s;
3252 const char *str = filetype_to_str(m);
3254 switch(str[0]) {
3255 case 'd':
3256 *p++ = 'd';
3257 break;
3258 case 'c':
3259 *p++ = 'c';
3260 break;
3261 case 'b':
3262 *p++ = 'b';
3263 break;
3264 case 'f':
3265 *p++ = 'p';
3266 break;
3267 case 's':
3268 *p++ = str[1] == 'y' ? 'l' : 's';
3269 break;
3270 case 'r':
3271 default:
3272 *p++ = '-';
3273 break;
3275 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3276 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3277 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3278 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3279 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3280 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3281 *p++ = rwx_to_str(m, S_IROTH, 'r');
3282 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3283 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3284 *p++ = '\0';
3285 return s;
3288 /****************************************************************************
3289 Utility function for UNIX getfacl.
3290 ****************************************************************************/
3292 static char *perms_to_string(fstring permstr, unsigned char perms)
3294 fstrcpy(permstr, "---");
3295 if (perms & SMB_POSIX_ACL_READ) {
3296 permstr[0] = 'r';
3298 if (perms & SMB_POSIX_ACL_WRITE) {
3299 permstr[1] = 'w';
3301 if (perms & SMB_POSIX_ACL_EXECUTE) {
3302 permstr[2] = 'x';
3304 return permstr;
3307 /****************************************************************************
3308 UNIX getfacl.
3309 ****************************************************************************/
3311 static int cmd_getfacl(void)
3313 TALLOC_CTX *ctx = talloc_tos();
3314 char *src = NULL;
3315 char *name = NULL;
3316 char *targetname = NULL;
3317 struct cli_state *targetcli;
3318 uint16 major, minor;
3319 uint32 caplow, caphigh;
3320 char *retbuf = NULL;
3321 size_t rb_size = 0;
3322 SMB_STRUCT_STAT sbuf;
3323 uint16 num_file_acls = 0;
3324 uint16 num_dir_acls = 0;
3325 uint16 i;
3326 NTSTATUS status;
3328 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3329 d_printf("getfacl filename\n");
3330 return 1;
3332 src = talloc_asprintf(ctx,
3333 "%s%s",
3334 client_get_cur_dir(),
3335 name);
3336 if (!src) {
3337 return 1;
3340 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3341 &targetname);
3342 if (!NT_STATUS_IS_OK(status)) {
3343 d_printf("stat %s: %s\n", src, nt_errstr(status));
3344 return 1;
3347 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3348 d_printf("Server doesn't support UNIX CIFS calls.\n");
3349 return 1;
3352 status = cli_unix_extensions_version(targetcli, &major, &minor,
3353 &caplow, &caphigh);
3354 if (!NT_STATUS_IS_OK(status)) {
3355 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3356 nt_errstr(status));
3357 return 1;
3360 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3361 d_printf("This server supports UNIX extensions "
3362 "but doesn't support POSIX ACLs.\n");
3363 return 1;
3366 status = cli_posix_stat(targetcli, targetname, &sbuf);
3367 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3368 d_printf("%s getfacl doing a stat on file %s\n",
3369 nt_errstr(status), src);
3370 return 1;
3373 status = cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf);
3374 if (!NT_STATUS_IS_OK(status)) {
3375 d_printf("%s getfacl file %s\n",
3376 nt_errstr(status), src);
3377 return 1;
3380 /* ToDo : Print out the ACL values. */
3381 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3382 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3383 src, (unsigned int)CVAL(retbuf,0) );
3384 return 1;
3387 num_file_acls = SVAL(retbuf,2);
3388 num_dir_acls = SVAL(retbuf,4);
3389 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3390 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3391 src,
3392 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3393 (unsigned int)rb_size);
3394 return 1;
3397 d_printf("# file: %s\n", src);
3398 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3400 if (num_file_acls == 0 && num_dir_acls == 0) {
3401 d_printf("No acls found.\n");
3404 for (i = 0; i < num_file_acls; i++) {
3405 uint32 uorg;
3406 fstring permstring;
3407 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3408 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3410 switch(tagtype) {
3411 case SMB_POSIX_ACL_USER_OBJ:
3412 d_printf("user::");
3413 break;
3414 case SMB_POSIX_ACL_USER:
3415 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3416 d_printf("user:%u:", uorg);
3417 break;
3418 case SMB_POSIX_ACL_GROUP_OBJ:
3419 d_printf("group::");
3420 break;
3421 case SMB_POSIX_ACL_GROUP:
3422 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3423 d_printf("group:%u:", uorg);
3424 break;
3425 case SMB_POSIX_ACL_MASK:
3426 d_printf("mask::");
3427 break;
3428 case SMB_POSIX_ACL_OTHER:
3429 d_printf("other::");
3430 break;
3431 default:
3432 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3433 src, (unsigned int)tagtype );
3434 SAFE_FREE(retbuf);
3435 return 1;
3438 d_printf("%s\n", perms_to_string(permstring, perms));
3441 for (i = 0; i < num_dir_acls; i++) {
3442 uint32 uorg;
3443 fstring permstring;
3444 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3445 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3447 switch(tagtype) {
3448 case SMB_POSIX_ACL_USER_OBJ:
3449 d_printf("default:user::");
3450 break;
3451 case SMB_POSIX_ACL_USER:
3452 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3453 d_printf("default:user:%u:", uorg);
3454 break;
3455 case SMB_POSIX_ACL_GROUP_OBJ:
3456 d_printf("default:group::");
3457 break;
3458 case SMB_POSIX_ACL_GROUP:
3459 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3460 d_printf("default:group:%u:", uorg);
3461 break;
3462 case SMB_POSIX_ACL_MASK:
3463 d_printf("default:mask::");
3464 break;
3465 case SMB_POSIX_ACL_OTHER:
3466 d_printf("default:other::");
3467 break;
3468 default:
3469 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3470 src, (unsigned int)tagtype );
3471 SAFE_FREE(retbuf);
3472 return 1;
3475 d_printf("%s\n", perms_to_string(permstring, perms));
3478 return 0;
3481 /****************************************************************************
3482 Get the EA list of a file
3483 ****************************************************************************/
3485 static int cmd_geteas(void)
3487 TALLOC_CTX *ctx = talloc_tos();
3488 char *src = NULL;
3489 char *name = NULL;
3490 char *targetname = NULL;
3491 struct cli_state *targetcli;
3492 NTSTATUS status;
3493 size_t i, num_eas;
3494 struct ea_struct *eas;
3496 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3497 d_printf("geteas filename\n");
3498 return 1;
3500 src = talloc_asprintf(ctx,
3501 "%s%s",
3502 client_get_cur_dir(),
3503 name);
3504 if (!src) {
3505 return 1;
3508 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3509 &targetname);
3510 if (!NT_STATUS_IS_OK(status)) {
3511 d_printf("stat %s: %s\n", src, nt_errstr(status));
3512 return 1;
3515 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3516 &num_eas, &eas);
3517 if (!NT_STATUS_IS_OK(status)) {
3518 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3519 return 1;
3522 for (i=0; i<num_eas; i++) {
3523 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3524 dump_data_file(eas[i].value.data, eas[i].value.length, false,
3525 stdout);
3526 d_printf("\n");
3529 TALLOC_FREE(eas);
3531 return 0;
3534 /****************************************************************************
3535 Set an EA of a file
3536 ****************************************************************************/
3538 static int cmd_setea(void)
3540 TALLOC_CTX *ctx = talloc_tos();
3541 char *src = NULL;
3542 char *name = NULL;
3543 char *eaname = NULL;
3544 char *eavalue = NULL;
3545 char *targetname = NULL;
3546 struct cli_state *targetcli;
3547 NTSTATUS status;
3549 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3550 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3551 d_printf("setea filename eaname value\n");
3552 return 1;
3554 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3555 eavalue = talloc_strdup(ctx, "");
3557 src = talloc_asprintf(ctx,
3558 "%s%s",
3559 client_get_cur_dir(),
3560 name);
3561 if (!src) {
3562 return 1;
3565 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3566 &targetname);
3567 if (!NT_STATUS_IS_OK(status)) {
3568 d_printf("stat %s: %s\n", src, nt_errstr(status));
3569 return 1;
3572 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3573 strlen(eavalue));
3574 if (!NT_STATUS_IS_OK(status)) {
3575 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3576 return 1;
3579 return 0;
3582 /****************************************************************************
3583 UNIX stat.
3584 ****************************************************************************/
3586 static int cmd_stat(void)
3588 TALLOC_CTX *ctx = talloc_tos();
3589 char *src = NULL;
3590 char *name = NULL;
3591 char *targetname = NULL;
3592 struct cli_state *targetcli;
3593 fstring mode_str;
3594 SMB_STRUCT_STAT sbuf;
3595 struct tm *lt;
3596 time_t tmp_time;
3597 NTSTATUS status;
3599 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3600 d_printf("stat file\n");
3601 return 1;
3603 src = talloc_asprintf(ctx,
3604 "%s%s",
3605 client_get_cur_dir(),
3606 name);
3607 if (!src) {
3608 return 1;
3611 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3612 &targetname);
3613 if (!NT_STATUS_IS_OK(status)) {
3614 d_printf("stat %s: %s\n", src, nt_errstr(status));
3615 return 1;
3618 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3619 d_printf("Server doesn't support UNIX CIFS calls.\n");
3620 return 1;
3623 status = cli_posix_stat(targetcli, targetname, &sbuf);
3624 if (!NT_STATUS_IS_OK(status)) {
3625 d_printf("%s stat file %s\n",
3626 nt_errstr(status), src);
3627 return 1;
3630 /* Print out the stat values. */
3631 d_printf("File: %s\n", src);
3632 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3633 (double)sbuf.st_ex_size,
3634 (unsigned int)sbuf.st_ex_blocks,
3635 filetype_to_str(sbuf.st_ex_mode));
3637 #if defined(S_ISCHR) && defined(S_ISBLK)
3638 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3639 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3640 (double)sbuf.st_ex_ino,
3641 (unsigned int)sbuf.st_ex_nlink,
3642 unix_dev_major(sbuf.st_ex_rdev),
3643 unix_dev_minor(sbuf.st_ex_rdev));
3644 } else
3645 #endif
3646 d_printf("Inode: %.0f\tLinks: %u\n",
3647 (double)sbuf.st_ex_ino,
3648 (unsigned int)sbuf.st_ex_nlink);
3650 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3651 ((int)sbuf.st_ex_mode & 0777),
3652 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3653 (unsigned int)sbuf.st_ex_uid,
3654 (unsigned int)sbuf.st_ex_gid);
3656 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3657 lt = localtime(&tmp_time);
3658 if (lt) {
3659 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3660 } else {
3661 fstrcpy(mode_str, "unknown");
3663 d_printf("Access: %s\n", mode_str);
3665 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
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("Modify: %s\n", mode_str);
3674 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
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("Change: %s\n", mode_str);
3683 return 0;
3687 /****************************************************************************
3688 UNIX chown.
3689 ****************************************************************************/
3691 static int cmd_chown(void)
3693 TALLOC_CTX *ctx = talloc_tos();
3694 char *src = NULL;
3695 uid_t uid;
3696 gid_t gid;
3697 char *buf, *buf2, *buf3;
3698 struct cli_state *targetcli;
3699 char *targetname = NULL;
3700 NTSTATUS status;
3702 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3703 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3704 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3705 d_printf("chown uid gid file\n");
3706 return 1;
3709 uid = (uid_t)atoi(buf);
3710 gid = (gid_t)atoi(buf2);
3712 src = talloc_asprintf(ctx,
3713 "%s%s",
3714 client_get_cur_dir(),
3715 buf3);
3716 if (!src) {
3717 return 1;
3719 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3720 &targetname);
3721 if (!NT_STATUS_IS_OK(status)) {
3722 d_printf("chown %s: %s\n", src, nt_errstr(status));
3723 return 1;
3726 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3727 d_printf("Server doesn't support UNIX CIFS calls.\n");
3728 return 1;
3731 status = cli_posix_chown(targetcli, targetname, uid, gid);
3732 if (!NT_STATUS_IS_OK(status)) {
3733 d_printf("%s chown file %s uid=%d, gid=%d\n",
3734 nt_errstr(status), src, (int)uid, (int)gid);
3735 return 1;
3738 return 0;
3741 /****************************************************************************
3742 Rename some file.
3743 ****************************************************************************/
3745 static int cmd_rename(void)
3747 TALLOC_CTX *ctx = talloc_tos();
3748 char *src, *dest;
3749 char *buf, *buf2;
3750 struct cli_state *targetcli;
3751 char *targetsrc;
3752 char *targetdest;
3753 NTSTATUS status;
3755 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3756 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3757 d_printf("rename <src> <dest>\n");
3758 return 1;
3761 src = talloc_asprintf(ctx,
3762 "%s%s",
3763 client_get_cur_dir(),
3764 buf);
3765 if (!src) {
3766 return 1;
3769 dest = talloc_asprintf(ctx,
3770 "%s%s",
3771 client_get_cur_dir(),
3772 buf2);
3773 if (!dest) {
3774 return 1;
3777 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3778 &targetsrc);
3779 if (!NT_STATUS_IS_OK(status)) {
3780 d_printf("rename %s: %s\n", src, nt_errstr(status));
3781 return 1;
3784 status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3785 &targetdest);
3786 if (!NT_STATUS_IS_OK(status)) {
3787 d_printf("rename %s: %s\n", dest, nt_errstr(status));
3788 return 1;
3791 status = cli_rename(targetcli, targetsrc, targetdest);
3792 if (!NT_STATUS_IS_OK(status)) {
3793 d_printf("%s renaming files %s -> %s \n",
3794 nt_errstr(status),
3795 targetsrc,
3796 targetdest);
3797 return 1;
3800 return 0;
3803 /****************************************************************************
3804 Print the volume name.
3805 ****************************************************************************/
3807 static int cmd_volume(void)
3809 char *volname;
3810 uint32_t serial_num;
3811 time_t create_date;
3812 NTSTATUS status;
3814 status = cli_get_fs_volume_info(cli, talloc_tos(),
3815 &volname, &serial_num,
3816 &create_date);
3817 if (!NT_STATUS_IS_OK(status)) {
3818 d_printf("Error %s getting volume info\n", nt_errstr(status));
3819 return 1;
3822 d_printf("Volume: |%s| serial number 0x%x\n",
3823 volname, (unsigned int)serial_num);
3824 return 0;
3827 /****************************************************************************
3828 Hard link files using the NT call.
3829 ****************************************************************************/
3831 static int cmd_hardlink(void)
3833 TALLOC_CTX *ctx = talloc_tos();
3834 char *src, *dest;
3835 char *buf, *buf2;
3836 struct cli_state *targetcli;
3837 char *targetname;
3838 NTSTATUS status;
3840 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3841 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3842 d_printf("hardlink <src> <dest>\n");
3843 return 1;
3846 src = talloc_asprintf(ctx,
3847 "%s%s",
3848 client_get_cur_dir(),
3849 buf);
3850 if (!src) {
3851 return 1;
3854 dest = talloc_asprintf(ctx,
3855 "%s%s",
3856 client_get_cur_dir(),
3857 buf2);
3858 if (!dest) {
3859 return 1;
3862 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3863 &targetname);
3864 if (!NT_STATUS_IS_OK(status)) {
3865 d_printf("hardlink %s: %s\n", src, nt_errstr(status));
3866 return 1;
3869 status = cli_nt_hardlink(targetcli, targetname, dest);
3870 if (!NT_STATUS_IS_OK(status)) {
3871 d_printf("%s doing an NT hard link of files\n",
3872 nt_errstr(status));
3873 return 1;
3876 return 0;
3879 /****************************************************************************
3880 Toggle the prompt flag.
3881 ****************************************************************************/
3883 static int cmd_prompt(void)
3885 prompt = !prompt;
3886 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3887 return 1;
3890 /****************************************************************************
3891 Set the newer than time.
3892 ****************************************************************************/
3894 static int cmd_newer(void)
3896 TALLOC_CTX *ctx = talloc_tos();
3897 char *buf;
3898 bool ok;
3899 SMB_STRUCT_STAT sbuf;
3901 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3902 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3903 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3904 DEBUG(1,("Getting files newer than %s",
3905 time_to_asc(newer_than)));
3906 } else {
3907 newer_than = 0;
3910 if (ok && newer_than == 0) {
3911 d_printf("Error setting newer-than time\n");
3912 return 1;
3915 return 0;
3918 /****************************************************************************
3919 Watch directory changes
3920 ****************************************************************************/
3922 static int cmd_notify(void)
3924 TALLOC_CTX *frame = talloc_stackframe();
3925 char *name, *buf;
3926 NTSTATUS status;
3927 uint16_t fnum;
3929 name = talloc_strdup(talloc_tos(), client_get_cur_dir());
3930 if (name == NULL) {
3931 goto fail;
3933 if (!next_token_talloc(talloc_tos(), &cmd_ptr, &buf, NULL)) {
3934 goto usage;
3936 name = talloc_asprintf_append(name, "%s", buf);
3937 if (name == NULL) {
3938 goto fail;
3940 status = cli_ntcreate(
3941 cli, name, 0, FILE_READ_DATA, 0,
3942 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3943 FILE_OPEN, 0, 0, &fnum);
3944 if (!NT_STATUS_IS_OK(status)) {
3945 d_printf("Could not open file: %s\n", nt_errstr(status));
3946 goto fail;
3949 while (1) {
3950 uint32_t i, num_changes;
3951 struct notify_change *changes;
3953 status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL,
3954 true,
3955 talloc_tos(), &num_changes, &changes);
3956 if (!NT_STATUS_IS_OK(status)) {
3957 d_printf("notify returned %s\n",
3958 nt_errstr(status));
3959 goto fail;
3961 for (i=0; i<num_changes; i++) {
3962 printf("%4.4x %s\n", changes[i].action,
3963 changes[i].name);
3965 TALLOC_FREE(changes);
3967 usage:
3968 d_printf("notify <file>\n");
3969 fail:
3970 TALLOC_FREE(frame);
3971 return 1;
3974 /****************************************************************************
3975 Set the archive level.
3976 ****************************************************************************/
3978 static int cmd_archive(void)
3980 TALLOC_CTX *ctx = talloc_tos();
3981 char *buf;
3983 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3984 archive_level = atoi(buf);
3985 } else {
3986 d_printf("Archive level is %d\n",archive_level);
3989 return 0;
3992 /****************************************************************************
3993 Toggle the backup_intent state.
3994 ****************************************************************************/
3996 static int cmd_backup(void)
3998 backup_intent = !backup_intent;
3999 cli_set_backup_intent(cli, backup_intent);
4000 DEBUG(2,("backup intent is now %s\n",backup_intent?"on":"off"));
4001 return 1;
4004 /****************************************************************************
4005 Toggle the lowercaseflag.
4006 ****************************************************************************/
4008 static int cmd_lowercase(void)
4010 lowercase = !lowercase;
4011 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
4012 return 0;
4015 /****************************************************************************
4016 Toggle the case sensitive flag.
4017 ****************************************************************************/
4019 static int cmd_setcase(void)
4021 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
4023 cli_set_case_sensitive(cli, !orig_case_sensitive);
4024 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
4025 "on":"off"));
4026 return 0;
4029 /****************************************************************************
4030 Toggle the showacls flag.
4031 ****************************************************************************/
4033 static int cmd_showacls(void)
4035 showacls = !showacls;
4036 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
4037 return 0;
4041 /****************************************************************************
4042 Toggle the recurse flag.
4043 ****************************************************************************/
4045 static int cmd_recurse(void)
4047 recurse = !recurse;
4048 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
4049 return 0;
4052 /****************************************************************************
4053 Toggle the translate flag.
4054 ****************************************************************************/
4056 static int cmd_translate(void)
4058 translation = !translation;
4059 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4060 translation?"on":"off"));
4061 return 0;
4064 /****************************************************************************
4065 Do the lcd command.
4066 ****************************************************************************/
4068 static int cmd_lcd(void)
4070 TALLOC_CTX *ctx = talloc_tos();
4071 char *buf;
4072 char *d;
4074 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4075 if (chdir(buf) == -1) {
4076 d_printf("chdir to %s failed (%s)\n",
4077 buf, strerror(errno));
4080 d = sys_getwd();
4081 if (!d) {
4082 return 1;
4084 DEBUG(2,("the local directory is now %s\n",d));
4085 SAFE_FREE(d);
4086 return 0;
4089 /****************************************************************************
4090 Get a file restarting at end of local file.
4091 ****************************************************************************/
4093 static int cmd_reget(void)
4095 TALLOC_CTX *ctx = talloc_tos();
4096 char *local_name = NULL;
4097 char *remote_name = NULL;
4098 char *fname = NULL;
4099 char *p = NULL;
4101 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4102 if (!remote_name) {
4103 return 1;
4106 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
4107 d_printf("reget <filename>\n");
4108 return 1;
4110 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
4111 if (!remote_name) {
4112 return 1;
4114 remote_name = clean_name(ctx,remote_name);
4115 if (!remote_name) {
4116 return 1;
4119 local_name = fname;
4120 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
4121 if (p) {
4122 local_name = p;
4125 return do_get(remote_name, local_name, true);
4128 /****************************************************************************
4129 Put a file restarting at end of local file.
4130 ****************************************************************************/
4132 static int cmd_reput(void)
4134 TALLOC_CTX *ctx = talloc_tos();
4135 char *local_name = NULL;
4136 char *remote_name = NULL;
4137 char *buf;
4138 SMB_STRUCT_STAT st;
4140 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4141 if (!remote_name) {
4142 return 1;
4145 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
4146 d_printf("reput <filename>\n");
4147 return 1;
4150 if (!file_exist_stat(local_name, &st, false)) {
4151 d_printf("%s does not exist\n", local_name);
4152 return 1;
4155 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4156 remote_name = talloc_asprintf_append(remote_name,
4157 "%s", buf);
4158 } else {
4159 remote_name = talloc_asprintf_append(remote_name,
4160 "%s", local_name);
4162 if (!remote_name) {
4163 return 1;
4166 remote_name = clean_name(ctx, remote_name);
4167 if (!remote_name) {
4168 return 1;
4171 return do_put(remote_name, local_name, true);
4174 /****************************************************************************
4175 List a share name.
4176 ****************************************************************************/
4178 static void browse_fn(const char *name, uint32 m,
4179 const char *comment, void *state)
4181 const char *typestr = "";
4183 switch (m & 7) {
4184 case STYPE_DISKTREE:
4185 typestr = "Disk";
4186 break;
4187 case STYPE_PRINTQ:
4188 typestr = "Printer";
4189 break;
4190 case STYPE_DEVICE:
4191 typestr = "Device";
4192 break;
4193 case STYPE_IPC:
4194 typestr = "IPC";
4195 break;
4197 /* FIXME: If the remote machine returns non-ascii characters
4198 in any of these fields, they can corrupt the output. We
4199 should remove them. */
4200 if (!grepable) {
4201 d_printf("\t%-15s %-10.10s%s\n",
4202 name,typestr,comment);
4203 } else {
4204 d_printf ("%s|%s|%s\n",typestr,name,comment);
4208 static bool browse_host_rpc(bool sort)
4210 NTSTATUS status;
4211 struct rpc_pipe_client *pipe_hnd = NULL;
4212 TALLOC_CTX *frame = talloc_stackframe();
4213 WERROR werr;
4214 struct srvsvc_NetShareInfoCtr info_ctr;
4215 struct srvsvc_NetShareCtr1 ctr1;
4216 uint32_t resume_handle = 0;
4217 uint32_t total_entries = 0;
4218 int i;
4219 struct dcerpc_binding_handle *b;
4221 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
4222 &pipe_hnd);
4224 if (!NT_STATUS_IS_OK(status)) {
4225 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4226 nt_errstr(status)));
4227 TALLOC_FREE(frame);
4228 return false;
4231 b = pipe_hnd->binding_handle;
4233 ZERO_STRUCT(info_ctr);
4234 ZERO_STRUCT(ctr1);
4236 info_ctr.level = 1;
4237 info_ctr.ctr.ctr1 = &ctr1;
4239 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4240 pipe_hnd->desthost,
4241 &info_ctr,
4242 0xffffffff,
4243 &total_entries,
4244 &resume_handle,
4245 &werr);
4247 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4248 TALLOC_FREE(pipe_hnd);
4249 TALLOC_FREE(frame);
4250 return false;
4253 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4254 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4255 browse_fn(info.name, info.type, info.comment, NULL);
4258 TALLOC_FREE(pipe_hnd);
4259 TALLOC_FREE(frame);
4260 return true;
4263 /****************************************************************************
4264 Try and browse available connections on a host.
4265 ****************************************************************************/
4267 static bool browse_host(bool sort)
4269 int ret;
4270 if (!grepable) {
4271 d_printf("\n\tSharename Type Comment\n");
4272 d_printf("\t--------- ---- -------\n");
4275 if (browse_host_rpc(sort)) {
4276 return true;
4279 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1) {
4280 NTSTATUS status = cli_nt_error(cli);
4281 d_printf("Error returning browse list: %s\n",
4282 nt_errstr(status));
4285 return (ret != -1);
4288 /****************************************************************************
4289 List a server name.
4290 ****************************************************************************/
4292 static void server_fn(const char *name, uint32 m,
4293 const char *comment, void *state)
4296 if (!grepable){
4297 d_printf("\t%-16s %s\n", name, comment);
4298 } else {
4299 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4303 /****************************************************************************
4304 Try and browse available connections on a host.
4305 ****************************************************************************/
4307 static bool list_servers(const char *wk_grp)
4309 fstring state;
4311 if (!cli->server_domain)
4312 return false;
4314 if (!grepable) {
4315 d_printf("\n\tServer Comment\n");
4316 d_printf("\t--------- -------\n");
4318 fstrcpy( state, "Server" );
4319 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4320 state);
4322 if (!grepable) {
4323 d_printf("\n\tWorkgroup Master\n");
4324 d_printf("\t--------- -------\n");
4327 fstrcpy( state, "Workgroup" );
4328 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4329 server_fn, state);
4330 return true;
4333 /****************************************************************************
4334 Print or set current VUID
4335 ****************************************************************************/
4337 static int cmd_vuid(void)
4339 TALLOC_CTX *ctx = talloc_tos();
4340 char *buf;
4342 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4343 d_printf("Current VUID is %d\n",
4344 cli_state_get_uid(cli));
4345 return 0;
4348 cli_state_set_uid(cli, atoi(buf));
4349 return 0;
4352 /****************************************************************************
4353 Setup a new VUID, by issuing a session setup
4354 ****************************************************************************/
4356 static int cmd_logon(void)
4358 TALLOC_CTX *ctx = talloc_tos();
4359 char *l_username, *l_password;
4360 NTSTATUS nt_status;
4362 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4363 d_printf("logon <username> [<password>]\n");
4364 return 0;
4367 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4368 char pwd[256] = {0};
4369 int rc;
4371 rc = samba_getpass("Password: ", pwd, sizeof(pwd), false, false);
4372 if (rc == 0) {
4373 l_password = talloc_strdup(ctx, pwd);
4376 if (!l_password) {
4377 return 1;
4380 nt_status = cli_session_setup(cli, l_username,
4381 l_password, strlen(l_password),
4382 l_password, strlen(l_password),
4383 lp_workgroup());
4384 if (!NT_STATUS_IS_OK(nt_status)) {
4385 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4386 return -1;
4389 d_printf("Current VUID is %d\n", cli_state_get_uid(cli));
4390 return 0;
4394 * close the session
4397 static int cmd_logoff(void)
4399 NTSTATUS status;
4401 status = cli_ulogoff(cli);
4402 if (!NT_STATUS_IS_OK(status)) {
4403 d_printf("logoff failed: %s\n", nt_errstr(status));
4404 return -1;
4407 d_printf("logoff successful\n");
4408 return 0;
4413 * tree connect (connect to a share)
4416 static int cmd_tcon(void)
4418 TALLOC_CTX *ctx = talloc_tos();
4419 char *sharename;
4420 NTSTATUS status;
4422 if (!next_token_talloc(ctx, &cmd_ptr, &sharename, NULL)) {
4423 d_printf("tcon <sharename>\n");
4424 return 0;
4427 if (!sharename) {
4428 return 1;
4431 status = cli_tree_connect(cli, sharename, "?????", "", 0);
4432 if (!NT_STATUS_IS_OK(status)) {
4433 d_printf("tcon failed: %s\n", nt_errstr(status));
4434 return -1;
4437 talloc_free(sharename);
4439 d_printf("tcon to %s successful, tid: %u\n", sharename,
4440 cli_state_get_tid(cli));
4441 return 0;
4445 * tree disconnect (disconnect from a share)
4448 static int cmd_tdis(void)
4450 NTSTATUS status;
4452 status = cli_tdis(cli);
4453 if (!NT_STATUS_IS_OK(status)) {
4454 d_printf("tdis failed: %s\n", nt_errstr(status));
4455 return -1;
4458 d_printf("tdis successful\n");
4459 return 0;
4464 * get or set tid
4467 static int cmd_tid(void)
4469 TALLOC_CTX *ctx = talloc_tos();
4470 char *tid_str;
4472 if (!next_token_talloc(ctx, &cmd_ptr, &tid_str, NULL)) {
4473 if (cli_state_has_tcon(cli)) {
4474 d_printf("current tid is %d\n", cli_state_get_tid(cli));
4475 } else {
4476 d_printf("no tcon currently\n");
4478 } else {
4479 uint16_t tid = atoi(tid_str);
4480 cli_state_set_tid(cli, tid);
4483 return 0;
4487 /****************************************************************************
4488 list active connections
4489 ****************************************************************************/
4491 static int cmd_list_connect(void)
4493 cli_cm_display(cli);
4494 return 0;
4497 /****************************************************************************
4498 display the current active client connection
4499 ****************************************************************************/
4501 static int cmd_show_connect( void )
4503 TALLOC_CTX *ctx = talloc_tos();
4504 struct cli_state *targetcli;
4505 char *targetpath;
4506 NTSTATUS status;
4508 status = cli_resolve_path(ctx, "", auth_info, cli,
4509 client_get_cur_dir(), &targetcli,
4510 &targetpath);
4511 if (!NT_STATUS_IS_OK(status)) {
4512 d_printf("showconnect %s: %s\n", cur_dir, nt_errstr(status));
4513 return 1;
4516 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli->conn), targetcli->share);
4517 return 0;
4520 /****************************************************************************
4521 iosize command
4522 ***************************************************************************/
4524 int cmd_iosize(void)
4526 TALLOC_CTX *ctx = talloc_tos();
4527 char *buf;
4528 int iosize;
4530 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4531 if (!smb_encrypt) {
4532 d_printf("iosize <n> or iosize 0x<n>. "
4533 "Minimum is 16384 (0x4000), "
4534 "max is 16776960 (0xFFFF00)\n");
4535 } else {
4536 d_printf("iosize <n> or iosize 0x<n>. "
4537 "(Encrypted connection) ,"
4538 "Minimum is 16384 (0x4000), "
4539 "max is 130048 (0x1FC00)\n");
4541 return 1;
4544 iosize = strtol(buf,NULL,0);
4545 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4546 d_printf("iosize out of range for encrypted "
4547 "connection (min = 16384 (0x4000), "
4548 "max = 130048 (0x1FC00)");
4549 return 1;
4550 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4551 d_printf("iosize out of range (min = 16384 (0x4000), "
4552 "max = 16776960 (0xFFFF00)");
4553 return 1;
4556 io_bufsize = iosize;
4557 d_printf("iosize is now %d\n", io_bufsize);
4558 return 0;
4561 /****************************************************************************
4562 history
4563 ****************************************************************************/
4564 static int cmd_history(void)
4566 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4567 HIST_ENTRY **hlist;
4568 int i;
4570 hlist = history_list();
4572 for (i = 0; hlist && hlist[i]; i++) {
4573 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4575 #else
4576 DEBUG(0,("no history without readline support\n"));
4577 #endif
4579 return 0;
4582 /* Some constants for completing filename arguments */
4584 #define COMPL_NONE 0 /* No completions */
4585 #define COMPL_REMOTE 1 /* Complete remote filename */
4586 #define COMPL_LOCAL 2 /* Complete local filename */
4588 /* This defines the commands supported by this client.
4589 * NOTE: The "!" must be the last one in the list because it's fn pointer
4590 * field is NULL, and NULL in that field is used in process_tok()
4591 * (below) to indicate the end of the list. crh
4593 static struct {
4594 const char *name;
4595 int (*fn)(void);
4596 const char *description;
4597 char compl_args[2]; /* Completion argument info */
4598 } commands[] = {
4599 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4600 {"allinfo",cmd_allinfo,"<file> show all available info",
4601 {COMPL_NONE,COMPL_NONE}},
4602 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4603 {"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}},
4604 {"backup",cmd_backup,"toggle backup intent state",{COMPL_NONE,COMPL_NONE}},
4605 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4606 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4607 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4608 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4609 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4610 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4611 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4612 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4613 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4614 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4615 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4616 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4617 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4618 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4619 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4620 {COMPL_REMOTE, COMPL_LOCAL}},
4621 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4622 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4623 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4624 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4625 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4626 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4627 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4628 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4629 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4630 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4631 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4632 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4633 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4634 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4635 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4636 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4637 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4638 {"notify",cmd_notify,"<file>Get notified of dir changes",{COMPL_REMOTE,COMPL_NONE}},
4639 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4640 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4641 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4642 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4643 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4644 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4645 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4646 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4647 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4648 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4649 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4650 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4651 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4652 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4653 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4654 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4655 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4656 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4657 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4658 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4659 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4660 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4661 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4662 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4663 {COMPL_REMOTE, COMPL_LOCAL}},
4664 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4665 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4666 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4667 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4668 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4669 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4670 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4671 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4672 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4673 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4674 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4675 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4676 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4677 {"tcon",cmd_tcon,"connect to a share" ,{COMPL_NONE,COMPL_NONE}},
4678 {"tdis",cmd_tdis,"disconnect from a share",{COMPL_NONE,COMPL_NONE}},
4679 {"tid",cmd_tid,"show or set the current tid (tree-id)",{COMPL_NONE,COMPL_NONE}},
4680 {"logoff",cmd_logoff,"log off (close the session)",{COMPL_NONE,COMPL_NONE}},
4681 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4683 /* Yes, this must be here, see crh's comment above. */
4684 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4685 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4688 /*******************************************************************
4689 Lookup a command string in the list of commands, including
4690 abbreviations.
4691 ******************************************************************/
4693 static int process_tok(char *tok)
4695 int i = 0, matches = 0;
4696 int cmd=0;
4697 int tok_len = strlen(tok);
4699 while (commands[i].fn != NULL) {
4700 if (strequal(commands[i].name,tok)) {
4701 matches = 1;
4702 cmd = i;
4703 break;
4704 } else if (strnequal(commands[i].name, tok, tok_len)) {
4705 matches++;
4706 cmd = i;
4708 i++;
4711 if (matches == 0)
4712 return(-1);
4713 else if (matches == 1)
4714 return(cmd);
4715 else
4716 return(-2);
4719 /****************************************************************************
4720 Help.
4721 ****************************************************************************/
4723 static int cmd_help(void)
4725 TALLOC_CTX *ctx = talloc_tos();
4726 int i=0,j;
4727 char *buf;
4729 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4730 if ((i = process_tok(buf)) >= 0)
4731 d_printf("HELP %s:\n\t%s\n\n",
4732 commands[i].name,commands[i].description);
4733 } else {
4734 while (commands[i].description) {
4735 for (j=0; commands[i].description && (j<5); j++) {
4736 d_printf("%-15s",commands[i].name);
4737 i++;
4739 d_printf("\n");
4742 return 0;
4745 /****************************************************************************
4746 Process a -c command string.
4747 ****************************************************************************/
4749 static int process_command_string(const char *cmd_in)
4751 TALLOC_CTX *ctx = talloc_tos();
4752 char *cmd = talloc_strdup(ctx, cmd_in);
4753 int rc = 0;
4755 if (!cmd) {
4756 return 1;
4758 /* establish the connection if not already */
4760 if (!cli) {
4761 NTSTATUS status;
4763 status = cli_cm_open(talloc_tos(), NULL,
4764 have_ip ? dest_ss_str : desthost,
4765 service, auth_info,
4766 true, smb_encrypt,
4767 max_protocol, port, name_type,
4768 &cli);
4769 if (!NT_STATUS_IS_OK(status)) {
4770 return 1;
4774 while (cmd[0] != '\0') {
4775 char *line;
4776 char *p;
4777 char *tok;
4778 int i;
4780 if ((p = strchr_m(cmd, ';')) == 0) {
4781 line = cmd;
4782 cmd += strlen(cmd);
4783 } else {
4784 *p = '\0';
4785 line = cmd;
4786 cmd = p + 1;
4789 /* and get the first part of the command */
4790 cmd_ptr = line;
4791 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4792 continue;
4795 if ((i = process_tok(tok)) >= 0) {
4796 rc = commands[i].fn();
4797 } else if (i == -2) {
4798 d_printf("%s: command abbreviation ambiguous\n",tok);
4799 } else {
4800 d_printf("%s: command not found\n",tok);
4804 return rc;
4807 #define MAX_COMPLETIONS 100
4809 struct completion_remote {
4810 char *dirmask;
4811 char **matches;
4812 int count, samelen;
4813 const char *text;
4814 int len;
4817 static NTSTATUS completion_remote_filter(const char *mnt,
4818 struct file_info *f,
4819 const char *mask,
4820 void *state)
4822 struct completion_remote *info = (struct completion_remote *)state;
4824 if (info->count >= MAX_COMPLETIONS - 1) {
4825 return NT_STATUS_OK;
4827 if (strncmp(info->text, f->name, info->len) != 0) {
4828 return NT_STATUS_OK;
4830 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4831 return NT_STATUS_OK;
4834 if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
4835 info->matches[info->count] = SMB_STRDUP(f->name);
4836 else {
4837 TALLOC_CTX *ctx = talloc_stackframe();
4838 char *tmp;
4840 tmp = talloc_strdup(ctx,info->dirmask);
4841 if (!tmp) {
4842 TALLOC_FREE(ctx);
4843 return NT_STATUS_NO_MEMORY;
4845 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4846 if (!tmp) {
4847 TALLOC_FREE(ctx);
4848 return NT_STATUS_NO_MEMORY;
4850 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4851 tmp = talloc_asprintf_append(tmp, "%s",
4852 CLI_DIRSEP_STR);
4854 if (!tmp) {
4855 TALLOC_FREE(ctx);
4856 return NT_STATUS_NO_MEMORY;
4858 info->matches[info->count] = SMB_STRDUP(tmp);
4859 TALLOC_FREE(ctx);
4861 if (info->matches[info->count] == NULL) {
4862 return NT_STATUS_OK;
4864 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4865 smb_readline_ca_char(0);
4867 if (info->count == 1) {
4868 info->samelen = strlen(info->matches[info->count]);
4869 } else {
4870 while (strncmp(info->matches[info->count],
4871 info->matches[info->count-1],
4872 info->samelen) != 0) {
4873 info->samelen--;
4876 info->count++;
4877 return NT_STATUS_OK;
4880 static char **remote_completion(const char *text, int len)
4882 TALLOC_CTX *ctx = talloc_stackframe();
4883 char *dirmask = NULL;
4884 char *targetpath = NULL;
4885 struct cli_state *targetcli = NULL;
4886 int i;
4887 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4888 NTSTATUS status;
4890 /* can't have non-static initialisation on Sun CC, so do it
4891 at run time here */
4892 info.samelen = len;
4893 info.text = text;
4894 info.len = len;
4896 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4897 if (!info.matches) {
4898 TALLOC_FREE(ctx);
4899 return NULL;
4903 * We're leaving matches[0] free to fill it later with the text to
4904 * display: Either the one single match or the longest common subset
4905 * of the matches.
4907 info.matches[0] = NULL;
4908 info.count = 1;
4910 for (i = len-1; i >= 0; i--) {
4911 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4912 break;
4916 info.text = text+i+1;
4917 info.samelen = info.len = len-i-1;
4919 if (i > 0) {
4920 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4921 if (!info.dirmask) {
4922 goto cleanup;
4924 strncpy(info.dirmask, text, i+1);
4925 info.dirmask[i+1] = 0;
4926 dirmask = talloc_asprintf(ctx,
4927 "%s%*s*",
4928 client_get_cur_dir(),
4929 i-1,
4930 text);
4931 } else {
4932 info.dirmask = SMB_STRDUP("");
4933 if (!info.dirmask) {
4934 goto cleanup;
4936 dirmask = talloc_asprintf(ctx,
4937 "%s*",
4938 client_get_cur_dir());
4940 if (!dirmask) {
4941 goto cleanup;
4944 status = cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli,
4945 &targetpath);
4946 if (!NT_STATUS_IS_OK(status)) {
4947 goto cleanup;
4949 status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
4950 completion_remote_filter, (void *)&info);
4951 if (!NT_STATUS_IS_OK(status)) {
4952 goto cleanup;
4955 if (info.count == 1) {
4957 * No matches at all, NULL indicates there is nothing
4959 SAFE_FREE(info.matches[0]);
4960 SAFE_FREE(info.matches);
4961 TALLOC_FREE(ctx);
4962 return NULL;
4965 if (info.count == 2) {
4967 * Exactly one match in matches[1], indicate this is the one
4968 * in matches[0].
4970 info.matches[0] = info.matches[1];
4971 info.matches[1] = NULL;
4972 info.count -= 1;
4973 TALLOC_FREE(ctx);
4974 return info.matches;
4978 * We got more than one possible match, set the result to the maximum
4979 * common subset
4982 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4983 info.matches[info.count] = NULL;
4984 TALLOC_FREE(ctx);
4985 return info.matches;
4987 cleanup:
4988 for (i = 0; i < info.count; i++) {
4989 SAFE_FREE(info.matches[i]);
4991 SAFE_FREE(info.matches);
4992 SAFE_FREE(info.dirmask);
4993 TALLOC_FREE(ctx);
4994 return NULL;
4997 static char **completion_fn(const char *text, int start, int end)
4999 smb_readline_ca_char(' ');
5001 if (start) {
5002 const char *buf, *sp;
5003 int i;
5004 char compl_type;
5006 buf = smb_readline_get_line_buffer();
5007 if (buf == NULL)
5008 return NULL;
5010 sp = strchr(buf, ' ');
5011 if (sp == NULL)
5012 return NULL;
5014 for (i = 0; commands[i].name; i++) {
5015 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
5016 (commands[i].name[sp - buf] == 0)) {
5017 break;
5020 if (commands[i].name == NULL)
5021 return NULL;
5023 while (*sp == ' ')
5024 sp++;
5026 if (sp == (buf + start))
5027 compl_type = commands[i].compl_args[0];
5028 else
5029 compl_type = commands[i].compl_args[1];
5031 if (compl_type == COMPL_REMOTE)
5032 return remote_completion(text, end - start);
5033 else /* fall back to local filename completion */
5034 return NULL;
5035 } else {
5036 char **matches;
5037 int i, len, samelen = 0, count=1;
5039 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
5040 if (!matches) {
5041 return NULL;
5043 matches[0] = NULL;
5045 len = strlen(text);
5046 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
5047 if (strncmp(text, commands[i].name, len) == 0) {
5048 matches[count] = SMB_STRDUP(commands[i].name);
5049 if (!matches[count])
5050 goto cleanup;
5051 if (count == 1)
5052 samelen = strlen(matches[count]);
5053 else
5054 while (strncmp(matches[count], matches[count-1], samelen) != 0)
5055 samelen--;
5056 count++;
5060 switch (count) {
5061 case 0: /* should never happen */
5062 case 1:
5063 goto cleanup;
5064 case 2:
5065 matches[0] = SMB_STRDUP(matches[1]);
5066 break;
5067 default:
5068 matches[0] = (char *)SMB_MALLOC(samelen+1);
5069 if (!matches[0])
5070 goto cleanup;
5071 strncpy(matches[0], matches[1], samelen);
5072 matches[0][samelen] = 0;
5074 matches[count] = NULL;
5075 return matches;
5077 cleanup:
5078 for (i = 0; i < count; i++)
5079 free(matches[i]);
5081 free(matches);
5082 return NULL;
5086 static bool finished;
5088 /****************************************************************************
5089 Make sure we swallow keepalives during idle time.
5090 ****************************************************************************/
5092 static void readline_callback(void)
5094 static time_t last_t;
5095 struct timespec now;
5096 time_t t;
5097 NTSTATUS status;
5098 unsigned char garbage[16];
5100 clock_gettime_mono(&now);
5101 t = now.tv_sec;
5103 if (t - last_t < 5)
5104 return;
5106 last_t = t;
5108 /* Ping the server to keep the connection alive using SMBecho. */
5109 memset(garbage, 0xf0, sizeof(garbage));
5110 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
5111 if (NT_STATUS_IS_OK(status)) {
5112 return;
5115 if (!cli_state_is_connected(cli)) {
5116 DEBUG(0,("SMBecho failed (%s). The connection is "
5117 "disconnected now\n", nt_errstr(status)));
5118 finished = true;
5119 smb_readline_done();
5123 /****************************************************************************
5124 Process commands on stdin.
5125 ****************************************************************************/
5127 static int process_stdin(void)
5129 int rc = 0;
5131 while (!finished) {
5132 TALLOC_CTX *frame = talloc_stackframe();
5133 char *tok = NULL;
5134 char *the_prompt = NULL;
5135 char *line = NULL;
5136 int i;
5138 /* display a prompt */
5139 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
5140 TALLOC_FREE(frame);
5141 break;
5143 line = smb_readline(the_prompt, readline_callback, completion_fn);
5144 SAFE_FREE(the_prompt);
5145 if (!line) {
5146 TALLOC_FREE(frame);
5147 break;
5150 /* special case - first char is ! */
5151 if (*line == '!') {
5152 if (system(line + 1) == -1) {
5153 d_printf("system() command %s failed.\n",
5154 line+1);
5156 SAFE_FREE(line);
5157 TALLOC_FREE(frame);
5158 continue;
5161 /* and get the first part of the command */
5162 cmd_ptr = line;
5163 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
5164 TALLOC_FREE(frame);
5165 SAFE_FREE(line);
5166 continue;
5169 if ((i = process_tok(tok)) >= 0) {
5170 rc = commands[i].fn();
5171 } else if (i == -2) {
5172 d_printf("%s: command abbreviation ambiguous\n",tok);
5173 } else {
5174 d_printf("%s: command not found\n",tok);
5176 SAFE_FREE(line);
5177 TALLOC_FREE(frame);
5179 return rc;
5182 /****************************************************************************
5183 Process commands from the client.
5184 ****************************************************************************/
5186 static int process(const char *base_directory)
5188 int rc = 0;
5189 NTSTATUS status;
5191 status = cli_cm_open(talloc_tos(), NULL,
5192 have_ip ? dest_ss_str : desthost,
5193 service, auth_info, true, smb_encrypt,
5194 max_protocol, port, name_type, &cli);
5195 if (!NT_STATUS_IS_OK(status)) {
5196 return 1;
5199 if (base_directory && *base_directory) {
5200 rc = do_cd(base_directory);
5201 if (rc) {
5202 cli_shutdown(cli);
5203 return rc;
5207 if (cmdstr) {
5208 rc = process_command_string(cmdstr);
5209 } else {
5210 process_stdin();
5213 cli_shutdown(cli);
5214 return rc;
5217 /****************************************************************************
5218 Handle a -L query.
5219 ****************************************************************************/
5221 static int do_host_query(const char *query_host)
5223 NTSTATUS status;
5225 status = cli_cm_open(talloc_tos(), NULL,
5226 have_ip ? dest_ss_str : query_host,
5227 "IPC$", auth_info, true, smb_encrypt,
5228 max_protocol, port, name_type, &cli);
5229 if (!NT_STATUS_IS_OK(status)) {
5230 return 1;
5233 browse_host(true);
5235 /* Ensure that the host can do IPv4 */
5237 if (!interpret_addr(query_host)) {
5238 struct sockaddr_storage ss;
5239 if (interpret_string_addr(&ss, query_host, 0) &&
5240 (ss.ss_family != AF_INET)) {
5241 d_printf("%s is an IPv6 address -- no workgroup available\n",
5242 query_host);
5243 return 1;
5247 if (port != NBT_SMB_PORT) {
5249 /* Workgroups simply don't make sense over anything
5250 else but port 139... */
5252 cli_shutdown(cli);
5253 status = cli_cm_open(talloc_tos(), NULL,
5254 have_ip ? dest_ss_str : query_host,
5255 "IPC$", auth_info, true, smb_encrypt,
5256 max_protocol, NBT_SMB_PORT, name_type,
5257 &cli);
5258 if (!NT_STATUS_IS_OK(status)) {
5259 cli = NULL;
5263 if (cli == NULL) {
5264 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5265 return 1;
5268 list_servers(lp_workgroup());
5270 cli_shutdown(cli);
5272 return(0);
5275 /****************************************************************************
5276 Handle a tar operation.
5277 ****************************************************************************/
5279 static int do_tar_op(const char *base_directory)
5281 int ret;
5283 /* do we already have a connection? */
5284 if (!cli) {
5285 NTSTATUS status;
5287 status = cli_cm_open(talloc_tos(), NULL,
5288 have_ip ? dest_ss_str : desthost,
5289 service, auth_info, true, smb_encrypt,
5290 max_protocol, port, name_type, &cli);
5291 if (!NT_STATUS_IS_OK(status)) {
5292 return 1;
5296 recurse=true;
5298 if (base_directory && *base_directory) {
5299 ret = do_cd(base_directory);
5300 if (ret) {
5301 cli_shutdown(cli);
5302 return ret;
5306 ret=process_tar();
5308 cli_shutdown(cli);
5310 return(ret);
5313 /****************************************************************************
5314 Handle a message operation.
5315 ****************************************************************************/
5317 static int do_message_op(struct user_auth_info *a_info)
5319 NTSTATUS status;
5321 status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL,
5322 port ? port : NBT_SMB_PORT, name_type,
5323 lp_netbios_name(), SMB_SIGNING_DEFAULT, 0, &cli);
5324 if (!NT_STATUS_IS_OK(status)) {
5325 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5326 return 1;
5329 send_message(get_cmdline_auth_info_username(a_info));
5330 cli_shutdown(cli);
5332 return 0;
5335 /****************************************************************************
5336 main program
5337 ****************************************************************************/
5339 int main(int argc,char *argv[])
5341 char *base_directory = NULL;
5342 int opt;
5343 char *query_host = NULL;
5344 bool message = false;
5345 static const char *new_name_resolve_order = NULL;
5346 poptContext pc;
5347 char *p;
5348 int rc = 0;
5349 bool tar_opt = false;
5350 bool service_opt = false;
5351 struct poptOption long_options[] = {
5352 POPT_AUTOHELP
5354 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5355 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5356 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5357 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5358 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5359 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5360 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5361 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5362 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5363 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5364 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5365 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5366 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5367 POPT_COMMON_SAMBA
5368 POPT_COMMON_CONNECTION
5369 POPT_COMMON_CREDENTIALS
5370 POPT_TABLEEND
5372 TALLOC_CTX *frame = talloc_stackframe();
5374 if (!client_set_cur_dir("\\")) {
5375 exit(ENOMEM);
5378 /* set default debug level to 1 regardless of what smb.conf sets */
5379 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5380 load_case_tables();
5382 lp_set_cmdline("log level", "1");
5384 auth_info = user_auth_info_init(frame);
5385 if (auth_info == NULL) {
5386 exit(1);
5388 popt_common_set_auth_info(auth_info);
5390 /* skip argv(0) */
5391 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5392 poptSetOtherOptionHelp(pc, "service <password>");
5394 while ((opt = poptGetNextOpt(pc)) != -1) {
5396 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5397 /* I see no other way to keep things sane --SSS */
5398 if (tar_opt == true) {
5399 while (poptPeekArg(pc)) {
5400 poptGetArg(pc);
5402 tar_opt = false;
5405 /* if the service has not yet been specified lets see if it is available in the popt stack */
5406 if (!service_opt && poptPeekArg(pc)) {
5407 service = talloc_strdup(frame, poptGetArg(pc));
5408 if (!service) {
5409 exit(ENOMEM);
5411 service_opt = true;
5414 /* if the service has already been retrieved then check if we have also a password */
5415 if (service_opt
5416 && (!get_cmdline_auth_info_got_pass(auth_info))
5417 && poptPeekArg(pc)) {
5418 set_cmdline_auth_info_password(auth_info,
5419 poptGetArg(pc));
5423 switch (opt) {
5424 case 'M':
5425 /* Messages are sent to NetBIOS name type 0x3
5426 * (Messenger Service). Make sure we default
5427 * to port 139 instead of port 445. srl,crh
5429 name_type = 0x03;
5430 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5431 if (!desthost) {
5432 exit(ENOMEM);
5434 if( !port )
5435 port = NBT_SMB_PORT;
5436 message = true;
5437 break;
5438 case 'I':
5440 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5441 exit(1);
5443 have_ip = true;
5444 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5446 break;
5447 case 'E':
5448 setup_logging("smbclient", DEBUG_STDERR );
5449 display_set_stderr();
5450 break;
5452 case 'L':
5453 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5454 if (!query_host) {
5455 exit(ENOMEM);
5457 break;
5458 case 'm':
5459 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5460 break;
5461 case 'T':
5462 /* We must use old option processing for this. Find the
5463 * position of the -T option in the raw argv[]. */
5465 int i;
5466 for (i = 1; i < argc; i++) {
5467 if (strncmp("-T", argv[i],2)==0)
5468 break;
5470 i++;
5471 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5472 poptPrintUsage(pc, stderr, 0);
5473 exit(1);
5476 /* this must be the last option, mark we have parsed it so that we know we have */
5477 tar_opt = true;
5478 break;
5479 case 'D':
5480 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5481 if (!base_directory) {
5482 exit(ENOMEM);
5484 break;
5485 case 'g':
5486 grepable=true;
5487 break;
5488 case 'e':
5489 smb_encrypt=true;
5490 break;
5491 case 'B':
5492 return(do_smb_browse());
5497 /* We may still have some leftovers after the last popt option has been called */
5498 if (tar_opt == true) {
5499 while (poptPeekArg(pc)) {
5500 poptGetArg(pc);
5502 tar_opt = false;
5505 /* if the service has not yet been specified lets see if it is available in the popt stack */
5506 if (!service_opt && poptPeekArg(pc)) {
5507 service = talloc_strdup(frame,poptGetArg(pc));
5508 if (!service) {
5509 exit(ENOMEM);
5511 service_opt = true;
5514 /* if the service has already been retrieved then check if we have also a password */
5515 if (service_opt
5516 && !get_cmdline_auth_info_got_pass(auth_info)
5517 && poptPeekArg(pc)) {
5518 set_cmdline_auth_info_password(auth_info,
5519 poptGetArg(pc));
5522 if ( override_logfile )
5523 setup_logging( lp_logfile(talloc_tos()), DEBUG_FILE );
5525 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5526 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5527 argv[0], get_dyn_CONFIGFILE());
5530 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5531 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5532 exit(-1);
5535 load_interfaces();
5537 if (service_opt && service) {
5538 size_t len;
5540 /* Convert any '/' characters in the service name to '\' characters */
5541 string_replace(service, '/','\\');
5542 if (count_chars(service,'\\') < 3) {
5543 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5544 poptPrintUsage(pc, stderr, 0);
5545 exit(1);
5547 /* Remove trailing slashes */
5548 len = strlen(service);
5549 while(len > 0 && service[len - 1] == '\\') {
5550 --len;
5551 service[len] = '\0';
5555 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5556 if (!init_names()) {
5557 fprintf(stderr, "init_names() failed\n");
5558 exit(1);
5561 if(new_name_resolve_order)
5562 lp_set_cmdline("name resolve order", new_name_resolve_order);
5564 if (!tar_type && !query_host && !service && !message) {
5565 poptPrintUsage(pc, stderr, 0);
5566 exit(1);
5569 poptFreeContext(pc);
5570 popt_burn_cmdline_password(argc, argv);
5572 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5574 /* Ensure we have a password (or equivalent). */
5575 set_cmdline_auth_info_getpass(auth_info);
5577 if (tar_type) {
5578 if (cmdstr)
5579 process_command_string(cmdstr);
5580 rc = do_tar_op(base_directory);
5581 } else if (query_host && *query_host) {
5582 char *qhost = query_host;
5583 char *slash;
5585 while (*qhost == '\\' || *qhost == '/')
5586 qhost++;
5588 if ((slash = strchr_m(qhost, '/'))
5589 || (slash = strchr_m(qhost, '\\'))) {
5590 *slash = 0;
5593 if ((p=strchr_m(qhost, '#'))) {
5594 *p = 0;
5595 p++;
5596 sscanf(p, "%x", &name_type);
5599 rc = do_host_query(qhost);
5600 } else if (message) {
5601 rc = do_message_op(auth_info);
5602 } else if (process(base_directory)) {
5603 rc = 1;
5606 TALLOC_FREE(frame);
5607 return rc;