tevent: call epoll_panic() if EPOLL_CTL_DEL failed
[Samba/gebeck_regimport.git] / source3 / client / client.c
blob8038021d83cd74b7571088c26afe77435546c491
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;
1365 rname = talloc_strdup(ctx, client_get_cur_dir());
1366 if (!rname) {
1367 return 1;
1370 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1371 if (!lname) {
1372 return 1;
1374 fd = mkstemp(lname);
1375 if (fd == -1) {
1376 d_printf("failed to create temporary file for more\n");
1377 return 1;
1379 close(fd);
1381 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1382 d_printf("more <filename>\n");
1383 unlink(lname);
1384 return 1;
1386 rname = talloc_asprintf_append(rname, "%s", fname);
1387 if (!rname) {
1388 return 1;
1390 rname = clean_name(ctx,rname);
1391 if (!rname) {
1392 return 1;
1395 rc = do_get(rname, lname, false);
1397 pager=getenv("PAGER");
1399 pager_cmd = talloc_asprintf(ctx,
1400 "%s %s",
1401 (pager? pager:PAGER),
1402 lname);
1403 if (!pager_cmd) {
1404 return 1;
1406 if (system(pager_cmd) == -1) {
1407 d_printf("system command '%s' returned -1\n",
1408 pager_cmd);
1410 unlink(lname);
1412 return rc;
1415 /****************************************************************************
1416 Do a mget command.
1417 ****************************************************************************/
1419 static int cmd_mget(void)
1421 TALLOC_CTX *ctx = talloc_tos();
1422 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1423 char *mget_mask = NULL;
1424 char *buf = NULL;
1425 NTSTATUS status = NT_STATUS_OK;
1427 if (recurse) {
1428 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1431 abort_mget = false;
1433 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1435 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1436 if (!mget_mask) {
1437 return 1;
1439 if (*buf == CLI_DIRSEP_CHAR) {
1440 mget_mask = talloc_strdup(ctx, buf);
1441 } else {
1442 mget_mask = talloc_asprintf_append(mget_mask,
1443 "%s", buf);
1445 if (!mget_mask) {
1446 return 1;
1448 status = do_list(mget_mask, attribute, do_mget, false, true);
1449 if (!NT_STATUS_IS_OK(status)) {
1450 return 1;
1454 if (mget_mask == NULL) {
1455 d_printf("nothing to mget\n");
1456 return 0;
1459 if (!*mget_mask) {
1460 mget_mask = talloc_asprintf(ctx,
1461 "%s*",
1462 client_get_cur_dir());
1463 if (!mget_mask) {
1464 return 1;
1466 status = do_list(mget_mask, attribute, do_mget, false, true);
1467 if (!NT_STATUS_IS_OK(status)) {
1468 return 1;
1472 return 0;
1475 /****************************************************************************
1476 Make a directory of name "name".
1477 ****************************************************************************/
1479 static bool do_mkdir(const char *name)
1481 TALLOC_CTX *ctx = talloc_tos();
1482 struct cli_state *targetcli;
1483 char *targetname = NULL;
1484 NTSTATUS status;
1486 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
1487 &targetname);
1488 if (!NT_STATUS_IS_OK(status)) {
1489 d_printf("mkdir %s: %s\n", name, nt_errstr(status));
1490 return false;
1493 status = cli_mkdir(targetcli, targetname);
1494 if (!NT_STATUS_IS_OK(status)) {
1495 d_printf("%s making remote directory %s\n",
1496 nt_errstr(status),name);
1497 return false;
1500 return true;
1503 /****************************************************************************
1504 Show 8.3 name of a file.
1505 ****************************************************************************/
1507 static bool do_altname(const char *name)
1509 fstring altname;
1510 NTSTATUS status;
1512 status = cli_qpathinfo_alt_name(cli, name, altname);
1513 if (!NT_STATUS_IS_OK(status)) {
1514 d_printf("%s getting alt name for %s\n",
1515 nt_errstr(status),name);
1516 return false;
1518 d_printf("%s\n", altname);
1520 return true;
1523 /****************************************************************************
1524 Exit client.
1525 ****************************************************************************/
1527 static int cmd_quit(void)
1529 cli_shutdown(cli);
1530 exit(0);
1531 /* NOTREACHED */
1532 return 0;
1535 /****************************************************************************
1536 Make a directory.
1537 ****************************************************************************/
1539 static int cmd_mkdir(void)
1541 TALLOC_CTX *ctx = talloc_tos();
1542 char *mask = NULL;
1543 char *buf = NULL;
1544 NTSTATUS status;
1546 mask = talloc_strdup(ctx, client_get_cur_dir());
1547 if (!mask) {
1548 return 1;
1551 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1552 if (!recurse) {
1553 d_printf("mkdir <dirname>\n");
1555 return 1;
1557 mask = talloc_asprintf_append(mask, "%s", buf);
1558 if (!mask) {
1559 return 1;
1562 if (recurse) {
1563 char *ddir = NULL;
1564 char *ddir2 = NULL;
1565 struct cli_state *targetcli;
1566 char *targetname = NULL;
1567 char *p = NULL;
1568 char *saveptr;
1570 ddir2 = talloc_strdup(ctx, "");
1571 if (!ddir2) {
1572 return 1;
1575 status = cli_resolve_path(ctx, "", auth_info, cli, mask,
1576 &targetcli, &targetname);
1577 if (!NT_STATUS_IS_OK(status)) {
1578 return 1;
1581 ddir = talloc_strdup(ctx, targetname);
1582 if (!ddir) {
1583 return 1;
1585 trim_char(ddir,'.','\0');
1586 p = strtok_r(ddir, "/\\", &saveptr);
1587 while (p) {
1588 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1589 if (!ddir2) {
1590 return 1;
1592 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1593 do_mkdir(ddir2);
1595 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1596 if (!ddir2) {
1597 return 1;
1599 p = strtok_r(NULL, "/\\", &saveptr);
1601 } else {
1602 do_mkdir(mask);
1605 return 0;
1608 /****************************************************************************
1609 Show alt name.
1610 ****************************************************************************/
1612 static int cmd_altname(void)
1614 TALLOC_CTX *ctx = talloc_tos();
1615 char *name;
1616 char *buf;
1618 name = talloc_strdup(ctx, client_get_cur_dir());
1619 if (!name) {
1620 return 1;
1623 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1624 d_printf("altname <file>\n");
1625 return 1;
1627 name = talloc_asprintf_append(name, "%s", buf);
1628 if (!name) {
1629 return 1;
1631 do_altname(name);
1632 return 0;
1635 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1637 char *attrs = talloc_zero_array(mem_ctx, char, 17);
1638 int i = 0;
1640 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1641 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1642 attrs[i++] = 'E';
1644 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1645 attrs[i++] = 'N';
1647 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1648 attrs[i++] = 'O';
1650 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1651 attrs[i++] = 'C';
1653 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1654 attrs[i++] = 'r';
1656 if (mode & FILE_ATTRIBUTE_SPARSE) {
1657 attrs[i++] = 's';
1659 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1660 attrs[i++] = 'T';
1662 if (mode & FILE_ATTRIBUTE_NORMAL) {
1663 attrs[i++] = 'N';
1665 if (mode & FILE_ATTRIBUTE_READONLY) {
1666 attrs[i++] = 'R';
1668 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1669 attrs[i++] = 'H';
1671 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1672 attrs[i++] = 'S';
1674 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1675 attrs[i++] = 'D';
1677 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1678 attrs[i++] = 'A';
1681 return attrs;
1684 /****************************************************************************
1685 Show all info we can get
1686 ****************************************************************************/
1688 static int do_allinfo(const char *name)
1690 fstring altname;
1691 struct timespec b_time, a_time, m_time, c_time;
1692 off_t size;
1693 uint16_t mode;
1694 SMB_INO_T ino;
1695 NTTIME tmp;
1696 uint16_t fnum;
1697 unsigned int num_streams;
1698 struct stream_struct *streams;
1699 int num_snapshots;
1700 char **snapshots;
1701 unsigned int i;
1702 NTSTATUS status;
1704 status = cli_qpathinfo_alt_name(cli, name, altname);
1705 if (!NT_STATUS_IS_OK(status)) {
1706 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1707 name);
1708 return false;
1710 d_printf("altname: %s\n", altname);
1712 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1713 &size, &mode, &ino);
1714 if (!NT_STATUS_IS_OK(status)) {
1715 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1716 name);
1717 return false;
1720 unix_timespec_to_nt_time(&tmp, b_time);
1721 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1723 unix_timespec_to_nt_time(&tmp, a_time);
1724 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1726 unix_timespec_to_nt_time(&tmp, m_time);
1727 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1729 unix_timespec_to_nt_time(&tmp, c_time);
1730 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1732 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1734 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1735 &streams);
1736 if (!NT_STATUS_IS_OK(status)) {
1737 d_printf("%s getting streams for %s\n", nt_errstr(status),
1738 name);
1739 return false;
1742 for (i=0; i<num_streams; i++) {
1743 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1744 (unsigned long long)streams[i].size);
1747 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1748 char *subst, *print;
1749 uint32_t flags;
1751 status = cli_readlink(cli, name, talloc_tos(), &subst, &print,
1752 &flags);
1753 if (!NT_STATUS_IS_OK(status)) {
1754 d_fprintf(stderr, "cli_readlink returned %s\n",
1755 nt_errstr(status));
1756 } else {
1757 d_printf("symlink: subst=[%s], print=[%s], flags=%x\n",
1758 subst, print, flags);
1759 TALLOC_FREE(subst);
1760 TALLOC_FREE(print);
1764 status = cli_ntcreate(cli, name, 0,
1765 SEC_FILE_READ_DATA | SEC_FILE_READ_ATTRIBUTE |
1766 SEC_STD_SYNCHRONIZE, 0,
1767 FILE_SHARE_READ|FILE_SHARE_WRITE
1768 |FILE_SHARE_DELETE,
1769 FILE_OPEN, 0x0, 0x0, &fnum);
1770 if (!NT_STATUS_IS_OK(status)) {
1772 * Ignore failure, it does not hurt if we can't list
1773 * snapshots
1775 return 0;
1777 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1778 true, &snapshots, &num_snapshots);
1779 if (!NT_STATUS_IS_OK(status)) {
1780 cli_close(cli, fnum);
1781 return 0;
1784 for (i=0; i<num_snapshots; i++) {
1785 char *snap_name;
1787 d_printf("%s\n", snapshots[i]);
1788 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1789 snapshots[i], name);
1790 status = cli_qpathinfo2(cli, snap_name, &b_time, &a_time,
1791 &m_time, &c_time, &size,
1792 NULL, NULL);
1793 if (!NT_STATUS_IS_OK(status)) {
1794 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1795 snap_name, nt_errstr(status));
1796 TALLOC_FREE(snap_name);
1797 continue;
1799 unix_timespec_to_nt_time(&tmp, b_time);
1800 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1801 unix_timespec_to_nt_time(&tmp, a_time);
1802 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1803 unix_timespec_to_nt_time(&tmp, m_time);
1804 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1805 unix_timespec_to_nt_time(&tmp, c_time);
1806 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1807 d_printf("size: %d\n", (int)size);
1810 TALLOC_FREE(snapshots);
1812 return 0;
1815 /****************************************************************************
1816 Show all info we can get
1817 ****************************************************************************/
1819 static int cmd_allinfo(void)
1821 TALLOC_CTX *ctx = talloc_tos();
1822 char *name;
1823 char *buf;
1825 name = talloc_strdup(ctx, client_get_cur_dir());
1826 if (!name) {
1827 return 1;
1830 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1831 d_printf("allinfo <file>\n");
1832 return 1;
1834 name = talloc_asprintf_append(name, "%s", buf);
1835 if (!name) {
1836 return 1;
1839 do_allinfo(name);
1841 return 0;
1844 /****************************************************************************
1845 Put a single file.
1846 ****************************************************************************/
1848 static int do_put(const char *rname, const char *lname, bool reput)
1850 TALLOC_CTX *ctx = talloc_tos();
1851 uint16_t fnum;
1852 XFILE *f;
1853 off_t start = 0;
1854 int rc = 0;
1855 struct timespec tp_start;
1856 struct cli_state *targetcli;
1857 char *targetname = NULL;
1858 struct push_state state;
1859 NTSTATUS status;
1861 status = cli_resolve_path(ctx, "", auth_info, cli, rname,
1862 &targetcli, &targetname);
1863 if (!NT_STATUS_IS_OK(status)) {
1864 d_printf("Failed to open %s: %s\n", rname, nt_errstr(status));
1865 return 1;
1868 clock_gettime_mono(&tp_start);
1870 if (reput) {
1871 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1872 if (NT_STATUS_IS_OK(status)) {
1873 if (!NT_STATUS_IS_OK(status = cli_qfileinfo_basic(
1874 targetcli, fnum, NULL,
1875 &start, NULL, NULL,
1876 NULL, NULL, NULL)) &&
1877 !NT_STATUS_IS_OK(status = cli_getattrE(
1878 targetcli, fnum, NULL,
1879 &start, NULL, NULL,
1880 NULL))) {
1881 d_printf("getattrib: %s\n", nt_errstr(status));
1882 return 1;
1885 } else {
1886 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1889 if (!NT_STATUS_IS_OK(status)) {
1890 d_printf("%s opening remote file %s\n", nt_errstr(status),
1891 rname);
1892 return 1;
1895 /* allow files to be piped into smbclient
1896 jdblair 24.jun.98
1898 Note that in this case this function will exit(0) rather
1899 than returning. */
1900 if (!strcmp(lname, "-")) {
1901 f = x_stdin;
1902 /* size of file is not known */
1903 } else {
1904 f = x_fopen(lname,O_RDONLY, 0);
1905 if (f && reput) {
1906 if (x_tseek(f, start, SEEK_SET) == -1) {
1907 d_printf("Error seeking local file\n");
1908 x_fclose(f);
1909 return 1;
1914 if (!f) {
1915 d_printf("Error opening local file %s\n",lname);
1916 return 1;
1919 DEBUG(1,("putting file %s as %s ",lname,
1920 rname));
1922 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1924 state.f = f;
1925 state.nread = 0;
1927 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1928 &state);
1929 if (!NT_STATUS_IS_OK(status)) {
1930 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1931 rc = 1;
1934 status = cli_close(targetcli, fnum);
1935 if (!NT_STATUS_IS_OK(status)) {
1936 d_printf("%s closing remote file %s\n", nt_errstr(status),
1937 rname);
1938 if (f != x_stdin) {
1939 x_fclose(f);
1941 return 1;
1944 if (f != x_stdin) {
1945 x_fclose(f);
1949 struct timespec tp_end;
1950 int this_time;
1952 clock_gettime_mono(&tp_end);
1953 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1954 put_total_time_ms += this_time;
1955 put_total_size += state.nread;
1957 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1958 state.nread / (1.024*this_time + 1.0e-4),
1959 put_total_size / (1.024*put_total_time_ms)));
1962 if (f == x_stdin) {
1963 cli_shutdown(cli);
1964 exit(rc);
1967 return rc;
1970 /****************************************************************************
1971 Put a file.
1972 ****************************************************************************/
1974 static int cmd_put(void)
1976 TALLOC_CTX *ctx = talloc_tos();
1977 char *lname;
1978 char *rname;
1979 char *buf;
1981 rname = talloc_strdup(ctx, client_get_cur_dir());
1982 if (!rname) {
1983 return 1;
1986 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1987 d_printf("put <filename>\n");
1988 return 1;
1991 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1992 rname = talloc_asprintf_append(rname, "%s", buf);
1993 } else {
1994 rname = talloc_asprintf_append(rname, "%s", lname);
1996 if (!rname) {
1997 return 1;
2000 rname = clean_name(ctx, rname);
2001 if (!rname) {
2002 return 1;
2006 SMB_STRUCT_STAT st;
2007 /* allow '-' to represent stdin
2008 jdblair, 24.jun.98 */
2009 if (!file_exist_stat(lname, &st, false) &&
2010 (strcmp(lname,"-"))) {
2011 d_printf("%s does not exist\n",lname);
2012 return 1;
2016 return do_put(rname, lname, false);
2019 /*************************************
2020 File list structure.
2021 *************************************/
2023 static struct file_list {
2024 struct file_list *prev, *next;
2025 char *file_path;
2026 bool isdir;
2027 } *file_list;
2029 /****************************************************************************
2030 Free a file_list structure.
2031 ****************************************************************************/
2033 static void free_file_list (struct file_list *l_head)
2035 struct file_list *list, *next;
2037 for (list = l_head; list; list = next) {
2038 next = list->next;
2039 DLIST_REMOVE(l_head, list);
2040 SAFE_FREE(list->file_path);
2041 SAFE_FREE(list);
2045 /****************************************************************************
2046 Seek in a directory/file list until you get something that doesn't start with
2047 the specified name.
2048 ****************************************************************************/
2050 static bool seek_list(struct file_list *list, char *name)
2052 while (list) {
2053 trim_string(list->file_path,"./","\n");
2054 if (strncmp(list->file_path, name, strlen(name)) != 0) {
2055 return true;
2057 list = list->next;
2060 return false;
2063 /****************************************************************************
2064 Set the file selection mask.
2065 ****************************************************************************/
2067 static int cmd_select(void)
2069 TALLOC_CTX *ctx = talloc_tos();
2070 char *new_fs = NULL;
2071 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2073 if (new_fs) {
2074 client_set_fileselection(new_fs);
2075 } else {
2076 client_set_fileselection("");
2078 return 0;
2081 /****************************************************************************
2082 Recursive file matching function act as find
2083 match must be always set to true when calling this function
2084 ****************************************************************************/
2086 static int file_find(struct file_list **list, const char *directory,
2087 const char *expression, bool match)
2089 DIR *dir;
2090 struct file_list *entry;
2091 struct stat statbuf;
2092 int ret;
2093 char *path;
2094 bool isdir;
2095 const char *dname;
2097 dir = opendir(directory);
2098 if (!dir)
2099 return -1;
2101 while ((dname = readdirname(dir))) {
2102 if (!strcmp("..", dname))
2103 continue;
2104 if (!strcmp(".", dname))
2105 continue;
2107 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2108 continue;
2111 isdir = false;
2112 if (!match || !gen_fnmatch(expression, dname)) {
2113 if (recurse) {
2114 ret = stat(path, &statbuf);
2115 if (ret == 0) {
2116 if (S_ISDIR(statbuf.st_mode)) {
2117 isdir = true;
2118 ret = file_find(list, path, expression, false);
2120 } else {
2121 d_printf("file_find: cannot stat file %s\n", path);
2124 if (ret == -1) {
2125 SAFE_FREE(path);
2126 closedir(dir);
2127 return -1;
2130 entry = SMB_MALLOC_P(struct file_list);
2131 if (!entry) {
2132 d_printf("Out of memory in file_find\n");
2133 closedir(dir);
2134 return -1;
2136 entry->file_path = path;
2137 entry->isdir = isdir;
2138 DLIST_ADD(*list, entry);
2139 } else {
2140 SAFE_FREE(path);
2144 closedir(dir);
2145 return 0;
2148 /****************************************************************************
2149 mput some files.
2150 ****************************************************************************/
2152 static int cmd_mput(void)
2154 TALLOC_CTX *ctx = talloc_tos();
2155 char *p = NULL;
2157 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2158 int ret;
2159 struct file_list *temp_list;
2160 char *quest, *lname, *rname;
2162 file_list = NULL;
2164 ret = file_find(&file_list, ".", p, true);
2165 if (ret) {
2166 free_file_list(file_list);
2167 continue;
2170 quest = NULL;
2171 lname = NULL;
2172 rname = NULL;
2174 for (temp_list = file_list; temp_list;
2175 temp_list = temp_list->next) {
2177 SAFE_FREE(lname);
2178 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2179 continue;
2181 trim_string(lname, "./", "/");
2183 /* check if it's a directory */
2184 if (temp_list->isdir) {
2185 /* if (!recurse) continue; */
2187 SAFE_FREE(quest);
2188 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2189 break;
2191 if (prompt && !yesno(quest)) { /* No */
2192 /* Skip the directory */
2193 lname[strlen(lname)-1] = '/';
2194 if (!seek_list(temp_list, lname))
2195 break;
2196 } else { /* Yes */
2197 SAFE_FREE(rname);
2198 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2199 break;
2201 normalize_name(rname);
2202 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2203 !do_mkdir(rname)) {
2204 DEBUG (0, ("Unable to make dir, skipping..."));
2205 /* Skip the directory */
2206 lname[strlen(lname)-1] = '/';
2207 if (!seek_list(temp_list, lname)) {
2208 break;
2212 continue;
2213 } else {
2214 SAFE_FREE(quest);
2215 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2216 break;
2218 if (prompt && !yesno(quest)) {
2219 /* No */
2220 continue;
2223 /* Yes */
2224 SAFE_FREE(rname);
2225 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2226 break;
2230 normalize_name(rname);
2232 do_put(rname, lname, false);
2234 free_file_list(file_list);
2235 SAFE_FREE(quest);
2236 SAFE_FREE(lname);
2237 SAFE_FREE(rname);
2240 return 0;
2243 /****************************************************************************
2244 Cancel a print job.
2245 ****************************************************************************/
2247 static int do_cancel(int job)
2249 if (cli_printjob_del(cli, job)) {
2250 d_printf("Job %d cancelled\n",job);
2251 return 0;
2252 } else {
2253 NTSTATUS status = cli_nt_error(cli);
2254 d_printf("Error cancelling job %d : %s\n",
2255 job, nt_errstr(status));
2256 return 1;
2260 /****************************************************************************
2261 Cancel a print job.
2262 ****************************************************************************/
2264 static int cmd_cancel(void)
2266 TALLOC_CTX *ctx = talloc_tos();
2267 char *buf = NULL;
2268 int job;
2270 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2271 d_printf("cancel <jobid> ...\n");
2272 return 1;
2274 do {
2275 job = atoi(buf);
2276 do_cancel(job);
2277 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2279 return 0;
2282 /****************************************************************************
2283 Print a file.
2284 ****************************************************************************/
2286 static int cmd_print(void)
2288 TALLOC_CTX *ctx = talloc_tos();
2289 char *lname = NULL;
2290 char *rname = NULL;
2291 char *p = NULL;
2293 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2294 d_printf("print <filename>\n");
2295 return 1;
2298 rname = talloc_strdup(ctx, lname);
2299 if (!rname) {
2300 return 1;
2302 p = strrchr_m(rname,'/');
2303 if (p) {
2304 rname = talloc_asprintf(ctx,
2305 "%s-%d",
2306 p+1,
2307 (int)getpid());
2309 if (strequal(lname,"-")) {
2310 rname = talloc_asprintf(ctx,
2311 "stdin-%d",
2312 (int)getpid());
2314 if (!rname) {
2315 return 1;
2318 return do_put(rname, lname, false);
2321 /****************************************************************************
2322 Show a print queue entry.
2323 ****************************************************************************/
2325 static void queue_fn(struct print_job_info *p)
2327 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2330 /****************************************************************************
2331 Show a print queue.
2332 ****************************************************************************/
2334 static int cmd_queue(void)
2336 cli_print_queue(cli, queue_fn);
2337 return 0;
2340 /****************************************************************************
2341 Delete some files.
2342 ****************************************************************************/
2344 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2345 const char *dir)
2347 TALLOC_CTX *ctx = talloc_tos();
2348 char *mask = NULL;
2349 NTSTATUS status;
2351 mask = talloc_asprintf(ctx,
2352 "%s%c%s",
2353 dir,
2354 CLI_DIRSEP_CHAR,
2355 finfo->name);
2356 if (!mask) {
2357 return NT_STATUS_NO_MEMORY;
2360 if (finfo->mode & FILE_ATTRIBUTE_DIRECTORY) {
2361 TALLOC_FREE(mask);
2362 return NT_STATUS_OK;
2365 status = cli_unlink(cli_state, mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN);
2366 if (!NT_STATUS_IS_OK(status)) {
2367 d_printf("%s deleting remote file %s\n",
2368 nt_errstr(status), mask);
2370 TALLOC_FREE(mask);
2371 return status;
2374 /****************************************************************************
2375 Delete some files.
2376 ****************************************************************************/
2378 static int cmd_del(void)
2380 TALLOC_CTX *ctx = talloc_tos();
2381 char *mask = NULL;
2382 char *buf = NULL;
2383 NTSTATUS status = NT_STATUS_OK;
2384 uint16 attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
2386 if (recurse) {
2387 attribute |= FILE_ATTRIBUTE_DIRECTORY;
2390 mask = talloc_strdup(ctx, client_get_cur_dir());
2391 if (!mask) {
2392 return 1;
2394 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2395 d_printf("del <filename>\n");
2396 return 1;
2398 mask = talloc_asprintf_append(mask, "%s", buf);
2399 if (!mask) {
2400 return 1;
2403 status = do_list(mask,attribute,do_del,false,false);
2404 if (!NT_STATUS_IS_OK(status)) {
2405 return 1;
2407 return 0;
2410 /****************************************************************************
2411 Wildcard delete some files.
2412 ****************************************************************************/
2414 static int cmd_wdel(void)
2416 TALLOC_CTX *ctx = talloc_tos();
2417 char *mask = NULL;
2418 char *buf = NULL;
2419 uint16 attribute;
2420 struct cli_state *targetcli;
2421 char *targetname = NULL;
2422 NTSTATUS status;
2424 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2425 d_printf("wdel 0x<attrib> <wcard>\n");
2426 return 1;
2429 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2431 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2432 d_printf("wdel 0x<attrib> <wcard>\n");
2433 return 1;
2436 mask = talloc_asprintf(ctx, "%s%s",
2437 client_get_cur_dir(),
2438 buf);
2439 if (!mask) {
2440 return 1;
2443 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2444 &targetname);
2445 if (!NT_STATUS_IS_OK(status)) {
2446 d_printf("cmd_wdel %s: %s\n", mask, nt_errstr(status));
2447 return 1;
2450 status = cli_unlink(targetcli, targetname, attribute);
2451 if (!NT_STATUS_IS_OK(status)) {
2452 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2453 targetname);
2455 return 0;
2458 /****************************************************************************
2459 ****************************************************************************/
2461 static int cmd_open(void)
2463 TALLOC_CTX *ctx = talloc_tos();
2464 char *mask = NULL;
2465 char *buf = NULL;
2466 char *targetname = NULL;
2467 struct cli_state *targetcli;
2468 uint16_t fnum = (uint16_t)-1;
2469 NTSTATUS status;
2471 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2472 d_printf("open <filename>\n");
2473 return 1;
2475 mask = talloc_asprintf(ctx,
2476 "%s%s",
2477 client_get_cur_dir(),
2478 buf);
2479 if (!mask) {
2480 return 1;
2483 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2484 &targetname);
2485 if (!NT_STATUS_IS_OK(status)) {
2486 d_printf("open %s: %s\n", mask, nt_errstr(status));
2487 return 1;
2490 status = cli_ntcreate(targetcli, targetname, 0,
2491 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2492 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2493 0x0, 0x0, &fnum);
2494 if (!NT_STATUS_IS_OK(status)) {
2495 status = cli_ntcreate(targetcli, targetname, 0,
2496 FILE_READ_DATA, 0,
2497 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN,
2498 0x0, 0x0, &fnum);
2499 if (NT_STATUS_IS_OK(status)) {
2500 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2501 } else {
2502 d_printf("Failed to open file %s. %s\n",
2503 targetname, nt_errstr(status));
2505 } else {
2506 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2508 return 0;
2511 static int cmd_posix_encrypt(void)
2513 TALLOC_CTX *ctx = talloc_tos();
2514 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2516 if (cli->use_kerberos) {
2517 status = cli_gss_smb_encryption_start(cli);
2518 } else {
2519 char *domain = NULL;
2520 char *user = NULL;
2521 char *password = NULL;
2523 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2524 d_printf("posix_encrypt domain user password\n");
2525 return 1;
2528 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2529 d_printf("posix_encrypt domain user password\n");
2530 return 1;
2533 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2534 d_printf("posix_encrypt domain user password\n");
2535 return 1;
2538 status = cli_raw_ntlm_smb_encryption_start(cli,
2539 user,
2540 password,
2541 domain);
2544 if (!NT_STATUS_IS_OK(status)) {
2545 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2546 } else {
2547 d_printf("encryption on\n");
2548 smb_encrypt = true;
2551 return 0;
2554 /****************************************************************************
2555 ****************************************************************************/
2557 static int cmd_posix_open(void)
2559 TALLOC_CTX *ctx = talloc_tos();
2560 char *mask = NULL;
2561 char *buf = NULL;
2562 char *targetname = NULL;
2563 struct cli_state *targetcli;
2564 mode_t mode;
2565 uint16_t fnum;
2566 NTSTATUS status;
2568 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2569 d_printf("posix_open <filename> 0<mode>\n");
2570 return 1;
2572 mask = talloc_asprintf(ctx,
2573 "%s%s",
2574 client_get_cur_dir(),
2575 buf);
2576 if (!mask) {
2577 return 1;
2580 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2581 d_printf("posix_open <filename> 0<mode>\n");
2582 return 1;
2584 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2586 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2587 &targetname);
2588 if (!NT_STATUS_IS_OK(status)) {
2589 d_printf("posix_open %s: %s\n", mask, nt_errstr(status));
2590 return 1;
2593 status = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode,
2594 &fnum);
2595 if (!NT_STATUS_IS_OK(status)) {
2596 status = cli_posix_open(targetcli, targetname,
2597 O_CREAT|O_RDONLY, mode, &fnum);
2598 if (!NT_STATUS_IS_OK(status)) {
2599 d_printf("Failed to open file %s. %s\n", targetname,
2600 nt_errstr(status));
2601 } else {
2602 d_printf("posix_open file %s: for readonly fnum %d\n",
2603 targetname, fnum);
2605 } else {
2606 d_printf("posix_open file %s: for read/write fnum %d\n",
2607 targetname, fnum);
2610 return 0;
2613 static int cmd_posix_mkdir(void)
2615 TALLOC_CTX *ctx = talloc_tos();
2616 char *mask = NULL;
2617 char *buf = NULL;
2618 char *targetname = NULL;
2619 struct cli_state *targetcli;
2620 mode_t mode;
2621 NTSTATUS status;
2623 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2624 d_printf("posix_mkdir <filename> 0<mode>\n");
2625 return 1;
2627 mask = talloc_asprintf(ctx,
2628 "%s%s",
2629 client_get_cur_dir(),
2630 buf);
2631 if (!mask) {
2632 return 1;
2635 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2636 d_printf("posix_mkdir <filename> 0<mode>\n");
2637 return 1;
2639 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2641 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2642 &targetname);
2643 if (!NT_STATUS_IS_OK(status)) {
2644 d_printf("posix_mkdir %s: %s\n", mask, nt_errstr(status));
2645 return 1;
2648 status = cli_posix_mkdir(targetcli, targetname, mode);
2649 if (!NT_STATUS_IS_OK(status)) {
2650 d_printf("Failed to open file %s. %s\n",
2651 targetname, nt_errstr(status));
2652 } else {
2653 d_printf("posix_mkdir created directory %s\n", targetname);
2655 return 0;
2658 static int cmd_posix_unlink(void)
2660 TALLOC_CTX *ctx = talloc_tos();
2661 char *mask = NULL;
2662 char *buf = NULL;
2663 char *targetname = NULL;
2664 struct cli_state *targetcli;
2665 NTSTATUS status;
2667 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2668 d_printf("posix_unlink <filename>\n");
2669 return 1;
2671 mask = talloc_asprintf(ctx,
2672 "%s%s",
2673 client_get_cur_dir(),
2674 buf);
2675 if (!mask) {
2676 return 1;
2679 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2680 &targetname);
2681 if (!NT_STATUS_IS_OK(status)) {
2682 d_printf("posix_unlink %s: %s\n", mask, nt_errstr(status));
2683 return 1;
2686 status = cli_posix_unlink(targetcli, targetname);
2687 if (!NT_STATUS_IS_OK(status)) {
2688 d_printf("Failed to unlink file %s. %s\n",
2689 targetname, nt_errstr(status));
2690 } else {
2691 d_printf("posix_unlink deleted file %s\n", targetname);
2694 return 0;
2697 static int cmd_posix_rmdir(void)
2699 TALLOC_CTX *ctx = talloc_tos();
2700 char *mask = NULL;
2701 char *buf = NULL;
2702 char *targetname = NULL;
2703 struct cli_state *targetcli;
2704 NTSTATUS status;
2706 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2707 d_printf("posix_rmdir <filename>\n");
2708 return 1;
2710 mask = talloc_asprintf(ctx,
2711 "%s%s",
2712 client_get_cur_dir(),
2713 buf);
2714 if (!mask) {
2715 return 1;
2718 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2719 &targetname);
2720 if (!NT_STATUS_IS_OK(status)) {
2721 d_printf("posix_rmdir %s: %s\n", mask, nt_errstr(status));
2722 return 1;
2725 status = cli_posix_rmdir(targetcli, targetname);
2726 if (!NT_STATUS_IS_OK(status)) {
2727 d_printf("Failed to unlink directory %s. %s\n",
2728 targetname, nt_errstr(status));
2729 } else {
2730 d_printf("posix_rmdir deleted directory %s\n", targetname);
2733 return 0;
2736 static int cmd_close(void)
2738 TALLOC_CTX *ctx = talloc_tos();
2739 char *buf = NULL;
2740 int fnum;
2741 NTSTATUS status;
2743 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2744 d_printf("close <fnum>\n");
2745 return 1;
2748 fnum = atoi(buf);
2749 /* We really should use the targetcli here.... */
2750 status = cli_close(cli, fnum);
2751 if (!NT_STATUS_IS_OK(status)) {
2752 d_printf("close %d: %s\n", fnum, nt_errstr(status));
2753 return 1;
2755 return 0;
2758 static int cmd_posix(void)
2760 TALLOC_CTX *ctx = talloc_tos();
2761 uint16 major, minor;
2762 uint32 caplow, caphigh;
2763 char *caps;
2764 NTSTATUS status;
2766 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2767 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2768 return 1;
2771 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2772 &caphigh);
2773 if (!NT_STATUS_IS_OK(status)) {
2774 d_printf("Can't get UNIX CIFS extensions version from "
2775 "server: %s\n", nt_errstr(status));
2776 return 1;
2779 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2781 caps = talloc_strdup(ctx, "");
2782 if (!caps) {
2783 return 1;
2785 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2786 caps = talloc_asprintf_append(caps, "locks ");
2787 if (!caps) {
2788 return 1;
2791 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2792 caps = talloc_asprintf_append(caps, "acls ");
2793 if (!caps) {
2794 return 1;
2797 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2798 caps = talloc_asprintf_append(caps, "eas ");
2799 if (!caps) {
2800 return 1;
2803 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2804 caps = talloc_asprintf_append(caps, "pathnames ");
2805 if (!caps) {
2806 return 1;
2809 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2810 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2811 if (!caps) {
2812 return 1;
2815 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2816 caps = talloc_asprintf_append(caps, "large_read ");
2817 if (!caps) {
2818 return 1;
2821 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2822 caps = talloc_asprintf_append(caps, "large_write ");
2823 if (!caps) {
2824 return 1;
2827 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2828 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2829 if (!caps) {
2830 return 1;
2833 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2834 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2835 if (!caps) {
2836 return 1;
2840 if (*caps && caps[strlen(caps)-1] == ' ') {
2841 caps[strlen(caps)-1] = '\0';
2844 d_printf("Server supports CIFS capabilities %s\n", caps);
2846 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2847 caplow, caphigh);
2848 if (!NT_STATUS_IS_OK(status)) {
2849 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2850 nt_errstr(status));
2851 return 1;
2854 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2855 CLI_DIRSEP_CHAR = '/';
2856 *CLI_DIRSEP_STR = '/';
2857 client_set_cur_dir(CLI_DIRSEP_STR);
2860 return 0;
2863 static int cmd_lock(void)
2865 TALLOC_CTX *ctx = talloc_tos();
2866 char *buf = NULL;
2867 uint64_t start, len;
2868 enum brl_type lock_type;
2869 int fnum;
2870 NTSTATUS status;
2872 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2873 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2874 return 1;
2876 fnum = atoi(buf);
2878 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2879 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2880 return 1;
2883 if (*buf == 'r' || *buf == 'R') {
2884 lock_type = READ_LOCK;
2885 } else if (*buf == 'w' || *buf == 'W') {
2886 lock_type = WRITE_LOCK;
2887 } else {
2888 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2889 return 1;
2892 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2893 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2894 return 1;
2897 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2899 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2900 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2901 return 1;
2904 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2906 status = cli_posix_lock(cli, fnum, start, len, true, lock_type);
2907 if (!NT_STATUS_IS_OK(status)) {
2908 d_printf("lock failed %d: %s\n", fnum, nt_errstr(status));
2911 return 0;
2914 static int cmd_unlock(void)
2916 TALLOC_CTX *ctx = talloc_tos();
2917 char *buf = NULL;
2918 uint64_t start, len;
2919 int fnum;
2920 NTSTATUS status;
2922 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2923 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2924 return 1;
2926 fnum = atoi(buf);
2928 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2929 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2930 return 1;
2933 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2935 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2936 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2937 return 1;
2940 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2942 status = cli_posix_unlock(cli, fnum, start, len);
2943 if (!NT_STATUS_IS_OK(status)) {
2944 d_printf("unlock failed %d: %s\n", fnum, nt_errstr(status));
2947 return 0;
2951 /****************************************************************************
2952 Remove a directory.
2953 ****************************************************************************/
2955 static int cmd_rmdir(void)
2957 TALLOC_CTX *ctx = talloc_tos();
2958 char *mask = NULL;
2959 char *buf = NULL;
2960 char *targetname = NULL;
2961 struct cli_state *targetcli;
2962 NTSTATUS status;
2964 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2965 d_printf("rmdir <dirname>\n");
2966 return 1;
2968 mask = talloc_asprintf(ctx,
2969 "%s%s",
2970 client_get_cur_dir(),
2971 buf);
2972 if (!mask) {
2973 return 1;
2976 status = cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli,
2977 &targetname);
2978 if (!NT_STATUS_IS_OK(status)) {
2979 d_printf("rmdir %s: %s\n", mask, nt_errstr(status));
2980 return 1;
2983 status = cli_rmdir(targetcli, targetname);
2984 if (!NT_STATUS_IS_OK(status)) {
2985 d_printf("%s removing remote directory file %s\n",
2986 nt_errstr(status), mask);
2989 return 0;
2992 /****************************************************************************
2993 UNIX hardlink.
2994 ****************************************************************************/
2996 static int cmd_link(void)
2998 TALLOC_CTX *ctx = talloc_tos();
2999 char *oldname = NULL;
3000 char *newname = NULL;
3001 char *buf = NULL;
3002 char *buf2 = NULL;
3003 char *targetname = NULL;
3004 struct cli_state *targetcli;
3005 NTSTATUS status;
3007 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3008 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3009 d_printf("link <oldname> <newname>\n");
3010 return 1;
3012 oldname = talloc_asprintf(ctx,
3013 "%s%s",
3014 client_get_cur_dir(),
3015 buf);
3016 if (!oldname) {
3017 return 1;
3019 newname = talloc_asprintf(ctx,
3020 "%s%s",
3021 client_get_cur_dir(),
3022 buf2);
3023 if (!newname) {
3024 return 1;
3027 status = cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli,
3028 &targetname);
3029 if (!NT_STATUS_IS_OK(status)) {
3030 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3031 return 1;
3034 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3035 d_printf("Server doesn't support UNIX CIFS calls.\n");
3036 return 1;
3039 status = cli_posix_hardlink(targetcli, targetname, newname);
3040 if (!NT_STATUS_IS_OK(status)) {
3041 d_printf("%s linking files (%s -> %s)\n",
3042 nt_errstr(status), newname, oldname);
3043 return 1;
3045 return 0;
3048 /****************************************************************************
3049 UNIX readlink.
3050 ****************************************************************************/
3052 static int cmd_readlink(void)
3054 TALLOC_CTX *ctx = talloc_tos();
3055 char *name= NULL;
3056 char *buf = NULL;
3057 char *targetname = NULL;
3058 char linkname[PATH_MAX+1];
3059 struct cli_state *targetcli;
3060 NTSTATUS status;
3062 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3063 d_printf("readlink <name>\n");
3064 return 1;
3066 name = talloc_asprintf(ctx,
3067 "%s%s",
3068 client_get_cur_dir(),
3069 buf);
3070 if (!name) {
3071 return 1;
3074 status = cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli,
3075 &targetname);
3076 if (!NT_STATUS_IS_OK(status)) {
3077 d_printf("readlink %s: %s\n", name, nt_errstr(status));
3078 return 1;
3081 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3082 d_printf("Server doesn't support UNIX CIFS calls.\n");
3083 return 1;
3086 status = cli_posix_readlink(targetcli, name, linkname, PATH_MAX+1);
3087 if (!NT_STATUS_IS_OK(status)) {
3088 d_printf("%s readlink on file %s\n",
3089 nt_errstr(status), name);
3090 return 1;
3093 d_printf("%s -> %s\n", name, linkname);
3095 return 0;
3099 /****************************************************************************
3100 UNIX symlink.
3101 ****************************************************************************/
3103 static int cmd_symlink(void)
3105 TALLOC_CTX *ctx = talloc_tos();
3106 char *oldname = NULL;
3107 char *newname = NULL;
3108 char *buf = NULL;
3109 char *buf2 = NULL;
3110 struct cli_state *newcli;
3111 NTSTATUS status;
3113 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3114 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3115 d_printf("symlink <oldname> <newname>\n");
3116 return 1;
3118 /* Oldname (link target) must be an untouched blob. */
3119 oldname = buf;
3121 if (SERVER_HAS_UNIX_CIFS(cli)) {
3122 newname = talloc_asprintf(ctx, "%s%s", client_get_cur_dir(),
3123 buf2);
3124 if (!newname) {
3125 return 1;
3127 /* New name must be present in share namespace. */
3128 status = cli_resolve_path(ctx, "", auth_info, cli, newname,
3129 &newcli, &newname);
3130 if (!NT_STATUS_IS_OK(status)) {
3131 d_printf("link %s: %s\n", oldname, nt_errstr(status));
3132 return 1;
3134 status = cli_posix_symlink(newcli, oldname, newname);
3135 } else {
3136 status = cli_symlink(
3137 cli, oldname, buf2,
3138 buf2[0] == '\\' ? 0 : SYMLINK_FLAG_RELATIVE);
3141 if (!NT_STATUS_IS_OK(status)) {
3142 d_printf("%s symlinking files (%s -> %s)\n",
3143 nt_errstr(status), oldname, newname);
3144 return 1;
3147 return 0;
3150 /****************************************************************************
3151 UNIX chmod.
3152 ****************************************************************************/
3154 static int cmd_chmod(void)
3156 TALLOC_CTX *ctx = talloc_tos();
3157 char *src = NULL;
3158 char *buf = NULL;
3159 char *buf2 = NULL;
3160 char *targetname = NULL;
3161 struct cli_state *targetcli;
3162 mode_t mode;
3163 NTSTATUS status;
3165 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3166 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3167 d_printf("chmod mode file\n");
3168 return 1;
3170 src = talloc_asprintf(ctx,
3171 "%s%s",
3172 client_get_cur_dir(),
3173 buf2);
3174 if (!src) {
3175 return 1;
3178 mode = (mode_t)strtol(buf, NULL, 8);
3180 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3181 &targetname);
3182 if (!NT_STATUS_IS_OK(status)) {
3183 d_printf("chmod %s: %s\n", src, nt_errstr(status));
3184 return 1;
3187 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3188 d_printf("Server doesn't support UNIX CIFS calls.\n");
3189 return 1;
3192 status = cli_posix_chmod(targetcli, targetname, mode);
3193 if (!NT_STATUS_IS_OK(status)) {
3194 d_printf("%s chmod file %s 0%o\n",
3195 nt_errstr(status), src, (unsigned int)mode);
3196 return 1;
3199 return 0;
3202 static const char *filetype_to_str(mode_t mode)
3204 if (S_ISREG(mode)) {
3205 return "regular file";
3206 } else if (S_ISDIR(mode)) {
3207 return "directory";
3208 } else
3209 #ifdef S_ISCHR
3210 if (S_ISCHR(mode)) {
3211 return "character device";
3212 } else
3213 #endif
3214 #ifdef S_ISBLK
3215 if (S_ISBLK(mode)) {
3216 return "block device";
3217 } else
3218 #endif
3219 #ifdef S_ISFIFO
3220 if (S_ISFIFO(mode)) {
3221 return "fifo";
3222 } else
3223 #endif
3224 #ifdef S_ISLNK
3225 if (S_ISLNK(mode)) {
3226 return "symbolic link";
3227 } else
3228 #endif
3229 #ifdef S_ISSOCK
3230 if (S_ISSOCK(mode)) {
3231 return "socket";
3232 } else
3233 #endif
3234 return "";
3237 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3239 if (m & bt) {
3240 return ret;
3241 } else {
3242 return '-';
3246 static char *unix_mode_to_str(char *s, mode_t m)
3248 char *p = s;
3249 const char *str = filetype_to_str(m);
3251 switch(str[0]) {
3252 case 'd':
3253 *p++ = 'd';
3254 break;
3255 case 'c':
3256 *p++ = 'c';
3257 break;
3258 case 'b':
3259 *p++ = 'b';
3260 break;
3261 case 'f':
3262 *p++ = 'p';
3263 break;
3264 case 's':
3265 *p++ = str[1] == 'y' ? 'l' : 's';
3266 break;
3267 case 'r':
3268 default:
3269 *p++ = '-';
3270 break;
3272 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3273 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3274 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3275 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3276 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3277 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3278 *p++ = rwx_to_str(m, S_IROTH, 'r');
3279 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3280 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3281 *p++ = '\0';
3282 return s;
3285 /****************************************************************************
3286 Utility function for UNIX getfacl.
3287 ****************************************************************************/
3289 static char *perms_to_string(fstring permstr, unsigned char perms)
3291 fstrcpy(permstr, "---");
3292 if (perms & SMB_POSIX_ACL_READ) {
3293 permstr[0] = 'r';
3295 if (perms & SMB_POSIX_ACL_WRITE) {
3296 permstr[1] = 'w';
3298 if (perms & SMB_POSIX_ACL_EXECUTE) {
3299 permstr[2] = 'x';
3301 return permstr;
3304 /****************************************************************************
3305 UNIX getfacl.
3306 ****************************************************************************/
3308 static int cmd_getfacl(void)
3310 TALLOC_CTX *ctx = talloc_tos();
3311 char *src = NULL;
3312 char *name = NULL;
3313 char *targetname = NULL;
3314 struct cli_state *targetcli;
3315 uint16 major, minor;
3316 uint32 caplow, caphigh;
3317 char *retbuf = NULL;
3318 size_t rb_size = 0;
3319 SMB_STRUCT_STAT sbuf;
3320 uint16 num_file_acls = 0;
3321 uint16 num_dir_acls = 0;
3322 uint16 i;
3323 NTSTATUS status;
3325 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3326 d_printf("getfacl filename\n");
3327 return 1;
3329 src = talloc_asprintf(ctx,
3330 "%s%s",
3331 client_get_cur_dir(),
3332 name);
3333 if (!src) {
3334 return 1;
3337 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3338 &targetname);
3339 if (!NT_STATUS_IS_OK(status)) {
3340 d_printf("stat %s: %s\n", src, nt_errstr(status));
3341 return 1;
3344 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3345 d_printf("Server doesn't support UNIX CIFS calls.\n");
3346 return 1;
3349 status = cli_unix_extensions_version(targetcli, &major, &minor,
3350 &caplow, &caphigh);
3351 if (!NT_STATUS_IS_OK(status)) {
3352 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3353 nt_errstr(status));
3354 return 1;
3357 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3358 d_printf("This server supports UNIX extensions "
3359 "but doesn't support POSIX ACLs.\n");
3360 return 1;
3363 status = cli_posix_stat(targetcli, targetname, &sbuf);
3364 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3365 d_printf("%s getfacl doing a stat on file %s\n",
3366 nt_errstr(status), src);
3367 return 1;
3370 status = cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf);
3371 if (!NT_STATUS_IS_OK(status)) {
3372 d_printf("%s getfacl file %s\n",
3373 nt_errstr(status), src);
3374 return 1;
3377 /* ToDo : Print out the ACL values. */
3378 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3379 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3380 src, (unsigned int)CVAL(retbuf,0) );
3381 return 1;
3384 num_file_acls = SVAL(retbuf,2);
3385 num_dir_acls = SVAL(retbuf,4);
3386 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3387 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3388 src,
3389 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3390 (unsigned int)rb_size);
3391 return 1;
3394 d_printf("# file: %s\n", src);
3395 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3397 if (num_file_acls == 0 && num_dir_acls == 0) {
3398 d_printf("No acls found.\n");
3401 for (i = 0; i < num_file_acls; i++) {
3402 uint32 uorg;
3403 fstring permstring;
3404 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3405 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3407 switch(tagtype) {
3408 case SMB_POSIX_ACL_USER_OBJ:
3409 d_printf("user::");
3410 break;
3411 case SMB_POSIX_ACL_USER:
3412 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3413 d_printf("user:%u:", uorg);
3414 break;
3415 case SMB_POSIX_ACL_GROUP_OBJ:
3416 d_printf("group::");
3417 break;
3418 case SMB_POSIX_ACL_GROUP:
3419 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3420 d_printf("group:%u:", uorg);
3421 break;
3422 case SMB_POSIX_ACL_MASK:
3423 d_printf("mask::");
3424 break;
3425 case SMB_POSIX_ACL_OTHER:
3426 d_printf("other::");
3427 break;
3428 default:
3429 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3430 src, (unsigned int)tagtype );
3431 SAFE_FREE(retbuf);
3432 return 1;
3435 d_printf("%s\n", perms_to_string(permstring, perms));
3438 for (i = 0; i < num_dir_acls; i++) {
3439 uint32 uorg;
3440 fstring permstring;
3441 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3442 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3444 switch(tagtype) {
3445 case SMB_POSIX_ACL_USER_OBJ:
3446 d_printf("default:user::");
3447 break;
3448 case SMB_POSIX_ACL_USER:
3449 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3450 d_printf("default:user:%u:", uorg);
3451 break;
3452 case SMB_POSIX_ACL_GROUP_OBJ:
3453 d_printf("default:group::");
3454 break;
3455 case SMB_POSIX_ACL_GROUP:
3456 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3457 d_printf("default:group:%u:", uorg);
3458 break;
3459 case SMB_POSIX_ACL_MASK:
3460 d_printf("default:mask::");
3461 break;
3462 case SMB_POSIX_ACL_OTHER:
3463 d_printf("default:other::");
3464 break;
3465 default:
3466 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3467 src, (unsigned int)tagtype );
3468 SAFE_FREE(retbuf);
3469 return 1;
3472 d_printf("%s\n", perms_to_string(permstring, perms));
3475 return 0;
3478 /****************************************************************************
3479 Get the EA list of a file
3480 ****************************************************************************/
3482 static int cmd_geteas(void)
3484 TALLOC_CTX *ctx = talloc_tos();
3485 char *src = NULL;
3486 char *name = NULL;
3487 char *targetname = NULL;
3488 struct cli_state *targetcli;
3489 NTSTATUS status;
3490 size_t i, num_eas;
3491 struct ea_struct *eas;
3493 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3494 d_printf("geteas filename\n");
3495 return 1;
3497 src = talloc_asprintf(ctx,
3498 "%s%s",
3499 client_get_cur_dir(),
3500 name);
3501 if (!src) {
3502 return 1;
3505 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3506 &targetname);
3507 if (!NT_STATUS_IS_OK(status)) {
3508 d_printf("stat %s: %s\n", src, nt_errstr(status));
3509 return 1;
3512 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3513 &num_eas, &eas);
3514 if (!NT_STATUS_IS_OK(status)) {
3515 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3516 return 1;
3519 for (i=0; i<num_eas; i++) {
3520 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3521 dump_data_file(eas[i].value.data, eas[i].value.length, false,
3522 stdout);
3523 d_printf("\n");
3526 TALLOC_FREE(eas);
3528 return 0;
3531 /****************************************************************************
3532 Set an EA of a file
3533 ****************************************************************************/
3535 static int cmd_setea(void)
3537 TALLOC_CTX *ctx = talloc_tos();
3538 char *src = NULL;
3539 char *name = NULL;
3540 char *eaname = NULL;
3541 char *eavalue = NULL;
3542 char *targetname = NULL;
3543 struct cli_state *targetcli;
3544 NTSTATUS status;
3546 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3547 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3548 d_printf("setea filename eaname value\n");
3549 return 1;
3551 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3552 eavalue = talloc_strdup(ctx, "");
3554 src = talloc_asprintf(ctx,
3555 "%s%s",
3556 client_get_cur_dir(),
3557 name);
3558 if (!src) {
3559 return 1;
3562 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3563 &targetname);
3564 if (!NT_STATUS_IS_OK(status)) {
3565 d_printf("stat %s: %s\n", src, nt_errstr(status));
3566 return 1;
3569 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3570 strlen(eavalue));
3571 if (!NT_STATUS_IS_OK(status)) {
3572 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3573 return 1;
3576 return 0;
3579 /****************************************************************************
3580 UNIX stat.
3581 ****************************************************************************/
3583 static int cmd_stat(void)
3585 TALLOC_CTX *ctx = talloc_tos();
3586 char *src = NULL;
3587 char *name = NULL;
3588 char *targetname = NULL;
3589 struct cli_state *targetcli;
3590 fstring mode_str;
3591 SMB_STRUCT_STAT sbuf;
3592 struct tm *lt;
3593 time_t tmp_time;
3594 NTSTATUS status;
3596 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3597 d_printf("stat file\n");
3598 return 1;
3600 src = talloc_asprintf(ctx,
3601 "%s%s",
3602 client_get_cur_dir(),
3603 name);
3604 if (!src) {
3605 return 1;
3608 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3609 &targetname);
3610 if (!NT_STATUS_IS_OK(status)) {
3611 d_printf("stat %s: %s\n", src, nt_errstr(status));
3612 return 1;
3615 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3616 d_printf("Server doesn't support UNIX CIFS calls.\n");
3617 return 1;
3620 status = cli_posix_stat(targetcli, targetname, &sbuf);
3621 if (!NT_STATUS_IS_OK(status)) {
3622 d_printf("%s stat file %s\n",
3623 nt_errstr(status), src);
3624 return 1;
3627 /* Print out the stat values. */
3628 d_printf("File: %s\n", src);
3629 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3630 (double)sbuf.st_ex_size,
3631 (unsigned int)sbuf.st_ex_blocks,
3632 filetype_to_str(sbuf.st_ex_mode));
3634 #if defined(S_ISCHR) && defined(S_ISBLK)
3635 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3636 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3637 (double)sbuf.st_ex_ino,
3638 (unsigned int)sbuf.st_ex_nlink,
3639 unix_dev_major(sbuf.st_ex_rdev),
3640 unix_dev_minor(sbuf.st_ex_rdev));
3641 } else
3642 #endif
3643 d_printf("Inode: %.0f\tLinks: %u\n",
3644 (double)sbuf.st_ex_ino,
3645 (unsigned int)sbuf.st_ex_nlink);
3647 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3648 ((int)sbuf.st_ex_mode & 0777),
3649 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3650 (unsigned int)sbuf.st_ex_uid,
3651 (unsigned int)sbuf.st_ex_gid);
3653 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3654 lt = localtime(&tmp_time);
3655 if (lt) {
3656 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3657 } else {
3658 fstrcpy(mode_str, "unknown");
3660 d_printf("Access: %s\n", mode_str);
3662 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3663 lt = localtime(&tmp_time);
3664 if (lt) {
3665 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3666 } else {
3667 fstrcpy(mode_str, "unknown");
3669 d_printf("Modify: %s\n", mode_str);
3671 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3672 lt = localtime(&tmp_time);
3673 if (lt) {
3674 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3675 } else {
3676 fstrcpy(mode_str, "unknown");
3678 d_printf("Change: %s\n", mode_str);
3680 return 0;
3684 /****************************************************************************
3685 UNIX chown.
3686 ****************************************************************************/
3688 static int cmd_chown(void)
3690 TALLOC_CTX *ctx = talloc_tos();
3691 char *src = NULL;
3692 uid_t uid;
3693 gid_t gid;
3694 char *buf, *buf2, *buf3;
3695 struct cli_state *targetcli;
3696 char *targetname = NULL;
3697 NTSTATUS status;
3699 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3700 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3701 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3702 d_printf("chown uid gid file\n");
3703 return 1;
3706 uid = (uid_t)atoi(buf);
3707 gid = (gid_t)atoi(buf2);
3709 src = talloc_asprintf(ctx,
3710 "%s%s",
3711 client_get_cur_dir(),
3712 buf3);
3713 if (!src) {
3714 return 1;
3716 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3717 &targetname);
3718 if (!NT_STATUS_IS_OK(status)) {
3719 d_printf("chown %s: %s\n", src, nt_errstr(status));
3720 return 1;
3723 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3724 d_printf("Server doesn't support UNIX CIFS calls.\n");
3725 return 1;
3728 status = cli_posix_chown(targetcli, targetname, uid, gid);
3729 if (!NT_STATUS_IS_OK(status)) {
3730 d_printf("%s chown file %s uid=%d, gid=%d\n",
3731 nt_errstr(status), src, (int)uid, (int)gid);
3732 return 1;
3735 return 0;
3738 /****************************************************************************
3739 Rename some file.
3740 ****************************************************************************/
3742 static int cmd_rename(void)
3744 TALLOC_CTX *ctx = talloc_tos();
3745 char *src, *dest;
3746 char *buf, *buf2;
3747 struct cli_state *targetcli;
3748 char *targetsrc;
3749 char *targetdest;
3750 NTSTATUS status;
3752 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3753 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3754 d_printf("rename <src> <dest>\n");
3755 return 1;
3758 src = talloc_asprintf(ctx,
3759 "%s%s",
3760 client_get_cur_dir(),
3761 buf);
3762 if (!src) {
3763 return 1;
3766 dest = talloc_asprintf(ctx,
3767 "%s%s",
3768 client_get_cur_dir(),
3769 buf2);
3770 if (!dest) {
3771 return 1;
3774 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3775 &targetsrc);
3776 if (!NT_STATUS_IS_OK(status)) {
3777 d_printf("rename %s: %s\n", src, nt_errstr(status));
3778 return 1;
3781 status = cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli,
3782 &targetdest);
3783 if (!NT_STATUS_IS_OK(status)) {
3784 d_printf("rename %s: %s\n", dest, nt_errstr(status));
3785 return 1;
3788 status = cli_rename(targetcli, targetsrc, targetdest);
3789 if (!NT_STATUS_IS_OK(status)) {
3790 d_printf("%s renaming files %s -> %s \n",
3791 nt_errstr(status),
3792 targetsrc,
3793 targetdest);
3794 return 1;
3797 return 0;
3800 /****************************************************************************
3801 Print the volume name.
3802 ****************************************************************************/
3804 static int cmd_volume(void)
3806 char *volname;
3807 uint32_t serial_num;
3808 time_t create_date;
3809 NTSTATUS status;
3811 status = cli_get_fs_volume_info(cli, talloc_tos(),
3812 &volname, &serial_num,
3813 &create_date);
3814 if (!NT_STATUS_IS_OK(status)) {
3815 d_printf("Error %s getting volume info\n", nt_errstr(status));
3816 return 1;
3819 d_printf("Volume: |%s| serial number 0x%x\n",
3820 volname, (unsigned int)serial_num);
3821 return 0;
3824 /****************************************************************************
3825 Hard link files using the NT call.
3826 ****************************************************************************/
3828 static int cmd_hardlink(void)
3830 TALLOC_CTX *ctx = talloc_tos();
3831 char *src, *dest;
3832 char *buf, *buf2;
3833 struct cli_state *targetcli;
3834 char *targetname;
3835 NTSTATUS status;
3837 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3838 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3839 d_printf("hardlink <src> <dest>\n");
3840 return 1;
3843 src = talloc_asprintf(ctx,
3844 "%s%s",
3845 client_get_cur_dir(),
3846 buf);
3847 if (!src) {
3848 return 1;
3851 dest = talloc_asprintf(ctx,
3852 "%s%s",
3853 client_get_cur_dir(),
3854 buf2);
3855 if (!dest) {
3856 return 1;
3859 status = cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3860 &targetname);
3861 if (!NT_STATUS_IS_OK(status)) {
3862 d_printf("hardlink %s: %s\n", src, nt_errstr(status));
3863 return 1;
3866 status = cli_nt_hardlink(targetcli, targetname, dest);
3867 if (!NT_STATUS_IS_OK(status)) {
3868 d_printf("%s doing an NT hard link of files\n",
3869 nt_errstr(status));
3870 return 1;
3873 return 0;
3876 /****************************************************************************
3877 Toggle the prompt flag.
3878 ****************************************************************************/
3880 static int cmd_prompt(void)
3882 prompt = !prompt;
3883 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3884 return 1;
3887 /****************************************************************************
3888 Set the newer than time.
3889 ****************************************************************************/
3891 static int cmd_newer(void)
3893 TALLOC_CTX *ctx = talloc_tos();
3894 char *buf;
3895 bool ok;
3896 SMB_STRUCT_STAT sbuf;
3898 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3899 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3900 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3901 DEBUG(1,("Getting files newer than %s",
3902 time_to_asc(newer_than)));
3903 } else {
3904 newer_than = 0;
3907 if (ok && newer_than == 0) {
3908 d_printf("Error setting newer-than time\n");
3909 return 1;
3912 return 0;
3915 /****************************************************************************
3916 Watch directory changes
3917 ****************************************************************************/
3919 static int cmd_notify(void)
3921 TALLOC_CTX *frame = talloc_stackframe();
3922 char *name, *buf;
3923 NTSTATUS status;
3924 uint16_t fnum;
3926 name = talloc_strdup(talloc_tos(), client_get_cur_dir());
3927 if (name == NULL) {
3928 goto fail;
3930 if (!next_token_talloc(talloc_tos(), &cmd_ptr, &buf, NULL)) {
3931 goto usage;
3933 name = talloc_asprintf_append(name, "%s", buf);
3934 if (name == NULL) {
3935 goto fail;
3937 status = cli_ntcreate(
3938 cli, name, 0, FILE_READ_DATA, 0,
3939 FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE,
3940 FILE_OPEN, 0, 0, &fnum);
3941 if (!NT_STATUS_IS_OK(status)) {
3942 d_printf("Could not open file: %s\n", nt_errstr(status));
3943 goto fail;
3946 while (1) {
3947 uint32_t i, num_changes;
3948 struct notify_change *changes;
3950 status = cli_notify(cli, fnum, 1000, FILE_NOTIFY_CHANGE_ALL,
3951 true,
3952 talloc_tos(), &num_changes, &changes);
3953 if (!NT_STATUS_IS_OK(status)) {
3954 d_printf("notify returned %s\n",
3955 nt_errstr(status));
3956 goto fail;
3958 for (i=0; i<num_changes; i++) {
3959 printf("%4.4x %s\n", changes[i].action,
3960 changes[i].name);
3962 TALLOC_FREE(changes);
3964 usage:
3965 d_printf("notify <file>\n");
3966 fail:
3967 TALLOC_FREE(frame);
3968 return 1;
3971 /****************************************************************************
3972 Set the archive level.
3973 ****************************************************************************/
3975 static int cmd_archive(void)
3977 TALLOC_CTX *ctx = talloc_tos();
3978 char *buf;
3980 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3981 archive_level = atoi(buf);
3982 } else {
3983 d_printf("Archive level is %d\n",archive_level);
3986 return 0;
3989 /****************************************************************************
3990 Toggle the backup_intent state.
3991 ****************************************************************************/
3993 static int cmd_backup(void)
3995 backup_intent = !backup_intent;
3996 cli_set_backup_intent(cli, backup_intent);
3997 DEBUG(2,("backup intent is now %s\n",backup_intent?"on":"off"));
3998 return 1;
4001 /****************************************************************************
4002 Toggle the lowercaseflag.
4003 ****************************************************************************/
4005 static int cmd_lowercase(void)
4007 lowercase = !lowercase;
4008 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
4009 return 0;
4012 /****************************************************************************
4013 Toggle the case sensitive flag.
4014 ****************************************************************************/
4016 static int cmd_setcase(void)
4018 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
4020 cli_set_case_sensitive(cli, !orig_case_sensitive);
4021 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
4022 "on":"off"));
4023 return 0;
4026 /****************************************************************************
4027 Toggle the showacls flag.
4028 ****************************************************************************/
4030 static int cmd_showacls(void)
4032 showacls = !showacls;
4033 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
4034 return 0;
4038 /****************************************************************************
4039 Toggle the recurse flag.
4040 ****************************************************************************/
4042 static int cmd_recurse(void)
4044 recurse = !recurse;
4045 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
4046 return 0;
4049 /****************************************************************************
4050 Toggle the translate flag.
4051 ****************************************************************************/
4053 static int cmd_translate(void)
4055 translation = !translation;
4056 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
4057 translation?"on":"off"));
4058 return 0;
4061 /****************************************************************************
4062 Do the lcd command.
4063 ****************************************************************************/
4065 static int cmd_lcd(void)
4067 TALLOC_CTX *ctx = talloc_tos();
4068 char *buf;
4069 char *d;
4071 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4072 if (chdir(buf) == -1) {
4073 d_printf("chdir to %s failed (%s)\n",
4074 buf, strerror(errno));
4077 d = sys_getwd();
4078 if (!d) {
4079 return 1;
4081 DEBUG(2,("the local directory is now %s\n",d));
4082 SAFE_FREE(d);
4083 return 0;
4086 /****************************************************************************
4087 Get a file restarting at end of local file.
4088 ****************************************************************************/
4090 static int cmd_reget(void)
4092 TALLOC_CTX *ctx = talloc_tos();
4093 char *local_name = NULL;
4094 char *remote_name = NULL;
4095 char *fname = NULL;
4096 char *p = NULL;
4098 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4099 if (!remote_name) {
4100 return 1;
4103 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
4104 d_printf("reget <filename>\n");
4105 return 1;
4107 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
4108 if (!remote_name) {
4109 return 1;
4111 remote_name = clean_name(ctx,remote_name);
4112 if (!remote_name) {
4113 return 1;
4116 local_name = fname;
4117 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
4118 if (p) {
4119 local_name = p;
4122 return do_get(remote_name, local_name, true);
4125 /****************************************************************************
4126 Put a file restarting at end of local file.
4127 ****************************************************************************/
4129 static int cmd_reput(void)
4131 TALLOC_CTX *ctx = talloc_tos();
4132 char *local_name = NULL;
4133 char *remote_name = NULL;
4134 char *buf;
4135 SMB_STRUCT_STAT st;
4137 remote_name = talloc_strdup(ctx, client_get_cur_dir());
4138 if (!remote_name) {
4139 return 1;
4142 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
4143 d_printf("reput <filename>\n");
4144 return 1;
4147 if (!file_exist_stat(local_name, &st, false)) {
4148 d_printf("%s does not exist\n", local_name);
4149 return 1;
4152 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
4153 remote_name = talloc_asprintf_append(remote_name,
4154 "%s", buf);
4155 } else {
4156 remote_name = talloc_asprintf_append(remote_name,
4157 "%s", local_name);
4159 if (!remote_name) {
4160 return 1;
4163 remote_name = clean_name(ctx, remote_name);
4164 if (!remote_name) {
4165 return 1;
4168 return do_put(remote_name, local_name, true);
4171 /****************************************************************************
4172 List a share name.
4173 ****************************************************************************/
4175 static void browse_fn(const char *name, uint32 m,
4176 const char *comment, void *state)
4178 const char *typestr = "";
4180 switch (m & 7) {
4181 case STYPE_DISKTREE:
4182 typestr = "Disk";
4183 break;
4184 case STYPE_PRINTQ:
4185 typestr = "Printer";
4186 break;
4187 case STYPE_DEVICE:
4188 typestr = "Device";
4189 break;
4190 case STYPE_IPC:
4191 typestr = "IPC";
4192 break;
4194 /* FIXME: If the remote machine returns non-ascii characters
4195 in any of these fields, they can corrupt the output. We
4196 should remove them. */
4197 if (!grepable) {
4198 d_printf("\t%-15s %-10.10s%s\n",
4199 name,typestr,comment);
4200 } else {
4201 d_printf ("%s|%s|%s\n",typestr,name,comment);
4205 static bool browse_host_rpc(bool sort)
4207 NTSTATUS status;
4208 struct rpc_pipe_client *pipe_hnd = NULL;
4209 TALLOC_CTX *frame = talloc_stackframe();
4210 WERROR werr;
4211 struct srvsvc_NetShareInfoCtr info_ctr;
4212 struct srvsvc_NetShareCtr1 ctr1;
4213 uint32_t resume_handle = 0;
4214 uint32_t total_entries = 0;
4215 int i;
4216 struct dcerpc_binding_handle *b;
4218 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
4219 &pipe_hnd);
4221 if (!NT_STATUS_IS_OK(status)) {
4222 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4223 nt_errstr(status)));
4224 TALLOC_FREE(frame);
4225 return false;
4228 b = pipe_hnd->binding_handle;
4230 ZERO_STRUCT(info_ctr);
4231 ZERO_STRUCT(ctr1);
4233 info_ctr.level = 1;
4234 info_ctr.ctr.ctr1 = &ctr1;
4236 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4237 pipe_hnd->desthost,
4238 &info_ctr,
4239 0xffffffff,
4240 &total_entries,
4241 &resume_handle,
4242 &werr);
4244 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4245 TALLOC_FREE(pipe_hnd);
4246 TALLOC_FREE(frame);
4247 return false;
4250 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4251 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4252 browse_fn(info.name, info.type, info.comment, NULL);
4255 TALLOC_FREE(pipe_hnd);
4256 TALLOC_FREE(frame);
4257 return true;
4260 /****************************************************************************
4261 Try and browse available connections on a host.
4262 ****************************************************************************/
4264 static bool browse_host(bool sort)
4266 int ret;
4267 if (!grepable) {
4268 d_printf("\n\tSharename Type Comment\n");
4269 d_printf("\t--------- ---- -------\n");
4272 if (browse_host_rpc(sort)) {
4273 return true;
4276 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1) {
4277 NTSTATUS status = cli_nt_error(cli);
4278 d_printf("Error returning browse list: %s\n",
4279 nt_errstr(status));
4282 return (ret != -1);
4285 /****************************************************************************
4286 List a server name.
4287 ****************************************************************************/
4289 static void server_fn(const char *name, uint32 m,
4290 const char *comment, void *state)
4293 if (!grepable){
4294 d_printf("\t%-16s %s\n", name, comment);
4295 } else {
4296 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4300 /****************************************************************************
4301 Try and browse available connections on a host.
4302 ****************************************************************************/
4304 static bool list_servers(const char *wk_grp)
4306 fstring state;
4308 if (!cli->server_domain)
4309 return false;
4311 if (!grepable) {
4312 d_printf("\n\tServer Comment\n");
4313 d_printf("\t--------- -------\n");
4315 fstrcpy( state, "Server" );
4316 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4317 state);
4319 if (!grepable) {
4320 d_printf("\n\tWorkgroup Master\n");
4321 d_printf("\t--------- -------\n");
4324 fstrcpy( state, "Workgroup" );
4325 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4326 server_fn, state);
4327 return true;
4330 /****************************************************************************
4331 Print or set current VUID
4332 ****************************************************************************/
4334 static int cmd_vuid(void)
4336 TALLOC_CTX *ctx = talloc_tos();
4337 char *buf;
4339 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4340 d_printf("Current VUID is %d\n",
4341 cli_state_get_uid(cli));
4342 return 0;
4345 cli_state_set_uid(cli, atoi(buf));
4346 return 0;
4349 /****************************************************************************
4350 Setup a new VUID, by issuing a session setup
4351 ****************************************************************************/
4353 static int cmd_logon(void)
4355 TALLOC_CTX *ctx = talloc_tos();
4356 char *l_username, *l_password;
4357 NTSTATUS nt_status;
4359 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4360 d_printf("logon <username> [<password>]\n");
4361 return 0;
4364 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4365 char pwd[256] = {0};
4366 int rc;
4368 rc = samba_getpass("Password: ", pwd, sizeof(pwd), false, false);
4369 if (rc == 0) {
4370 l_password = talloc_strdup(ctx, pwd);
4373 if (!l_password) {
4374 return 1;
4377 nt_status = cli_session_setup(cli, l_username,
4378 l_password, strlen(l_password),
4379 l_password, strlen(l_password),
4380 lp_workgroup());
4381 if (!NT_STATUS_IS_OK(nt_status)) {
4382 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4383 return -1;
4386 d_printf("Current VUID is %d\n", cli_state_get_uid(cli));
4387 return 0;
4391 * close the session
4394 static int cmd_logoff(void)
4396 NTSTATUS status;
4398 status = cli_ulogoff(cli);
4399 if (!NT_STATUS_IS_OK(status)) {
4400 d_printf("logoff failed: %s\n", nt_errstr(status));
4401 return -1;
4404 d_printf("logoff successful\n");
4405 return 0;
4410 * tree connect (connect to a share)
4413 static int cmd_tcon(void)
4415 TALLOC_CTX *ctx = talloc_tos();
4416 char *sharename;
4417 NTSTATUS status;
4419 if (!next_token_talloc(ctx, &cmd_ptr, &sharename, NULL)) {
4420 d_printf("tcon <sharename>\n");
4421 return 0;
4424 if (!sharename) {
4425 return 1;
4428 status = cli_tree_connect(cli, sharename, "?????", "", 0);
4429 if (!NT_STATUS_IS_OK(status)) {
4430 d_printf("tcon failed: %s\n", nt_errstr(status));
4431 return -1;
4434 talloc_free(sharename);
4436 d_printf("tcon to %s successful, tid: %u\n", sharename,
4437 cli_state_get_tid(cli));
4438 return 0;
4442 * tree disconnect (disconnect from a share)
4445 static int cmd_tdis(void)
4447 NTSTATUS status;
4449 status = cli_tdis(cli);
4450 if (!NT_STATUS_IS_OK(status)) {
4451 d_printf("tdis failed: %s\n", nt_errstr(status));
4452 return -1;
4455 d_printf("tdis successful\n");
4456 return 0;
4461 * get or set tid
4464 static int cmd_tid(void)
4466 TALLOC_CTX *ctx = talloc_tos();
4467 char *tid_str;
4469 if (!next_token_talloc(ctx, &cmd_ptr, &tid_str, NULL)) {
4470 if (cli_state_has_tcon(cli)) {
4471 d_printf("current tid is %d\n", cli_state_get_tid(cli));
4472 } else {
4473 d_printf("no tcon currently\n");
4475 } else {
4476 uint16_t tid = atoi(tid_str);
4477 cli_state_set_tid(cli, tid);
4480 return 0;
4484 /****************************************************************************
4485 list active connections
4486 ****************************************************************************/
4488 static int cmd_list_connect(void)
4490 cli_cm_display(cli);
4491 return 0;
4494 /****************************************************************************
4495 display the current active client connection
4496 ****************************************************************************/
4498 static int cmd_show_connect( void )
4500 TALLOC_CTX *ctx = talloc_tos();
4501 struct cli_state *targetcli;
4502 char *targetpath;
4503 NTSTATUS status;
4505 status = cli_resolve_path(ctx, "", auth_info, cli,
4506 client_get_cur_dir(), &targetcli,
4507 &targetpath);
4508 if (!NT_STATUS_IS_OK(status)) {
4509 d_printf("showconnect %s: %s\n", cur_dir, nt_errstr(status));
4510 return 1;
4513 d_printf("//%s/%s\n", smbXcli_conn_remote_name(targetcli->conn), targetcli->share);
4514 return 0;
4517 /****************************************************************************
4518 iosize command
4519 ***************************************************************************/
4521 int cmd_iosize(void)
4523 TALLOC_CTX *ctx = talloc_tos();
4524 char *buf;
4525 int iosize;
4527 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4528 if (!smb_encrypt) {
4529 d_printf("iosize <n> or iosize 0x<n>. "
4530 "Minimum is 16384 (0x4000), "
4531 "max is 16776960 (0xFFFF00)\n");
4532 } else {
4533 d_printf("iosize <n> or iosize 0x<n>. "
4534 "(Encrypted connection) ,"
4535 "Minimum is 16384 (0x4000), "
4536 "max is 130048 (0x1FC00)\n");
4538 return 1;
4541 iosize = strtol(buf,NULL,0);
4542 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4543 d_printf("iosize out of range for encrypted "
4544 "connection (min = 16384 (0x4000), "
4545 "max = 130048 (0x1FC00)");
4546 return 1;
4547 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4548 d_printf("iosize out of range (min = 16384 (0x4000), "
4549 "max = 16776960 (0xFFFF00)");
4550 return 1;
4553 io_bufsize = iosize;
4554 d_printf("iosize is now %d\n", io_bufsize);
4555 return 0;
4558 /****************************************************************************
4559 history
4560 ****************************************************************************/
4561 static int cmd_history(void)
4563 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4564 HIST_ENTRY **hlist;
4565 int i;
4567 hlist = history_list();
4569 for (i = 0; hlist && hlist[i]; i++) {
4570 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4572 #else
4573 DEBUG(0,("no history without readline support\n"));
4574 #endif
4576 return 0;
4579 /* Some constants for completing filename arguments */
4581 #define COMPL_NONE 0 /* No completions */
4582 #define COMPL_REMOTE 1 /* Complete remote filename */
4583 #define COMPL_LOCAL 2 /* Complete local filename */
4585 /* This defines the commands supported by this client.
4586 * NOTE: The "!" must be the last one in the list because it's fn pointer
4587 * field is NULL, and NULL in that field is used in process_tok()
4588 * (below) to indicate the end of the list. crh
4590 static struct {
4591 const char *name;
4592 int (*fn)(void);
4593 const char *description;
4594 char compl_args[2]; /* Completion argument info */
4595 } commands[] = {
4596 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4597 {"allinfo",cmd_allinfo,"<file> show all available info",
4598 {COMPL_NONE,COMPL_NONE}},
4599 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4600 {"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}},
4601 {"backup",cmd_backup,"toggle backup intent state",{COMPL_NONE,COMPL_NONE}},
4602 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4603 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4604 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4605 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4606 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4607 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4608 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4609 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4610 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4611 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4612 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4613 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4614 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4615 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4616 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4617 {COMPL_REMOTE, COMPL_LOCAL}},
4618 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4619 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4620 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4621 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4622 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4623 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4624 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4625 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4626 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4627 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4628 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4629 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4630 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4631 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4632 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4633 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4634 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4635 {"notify",cmd_notify,"<file>Get notified of dir changes",{COMPL_REMOTE,COMPL_NONE}},
4636 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4637 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4638 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4639 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4640 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4641 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4642 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4643 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4644 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4645 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4646 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4647 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4648 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4649 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4650 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4651 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4652 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4653 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4654 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4655 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4656 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4657 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4658 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4659 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4660 {COMPL_REMOTE, COMPL_LOCAL}},
4661 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4662 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4663 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4664 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4665 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4666 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4667 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4668 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4669 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4670 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4671 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4672 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4673 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4674 {"tcon",cmd_tcon,"connect to a share" ,{COMPL_NONE,COMPL_NONE}},
4675 {"tdis",cmd_tdis,"disconnect from a share",{COMPL_NONE,COMPL_NONE}},
4676 {"tid",cmd_tid,"show or set the current tid (tree-id)",{COMPL_NONE,COMPL_NONE}},
4677 {"logoff",cmd_logoff,"log off (close the session)",{COMPL_NONE,COMPL_NONE}},
4678 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4680 /* Yes, this must be here, see crh's comment above. */
4681 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4682 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4685 /*******************************************************************
4686 Lookup a command string in the list of commands, including
4687 abbreviations.
4688 ******************************************************************/
4690 static int process_tok(char *tok)
4692 int i = 0, matches = 0;
4693 int cmd=0;
4694 int tok_len = strlen(tok);
4696 while (commands[i].fn != NULL) {
4697 if (strequal(commands[i].name,tok)) {
4698 matches = 1;
4699 cmd = i;
4700 break;
4701 } else if (strnequal(commands[i].name, tok, tok_len)) {
4702 matches++;
4703 cmd = i;
4705 i++;
4708 if (matches == 0)
4709 return(-1);
4710 else if (matches == 1)
4711 return(cmd);
4712 else
4713 return(-2);
4716 /****************************************************************************
4717 Help.
4718 ****************************************************************************/
4720 static int cmd_help(void)
4722 TALLOC_CTX *ctx = talloc_tos();
4723 int i=0,j;
4724 char *buf;
4726 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4727 if ((i = process_tok(buf)) >= 0)
4728 d_printf("HELP %s:\n\t%s\n\n",
4729 commands[i].name,commands[i].description);
4730 } else {
4731 while (commands[i].description) {
4732 for (j=0; commands[i].description && (j<5); j++) {
4733 d_printf("%-15s",commands[i].name);
4734 i++;
4736 d_printf("\n");
4739 return 0;
4742 /****************************************************************************
4743 Process a -c command string.
4744 ****************************************************************************/
4746 static int process_command_string(const char *cmd_in)
4748 TALLOC_CTX *ctx = talloc_tos();
4749 char *cmd = talloc_strdup(ctx, cmd_in);
4750 int rc = 0;
4752 if (!cmd) {
4753 return 1;
4755 /* establish the connection if not already */
4757 if (!cli) {
4758 NTSTATUS status;
4760 status = cli_cm_open(talloc_tos(), NULL,
4761 have_ip ? dest_ss_str : desthost,
4762 service, auth_info,
4763 true, smb_encrypt,
4764 max_protocol, port, name_type,
4765 &cli);
4766 if (!NT_STATUS_IS_OK(status)) {
4767 return 1;
4771 while (cmd[0] != '\0') {
4772 char *line;
4773 char *p;
4774 char *tok;
4775 int i;
4777 if ((p = strchr_m(cmd, ';')) == 0) {
4778 line = cmd;
4779 cmd += strlen(cmd);
4780 } else {
4781 *p = '\0';
4782 line = cmd;
4783 cmd = p + 1;
4786 /* and get the first part of the command */
4787 cmd_ptr = line;
4788 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4789 continue;
4792 if ((i = process_tok(tok)) >= 0) {
4793 rc = commands[i].fn();
4794 } else if (i == -2) {
4795 d_printf("%s: command abbreviation ambiguous\n",tok);
4796 } else {
4797 d_printf("%s: command not found\n",tok);
4801 return rc;
4804 #define MAX_COMPLETIONS 100
4806 struct completion_remote {
4807 char *dirmask;
4808 char **matches;
4809 int count, samelen;
4810 const char *text;
4811 int len;
4814 static NTSTATUS completion_remote_filter(const char *mnt,
4815 struct file_info *f,
4816 const char *mask,
4817 void *state)
4819 struct completion_remote *info = (struct completion_remote *)state;
4821 if (info->count >= MAX_COMPLETIONS - 1) {
4822 return NT_STATUS_OK;
4824 if (strncmp(info->text, f->name, info->len) != 0) {
4825 return NT_STATUS_OK;
4827 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4828 return NT_STATUS_OK;
4831 if ((info->dirmask[0] == 0) && !(f->mode & FILE_ATTRIBUTE_DIRECTORY))
4832 info->matches[info->count] = SMB_STRDUP(f->name);
4833 else {
4834 TALLOC_CTX *ctx = talloc_stackframe();
4835 char *tmp;
4837 tmp = talloc_strdup(ctx,info->dirmask);
4838 if (!tmp) {
4839 TALLOC_FREE(ctx);
4840 return NT_STATUS_NO_MEMORY;
4842 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4843 if (!tmp) {
4844 TALLOC_FREE(ctx);
4845 return NT_STATUS_NO_MEMORY;
4847 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4848 tmp = talloc_asprintf_append(tmp, "%s",
4849 CLI_DIRSEP_STR);
4851 if (!tmp) {
4852 TALLOC_FREE(ctx);
4853 return NT_STATUS_NO_MEMORY;
4855 info->matches[info->count] = SMB_STRDUP(tmp);
4856 TALLOC_FREE(ctx);
4858 if (info->matches[info->count] == NULL) {
4859 return NT_STATUS_OK;
4861 if (f->mode & FILE_ATTRIBUTE_DIRECTORY) {
4862 smb_readline_ca_char(0);
4864 if (info->count == 1) {
4865 info->samelen = strlen(info->matches[info->count]);
4866 } else {
4867 while (strncmp(info->matches[info->count],
4868 info->matches[info->count-1],
4869 info->samelen) != 0) {
4870 info->samelen--;
4873 info->count++;
4874 return NT_STATUS_OK;
4877 static char **remote_completion(const char *text, int len)
4879 TALLOC_CTX *ctx = talloc_stackframe();
4880 char *dirmask = NULL;
4881 char *targetpath = NULL;
4882 struct cli_state *targetcli = NULL;
4883 int i;
4884 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4885 NTSTATUS status;
4887 /* can't have non-static initialisation on Sun CC, so do it
4888 at run time here */
4889 info.samelen = len;
4890 info.text = text;
4891 info.len = len;
4893 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4894 if (!info.matches) {
4895 TALLOC_FREE(ctx);
4896 return NULL;
4900 * We're leaving matches[0] free to fill it later with the text to
4901 * display: Either the one single match or the longest common subset
4902 * of the matches.
4904 info.matches[0] = NULL;
4905 info.count = 1;
4907 for (i = len-1; i >= 0; i--) {
4908 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4909 break;
4913 info.text = text+i+1;
4914 info.samelen = info.len = len-i-1;
4916 if (i > 0) {
4917 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4918 if (!info.dirmask) {
4919 goto cleanup;
4921 strncpy(info.dirmask, text, i+1);
4922 info.dirmask[i+1] = 0;
4923 dirmask = talloc_asprintf(ctx,
4924 "%s%*s*",
4925 client_get_cur_dir(),
4926 i-1,
4927 text);
4928 } else {
4929 info.dirmask = SMB_STRDUP("");
4930 if (!info.dirmask) {
4931 goto cleanup;
4933 dirmask = talloc_asprintf(ctx,
4934 "%s*",
4935 client_get_cur_dir());
4937 if (!dirmask) {
4938 goto cleanup;
4941 status = cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli,
4942 &targetpath);
4943 if (!NT_STATUS_IS_OK(status)) {
4944 goto cleanup;
4946 status = cli_list(targetcli, targetpath, FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
4947 completion_remote_filter, (void *)&info);
4948 if (!NT_STATUS_IS_OK(status)) {
4949 goto cleanup;
4952 if (info.count == 1) {
4954 * No matches at all, NULL indicates there is nothing
4956 SAFE_FREE(info.matches[0]);
4957 SAFE_FREE(info.matches);
4958 TALLOC_FREE(ctx);
4959 return NULL;
4962 if (info.count == 2) {
4964 * Exactly one match in matches[1], indicate this is the one
4965 * in matches[0].
4967 info.matches[0] = info.matches[1];
4968 info.matches[1] = NULL;
4969 info.count -= 1;
4970 TALLOC_FREE(ctx);
4971 return info.matches;
4975 * We got more than one possible match, set the result to the maximum
4976 * common subset
4979 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4980 info.matches[info.count] = NULL;
4981 TALLOC_FREE(ctx);
4982 return info.matches;
4984 cleanup:
4985 for (i = 0; i < info.count; i++) {
4986 SAFE_FREE(info.matches[i]);
4988 SAFE_FREE(info.matches);
4989 SAFE_FREE(info.dirmask);
4990 TALLOC_FREE(ctx);
4991 return NULL;
4994 static char **completion_fn(const char *text, int start, int end)
4996 smb_readline_ca_char(' ');
4998 if (start) {
4999 const char *buf, *sp;
5000 int i;
5001 char compl_type;
5003 buf = smb_readline_get_line_buffer();
5004 if (buf == NULL)
5005 return NULL;
5007 sp = strchr(buf, ' ');
5008 if (sp == NULL)
5009 return NULL;
5011 for (i = 0; commands[i].name; i++) {
5012 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
5013 (commands[i].name[sp - buf] == 0)) {
5014 break;
5017 if (commands[i].name == NULL)
5018 return NULL;
5020 while (*sp == ' ')
5021 sp++;
5023 if (sp == (buf + start))
5024 compl_type = commands[i].compl_args[0];
5025 else
5026 compl_type = commands[i].compl_args[1];
5028 if (compl_type == COMPL_REMOTE)
5029 return remote_completion(text, end - start);
5030 else /* fall back to local filename completion */
5031 return NULL;
5032 } else {
5033 char **matches;
5034 int i, len, samelen = 0, count=1;
5036 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
5037 if (!matches) {
5038 return NULL;
5040 matches[0] = NULL;
5042 len = strlen(text);
5043 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
5044 if (strncmp(text, commands[i].name, len) == 0) {
5045 matches[count] = SMB_STRDUP(commands[i].name);
5046 if (!matches[count])
5047 goto cleanup;
5048 if (count == 1)
5049 samelen = strlen(matches[count]);
5050 else
5051 while (strncmp(matches[count], matches[count-1], samelen) != 0)
5052 samelen--;
5053 count++;
5057 switch (count) {
5058 case 0: /* should never happen */
5059 case 1:
5060 goto cleanup;
5061 case 2:
5062 matches[0] = SMB_STRDUP(matches[1]);
5063 break;
5064 default:
5065 matches[0] = (char *)SMB_MALLOC(samelen+1);
5066 if (!matches[0])
5067 goto cleanup;
5068 strncpy(matches[0], matches[1], samelen);
5069 matches[0][samelen] = 0;
5071 matches[count] = NULL;
5072 return matches;
5074 cleanup:
5075 for (i = 0; i < count; i++)
5076 free(matches[i]);
5078 free(matches);
5079 return NULL;
5083 static bool finished;
5085 /****************************************************************************
5086 Make sure we swallow keepalives during idle time.
5087 ****************************************************************************/
5089 static void readline_callback(void)
5091 static time_t last_t;
5092 struct timespec now;
5093 time_t t;
5094 NTSTATUS status;
5095 unsigned char garbage[16];
5097 clock_gettime_mono(&now);
5098 t = now.tv_sec;
5100 if (t - last_t < 5)
5101 return;
5103 last_t = t;
5105 /* Ping the server to keep the connection alive using SMBecho. */
5106 memset(garbage, 0xf0, sizeof(garbage));
5107 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
5108 if (NT_STATUS_IS_OK(status)) {
5109 return;
5112 if (!cli_state_is_connected(cli)) {
5113 DEBUG(0,("SMBecho failed (%s). The connection is "
5114 "disconnected now\n", nt_errstr(status)));
5115 finished = true;
5116 smb_readline_done();
5120 /****************************************************************************
5121 Process commands on stdin.
5122 ****************************************************************************/
5124 static int process_stdin(void)
5126 int rc = 0;
5128 while (!finished) {
5129 TALLOC_CTX *frame = talloc_stackframe();
5130 char *tok = NULL;
5131 char *the_prompt = NULL;
5132 char *line = NULL;
5133 int i;
5135 /* display a prompt */
5136 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
5137 TALLOC_FREE(frame);
5138 break;
5140 line = smb_readline(the_prompt, readline_callback, completion_fn);
5141 SAFE_FREE(the_prompt);
5142 if (!line) {
5143 TALLOC_FREE(frame);
5144 break;
5147 /* special case - first char is ! */
5148 if (*line == '!') {
5149 if (system(line + 1) == -1) {
5150 d_printf("system() command %s failed.\n",
5151 line+1);
5153 SAFE_FREE(line);
5154 TALLOC_FREE(frame);
5155 continue;
5158 /* and get the first part of the command */
5159 cmd_ptr = line;
5160 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
5161 TALLOC_FREE(frame);
5162 SAFE_FREE(line);
5163 continue;
5166 if ((i = process_tok(tok)) >= 0) {
5167 rc = commands[i].fn();
5168 } else if (i == -2) {
5169 d_printf("%s: command abbreviation ambiguous\n",tok);
5170 } else {
5171 d_printf("%s: command not found\n",tok);
5173 SAFE_FREE(line);
5174 TALLOC_FREE(frame);
5176 return rc;
5179 /****************************************************************************
5180 Process commands from the client.
5181 ****************************************************************************/
5183 static int process(const char *base_directory)
5185 int rc = 0;
5186 NTSTATUS status;
5188 status = cli_cm_open(talloc_tos(), NULL,
5189 have_ip ? dest_ss_str : desthost,
5190 service, auth_info, true, smb_encrypt,
5191 max_protocol, port, name_type, &cli);
5192 if (!NT_STATUS_IS_OK(status)) {
5193 return 1;
5196 if (base_directory && *base_directory) {
5197 rc = do_cd(base_directory);
5198 if (rc) {
5199 cli_shutdown(cli);
5200 return rc;
5204 if (cmdstr) {
5205 rc = process_command_string(cmdstr);
5206 } else {
5207 process_stdin();
5210 cli_shutdown(cli);
5211 return rc;
5214 /****************************************************************************
5215 Handle a -L query.
5216 ****************************************************************************/
5218 static int do_host_query(const char *query_host)
5220 NTSTATUS status;
5222 status = cli_cm_open(talloc_tos(), NULL,
5223 have_ip ? dest_ss_str : query_host,
5224 "IPC$", auth_info, true, smb_encrypt,
5225 max_protocol, port, name_type, &cli);
5226 if (!NT_STATUS_IS_OK(status)) {
5227 return 1;
5230 browse_host(true);
5232 /* Ensure that the host can do IPv4 */
5234 if (!interpret_addr(query_host)) {
5235 struct sockaddr_storage ss;
5236 if (interpret_string_addr(&ss, query_host, 0) &&
5237 (ss.ss_family != AF_INET)) {
5238 d_printf("%s is an IPv6 address -- no workgroup available\n",
5239 query_host);
5240 return 1;
5244 if (port != NBT_SMB_PORT) {
5246 /* Workgroups simply don't make sense over anything
5247 else but port 139... */
5249 cli_shutdown(cli);
5250 status = cli_cm_open(talloc_tos(), NULL,
5251 have_ip ? dest_ss_str : query_host,
5252 "IPC$", auth_info, true, smb_encrypt,
5253 max_protocol, NBT_SMB_PORT, name_type,
5254 &cli);
5255 if (!NT_STATUS_IS_OK(status)) {
5256 cli = NULL;
5260 if (cli == NULL) {
5261 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
5262 return 1;
5265 list_servers(lp_workgroup());
5267 cli_shutdown(cli);
5269 return(0);
5272 /****************************************************************************
5273 Handle a tar operation.
5274 ****************************************************************************/
5276 static int do_tar_op(const char *base_directory)
5278 int ret;
5280 /* do we already have a connection? */
5281 if (!cli) {
5282 NTSTATUS status;
5284 status = cli_cm_open(talloc_tos(), NULL,
5285 have_ip ? dest_ss_str : desthost,
5286 service, auth_info, true, smb_encrypt,
5287 max_protocol, port, name_type, &cli);
5288 if (!NT_STATUS_IS_OK(status)) {
5289 return 1;
5293 recurse=true;
5295 if (base_directory && *base_directory) {
5296 ret = do_cd(base_directory);
5297 if (ret) {
5298 cli_shutdown(cli);
5299 return ret;
5303 ret=process_tar();
5305 cli_shutdown(cli);
5307 return(ret);
5310 /****************************************************************************
5311 Handle a message operation.
5312 ****************************************************************************/
5314 static int do_message_op(struct user_auth_info *a_info)
5316 NTSTATUS status;
5318 status = cli_connect_nb(desthost, have_ip ? &dest_ss : NULL,
5319 port ? port : NBT_SMB_PORT, name_type,
5320 lp_netbios_name(), SMB_SIGNING_DEFAULT, 0, &cli);
5321 if (!NT_STATUS_IS_OK(status)) {
5322 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5323 return 1;
5326 send_message(get_cmdline_auth_info_username(a_info));
5327 cli_shutdown(cli);
5329 return 0;
5332 /****************************************************************************
5333 main program
5334 ****************************************************************************/
5336 int main(int argc,char *argv[])
5338 char *base_directory = NULL;
5339 int opt;
5340 char *query_host = NULL;
5341 bool message = false;
5342 static const char *new_name_resolve_order = NULL;
5343 poptContext pc;
5344 char *p;
5345 int rc = 0;
5346 bool tar_opt = false;
5347 bool service_opt = false;
5348 struct poptOption long_options[] = {
5349 POPT_AUTOHELP
5351 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5352 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5353 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5354 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5355 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5356 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5357 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5358 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5359 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5360 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5361 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5362 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5363 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5364 POPT_COMMON_SAMBA
5365 POPT_COMMON_CONNECTION
5366 POPT_COMMON_CREDENTIALS
5367 POPT_TABLEEND
5369 TALLOC_CTX *frame = talloc_stackframe();
5371 if (!client_set_cur_dir("\\")) {
5372 exit(ENOMEM);
5375 /* set default debug level to 1 regardless of what smb.conf sets */
5376 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5377 load_case_tables();
5379 lp_set_cmdline("log level", "1");
5381 auth_info = user_auth_info_init(frame);
5382 if (auth_info == NULL) {
5383 exit(1);
5385 popt_common_set_auth_info(auth_info);
5387 /* skip argv(0) */
5388 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5389 poptSetOtherOptionHelp(pc, "service <password>");
5391 while ((opt = poptGetNextOpt(pc)) != -1) {
5393 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5394 /* I see no other way to keep things sane --SSS */
5395 if (tar_opt == true) {
5396 while (poptPeekArg(pc)) {
5397 poptGetArg(pc);
5399 tar_opt = false;
5402 /* if the service has not yet been specified lets see if it is available in the popt stack */
5403 if (!service_opt && poptPeekArg(pc)) {
5404 service = talloc_strdup(frame, poptGetArg(pc));
5405 if (!service) {
5406 exit(ENOMEM);
5408 service_opt = true;
5411 /* if the service has already been retrieved then check if we have also a password */
5412 if (service_opt
5413 && (!get_cmdline_auth_info_got_pass(auth_info))
5414 && poptPeekArg(pc)) {
5415 set_cmdline_auth_info_password(auth_info,
5416 poptGetArg(pc));
5420 switch (opt) {
5421 case 'M':
5422 /* Messages are sent to NetBIOS name type 0x3
5423 * (Messenger Service). Make sure we default
5424 * to port 139 instead of port 445. srl,crh
5426 name_type = 0x03;
5427 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5428 if (!desthost) {
5429 exit(ENOMEM);
5431 if( !port )
5432 port = NBT_SMB_PORT;
5433 message = true;
5434 break;
5435 case 'I':
5437 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5438 exit(1);
5440 have_ip = true;
5441 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5443 break;
5444 case 'E':
5445 setup_logging("smbclient", DEBUG_STDERR );
5446 display_set_stderr();
5447 break;
5449 case 'L':
5450 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5451 if (!query_host) {
5452 exit(ENOMEM);
5454 break;
5455 case 'm':
5456 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5457 break;
5458 case 'T':
5459 /* We must use old option processing for this. Find the
5460 * position of the -T option in the raw argv[]. */
5462 int i;
5463 for (i = 1; i < argc; i++) {
5464 if (strncmp("-T", argv[i],2)==0)
5465 break;
5467 i++;
5468 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5469 poptPrintUsage(pc, stderr, 0);
5470 exit(1);
5473 /* this must be the last option, mark we have parsed it so that we know we have */
5474 tar_opt = true;
5475 break;
5476 case 'D':
5477 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5478 if (!base_directory) {
5479 exit(ENOMEM);
5481 break;
5482 case 'g':
5483 grepable=true;
5484 break;
5485 case 'e':
5486 smb_encrypt=true;
5487 break;
5488 case 'B':
5489 return(do_smb_browse());
5494 /* We may still have some leftovers after the last popt option has been called */
5495 if (tar_opt == true) {
5496 while (poptPeekArg(pc)) {
5497 poptGetArg(pc);
5499 tar_opt = false;
5502 /* if the service has not yet been specified lets see if it is available in the popt stack */
5503 if (!service_opt && poptPeekArg(pc)) {
5504 service = talloc_strdup(frame,poptGetArg(pc));
5505 if (!service) {
5506 exit(ENOMEM);
5508 service_opt = true;
5511 /* if the service has already been retrieved then check if we have also a password */
5512 if (service_opt
5513 && !get_cmdline_auth_info_got_pass(auth_info)
5514 && poptPeekArg(pc)) {
5515 set_cmdline_auth_info_password(auth_info,
5516 poptGetArg(pc));
5519 if ( override_logfile )
5520 setup_logging( lp_logfile(talloc_tos()), DEBUG_FILE );
5522 if (!lp_load_client(get_dyn_CONFIGFILE())) {
5523 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5524 argv[0], get_dyn_CONFIGFILE());
5527 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5528 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5529 exit(-1);
5532 load_interfaces();
5534 if (service_opt && service) {
5535 size_t len;
5537 /* Convert any '/' characters in the service name to '\' characters */
5538 string_replace(service, '/','\\');
5539 if (count_chars(service,'\\') < 3) {
5540 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5541 poptPrintUsage(pc, stderr, 0);
5542 exit(1);
5544 /* Remove trailing slashes */
5545 len = strlen(service);
5546 while(len > 0 && service[len - 1] == '\\') {
5547 --len;
5548 service[len] = '\0';
5552 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5553 if (!init_names()) {
5554 fprintf(stderr, "init_names() failed\n");
5555 exit(1);
5558 if(new_name_resolve_order)
5559 lp_set_cmdline("name resolve order", new_name_resolve_order);
5561 if (!tar_type && !query_host && !service && !message) {
5562 poptPrintUsage(pc, stderr, 0);
5563 exit(1);
5566 poptFreeContext(pc);
5567 popt_burn_cmdline_password(argc, argv);
5569 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5571 /* Ensure we have a password (or equivalent). */
5572 set_cmdline_auth_info_getpass(auth_info);
5574 if (tar_type) {
5575 if (cmdstr)
5576 process_command_string(cmdstr);
5577 rc = do_tar_op(base_directory);
5578 } else if (query_host && *query_host) {
5579 char *qhost = query_host;
5580 char *slash;
5582 while (*qhost == '\\' || *qhost == '/')
5583 qhost++;
5585 if ((slash = strchr_m(qhost, '/'))
5586 || (slash = strchr_m(qhost, '\\'))) {
5587 *slash = 0;
5590 if ((p=strchr_m(qhost, '#'))) {
5591 *p = 0;
5592 p++;
5593 sscanf(p, "%x", &name_type);
5596 rc = do_host_query(qhost);
5597 } else if (message) {
5598 rc = do_message_op(auth_info);
5599 } else if (process(base_directory)) {
5600 rc = 1;
5603 TALLOC_FREE(frame);
5604 return rc;