s4:password_hash LDB module - return "ERR_CONSTRAINT_VIOLATION" on password conversio...
[Samba/wip.git] / source3 / client / client.c
blob062809d1b685c5f44f95801af1566578f48e8457
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 "client/client_proto.h"
27 #include "../librpc/gen_ndr/cli_srvsvc.h"
28 #include "../lib/util/select.h"
29 #include "system/readline.h"
30 #include "../libcli/smbreadline/smbreadline.h"
31 #include "../libcli/security/security.h"
33 #ifndef REGISTER
34 #define REGISTER 0
35 #endif
37 extern int do_smb_browse(void); /* mDNS browsing */
39 extern bool AllowDebugChange;
40 extern bool override_logfile;
41 extern char tar_type;
43 static int port = 0;
44 static char *service;
45 static char *desthost;
46 static char *calling_name;
47 static bool grepable = false;
48 static char *cmdstr = NULL;
49 const char *cmd_ptr = NULL;
51 static int io_bufsize = 524288;
53 static int name_type = 0x20;
54 static int max_protocol = PROTOCOL_NT1;
56 static int process_tok(char *tok);
57 static int cmd_help(void);
59 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
61 /* 30 second timeout on most commands */
62 #define CLIENT_TIMEOUT (30*1000)
63 #define SHORT_TIMEOUT (5*1000)
65 /* value for unused fid field in trans2 secondary request */
66 #define FID_UNUSED (0xFFFF)
68 time_t newer_than = 0;
69 static int archive_level = 0;
71 static bool translation = false;
72 static bool have_ip;
74 /* clitar bits insert */
75 extern int blocksize;
76 extern bool tar_inc;
77 extern bool tar_reset;
78 /* clitar bits end */
80 static bool prompt = true;
82 static bool recurse = false;
83 static bool showacls = false;
84 bool lowercase = false;
86 static struct sockaddr_storage dest_ss;
87 static char dest_ss_str[INET6_ADDRSTRLEN];
89 #define SEPARATORS " \t\n\r"
91 static bool abort_mget = true;
93 /* timing globals */
94 uint64_t get_total_size = 0;
95 unsigned int get_total_time_ms = 0;
96 static uint64_t put_total_size = 0;
97 static unsigned int put_total_time_ms = 0;
99 /* totals globals */
100 static double dir_total;
102 /* encrypted state. */
103 static bool smb_encrypt;
105 /* root cli_state connection */
107 struct cli_state *cli;
109 static char CLI_DIRSEP_CHAR = '\\';
110 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
112 /* Authentication for client connections. */
113 struct user_auth_info *auth_info;
115 /* Accessor functions for directory paths. */
116 static char *fileselection;
117 static const char *client_get_fileselection(void)
119 if (fileselection) {
120 return fileselection;
122 return "";
125 static const char *client_set_fileselection(const char *new_fs)
127 SAFE_FREE(fileselection);
128 if (new_fs) {
129 fileselection = SMB_STRDUP(new_fs);
131 return client_get_fileselection();
134 static char *cwd;
135 static const char *client_get_cwd(void)
137 if (cwd) {
138 return cwd;
140 return CLI_DIRSEP_STR;
143 static const char *client_set_cwd(const char *new_cwd)
145 SAFE_FREE(cwd);
146 if (new_cwd) {
147 cwd = SMB_STRDUP(new_cwd);
149 return client_get_cwd();
152 static char *cur_dir;
153 const char *client_get_cur_dir(void)
155 if (cur_dir) {
156 return cur_dir;
158 return CLI_DIRSEP_STR;
161 const char *client_set_cur_dir(const char *newdir)
163 SAFE_FREE(cur_dir);
164 if (newdir) {
165 cur_dir = SMB_STRDUP(newdir);
167 return client_get_cur_dir();
170 /****************************************************************************
171 Put up a yes/no prompt.
172 ****************************************************************************/
174 static bool yesno(const char *p)
176 char ans[20];
177 printf("%s",p);
179 if (!fgets(ans,sizeof(ans)-1,stdin))
180 return(False);
182 if (*ans == 'y' || *ans == 'Y')
183 return(True);
185 return(False);
188 /****************************************************************************
189 Write to a local file with CR/LF->LF translation if appropriate. Return the
190 number taken from the buffer. This may not equal the number written.
191 ****************************************************************************/
193 static int writefile(int f, char *b, int n)
195 int i;
197 if (!translation) {
198 return write(f,b,n);
201 i = 0;
202 while (i < n) {
203 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
204 b++;i++;
206 if (write(f, b, 1) != 1) {
207 break;
209 b++;
210 i++;
213 return(i);
216 /****************************************************************************
217 Read from a file with LF->CR/LF translation if appropriate. Return the
218 number read. read approx n bytes.
219 ****************************************************************************/
221 static int readfile(uint8_t *b, int n, XFILE *f)
223 int i;
224 int c;
226 if (!translation)
227 return x_fread(b,1,n,f);
229 i = 0;
230 while (i < (n - 1) && (i < BUFFER_SIZE)) {
231 if ((c = x_getc(f)) == EOF) {
232 break;
235 if (c == '\n') { /* change all LFs to CR/LF */
236 b[i++] = '\r';
239 b[i++] = c;
242 return(i);
245 struct push_state {
246 XFILE *f;
247 SMB_OFF_T nread;
250 static size_t push_source(uint8_t *buf, size_t n, void *priv)
252 struct push_state *state = (struct push_state *)priv;
253 int result;
255 if (x_feof(state->f)) {
256 return 0;
259 result = readfile(buf, n, state->f);
260 state->nread += result;
261 return result;
264 /****************************************************************************
265 Send a message.
266 ****************************************************************************/
268 static void send_message(const char *username)
270 char buf[1600];
271 NTSTATUS status;
272 int i;
274 d_printf("Type your message, ending it with a Control-D\n");
276 i = 0;
277 while (i<sizeof(buf)-2) {
278 int c = fgetc(stdin);
279 if (c == EOF) {
280 break;
282 if (c == '\n') {
283 buf[i++] = '\r';
285 buf[i++] = c;
287 buf[i] = '\0';
289 status = cli_message(cli, desthost, username, buf);
290 if (!NT_STATUS_IS_OK(status)) {
291 d_fprintf(stderr, "cli_message returned %s\n",
292 nt_errstr(status));
296 /****************************************************************************
297 Check the space on a device.
298 ****************************************************************************/
300 static int do_dskattr(void)
302 int total, bsize, avail;
303 struct cli_state *targetcli = NULL;
304 char *targetpath = NULL;
305 TALLOC_CTX *ctx = talloc_tos();
306 NTSTATUS status;
308 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
309 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
310 return 1;
313 status = cli_dskattr(targetcli, &bsize, &total, &avail);
314 if (!NT_STATUS_IS_OK(status)) {
315 d_printf("Error in dskattr: %s\n", nt_errstr(status));
316 return 1;
319 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
320 total, bsize, avail);
322 return 0;
325 /****************************************************************************
326 Show cd/pwd.
327 ****************************************************************************/
329 static int cmd_pwd(void)
331 d_printf("Current directory is %s",service);
332 d_printf("%s\n",client_get_cur_dir());
333 return 0;
336 /****************************************************************************
337 Ensure name has correct directory separators.
338 ****************************************************************************/
340 static void normalize_name(char *newdir)
342 if (!(cli->requested_posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
343 string_replace(newdir,'/','\\');
347 /****************************************************************************
348 Change directory - inner section.
349 ****************************************************************************/
351 static int do_cd(const char *new_dir)
353 char *newdir = NULL;
354 char *saved_dir = NULL;
355 char *new_cd = NULL;
356 char *targetpath = NULL;
357 struct cli_state *targetcli = NULL;
358 SMB_STRUCT_STAT sbuf;
359 uint32 attributes;
360 int ret = 1;
361 TALLOC_CTX *ctx = talloc_stackframe();
363 newdir = talloc_strdup(ctx, new_dir);
364 if (!newdir) {
365 TALLOC_FREE(ctx);
366 return 1;
369 normalize_name(newdir);
371 /* Save the current directory in case the new directory is invalid */
373 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
374 if (!saved_dir) {
375 TALLOC_FREE(ctx);
376 return 1;
379 if (*newdir == CLI_DIRSEP_CHAR) {
380 client_set_cur_dir(newdir);
381 new_cd = newdir;
382 } else {
383 new_cd = talloc_asprintf(ctx, "%s%s",
384 client_get_cur_dir(),
385 newdir);
386 if (!new_cd) {
387 goto out;
391 /* Ensure cur_dir ends in a DIRSEP */
392 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
393 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
394 if (!new_cd) {
395 goto out;
398 client_set_cur_dir(new_cd);
400 new_cd = clean_name(ctx, new_cd);
401 client_set_cur_dir(new_cd);
403 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
404 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
405 client_set_cur_dir(saved_dir);
406 goto out;
409 if (strequal(targetpath,CLI_DIRSEP_STR )) {
410 TALLOC_FREE(ctx);
411 return 0;
414 /* Use a trans2_qpathinfo to test directories for modern servers.
415 Except Win9x doesn't support the qpathinfo_basic() call..... */
417 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
418 NTSTATUS status;
420 status = cli_qpathinfo_basic(targetcli, targetpath, &sbuf,
421 &attributes);
422 if (!NT_STATUS_IS_OK(status)) {
423 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
424 client_set_cur_dir(saved_dir);
425 goto out;
428 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
429 d_printf("cd %s: not a directory\n", new_cd);
430 client_set_cur_dir(saved_dir);
431 goto out;
433 } else {
434 NTSTATUS status;
436 targetpath = talloc_asprintf(ctx,
437 "%s%s",
438 targetpath,
439 CLI_DIRSEP_STR );
440 if (!targetpath) {
441 client_set_cur_dir(saved_dir);
442 goto out;
444 targetpath = clean_name(ctx, targetpath);
445 if (!targetpath) {
446 client_set_cur_dir(saved_dir);
447 goto out;
450 status = cli_chkpath(targetcli, targetpath);
451 if (!NT_STATUS_IS_OK(status)) {
452 d_printf("cd %s: %s\n", new_cd, nt_errstr(status));
453 client_set_cur_dir(saved_dir);
454 goto out;
458 ret = 0;
460 out:
462 TALLOC_FREE(ctx);
463 return ret;
466 /****************************************************************************
467 Change directory.
468 ****************************************************************************/
470 static int cmd_cd(void)
472 char *buf = NULL;
473 int rc = 0;
475 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
476 rc = do_cd(buf);
477 } else {
478 d_printf("Current directory is %s\n",client_get_cur_dir());
481 return rc;
484 /****************************************************************************
485 Change directory.
486 ****************************************************************************/
488 static int cmd_cd_oneup(void)
490 return do_cd("..");
493 /*******************************************************************
494 Decide if a file should be operated on.
495 ********************************************************************/
497 static bool do_this_one(struct file_info *finfo)
499 if (!finfo->name) {
500 return false;
503 if (finfo->mode & aDIR) {
504 return true;
507 if (*client_get_fileselection() &&
508 !mask_match(finfo->name,client_get_fileselection(),false)) {
509 DEBUG(3,("mask_match %s failed\n", finfo->name));
510 return false;
513 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
514 DEBUG(3,("newer_than %s failed\n", finfo->name));
515 return false;
518 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
519 DEBUG(3,("archive %s failed\n", finfo->name));
520 return false;
523 return true;
526 /****************************************************************************
527 Display info about a file.
528 ****************************************************************************/
530 static NTSTATUS display_finfo(struct cli_state *cli_state, struct file_info *finfo,
531 const char *dir)
533 time_t t;
534 TALLOC_CTX *ctx = talloc_tos();
535 NTSTATUS status = NT_STATUS_OK;
537 if (!do_this_one(finfo)) {
538 return NT_STATUS_OK;
541 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
542 if (!showacls) {
543 d_printf(" %-30s%7.7s %8.0f %s",
544 finfo->name,
545 attrib_string(finfo->mode),
546 (double)finfo->size,
547 time_to_asc(t));
548 dir_total += finfo->size;
549 } else {
550 char *afname = NULL;
551 uint16_t fnum;
553 /* skip if this is . or .. */
554 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
555 return NT_STATUS_OK;
556 /* create absolute filename for cli_ntcreate() FIXME */
557 afname = talloc_asprintf(ctx,
558 "%s%s%s",
559 dir,
560 CLI_DIRSEP_STR,
561 finfo->name);
562 if (!afname) {
563 return NT_STATUS_NO_MEMORY;
565 /* print file meta date header */
566 d_printf( "FILENAME:%s\n", finfo->name);
567 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
568 d_printf( "SIZE:%.0f\n", (double)finfo->size);
569 d_printf( "MTIME:%s", time_to_asc(t));
570 status = cli_ntcreate(cli_state, afname, 0,
571 CREATE_ACCESS_READ, 0,
572 FILE_SHARE_READ|FILE_SHARE_WRITE,
573 FILE_OPEN, 0x0, 0x0, &fnum);
574 if (!NT_STATUS_IS_OK(status)) {
575 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
576 afname, nt_errstr(status)));
577 } else {
578 struct security_descriptor *sd = NULL;
579 sd = cli_query_secdesc(cli_state, fnum, ctx);
580 if (!sd) {
581 DEBUG( 0, ("display_finfo() failed to "
582 "get security descriptor: %s",
583 cli_errstr(cli_state)));
584 status = cli_nt_error(cli_state);
585 } else {
586 display_sec_desc(sd);
588 TALLOC_FREE(sd);
590 TALLOC_FREE(afname);
592 return status;
595 /****************************************************************************
596 Accumulate size of a file.
597 ****************************************************************************/
599 static NTSTATUS do_du(struct cli_state *cli_state, struct file_info *finfo,
600 const char *dir)
602 if (do_this_one(finfo)) {
603 dir_total += finfo->size;
605 return NT_STATUS_OK;
608 static bool do_list_recurse;
609 static bool do_list_dirs;
610 static char *do_list_queue = 0;
611 static long do_list_queue_size = 0;
612 static long do_list_queue_start = 0;
613 static long do_list_queue_end = 0;
614 static NTSTATUS (*do_list_fn)(struct cli_state *cli_state, struct file_info *,
615 const char *dir);
617 /****************************************************************************
618 Functions for do_list_queue.
619 ****************************************************************************/
622 * The do_list_queue is a NUL-separated list of strings stored in a
623 * char*. Since this is a FIFO, we keep track of the beginning and
624 * ending locations of the data in the queue. When we overflow, we
625 * double the size of the char*. When the start of the data passes
626 * the midpoint, we move everything back. This is logically more
627 * complex than a linked list, but easier from a memory management
628 * angle. In any memory error condition, do_list_queue is reset.
629 * Functions check to ensure that do_list_queue is non-NULL before
630 * accessing it.
633 static void reset_do_list_queue(void)
635 SAFE_FREE(do_list_queue);
636 do_list_queue_size = 0;
637 do_list_queue_start = 0;
638 do_list_queue_end = 0;
641 static void init_do_list_queue(void)
643 reset_do_list_queue();
644 do_list_queue_size = 1024;
645 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
646 if (do_list_queue == 0) {
647 d_printf("malloc fail for size %d\n",
648 (int)do_list_queue_size);
649 reset_do_list_queue();
650 } else {
651 memset(do_list_queue, 0, do_list_queue_size);
655 static void adjust_do_list_queue(void)
658 * If the starting point of the queue is more than half way through,
659 * move everything toward the beginning.
662 if (do_list_queue == NULL) {
663 DEBUG(4,("do_list_queue is empty\n"));
664 do_list_queue_start = do_list_queue_end = 0;
665 return;
668 if (do_list_queue_start == do_list_queue_end) {
669 DEBUG(4,("do_list_queue is empty\n"));
670 do_list_queue_start = do_list_queue_end = 0;
671 *do_list_queue = '\0';
672 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
673 DEBUG(4,("sliding do_list_queue backward\n"));
674 memmove(do_list_queue,
675 do_list_queue + do_list_queue_start,
676 do_list_queue_end - do_list_queue_start);
677 do_list_queue_end -= do_list_queue_start;
678 do_list_queue_start = 0;
682 static void add_to_do_list_queue(const char *entry)
684 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
685 while (new_end > do_list_queue_size) {
686 do_list_queue_size *= 2;
687 DEBUG(4,("enlarging do_list_queue to %d\n",
688 (int)do_list_queue_size));
689 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
690 if (! do_list_queue) {
691 d_printf("failure enlarging do_list_queue to %d bytes\n",
692 (int)do_list_queue_size);
693 reset_do_list_queue();
694 } else {
695 memset(do_list_queue + do_list_queue_size / 2,
696 0, do_list_queue_size / 2);
699 if (do_list_queue) {
700 safe_strcpy_base(do_list_queue + do_list_queue_end,
701 entry, do_list_queue, do_list_queue_size);
702 do_list_queue_end = new_end;
703 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
704 entry, (int)do_list_queue_start, (int)do_list_queue_end));
708 static char *do_list_queue_head(void)
710 return do_list_queue + do_list_queue_start;
713 static void remove_do_list_queue_head(void)
715 if (do_list_queue_end > do_list_queue_start) {
716 do_list_queue_start += strlen(do_list_queue_head()) + 1;
717 adjust_do_list_queue();
718 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
719 (int)do_list_queue_start, (int)do_list_queue_end));
723 static int do_list_queue_empty(void)
725 return (! (do_list_queue && *do_list_queue));
728 /****************************************************************************
729 A helper for do_list.
730 ****************************************************************************/
732 static NTSTATUS do_list_helper(const char *mntpoint, struct file_info *f,
733 const char *mask, void *state)
735 struct cli_state *cli_state = (struct cli_state *)state;
736 TALLOC_CTX *ctx = talloc_tos();
737 char *dir = NULL;
738 char *dir_end = NULL;
739 NTSTATUS status = NT_STATUS_OK;
741 /* Work out the directory. */
742 dir = talloc_strdup(ctx, mask);
743 if (!dir) {
744 return NT_STATUS_NO_MEMORY;
746 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
747 *dir_end = '\0';
750 if (f->mode & aDIR) {
751 if (do_list_dirs && do_this_one(f)) {
752 status = do_list_fn(cli_state, f, dir);
753 if (!NT_STATUS_IS_OK(status)) {
754 return status;
757 if (do_list_recurse &&
758 f->name &&
759 !strequal(f->name,".") &&
760 !strequal(f->name,"..")) {
761 char *mask2 = NULL;
762 char *p = NULL;
764 if (!f->name[0]) {
765 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
766 TALLOC_FREE(dir);
767 return NT_STATUS_UNSUCCESSFUL;
770 mask2 = talloc_asprintf(ctx,
771 "%s%s",
772 mntpoint,
773 mask);
774 if (!mask2) {
775 TALLOC_FREE(dir);
776 return NT_STATUS_NO_MEMORY;
778 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
779 if (p) {
780 p[1] = 0;
781 } else {
782 mask2[0] = '\0';
784 mask2 = talloc_asprintf_append(mask2,
785 "%s%s*",
786 f->name,
787 CLI_DIRSEP_STR);
788 if (!mask2) {
789 TALLOC_FREE(dir);
790 return NT_STATUS_NO_MEMORY;
792 add_to_do_list_queue(mask2);
793 TALLOC_FREE(mask2);
795 TALLOC_FREE(dir);
796 return NT_STATUS_OK;
799 if (do_this_one(f)) {
800 status = do_list_fn(cli_state, f, dir);
802 TALLOC_FREE(dir);
803 return status;
806 /****************************************************************************
807 A wrapper around cli_list that adds recursion.
808 ****************************************************************************/
810 NTSTATUS do_list(const char *mask,
811 uint16 attribute,
812 NTSTATUS (*fn)(struct cli_state *cli_state, struct file_info *,
813 const char *dir),
814 bool rec,
815 bool dirs)
817 static int in_do_list = 0;
818 TALLOC_CTX *ctx = talloc_tos();
819 struct cli_state *targetcli = NULL;
820 char *targetpath = NULL;
821 NTSTATUS ret_status = NT_STATUS_OK;
822 NTSTATUS status = NT_STATUS_OK;
824 if (in_do_list && rec) {
825 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
826 exit(1);
829 in_do_list = 1;
831 do_list_recurse = rec;
832 do_list_dirs = dirs;
833 do_list_fn = fn;
835 if (rec) {
836 init_do_list_queue();
837 add_to_do_list_queue(mask);
839 while (!do_list_queue_empty()) {
841 * Need to copy head so that it doesn't become
842 * invalid inside the call to cli_list. This
843 * would happen if the list were expanded
844 * during the call.
845 * Fix from E. Jay Berkenbilt (ejb@ql.org)
847 char *head = talloc_strdup(ctx, do_list_queue_head());
849 if (!head) {
850 return NT_STATUS_NO_MEMORY;
853 /* check for dfs */
855 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
856 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
857 remove_do_list_queue_head();
858 continue;
861 status = cli_list(targetcli, targetpath, attribute,
862 do_list_helper, targetcli);
863 if (!NT_STATUS_IS_OK(status)) {
864 d_printf("%s listing %s\n",
865 nt_errstr(status), targetpath);
866 ret_status = status;
868 remove_do_list_queue_head();
869 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
870 char *next_file = do_list_queue_head();
871 char *save_ch = 0;
872 if ((strlen(next_file) >= 2) &&
873 (next_file[strlen(next_file) - 1] == '*') &&
874 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
875 save_ch = next_file +
876 strlen(next_file) - 2;
877 *save_ch = '\0';
878 if (showacls) {
879 /* cwd is only used if showacls is on */
880 client_set_cwd(next_file);
883 if (!showacls) /* don't disturbe the showacls output */
884 d_printf("\n%s\n",next_file);
885 if (save_ch) {
886 *save_ch = CLI_DIRSEP_CHAR;
889 TALLOC_FREE(head);
890 TALLOC_FREE(targetpath);
892 } else {
893 /* check for dfs */
894 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
896 status = cli_list(targetcli, targetpath, attribute,
897 do_list_helper, targetcli);
898 if (!NT_STATUS_IS_OK(status)) {
899 d_printf("%s listing %s\n",
900 nt_errstr(status), targetpath);
901 ret_status = status;
903 TALLOC_FREE(targetpath);
904 } else {
905 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
906 ret_status = cli_nt_error(cli);
910 in_do_list = 0;
911 reset_do_list_queue();
912 return ret_status;
915 /****************************************************************************
916 Get a directory listing.
917 ****************************************************************************/
919 static int cmd_dir(void)
921 TALLOC_CTX *ctx = talloc_tos();
922 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
923 char *mask = NULL;
924 char *buf = NULL;
925 int rc = 1;
926 NTSTATUS status;
928 dir_total = 0;
929 mask = talloc_strdup(ctx, client_get_cur_dir());
930 if (!mask) {
931 return 1;
934 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
935 normalize_name(buf);
936 if (*buf == CLI_DIRSEP_CHAR) {
937 mask = talloc_strdup(ctx, buf);
938 } else {
939 mask = talloc_asprintf_append(mask, "%s", buf);
941 } else {
942 mask = talloc_asprintf_append(mask, "*");
944 if (!mask) {
945 return 1;
948 if (showacls) {
949 /* cwd is only used if showacls is on */
950 client_set_cwd(client_get_cur_dir());
953 status = do_list(mask, attribute, display_finfo, recurse, true);
954 if (!NT_STATUS_IS_OK(status)) {
955 return 1;
958 rc = do_dskattr();
960 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
962 return rc;
965 /****************************************************************************
966 Get a directory listing.
967 ****************************************************************************/
969 static int cmd_du(void)
971 TALLOC_CTX *ctx = talloc_tos();
972 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
973 char *mask = NULL;
974 char *buf = NULL;
975 NTSTATUS status;
976 int rc = 1;
978 dir_total = 0;
979 mask = talloc_strdup(ctx, client_get_cur_dir());
980 if (!mask) {
981 return 1;
983 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
984 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
985 if (!mask) {
986 return 1;
990 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
991 normalize_name(buf);
992 if (*buf == CLI_DIRSEP_CHAR) {
993 mask = talloc_strdup(ctx, buf);
994 } else {
995 mask = talloc_asprintf_append(mask, "%s", buf);
997 } else {
998 mask = talloc_strdup(ctx, "*");
1001 status = do_list(mask, attribute, do_du, recurse, true);
1002 if (!NT_STATUS_IS_OK(status)) {
1003 return 1;
1006 rc = do_dskattr();
1008 d_printf("Total number of bytes: %.0f\n", dir_total);
1010 return rc;
1013 static int cmd_echo(void)
1015 TALLOC_CTX *ctx = talloc_tos();
1016 char *num;
1017 char *data;
1018 NTSTATUS status;
1020 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
1021 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
1022 d_printf("echo <num> <data>\n");
1023 return 1;
1026 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
1028 if (!NT_STATUS_IS_OK(status)) {
1029 d_printf("echo failed: %s\n", nt_errstr(status));
1030 return 1;
1033 return 0;
1036 /****************************************************************************
1037 Get a file from rname to lname
1038 ****************************************************************************/
1040 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
1042 int *pfd = (int *)priv;
1043 if (writefile(*pfd, buf, n) == -1) {
1044 return map_nt_error_from_unix(errno);
1046 return NT_STATUS_OK;
1049 static int do_get(const char *rname, const char *lname_in, bool reget)
1051 TALLOC_CTX *ctx = talloc_tos();
1052 int handle = 0;
1053 uint16_t fnum;
1054 bool newhandle = false;
1055 struct timespec tp_start;
1056 uint16 attr;
1057 SMB_OFF_T size;
1058 off_t start = 0;
1059 SMB_OFF_T nread = 0;
1060 int rc = 0;
1061 struct cli_state *targetcli = NULL;
1062 char *targetname = NULL;
1063 char *lname = NULL;
1064 NTSTATUS status;
1066 lname = talloc_strdup(ctx, lname_in);
1067 if (!lname) {
1068 return 1;
1071 if (lowercase) {
1072 strlower_m(lname);
1075 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1076 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1077 return 1;
1080 clock_gettime_mono(&tp_start);
1082 status = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum);
1083 if (!NT_STATUS_IS_OK(status)) {
1084 d_printf("%s opening remote file %s\n", nt_errstr(status),
1085 rname);
1086 return 1;
1089 if(!strcmp(lname,"-")) {
1090 handle = fileno(stdout);
1091 } else {
1092 if (reget) {
1093 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1094 if (handle >= 0) {
1095 start = sys_lseek(handle, 0, SEEK_END);
1096 if (start == -1) {
1097 d_printf("Error seeking local file\n");
1098 return 1;
1101 } else {
1102 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1104 newhandle = true;
1106 if (handle < 0) {
1107 d_printf("Error opening local file %s\n",lname);
1108 return 1;
1112 if (!NT_STATUS_IS_OK(cli_qfileinfo_basic(
1113 targetcli, fnum, &attr, &size, NULL, NULL,
1114 NULL, NULL, NULL)) &&
1115 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum,
1116 &attr, &size, NULL, NULL, NULL))) {
1117 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1118 return 1;
1121 DEBUG(1,("getting file %s of size %.0f as %s ",
1122 rname, (double)size, lname));
1124 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1125 writefile_sink, (void *)&handle, &nread);
1126 if (!NT_STATUS_IS_OK(status)) {
1127 d_fprintf(stderr, "parallel_read returned %s\n",
1128 nt_errstr(status));
1129 cli_close(targetcli, fnum);
1130 return 1;
1133 status = cli_close(targetcli, fnum);
1134 if (!NT_STATUS_IS_OK(status)) {
1135 d_printf("Error %s closing remote file\n", nt_errstr(status));
1136 rc = 1;
1139 if (newhandle) {
1140 close(handle);
1143 if (archive_level >= 2 && (attr & aARCH)) {
1144 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1148 struct timespec tp_end;
1149 int this_time;
1151 clock_gettime_mono(&tp_end);
1152 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1153 get_total_time_ms += this_time;
1154 get_total_size += nread;
1156 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1157 nread / (1.024*this_time + 1.0e-4),
1158 get_total_size / (1.024*get_total_time_ms)));
1161 TALLOC_FREE(targetname);
1162 return rc;
1165 /****************************************************************************
1166 Get a file.
1167 ****************************************************************************/
1169 static int cmd_get(void)
1171 TALLOC_CTX *ctx = talloc_tos();
1172 char *lname = NULL;
1173 char *rname = NULL;
1174 char *fname = NULL;
1176 rname = talloc_strdup(ctx, client_get_cur_dir());
1177 if (!rname) {
1178 return 1;
1181 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1182 d_printf("get <filename> [localname]\n");
1183 return 1;
1185 rname = talloc_asprintf_append(rname, "%s", fname);
1186 if (!rname) {
1187 return 1;
1189 rname = clean_name(ctx, rname);
1190 if (!rname) {
1191 return 1;
1194 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1195 if (!lname) {
1196 lname = fname;
1199 return do_get(rname, lname, false);
1202 /****************************************************************************
1203 Do an mget operation on one file.
1204 ****************************************************************************/
1206 static NTSTATUS do_mget(struct cli_state *cli_state, struct file_info *finfo,
1207 const char *dir)
1209 TALLOC_CTX *ctx = talloc_tos();
1210 NTSTATUS status = NT_STATUS_OK;
1211 char *rname = NULL;
1212 char *quest = NULL;
1213 char *saved_curdir = NULL;
1214 char *mget_mask = NULL;
1215 char *new_cd = NULL;
1217 if (!finfo->name) {
1218 return NT_STATUS_OK;
1221 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1222 return NT_STATUS_OK;
1224 if (abort_mget) {
1225 d_printf("mget aborted\n");
1226 return NT_STATUS_UNSUCCESSFUL;
1229 if (finfo->mode & aDIR) {
1230 if (asprintf(&quest,
1231 "Get directory %s? ",finfo->name) < 0) {
1232 return NT_STATUS_NO_MEMORY;
1234 } else {
1235 if (asprintf(&quest,
1236 "Get file %s? ",finfo->name) < 0) {
1237 return NT_STATUS_NO_MEMORY;
1241 if (prompt && !yesno(quest)) {
1242 SAFE_FREE(quest);
1243 return NT_STATUS_OK;
1245 SAFE_FREE(quest);
1247 if (!(finfo->mode & aDIR)) {
1248 rname = talloc_asprintf(ctx,
1249 "%s%s",
1250 client_get_cur_dir(),
1251 finfo->name);
1252 if (!rname) {
1253 return NT_STATUS_NO_MEMORY;
1255 do_get(rname, finfo->name, false);
1256 TALLOC_FREE(rname);
1257 return NT_STATUS_OK;
1260 /* handle directories */
1261 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1262 if (!saved_curdir) {
1263 return NT_STATUS_NO_MEMORY;
1266 new_cd = talloc_asprintf(ctx,
1267 "%s%s%s",
1268 client_get_cur_dir(),
1269 finfo->name,
1270 CLI_DIRSEP_STR);
1271 if (!new_cd) {
1272 return NT_STATUS_NO_MEMORY;
1274 client_set_cur_dir(new_cd);
1276 string_replace(finfo->name,'\\','/');
1277 if (lowercase) {
1278 strlower_m(finfo->name);
1281 if (!directory_exist(finfo->name) &&
1282 mkdir(finfo->name,0777) != 0) {
1283 d_printf("failed to create directory %s\n",finfo->name);
1284 client_set_cur_dir(saved_curdir);
1285 return map_nt_error_from_unix(errno);
1288 if (chdir(finfo->name) != 0) {
1289 d_printf("failed to chdir to directory %s\n",finfo->name);
1290 client_set_cur_dir(saved_curdir);
1291 return map_nt_error_from_unix(errno);
1294 mget_mask = talloc_asprintf(ctx,
1295 "%s*",
1296 client_get_cur_dir());
1298 if (!mget_mask) {
1299 return NT_STATUS_NO_MEMORY;
1302 status = do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1303 if (!NT_STATUS_IS_OK(status)) {
1304 return status;
1307 if (chdir("..") == -1) {
1308 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1309 strerror(errno) );
1310 return map_nt_error_from_unix(errno);
1312 client_set_cur_dir(saved_curdir);
1313 TALLOC_FREE(mget_mask);
1314 TALLOC_FREE(saved_curdir);
1315 TALLOC_FREE(new_cd);
1316 return NT_STATUS_OK;
1319 /****************************************************************************
1320 View the file using the pager.
1321 ****************************************************************************/
1323 static int cmd_more(void)
1325 TALLOC_CTX *ctx = talloc_tos();
1326 char *rname = NULL;
1327 char *fname = NULL;
1328 char *lname = NULL;
1329 char *pager_cmd = NULL;
1330 const char *pager;
1331 int fd;
1332 int rc = 0;
1334 rname = talloc_strdup(ctx, client_get_cur_dir());
1335 if (!rname) {
1336 return 1;
1339 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1340 if (!lname) {
1341 return 1;
1343 fd = mkstemp(lname);
1344 if (fd == -1) {
1345 d_printf("failed to create temporary file for more\n");
1346 return 1;
1348 close(fd);
1350 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1351 d_printf("more <filename>\n");
1352 unlink(lname);
1353 return 1;
1355 rname = talloc_asprintf_append(rname, "%s", fname);
1356 if (!rname) {
1357 return 1;
1359 rname = clean_name(ctx,rname);
1360 if (!rname) {
1361 return 1;
1364 rc = do_get(rname, lname, false);
1366 pager=getenv("PAGER");
1368 pager_cmd = talloc_asprintf(ctx,
1369 "%s %s",
1370 (pager? pager:PAGER),
1371 lname);
1372 if (!pager_cmd) {
1373 return 1;
1375 if (system(pager_cmd) == -1) {
1376 d_printf("system command '%s' returned -1\n",
1377 pager_cmd);
1379 unlink(lname);
1381 return rc;
1384 /****************************************************************************
1385 Do a mget command.
1386 ****************************************************************************/
1388 static int cmd_mget(void)
1390 TALLOC_CTX *ctx = talloc_tos();
1391 uint16 attribute = aSYSTEM | aHIDDEN;
1392 char *mget_mask = NULL;
1393 char *buf = NULL;
1394 NTSTATUS status = NT_STATUS_OK;
1396 if (recurse) {
1397 attribute |= aDIR;
1400 abort_mget = false;
1402 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1404 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1405 if (!mget_mask) {
1406 return 1;
1408 if (*buf == CLI_DIRSEP_CHAR) {
1409 mget_mask = talloc_strdup(ctx, buf);
1410 } else {
1411 mget_mask = talloc_asprintf_append(mget_mask,
1412 "%s", buf);
1414 if (!mget_mask) {
1415 return 1;
1417 status = do_list(mget_mask, attribute, do_mget, false, true);
1418 if (!NT_STATUS_IS_OK(status)) {
1419 return 1;
1423 if (mget_mask == NULL) {
1424 d_printf("nothing to mget\n");
1425 return 0;
1428 if (!*mget_mask) {
1429 mget_mask = talloc_asprintf(ctx,
1430 "%s*",
1431 client_get_cur_dir());
1432 if (!mget_mask) {
1433 return 1;
1435 status = do_list(mget_mask, attribute, do_mget, false, true);
1436 if (!NT_STATUS_IS_OK(status)) {
1437 return 1;
1441 return 0;
1444 /****************************************************************************
1445 Make a directory of name "name".
1446 ****************************************************************************/
1448 static bool do_mkdir(const char *name)
1450 TALLOC_CTX *ctx = talloc_tos();
1451 struct cli_state *targetcli;
1452 char *targetname = NULL;
1453 NTSTATUS status;
1455 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1456 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1457 return false;
1460 status = cli_mkdir(targetcli, targetname);
1461 if (!NT_STATUS_IS_OK(status)) {
1462 d_printf("%s making remote directory %s\n",
1463 nt_errstr(status),name);
1464 return false;
1467 return true;
1470 /****************************************************************************
1471 Show 8.3 name of a file.
1472 ****************************************************************************/
1474 static bool do_altname(const char *name)
1476 fstring altname;
1477 NTSTATUS status;
1479 status = cli_qpathinfo_alt_name(cli, name, altname);
1480 if (!NT_STATUS_IS_OK(status)) {
1481 d_printf("%s getting alt name for %s\n",
1482 nt_errstr(status),name);
1483 return false;
1485 d_printf("%s\n", altname);
1487 return true;
1490 /****************************************************************************
1491 Exit client.
1492 ****************************************************************************/
1494 static int cmd_quit(void)
1496 cli_shutdown(cli);
1497 exit(0);
1498 /* NOTREACHED */
1499 return 0;
1502 /****************************************************************************
1503 Make a directory.
1504 ****************************************************************************/
1506 static int cmd_mkdir(void)
1508 TALLOC_CTX *ctx = talloc_tos();
1509 char *mask = NULL;
1510 char *buf = NULL;
1512 mask = talloc_strdup(ctx, client_get_cur_dir());
1513 if (!mask) {
1514 return 1;
1517 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1518 if (!recurse) {
1519 d_printf("mkdir <dirname>\n");
1521 return 1;
1523 mask = talloc_asprintf_append(mask, "%s", buf);
1524 if (!mask) {
1525 return 1;
1528 if (recurse) {
1529 char *ddir = NULL;
1530 char *ddir2 = NULL;
1531 struct cli_state *targetcli;
1532 char *targetname = NULL;
1533 char *p = NULL;
1534 char *saveptr;
1536 ddir2 = talloc_strdup(ctx, "");
1537 if (!ddir2) {
1538 return 1;
1541 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1542 return 1;
1545 ddir = talloc_strdup(ctx, targetname);
1546 if (!ddir) {
1547 return 1;
1549 trim_char(ddir,'.','\0');
1550 p = strtok_r(ddir, "/\\", &saveptr);
1551 while (p) {
1552 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1553 if (!ddir2) {
1554 return 1;
1556 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1557 do_mkdir(ddir2);
1559 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1560 if (!ddir2) {
1561 return 1;
1563 p = strtok_r(NULL, "/\\", &saveptr);
1565 } else {
1566 do_mkdir(mask);
1569 return 0;
1572 /****************************************************************************
1573 Show alt name.
1574 ****************************************************************************/
1576 static int cmd_altname(void)
1578 TALLOC_CTX *ctx = talloc_tos();
1579 char *name;
1580 char *buf;
1582 name = talloc_strdup(ctx, client_get_cur_dir());
1583 if (!name) {
1584 return 1;
1587 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1588 d_printf("altname <file>\n");
1589 return 1;
1591 name = talloc_asprintf_append(name, "%s", buf);
1592 if (!name) {
1593 return 1;
1595 do_altname(name);
1596 return 0;
1599 static char *attr_str(TALLOC_CTX *mem_ctx, uint16_t mode)
1601 char *attrs = TALLOC_ZERO_ARRAY(mem_ctx, char, 17);
1602 int i = 0;
1604 if (!(mode & FILE_ATTRIBUTE_NORMAL)) {
1605 if (mode & FILE_ATTRIBUTE_READONLY) {
1606 attrs[i++] = 'R';
1608 if (mode & FILE_ATTRIBUTE_HIDDEN) {
1609 attrs[i++] = 'H';
1611 if (mode & FILE_ATTRIBUTE_SYSTEM) {
1612 attrs[i++] = 'S';
1614 if (mode & FILE_ATTRIBUTE_DIRECTORY) {
1615 attrs[i++] = 'D';
1617 if (mode & FILE_ATTRIBUTE_ARCHIVE) {
1618 attrs[i++] = 'A';
1621 return attrs;
1624 /****************************************************************************
1625 Show all info we can get
1626 ****************************************************************************/
1628 static int do_allinfo(const char *name)
1630 fstring altname;
1631 struct timespec b_time, a_time, m_time, c_time;
1632 SMB_OFF_T size;
1633 uint16_t mode;
1634 SMB_INO_T ino;
1635 NTTIME tmp;
1636 unsigned int num_streams;
1637 struct stream_struct *streams;
1638 unsigned int i;
1639 NTSTATUS status;
1641 status = cli_qpathinfo_alt_name(cli, name, altname);
1642 if (!NT_STATUS_IS_OK(status)) {
1643 d_printf("%s getting alt name for %s\n", nt_errstr(status),
1644 name);
1645 return false;
1647 d_printf("altname: %s\n", altname);
1649 status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1650 &size, &mode, &ino);
1651 if (!NT_STATUS_IS_OK(status)) {
1652 d_printf("%s getting pathinfo for %s\n", nt_errstr(status),
1653 name);
1654 return false;
1657 unix_timespec_to_nt_time(&tmp, b_time);
1658 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1660 unix_timespec_to_nt_time(&tmp, a_time);
1661 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1663 unix_timespec_to_nt_time(&tmp, m_time);
1664 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1666 unix_timespec_to_nt_time(&tmp, c_time);
1667 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1669 d_printf("attributes: %s\n", attr_str(talloc_tos(), mode));
1671 status = cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1672 &streams);
1673 if (!NT_STATUS_IS_OK(status)) {
1674 d_printf("%s getting streams for %s\n", nt_errstr(status),
1675 name);
1676 return false;
1679 for (i=0; i<num_streams; i++) {
1680 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1681 (unsigned long long)streams[i].size);
1684 return 0;
1687 /****************************************************************************
1688 Show all info we can get
1689 ****************************************************************************/
1691 static int cmd_allinfo(void)
1693 TALLOC_CTX *ctx = talloc_tos();
1694 char *name;
1695 char *buf;
1697 name = talloc_strdup(ctx, client_get_cur_dir());
1698 if (!name) {
1699 return 1;
1702 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1703 d_printf("allinfo <file>\n");
1704 return 1;
1706 name = talloc_asprintf_append(name, "%s", buf);
1707 if (!name) {
1708 return 1;
1711 do_allinfo(name);
1713 return 0;
1716 /****************************************************************************
1717 Put a single file.
1718 ****************************************************************************/
1720 static int do_put(const char *rname, const char *lname, bool reput)
1722 TALLOC_CTX *ctx = talloc_tos();
1723 uint16_t fnum;
1724 XFILE *f;
1725 SMB_OFF_T start = 0;
1726 int rc = 0;
1727 struct timespec tp_start;
1728 struct cli_state *targetcli;
1729 char *targetname = NULL;
1730 struct push_state state;
1731 NTSTATUS status;
1733 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1734 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1735 return 1;
1738 clock_gettime_mono(&tp_start);
1740 if (reput) {
1741 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1742 if (NT_STATUS_IS_OK(status)) {
1743 if (!NT_STATUS_IS_OK(cli_qfileinfo_basic(
1744 targetcli, fnum, NULL,
1745 &start, NULL, NULL,
1746 NULL, NULL, NULL)) &&
1747 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1748 d_printf("getattrib: %s\n",cli_errstr(cli));
1749 return 1;
1752 } else {
1753 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1756 if (!NT_STATUS_IS_OK(status)) {
1757 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1758 return 1;
1761 /* allow files to be piped into smbclient
1762 jdblair 24.jun.98
1764 Note that in this case this function will exit(0) rather
1765 than returning. */
1766 if (!strcmp(lname, "-")) {
1767 f = x_stdin;
1768 /* size of file is not known */
1769 } else {
1770 f = x_fopen(lname,O_RDONLY, 0);
1771 if (f && reput) {
1772 if (x_tseek(f, start, SEEK_SET) == -1) {
1773 d_printf("Error seeking local file\n");
1774 x_fclose(f);
1775 return 1;
1780 if (!f) {
1781 d_printf("Error opening local file %s\n",lname);
1782 return 1;
1785 DEBUG(1,("putting file %s as %s ",lname,
1786 rname));
1788 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1790 state.f = f;
1791 state.nread = 0;
1793 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1794 &state);
1795 if (!NT_STATUS_IS_OK(status)) {
1796 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1797 rc = 1;
1800 status = cli_close(targetcli, fnum);
1801 if (!NT_STATUS_IS_OK(status)) {
1802 d_printf("%s closing remote file %s\n", nt_errstr(status),
1803 rname);
1804 if (f != x_stdin) {
1805 x_fclose(f);
1807 return 1;
1810 if (f != x_stdin) {
1811 x_fclose(f);
1815 struct timespec tp_end;
1816 int this_time;
1818 clock_gettime_mono(&tp_end);
1819 this_time = nsec_time_diff(&tp_end,&tp_start)/1000000;
1820 put_total_time_ms += this_time;
1821 put_total_size += state.nread;
1823 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1824 state.nread / (1.024*this_time + 1.0e-4),
1825 put_total_size / (1.024*put_total_time_ms)));
1828 if (f == x_stdin) {
1829 cli_shutdown(cli);
1830 exit(0);
1833 return rc;
1836 /****************************************************************************
1837 Put a file.
1838 ****************************************************************************/
1840 static int cmd_put(void)
1842 TALLOC_CTX *ctx = talloc_tos();
1843 char *lname;
1844 char *rname;
1845 char *buf;
1847 rname = talloc_strdup(ctx, client_get_cur_dir());
1848 if (!rname) {
1849 return 1;
1852 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1853 d_printf("put <filename>\n");
1854 return 1;
1857 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1858 rname = talloc_asprintf_append(rname, "%s", buf);
1859 } else {
1860 rname = talloc_asprintf_append(rname, "%s", lname);
1862 if (!rname) {
1863 return 1;
1866 rname = clean_name(ctx, rname);
1867 if (!rname) {
1868 return 1;
1872 SMB_STRUCT_STAT st;
1873 /* allow '-' to represent stdin
1874 jdblair, 24.jun.98 */
1875 if (!file_exist_stat(lname, &st, false) &&
1876 (strcmp(lname,"-"))) {
1877 d_printf("%s does not exist\n",lname);
1878 return 1;
1882 return do_put(rname, lname, false);
1885 /*************************************
1886 File list structure.
1887 *************************************/
1889 static struct file_list {
1890 struct file_list *prev, *next;
1891 char *file_path;
1892 bool isdir;
1893 } *file_list;
1895 /****************************************************************************
1896 Free a file_list structure.
1897 ****************************************************************************/
1899 static void free_file_list (struct file_list *l_head)
1901 struct file_list *list, *next;
1903 for (list = l_head; list; list = next) {
1904 next = list->next;
1905 DLIST_REMOVE(l_head, list);
1906 SAFE_FREE(list->file_path);
1907 SAFE_FREE(list);
1911 /****************************************************************************
1912 Seek in a directory/file list until you get something that doesn't start with
1913 the specified name.
1914 ****************************************************************************/
1916 static bool seek_list(struct file_list *list, char *name)
1918 while (list) {
1919 trim_string(list->file_path,"./","\n");
1920 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1921 return true;
1923 list = list->next;
1926 return false;
1929 /****************************************************************************
1930 Set the file selection mask.
1931 ****************************************************************************/
1933 static int cmd_select(void)
1935 TALLOC_CTX *ctx = talloc_tos();
1936 char *new_fs = NULL;
1937 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1939 if (new_fs) {
1940 client_set_fileselection(new_fs);
1941 } else {
1942 client_set_fileselection("");
1944 return 0;
1947 /****************************************************************************
1948 Recursive file matching function act as find
1949 match must be always set to true when calling this function
1950 ****************************************************************************/
1952 static int file_find(struct file_list **list, const char *directory,
1953 const char *expression, bool match)
1955 SMB_STRUCT_DIR *dir;
1956 struct file_list *entry;
1957 struct stat statbuf;
1958 int ret;
1959 char *path;
1960 bool isdir;
1961 const char *dname;
1963 dir = sys_opendir(directory);
1964 if (!dir)
1965 return -1;
1967 while ((dname = readdirname(dir))) {
1968 if (!strcmp("..", dname))
1969 continue;
1970 if (!strcmp(".", dname))
1971 continue;
1973 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1974 continue;
1977 isdir = false;
1978 if (!match || !gen_fnmatch(expression, dname)) {
1979 if (recurse) {
1980 ret = stat(path, &statbuf);
1981 if (ret == 0) {
1982 if (S_ISDIR(statbuf.st_mode)) {
1983 isdir = true;
1984 ret = file_find(list, path, expression, false);
1986 } else {
1987 d_printf("file_find: cannot stat file %s\n", path);
1990 if (ret == -1) {
1991 SAFE_FREE(path);
1992 sys_closedir(dir);
1993 return -1;
1996 entry = SMB_MALLOC_P(struct file_list);
1997 if (!entry) {
1998 d_printf("Out of memory in file_find\n");
1999 sys_closedir(dir);
2000 return -1;
2002 entry->file_path = path;
2003 entry->isdir = isdir;
2004 DLIST_ADD(*list, entry);
2005 } else {
2006 SAFE_FREE(path);
2010 sys_closedir(dir);
2011 return 0;
2014 /****************************************************************************
2015 mput some files.
2016 ****************************************************************************/
2018 static int cmd_mput(void)
2020 TALLOC_CTX *ctx = talloc_tos();
2021 char *p = NULL;
2023 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
2024 int ret;
2025 struct file_list *temp_list;
2026 char *quest, *lname, *rname;
2028 file_list = NULL;
2030 ret = file_find(&file_list, ".", p, true);
2031 if (ret) {
2032 free_file_list(file_list);
2033 continue;
2036 quest = NULL;
2037 lname = NULL;
2038 rname = NULL;
2040 for (temp_list = file_list; temp_list;
2041 temp_list = temp_list->next) {
2043 SAFE_FREE(lname);
2044 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
2045 continue;
2047 trim_string(lname, "./", "/");
2049 /* check if it's a directory */
2050 if (temp_list->isdir) {
2051 /* if (!recurse) continue; */
2053 SAFE_FREE(quest);
2054 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
2055 break;
2057 if (prompt && !yesno(quest)) { /* No */
2058 /* Skip the directory */
2059 lname[strlen(lname)-1] = '/';
2060 if (!seek_list(temp_list, lname))
2061 break;
2062 } else { /* Yes */
2063 SAFE_FREE(rname);
2064 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2065 break;
2067 normalize_name(rname);
2068 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
2069 !do_mkdir(rname)) {
2070 DEBUG (0, ("Unable to make dir, skipping..."));
2071 /* Skip the directory */
2072 lname[strlen(lname)-1] = '/';
2073 if (!seek_list(temp_list, lname)) {
2074 break;
2078 continue;
2079 } else {
2080 SAFE_FREE(quest);
2081 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
2082 break;
2084 if (prompt && !yesno(quest)) {
2085 /* No */
2086 continue;
2089 /* Yes */
2090 SAFE_FREE(rname);
2091 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
2092 break;
2096 normalize_name(rname);
2098 do_put(rname, lname, false);
2100 free_file_list(file_list);
2101 SAFE_FREE(quest);
2102 SAFE_FREE(lname);
2103 SAFE_FREE(rname);
2106 return 0;
2109 /****************************************************************************
2110 Cancel a print job.
2111 ****************************************************************************/
2113 static int do_cancel(int job)
2115 if (cli_printjob_del(cli, job)) {
2116 d_printf("Job %d cancelled\n",job);
2117 return 0;
2118 } else {
2119 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2120 return 1;
2124 /****************************************************************************
2125 Cancel a print job.
2126 ****************************************************************************/
2128 static int cmd_cancel(void)
2130 TALLOC_CTX *ctx = talloc_tos();
2131 char *buf = NULL;
2132 int job;
2134 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2135 d_printf("cancel <jobid> ...\n");
2136 return 1;
2138 do {
2139 job = atoi(buf);
2140 do_cancel(job);
2141 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2143 return 0;
2146 /****************************************************************************
2147 Print a file.
2148 ****************************************************************************/
2150 static int cmd_print(void)
2152 TALLOC_CTX *ctx = talloc_tos();
2153 char *lname = NULL;
2154 char *rname = NULL;
2155 char *p = NULL;
2157 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2158 d_printf("print <filename>\n");
2159 return 1;
2162 rname = talloc_strdup(ctx, lname);
2163 if (!rname) {
2164 return 1;
2166 p = strrchr_m(rname,'/');
2167 if (p) {
2168 rname = talloc_asprintf(ctx,
2169 "%s-%d",
2170 p+1,
2171 (int)sys_getpid());
2173 if (strequal(lname,"-")) {
2174 rname = talloc_asprintf(ctx,
2175 "stdin-%d",
2176 (int)sys_getpid());
2178 if (!rname) {
2179 return 1;
2182 return do_put(rname, lname, false);
2185 /****************************************************************************
2186 Show a print queue entry.
2187 ****************************************************************************/
2189 static void queue_fn(struct print_job_info *p)
2191 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2194 /****************************************************************************
2195 Show a print queue.
2196 ****************************************************************************/
2198 static int cmd_queue(void)
2200 cli_print_queue(cli, queue_fn);
2201 return 0;
2204 /****************************************************************************
2205 Delete some files.
2206 ****************************************************************************/
2208 static NTSTATUS do_del(struct cli_state *cli_state, struct file_info *finfo,
2209 const char *dir)
2211 TALLOC_CTX *ctx = talloc_tos();
2212 char *mask = NULL;
2213 NTSTATUS status;
2215 mask = talloc_asprintf(ctx,
2216 "%s%c%s",
2217 dir,
2218 CLI_DIRSEP_CHAR,
2219 finfo->name);
2220 if (!mask) {
2221 return NT_STATUS_NO_MEMORY;
2224 if (finfo->mode & aDIR) {
2225 TALLOC_FREE(mask);
2226 return NT_STATUS_OK;
2229 status = cli_unlink(cli_state, mask, aSYSTEM | aHIDDEN);
2230 if (!NT_STATUS_IS_OK(status)) {
2231 d_printf("%s deleting remote file %s\n",
2232 nt_errstr(status), mask);
2234 TALLOC_FREE(mask);
2235 return status;
2238 /****************************************************************************
2239 Delete some files.
2240 ****************************************************************************/
2242 static int cmd_del(void)
2244 TALLOC_CTX *ctx = talloc_tos();
2245 char *mask = NULL;
2246 char *buf = NULL;
2247 NTSTATUS status = NT_STATUS_OK;
2248 uint16 attribute = aSYSTEM | aHIDDEN;
2250 if (recurse) {
2251 attribute |= aDIR;
2254 mask = talloc_strdup(ctx, client_get_cur_dir());
2255 if (!mask) {
2256 return 1;
2258 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2259 d_printf("del <filename>\n");
2260 return 1;
2262 mask = talloc_asprintf_append(mask, "%s", buf);
2263 if (!mask) {
2264 return 1;
2267 status = do_list(mask,attribute,do_del,false,false);
2268 if (!NT_STATUS_IS_OK(status)) {
2269 return 1;
2271 return 0;
2274 /****************************************************************************
2275 Wildcard delete some files.
2276 ****************************************************************************/
2278 static int cmd_wdel(void)
2280 TALLOC_CTX *ctx = talloc_tos();
2281 char *mask = NULL;
2282 char *buf = NULL;
2283 uint16 attribute;
2284 struct cli_state *targetcli;
2285 char *targetname = NULL;
2286 NTSTATUS status;
2288 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2289 d_printf("wdel 0x<attrib> <wcard>\n");
2290 return 1;
2293 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2295 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2296 d_printf("wdel 0x<attrib> <wcard>\n");
2297 return 1;
2300 mask = talloc_asprintf(ctx, "%s%s",
2301 client_get_cur_dir(),
2302 buf);
2303 if (!mask) {
2304 return 1;
2307 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2308 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2309 return 1;
2312 status = cli_unlink(targetcli, targetname, attribute);
2313 if (!NT_STATUS_IS_OK(status)) {
2314 d_printf("%s deleting remote files %s\n", nt_errstr(status),
2315 targetname);
2317 return 0;
2320 /****************************************************************************
2321 ****************************************************************************/
2323 static int cmd_open(void)
2325 TALLOC_CTX *ctx = talloc_tos();
2326 char *mask = NULL;
2327 char *buf = NULL;
2328 char *targetname = NULL;
2329 struct cli_state *targetcli;
2330 uint16_t fnum = (uint16_t)-1;
2332 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2333 d_printf("open <filename>\n");
2334 return 1;
2336 mask = talloc_asprintf(ctx,
2337 "%s%s",
2338 client_get_cur_dir(),
2339 buf);
2340 if (!mask) {
2341 return 1;
2344 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2345 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2346 return 1;
2349 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2350 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2351 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2352 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2353 FILE_READ_DATA, 0,
2354 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2355 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2356 } else {
2357 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2359 } else {
2360 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2362 return 0;
2365 static int cmd_posix_encrypt(void)
2367 TALLOC_CTX *ctx = talloc_tos();
2368 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2370 if (cli->use_kerberos) {
2371 status = cli_gss_smb_encryption_start(cli);
2372 } else {
2373 char *domain = NULL;
2374 char *user = NULL;
2375 char *password = NULL;
2377 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2378 d_printf("posix_encrypt domain user password\n");
2379 return 1;
2382 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2383 d_printf("posix_encrypt domain user password\n");
2384 return 1;
2387 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2388 d_printf("posix_encrypt domain user password\n");
2389 return 1;
2392 status = cli_raw_ntlm_smb_encryption_start(cli,
2393 user,
2394 password,
2395 domain);
2398 if (!NT_STATUS_IS_OK(status)) {
2399 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2400 } else {
2401 d_printf("encryption on\n");
2402 smb_encrypt = true;
2405 return 0;
2408 /****************************************************************************
2409 ****************************************************************************/
2411 static int cmd_posix_open(void)
2413 TALLOC_CTX *ctx = talloc_tos();
2414 char *mask = NULL;
2415 char *buf = NULL;
2416 char *targetname = NULL;
2417 struct cli_state *targetcli;
2418 mode_t mode;
2419 uint16_t fnum;
2421 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2422 d_printf("posix_open <filename> 0<mode>\n");
2423 return 1;
2425 mask = talloc_asprintf(ctx,
2426 "%s%s",
2427 client_get_cur_dir(),
2428 buf);
2429 if (!mask) {
2430 return 1;
2433 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2434 d_printf("posix_open <filename> 0<mode>\n");
2435 return 1;
2437 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2439 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2440 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2441 return 1;
2444 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2445 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2446 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2447 } else {
2448 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2450 } else {
2451 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2454 return 0;
2457 static int cmd_posix_mkdir(void)
2459 TALLOC_CTX *ctx = talloc_tos();
2460 char *mask = NULL;
2461 char *buf = NULL;
2462 char *targetname = NULL;
2463 struct cli_state *targetcli;
2464 mode_t mode;
2466 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2467 d_printf("posix_mkdir <filename> 0<mode>\n");
2468 return 1;
2470 mask = talloc_asprintf(ctx,
2471 "%s%s",
2472 client_get_cur_dir(),
2473 buf);
2474 if (!mask) {
2475 return 1;
2478 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2479 d_printf("posix_mkdir <filename> 0<mode>\n");
2480 return 1;
2482 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2484 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2485 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2486 return 1;
2489 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2490 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2491 } else {
2492 d_printf("posix_mkdir created directory %s\n", targetname);
2494 return 0;
2497 static int cmd_posix_unlink(void)
2499 TALLOC_CTX *ctx = talloc_tos();
2500 char *mask = NULL;
2501 char *buf = NULL;
2502 char *targetname = NULL;
2503 struct cli_state *targetcli;
2505 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2506 d_printf("posix_unlink <filename>\n");
2507 return 1;
2509 mask = talloc_asprintf(ctx,
2510 "%s%s",
2511 client_get_cur_dir(),
2512 buf);
2513 if (!mask) {
2514 return 1;
2517 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2518 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2519 return 1;
2522 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2523 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2524 } else {
2525 d_printf("posix_unlink deleted file %s\n", targetname);
2528 return 0;
2531 static int cmd_posix_rmdir(void)
2533 TALLOC_CTX *ctx = talloc_tos();
2534 char *mask = NULL;
2535 char *buf = NULL;
2536 char *targetname = NULL;
2537 struct cli_state *targetcli;
2539 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2540 d_printf("posix_rmdir <filename>\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 (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2552 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2553 return 1;
2556 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2557 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2558 } else {
2559 d_printf("posix_rmdir deleted directory %s\n", targetname);
2562 return 0;
2565 static int cmd_close(void)
2567 TALLOC_CTX *ctx = talloc_tos();
2568 char *buf = NULL;
2569 int fnum;
2571 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2572 d_printf("close <fnum>\n");
2573 return 1;
2576 fnum = atoi(buf);
2577 /* We really should use the targetcli here.... */
2578 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2579 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2580 return 1;
2582 return 0;
2585 static int cmd_posix(void)
2587 TALLOC_CTX *ctx = talloc_tos();
2588 uint16 major, minor;
2589 uint32 caplow, caphigh;
2590 char *caps;
2591 NTSTATUS status;
2593 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2594 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2595 return 1;
2598 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2599 &caphigh);
2600 if (!NT_STATUS_IS_OK(status)) {
2601 d_printf("Can't get UNIX CIFS extensions version from "
2602 "server: %s\n", nt_errstr(status));
2603 return 1;
2606 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2608 caps = talloc_strdup(ctx, "");
2609 if (!caps) {
2610 return 1;
2612 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2613 caps = talloc_asprintf_append(caps, "locks ");
2614 if (!caps) {
2615 return 1;
2618 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2619 caps = talloc_asprintf_append(caps, "acls ");
2620 if (!caps) {
2621 return 1;
2624 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2625 caps = talloc_asprintf_append(caps, "eas ");
2626 if (!caps) {
2627 return 1;
2630 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2631 caps = talloc_asprintf_append(caps, "pathnames ");
2632 if (!caps) {
2633 return 1;
2636 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2637 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2638 if (!caps) {
2639 return 1;
2642 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2643 caps = talloc_asprintf_append(caps, "large_read ");
2644 if (!caps) {
2645 return 1;
2648 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2649 caps = talloc_asprintf_append(caps, "large_write ");
2650 if (!caps) {
2651 return 1;
2654 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2655 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2656 if (!caps) {
2657 return 1;
2660 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2661 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2662 if (!caps) {
2663 return 1;
2667 if (*caps && caps[strlen(caps)-1] == ' ') {
2668 caps[strlen(caps)-1] = '\0';
2671 d_printf("Server supports CIFS capabilities %s\n", caps);
2673 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2674 caplow, caphigh);
2675 if (!NT_STATUS_IS_OK(status)) {
2676 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2677 nt_errstr(status));
2678 return 1;
2681 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2682 CLI_DIRSEP_CHAR = '/';
2683 *CLI_DIRSEP_STR = '/';
2684 client_set_cur_dir(CLI_DIRSEP_STR);
2687 return 0;
2690 static int cmd_lock(void)
2692 TALLOC_CTX *ctx = talloc_tos();
2693 char *buf = NULL;
2694 uint64_t start, len;
2695 enum brl_type lock_type;
2696 int fnum;
2698 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2699 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2700 return 1;
2702 fnum = atoi(buf);
2704 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2705 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2706 return 1;
2709 if (*buf == 'r' || *buf == 'R') {
2710 lock_type = READ_LOCK;
2711 } else if (*buf == 'w' || *buf == 'W') {
2712 lock_type = WRITE_LOCK;
2713 } else {
2714 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2715 return 1;
2718 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2719 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2720 return 1;
2723 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2725 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2726 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2727 return 1;
2730 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2732 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2733 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2736 return 0;
2739 static int cmd_unlock(void)
2741 TALLOC_CTX *ctx = talloc_tos();
2742 char *buf = NULL;
2743 uint64_t start, len;
2744 int fnum;
2746 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2747 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2748 return 1;
2750 fnum = atoi(buf);
2752 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2753 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2754 return 1;
2757 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2759 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2760 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2761 return 1;
2764 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2766 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2767 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2770 return 0;
2774 /****************************************************************************
2775 Remove a directory.
2776 ****************************************************************************/
2778 static int cmd_rmdir(void)
2780 TALLOC_CTX *ctx = talloc_tos();
2781 char *mask = NULL;
2782 char *buf = NULL;
2783 char *targetname = NULL;
2784 struct cli_state *targetcli;
2786 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2787 d_printf("rmdir <dirname>\n");
2788 return 1;
2790 mask = talloc_asprintf(ctx,
2791 "%s%s",
2792 client_get_cur_dir(),
2793 buf);
2794 if (!mask) {
2795 return 1;
2798 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2799 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2800 return 1;
2803 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2804 d_printf("%s removing remote directory file %s\n",
2805 cli_errstr(targetcli),mask);
2808 return 0;
2811 /****************************************************************************
2812 UNIX hardlink.
2813 ****************************************************************************/
2815 static int cmd_link(void)
2817 TALLOC_CTX *ctx = talloc_tos();
2818 char *oldname = NULL;
2819 char *newname = NULL;
2820 char *buf = NULL;
2821 char *buf2 = NULL;
2822 char *targetname = NULL;
2823 struct cli_state *targetcli;
2825 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2826 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2827 d_printf("link <oldname> <newname>\n");
2828 return 1;
2830 oldname = talloc_asprintf(ctx,
2831 "%s%s",
2832 client_get_cur_dir(),
2833 buf);
2834 if (!oldname) {
2835 return 1;
2837 newname = talloc_asprintf(ctx,
2838 "%s%s",
2839 client_get_cur_dir(),
2840 buf2);
2841 if (!newname) {
2842 return 1;
2845 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2846 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2847 return 1;
2850 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2851 d_printf("Server doesn't support UNIX CIFS calls.\n");
2852 return 1;
2855 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2856 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2857 return 1;
2859 return 0;
2862 /****************************************************************************
2863 UNIX readlink.
2864 ****************************************************************************/
2866 static int cmd_readlink(void)
2868 TALLOC_CTX *ctx = talloc_tos();
2869 char *name= NULL;
2870 char *buf = NULL;
2871 char *targetname = NULL;
2872 char linkname[PATH_MAX+1];
2873 struct cli_state *targetcli;
2875 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2876 d_printf("readlink <name>\n");
2877 return 1;
2879 name = talloc_asprintf(ctx,
2880 "%s%s",
2881 client_get_cur_dir(),
2882 buf);
2883 if (!name) {
2884 return 1;
2887 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2888 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2889 return 1;
2892 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2893 d_printf("Server doesn't support UNIX CIFS calls.\n");
2894 return 1;
2897 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2898 linkname, PATH_MAX+1))) {
2899 d_printf("%s readlink on file %s\n",
2900 cli_errstr(targetcli), name);
2901 return 1;
2904 d_printf("%s -> %s\n", name, linkname);
2906 return 0;
2910 /****************************************************************************
2911 UNIX symlink.
2912 ****************************************************************************/
2914 static int cmd_symlink(void)
2916 TALLOC_CTX *ctx = talloc_tos();
2917 char *oldname = NULL;
2918 char *newname = NULL;
2919 char *buf = NULL;
2920 char *buf2 = NULL;
2921 struct cli_state *newcli;
2923 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2924 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2925 d_printf("symlink <oldname> <newname>\n");
2926 return 1;
2928 /* Oldname (link target) must be an untouched blob. */
2929 oldname = buf;
2931 newname = talloc_asprintf(ctx,
2932 "%s%s",
2933 client_get_cur_dir(),
2934 buf2);
2935 if (!newname) {
2936 return 1;
2939 /* New name must be present in share namespace. */
2940 if (!cli_resolve_path(ctx, "", auth_info, cli, newname, &newcli, &newname)) {
2941 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2942 return 1;
2945 if (!SERVER_HAS_UNIX_CIFS(newcli)) {
2946 d_printf("Server doesn't support UNIX CIFS calls.\n");
2947 return 1;
2950 if (!NT_STATUS_IS_OK(cli_posix_symlink(newcli, oldname, newname))) {
2951 d_printf("%s symlinking files (%s -> %s)\n",
2952 cli_errstr(newcli), newname, newname);
2953 return 1;
2956 return 0;
2959 /****************************************************************************
2960 UNIX chmod.
2961 ****************************************************************************/
2963 static int cmd_chmod(void)
2965 TALLOC_CTX *ctx = talloc_tos();
2966 char *src = NULL;
2967 char *buf = NULL;
2968 char *buf2 = NULL;
2969 char *targetname = NULL;
2970 struct cli_state *targetcli;
2971 mode_t mode;
2973 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2974 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2975 d_printf("chmod mode file\n");
2976 return 1;
2978 src = talloc_asprintf(ctx,
2979 "%s%s",
2980 client_get_cur_dir(),
2981 buf2);
2982 if (!src) {
2983 return 1;
2986 mode = (mode_t)strtol(buf, NULL, 8);
2988 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2989 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2990 return 1;
2993 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2994 d_printf("Server doesn't support UNIX CIFS calls.\n");
2995 return 1;
2998 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
2999 d_printf("%s chmod file %s 0%o\n",
3000 cli_errstr(targetcli), src, (unsigned int)mode);
3001 return 1;
3004 return 0;
3007 static const char *filetype_to_str(mode_t mode)
3009 if (S_ISREG(mode)) {
3010 return "regular file";
3011 } else if (S_ISDIR(mode)) {
3012 return "directory";
3013 } else
3014 #ifdef S_ISCHR
3015 if (S_ISCHR(mode)) {
3016 return "character device";
3017 } else
3018 #endif
3019 #ifdef S_ISBLK
3020 if (S_ISBLK(mode)) {
3021 return "block device";
3022 } else
3023 #endif
3024 #ifdef S_ISFIFO
3025 if (S_ISFIFO(mode)) {
3026 return "fifo";
3027 } else
3028 #endif
3029 #ifdef S_ISLNK
3030 if (S_ISLNK(mode)) {
3031 return "symbolic link";
3032 } else
3033 #endif
3034 #ifdef S_ISSOCK
3035 if (S_ISSOCK(mode)) {
3036 return "socket";
3037 } else
3038 #endif
3039 return "";
3042 static char rwx_to_str(mode_t m, mode_t bt, char ret)
3044 if (m & bt) {
3045 return ret;
3046 } else {
3047 return '-';
3051 static char *unix_mode_to_str(char *s, mode_t m)
3053 char *p = s;
3054 const char *str = filetype_to_str(m);
3056 switch(str[0]) {
3057 case 'd':
3058 *p++ = 'd';
3059 break;
3060 case 'c':
3061 *p++ = 'c';
3062 break;
3063 case 'b':
3064 *p++ = 'b';
3065 break;
3066 case 'f':
3067 *p++ = 'p';
3068 break;
3069 case 's':
3070 *p++ = str[1] == 'y' ? 'l' : 's';
3071 break;
3072 case 'r':
3073 default:
3074 *p++ = '-';
3075 break;
3077 *p++ = rwx_to_str(m, S_IRUSR, 'r');
3078 *p++ = rwx_to_str(m, S_IWUSR, 'w');
3079 *p++ = rwx_to_str(m, S_IXUSR, 'x');
3080 *p++ = rwx_to_str(m, S_IRGRP, 'r');
3081 *p++ = rwx_to_str(m, S_IWGRP, 'w');
3082 *p++ = rwx_to_str(m, S_IXGRP, 'x');
3083 *p++ = rwx_to_str(m, S_IROTH, 'r');
3084 *p++ = rwx_to_str(m, S_IWOTH, 'w');
3085 *p++ = rwx_to_str(m, S_IXOTH, 'x');
3086 *p++ = '\0';
3087 return s;
3090 /****************************************************************************
3091 Utility function for UNIX getfacl.
3092 ****************************************************************************/
3094 static char *perms_to_string(fstring permstr, unsigned char perms)
3096 fstrcpy(permstr, "---");
3097 if (perms & SMB_POSIX_ACL_READ) {
3098 permstr[0] = 'r';
3100 if (perms & SMB_POSIX_ACL_WRITE) {
3101 permstr[1] = 'w';
3103 if (perms & SMB_POSIX_ACL_EXECUTE) {
3104 permstr[2] = 'x';
3106 return permstr;
3109 /****************************************************************************
3110 UNIX getfacl.
3111 ****************************************************************************/
3113 static int cmd_getfacl(void)
3115 TALLOC_CTX *ctx = talloc_tos();
3116 char *src = NULL;
3117 char *name = NULL;
3118 char *targetname = NULL;
3119 struct cli_state *targetcli;
3120 uint16 major, minor;
3121 uint32 caplow, caphigh;
3122 char *retbuf = NULL;
3123 size_t rb_size = 0;
3124 SMB_STRUCT_STAT sbuf;
3125 uint16 num_file_acls = 0;
3126 uint16 num_dir_acls = 0;
3127 uint16 i;
3128 NTSTATUS status;
3130 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3131 d_printf("getfacl filename\n");
3132 return 1;
3134 src = talloc_asprintf(ctx,
3135 "%s%s",
3136 client_get_cur_dir(),
3137 name);
3138 if (!src) {
3139 return 1;
3142 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3143 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3144 return 1;
3147 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3148 d_printf("Server doesn't support UNIX CIFS calls.\n");
3149 return 1;
3152 status = cli_unix_extensions_version(targetcli, &major, &minor,
3153 &caplow, &caphigh);
3154 if (!NT_STATUS_IS_OK(status)) {
3155 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3156 nt_errstr(status));
3157 return 1;
3160 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3161 d_printf("This server supports UNIX extensions "
3162 "but doesn't support POSIX ACLs.\n");
3163 return 1;
3166 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3167 d_printf("%s getfacl doing a stat on file %s\n",
3168 cli_errstr(targetcli), src);
3169 return 1;
3172 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3173 d_printf("%s getfacl file %s\n",
3174 cli_errstr(targetcli), src);
3175 return 1;
3178 /* ToDo : Print out the ACL values. */
3179 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3180 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3181 src, (unsigned int)CVAL(retbuf,0) );
3182 return 1;
3185 num_file_acls = SVAL(retbuf,2);
3186 num_dir_acls = SVAL(retbuf,4);
3187 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3188 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3189 src,
3190 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3191 (unsigned int)rb_size);
3192 return 1;
3195 d_printf("# file: %s\n", src);
3196 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3198 if (num_file_acls == 0 && num_dir_acls == 0) {
3199 d_printf("No acls found.\n");
3202 for (i = 0; i < num_file_acls; i++) {
3203 uint32 uorg;
3204 fstring permstring;
3205 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3206 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3208 switch(tagtype) {
3209 case SMB_POSIX_ACL_USER_OBJ:
3210 d_printf("user::");
3211 break;
3212 case SMB_POSIX_ACL_USER:
3213 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3214 d_printf("user:%u:", uorg);
3215 break;
3216 case SMB_POSIX_ACL_GROUP_OBJ:
3217 d_printf("group::");
3218 break;
3219 case SMB_POSIX_ACL_GROUP:
3220 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3221 d_printf("group:%u:", uorg);
3222 break;
3223 case SMB_POSIX_ACL_MASK:
3224 d_printf("mask::");
3225 break;
3226 case SMB_POSIX_ACL_OTHER:
3227 d_printf("other::");
3228 break;
3229 default:
3230 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3231 src, (unsigned int)tagtype );
3232 SAFE_FREE(retbuf);
3233 return 1;
3236 d_printf("%s\n", perms_to_string(permstring, perms));
3239 for (i = 0; i < num_dir_acls; i++) {
3240 uint32 uorg;
3241 fstring permstring;
3242 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3243 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3245 switch(tagtype) {
3246 case SMB_POSIX_ACL_USER_OBJ:
3247 d_printf("default:user::");
3248 break;
3249 case SMB_POSIX_ACL_USER:
3250 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3251 d_printf("default:user:%u:", uorg);
3252 break;
3253 case SMB_POSIX_ACL_GROUP_OBJ:
3254 d_printf("default:group::");
3255 break;
3256 case SMB_POSIX_ACL_GROUP:
3257 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3258 d_printf("default:group:%u:", uorg);
3259 break;
3260 case SMB_POSIX_ACL_MASK:
3261 d_printf("default:mask::");
3262 break;
3263 case SMB_POSIX_ACL_OTHER:
3264 d_printf("default:other::");
3265 break;
3266 default:
3267 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3268 src, (unsigned int)tagtype );
3269 SAFE_FREE(retbuf);
3270 return 1;
3273 d_printf("%s\n", perms_to_string(permstring, perms));
3276 return 0;
3279 static void printf_cb(const char *buf, void *private_data)
3281 printf("%s", buf);
3284 /****************************************************************************
3285 Get the EA list of a file
3286 ****************************************************************************/
3288 static int cmd_geteas(void)
3290 TALLOC_CTX *ctx = talloc_tos();
3291 char *src = NULL;
3292 char *name = NULL;
3293 char *targetname = NULL;
3294 struct cli_state *targetcli;
3295 NTSTATUS status;
3296 size_t i, num_eas;
3297 struct ea_struct *eas;
3299 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3300 d_printf("geteas filename\n");
3301 return 1;
3303 src = talloc_asprintf(ctx,
3304 "%s%s",
3305 client_get_cur_dir(),
3306 name);
3307 if (!src) {
3308 return 1;
3311 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3312 &targetname)) {
3313 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3314 return 1;
3317 status = cli_get_ea_list_path(targetcli, targetname, talloc_tos(),
3318 &num_eas, &eas);
3319 if (!NT_STATUS_IS_OK(status)) {
3320 d_printf("cli_get_ea_list_path: %s\n", nt_errstr(status));
3321 return 1;
3324 for (i=0; i<num_eas; i++) {
3325 d_printf("%s (%d) =\n", eas[i].name, (int)eas[i].flags);
3326 dump_data_cb(eas[i].value.data, eas[i].value.length, false,
3327 printf_cb, NULL);
3328 d_printf("\n");
3331 TALLOC_FREE(eas);
3333 return 0;
3336 /****************************************************************************
3337 Set an EA of a file
3338 ****************************************************************************/
3340 static int cmd_setea(void)
3342 TALLOC_CTX *ctx = talloc_tos();
3343 char *src = NULL;
3344 char *name = NULL;
3345 char *eaname = NULL;
3346 char *eavalue = NULL;
3347 char *targetname = NULL;
3348 struct cli_state *targetcli;
3349 NTSTATUS status;
3351 if (!next_token_talloc(ctx, &cmd_ptr, &name, NULL)
3352 || !next_token_talloc(ctx, &cmd_ptr, &eaname, NULL)) {
3353 d_printf("setea filename eaname value\n");
3354 return 1;
3356 if (!next_token_talloc(ctx, &cmd_ptr, &eavalue, NULL)) {
3357 eavalue = talloc_strdup(ctx, "");
3359 src = talloc_asprintf(ctx,
3360 "%s%s",
3361 client_get_cur_dir(),
3362 name);
3363 if (!src) {
3364 return 1;
3367 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli,
3368 &targetname)) {
3369 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3370 return 1;
3373 status = cli_set_ea_path(targetcli, targetname, eaname, eavalue,
3374 strlen(eavalue));
3375 if (!NT_STATUS_IS_OK(status)) {
3376 d_printf("set_ea %s: %s\n", src, nt_errstr(status));
3377 return 1;
3380 return 0;
3383 /****************************************************************************
3384 UNIX stat.
3385 ****************************************************************************/
3387 static int cmd_stat(void)
3389 TALLOC_CTX *ctx = talloc_tos();
3390 char *src = NULL;
3391 char *name = NULL;
3392 char *targetname = NULL;
3393 struct cli_state *targetcli;
3394 fstring mode_str;
3395 SMB_STRUCT_STAT sbuf;
3396 struct tm *lt;
3397 time_t tmp_time;
3399 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3400 d_printf("stat file\n");
3401 return 1;
3403 src = talloc_asprintf(ctx,
3404 "%s%s",
3405 client_get_cur_dir(),
3406 name);
3407 if (!src) {
3408 return 1;
3411 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3412 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3413 return 1;
3416 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3417 d_printf("Server doesn't support UNIX CIFS calls.\n");
3418 return 1;
3421 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3422 d_printf("%s stat file %s\n",
3423 cli_errstr(targetcli), src);
3424 return 1;
3427 /* Print out the stat values. */
3428 d_printf("File: %s\n", src);
3429 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3430 (double)sbuf.st_ex_size,
3431 (unsigned int)sbuf.st_ex_blocks,
3432 filetype_to_str(sbuf.st_ex_mode));
3434 #if defined(S_ISCHR) && defined(S_ISBLK)
3435 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3436 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3437 (double)sbuf.st_ex_ino,
3438 (unsigned int)sbuf.st_ex_nlink,
3439 unix_dev_major(sbuf.st_ex_rdev),
3440 unix_dev_minor(sbuf.st_ex_rdev));
3441 } else
3442 #endif
3443 d_printf("Inode: %.0f\tLinks: %u\n",
3444 (double)sbuf.st_ex_ino,
3445 (unsigned int)sbuf.st_ex_nlink);
3447 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3448 ((int)sbuf.st_ex_mode & 0777),
3449 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3450 (unsigned int)sbuf.st_ex_uid,
3451 (unsigned int)sbuf.st_ex_gid);
3453 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3454 lt = localtime(&tmp_time);
3455 if (lt) {
3456 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3457 } else {
3458 fstrcpy(mode_str, "unknown");
3460 d_printf("Access: %s\n", mode_str);
3462 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3463 lt = localtime(&tmp_time);
3464 if (lt) {
3465 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3466 } else {
3467 fstrcpy(mode_str, "unknown");
3469 d_printf("Modify: %s\n", mode_str);
3471 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3472 lt = localtime(&tmp_time);
3473 if (lt) {
3474 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3475 } else {
3476 fstrcpy(mode_str, "unknown");
3478 d_printf("Change: %s\n", mode_str);
3480 return 0;
3484 /****************************************************************************
3485 UNIX chown.
3486 ****************************************************************************/
3488 static int cmd_chown(void)
3490 TALLOC_CTX *ctx = talloc_tos();
3491 char *src = NULL;
3492 uid_t uid;
3493 gid_t gid;
3494 char *buf, *buf2, *buf3;
3495 struct cli_state *targetcli;
3496 char *targetname = NULL;
3498 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3499 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3500 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3501 d_printf("chown uid gid file\n");
3502 return 1;
3505 uid = (uid_t)atoi(buf);
3506 gid = (gid_t)atoi(buf2);
3508 src = talloc_asprintf(ctx,
3509 "%s%s",
3510 client_get_cur_dir(),
3511 buf3);
3512 if (!src) {
3513 return 1;
3515 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3516 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3517 return 1;
3520 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3521 d_printf("Server doesn't support UNIX CIFS calls.\n");
3522 return 1;
3525 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3526 d_printf("%s chown file %s uid=%d, gid=%d\n",
3527 cli_errstr(targetcli), src, (int)uid, (int)gid);
3528 return 1;
3531 return 0;
3534 /****************************************************************************
3535 Rename some file.
3536 ****************************************************************************/
3538 static int cmd_rename(void)
3540 TALLOC_CTX *ctx = talloc_tos();
3541 char *src, *dest;
3542 char *buf, *buf2;
3543 struct cli_state *targetcli;
3544 char *targetsrc;
3545 char *targetdest;
3547 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3548 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3549 d_printf("rename <src> <dest>\n");
3550 return 1;
3553 src = talloc_asprintf(ctx,
3554 "%s%s",
3555 client_get_cur_dir(),
3556 buf);
3557 if (!src) {
3558 return 1;
3561 dest = talloc_asprintf(ctx,
3562 "%s%s",
3563 client_get_cur_dir(),
3564 buf2);
3565 if (!dest) {
3566 return 1;
3569 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3570 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3571 return 1;
3574 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3575 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3576 return 1;
3579 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3580 d_printf("%s renaming files %s -> %s \n",
3581 cli_errstr(targetcli),
3582 targetsrc,
3583 targetdest);
3584 return 1;
3587 return 0;
3590 /****************************************************************************
3591 Print the volume name.
3592 ****************************************************************************/
3594 static int cmd_volume(void)
3596 fstring volname;
3597 uint32 serial_num;
3598 time_t create_date;
3599 NTSTATUS status;
3601 status = cli_get_fs_volume_info(cli, volname, &serial_num,
3602 &create_date);
3603 if (!NT_STATUS_IS_OK(status)) {
3604 d_printf("Error %s getting volume info\n", nt_errstr(status));
3605 return 1;
3608 d_printf("Volume: |%s| serial number 0x%x\n",
3609 volname, (unsigned int)serial_num);
3610 return 0;
3613 /****************************************************************************
3614 Hard link files using the NT call.
3615 ****************************************************************************/
3617 static int cmd_hardlink(void)
3619 TALLOC_CTX *ctx = talloc_tos();
3620 char *src, *dest;
3621 char *buf, *buf2;
3622 struct cli_state *targetcli;
3623 char *targetname;
3625 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3626 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3627 d_printf("hardlink <src> <dest>\n");
3628 return 1;
3631 src = talloc_asprintf(ctx,
3632 "%s%s",
3633 client_get_cur_dir(),
3634 buf);
3635 if (!src) {
3636 return 1;
3639 dest = talloc_asprintf(ctx,
3640 "%s%s",
3641 client_get_cur_dir(),
3642 buf2);
3643 if (!dest) {
3644 return 1;
3647 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3648 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3649 return 1;
3652 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3653 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3654 return 1;
3657 return 0;
3660 /****************************************************************************
3661 Toggle the prompt flag.
3662 ****************************************************************************/
3664 static int cmd_prompt(void)
3666 prompt = !prompt;
3667 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3668 return 1;
3671 /****************************************************************************
3672 Set the newer than time.
3673 ****************************************************************************/
3675 static int cmd_newer(void)
3677 TALLOC_CTX *ctx = talloc_tos();
3678 char *buf;
3679 bool ok;
3680 SMB_STRUCT_STAT sbuf;
3682 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3683 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3684 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3685 DEBUG(1,("Getting files newer than %s",
3686 time_to_asc(newer_than)));
3687 } else {
3688 newer_than = 0;
3691 if (ok && newer_than == 0) {
3692 d_printf("Error setting newer-than time\n");
3693 return 1;
3696 return 0;
3699 /****************************************************************************
3700 Set the archive level.
3701 ****************************************************************************/
3703 static int cmd_archive(void)
3705 TALLOC_CTX *ctx = talloc_tos();
3706 char *buf;
3708 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3709 archive_level = atoi(buf);
3710 } else {
3711 d_printf("Archive level is %d\n",archive_level);
3714 return 0;
3717 /****************************************************************************
3718 Toggle the lowercaseflag.
3719 ****************************************************************************/
3721 static int cmd_lowercase(void)
3723 lowercase = !lowercase;
3724 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3725 return 0;
3728 /****************************************************************************
3729 Toggle the case sensitive flag.
3730 ****************************************************************************/
3732 static int cmd_setcase(void)
3734 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3736 cli_set_case_sensitive(cli, !orig_case_sensitive);
3737 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3738 "on":"off"));
3739 return 0;
3742 /****************************************************************************
3743 Toggle the showacls flag.
3744 ****************************************************************************/
3746 static int cmd_showacls(void)
3748 showacls = !showacls;
3749 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3750 return 0;
3754 /****************************************************************************
3755 Toggle the recurse flag.
3756 ****************************************************************************/
3758 static int cmd_recurse(void)
3760 recurse = !recurse;
3761 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3762 return 0;
3765 /****************************************************************************
3766 Toggle the translate flag.
3767 ****************************************************************************/
3769 static int cmd_translate(void)
3771 translation = !translation;
3772 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3773 translation?"on":"off"));
3774 return 0;
3777 /****************************************************************************
3778 Do the lcd command.
3779 ****************************************************************************/
3781 static int cmd_lcd(void)
3783 TALLOC_CTX *ctx = talloc_tos();
3784 char *buf;
3785 char *d;
3787 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3788 if (chdir(buf) == -1) {
3789 d_printf("chdir to %s failed (%s)\n",
3790 buf, strerror(errno));
3793 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3794 if (!d) {
3795 return 1;
3797 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3798 return 0;
3801 /****************************************************************************
3802 Get a file restarting at end of local file.
3803 ****************************************************************************/
3805 static int cmd_reget(void)
3807 TALLOC_CTX *ctx = talloc_tos();
3808 char *local_name = NULL;
3809 char *remote_name = NULL;
3810 char *fname = NULL;
3811 char *p = NULL;
3813 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3814 if (!remote_name) {
3815 return 1;
3818 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3819 d_printf("reget <filename>\n");
3820 return 1;
3822 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3823 if (!remote_name) {
3824 return 1;
3826 remote_name = clean_name(ctx,remote_name);
3827 if (!remote_name) {
3828 return 1;
3831 local_name = fname;
3832 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3833 if (p) {
3834 local_name = p;
3837 return do_get(remote_name, local_name, true);
3840 /****************************************************************************
3841 Put a file restarting at end of local file.
3842 ****************************************************************************/
3844 static int cmd_reput(void)
3846 TALLOC_CTX *ctx = talloc_tos();
3847 char *local_name = NULL;
3848 char *remote_name = NULL;
3849 char *buf;
3850 SMB_STRUCT_STAT st;
3852 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3853 if (!remote_name) {
3854 return 1;
3857 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3858 d_printf("reput <filename>\n");
3859 return 1;
3862 if (!file_exist_stat(local_name, &st, false)) {
3863 d_printf("%s does not exist\n", local_name);
3864 return 1;
3867 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3868 remote_name = talloc_asprintf_append(remote_name,
3869 "%s", buf);
3870 } else {
3871 remote_name = talloc_asprintf_append(remote_name,
3872 "%s", local_name);
3874 if (!remote_name) {
3875 return 1;
3878 remote_name = clean_name(ctx, remote_name);
3879 if (!remote_name) {
3880 return 1;
3883 return do_put(remote_name, local_name, true);
3886 /****************************************************************************
3887 List a share name.
3888 ****************************************************************************/
3890 static void browse_fn(const char *name, uint32 m,
3891 const char *comment, void *state)
3893 const char *typestr = "";
3895 switch (m & 7) {
3896 case STYPE_DISKTREE:
3897 typestr = "Disk";
3898 break;
3899 case STYPE_PRINTQ:
3900 typestr = "Printer";
3901 break;
3902 case STYPE_DEVICE:
3903 typestr = "Device";
3904 break;
3905 case STYPE_IPC:
3906 typestr = "IPC";
3907 break;
3909 /* FIXME: If the remote machine returns non-ascii characters
3910 in any of these fields, they can corrupt the output. We
3911 should remove them. */
3912 if (!grepable) {
3913 d_printf("\t%-15s %-10.10s%s\n",
3914 name,typestr,comment);
3915 } else {
3916 d_printf ("%s|%s|%s\n",typestr,name,comment);
3920 static bool browse_host_rpc(bool sort)
3922 NTSTATUS status;
3923 struct rpc_pipe_client *pipe_hnd = NULL;
3924 TALLOC_CTX *frame = talloc_stackframe();
3925 WERROR werr;
3926 struct srvsvc_NetShareInfoCtr info_ctr;
3927 struct srvsvc_NetShareCtr1 ctr1;
3928 uint32_t resume_handle = 0;
3929 uint32_t total_entries = 0;
3930 int i;
3932 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3933 &pipe_hnd);
3935 if (!NT_STATUS_IS_OK(status)) {
3936 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3937 nt_errstr(status)));
3938 TALLOC_FREE(frame);
3939 return false;
3942 ZERO_STRUCT(info_ctr);
3943 ZERO_STRUCT(ctr1);
3945 info_ctr.level = 1;
3946 info_ctr.ctr.ctr1 = &ctr1;
3948 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3949 pipe_hnd->desthost,
3950 &info_ctr,
3951 0xffffffff,
3952 &total_entries,
3953 &resume_handle,
3954 &werr);
3956 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3957 TALLOC_FREE(pipe_hnd);
3958 TALLOC_FREE(frame);
3959 return false;
3962 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3963 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3964 browse_fn(info.name, info.type, info.comment, NULL);
3967 TALLOC_FREE(pipe_hnd);
3968 TALLOC_FREE(frame);
3969 return true;
3972 /****************************************************************************
3973 Try and browse available connections on a host.
3974 ****************************************************************************/
3976 static bool browse_host(bool sort)
3978 int ret;
3979 if (!grepable) {
3980 d_printf("\n\tSharename Type Comment\n");
3981 d_printf("\t--------- ---- -------\n");
3984 if (browse_host_rpc(sort)) {
3985 return true;
3988 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3989 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3991 return (ret != -1);
3994 /****************************************************************************
3995 List a server name.
3996 ****************************************************************************/
3998 static void server_fn(const char *name, uint32 m,
3999 const char *comment, void *state)
4002 if (!grepable){
4003 d_printf("\t%-16s %s\n", name, comment);
4004 } else {
4005 d_printf("%s|%s|%s\n",(char *)state, name, comment);
4009 /****************************************************************************
4010 Try and browse available connections on a host.
4011 ****************************************************************************/
4013 static bool list_servers(const char *wk_grp)
4015 fstring state;
4017 if (!cli->server_domain)
4018 return false;
4020 if (!grepable) {
4021 d_printf("\n\tServer Comment\n");
4022 d_printf("\t--------- -------\n");
4024 fstrcpy( state, "Server" );
4025 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
4026 state);
4028 if (!grepable) {
4029 d_printf("\n\tWorkgroup Master\n");
4030 d_printf("\t--------- -------\n");
4033 fstrcpy( state, "Workgroup" );
4034 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
4035 server_fn, state);
4036 return true;
4039 /****************************************************************************
4040 Print or set current VUID
4041 ****************************************************************************/
4043 static int cmd_vuid(void)
4045 TALLOC_CTX *ctx = talloc_tos();
4046 char *buf;
4048 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4049 d_printf("Current VUID is %d\n", cli->vuid);
4050 return 0;
4053 cli->vuid = atoi(buf);
4054 return 0;
4057 /****************************************************************************
4058 Setup a new VUID, by issuing a session setup
4059 ****************************************************************************/
4061 static int cmd_logon(void)
4063 TALLOC_CTX *ctx = talloc_tos();
4064 char *l_username, *l_password;
4066 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
4067 d_printf("logon <username> [<password>]\n");
4068 return 0;
4071 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
4072 char *pass = getpass("Password: ");
4073 if (pass) {
4074 l_password = talloc_strdup(ctx,pass);
4077 if (!l_password) {
4078 return 1;
4081 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
4082 l_password, strlen(l_password),
4083 l_password, strlen(l_password),
4084 lp_workgroup()))) {
4085 d_printf("session setup failed: %s\n", cli_errstr(cli));
4086 return -1;
4089 d_printf("Current VUID is %d\n", cli->vuid);
4090 return 0;
4094 /****************************************************************************
4095 list active connections
4096 ****************************************************************************/
4098 static int cmd_list_connect(void)
4100 cli_cm_display(cli);
4101 return 0;
4104 /****************************************************************************
4105 display the current active client connection
4106 ****************************************************************************/
4108 static int cmd_show_connect( void )
4110 TALLOC_CTX *ctx = talloc_tos();
4111 struct cli_state *targetcli;
4112 char *targetpath;
4114 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
4115 &targetcli, &targetpath ) ) {
4116 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
4117 return 1;
4120 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
4121 return 0;
4124 /****************************************************************************
4125 iosize command
4126 ***************************************************************************/
4128 int cmd_iosize(void)
4130 TALLOC_CTX *ctx = talloc_tos();
4131 char *buf;
4132 int iosize;
4134 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4135 if (!smb_encrypt) {
4136 d_printf("iosize <n> or iosize 0x<n>. "
4137 "Minimum is 16384 (0x4000), "
4138 "max is 16776960 (0xFFFF00)\n");
4139 } else {
4140 d_printf("iosize <n> or iosize 0x<n>. "
4141 "(Encrypted connection) ,"
4142 "Minimum is 16384 (0x4000), "
4143 "max is 130048 (0x1FC00)\n");
4145 return 1;
4148 iosize = strtol(buf,NULL,0);
4149 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
4150 d_printf("iosize out of range for encrypted "
4151 "connection (min = 16384 (0x4000), "
4152 "max = 130048 (0x1FC00)");
4153 return 1;
4154 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
4155 d_printf("iosize out of range (min = 16384 (0x4000), "
4156 "max = 16776960 (0xFFFF00)");
4157 return 1;
4160 io_bufsize = iosize;
4161 d_printf("iosize is now %d\n", io_bufsize);
4162 return 0;
4165 /****************************************************************************
4166 history
4167 ****************************************************************************/
4168 static int cmd_history(void)
4170 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
4171 HIST_ENTRY **hlist;
4172 int i;
4174 hlist = history_list();
4176 for (i = 0; hlist && hlist[i]; i++) {
4177 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
4179 #else
4180 DEBUG(0,("no history without readline support\n"));
4181 #endif
4183 return 0;
4186 /* Some constants for completing filename arguments */
4188 #define COMPL_NONE 0 /* No completions */
4189 #define COMPL_REMOTE 1 /* Complete remote filename */
4190 #define COMPL_LOCAL 2 /* Complete local filename */
4192 /* This defines the commands supported by this client.
4193 * NOTE: The "!" must be the last one in the list because it's fn pointer
4194 * field is NULL, and NULL in that field is used in process_tok()
4195 * (below) to indicate the end of the list. crh
4197 static struct {
4198 const char *name;
4199 int (*fn)(void);
4200 const char *description;
4201 char compl_args[2]; /* Completion argument info */
4202 } commands[] = {
4203 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4204 {"allinfo",cmd_allinfo,"<file> show all available info",
4205 {COMPL_NONE,COMPL_NONE}},
4206 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
4207 {"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}},
4208 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
4209 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
4210 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
4211 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
4212 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
4213 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
4214 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
4215 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4216 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4217 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4218 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
4219 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4220 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
4221 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
4222 {"geteas", cmd_geteas, "<file name> get the EA list of a file",
4223 {COMPL_REMOTE, COMPL_LOCAL}},
4224 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4225 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
4226 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
4227 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
4228 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
4229 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
4230 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4231 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
4232 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4233 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
4234 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
4235 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4236 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
4237 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
4238 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
4239 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
4240 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
4241 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
4242 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
4243 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
4244 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4245 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4246 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4247 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4248 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4249 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4250 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4251 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4252 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4253 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4254 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4255 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4256 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4257 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4258 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4259 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4260 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4261 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4262 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4263 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4264 {"setea", cmd_setea, "<file name> <eaname> <eaval> Set an EA of a file",
4265 {COMPL_REMOTE, COMPL_LOCAL}},
4266 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4267 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4268 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4269 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4270 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4271 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4272 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4273 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4274 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4275 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4276 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4277 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4278 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4279 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4281 /* Yes, this must be here, see crh's comment above. */
4282 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4283 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4286 /*******************************************************************
4287 Lookup a command string in the list of commands, including
4288 abbreviations.
4289 ******************************************************************/
4291 static int process_tok(char *tok)
4293 int i = 0, matches = 0;
4294 int cmd=0;
4295 int tok_len = strlen(tok);
4297 while (commands[i].fn != NULL) {
4298 if (strequal(commands[i].name,tok)) {
4299 matches = 1;
4300 cmd = i;
4301 break;
4302 } else if (strnequal(commands[i].name, tok, tok_len)) {
4303 matches++;
4304 cmd = i;
4306 i++;
4309 if (matches == 0)
4310 return(-1);
4311 else if (matches == 1)
4312 return(cmd);
4313 else
4314 return(-2);
4317 /****************************************************************************
4318 Help.
4319 ****************************************************************************/
4321 static int cmd_help(void)
4323 TALLOC_CTX *ctx = talloc_tos();
4324 int i=0,j;
4325 char *buf;
4327 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4328 if ((i = process_tok(buf)) >= 0)
4329 d_printf("HELP %s:\n\t%s\n\n",
4330 commands[i].name,commands[i].description);
4331 } else {
4332 while (commands[i].description) {
4333 for (j=0; commands[i].description && (j<5); j++) {
4334 d_printf("%-15s",commands[i].name);
4335 i++;
4337 d_printf("\n");
4340 return 0;
4343 /****************************************************************************
4344 Process a -c command string.
4345 ****************************************************************************/
4347 static int process_command_string(const char *cmd_in)
4349 TALLOC_CTX *ctx = talloc_tos();
4350 char *cmd = talloc_strdup(ctx, cmd_in);
4351 int rc = 0;
4353 if (!cmd) {
4354 return 1;
4356 /* establish the connection if not already */
4358 if (!cli) {
4359 cli = cli_cm_open(talloc_tos(), NULL,
4360 have_ip ? dest_ss_str : desthost,
4361 service, auth_info,
4362 true, smb_encrypt,
4363 max_protocol, port, name_type);
4364 if (!cli) {
4365 return 1;
4369 while (cmd[0] != '\0') {
4370 char *line;
4371 char *p;
4372 char *tok;
4373 int i;
4375 if ((p = strchr_m(cmd, ';')) == 0) {
4376 line = cmd;
4377 cmd += strlen(cmd);
4378 } else {
4379 *p = '\0';
4380 line = cmd;
4381 cmd = p + 1;
4384 /* and get the first part of the command */
4385 cmd_ptr = line;
4386 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4387 continue;
4390 if ((i = process_tok(tok)) >= 0) {
4391 rc = commands[i].fn();
4392 } else if (i == -2) {
4393 d_printf("%s: command abbreviation ambiguous\n",tok);
4394 } else {
4395 d_printf("%s: command not found\n",tok);
4399 return rc;
4402 #define MAX_COMPLETIONS 100
4404 struct completion_remote {
4405 char *dirmask;
4406 char **matches;
4407 int count, samelen;
4408 const char *text;
4409 int len;
4412 static NTSTATUS completion_remote_filter(const char *mnt,
4413 struct file_info *f,
4414 const char *mask,
4415 void *state)
4417 struct completion_remote *info = (struct completion_remote *)state;
4419 if (info->count >= MAX_COMPLETIONS - 1) {
4420 return NT_STATUS_OK;
4422 if (strncmp(info->text, f->name, info->len) != 0) {
4423 return NT_STATUS_OK;
4425 if (ISDOT(f->name) || ISDOTDOT(f->name)) {
4426 return NT_STATUS_OK;
4429 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4430 info->matches[info->count] = SMB_STRDUP(f->name);
4431 else {
4432 TALLOC_CTX *ctx = talloc_stackframe();
4433 char *tmp;
4435 tmp = talloc_strdup(ctx,info->dirmask);
4436 if (!tmp) {
4437 TALLOC_FREE(ctx);
4438 return NT_STATUS_NO_MEMORY;
4440 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4441 if (!tmp) {
4442 TALLOC_FREE(ctx);
4443 return NT_STATUS_NO_MEMORY;
4445 if (f->mode & aDIR) {
4446 tmp = talloc_asprintf_append(tmp, "%s",
4447 CLI_DIRSEP_STR);
4449 if (!tmp) {
4450 TALLOC_FREE(ctx);
4451 return NT_STATUS_NO_MEMORY;
4453 info->matches[info->count] = SMB_STRDUP(tmp);
4454 TALLOC_FREE(ctx);
4456 if (info->matches[info->count] == NULL) {
4457 return NT_STATUS_OK;
4459 if (f->mode & aDIR) {
4460 smb_readline_ca_char(0);
4462 if (info->count == 1) {
4463 info->samelen = strlen(info->matches[info->count]);
4464 } else {
4465 while (strncmp(info->matches[info->count],
4466 info->matches[info->count-1],
4467 info->samelen) != 0) {
4468 info->samelen--;
4471 info->count++;
4472 return NT_STATUS_OK;
4475 static char **remote_completion(const char *text, int len)
4477 TALLOC_CTX *ctx = talloc_stackframe();
4478 char *dirmask = NULL;
4479 char *targetpath = NULL;
4480 struct cli_state *targetcli = NULL;
4481 int i;
4482 struct completion_remote info = { NULL, NULL, 1, 0, NULL, 0 };
4483 NTSTATUS status;
4485 /* can't have non-static initialisation on Sun CC, so do it
4486 at run time here */
4487 info.samelen = len;
4488 info.text = text;
4489 info.len = len;
4491 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4492 if (!info.matches) {
4493 TALLOC_FREE(ctx);
4494 return NULL;
4498 * We're leaving matches[0] free to fill it later with the text to
4499 * display: Either the one single match or the longest common subset
4500 * of the matches.
4502 info.matches[0] = NULL;
4503 info.count = 1;
4505 for (i = len-1; i >= 0; i--) {
4506 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4507 break;
4511 info.text = text+i+1;
4512 info.samelen = info.len = len-i-1;
4514 if (i > 0) {
4515 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4516 if (!info.dirmask) {
4517 goto cleanup;
4519 strncpy(info.dirmask, text, i+1);
4520 info.dirmask[i+1] = 0;
4521 dirmask = talloc_asprintf(ctx,
4522 "%s%*s*",
4523 client_get_cur_dir(),
4524 i-1,
4525 text);
4526 } else {
4527 info.dirmask = SMB_STRDUP("");
4528 if (!info.dirmask) {
4529 goto cleanup;
4531 dirmask = talloc_asprintf(ctx,
4532 "%s*",
4533 client_get_cur_dir());
4535 if (!dirmask) {
4536 goto cleanup;
4539 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4540 goto cleanup;
4542 status = cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4543 completion_remote_filter, (void *)&info);
4544 if (!NT_STATUS_IS_OK(status)) {
4545 goto cleanup;
4548 if (info.count == 1) {
4550 * No matches at all, NULL indicates there is nothing
4552 SAFE_FREE(info.matches[0]);
4553 SAFE_FREE(info.matches);
4554 TALLOC_FREE(ctx);
4555 return NULL;
4558 if (info.count == 2) {
4560 * Exactly one match in matches[1], indicate this is the one
4561 * in matches[0].
4563 info.matches[0] = info.matches[1];
4564 info.matches[1] = NULL;
4565 info.count -= 1;
4566 TALLOC_FREE(ctx);
4567 return info.matches;
4571 * We got more than one possible match, set the result to the maximum
4572 * common subset
4575 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4576 info.matches[info.count] = NULL;
4577 return info.matches;
4579 cleanup:
4580 for (i = 0; i < info.count; i++) {
4581 SAFE_FREE(info.matches[i]);
4583 SAFE_FREE(info.matches);
4584 SAFE_FREE(info.dirmask);
4585 TALLOC_FREE(ctx);
4586 return NULL;
4589 static char **completion_fn(const char *text, int start, int end)
4591 smb_readline_ca_char(' ');
4593 if (start) {
4594 const char *buf, *sp;
4595 int i;
4596 char compl_type;
4598 buf = smb_readline_get_line_buffer();
4599 if (buf == NULL)
4600 return NULL;
4602 sp = strchr(buf, ' ');
4603 if (sp == NULL)
4604 return NULL;
4606 for (i = 0; commands[i].name; i++) {
4607 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4608 (commands[i].name[sp - buf] == 0)) {
4609 break;
4612 if (commands[i].name == NULL)
4613 return NULL;
4615 while (*sp == ' ')
4616 sp++;
4618 if (sp == (buf + start))
4619 compl_type = commands[i].compl_args[0];
4620 else
4621 compl_type = commands[i].compl_args[1];
4623 if (compl_type == COMPL_REMOTE)
4624 return remote_completion(text, end - start);
4625 else /* fall back to local filename completion */
4626 return NULL;
4627 } else {
4628 char **matches;
4629 int i, len, samelen = 0, count=1;
4631 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4632 if (!matches) {
4633 return NULL;
4635 matches[0] = NULL;
4637 len = strlen(text);
4638 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4639 if (strncmp(text, commands[i].name, len) == 0) {
4640 matches[count] = SMB_STRDUP(commands[i].name);
4641 if (!matches[count])
4642 goto cleanup;
4643 if (count == 1)
4644 samelen = strlen(matches[count]);
4645 else
4646 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4647 samelen--;
4648 count++;
4652 switch (count) {
4653 case 0: /* should never happen */
4654 case 1:
4655 goto cleanup;
4656 case 2:
4657 matches[0] = SMB_STRDUP(matches[1]);
4658 break;
4659 default:
4660 matches[0] = (char *)SMB_MALLOC(samelen+1);
4661 if (!matches[0])
4662 goto cleanup;
4663 strncpy(matches[0], matches[1], samelen);
4664 matches[0][samelen] = 0;
4666 matches[count] = NULL;
4667 return matches;
4669 cleanup:
4670 for (i = 0; i < count; i++)
4671 free(matches[i]);
4673 free(matches);
4674 return NULL;
4678 static bool finished;
4680 /****************************************************************************
4681 Make sure we swallow keepalives during idle time.
4682 ****************************************************************************/
4684 static void readline_callback(void)
4686 fd_set fds;
4687 struct timeval timeout;
4688 static time_t last_t;
4689 struct timespec now;
4690 time_t t;
4692 clock_gettime_mono(&now);
4693 t = now.tv_sec;
4695 if (t - last_t < 5)
4696 return;
4698 last_t = t;
4700 again:
4702 if (cli->fd == -1)
4703 return;
4705 FD_ZERO(&fds);
4706 FD_SET(cli->fd,&fds);
4708 timeout.tv_sec = 0;
4709 timeout.tv_usec = 0;
4710 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4712 /* We deliberately use receive_smb_raw instead of
4713 client_receive_smb as we want to receive
4714 session keepalives and then drop them here.
4716 if (FD_ISSET(cli->fd,&fds)) {
4717 NTSTATUS status;
4718 size_t len;
4720 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4722 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4724 if (!NT_STATUS_IS_OK(status)) {
4725 DEBUG(0, ("Read from server failed, maybe it closed "
4726 "the connection\n"));
4728 finished = true;
4729 smb_readline_done();
4730 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4731 set_smb_read_error(&cli->smb_rw_error,
4732 SMB_READ_EOF);
4733 return;
4736 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4737 set_smb_read_error(&cli->smb_rw_error,
4738 SMB_READ_TIMEOUT);
4739 return;
4742 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4743 return;
4745 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4746 DEBUG(0, ("Read from server "
4747 "returned unexpected packet!\n"));
4748 return;
4751 goto again;
4754 /* Ping the server to keep the connection alive using SMBecho. */
4756 NTSTATUS status;
4757 unsigned char garbage[16];
4758 memset(garbage, 0xf0, sizeof(garbage));
4759 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4761 if (!NT_STATUS_IS_OK(status)) {
4762 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4763 "the connection\n"));
4764 finished = true;
4765 smb_readline_done();
4770 /****************************************************************************
4771 Process commands on stdin.
4772 ****************************************************************************/
4774 static int process_stdin(void)
4776 int rc = 0;
4778 while (!finished) {
4779 TALLOC_CTX *frame = talloc_stackframe();
4780 char *tok = NULL;
4781 char *the_prompt = NULL;
4782 char *line = NULL;
4783 int i;
4785 /* display a prompt */
4786 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4787 TALLOC_FREE(frame);
4788 break;
4790 line = smb_readline(the_prompt, readline_callback, completion_fn);
4791 SAFE_FREE(the_prompt);
4792 if (!line) {
4793 TALLOC_FREE(frame);
4794 break;
4797 /* special case - first char is ! */
4798 if (*line == '!') {
4799 if (system(line + 1) == -1) {
4800 d_printf("system() command %s failed.\n",
4801 line+1);
4803 SAFE_FREE(line);
4804 TALLOC_FREE(frame);
4805 continue;
4808 /* and get the first part of the command */
4809 cmd_ptr = line;
4810 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4811 TALLOC_FREE(frame);
4812 SAFE_FREE(line);
4813 continue;
4816 if ((i = process_tok(tok)) >= 0) {
4817 rc = commands[i].fn();
4818 } else if (i == -2) {
4819 d_printf("%s: command abbreviation ambiguous\n",tok);
4820 } else {
4821 d_printf("%s: command not found\n",tok);
4823 SAFE_FREE(line);
4824 TALLOC_FREE(frame);
4826 return rc;
4829 /****************************************************************************
4830 Process commands from the client.
4831 ****************************************************************************/
4833 static int process(const char *base_directory)
4835 int rc = 0;
4837 cli = cli_cm_open(talloc_tos(), NULL,
4838 have_ip ? dest_ss_str : desthost,
4839 service, auth_info, true, smb_encrypt,
4840 max_protocol, port, name_type);
4841 if (!cli) {
4842 return 1;
4845 if (base_directory && *base_directory) {
4846 rc = do_cd(base_directory);
4847 if (rc) {
4848 cli_shutdown(cli);
4849 return rc;
4853 if (cmdstr) {
4854 rc = process_command_string(cmdstr);
4855 } else {
4856 process_stdin();
4859 cli_shutdown(cli);
4860 return rc;
4863 /****************************************************************************
4864 Handle a -L query.
4865 ****************************************************************************/
4867 static int do_host_query(const char *query_host)
4869 cli = cli_cm_open(talloc_tos(), NULL,
4870 have_ip ? dest_ss_str : query_host, "IPC$", auth_info, true, smb_encrypt,
4871 max_protocol, port, name_type);
4872 if (!cli)
4873 return 1;
4875 browse_host(true);
4877 /* Ensure that the host can do IPv4 */
4879 if (!interpret_addr(query_host)) {
4880 struct sockaddr_storage ss;
4881 if (interpret_string_addr(&ss, query_host, 0) &&
4882 (ss.ss_family != AF_INET)) {
4883 d_printf("%s is an IPv6 address -- no workgroup available\n",
4884 query_host);
4885 return 1;
4889 if (port != 139) {
4891 /* Workgroups simply don't make sense over anything
4892 else but port 139... */
4894 cli_shutdown(cli);
4895 cli = cli_cm_open(talloc_tos(), NULL,
4896 have_ip ? dest_ss_str : query_host, "IPC$",
4897 auth_info, true, smb_encrypt,
4898 max_protocol, 139, name_type);
4901 if (cli == NULL) {
4902 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4903 return 1;
4906 list_servers(lp_workgroup());
4908 cli_shutdown(cli);
4910 return(0);
4913 /****************************************************************************
4914 Handle a tar operation.
4915 ****************************************************************************/
4917 static int do_tar_op(const char *base_directory)
4919 int ret;
4921 /* do we already have a connection? */
4922 if (!cli) {
4923 cli = cli_cm_open(talloc_tos(), NULL,
4924 have_ip ? dest_ss_str : desthost,
4925 service, auth_info, true, smb_encrypt,
4926 max_protocol, port, name_type);
4927 if (!cli)
4928 return 1;
4931 recurse=true;
4933 if (base_directory && *base_directory) {
4934 ret = do_cd(base_directory);
4935 if (ret) {
4936 cli_shutdown(cli);
4937 return ret;
4941 ret=process_tar();
4943 cli_shutdown(cli);
4945 return(ret);
4948 /****************************************************************************
4949 Handle a message operation.
4950 ****************************************************************************/
4952 static int do_message_op(struct user_auth_info *a_info)
4954 struct sockaddr_storage ss;
4955 struct nmb_name called, calling;
4956 fstring server_name;
4957 char name_type_hex[10];
4958 int msg_port;
4959 NTSTATUS status;
4961 make_nmb_name(&calling, calling_name, 0x0);
4962 make_nmb_name(&called , desthost, name_type);
4964 fstrcpy(server_name, desthost);
4965 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4966 fstrcat(server_name, name_type_hex);
4968 zero_sockaddr(&ss);
4969 if (have_ip)
4970 ss = dest_ss;
4972 /* we can only do messages over port 139 (to windows clients at least) */
4974 msg_port = port ? port : 139;
4976 if (!(cli=cli_initialise())) {
4977 d_printf("Connection to %s failed\n", desthost);
4978 return 1;
4980 cli_set_port(cli, msg_port);
4982 status = cli_connect(cli, server_name, &ss);
4983 if (!NT_STATUS_IS_OK(status)) {
4984 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4985 return 1;
4988 if (!cli_session_request(cli, &calling, &called)) {
4989 d_printf("session request failed\n");
4990 cli_shutdown(cli);
4991 return 1;
4994 send_message(get_cmdline_auth_info_username(a_info));
4995 cli_shutdown(cli);
4997 return 0;
5000 /****************************************************************************
5001 main program
5002 ****************************************************************************/
5004 int main(int argc,char *argv[])
5006 char *base_directory = NULL;
5007 int opt;
5008 char *query_host = NULL;
5009 bool message = false;
5010 static const char *new_name_resolve_order = NULL;
5011 poptContext pc;
5012 char *p;
5013 int rc = 0;
5014 fstring new_workgroup;
5015 bool tar_opt = false;
5016 bool service_opt = false;
5017 struct poptOption long_options[] = {
5018 POPT_AUTOHELP
5020 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
5021 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
5022 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
5023 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
5024 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
5025 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
5026 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
5027 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
5028 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
5029 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
5030 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
5031 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
5032 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
5033 POPT_COMMON_SAMBA
5034 POPT_COMMON_CONNECTION
5035 POPT_COMMON_CREDENTIALS
5036 POPT_TABLEEND
5038 TALLOC_CTX *frame = talloc_stackframe();
5040 if (!client_set_cur_dir("\\")) {
5041 exit(ENOMEM);
5044 /* initialize the workgroup name so we can determine whether or
5045 not it was set by a command line option */
5047 set_global_myworkgroup( "" );
5048 set_global_myname( "" );
5050 /* set default debug level to 1 regardless of what smb.conf sets */
5051 setup_logging( "smbclient", DEBUG_DEFAULT_STDERR );
5052 load_case_tables();
5054 lp_set_cmdline("log level", "1");
5056 auth_info = user_auth_info_init(frame);
5057 if (auth_info == NULL) {
5058 exit(1);
5060 popt_common_set_auth_info(auth_info);
5062 /* skip argv(0) */
5063 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
5064 poptSetOtherOptionHelp(pc, "service <password>");
5066 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
5068 while ((opt = poptGetNextOpt(pc)) != -1) {
5070 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
5071 /* I see no other way to keep things sane --SSS */
5072 if (tar_opt == true) {
5073 while (poptPeekArg(pc)) {
5074 poptGetArg(pc);
5076 tar_opt = false;
5079 /* if the service has not yet been specified lets see if it is available in the popt stack */
5080 if (!service_opt && poptPeekArg(pc)) {
5081 service = talloc_strdup(frame, poptGetArg(pc));
5082 if (!service) {
5083 exit(ENOMEM);
5085 service_opt = true;
5088 /* if the service has already been retrieved then check if we have also a password */
5089 if (service_opt
5090 && (!get_cmdline_auth_info_got_pass(auth_info))
5091 && poptPeekArg(pc)) {
5092 set_cmdline_auth_info_password(auth_info,
5093 poptGetArg(pc));
5096 switch (opt) {
5097 case 'M':
5098 /* Messages are sent to NetBIOS name type 0x3
5099 * (Messenger Service). Make sure we default
5100 * to port 139 instead of port 445. srl,crh
5102 name_type = 0x03;
5103 desthost = talloc_strdup(frame,poptGetOptArg(pc));
5104 if (!desthost) {
5105 exit(ENOMEM);
5107 if( !port )
5108 port = 139;
5109 message = true;
5110 break;
5111 case 'I':
5113 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
5114 exit(1);
5116 have_ip = true;
5117 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
5119 break;
5120 case 'E':
5121 setup_logging("smbclient", DEBUG_STDERR );
5122 display_set_stderr();
5123 break;
5125 case 'L':
5126 query_host = talloc_strdup(frame, poptGetOptArg(pc));
5127 if (!query_host) {
5128 exit(ENOMEM);
5130 break;
5131 case 'm':
5132 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
5133 break;
5134 case 'T':
5135 /* We must use old option processing for this. Find the
5136 * position of the -T option in the raw argv[]. */
5138 int i;
5139 for (i = 1; i < argc; i++) {
5140 if (strncmp("-T", argv[i],2)==0)
5141 break;
5143 i++;
5144 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
5145 poptPrintUsage(pc, stderr, 0);
5146 exit(1);
5149 /* this must be the last option, mark we have parsed it so that we know we have */
5150 tar_opt = true;
5151 break;
5152 case 'D':
5153 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
5154 if (!base_directory) {
5155 exit(ENOMEM);
5157 break;
5158 case 'g':
5159 grepable=true;
5160 break;
5161 case 'e':
5162 smb_encrypt=true;
5163 break;
5164 case 'B':
5165 return(do_smb_browse());
5170 /* We may still have some leftovers after the last popt option has been called */
5171 if (tar_opt == true) {
5172 while (poptPeekArg(pc)) {
5173 poptGetArg(pc);
5175 tar_opt = false;
5178 /* if the service has not yet been specified lets see if it is available in the popt stack */
5179 if (!service_opt && poptPeekArg(pc)) {
5180 service = talloc_strdup(frame,poptGetArg(pc));
5181 if (!service) {
5182 exit(ENOMEM);
5184 service_opt = true;
5187 /* if the service has already been retrieved then check if we have also a password */
5188 if (service_opt
5189 && !get_cmdline_auth_info_got_pass(auth_info)
5190 && poptPeekArg(pc)) {
5191 set_cmdline_auth_info_password(auth_info,
5192 poptGetArg(pc));
5195 /* save the workgroup...
5197 FIXME!! do we need to do this for other options as well
5198 (or maybe a generic way to keep lp_load() from overwriting
5199 everything)? */
5201 fstrcpy( new_workgroup, lp_workgroup() );
5202 calling_name = talloc_strdup(frame, global_myname() );
5203 if (!calling_name) {
5204 exit(ENOMEM);
5207 if ( override_logfile )
5208 setup_logging( lp_logfile(), DEBUG_FILE );
5210 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
5211 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
5212 argv[0], get_dyn_CONFIGFILE());
5215 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
5216 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
5217 exit(-1);
5220 load_interfaces();
5222 if (service_opt && service) {
5223 size_t len;
5225 /* Convert any '/' characters in the service name to '\' characters */
5226 string_replace(service, '/','\\');
5227 if (count_chars(service,'\\') < 3) {
5228 d_printf("\n%s: Not enough '\\' characters in service\n",service);
5229 poptPrintUsage(pc, stderr, 0);
5230 exit(1);
5232 /* Remove trailing slashes */
5233 len = strlen(service);
5234 while(len > 0 && service[len - 1] == '\\') {
5235 --len;
5236 service[len] = '\0';
5240 if ( strlen(new_workgroup) != 0 ) {
5241 set_global_myworkgroup( new_workgroup );
5244 if ( strlen(calling_name) != 0 ) {
5245 set_global_myname( calling_name );
5246 } else {
5247 TALLOC_FREE(calling_name);
5248 calling_name = talloc_strdup(frame, global_myname() );
5251 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5252 if (!init_names()) {
5253 fprintf(stderr, "init_names() failed\n");
5254 exit(1);
5257 if(new_name_resolve_order)
5258 lp_set_name_resolve_order(new_name_resolve_order);
5260 if (!tar_type && !query_host && !service && !message) {
5261 poptPrintUsage(pc, stderr, 0);
5262 exit(1);
5265 poptFreeContext(pc);
5267 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5269 /* Ensure we have a password (or equivalent). */
5270 set_cmdline_auth_info_getpass(auth_info);
5272 if (tar_type) {
5273 if (cmdstr)
5274 process_command_string(cmdstr);
5275 return do_tar_op(base_directory);
5278 if (query_host && *query_host) {
5279 char *qhost = query_host;
5280 char *slash;
5282 while (*qhost == '\\' || *qhost == '/')
5283 qhost++;
5285 if ((slash = strchr_m(qhost, '/'))
5286 || (slash = strchr_m(qhost, '\\'))) {
5287 *slash = 0;
5290 if ((p=strchr_m(qhost, '#'))) {
5291 *p = 0;
5292 p++;
5293 sscanf(p, "%x", &name_type);
5296 return do_host_query(qhost);
5299 if (message) {
5300 return do_message_op(auth_info);
5303 if (process(base_directory)) {
5304 return 1;
5307 TALLOC_FREE(frame);
5308 return rc;