sr-epmap: Minor cleanups and fixes
[Samba/vl.git] / source3 / client / client.c
blobe979f74fa44775f2891bdec9a811a219b3eb0bdd
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 "popt_common.h"
26 #include "rpc_client/cli_pipe.h"
27 #include "client/client_proto.h"
28 #include "../librpc/gen_ndr/ndr_srvsvc_c.h"
29 #include "../lib/util/select.h"
30 #include "system/readline.h"
31 #include "../libcli/smbreadline/smbreadline.h"
32 #include "../libcli/security/security.h"
33 #include "system/select.h"
35 #ifndef REGISTER
36 #define REGISTER 0
37 #endif
39 extern int do_smb_browse(void); /* mDNS browsing */
41 extern bool override_logfile;
42 extern char tar_type;
44 static int port = 0;
45 static char *service;
46 static char *desthost;
47 static char *calling_name;
48 static bool grepable = false;
49 static char *cmdstr = NULL;
50 const char *cmd_ptr = NULL;
52 static int io_bufsize = 524288;
54 static int name_type = 0x20;
55 static int max_protocol = PROTOCOL_NT1;
57 static int process_tok(char *tok);
58 static int cmd_help(void);
60 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
62 /* 30 second timeout on most commands */
63 #define CLIENT_TIMEOUT (30*1000)
64 #define SHORT_TIMEOUT (5*1000)
66 /* value for unused fid field in trans2 secondary request */
67 #define FID_UNUSED (0xFFFF)
69 time_t newer_than = 0;
70 static int archive_level = 0;
72 static bool translation = false;
73 static bool have_ip;
75 /* clitar bits insert */
76 extern int blocksize;
77 extern bool tar_inc;
78 extern bool tar_reset;
79 /* clitar bits end */
81 static bool prompt = true;
83 static bool recurse = false;
84 static bool showacls = false;
85 bool lowercase = false;
87 static struct sockaddr_storage dest_ss;
88 static char dest_ss_str[INET6_ADDRSTRLEN];
90 #define SEPARATORS " \t\n\r"
92 static bool abort_mget = true;
94 /* timing globals */
95 uint64_t get_total_size = 0;
96 unsigned int get_total_time_ms = 0;
97 static uint64_t put_total_size = 0;
98 static unsigned int put_total_time_ms = 0;
100 /* totals globals */
101 static double dir_total;
103 /* encrypted state. */
104 static bool smb_encrypt;
106 /* root cli_state connection */
108 struct cli_state *cli;
110 static char CLI_DIRSEP_CHAR = '\\';
111 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
113 /* Authentication for client connections. */
114 struct user_auth_info *auth_info;
116 /* Accessor functions for directory paths. */
117 static char *fileselection;
118 static const char *client_get_fileselection(void)
120 if (fileselection) {
121 return fileselection;
123 return "";
126 static const char *client_set_fileselection(const char *new_fs)
128 SAFE_FREE(fileselection);
129 if (new_fs) {
130 fileselection = SMB_STRDUP(new_fs);
132 return client_get_fileselection();
135 static char *cwd;
136 static const char *client_get_cwd(void)
138 if (cwd) {
139 return cwd;
141 return CLI_DIRSEP_STR;
144 static const char *client_set_cwd(const char *new_cwd)
146 SAFE_FREE(cwd);
147 if (new_cwd) {
148 cwd = SMB_STRDUP(new_cwd);
150 return client_get_cwd();
153 static char *cur_dir;
154 const char *client_get_cur_dir(void)
156 if (cur_dir) {
157 return cur_dir;
159 return CLI_DIRSEP_STR;
162 const char *client_set_cur_dir(const char *newdir)
164 SAFE_FREE(cur_dir);
165 if (newdir) {
166 cur_dir = SMB_STRDUP(newdir);
168 return client_get_cur_dir();
171 /****************************************************************************
172 Put up a yes/no prompt.
173 ****************************************************************************/
175 static bool yesno(const char *p)
177 char ans[20];
178 printf("%s",p);
180 if (!fgets(ans,sizeof(ans)-1,stdin))
181 return(False);
183 if (*ans == 'y' || *ans == 'Y')
184 return(True);
186 return(False);
189 /****************************************************************************
190 Write to a local file with CR/LF->LF translation if appropriate. Return the
191 number taken from the buffer. This may not equal the number written.
192 ****************************************************************************/
194 static int writefile(int f, char *b, int n)
196 int i;
198 if (!translation) {
199 return write(f,b,n);
202 i = 0;
203 while (i < n) {
204 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
205 b++;i++;
207 if (write(f, b, 1) != 1) {
208 break;
210 b++;
211 i++;
214 return(i);
217 /****************************************************************************
218 Read from a file with LF->CR/LF translation if appropriate. Return the
219 number read. read approx n bytes.
220 ****************************************************************************/
222 static int readfile(uint8_t *b, int n, XFILE *f)
224 int i;
225 int c;
227 if (!translation)
228 return x_fread(b,1,n,f);
230 i = 0;
231 while (i < (n - 1) && (i < BUFFER_SIZE)) {
232 if ((c = x_getc(f)) == EOF) {
233 break;
236 if (c == '\n') { /* change all LFs to CR/LF */
237 b[i++] = '\r';
240 b[i++] = c;
243 return(i);
246 struct push_state {
247 XFILE *f;
248 SMB_OFF_T nread;
251 static size_t push_source(uint8_t *buf, size_t n, void *priv)
253 struct push_state *state = (struct push_state *)priv;
254 int result;
256 if (x_feof(state->f)) {
257 return 0;
260 result = readfile(buf, n, state->f);
261 state->nread += result;
262 return result;
265 /****************************************************************************
266 Send a message.
267 ****************************************************************************/
269 static void send_message(const char *username)
271 char buf[1600];
272 NTSTATUS status;
273 int i;
275 d_printf("Type your message, ending it with a Control-D\n");
277 i = 0;
278 while (i<sizeof(buf)-2) {
279 int c = fgetc(stdin);
280 if (c == EOF) {
281 break;
283 if (c == '\n') {
284 buf[i++] = '\r';
286 buf[i++] = c;
288 buf[i] = '\0';
290 status = cli_message(cli, desthost, username, buf);
291 if (!NT_STATUS_IS_OK(status)) {
292 d_fprintf(stderr, "cli_message returned %s\n",
293 nt_errstr(status));
297 /****************************************************************************
298 Check the space on a device.
299 ****************************************************************************/
301 static int do_dskattr(void)
303 int total, bsize, avail;
304 struct cli_state *targetcli = NULL;
305 char *targetpath = NULL;
306 TALLOC_CTX *ctx = talloc_tos();
307 NTSTATUS status;
309 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
310 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
311 return 1;
314 status = cli_dskattr(targetcli, &bsize, &total, &avail);
315 if (!NT_STATUS_IS_OK(status)) {
316 d_printf("Error in dskattr: %s\n", nt_errstr(status));
317 return 1;
320 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
321 total, bsize, avail);
323 return 0;
326 /****************************************************************************
327 Show cd/pwd.
328 ****************************************************************************/
330 static int cmd_pwd(void)
332 d_printf("Current directory is %s",service);
333 d_printf("%s\n",client_get_cur_dir());
334 return 0;
337 /****************************************************************************
338 Ensure name has correct directory separators.
339 ****************************************************************************/
341 static void normalize_name(char *newdir)
343 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
344 string_replace(newdir,'/','\\');
348 /****************************************************************************
349 Change directory - inner section.
350 ****************************************************************************/
352 static int do_cd(const char *new_dir)
354 char *newdir = NULL;
355 char *saved_dir = NULL;
356 char *new_cd = NULL;
357 char *targetpath = NULL;
358 struct cli_state *targetcli = NULL;
359 SMB_STRUCT_STAT sbuf;
360 uint32 attributes;
361 int ret = 1;
362 TALLOC_CTX *ctx = talloc_stackframe();
364 newdir = talloc_strdup(ctx, new_dir);
365 if (!newdir) {
366 TALLOC_FREE(ctx);
367 return 1;
370 normalize_name(newdir);
372 /* Save the current directory in case the new directory is invalid */
374 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
375 if (!saved_dir) {
376 TALLOC_FREE(ctx);
377 return 1;
380 if (*newdir == CLI_DIRSEP_CHAR) {
381 client_set_cur_dir(newdir);
382 new_cd = newdir;
383 } else {
384 new_cd = talloc_asprintf(ctx, "%s%s",
385 client_get_cur_dir(),
386 newdir);
387 if (!new_cd) {
388 goto out;
392 /* Ensure cur_dir ends in a DIRSEP */
393 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
394 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
395 if (!new_cd) {
396 goto out;
399 client_set_cur_dir(new_cd);
401 new_cd = clean_name(ctx, new_cd);
402 client_set_cur_dir(new_cd);
404 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
405 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
406 client_set_cur_dir(saved_dir);
407 goto out;
410 if (strequal(targetpath,CLI_DIRSEP_STR )) {
411 TALLOC_FREE(ctx);
412 return 0;
415 /* Use a trans2_qpathinfo to test directories for modern servers.
416 Except Win9x doesn't support the qpathinfo_basic() call..... */
418 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
419 NTSTATUS status;
421 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
422 &attributes);
423 if (!NT_STATUS_IS_OK(status)) {
424 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
425 client_set_cur_dir(saved_dir);
426 goto out;
429 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
430 d_printf("cd %s: not a directory\n", new_cd);
431 client_set_cur_dir(saved_dir);
432 goto out;
434 } else {
435 NTSTATUS status;
437 targetpath = talloc_asprintf(ctx,
438 "%s%s",
439 targetpath,
440 CLI_DIRSEP_STR );
441 if (!targetpath) {
442 client_set_cur_dir(saved_dir);
443 goto out;
445 targetpath = clean_name(ctx, targetpath);
446 if (!targetpath) {
447 client_set_cur_dir(saved_dir);
448 goto out;
451 status = cli_chkpath(targetcli, targetpath);
452 if (!NT_STATUS_IS_OK(status)) {
453 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
454 client_set_cur_dir(saved_dir);
455 goto out;
459 ret = 0;
461 out:
463 TALLOC_FREE(ctx);
464 return ret;
467 /****************************************************************************
468 Change directory.
469 ****************************************************************************/
471 static int cmd_cd(void)
473 char *buf = NULL;
474 int rc = 0;
476 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
477 rc = do_cd(buf);
478 } else {
479 d_printf("Current directory is %s\n",client_get_cur_dir());
482 return rc;
485 /****************************************************************************
486 Change directory.
487 ****************************************************************************/
489 static int cmd_cd_oneup(void)
491 return do_cd("..");
494 /*******************************************************************
495 Decide if a file should be operated on.
496 ********************************************************************/
498 static bool do_this_one(struct file_info *finfo)
500 if (!finfo->name) {
501 return false;
504 if (finfo->mode & aDIR) {
505 return true;
508 if (*client_get_fileselection() &&
509 !mask_match(finfo->name,client_get_fileselection(),false)) {
510 DEBUG(3,("mask_match %s failed\n", finfo->name));
511 return false;
514 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
515 DEBUG(3,("newer_than %s failed\n", finfo->name));
516 return false;
519 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
520 DEBUG(3,("archive %s failed\n", finfo->name));
521 return false;
524 return true;
527 /****************************************************************************
528 Display info about a file.
529 ****************************************************************************/
531 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
532 const char *dir)
534 time_t t;
535 TALLOC_CTX *ctx = talloc_tos();
536 NTSTATUS status = NT_STATUS_OK;
538 if (!do_this_one(finfo)) {
539 return NT_STATUS_OK;
542 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
543 if (!showacls) {
544 d_printf(" %-30s%7.7s %8.0f %s",
545 finfo->name,
546 attrib_string(finfo->mode),
547 (double)finfo->size,
548 time_to_asc(t));
549 dir_total += finfo->size;
550 } else {
551 char *afname = NULL;
552 uint16_t fnum;
554 /* skip if this is . or .. */
555 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
556 return NT_STATUS_OK;
557 /* create absolute filename for cli_ntcreate() FIXME */
558 afname = talloc_asprintf(ctx,
559 "%s%s%s",
560 dir,
561 CLI_DIRSEP_STR,
562 finfo->name);
563 if (!afname) {
564 return NT_STATUS_NO_MEMORY;
566 /* print file meta date header */
567 d_printf( "FILENAME:%s\n", finfo->name);
568 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
569 d_printf( "SIZE:%.0f\n", (double)finfo->size);
570 d_printf( "MTIME:%s", time_to_asc(t));
571 status = cli_ntcreate(cli_state, afname, 0,
572 CREATE_ACCESS_READ, 0,
573 FILE_SHARE_READ|FILE_SHARE_WRITE,
574 FILE_OPEN, 0x0, 0x0, &fnum);
575 if (!NT_STATUS_IS_OK(status)) {
576 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
577 afname, nt_errstr(status)));
578 } else {
579 struct security_descriptor *sd = NULL;
580 sd = cli_query_secdesc(cli_state, fnum, ctx);
581 if (!sd) {
582 DEBUG( 0, ("display_finfo() failed to "
583 "get security descriptor: %s",
584 cli_errstr(cli_state)));
585 status = cli_nt_error(cli_state);
586 } else {
587 display_sec_desc(sd);
589 TALLOC_FREE(sd);
591 TALLOC_FREE(afname);
593 return status;
596 /****************************************************************************
597 Accumulate size of a file.
598 ****************************************************************************/
600 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
601 const char *dir)
603 if (do_this_one(finfo)) {
604 dir_total += finfo->size;
606 return NT_STATUS_OK;
609 static bool do_list_recurse;
610 static bool do_list_dirs;
611 static char *do_list_queue = 0;
612 static long do_list_queue_size = 0;
613 static long do_list_queue_start = 0;
614 static long do_list_queue_end = 0;
615 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
616 const char *dir);
618 /****************************************************************************
619 Functions for do_list_queue.
620 ****************************************************************************/
623 * The do_list_queue is a NUL-separated list of strings stored in a
624 * char*. Since this is a FIFO, we keep track of the beginning and
625 * ending locations of the data in the queue. When we overflow, we
626 * double the size of the char*. When the start of the data passes
627 * the midpoint, we move everything back. This is logically more
628 * complex than a linked list, but easier from a memory management
629 * angle. In any memory error condition, do_list_queue is reset.
630 * Functions check to ensure that do_list_queue is non-NULL before
631 * accessing it.
634 static void reset_do_list_queue(void)
636 SAFE_FREE(do_list_queue);
637 do_list_queue_size = 0;
638 do_list_queue_start = 0;
639 do_list_queue_end = 0;
642 static void init_do_list_queue(void)
644 reset_do_list_queue();
645 do_list_queue_size = 1024;
646 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
647 if (do_list_queue == 0) {
648 d_printf("malloc fail for size %d\n",
649 (int)do_list_queue_size);
650 reset_do_list_queue();
651 } else {
652 memset(do_list_queue, 0, do_list_queue_size);
656 static void adjust_do_list_queue(void)
659 * If the starting point of the queue is more than half way through,
660 * move everything toward the beginning.
663 if (do_list_queue == NULL) {
664 DEBUG(4,("do_list_queue is empty\n"));
665 do_list_queue_start = do_list_queue_end = 0;
666 return;
669 if (do_list_queue_start == do_list_queue_end) {
670 DEBUG(4,("do_list_queue is empty\n"));
671 do_list_queue_start = do_list_queue_end = 0;
672 *do_list_queue = '\0';
673 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
674 DEBUG(4,("sliding do_list_queue backward\n"));
675 memmove(do_list_queue,
676 do_list_queue + do_list_queue_start,
677 do_list_queue_end - do_list_queue_start);
678 do_list_queue_end -= do_list_queue_start;
679 do_list_queue_start = 0;
683 static void add_to_do_list_queue(const char *entry)
685 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
686 while (new_end > do_list_queue_size) {
687 do_list_queue_size *= 2;
688 DEBUG(4,("enlarging do_list_queue to %d\n",
689 (int)do_list_queue_size));
690 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
691 if (! do_list_queue) {
692 d_printf("failure enlarging do_list_queue to %d bytes\n",
693 (int)do_list_queue_size);
694 reset_do_list_queue();
695 } else {
696 memset(do_list_queue + do_list_queue_size / 2,
697 0, do_list_queue_size / 2);
700 if (do_list_queue) {
701 safe_strcpy_base(do_list_queue + do_list_queue_end,
702 entry, do_list_queue, do_list_queue_size);
703 do_list_queue_end = new_end;
704 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
705 entry, (int)do_list_queue_start, (int)do_list_queue_end));
709 static char *do_list_queue_head(void)
711 return do_list_queue + do_list_queue_start;
714 static void remove_do_list_queue_head(void)
716 if (do_list_queue_end > do_list_queue_start) {
717 do_list_queue_start += strlen(do_list_queue_head()) + 1;
718 adjust_do_list_queue();
719 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
720 (int)do_list_queue_start, (int)do_list_queue_end));
724 static int do_list_queue_empty(void)
726 return (! (do_list_queue && *do_list_queue));
729 /****************************************************************************
730 A helper for do_list.
731 ****************************************************************************/
733 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
734 const char *mask, void *state)
736 struct cli_state *cli_state = (struct cli_state *)state;
737 TALLOC_CTX *ctx = talloc_tos();
738 char *dir = NULL;
739 char *dir_end = NULL;
740 NTSTATUS status = NT_STATUS_OK;
742 /* Work out the directory. */
743 dir = talloc_strdup(ctx, mask);
744 if (!dir) {
745 return NT_STATUS_NO_MEMORY;
747 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
748 *dir_end = '\0';
751 if (f->mode & aDIR) {
752 if (do_list_dirs && do_this_one(f)) {
753 status = do_list_fn(cli_state, f, dir);
754 if (!NT_STATUS_IS_OK(status)) {
755 return status;
758 if (do_list_recurse &&
759 f->name &&
760 !strequal(f->name,".") &&
761 !strequal(f->name,"..")) {
762 char *mask2 = NULL;
763 char *p = NULL;
765 if (!f->name[0]) {
766 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
767 TALLOC_FREE(dir);
768 return NT_STATUS_UNSUCCESSFUL;
771 mask2 = talloc_asprintf(ctx,
772 "%s%s",
773 mntpoint,
774 mask);
775 if (!mask2) {
776 TALLOC_FREE(dir);
777 return NT_STATUS_NO_MEMORY;
779 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
780 if (p) {
781 p[1] = 0;
782 } else {
783 mask2[0] = '\0';
785 mask2 = talloc_asprintf_append(mask2,
786 "%s%s*",
787 f->name,
788 CLI_DIRSEP_STR);
789 if (!mask2) {
790 TALLOC_FREE(dir);
791 return NT_STATUS_NO_MEMORY;
793 add_to_do_list_queue(mask2);
794 TALLOC_FREE(mask2);
796 TALLOC_FREE(dir);
797 return NT_STATUS_OK;
800 if (do_this_one(f)) {
801 status = do_list_fn(cli_state, f, dir);
803 TALLOC_FREE(dir);
804 return status;
807 /****************************************************************************
808 A wrapper around cli_list that adds recursion.
809 ****************************************************************************/
811 NTSTATUS do_list(const char *mask,
812 uint16 attribute,
813 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
814 const char *dir),
815 bool rec,
816 bool dirs)
818 static int in_do_list = 0;
819 TALLOC_CTX *ctx = talloc_tos();
820 struct cli_state *targetcli = NULL;
821 char *targetpath = NULL;
822 NTSTATUS ret_status = NT_STATUS_OK;
823 NTSTATUS status = NT_STATUS_OK;
825 if (in_do_list && rec) {
826 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
827 exit(1);
830 in_do_list = 1;
832 do_list_recurse = rec;
833 do_list_dirs = dirs;
834 do_list_fn = fn;
836 if (rec) {
837 init_do_list_queue();
838 add_to_do_list_queue(mask);
840 while (!do_list_queue_empty()) {
842 * Need to copy head so that it doesn't become
843 * invalid inside the call to cli_list. This
844 * would happen if the list were expanded
845 * during the call.
846 * Fix from E. Jay Berkenbilt (ejb@ql.org)
848 char *head = talloc_strdup(ctx, do_list_queue_head());
850 if (!head) {
851 return NT_STATUS_NO_MEMORY;
854 /* check for dfs */
856 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
857 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
858 remove_do_list_queue_head();
859 continue;
862 status = cli_list(targetcli, targetpath, attribute,
863 do_list_helper, targetcli);
864 if (!NT_STATUS_IS_OK(status)) {
865 d_printf("%s listing %s\n",
866 nt_errstr(status), targetpath);
867 ret_status = status;
869 remove_do_list_queue_head();
870 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
871 char *next_file = do_list_queue_head();
872 char *save_ch = 0;
873 if ((strlen(next_file) >= 2) &&
874 (next_file[strlen(next_file) - 1] == '*') &&
875 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
876 save_ch = next_file +
877 strlen(next_file) - 2;
878 *save_ch = '\0';
879 if (showacls) {
880 /* cwd is only used if showacls is on */
881 client_set_cwd(next_file);
884 if (!showacls) /* don't disturbe the showacls output */
885 d_printf("\n%s\n",next_file);
886 if (save_ch) {
887 *save_ch = CLI_DIRSEP_CHAR;
890 TALLOC_FREE(head);
891 TALLOC_FREE(targetpath);
893 } else {
894 /* check for dfs */
895 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
897 status = cli_list(targetcli, targetpath, attribute,
898 do_list_helper, targetcli);
899 if (!NT_STATUS_IS_OK(status)) {
900 d_printf("%s listing %s\n",
901 nt_errstr(status), targetpath);
902 ret_status = status;
904 TALLOC_FREE(targetpath);
905 } else {
906 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
907 ret_status = cli_nt_error(cli);
911 in_do_list = 0;
912 reset_do_list_queue();
913 return ret_status;
916 /****************************************************************************
917 Get a directory listing.
918 ****************************************************************************/
920 static int cmd_dir(void)
922 TALLOC_CTX *ctx = talloc_tos();
923 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
924 char *mask = NULL;
925 char *buf = NULL;
926 int rc = 1;
927 NTSTATUS status;
929 dir_total = 0;
930 mask = talloc_strdup(ctx, client_get_cur_dir());
931 if (!mask) {
932 return 1;
935 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
936 normalize_name(buf);
937 if (*buf == CLI_DIRSEP_CHAR) {
938 mask = talloc_strdup(ctx, buf);
939 } else {
940 mask = talloc_asprintf_append(mask, "%s", buf);
942 } else {
943 mask = talloc_asprintf_append(mask, "*");
945 if (!mask) {
946 return 1;
949 if (showacls) {
950 /* cwd is only used if showacls is on */
951 client_set_cwd(client_get_cur_dir());
954 status = do_list(mask, attribute, display_finfo, recurse, true);
955 if (!NT_STATUS_IS_OK(status)) {
956 return 1;
959 rc = do_dskattr();
961 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
963 return rc;
966 /****************************************************************************
967 Get a directory listing.
968 ****************************************************************************/
970 static int cmd_du(void)
972 TALLOC_CTX *ctx = talloc_tos();
973 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
974 char *mask = NULL;
975 char *buf = NULL;
976 NTSTATUS status;
977 int rc = 1;
979 dir_total = 0;
980 mask = talloc_strdup(ctx, client_get_cur_dir());
981 if (!mask) {
982 return 1;
984 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
985 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
986 if (!mask) {
987 return 1;
991 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
992 normalize_name(buf);
993 if (*buf == CLI_DIRSEP_CHAR) {
994 mask = talloc_strdup(ctx, buf);
995 } else {
996 mask = talloc_asprintf_append(mask, "%s", buf);
998 } else {
999 mask = talloc_strdup(ctx, "*");
1002 status = do_list(mask, attribute, do_du, recurse, true);
1003 if (!NT_STATUS_IS_OK(status)) {
1004 return 1;
1007 rc = do_dskattr();
1009 d_printf("Total number of bytes: %.0f\n", dir_total);
1011 return rc;
1014 static int cmd_echo(void)
1016 TALLOC_CTX *ctx = talloc_tos();
1017 char *num;
1018 char *data;
1019 NTSTATUS status;
1021 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1022 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1023 d_printf("echo <num> <data>\n");
1024 return 1;
1027 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1029 if (!NT_STATUS_IS_OK(status)) {
1030 d_printf("echo failed: %s\n", nt_errstr(status));
1031 return 1;
1034 return 0;
1037 /****************************************************************************
1038 Get a file from rname to lname
1039 ****************************************************************************/
1041 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1043 int *pfd = (int *)priv;
1044 if (writefile(*pfd, buf, n) == -1) {
1045 return map_nt_error_from_unix(errno);
1047 return NT_STATUS_OK;
1050 static int do_get(const char *rname, const char *lname_in, bool reget)
1052 TALLOC_CTX *ctx = talloc_tos();
1053 int handle = 0;
1054 uint16_t fnum;
1055 bool newhandle = false;
1056 struct timespec tp_start;
1057 uint16 attr;
1058 SMB_OFF_T size;
1059 off_t start = 0;
1060 SMB_OFF_T nread = 0;
1061 int rc = 0;
1062 struct cli_state *targetcli = NULL;
1063 char *targetname = NULL;
1064 char *lname = NULL;
1065 NTSTATUS status;
1067 lname = talloc_strdup(ctx, lname_in);
1068 if (!lname) {
1069 return 1;
1072 if (lowercase) {
1073 strlower_m(lname);
1076 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1077 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1078 return 1;
1081 clock_gettime_mono(&tp_start);
1083 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1084 if (!NT_STATUS_IS_OK(status)) {
1085 d_printf("%s opening remote file %s\n", nt_errstr(status),
1086 rname);
1087 return 1;
1090 if(!strcmp(lname,"-")) {
1091 handle = fileno(stdout);
1092 } else {
1093 if (reget) {
1094 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1095 if (handle >= 0) {
1096 start = sys_lseek(handle, 0, SEEK_END);
1097 if (start == -1) {
1098 d_printf("Error seeking local file\n");
1099 return 1;
1102 } else {
1103 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1105 newhandle = true;
1107 if (handle < 0) {
1108 d_printf("Error opening local file %s\n",lname);
1109 return 1;
1113 status = cli_qfileinfo_basic(targetcli, fnum, &attr, &size, NULL, NULL,
1114 NULL, NULL, NULL);
1115 if (!NT_STATUS_IS_OK(status)) {
1116 status = cli_getattrE(targetcli, fnum, &attr, &size, NULL, NULL,
1117 NULL);
1118 if(!NT_STATUS_IS_OK(status)) {
1119 d_printf("getattrib: %s\n", nt_errstr(status));
1120 return 1;
1124 DEBUG(1,("getting file %s of size %.0f as %s ",
1125 rname, (double)size, lname));
1127 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1128 writefile_sink, (void *)&handle, &nread);
1129 if (!NT_STATUS_IS_OK(status)) {
1130 d_fprintf(stderr, "parallel_read returned %s\n",
1131 nt_errstr(status));
1132 cli_close(targetcli, fnum);
1133 return 1;
1136 status = cli_close(targetcli, fnum);
1137 if (!NT_STATUS_IS_OK(status)) {
1138 d_printf("Error %s closing remote file\n", nt_errstr(status));
1139 rc = 1;
1142 if (newhandle) {
1143 close(handle);
1146 if (archive_level >= 2 && (attr & aARCH)) {
1147 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1151 struct timespec tp_end;
1152 int this_time;
1154 clock_gettime_mono(&tp_end);
1155 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1156 get_total_time_ms += this_time;
1157 get_total_size += nread;
1159 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1160 nread / (1.024*this_time + 1.0e-4),
1161 get_total_size / (1.024*get_total_time_ms)));
1164 TALLOC_FREE(targetname);
1165 return rc;
1168 /****************************************************************************
1169 Get a file.
1170 ****************************************************************************/
1172 static int cmd_get(void)
1174 TALLOC_CTX *ctx = talloc_tos();
1175 char *lname = NULL;
1176 char *rname = NULL;
1177 char *fname = NULL;
1179 rname = talloc_strdup(ctx, client_get_cur_dir());
1180 if (!rname) {
1181 return 1;
1184 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1185 d_printf("get <filename> [localname]\n");
1186 return 1;
1188 rname = talloc_asprintf_append(rname, "%s", fname);
1189 if (!rname) {
1190 return 1;
1192 rname = clean_name(ctx, rname);
1193 if (!rname) {
1194 return 1;
1197 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1198 if (!lname) {
1199 lname = fname;
1202 return do_get(rname, lname, false);
1205 /****************************************************************************
1206 Do an mget operation on one file.
1207 ****************************************************************************/
1209 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1210 const char *dir)
1212 TALLOC_CTX *ctx = talloc_tos();
1213 NTSTATUS status = NT_STATUS_OK;
1214 char *rname = NULL;
1215 char *quest = NULL;
1216 char *saved_curdir = NULL;
1217 char *mget_mask = NULL;
1218 char *new_cd = NULL;
1220 if (!finfo->name) {
1221 return NT_STATUS_OK;
1224 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1225 return NT_STATUS_OK;
1227 if (abort_mget) {
1228 d_printf("mget aborted\n");
1229 return NT_STATUS_UNSUCCESSFUL;
1232 if (finfo->mode & aDIR) {
1233 if (asprintf(&quest,
1234 "Get directory %s? ",finfo->name) < 0) {
1235 return NT_STATUS_NO_MEMORY;
1237 } else {
1238 if (asprintf(&quest,
1239 "Get file %s? ",finfo->name) < 0) {
1240 return NT_STATUS_NO_MEMORY;
1244 if (prompt && !yesno(quest)) {
1245 SAFE_FREE(quest);
1246 return NT_STATUS_OK;
1248 SAFE_FREE(quest);
1250 if (!(finfo->mode & aDIR)) {
1251 rname = talloc_asprintf(ctx,
1252 "%s%s",
1253 client_get_cur_dir(),
1254 finfo->name);
1255 if (!rname) {
1256 return NT_STATUS_NO_MEMORY;
1258 do_get(rname, finfo->name, false);
1259 TALLOC_FREE(rname);
1260 return NT_STATUS_OK;
1263 /* handle directories */
1264 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1265 if (!saved_curdir) {
1266 return NT_STATUS_NO_MEMORY;
1269 new_cd = talloc_asprintf(ctx,
1270 "%s%s%s",
1271 client_get_cur_dir(),
1272 finfo->name,
1273 CLI_DIRSEP_STR);
1274 if (!new_cd) {
1275 return NT_STATUS_NO_MEMORY;
1277 client_set_cur_dir(new_cd);
1279 string_replace(finfo->name,'\\','/');
1280 if (lowercase) {
1281 strlower_m(finfo->name);
1284 if (!directory_exist(finfo->name) &&
1285 mkdir(finfo->name,0777) != 0) {
1286 d_printf("failed to create directory %s\n",finfo->name);
1287 client_set_cur_dir(saved_curdir);
1288 return map_nt_error_from_unix(errno);
1291 if (chdir(finfo->name) != 0) {
1292 d_printf("failed to chdir to directory %s\n",finfo->name);
1293 client_set_cur_dir(saved_curdir);
1294 return map_nt_error_from_unix(errno);
1297 mget_mask = talloc_asprintf(ctx,
1298 "%s*",
1299 client_get_cur_dir());
1301 if (!mget_mask) {
1302 return NT_STATUS_NO_MEMORY;
1305 status = do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1306 if (!NT_STATUS_IS_OK(status)) {
1307 return status;
1310 if (chdir("..") == -1) {
1311 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1312 strerror(errno) );
1313 return map_nt_error_from_unix(errno);
1315 client_set_cur_dir(saved_curdir);
1316 TALLOC_FREE(mget_mask);
1317 TALLOC_FREE(saved_curdir);
1318 TALLOC_FREE(new_cd);
1319 return NT_STATUS_OK;
1322 /****************************************************************************
1323 View the file using the pager.
1324 ****************************************************************************/
1326 static int cmd_more(void)
1328 TALLOC_CTX *ctx = talloc_tos();
1329 char *rname = NULL;
1330 char *fname = NULL;
1331 char *lname = NULL;
1332 char *pager_cmd = NULL;
1333 const char *pager;
1334 int fd;
1335 int rc = 0;
1337 rname = talloc_strdup(ctx, client_get_cur_dir());
1338 if (!rname) {
1339 return 1;
1342 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1343 if (!lname) {
1344 return 1;
1346 fd = mkstemp(lname);
1347 if (fd == -1) {
1348 d_printf("failed to create temporary file for more\n");
1349 return 1;
1351 close(fd);
1353 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1354 d_printf("more <filename>\n");
1355 unlink(lname);
1356 return 1;
1358 rname = talloc_asprintf_append(rname, "%s", fname);
1359 if (!rname) {
1360 return 1;
1362 rname = clean_name(ctx,rname);
1363 if (!rname) {
1364 return 1;
1367 rc = do_get(rname, lname, false);
1369 pager=getenv("PAGER");
1371 pager_cmd = talloc_asprintf(ctx,
1372 "%s %s",
1373 (pager? pager:PAGER),
1374 lname);
1375 if (!pager_cmd) {
1376 return 1;
1378 if (system(pager_cmd) == -1) {
1379 d_printf("system command '%s' returned -1\n",
1380 pager_cmd);
1382 unlink(lname);
1384 return rc;
1387 /****************************************************************************
1388 Do a mget command.
1389 ****************************************************************************/
1391 static int cmd_mget(void)
1393 TALLOC_CTX *ctx = talloc_tos();
1394 uint16 attribute = aSYSTEM | aHIDDEN;
1395 char *mget_mask = NULL;
1396 char *buf = NULL;
1397 NTSTATUS status = NT_STATUS_OK;
1399 if (recurse) {
1400 attribute |= aDIR;
1403 abort_mget = false;
1405 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1407 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1408 if (!mget_mask) {
1409 return 1;
1411 if (*buf == CLI_DIRSEP_CHAR) {
1412 mget_mask = talloc_strdup(ctx, buf);
1413 } else {
1414 mget_mask = talloc_asprintf_append(mget_mask,
1415 "%s", buf);
1417 if (!mget_mask) {
1418 return 1;
1420 status = do_list(mget_mask, attribute, do_mget, false, true);
1421 if (!NT_STATUS_IS_OK(status)) {
1422 return 1;
1426 if (mget_mask == NULL) {
1427 d_printf("nothing to mget\n");
1428 return 0;
1431 if (!*mget_mask) {
1432 mget_mask = talloc_asprintf(ctx,
1433 "%s*",
1434 client_get_cur_dir());
1435 if (!mget_mask) {
1436 return 1;
1438 status = do_list(mget_mask, attribute, do_mget, false, true);
1439 if (!NT_STATUS_IS_OK(status)) {
1440 return 1;
1444 return 0;
1447 /****************************************************************************
1448 Make a directory of name "name".
1449 ****************************************************************************/
1451 static bool do_mkdir(const char *name)
1453 TALLOC_CTX *ctx = talloc_tos();
1454 struct cli_state *targetcli;
1455 char *targetname = NULL;
1456 NTSTATUS status;
1458 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1459 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1460 return false;
1463 status = cli_mkdir(targetcli, targetname);
1464 if (!NT_STATUS_IS_OK(status)) {
1465 d_printf("%s making remote directory %s\n",
1466 nt_errstr(status),name);
1467 return false;
1470 return true;
1473 /****************************************************************************
1474 Show 8.3 name of a file.
1475 ****************************************************************************/
1477 static bool do_altname(const char *name)
1479 fstring altname;
1480 NTSTATUS status;
1482 status = cli_qpathinfo_alt_name(cli, name, altname);
1483 if (!NT_STATUS_IS_OK(status)) {
1484 d_printf("%s getting alt name for %s\n",
1485 nt_errstr(status),name);
1486 return false;
1488 d_printf("%s\n", altname);
1490 return true;
1493 /****************************************************************************
1494 Exit client.
1495 ****************************************************************************/
1497 static int cmd_quit(void)
1499 cli_shutdown(cli);
1500 exit(0);
1501 /* NOTREACHED */
1502 return 0;
1505 /****************************************************************************
1506 Make a directory.
1507 ****************************************************************************/
1509 static int cmd_mkdir(void)
1511 TALLOC_CTX *ctx = talloc_tos();
1512 char *mask = NULL;
1513 char *buf = NULL;
1515 mask = talloc_strdup(ctx, client_get_cur_dir());
1516 if (!mask) {
1517 return 1;
1520 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1521 if (!recurse) {
1522 d_printf("mkdir <dirname>\n");
1524 return 1;
1526 mask = talloc_asprintf_append(mask, "%s", buf);
1527 if (!mask) {
1528 return 1;
1531 if (recurse) {
1532 char *ddir = NULL;
1533 char *ddir2 = NULL;
1534 struct cli_state *targetcli;
1535 char *targetname = NULL;
1536 char *p = NULL;
1537 char *saveptr;
1539 ddir2 = talloc_strdup(ctx, "");
1540 if (!ddir2) {
1541 return 1;
1544 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1545 return 1;
1548 ddir = talloc_strdup(ctx, targetname);
1549 if (!ddir) {
1550 return 1;
1552 trim_char(ddir,'.','\0');
1553 p = strtok_r(ddir, "/\\", &saveptr);
1554 while (p) {
1555 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1556 if (!ddir2) {
1557 return 1;
1559 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1560 do_mkdir(ddir2);
1562 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1563 if (!ddir2) {
1564 return 1;
1566 p = strtok_r(NULL, "/\\", &saveptr);
1568 } else {
1569 do_mkdir(mask);
1572 return 0;
1575 /****************************************************************************
1576 Show alt name.
1577 ****************************************************************************/
1579 static int cmd_altname(void)
1581 TALLOC_CTX *ctx = talloc_tos();
1582 char *name;
1583 char *buf;
1585 name = talloc_strdup(ctx, client_get_cur_dir());
1586 if (!name) {
1587 return 1;
1590 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1591 d_printf("altname <file>\n");
1592 return 1;
1594 name = talloc_asprintf_append(name, "%s", buf);
1595 if (!name) {
1596 return 1;
1598 do_altname(name);
1599 return 0;
1602 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1604 char *attrs = TALLOC_ZERO_ARRAY(mem_ctx, char, 17);
1605 int i = 0;
1607 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1608 if (mode & FILE_ATTRIBUTE_ENCRYPTED) {
1609 attrs[i++] = 'E';
1611 if (mode & FILE_ATTRIBUTE_NONINDEXED) {
1612 attrs[i++] = 'N';
1614 if (mode & FILE_ATTRIBUTE_OFFLINE) {
1615 attrs[i++] = 'O';
1617 if (mode & FILE_ATTRIBUTE_COMPRESSED) {
1618 attrs[i++] = 'C';
1620 if (mode & FILE_ATTRIBUTE_REPARSE_POINT) {
1621 attrs[i++] = 'r';
1623 if (mode & FILE_ATTRIBUTE_SPARSE) {
1624 attrs[i++] = 's';
1626 if (mode & FILE_ATTRIBUTE_TEMPORARY) {
1627 attrs[i++] = 'T';
1629 if (mode & FILE_ATTRIBUTE_NORMAL) {
1630 attrs[i++] = 'N';
1632 if (mode & FILE_ATTRIBUTE_READONLY) {
1633 attrs[i++] = 'R';
1635 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1636 attrs[i++] = 'H';
1638 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1639 attrs[i++] = 'S';
1641 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1642 attrs[i++] = 'D';
1644 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1645 attrs[i++] = 'A';
1648 return attrs;
1651 /****************************************************************************
1652 Show all info we can get
1653 ****************************************************************************/
1655 static int do_allinfo(const char *name)
1657 fstring altname;
1658 struct timespec b_time, a_time, m_time, c_time;
1659 SMB_OFF_T size;
1660 uint16_t mode;
1661 SMB_INO_T ino;
1662 NTTIME tmp;
1663 uint16_t fnum;
1664 unsigned int num_streams;
1665 struct stream_struct *streams;
1666 int num_snapshots;
1667 char **snapshots;
1668 unsigned int i;
1669 NTSTATUS status;
1671 status = cli_qpathinfo_alt_name(cli, name, altname);
1672 if (!NT_STATUS_IS_OK(status)) {
1673 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1674 name);
1675 return false;
1677 d_printf("altname: %s\n", altname);
1679 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1680 &size, &mode, &ino);
1681 if (!NT_STATUS_IS_OK(status)) {
1682 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1683 name);
1684 return false;
1687 unix_timespec_to_nt_time(&tmp, b_time);
1688 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1690 unix_timespec_to_nt_time(&tmp, a_time);
1691 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1693 unix_timespec_to_nt_time(&tmp, m_time);
1694 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1696 unix_timespec_to_nt_time(&tmp, c_time);
1697 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1699 d_printf("attributes: %s (%x)\n", attr_str(talloc_tos(), mode), mode);
1701 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1702 &streams);
1703 if (!NT_STATUS_IS_OK(status)) {
1704 d_printf("%s getting streams for %s\n", nt_errstr(status),
1705 name);
1706 return false;
1709 for (i=0; i<num_streams; i++) {
1710 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1711 (unsigned long long)streams[i].size);
1714 status = cli_open(cli, name, O_RDONLY, DENY_NONE, &fnum);
1715 if (!NT_STATUS_IS_OK(status)) {
1717 * Ignore failure, it does not hurt if we can't list
1718 * snapshots
1720 return 0;
1722 status = cli_shadow_copy_data(talloc_tos(), cli, fnum,
1723 true, &snapshots, &num_snapshots);
1724 if (!NT_STATUS_IS_OK(status)) {
1725 cli_close(cli, fnum);
1726 return 0;
1729 for (i=0; i<num_snapshots; i++) {
1730 char *snap_name;
1732 d_printf("%s\n", snapshots[i]);
1733 snap_name = talloc_asprintf(talloc_tos(), "%s%s",
1734 snapshots[i], name);
1735 status = cli_qpathinfo2(cli, snap_name, &b_time, &a_time,
1736 &m_time, &c_time, &size,
1737 NULL, NULL);
1738 if (!NT_STATUS_IS_OK(status)) {
1739 d_fprintf(stderr, "pathinfo(%s) failed: %s\n",
1740 snap_name, nt_errstr(status));
1741 TALLOC_FREE(snap_name);
1742 continue;
1744 unix_timespec_to_nt_time(&tmp, b_time);
1745 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1746 unix_timespec_to_nt_time(&tmp, a_time);
1747 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1748 unix_timespec_to_nt_time(&tmp, m_time);
1749 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1750 unix_timespec_to_nt_time(&tmp, c_time);
1751 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1752 d_printf("size: %d\n", (int)size);
1755 TALLOC_FREE(snapshots);
1757 return 0;
1760 /****************************************************************************
1761 Show all info we can get
1762 ****************************************************************************/
1764 static int cmd_allinfo(void)
1766 TALLOC_CTX *ctx = talloc_tos();
1767 char *name;
1768 char *buf;
1770 name = talloc_strdup(ctx, client_get_cur_dir());
1771 if (!name) {
1772 return 1;
1775 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1776 d_printf("allinfo <file>\n");
1777 return 1;
1779 name = talloc_asprintf_append(name, "%s", buf);
1780 if (!name) {
1781 return 1;
1784 do_allinfo(name);
1786 return 0;
1789 /****************************************************************************
1790 Put a single file.
1791 ****************************************************************************/
1793 static int do_put(const char *rname, const char *lname, bool reput)
1795 TALLOC_CTX *ctx = talloc_tos();
1796 uint16_t fnum;
1797 XFILE *f;
1798 SMB_OFF_T start = 0;
1799 int rc = 0;
1800 struct timespec tp_start;
1801 struct cli_state *targetcli;
1802 char *targetname = NULL;
1803 struct push_state state;
1804 NTSTATUS status;
1806 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1807 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1808 return 1;
1811 clock_gettime_mono(&tp_start);
1813 if (reput) {
1814 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1815 if (NT_STATUS_IS_OK(status)) {
1816 if (!NT_STATUS_IS_OK(cli_qfileinfo_basic(
1817 targetcli, fnum, NULL,
1818 &start, NULL, NULL,
1819 NULL, NULL, NULL)) &&
1820 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1821 d_printf("getattrib: %s\n",cli_errstr(cli));
1822 return 1;
1825 } else {
1826 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1829 if (!NT_STATUS_IS_OK(status)) {
1830 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1831 return 1;
1834 /* allow files to be piped into smbclient
1835 jdblair 24.jun.98
1837 Note that in this case this function will exit(0) rather
1838 than returning. */
1839 if (!strcmp(lname, "-")) {
1840 f = x_stdin;
1841 /* size of file is not known */
1842 } else {
1843 f = x_fopen(lname,O_RDONLY, 0);
1844 if (f && reput) {
1845 if (x_tseek(f, start, SEEK_SET) == -1) {
1846 d_printf("Error seeking local file\n");
1847 x_fclose(f);
1848 return 1;
1853 if (!f) {
1854 d_printf("Error opening local file %s\n",lname);
1855 return 1;
1858 DEBUG(1,("putting file %s as %s ",lname,
1859 rname));
1861 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1863 state.f = f;
1864 state.nread = 0;
1866 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1867 &state);
1868 if (!NT_STATUS_IS_OK(status)) {
1869 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1870 rc = 1;
1873 status = cli_close(targetcli, fnum);
1874 if (!NT_STATUS_IS_OK(status)) {
1875 d_printf("%s closing remote file %s\n", nt_errstr(status),
1876 rname);
1877 if (f != x_stdin) {
1878 x_fclose(f);
1880 return 1;
1883 if (f != x_stdin) {
1884 x_fclose(f);
1888 struct timespec tp_end;
1889 int this_time;
1891 clock_gettime_mono(&tp_end);
1892 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1893 put_total_time_ms += this_time;
1894 put_total_size += state.nread;
1896 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1897 state.nread / (1.024*this_time + 1.0e-4),
1898 put_total_size / (1.024*put_total_time_ms)));
1901 if (f == x_stdin) {
1902 cli_shutdown(cli);
1903 exit(0);
1906 return rc;
1909 /****************************************************************************
1910 Put a file.
1911 ****************************************************************************/
1913 static int cmd_put(void)
1915 TALLOC_CTX *ctx = talloc_tos();
1916 char *lname;
1917 char *rname;
1918 char *buf;
1920 rname = talloc_strdup(ctx, client_get_cur_dir());
1921 if (!rname) {
1922 return 1;
1925 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1926 d_printf("put <filename>\n");
1927 return 1;
1930 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1931 rname = talloc_asprintf_append(rname, "%s", buf);
1932 } else {
1933 rname = talloc_asprintf_append(rname, "%s", lname);
1935 if (!rname) {
1936 return 1;
1939 rname = clean_name(ctx, rname);
1940 if (!rname) {
1941 return 1;
1945 SMB_STRUCT_STAT st;
1946 /* allow '-' to represent stdin
1947 jdblair, 24.jun.98 */
1948 if (!file_exist_stat(lname, &st, false) &&
1949 (strcmp(lname,"-"))) {
1950 d_printf("%s does not exist\n",lname);
1951 return 1;
1955 return do_put(rname, lname, false);
1958 /*************************************
1959 File list structure.
1960 *************************************/
1962 static struct file_list {
1963 struct file_list *prev, *next;
1964 char *file_path;
1965 bool isdir;
1966 } *file_list;
1968 /****************************************************************************
1969 Free a file_list structure.
1970 ****************************************************************************/
1972 static void free_file_list (struct file_list *l_head)
1974 struct file_list *list, *next;
1976 for (list = l_head; list; list = next) {
1977 next = list->next;
1978 DLIST_REMOVE(l_head, list);
1979 SAFE_FREE(list->file_path);
1980 SAFE_FREE(list);
1984 /****************************************************************************
1985 Seek in a directory/file list until you get something that doesn't start with
1986 the specified name.
1987 ****************************************************************************/
1989 static bool seek_list(struct file_list *list, char *name)
1991 while (list) {
1992 trim_string(list->file_path,"./","\n");
1993 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1994 return true;
1996 list = list->next;
1999 return false;
2002 /****************************************************************************
2003 Set the file selection mask.
2004 ****************************************************************************/
2006 static int cmd_select(void)
2008 TALLOC_CTX *ctx = talloc_tos();
2009 char *new_fs = NULL;
2010 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
2012 if (new_fs) {
2013 client_set_fileselection(new_fs);
2014 } else {
2015 client_set_fileselection("");
2017 return 0;
2020 /****************************************************************************
2021 Recursive file matching function act as find
2022 match must be always set to true when calling this function
2023 ****************************************************************************/
2025 static int file_find(struct file_list **list, const char *directory,
2026 const char *expression, bool match)
2028 SMB_STRUCT_DIR *dir;
2029 struct file_list *entry;
2030 struct stat statbuf;
2031 int ret;
2032 char *path;
2033 bool isdir;
2034 const char *dname;
2036 dir = sys_opendir(directory);
2037 if (!dir)
2038 return -1;
2040 while ((dname = readdirname(dir))) {
2041 if (!strcmp("..", dname))
2042 continue;
2043 if (!strcmp(".", dname))
2044 continue;
2046 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
2047 continue;
2050 isdir = false;
2051 if (!match || !gen_fnmatch(expression, dname)) {
2052 if (recurse) {
2053 ret = stat(path, &statbuf);
2054 if (ret == 0) {
2055 if (S_ISDIR(statbuf.st_mode)) {
2056 isdir = true;
2057 ret = file_find(list, path, expression, false);
2059 } else {
2060 d_printf("file_find: cannot stat file %s\n", path);
2063 if (ret == -1) {
2064 SAFE_FREE(path);
2065 sys_closedir(dir);
2066 return -1;
2069 entry = SMB_MALLOC_P(struct file_list);
2070 if (!entry) {
2071 d_printf("Out of memory in file_find\n");
2072 sys_closedir(dir);
2073 return -1;
2075 entry->file_path = path;
2076 entry->isdir = isdir;
2077 DLIST_ADD(*list, entry);
2078 } else {
2079 SAFE_FREE(path);
2083 sys_closedir(dir);
2084 return 0;
2087 /****************************************************************************
2088 mput some files.
2089 ****************************************************************************/
2091 static int cmd_mput(void)
2093 TALLOC_CTX *ctx = talloc_tos();
2094 char *p = NULL;
2096 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2097 int ret;
2098 struct file_list *temp_list;
2099 char *quest, *lname, *rname;
2101 file_list = NULL;
2103 ret = file_find(&file_list, ".", p, true);
2104 if (ret) {
2105 free_file_list(file_list);
2106 continue;
2109 quest = NULL;
2110 lname = NULL;
2111 rname = NULL;
2113 for (temp_list = file_list; temp_list;
2114 temp_list = temp_list->next) {
2116 SAFE_FREE(lname);
2117 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2118 continue;
2120 trim_string(lname, "./", "/");
2122 /* check if it's a directory */
2123 if (temp_list->isdir) {
2124 /* if (!recurse) continue; */
2126 SAFE_FREE(quest);
2127 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2128 break;
2130 if (prompt && !yesno(quest)) { /* No */
2131 /* Skip the directory */
2132 lname[strlen(lname)-1] = '/';
2133 if (!seek_list(temp_list, lname))
2134 break;
2135 } else { /* Yes */
2136 SAFE_FREE(rname);
2137 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2138 break;
2140 normalize_name(rname);
2141 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2142 !do_mkdir(rname)) {
2143 DEBUG (0, ("Unable to make dir, skipping..."));
2144 /* Skip the directory */
2145 lname[strlen(lname)-1] = '/';
2146 if (!seek_list(temp_list, lname)) {
2147 break;
2151 continue;
2152 } else {
2153 SAFE_FREE(quest);
2154 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2155 break;
2157 if (prompt && !yesno(quest)) {
2158 /* No */
2159 continue;
2162 /* Yes */
2163 SAFE_FREE(rname);
2164 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2165 break;
2169 normalize_name(rname);
2171 do_put(rname, lname, false);
2173 free_file_list(file_list);
2174 SAFE_FREE(quest);
2175 SAFE_FREE(lname);
2176 SAFE_FREE(rname);
2179 return 0;
2182 /****************************************************************************
2183 Cancel a print job.
2184 ****************************************************************************/
2186 static int do_cancel(int job)
2188 if (cli_printjob_del(cli, job)) {
2189 d_printf("Job %d cancelled\n",job);
2190 return 0;
2191 } else {
2192 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2193 return 1;
2197 /****************************************************************************
2198 Cancel a print job.
2199 ****************************************************************************/
2201 static int cmd_cancel(void)
2203 TALLOC_CTX *ctx = talloc_tos();
2204 char *buf = NULL;
2205 int job;
2207 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2208 d_printf("cancel <jobid> ...\n");
2209 return 1;
2211 do {
2212 job = atoi(buf);
2213 do_cancel(job);
2214 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2216 return 0;
2219 /****************************************************************************
2220 Print a file.
2221 ****************************************************************************/
2223 static int cmd_print(void)
2225 TALLOC_CTX *ctx = talloc_tos();
2226 char *lname = NULL;
2227 char *rname = NULL;
2228 char *p = NULL;
2230 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2231 d_printf("print <filename>\n");
2232 return 1;
2235 rname = talloc_strdup(ctx, lname);
2236 if (!rname) {
2237 return 1;
2239 p = strrchr_m(rname,'/');
2240 if (p) {
2241 rname = talloc_asprintf(ctx,
2242 "%s-%d",
2243 p+1,
2244 (int)sys_getpid());
2246 if (strequal(lname,"-")) {
2247 rname = talloc_asprintf(ctx,
2248 "stdin-%d",
2249 (int)sys_getpid());
2251 if (!rname) {
2252 return 1;
2255 return do_put(rname, lname, false);
2258 /****************************************************************************
2259 Show a print queue entry.
2260 ****************************************************************************/
2262 static void queue_fn(struct print_job_info *p)
2264 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2267 /****************************************************************************
2268 Show a print queue.
2269 ****************************************************************************/
2271 static int cmd_queue(void)
2273 cli_print_queue(cli, queue_fn);
2274 return 0;
2277 /****************************************************************************
2278 Delete some files.
2279 ****************************************************************************/
2281 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2282 const char *dir)
2284 TALLOC_CTX *ctx = talloc_tos();
2285 char *mask = NULL;
2286 NTSTATUS status;
2288 mask = talloc_asprintf(ctx,
2289 "%s%c%s",
2290 dir,
2291 CLI_DIRSEP_CHAR,
2292 finfo->name);
2293 if (!mask) {
2294 return NT_STATUS_NO_MEMORY;
2297 if (finfo->mode & aDIR) {
2298 TALLOC_FREE(mask);
2299 return NT_STATUS_OK;
2302 status = cli_unlink(cli_state, mask, aSYSTEM | aHIDDEN);
2303 if (!NT_STATUS_IS_OK(status)) {
2304 d_printf("%s deleting remote file %s\n",
2305 nt_errstr(status), mask);
2307 TALLOC_FREE(mask);
2308 return status;
2311 /****************************************************************************
2312 Delete some files.
2313 ****************************************************************************/
2315 static int cmd_del(void)
2317 TALLOC_CTX *ctx = talloc_tos();
2318 char *mask = NULL;
2319 char *buf = NULL;
2320 NTSTATUS status = NT_STATUS_OK;
2321 uint16 attribute = aSYSTEM | aHIDDEN;
2323 if (recurse) {
2324 attribute |= aDIR;
2327 mask = talloc_strdup(ctx, client_get_cur_dir());
2328 if (!mask) {
2329 return 1;
2331 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2332 d_printf("del <filename>\n");
2333 return 1;
2335 mask = talloc_asprintf_append(mask, "%s", buf);
2336 if (!mask) {
2337 return 1;
2340 status = do_list(mask,attribute,do_del,false,false);
2341 if (!NT_STATUS_IS_OK(status)) {
2342 return 1;
2344 return 0;
2347 /****************************************************************************
2348 Wildcard delete some files.
2349 ****************************************************************************/
2351 static int cmd_wdel(void)
2353 TALLOC_CTX *ctx = talloc_tos();
2354 char *mask = NULL;
2355 char *buf = NULL;
2356 uint16 attribute;
2357 struct cli_state *targetcli;
2358 char *targetname = NULL;
2359 NTSTATUS status;
2361 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2362 d_printf("wdel 0x<attrib> <wcard>\n");
2363 return 1;
2366 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2368 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2369 d_printf("wdel 0x<attrib> <wcard>\n");
2370 return 1;
2373 mask = talloc_asprintf(ctx, "%s%s",
2374 client_get_cur_dir(),
2375 buf);
2376 if (!mask) {
2377 return 1;
2380 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2381 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2382 return 1;
2385 status = cli_unlink(targetcli, targetname, attribute);
2386 if (!NT_STATUS_IS_OK(status)) {
2387 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2388 targetname);
2390 return 0;
2393 /****************************************************************************
2394 ****************************************************************************/
2396 static int cmd_open(void)
2398 TALLOC_CTX *ctx = talloc_tos();
2399 char *mask = NULL;
2400 char *buf = NULL;
2401 char *targetname = NULL;
2402 struct cli_state *targetcli;
2403 uint16_t fnum = (uint16_t)-1;
2405 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2406 d_printf("open <filename>\n");
2407 return 1;
2409 mask = talloc_asprintf(ctx,
2410 "%s%s",
2411 client_get_cur_dir(),
2412 buf);
2413 if (!mask) {
2414 return 1;
2417 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2418 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2419 return 1;
2422 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2423 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2424 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2425 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2426 FILE_READ_DATA, 0,
2427 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2428 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2429 } else {
2430 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2432 } else {
2433 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2435 return 0;
2438 static int cmd_posix_encrypt(void)
2440 TALLOC_CTX *ctx = talloc_tos();
2441 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2443 if (cli->use_kerberos) {
2444 status = cli_gss_smb_encryption_start(cli);
2445 } else {
2446 char *domain = NULL;
2447 char *user = NULL;
2448 char *password = NULL;
2450 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2451 d_printf("posix_encrypt domain user password\n");
2452 return 1;
2455 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2456 d_printf("posix_encrypt domain user password\n");
2457 return 1;
2460 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2461 d_printf("posix_encrypt domain user password\n");
2462 return 1;
2465 status = cli_raw_ntlm_smb_encryption_start(cli,
2466 user,
2467 password,
2468 domain);
2471 if (!NT_STATUS_IS_OK(status)) {
2472 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2473 } else {
2474 d_printf("encryption on\n");
2475 smb_encrypt = true;
2478 return 0;
2481 /****************************************************************************
2482 ****************************************************************************/
2484 static int cmd_posix_open(void)
2486 TALLOC_CTX *ctx = talloc_tos();
2487 char *mask = NULL;
2488 char *buf = NULL;
2489 char *targetname = NULL;
2490 struct cli_state *targetcli;
2491 mode_t mode;
2492 uint16_t fnum;
2494 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2495 d_printf("posix_open <filename> 0<mode>\n");
2496 return 1;
2498 mask = talloc_asprintf(ctx,
2499 "%s%s",
2500 client_get_cur_dir(),
2501 buf);
2502 if (!mask) {
2503 return 1;
2506 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2507 d_printf("posix_open <filename> 0<mode>\n");
2508 return 1;
2510 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2512 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2513 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2514 return 1;
2517 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2518 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2519 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2520 } else {
2521 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2523 } else {
2524 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2527 return 0;
2530 static int cmd_posix_mkdir(void)
2532 TALLOC_CTX *ctx = talloc_tos();
2533 char *mask = NULL;
2534 char *buf = NULL;
2535 char *targetname = NULL;
2536 struct cli_state *targetcli;
2537 mode_t mode;
2539 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2540 d_printf("posix_mkdir <filename> 0<mode>\n");
2541 return 1;
2543 mask = talloc_asprintf(ctx,
2544 "%s%s",
2545 client_get_cur_dir(),
2546 buf);
2547 if (!mask) {
2548 return 1;
2551 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2552 d_printf("posix_mkdir <filename> 0<mode>\n");
2553 return 1;
2555 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2557 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2558 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2559 return 1;
2562 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2563 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2564 } else {
2565 d_printf("posix_mkdir created directory %s\n", targetname);
2567 return 0;
2570 static int cmd_posix_unlink(void)
2572 TALLOC_CTX *ctx = talloc_tos();
2573 char *mask = NULL;
2574 char *buf = NULL;
2575 char *targetname = NULL;
2576 struct cli_state *targetcli;
2578 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2579 d_printf("posix_unlink <filename>\n");
2580 return 1;
2582 mask = talloc_asprintf(ctx,
2583 "%s%s",
2584 client_get_cur_dir(),
2585 buf);
2586 if (!mask) {
2587 return 1;
2590 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2591 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2592 return 1;
2595 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2596 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2597 } else {
2598 d_printf("posix_unlink deleted file %s\n", targetname);
2601 return 0;
2604 static int cmd_posix_rmdir(void)
2606 TALLOC_CTX *ctx = talloc_tos();
2607 char *mask = NULL;
2608 char *buf = NULL;
2609 char *targetname = NULL;
2610 struct cli_state *targetcli;
2612 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2613 d_printf("posix_rmdir <filename>\n");
2614 return 1;
2616 mask = talloc_asprintf(ctx,
2617 "%s%s",
2618 client_get_cur_dir(),
2619 buf);
2620 if (!mask) {
2621 return 1;
2624 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2625 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2626 return 1;
2629 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2630 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2631 } else {
2632 d_printf("posix_rmdir deleted directory %s\n", targetname);
2635 return 0;
2638 static int cmd_close(void)
2640 TALLOC_CTX *ctx = talloc_tos();
2641 char *buf = NULL;
2642 int fnum;
2644 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2645 d_printf("close <fnum>\n");
2646 return 1;
2649 fnum = atoi(buf);
2650 /* We really should use the targetcli here.... */
2651 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2652 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2653 return 1;
2655 return 0;
2658 static int cmd_posix(void)
2660 TALLOC_CTX *ctx = talloc_tos();
2661 uint16 major, minor;
2662 uint32 caplow, caphigh;
2663 char *caps;
2664 NTSTATUS status;
2666 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2667 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2668 return 1;
2671 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2672 &caphigh);
2673 if (!NT_STATUS_IS_OK(status)) {
2674 d_printf("Can't get UNIX CIFS extensions version from "
2675 "server: %s\n", nt_errstr(status));
2676 return 1;
2679 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2681 caps = talloc_strdup(ctx, "");
2682 if (!caps) {
2683 return 1;
2685 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2686 caps = talloc_asprintf_append(caps, "locks ");
2687 if (!caps) {
2688 return 1;
2691 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2692 caps = talloc_asprintf_append(caps, "acls ");
2693 if (!caps) {
2694 return 1;
2697 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2698 caps = talloc_asprintf_append(caps, "eas ");
2699 if (!caps) {
2700 return 1;
2703 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2704 caps = talloc_asprintf_append(caps, "pathnames ");
2705 if (!caps) {
2706 return 1;
2709 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2710 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2711 if (!caps) {
2712 return 1;
2715 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2716 caps = talloc_asprintf_append(caps, "large_read ");
2717 if (!caps) {
2718 return 1;
2721 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2722 caps = talloc_asprintf_append(caps, "large_write ");
2723 if (!caps) {
2724 return 1;
2727 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2728 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2729 if (!caps) {
2730 return 1;
2733 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2734 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2735 if (!caps) {
2736 return 1;
2740 if (*caps && caps[strlen(caps)-1] == ' ') {
2741 caps[strlen(caps)-1] = '\0';
2744 d_printf("Server supports CIFS capabilities %s\n", caps);
2746 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2747 caplow, caphigh);
2748 if (!NT_STATUS_IS_OK(status)) {
2749 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2750 nt_errstr(status));
2751 return 1;
2754 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2755 CLI_DIRSEP_CHAR = '/';
2756 *CLI_DIRSEP_STR = '/';
2757 client_set_cur_dir(CLI_DIRSEP_STR);
2760 return 0;
2763 static int cmd_lock(void)
2765 TALLOC_CTX *ctx = talloc_tos();
2766 char *buf = NULL;
2767 uint64_t start, len;
2768 enum brl_type lock_type;
2769 int fnum;
2771 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2772 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2773 return 1;
2775 fnum = atoi(buf);
2777 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2778 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2779 return 1;
2782 if (*buf == 'r' || *buf == 'R') {
2783 lock_type = READ_LOCK;
2784 } else if (*buf == 'w' || *buf == 'W') {
2785 lock_type = WRITE_LOCK;
2786 } else {
2787 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2788 return 1;
2791 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2792 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2793 return 1;
2796 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2798 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2799 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2800 return 1;
2803 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2805 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2806 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2809 return 0;
2812 static int cmd_unlock(void)
2814 TALLOC_CTX *ctx = talloc_tos();
2815 char *buf = NULL;
2816 uint64_t start, len;
2817 int fnum;
2819 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2820 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2821 return 1;
2823 fnum = atoi(buf);
2825 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2826 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2827 return 1;
2830 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2832 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2833 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2834 return 1;
2837 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2839 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2840 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2843 return 0;
2847 /****************************************************************************
2848 Remove a directory.
2849 ****************************************************************************/
2851 static int cmd_rmdir(void)
2853 TALLOC_CTX *ctx = talloc_tos();
2854 char *mask = NULL;
2855 char *buf = NULL;
2856 char *targetname = NULL;
2857 struct cli_state *targetcli;
2859 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2860 d_printf("rmdir <dirname>\n");
2861 return 1;
2863 mask = talloc_asprintf(ctx,
2864 "%s%s",
2865 client_get_cur_dir(),
2866 buf);
2867 if (!mask) {
2868 return 1;
2871 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2872 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2873 return 1;
2876 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2877 d_printf("%s removing remote directory file %s\n",
2878 cli_errstr(targetcli),mask);
2881 return 0;
2884 /****************************************************************************
2885 UNIX hardlink.
2886 ****************************************************************************/
2888 static int cmd_link(void)
2890 TALLOC_CTX *ctx = talloc_tos();
2891 char *oldname = NULL;
2892 char *newname = NULL;
2893 char *buf = NULL;
2894 char *buf2 = NULL;
2895 char *targetname = NULL;
2896 struct cli_state *targetcli;
2898 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2899 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2900 d_printf("link <oldname> <newname>\n");
2901 return 1;
2903 oldname = talloc_asprintf(ctx,
2904 "%s%s",
2905 client_get_cur_dir(),
2906 buf);
2907 if (!oldname) {
2908 return 1;
2910 newname = talloc_asprintf(ctx,
2911 "%s%s",
2912 client_get_cur_dir(),
2913 buf2);
2914 if (!newname) {
2915 return 1;
2918 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2919 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2920 return 1;
2923 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2924 d_printf("Server doesn't support UNIX CIFS calls.\n");
2925 return 1;
2928 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2929 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2930 return 1;
2932 return 0;
2935 /****************************************************************************
2936 UNIX readlink.
2937 ****************************************************************************/
2939 static int cmd_readlink(void)
2941 TALLOC_CTX *ctx = talloc_tos();
2942 char *name= NULL;
2943 char *buf = NULL;
2944 char *targetname = NULL;
2945 char linkname[PATH_MAX+1];
2946 struct cli_state *targetcli;
2948 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2949 d_printf("readlink <name>\n");
2950 return 1;
2952 name = talloc_asprintf(ctx,
2953 "%s%s",
2954 client_get_cur_dir(),
2955 buf);
2956 if (!name) {
2957 return 1;
2960 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2961 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2962 return 1;
2965 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2966 d_printf("Server doesn't support UNIX CIFS calls.\n");
2967 return 1;
2970 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2971 linkname, PATH_MAX+1))) {
2972 d_printf("%s readlink on file %s\n",
2973 cli_errstr(targetcli), name);
2974 return 1;
2977 d_printf("%s -> %s\n", name, linkname);
2979 return 0;
2983 /****************************************************************************
2984 UNIX symlink.
2985 ****************************************************************************/
2987 static int cmd_symlink(void)
2989 TALLOC_CTX *ctx = talloc_tos();
2990 char *oldname = NULL;
2991 char *newname = NULL;
2992 char *buf = NULL;
2993 char *buf2 = NULL;
2994 struct cli_state *newcli;
2996 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2997 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2998 d_printf("symlink <oldname> <newname>\n");
2999 return 1;
3001 /* Oldname (link target) must be an untouched blob. */
3002 oldname = buf;
3004 newname = talloc_asprintf(ctx,
3005 "%s%s",
3006 client_get_cur_dir(),
3007 buf2);
3008 if (!newname) {
3009 return 1;
3012 /* New name must be present in share namespace. */
3013 if (!cli_resolve_path(ctx, "", auth_info, cli, newname, &newcli, &newname)) {
3014 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
3015 return 1;
3018 if (!SERVER_HAS_UNIX_CIFS(newcli)) {
3019 d_printf("Server doesn't support UNIX CIFS calls.\n");
3020 return 1;
3023 if (!NT_STATUS_IS_OK(cli_posix_symlink(newcli, oldname, newname))) {
3024 d_printf("%s symlinking files (%s -> %s)\n",
3025 cli_errstr(newcli), newname, newname);
3026 return 1;
3029 return 0;
3032 /****************************************************************************
3033 UNIX chmod.
3034 ****************************************************************************/
3036 static int cmd_chmod(void)
3038 TALLOC_CTX *ctx = talloc_tos();
3039 char *src = NULL;
3040 char *buf = NULL;
3041 char *buf2 = NULL;
3042 char *targetname = NULL;
3043 struct cli_state *targetcli;
3044 mode_t mode;
3046 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3047 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3048 d_printf("chmod mode file\n");
3049 return 1;
3051 src = talloc_asprintf(ctx,
3052 "%s%s",
3053 client_get_cur_dir(),
3054 buf2);
3055 if (!src) {
3056 return 1;
3059 mode = (mode_t)strtol(buf, NULL, 8);
3061 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3062 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
3063 return 1;
3066 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3067 d_printf("Server doesn't support UNIX CIFS calls.\n");
3068 return 1;
3071 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
3072 d_printf("%s chmod file %s 0%o\n",
3073 cli_errstr(targetcli), src, (unsigned int)mode);
3074 return 1;
3077 return 0;
3080 static const char *filetype_to_str(mode_t mode)
3082 if (S_ISREG(mode)) {
3083 return "regular file";
3084 } else if (S_ISDIR(mode)) {
3085 return "directory";
3086 } else
3087 #ifdef S_ISCHR
3088 if (S_ISCHR(mode)) {
3089 return "character device";
3090 } else
3091 #endif
3092 #ifdef S_ISBLK
3093 if (S_ISBLK(mode)) {
3094 return "block device";
3095 } else
3096 #endif
3097 #ifdef S_ISFIFO
3098 if (S_ISFIFO(mode)) {
3099 return "fifo";
3100 } else
3101 #endif
3102 #ifdef S_ISLNK
3103 if (S_ISLNK(mode)) {
3104 return "symbolic link";
3105 } else
3106 #endif
3107 #ifdef S_ISSOCK
3108 if (S_ISSOCK(mode)) {
3109 return "socket";
3110 } else
3111 #endif
3112 return "";
3115 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3117 if (m & bt) {
3118 return ret;
3119 } else {
3120 return '-';
3124 static char *unix_mode_to_str(char *s, mode_t m)
3126 char *p = s;
3127 const char *str = filetype_to_str(m);
3129 switch(str[0]) {
3130 case 'd':
3131 *p++ = 'd';
3132 break;
3133 case 'c':
3134 *p++ = 'c';
3135 break;
3136 case 'b':
3137 *p++ = 'b';
3138 break;
3139 case 'f':
3140 *p++ = 'p';
3141 break;
3142 case 's':
3143 *p++ = str[1] == 'y' ? 'l' : 's';
3144 break;
3145 case 'r':
3146 default:
3147 *p++ = '-';
3148 break;
3150 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3151 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3152 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3153 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3154 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3155 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3156 *p++ = rwx_to_str(m, S_IROTH, 'r');
3157 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3158 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3159 *p++ = '\0';
3160 return s;
3163 /****************************************************************************
3164 Utility function for UNIX getfacl.
3165 ****************************************************************************/
3167 static char *perms_to_string(fstring permstr, unsigned char perms)
3169 fstrcpy(permstr, "---");
3170 if (perms & SMB_POSIX_ACL_READ) {
3171 permstr[0] = 'r';
3173 if (perms & SMB_POSIX_ACL_WRITE) {
3174 permstr[1] = 'w';
3176 if (perms & SMB_POSIX_ACL_EXECUTE) {
3177 permstr[2] = 'x';
3179 return permstr;
3182 /****************************************************************************
3183 UNIX getfacl.
3184 ****************************************************************************/
3186 static int cmd_getfacl(void)
3188 TALLOC_CTX *ctx = talloc_tos();
3189 char *src = NULL;
3190 char *name = NULL;
3191 char *targetname = NULL;
3192 struct cli_state *targetcli;
3193 uint16 major, minor;
3194 uint32 caplow, caphigh;
3195 char *retbuf = NULL;
3196 size_t rb_size = 0;
3197 SMB_STRUCT_STAT sbuf;
3198 uint16 num_file_acls = 0;
3199 uint16 num_dir_acls = 0;
3200 uint16 i;
3201 NTSTATUS status;
3203 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3204 d_printf("getfacl filename\n");
3205 return 1;
3207 src = talloc_asprintf(ctx,
3208 "%s%s",
3209 client_get_cur_dir(),
3210 name);
3211 if (!src) {
3212 return 1;
3215 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3216 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3217 return 1;
3220 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3221 d_printf("Server doesn't support UNIX CIFS calls.\n");
3222 return 1;
3225 status = cli_unix_extensions_version(targetcli, &major, &minor,
3226 &caplow, &caphigh);
3227 if (!NT_STATUS_IS_OK(status)) {
3228 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3229 nt_errstr(status));
3230 return 1;
3233 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3234 d_printf("This server supports UNIX extensions "
3235 "but doesn't support POSIX ACLs.\n");
3236 return 1;
3239 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3240 d_printf("%s getfacl doing a stat on file %s\n",
3241 cli_errstr(targetcli), src);
3242 return 1;
3245 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3246 d_printf("%s getfacl file %s\n",
3247 cli_errstr(targetcli), src);
3248 return 1;
3251 /* ToDo : Print out the ACL values. */
3252 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3253 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3254 src, (unsigned int)CVAL(retbuf,0) );
3255 return 1;
3258 num_file_acls = SVAL(retbuf,2);
3259 num_dir_acls = SVAL(retbuf,4);
3260 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3261 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3262 src,
3263 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3264 (unsigned int)rb_size);
3265 return 1;
3268 d_printf("# file: %s\n", src);
3269 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3271 if (num_file_acls == 0 && num_dir_acls == 0) {
3272 d_printf("No acls found.\n");
3275 for (i = 0; i < num_file_acls; i++) {
3276 uint32 uorg;
3277 fstring permstring;
3278 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3279 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3281 switch(tagtype) {
3282 case SMB_POSIX_ACL_USER_OBJ:
3283 d_printf("user::");
3284 break;
3285 case SMB_POSIX_ACL_USER:
3286 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3287 d_printf("user:%u:", uorg);
3288 break;
3289 case SMB_POSIX_ACL_GROUP_OBJ:
3290 d_printf("group::");
3291 break;
3292 case SMB_POSIX_ACL_GROUP:
3293 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3294 d_printf("group:%u:", uorg);
3295 break;
3296 case SMB_POSIX_ACL_MASK:
3297 d_printf("mask::");
3298 break;
3299 case SMB_POSIX_ACL_OTHER:
3300 d_printf("other::");
3301 break;
3302 default:
3303 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3304 src, (unsigned int)tagtype );
3305 SAFE_FREE(retbuf);
3306 return 1;
3309 d_printf("%s\n", perms_to_string(permstring, perms));
3312 for (i = 0; i < num_dir_acls; i++) {
3313 uint32 uorg;
3314 fstring permstring;
3315 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3316 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3318 switch(tagtype) {
3319 case SMB_POSIX_ACL_USER_OBJ:
3320 d_printf("default:user::");
3321 break;
3322 case SMB_POSIX_ACL_USER:
3323 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3324 d_printf("default:user:%u:", uorg);
3325 break;
3326 case SMB_POSIX_ACL_GROUP_OBJ:
3327 d_printf("default:group::");
3328 break;
3329 case SMB_POSIX_ACL_GROUP:
3330 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3331 d_printf("default:group:%u:", uorg);
3332 break;
3333 case SMB_POSIX_ACL_MASK:
3334 d_printf("default:mask::");
3335 break;
3336 case SMB_POSIX_ACL_OTHER:
3337 d_printf("default:other::");
3338 break;
3339 default:
3340 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3341 src, (unsigned int)tagtype );
3342 SAFE_FREE(retbuf);
3343 return 1;
3346 d_printf("%s\n", perms_to_string(permstring, perms));
3349 return 0;
3352 static void printf_cb(const char *buf, void *private_data)
3354 printf("%s", buf);
3357 /****************************************************************************
3358 Get the EA list of a file
3359 ****************************************************************************/
3361 static int cmd_geteas(void)
3363 TALLOC_CTX *ctx = talloc_tos();
3364 char *src = NULL;
3365 char *name = NULL;
3366 char *targetname = NULL;
3367 struct cli_state *targetcli;
3368 NTSTATUS status;
3369 size_t i, num_eas;
3370 struct ea_struct *eas;
3372 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3373 d_printf("geteas filename\n");
3374 return 1;
3376 src = talloc_asprintf(ctx,
3377 "%s%s",
3378 client_get_cur_dir(),
3379 name);
3380 if (!src) {
3381 return 1;
3384 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3385 &targetname)) {
3386 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3387 return 1;
3390 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3391 &num_eas, &eas);
3392 if (!NT_STATUS_IS_OK(status)) {
3393 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3394 return 1;
3397 for (i=0; i<num_eas; i++) {
3398 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3399 dump_data_cb(eas[i].value.data, eas[i].value.length, false,
3400 printf_cb, NULL);
3401 d_printf("\n");
3404 TALLOC_FREE(eas);
3406 return 0;
3409 /****************************************************************************
3410 Set an EA of a file
3411 ****************************************************************************/
3413 static int cmd_setea(void)
3415 TALLOC_CTX *ctx = talloc_tos();
3416 char *src = NULL;
3417 char *name = NULL;
3418 char *eaname = NULL;
3419 char *eavalue = NULL;
3420 char *targetname = NULL;
3421 struct cli_state *targetcli;
3422 NTSTATUS status;
3424 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3425 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3426 d_printf("setea filename eaname value\n");
3427 return 1;
3429 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3430 eavalue = talloc_strdup(ctx, "");
3432 src = talloc_asprintf(ctx,
3433 "%s%s",
3434 client_get_cur_dir(),
3435 name);
3436 if (!src) {
3437 return 1;
3440 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3441 &targetname)) {
3442 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3443 return 1;
3446 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3447 strlen(eavalue));
3448 if (!NT_STATUS_IS_OK(status)) {
3449 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3450 return 1;
3453 return 0;
3456 /****************************************************************************
3457 UNIX stat.
3458 ****************************************************************************/
3460 static int cmd_stat(void)
3462 TALLOC_CTX *ctx = talloc_tos();
3463 char *src = NULL;
3464 char *name = NULL;
3465 char *targetname = NULL;
3466 struct cli_state *targetcli;
3467 fstring mode_str;
3468 SMB_STRUCT_STAT sbuf;
3469 struct tm *lt;
3470 time_t tmp_time;
3472 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3473 d_printf("stat file\n");
3474 return 1;
3476 src = talloc_asprintf(ctx,
3477 "%s%s",
3478 client_get_cur_dir(),
3479 name);
3480 if (!src) {
3481 return 1;
3484 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3485 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3486 return 1;
3489 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3490 d_printf("Server doesn't support UNIX CIFS calls.\n");
3491 return 1;
3494 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3495 d_printf("%s stat file %s\n",
3496 cli_errstr(targetcli), src);
3497 return 1;
3500 /* Print out the stat values. */
3501 d_printf("File: %s\n", src);
3502 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3503 (double)sbuf.st_ex_size,
3504 (unsigned int)sbuf.st_ex_blocks,
3505 filetype_to_str(sbuf.st_ex_mode));
3507 #if defined(S_ISCHR) && defined(S_ISBLK)
3508 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3509 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3510 (double)sbuf.st_ex_ino,
3511 (unsigned int)sbuf.st_ex_nlink,
3512 unix_dev_major(sbuf.st_ex_rdev),
3513 unix_dev_minor(sbuf.st_ex_rdev));
3514 } else
3515 #endif
3516 d_printf("Inode: %.0f\tLinks: %u\n",
3517 (double)sbuf.st_ex_ino,
3518 (unsigned int)sbuf.st_ex_nlink);
3520 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3521 ((int)sbuf.st_ex_mode & 0777),
3522 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3523 (unsigned int)sbuf.st_ex_uid,
3524 (unsigned int)sbuf.st_ex_gid);
3526 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3527 lt = localtime(&tmp_time);
3528 if (lt) {
3529 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3530 } else {
3531 fstrcpy(mode_str, "unknown");
3533 d_printf("Access: %s\n", mode_str);
3535 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3536 lt = localtime(&tmp_time);
3537 if (lt) {
3538 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3539 } else {
3540 fstrcpy(mode_str, "unknown");
3542 d_printf("Modify: %s\n", mode_str);
3544 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3545 lt = localtime(&tmp_time);
3546 if (lt) {
3547 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3548 } else {
3549 fstrcpy(mode_str, "unknown");
3551 d_printf("Change: %s\n", mode_str);
3553 return 0;
3557 /****************************************************************************
3558 UNIX chown.
3559 ****************************************************************************/
3561 static int cmd_chown(void)
3563 TALLOC_CTX *ctx = talloc_tos();
3564 char *src = NULL;
3565 uid_t uid;
3566 gid_t gid;
3567 char *buf, *buf2, *buf3;
3568 struct cli_state *targetcli;
3569 char *targetname = NULL;
3571 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3572 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3573 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3574 d_printf("chown uid gid file\n");
3575 return 1;
3578 uid = (uid_t)atoi(buf);
3579 gid = (gid_t)atoi(buf2);
3581 src = talloc_asprintf(ctx,
3582 "%s%s",
3583 client_get_cur_dir(),
3584 buf3);
3585 if (!src) {
3586 return 1;
3588 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3589 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3590 return 1;
3593 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3594 d_printf("Server doesn't support UNIX CIFS calls.\n");
3595 return 1;
3598 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3599 d_printf("%s chown file %s uid=%d, gid=%d\n",
3600 cli_errstr(targetcli), src, (int)uid, (int)gid);
3601 return 1;
3604 return 0;
3607 /****************************************************************************
3608 Rename some file.
3609 ****************************************************************************/
3611 static int cmd_rename(void)
3613 TALLOC_CTX *ctx = talloc_tos();
3614 char *src, *dest;
3615 char *buf, *buf2;
3616 struct cli_state *targetcli;
3617 char *targetsrc;
3618 char *targetdest;
3620 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3621 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3622 d_printf("rename <src> <dest>\n");
3623 return 1;
3626 src = talloc_asprintf(ctx,
3627 "%s%s",
3628 client_get_cur_dir(),
3629 buf);
3630 if (!src) {
3631 return 1;
3634 dest = talloc_asprintf(ctx,
3635 "%s%s",
3636 client_get_cur_dir(),
3637 buf2);
3638 if (!dest) {
3639 return 1;
3642 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3643 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3644 return 1;
3647 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3648 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3649 return 1;
3652 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3653 d_printf("%s renaming files %s -> %s \n",
3654 cli_errstr(targetcli),
3655 targetsrc,
3656 targetdest);
3657 return 1;
3660 return 0;
3663 /****************************************************************************
3664 Print the volume name.
3665 ****************************************************************************/
3667 static int cmd_volume(void)
3669 fstring volname;
3670 uint32 serial_num;
3671 time_t create_date;
3672 NTSTATUS status;
3674 status = cli_get_fs_volume_info(cli, volname, &serial_num,
3675 &create_date);
3676 if (!NT_STATUS_IS_OK(status)) {
3677 d_printf("Error %s getting volume info\n", nt_errstr(status));
3678 return 1;
3681 d_printf("Volume: |%s| serial number 0x%x\n",
3682 volname, (unsigned int)serial_num);
3683 return 0;
3686 /****************************************************************************
3687 Hard link files using the NT call.
3688 ****************************************************************************/
3690 static int cmd_hardlink(void)
3692 TALLOC_CTX *ctx = talloc_tos();
3693 char *src, *dest;
3694 char *buf, *buf2;
3695 struct cli_state *targetcli;
3696 char *targetname;
3698 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3699 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3700 d_printf("hardlink <src> <dest>\n");
3701 return 1;
3704 src = talloc_asprintf(ctx,
3705 "%s%s",
3706 client_get_cur_dir(),
3707 buf);
3708 if (!src) {
3709 return 1;
3712 dest = talloc_asprintf(ctx,
3713 "%s%s",
3714 client_get_cur_dir(),
3715 buf2);
3716 if (!dest) {
3717 return 1;
3720 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3721 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3722 return 1;
3725 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3726 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3727 return 1;
3730 return 0;
3733 /****************************************************************************
3734 Toggle the prompt flag.
3735 ****************************************************************************/
3737 static int cmd_prompt(void)
3739 prompt = !prompt;
3740 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3741 return 1;
3744 /****************************************************************************
3745 Set the newer than time.
3746 ****************************************************************************/
3748 static int cmd_newer(void)
3750 TALLOC_CTX *ctx = talloc_tos();
3751 char *buf;
3752 bool ok;
3753 SMB_STRUCT_STAT sbuf;
3755 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3756 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3757 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3758 DEBUG(1,("Getting files newer than %s",
3759 time_to_asc(newer_than)));
3760 } else {
3761 newer_than = 0;
3764 if (ok && newer_than == 0) {
3765 d_printf("Error setting newer-than time\n");
3766 return 1;
3769 return 0;
3772 /****************************************************************************
3773 Set the archive level.
3774 ****************************************************************************/
3776 static int cmd_archive(void)
3778 TALLOC_CTX *ctx = talloc_tos();
3779 char *buf;
3781 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3782 archive_level = atoi(buf);
3783 } else {
3784 d_printf("Archive level is %d\n",archive_level);
3787 return 0;
3790 /****************************************************************************
3791 Toggle the lowercaseflag.
3792 ****************************************************************************/
3794 static int cmd_lowercase(void)
3796 lowercase = !lowercase;
3797 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3798 return 0;
3801 /****************************************************************************
3802 Toggle the case sensitive flag.
3803 ****************************************************************************/
3805 static int cmd_setcase(void)
3807 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3809 cli_set_case_sensitive(cli, !orig_case_sensitive);
3810 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3811 "on":"off"));
3812 return 0;
3815 /****************************************************************************
3816 Toggle the showacls flag.
3817 ****************************************************************************/
3819 static int cmd_showacls(void)
3821 showacls = !showacls;
3822 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3823 return 0;
3827 /****************************************************************************
3828 Toggle the recurse flag.
3829 ****************************************************************************/
3831 static int cmd_recurse(void)
3833 recurse = !recurse;
3834 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3835 return 0;
3838 /****************************************************************************
3839 Toggle the translate flag.
3840 ****************************************************************************/
3842 static int cmd_translate(void)
3844 translation = !translation;
3845 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3846 translation?"on":"off"));
3847 return 0;
3850 /****************************************************************************
3851 Do the lcd command.
3852 ****************************************************************************/
3854 static int cmd_lcd(void)
3856 TALLOC_CTX *ctx = talloc_tos();
3857 char *buf;
3858 char *d;
3860 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3861 if (chdir(buf) == -1) {
3862 d_printf("chdir to %s failed (%s)\n",
3863 buf, strerror(errno));
3866 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3867 if (!d) {
3868 return 1;
3870 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3871 return 0;
3874 /****************************************************************************
3875 Get a file restarting at end of local file.
3876 ****************************************************************************/
3878 static int cmd_reget(void)
3880 TALLOC_CTX *ctx = talloc_tos();
3881 char *local_name = NULL;
3882 char *remote_name = NULL;
3883 char *fname = NULL;
3884 char *p = NULL;
3886 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3887 if (!remote_name) {
3888 return 1;
3891 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3892 d_printf("reget <filename>\n");
3893 return 1;
3895 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3896 if (!remote_name) {
3897 return 1;
3899 remote_name = clean_name(ctx,remote_name);
3900 if (!remote_name) {
3901 return 1;
3904 local_name = fname;
3905 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3906 if (p) {
3907 local_name = p;
3910 return do_get(remote_name, local_name, true);
3913 /****************************************************************************
3914 Put a file restarting at end of local file.
3915 ****************************************************************************/
3917 static int cmd_reput(void)
3919 TALLOC_CTX *ctx = talloc_tos();
3920 char *local_name = NULL;
3921 char *remote_name = NULL;
3922 char *buf;
3923 SMB_STRUCT_STAT st;
3925 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3926 if (!remote_name) {
3927 return 1;
3930 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3931 d_printf("reput <filename>\n");
3932 return 1;
3935 if (!file_exist_stat(local_name, &st, false)) {
3936 d_printf("%s does not exist\n", local_name);
3937 return 1;
3940 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3941 remote_name = talloc_asprintf_append(remote_name,
3942 "%s", buf);
3943 } else {
3944 remote_name = talloc_asprintf_append(remote_name,
3945 "%s", local_name);
3947 if (!remote_name) {
3948 return 1;
3951 remote_name = clean_name(ctx, remote_name);
3952 if (!remote_name) {
3953 return 1;
3956 return do_put(remote_name, local_name, true);
3959 /****************************************************************************
3960 List a share name.
3961 ****************************************************************************/
3963 static void browse_fn(const char *name, uint32 m,
3964 const char *comment, void *state)
3966 const char *typestr = "";
3968 switch (m & 7) {
3969 case STYPE_DISKTREE:
3970 typestr = "Disk";
3971 break;
3972 case STYPE_PRINTQ:
3973 typestr = "Printer";
3974 break;
3975 case STYPE_DEVICE:
3976 typestr = "Device";
3977 break;
3978 case STYPE_IPC:
3979 typestr = "IPC";
3980 break;
3982 /* FIXME: If the remote machine returns non-ascii characters
3983 in any of these fields, they can corrupt the output. We
3984 should remove them. */
3985 if (!grepable) {
3986 d_printf("\t%-15s %-10.10s%s\n",
3987 name,typestr,comment);
3988 } else {
3989 d_printf ("%s|%s|%s\n",typestr,name,comment);
3993 static bool browse_host_rpc(bool sort)
3995 NTSTATUS status;
3996 struct rpc_pipe_client *pipe_hnd = NULL;
3997 TALLOC_CTX *frame = talloc_stackframe();
3998 WERROR werr;
3999 struct srvsvc_NetShareInfoCtr info_ctr;
4000 struct srvsvc_NetShareCtr1 ctr1;
4001 uint32_t resume_handle = 0;
4002 uint32_t total_entries = 0;
4003 int i;
4004 struct dcerpc_binding_handle *b;
4006 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
4007 &pipe_hnd);
4009 if (!NT_STATUS_IS_OK(status)) {
4010 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
4011 nt_errstr(status)));
4012 TALLOC_FREE(frame);
4013 return false;
4016 b = pipe_hnd->binding_handle;
4018 ZERO_STRUCT(info_ctr);
4019 ZERO_STRUCT(ctr1);
4021 info_ctr.level = 1;
4022 info_ctr.ctr.ctr1 = &ctr1;
4024 status = dcerpc_srvsvc_NetShareEnumAll(b, frame,
4025 pipe_hnd->desthost,
4026 &info_ctr,
4027 0xffffffff,
4028 &total_entries,
4029 &resume_handle,
4030 &werr);
4032 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
4033 TALLOC_FREE(pipe_hnd);
4034 TALLOC_FREE(frame);
4035 return false;
4038 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
4039 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
4040 browse_fn(info.name, info.type, info.comment, NULL);
4043 TALLOC_FREE(pipe_hnd);
4044 TALLOC_FREE(frame);
4045 return true;
4048 /****************************************************************************
4049 Try and browse available connections on a host.
4050 ****************************************************************************/
4052 static bool browse_host(bool sort)
4054 int ret;
4055 if (!grepable) {
4056 d_printf("\n\tSharename Type Comment\n");
4057 d_printf("\t--------- ---- -------\n");
4060 if (browse_host_rpc(sort)) {
4061 return true;
4064 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
4065 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
4067 return (ret != -1);
4070 /****************************************************************************
4071 List a server name.
4072 ****************************************************************************/
4074 static void server_fn(const char *name, uint32 m,
4075 const char *comment, void *state)
4078 if (!grepable){
4079 d_printf("\t%-16s %s\n", name, comment);
4080 } else {
4081 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4085 /****************************************************************************
4086 Try and browse available connections on a host.
4087 ****************************************************************************/
4089 static bool list_servers(const char *wk_grp)
4091 fstring state;
4093 if (!cli->server_domain)
4094 return false;
4096 if (!grepable) {
4097 d_printf("\n\tServer Comment\n");
4098 d_printf("\t--------- -------\n");
4100 fstrcpy( state, "Server" );
4101 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4102 state);
4104 if (!grepable) {
4105 d_printf("\n\tWorkgroup Master\n");
4106 d_printf("\t--------- -------\n");
4109 fstrcpy( state, "Workgroup" );
4110 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4111 server_fn, state);
4112 return true;
4115 /****************************************************************************
4116 Print or set current VUID
4117 ****************************************************************************/
4119 static int cmd_vuid(void)
4121 TALLOC_CTX *ctx = talloc_tos();
4122 char *buf;
4124 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4125 d_printf("Current VUID is %d\n", cli->vuid);
4126 return 0;
4129 cli->vuid = atoi(buf);
4130 return 0;
4133 /****************************************************************************
4134 Setup a new VUID, by issuing a session setup
4135 ****************************************************************************/
4137 static int cmd_logon(void)
4139 TALLOC_CTX *ctx = talloc_tos();
4140 char *l_username, *l_password;
4141 NTSTATUS nt_status;
4143 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4144 d_printf("logon <username> [<password>]\n");
4145 return 0;
4148 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4149 char *pass = getpass("Password: ");
4150 if (pass) {
4151 l_password = talloc_strdup(ctx,pass);
4154 if (!l_password) {
4155 return 1;
4158 nt_status = cli_session_setup(cli, l_username,
4159 l_password, strlen(l_password),
4160 l_password, strlen(l_password),
4161 lp_workgroup());
4162 if (!NT_STATUS_IS_OK(nt_status)) {
4163 d_printf("session setup failed: %s\n", nt_errstr(nt_status));
4164 return -1;
4167 d_printf("Current VUID is %d\n", cli->vuid);
4168 return 0;
4172 /****************************************************************************
4173 list active connections
4174 ****************************************************************************/
4176 static int cmd_list_connect(void)
4178 cli_cm_display(cli);
4179 return 0;
4182 /****************************************************************************
4183 display the current active client connection
4184 ****************************************************************************/
4186 static int cmd_show_connect( void )
4188 TALLOC_CTX *ctx = talloc_tos();
4189 struct cli_state *targetcli;
4190 char *targetpath;
4192 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
4193 &targetcli, &targetpath ) ) {
4194 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
4195 return 1;
4198 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
4199 return 0;
4202 /****************************************************************************
4203 iosize command
4204 ***************************************************************************/
4206 int cmd_iosize(void)
4208 TALLOC_CTX *ctx = talloc_tos();
4209 char *buf;
4210 int iosize;
4212 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4213 if (!smb_encrypt) {
4214 d_printf("iosize <n> or iosize 0x<n>. "
4215 "Minimum is 16384 (0x4000), "
4216 "max is 16776960 (0xFFFF00)\n");
4217 } else {
4218 d_printf("iosize <n> or iosize 0x<n>. "
4219 "(Encrypted connection) ,"
4220 "Minimum is 16384 (0x4000), "
4221 "max is 130048 (0x1FC00)\n");
4223 return 1;
4226 iosize = strtol(buf,NULL,0);
4227 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4228 d_printf("iosize out of range for encrypted "
4229 "connection (min = 16384 (0x4000), "
4230 "max = 130048 (0x1FC00)");
4231 return 1;
4232 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4233 d_printf("iosize out of range (min = 16384 (0x4000), "
4234 "max = 16776960 (0xFFFF00)");
4235 return 1;
4238 io_bufsize = iosize;
4239 d_printf("iosize is now %d\n", io_bufsize);
4240 return 0;
4243 /****************************************************************************
4244 history
4245 ****************************************************************************/
4246 static int cmd_history(void)
4248 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4249 HIST_ENTRY **hlist;
4250 int i;
4252 hlist = history_list();
4254 for (i = 0; hlist && hlist[i]; i++) {
4255 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4257 #else
4258 DEBUG(0,("no history without readline support\n"));
4259 #endif
4261 return 0;
4264 /* Some constants for completing filename arguments */
4266 #define COMPL_NONE 0 /* No completions */
4267 #define COMPL_REMOTE 1 /* Complete remote filename */
4268 #define COMPL_LOCAL 2 /* Complete local filename */
4270 /* This defines the commands supported by this client.
4271 * NOTE: The "!" must be the last one in the list because it's fn pointer
4272 * field is NULL, and NULL in that field is used in process_tok()
4273 * (below) to indicate the end of the list. crh
4275 static struct {
4276 const char *name;
4277 int (*fn)(void);
4278 const char *description;
4279 char compl_args[2]; /* Completion argument info */
4280 } commands[] = {
4281 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4282 {"allinfo",cmd_allinfo,"<file> show all available info",
4283 {COMPL_NONE,COMPL_NONE}},
4284 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4285 {"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}},
4286 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4287 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4288 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4289 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4290 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4291 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4292 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4293 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4294 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4295 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4296 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4297 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4298 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4299 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4300 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4301 {COMPL_REMOTE, COMPL_LOCAL}},
4302 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4303 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4304 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4305 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4306 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4307 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4308 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4309 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4310 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4311 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4312 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4313 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4314 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4315 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4316 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4317 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4318 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4319 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4320 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4321 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4322 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4323 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4324 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4325 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4326 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4327 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4328 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4329 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4330 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4331 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4332 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4333 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4334 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4335 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4336 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4337 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4338 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4339 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4340 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4341 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4342 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4343 {COMPL_REMOTE, COMPL_LOCAL}},
4344 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4345 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4346 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4347 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4348 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4349 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4350 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4351 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4352 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4353 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4354 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4355 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4356 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4357 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4359 /* Yes, this must be here, see crh's comment above. */
4360 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4361 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4364 /*******************************************************************
4365 Lookup a command string in the list of commands, including
4366 abbreviations.
4367 ******************************************************************/
4369 static int process_tok(char *tok)
4371 int i = 0, matches = 0;
4372 int cmd=0;
4373 int tok_len = strlen(tok);
4375 while (commands[i].fn != NULL) {
4376 if (strequal(commands[i].name,tok)) {
4377 matches = 1;
4378 cmd = i;
4379 break;
4380 } else if (strnequal(commands[i].name, tok, tok_len)) {
4381 matches++;
4382 cmd = i;
4384 i++;
4387 if (matches == 0)
4388 return(-1);
4389 else if (matches == 1)
4390 return(cmd);
4391 else
4392 return(-2);
4395 /****************************************************************************
4396 Help.
4397 ****************************************************************************/
4399 static int cmd_help(void)
4401 TALLOC_CTX *ctx = talloc_tos();
4402 int i=0,j;
4403 char *buf;
4405 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4406 if ((i = process_tok(buf)) >= 0)
4407 d_printf("HELP %s:\n\t%s\n\n",
4408 commands[i].name,commands[i].description);
4409 } else {
4410 while (commands[i].description) {
4411 for (j=0; commands[i].description && (j<5); j++) {
4412 d_printf("%-15s",commands[i].name);
4413 i++;
4415 d_printf("\n");
4418 return 0;
4421 /****************************************************************************
4422 Process a -c command string.
4423 ****************************************************************************/
4425 static int process_command_string(const char *cmd_in)
4427 TALLOC_CTX *ctx = talloc_tos();
4428 char *cmd = talloc_strdup(ctx, cmd_in);
4429 int rc = 0;
4431 if (!cmd) {
4432 return 1;
4434 /* establish the connection if not already */
4436 if (!cli) {
4437 cli = cli_cm_open(talloc_tos(), NULL,
4438 have_ip ? dest_ss_str : desthost,
4439 service, auth_info,
4440 true, smb_encrypt,
4441 max_protocol, port, name_type);
4442 if (!cli) {
4443 return 1;
4447 while (cmd[0] != '\0') {
4448 char *line;
4449 char *p;
4450 char *tok;
4451 int i;
4453 if ((p = strchr_m(cmd, ';')) == 0) {
4454 line = cmd;
4455 cmd += strlen(cmd);
4456 } else {
4457 *p = '\0';
4458 line = cmd;
4459 cmd = p + 1;
4462 /* and get the first part of the command */
4463 cmd_ptr = line;
4464 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4465 continue;
4468 if ((i = process_tok(tok)) >= 0) {
4469 rc = commands[i].fn();
4470 } else if (i == -2) {
4471 d_printf("%s: command abbreviation ambiguous\n",tok);
4472 } else {
4473 d_printf("%s: command not found\n",tok);
4477 return rc;
4480 #define MAX_COMPLETIONS 100
4482 struct completion_remote {
4483 char *dirmask;
4484 char **matches;
4485 int count, samelen;
4486 const char *text;
4487 int len;
4490 static NTSTATUS completion_remote_filter(const char *mnt,
4491 struct file_info *f,
4492 const char *mask,
4493 void *state)
4495 struct completion_remote *info = (struct completion_remote *)state;
4497 if (info->count >= MAX_COMPLETIONS - 1) {
4498 return NT_STATUS_OK;
4500 if (strncmp(info->text, f->name, info->len) != 0) {
4501 return NT_STATUS_OK;
4503 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4504 return NT_STATUS_OK;
4507 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4508 info->matches[info->count] = SMB_STRDUP(f->name);
4509 else {
4510 TALLOC_CTX *ctx = talloc_stackframe();
4511 char *tmp;
4513 tmp = talloc_strdup(ctx,info->dirmask);
4514 if (!tmp) {
4515 TALLOC_FREE(ctx);
4516 return NT_STATUS_NO_MEMORY;
4518 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4519 if (!tmp) {
4520 TALLOC_FREE(ctx);
4521 return NT_STATUS_NO_MEMORY;
4523 if (f->mode & aDIR) {
4524 tmp = talloc_asprintf_append(tmp, "%s",
4525 CLI_DIRSEP_STR);
4527 if (!tmp) {
4528 TALLOC_FREE(ctx);
4529 return NT_STATUS_NO_MEMORY;
4531 info->matches[info->count] = SMB_STRDUP(tmp);
4532 TALLOC_FREE(ctx);
4534 if (info->matches[info->count] == NULL) {
4535 return NT_STATUS_OK;
4537 if (f->mode & aDIR) {
4538 smb_readline_ca_char(0);
4540 if (info->count == 1) {
4541 info->samelen = strlen(info->matches[info->count]);
4542 } else {
4543 while (strncmp(info->matches[info->count],
4544 info->matches[info->count-1],
4545 info->samelen) != 0) {
4546 info->samelen--;
4549 info->count++;
4550 return NT_STATUS_OK;
4553 static char **remote_completion(const char *text, int len)
4555 TALLOC_CTX *ctx = talloc_stackframe();
4556 char *dirmask = NULL;
4557 char *targetpath = NULL;
4558 struct cli_state *targetcli = NULL;
4559 int i;
4560 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4561 NTSTATUS status;
4563 /* can't have non-static initialisation on Sun CC, so do it
4564 at run time here */
4565 info.samelen = len;
4566 info.text = text;
4567 info.len = len;
4569 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4570 if (!info.matches) {
4571 TALLOC_FREE(ctx);
4572 return NULL;
4576 * We're leaving matches[0] free to fill it later with the text to
4577 * display: Either the one single match or the longest common subset
4578 * of the matches.
4580 info.matches[0] = NULL;
4581 info.count = 1;
4583 for (i = len-1; i >= 0; i--) {
4584 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4585 break;
4589 info.text = text+i+1;
4590 info.samelen = info.len = len-i-1;
4592 if (i > 0) {
4593 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4594 if (!info.dirmask) {
4595 goto cleanup;
4597 strncpy(info.dirmask, text, i+1);
4598 info.dirmask[i+1] = 0;
4599 dirmask = talloc_asprintf(ctx,
4600 "%s%*s*",
4601 client_get_cur_dir(),
4602 i-1,
4603 text);
4604 } else {
4605 info.dirmask = SMB_STRDUP("");
4606 if (!info.dirmask) {
4607 goto cleanup;
4609 dirmask = talloc_asprintf(ctx,
4610 "%s*",
4611 client_get_cur_dir());
4613 if (!dirmask) {
4614 goto cleanup;
4617 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4618 goto cleanup;
4620 status = cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4621 completion_remote_filter, (void *)&info);
4622 if (!NT_STATUS_IS_OK(status)) {
4623 goto cleanup;
4626 if (info.count == 1) {
4628 * No matches at all, NULL indicates there is nothing
4630 SAFE_FREE(info.matches[0]);
4631 SAFE_FREE(info.matches);
4632 TALLOC_FREE(ctx);
4633 return NULL;
4636 if (info.count == 2) {
4638 * Exactly one match in matches[1], indicate this is the one
4639 * in matches[0].
4641 info.matches[0] = info.matches[1];
4642 info.matches[1] = NULL;
4643 info.count -= 1;
4644 TALLOC_FREE(ctx);
4645 return info.matches;
4649 * We got more than one possible match, set the result to the maximum
4650 * common subset
4653 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4654 info.matches[info.count] = NULL;
4655 return info.matches;
4657 cleanup:
4658 for (i = 0; i < info.count; i++) {
4659 SAFE_FREE(info.matches[i]);
4661 SAFE_FREE(info.matches);
4662 SAFE_FREE(info.dirmask);
4663 TALLOC_FREE(ctx);
4664 return NULL;
4667 static char **completion_fn(const char *text, int start, int end)
4669 smb_readline_ca_char(' ');
4671 if (start) {
4672 const char *buf, *sp;
4673 int i;
4674 char compl_type;
4676 buf = smb_readline_get_line_buffer();
4677 if (buf == NULL)
4678 return NULL;
4680 sp = strchr(buf, ' ');
4681 if (sp == NULL)
4682 return NULL;
4684 for (i = 0; commands[i].name; i++) {
4685 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4686 (commands[i].name[sp - buf] == 0)) {
4687 break;
4690 if (commands[i].name == NULL)
4691 return NULL;
4693 while (*sp == ' ')
4694 sp++;
4696 if (sp == (buf + start))
4697 compl_type = commands[i].compl_args[0];
4698 else
4699 compl_type = commands[i].compl_args[1];
4701 if (compl_type == COMPL_REMOTE)
4702 return remote_completion(text, end - start);
4703 else /* fall back to local filename completion */
4704 return NULL;
4705 } else {
4706 char **matches;
4707 int i, len, samelen = 0, count=1;
4709 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4710 if (!matches) {
4711 return NULL;
4713 matches[0] = NULL;
4715 len = strlen(text);
4716 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4717 if (strncmp(text, commands[i].name, len) == 0) {
4718 matches[count] = SMB_STRDUP(commands[i].name);
4719 if (!matches[count])
4720 goto cleanup;
4721 if (count == 1)
4722 samelen = strlen(matches[count]);
4723 else
4724 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4725 samelen--;
4726 count++;
4730 switch (count) {
4731 case 0: /* should never happen */
4732 case 1:
4733 goto cleanup;
4734 case 2:
4735 matches[0] = SMB_STRDUP(matches[1]);
4736 break;
4737 default:
4738 matches[0] = (char *)SMB_MALLOC(samelen+1);
4739 if (!matches[0])
4740 goto cleanup;
4741 strncpy(matches[0], matches[1], samelen);
4742 matches[0][samelen] = 0;
4744 matches[count] = NULL;
4745 return matches;
4747 cleanup:
4748 for (i = 0; i < count; i++)
4749 free(matches[i]);
4751 free(matches);
4752 return NULL;
4756 static bool finished;
4758 /****************************************************************************
4759 Make sure we swallow keepalives during idle time.
4760 ****************************************************************************/
4762 static void readline_callback(void)
4764 static time_t last_t;
4765 struct timespec now;
4766 time_t t;
4767 int ret, revents;
4769 clock_gettime_mono(&now);
4770 t = now.tv_sec;
4772 if (t - last_t < 5)
4773 return;
4775 last_t = t;
4777 again:
4779 if (cli->fd == -1)
4780 return;
4782 /* We deliberately use receive_smb_raw instead of
4783 client_receive_smb as we want to receive
4784 session keepalives and then drop them here.
4787 ret = poll_intr_one_fd(cli->fd, POLLIN|POLLHUP, 0, &revents);
4789 if ((ret > 0) && (revents & (POLLIN|POLLHUP|POLLERR))) {
4790 NTSTATUS status;
4791 size_t len;
4793 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4795 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4797 if (!NT_STATUS_IS_OK(status)) {
4798 DEBUG(0, ("Read from server failed, maybe it closed "
4799 "the connection\n"));
4801 finished = true;
4802 smb_readline_done();
4803 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4804 set_smb_read_error(&cli->smb_rw_error,
4805 SMB_READ_EOF);
4806 return;
4809 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4810 set_smb_read_error(&cli->smb_rw_error,
4811 SMB_READ_TIMEOUT);
4812 return;
4815 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4816 return;
4818 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4819 DEBUG(0, ("Read from server "
4820 "returned unexpected packet!\n"));
4821 return;
4824 goto again;
4827 /* Ping the server to keep the connection alive using SMBecho. */
4829 NTSTATUS status;
4830 unsigned char garbage[16];
4831 memset(garbage, 0xf0, sizeof(garbage));
4832 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4834 if (!NT_STATUS_IS_OK(status)) {
4835 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4836 "the connection\n"));
4837 finished = true;
4838 smb_readline_done();
4843 /****************************************************************************
4844 Process commands on stdin.
4845 ****************************************************************************/
4847 static int process_stdin(void)
4849 int rc = 0;
4851 while (!finished) {
4852 TALLOC_CTX *frame = talloc_stackframe();
4853 char *tok = NULL;
4854 char *the_prompt = NULL;
4855 char *line = NULL;
4856 int i;
4858 /* display a prompt */
4859 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4860 TALLOC_FREE(frame);
4861 break;
4863 line = smb_readline(the_prompt, readline_callback, completion_fn);
4864 SAFE_FREE(the_prompt);
4865 if (!line) {
4866 TALLOC_FREE(frame);
4867 break;
4870 /* special case - first char is ! */
4871 if (*line == '!') {
4872 if (system(line + 1) == -1) {
4873 d_printf("system() command %s failed.\n",
4874 line+1);
4876 SAFE_FREE(line);
4877 TALLOC_FREE(frame);
4878 continue;
4881 /* and get the first part of the command */
4882 cmd_ptr = line;
4883 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4884 TALLOC_FREE(frame);
4885 SAFE_FREE(line);
4886 continue;
4889 if ((i = process_tok(tok)) >= 0) {
4890 rc = commands[i].fn();
4891 } else if (i == -2) {
4892 d_printf("%s: command abbreviation ambiguous\n",tok);
4893 } else {
4894 d_printf("%s: command not found\n",tok);
4896 SAFE_FREE(line);
4897 TALLOC_FREE(frame);
4899 return rc;
4902 /****************************************************************************
4903 Process commands from the client.
4904 ****************************************************************************/
4906 static int process(const char *base_directory)
4908 int rc = 0;
4910 cli = cli_cm_open(talloc_tos(), NULL,
4911 have_ip ? dest_ss_str : desthost,
4912 service, auth_info, true, smb_encrypt,
4913 max_protocol, port, name_type);
4914 if (!cli) {
4915 return 1;
4918 if (base_directory && *base_directory) {
4919 rc = do_cd(base_directory);
4920 if (rc) {
4921 cli_shutdown(cli);
4922 return rc;
4926 if (cmdstr) {
4927 rc = process_command_string(cmdstr);
4928 } else {
4929 process_stdin();
4932 cli_shutdown(cli);
4933 return rc;
4936 /****************************************************************************
4937 Handle a -L query.
4938 ****************************************************************************/
4940 static int do_host_query(const char *query_host)
4942 cli = cli_cm_open(talloc_tos(), NULL,
4943 have_ip ? dest_ss_str : query_host, "IPC$", auth_info, true, smb_encrypt,
4944 max_protocol, port, name_type);
4945 if (!cli)
4946 return 1;
4948 browse_host(true);
4950 /* Ensure that the host can do IPv4 */
4952 if (!interpret_addr(query_host)) {
4953 struct sockaddr_storage ss;
4954 if (interpret_string_addr(&ss, query_host, 0) &&
4955 (ss.ss_family != AF_INET)) {
4956 d_printf("%s is an IPv6 address -- no workgroup available\n",
4957 query_host);
4958 return 1;
4962 if (port != 139) {
4964 /* Workgroups simply don't make sense over anything
4965 else but port 139... */
4967 cli_shutdown(cli);
4968 cli = cli_cm_open(talloc_tos(), NULL,
4969 have_ip ? dest_ss_str : query_host, "IPC$",
4970 auth_info, true, smb_encrypt,
4971 max_protocol, 139, name_type);
4974 if (cli == NULL) {
4975 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4976 return 1;
4979 list_servers(lp_workgroup());
4981 cli_shutdown(cli);
4983 return(0);
4986 /****************************************************************************
4987 Handle a tar operation.
4988 ****************************************************************************/
4990 static int do_tar_op(const char *base_directory)
4992 int ret;
4994 /* do we already have a connection? */
4995 if (!cli) {
4996 cli = cli_cm_open(talloc_tos(), NULL,
4997 have_ip ? dest_ss_str : desthost,
4998 service, auth_info, true, smb_encrypt,
4999 max_protocol, port, name_type);
5000 if (!cli)
5001 return 1;
5004 recurse=true;
5006 if (base_directory && *base_directory) {
5007 ret = do_cd(base_directory);
5008 if (ret) {
5009 cli_shutdown(cli);
5010 return ret;
5014 ret=process_tar();
5016 cli_shutdown(cli);
5018 return(ret);
5021 /****************************************************************************
5022 Handle a message operation.
5023 ****************************************************************************/
5025 static int do_message_op(struct user_auth_info *a_info)
5027 struct sockaddr_storage ss;
5028 struct nmb_name called, calling;
5029 fstring server_name;
5030 char name_type_hex[10];
5031 int msg_port;
5032 NTSTATUS status;
5034 make_nmb_name(&calling, calling_name, 0x0);
5035 make_nmb_name(&called , desthost, name_type);
5037 fstrcpy(server_name, desthost);
5038 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
5039 fstrcat(server_name, name_type_hex);
5041 zero_sockaddr(&ss);
5042 if (have_ip)
5043 ss = dest_ss;
5045 /* we can only do messages over port 139 (to windows clients at least) */
5047 msg_port = port ? port : 139;
5049 if (!(cli=cli_initialise())) {
5050 d_printf("Connection to %s failed\n", desthost);
5051 return 1;
5053 cli_set_port(cli, msg_port);
5055 status = cli_connect(cli, server_name, &ss);
5056 if (!NT_STATUS_IS_OK(status)) {
5057 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
5058 return 1;
5061 if (!cli_session_request(cli, &calling, &called)) {
5062 d_printf("session request failed\n");
5063 cli_shutdown(cli);
5064 return 1;
5067 send_message(get_cmdline_auth_info_username(a_info));
5068 cli_shutdown(cli);
5070 return 0;
5073 /****************************************************************************
5074 main program
5075 ****************************************************************************/
5077 int main(int argc,char *argv[])
5079 char *base_directory = NULL;
5080 int opt;
5081 char *query_host = NULL;
5082 bool message = false;
5083 static const char *new_name_resolve_order = NULL;
5084 poptContext pc;
5085 char *p;
5086 int rc = 0;
5087 fstring new_workgroup;
5088 bool tar_opt = false;
5089 bool service_opt = false;
5090 struct poptOption long_options[] = {
5091 POPT_AUTOHELP
5093 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5094 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5095 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5096 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5097 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5098 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5099 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5100 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5101 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5102 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5103 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5104 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5105 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5106 POPT_COMMON_SAMBA
5107 POPT_COMMON_CONNECTION
5108 POPT_COMMON_CREDENTIALS
5109 POPT_TABLEEND
5111 TALLOC_CTX *frame = talloc_stackframe();
5113 if (!client_set_cur_dir("\\")) {
5114 exit(ENOMEM);
5117 /* initialize the workgroup name so we can determine whether or
5118 not it was set by a command line option */
5120 set_global_myworkgroup( "" );
5121 set_global_myname( "" );
5123 /* set default debug level to 1 regardless of what smb.conf sets */
5124 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5125 load_case_tables();
5127 lp_set_cmdline("log level", "1");
5129 auth_info = user_auth_info_init(frame);
5130 if (auth_info == NULL) {
5131 exit(1);
5133 popt_common_set_auth_info(auth_info);
5135 /* skip argv(0) */
5136 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5137 poptSetOtherOptionHelp(pc, "service <password>");
5139 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
5141 while ((opt = poptGetNextOpt(pc)) != -1) {
5143 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5144 /* I see no other way to keep things sane --SSS */
5145 if (tar_opt == true) {
5146 while (poptPeekArg(pc)) {
5147 poptGetArg(pc);
5149 tar_opt = false;
5152 /* if the service has not yet been specified lets see if it is available in the popt stack */
5153 if (!service_opt && poptPeekArg(pc)) {
5154 service = talloc_strdup(frame, poptGetArg(pc));
5155 if (!service) {
5156 exit(ENOMEM);
5158 service_opt = true;
5161 /* if the service has already been retrieved then check if we have also a password */
5162 if (service_opt
5163 && (!get_cmdline_auth_info_got_pass(auth_info))
5164 && poptPeekArg(pc)) {
5165 set_cmdline_auth_info_password(auth_info,
5166 poptGetArg(pc));
5169 switch (opt) {
5170 case 'M':
5171 /* Messages are sent to NetBIOS name type 0x3
5172 * (Messenger Service). Make sure we default
5173 * to port 139 instead of port 445. srl,crh
5175 name_type = 0x03;
5176 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5177 if (!desthost) {
5178 exit(ENOMEM);
5180 if( !port )
5181 port = 139;
5182 message = true;
5183 break;
5184 case 'I':
5186 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5187 exit(1);
5189 have_ip = true;
5190 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5192 break;
5193 case 'E':
5194 setup_logging("smbclient", DEBUG_STDERR );
5195 display_set_stderr();
5196 break;
5198 case 'L':
5199 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5200 if (!query_host) {
5201 exit(ENOMEM);
5203 break;
5204 case 'm':
5205 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5206 break;
5207 case 'T':
5208 /* We must use old option processing for this. Find the
5209 * position of the -T option in the raw argv[]. */
5211 int i;
5212 for (i = 1; i < argc; i++) {
5213 if (strncmp("-T", argv[i],2)==0)
5214 break;
5216 i++;
5217 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5218 poptPrintUsage(pc, stderr, 0);
5219 exit(1);
5222 /* this must be the last option, mark we have parsed it so that we know we have */
5223 tar_opt = true;
5224 break;
5225 case 'D':
5226 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5227 if (!base_directory) {
5228 exit(ENOMEM);
5230 break;
5231 case 'g':
5232 grepable=true;
5233 break;
5234 case 'e':
5235 smb_encrypt=true;
5236 break;
5237 case 'B':
5238 return(do_smb_browse());
5243 /* We may still have some leftovers after the last popt option has been called */
5244 if (tar_opt == true) {
5245 while (poptPeekArg(pc)) {
5246 poptGetArg(pc);
5248 tar_opt = false;
5251 /* if the service has not yet been specified lets see if it is available in the popt stack */
5252 if (!service_opt && poptPeekArg(pc)) {
5253 service = talloc_strdup(frame,poptGetArg(pc));
5254 if (!service) {
5255 exit(ENOMEM);
5257 service_opt = true;
5260 /* if the service has already been retrieved then check if we have also a password */
5261 if (service_opt
5262 && !get_cmdline_auth_info_got_pass(auth_info)
5263 && poptPeekArg(pc)) {
5264 set_cmdline_auth_info_password(auth_info,
5265 poptGetArg(pc));
5268 /* save the workgroup...
5270 FIXME!! do we need to do this for other options as well
5271 (or maybe a generic way to keep lp_load() from overwriting
5272 everything)? */
5274 fstrcpy( new_workgroup, lp_workgroup() );
5275 calling_name = talloc_strdup(frame, global_myname() );
5276 if (!calling_name) {
5277 exit(ENOMEM);
5280 if ( override_logfile )
5281 setup_logging( lp_logfile(), DEBUG_FILE );
5283 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5284 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5285 argv[0], get_dyn_CONFIGFILE());
5288 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5289 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5290 exit(-1);
5293 load_interfaces();
5295 if (service_opt && service) {
5296 size_t len;
5298 /* Convert any '/' characters in the service name to '\' characters */
5299 string_replace(service, '/','\\');
5300 if (count_chars(service,'\\') < 3) {
5301 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5302 poptPrintUsage(pc, stderr, 0);
5303 exit(1);
5305 /* Remove trailing slashes */
5306 len = strlen(service);
5307 while(len > 0 && service[len - 1] == '\\') {
5308 --len;
5309 service[len] = '\0';
5313 if ( strlen(new_workgroup) != 0 ) {
5314 set_global_myworkgroup( new_workgroup );
5317 if ( strlen(calling_name) != 0 ) {
5318 set_global_myname( calling_name );
5319 } else {
5320 TALLOC_FREE(calling_name);
5321 calling_name = talloc_strdup(frame, global_myname() );
5324 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5325 if (!init_names()) {
5326 fprintf(stderr, "init_names() failed\n");
5327 exit(1);
5330 if(new_name_resolve_order)
5331 lp_set_name_resolve_order(new_name_resolve_order);
5333 if (!tar_type && !query_host && !service && !message) {
5334 poptPrintUsage(pc, stderr, 0);
5335 exit(1);
5338 poptFreeContext(pc);
5340 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5342 /* Ensure we have a password (or equivalent). */
5343 set_cmdline_auth_info_getpass(auth_info);
5345 if (tar_type) {
5346 if (cmdstr)
5347 process_command_string(cmdstr);
5348 return do_tar_op(base_directory);
5351 if (query_host && *query_host) {
5352 char *qhost = query_host;
5353 char *slash;
5355 while (*qhost == '\\' || *qhost == '/')
5356 qhost++;
5358 if ((slash = strchr_m(qhost, '/'))
5359 || (slash = strchr_m(qhost, '\\'))) {
5360 *slash = 0;
5363 if ((p=strchr_m(qhost, '#'))) {
5364 *p = 0;
5365 p++;
5366 sscanf(p, "%x", &name_type);
5369 return do_host_query(qhost);
5372 if (message) {
5373 return do_message_op(auth_info);
5376 if (process(base_directory)) {
5377 return 1;
5380 TALLOC_FREE(frame);
5381 return rc;