Change uint_t to unsigned int in lib/talloc
[Samba/fernandojvsilva.git] / source3 / client / client.c
blobf177129dc782cc5920c1e8192ddc5477f1126aa4
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 "client/client_proto.h"
26 #include "../librpc/gen_ndr/cli_srvsvc.h"
28 #ifndef REGISTER
29 #define REGISTER 0
30 #endif
32 extern int do_smb_browse(void); /* mDNS browsing */
34 extern bool AllowDebugChange;
35 extern bool override_logfile;
36 extern char tar_type;
38 static int port = 0;
39 static char *service;
40 static char *desthost;
41 static char *calling_name;
42 static bool grepable = false;
43 static char *cmdstr = NULL;
44 const char *cmd_ptr = NULL;
46 static int io_bufsize = 524288;
48 static int name_type = 0x20;
49 static int max_protocol = PROTOCOL_NT1;
51 static int process_tok(char *tok);
52 static int cmd_help(void);
54 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
56 /* 30 second timeout on most commands */
57 #define CLIENT_TIMEOUT (30*1000)
58 #define SHORT_TIMEOUT (5*1000)
60 /* value for unused fid field in trans2 secondary request */
61 #define FID_UNUSED (0xFFFF)
63 time_t newer_than = 0;
64 static int archive_level = 0;
66 static bool translation = false;
67 static bool have_ip;
69 /* clitar bits insert */
70 extern int blocksize;
71 extern bool tar_inc;
72 extern bool tar_reset;
73 /* clitar bits end */
75 static bool prompt = true;
77 static bool recurse = false;
78 static bool showacls = false;
79 bool lowercase = false;
81 static struct sockaddr_storage dest_ss;
82 static char dest_ss_str[INET6_ADDRSTRLEN];
84 #define SEPARATORS " \t\n\r"
86 static bool abort_mget = true;
88 /* timing globals */
89 uint64_t get_total_size = 0;
90 unsigned int get_total_time_ms = 0;
91 static uint64_t put_total_size = 0;
92 static unsigned int put_total_time_ms = 0;
94 /* totals globals */
95 static double dir_total;
97 /* encrypted state. */
98 static bool smb_encrypt;
100 /* root cli_state connection */
102 struct cli_state *cli;
104 static char CLI_DIRSEP_CHAR = '\\';
105 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
107 /* Authentication for client connections. */
108 struct user_auth_info *auth_info;
110 /* Accessor functions for directory paths. */
111 static char *fileselection;
112 static const char *client_get_fileselection(void)
114 if (fileselection) {
115 return fileselection;
117 return "";
120 static const char *client_set_fileselection(const char *new_fs)
122 SAFE_FREE(fileselection);
123 if (new_fs) {
124 fileselection = SMB_STRDUP(new_fs);
126 return client_get_fileselection();
129 static char *cwd;
130 static const char *client_get_cwd(void)
132 if (cwd) {
133 return cwd;
135 return CLI_DIRSEP_STR;
138 static const char *client_set_cwd(const char *new_cwd)
140 SAFE_FREE(cwd);
141 if (new_cwd) {
142 cwd = SMB_STRDUP(new_cwd);
144 return client_get_cwd();
147 static char *cur_dir;
148 const char *client_get_cur_dir(void)
150 if (cur_dir) {
151 return cur_dir;
153 return CLI_DIRSEP_STR;
156 const char *client_set_cur_dir(const char *newdir)
158 SAFE_FREE(cur_dir);
159 if (newdir) {
160 cur_dir = SMB_STRDUP(newdir);
162 return client_get_cur_dir();
165 /****************************************************************************
166 Put up a yes/no prompt.
167 ****************************************************************************/
169 static bool yesno(const char *p)
171 char ans[20];
172 printf("%s",p);
174 if (!fgets(ans,sizeof(ans)-1,stdin))
175 return(False);
177 if (*ans == 'y' || *ans == 'Y')
178 return(True);
180 return(False);
183 /****************************************************************************
184 Write to a local file with CR/LF->LF translation if appropriate. Return the
185 number taken from the buffer. This may not equal the number written.
186 ****************************************************************************/
188 static int writefile(int f, char *b, int n)
190 int i;
192 if (!translation) {
193 return write(f,b,n);
196 i = 0;
197 while (i < n) {
198 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
199 b++;i++;
201 if (write(f, b, 1) != 1) {
202 break;
204 b++;
205 i++;
208 return(i);
211 /****************************************************************************
212 Read from a file with LF->CR/LF translation if appropriate. Return the
213 number read. read approx n bytes.
214 ****************************************************************************/
216 static int readfile(uint8_t *b, int n, XFILE *f)
218 int i;
219 int c;
221 if (!translation)
222 return x_fread(b,1,n,f);
224 i = 0;
225 while (i < (n - 1) && (i < BUFFER_SIZE)) {
226 if ((c = x_getc(f)) == EOF) {
227 break;
230 if (c == '\n') { /* change all LFs to CR/LF */
231 b[i++] = '\r';
234 b[i++] = c;
237 return(i);
240 struct push_state {
241 XFILE *f;
242 SMB_OFF_T nread;
245 static size_t push_source(uint8_t *buf, size_t n, void *priv)
247 struct push_state *state = (struct push_state *)priv;
248 int result;
250 if (x_feof(state->f)) {
251 return 0;
254 result = readfile(buf, n, state->f);
255 state->nread += result;
256 return result;
259 /****************************************************************************
260 Send a message.
261 ****************************************************************************/
263 static void send_message(const char *username)
265 char buf[1600];
266 NTSTATUS status;
267 int i;
269 d_printf("Type your message, ending it with a Control-D\n");
271 i = 0;
272 while (i<sizeof(buf)-2) {
273 int c = fgetc(stdin);
274 if (c == EOF) {
275 break;
277 if (c == '\n') {
278 buf[i++] = '\r';
280 buf[i++] = c;
282 buf[i] = '\0';
284 status = cli_message(cli, desthost, username, buf);
285 if (!NT_STATUS_IS_OK(status)) {
286 d_fprintf(stderr, "cli_message returned %s\n",
287 nt_errstr(status));
291 /****************************************************************************
292 Check the space on a device.
293 ****************************************************************************/
295 static int do_dskattr(void)
297 int total, bsize, avail;
298 struct cli_state *targetcli = NULL;
299 char *targetpath = NULL;
300 TALLOC_CTX *ctx = talloc_tos();
302 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
303 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
304 return 1;
307 if (!NT_STATUS_IS_OK(cli_dskattr(targetcli, &bsize, &total, &avail))) {
308 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
309 return 1;
312 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
313 total, bsize, avail);
315 return 0;
318 /****************************************************************************
319 Show cd/pwd.
320 ****************************************************************************/
322 static int cmd_pwd(void)
324 d_printf("Current directory is %s",service);
325 d_printf("%s\n",client_get_cur_dir());
326 return 0;
329 /****************************************************************************
330 Ensure name has correct directory separators.
331 ****************************************************************************/
333 static void normalize_name(char *newdir)
335 if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
336 string_replace(newdir,'/','\\');
340 /****************************************************************************
341 Change directory - inner section.
342 ****************************************************************************/
344 static int do_cd(const char *new_dir)
346 char *newdir = NULL;
347 char *saved_dir = NULL;
348 char *new_cd = NULL;
349 char *targetpath = NULL;
350 struct cli_state *targetcli = NULL;
351 SMB_STRUCT_STAT sbuf;
352 uint32 attributes;
353 int ret = 1;
354 TALLOC_CTX *ctx = talloc_stackframe();
356 newdir = talloc_strdup(ctx, new_dir);
357 if (!newdir) {
358 TALLOC_FREE(ctx);
359 return 1;
362 normalize_name(newdir);
364 /* Save the current directory in case the new directory is invalid */
366 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
367 if (!saved_dir) {
368 TALLOC_FREE(ctx);
369 return 1;
372 if (*newdir == CLI_DIRSEP_CHAR) {
373 client_set_cur_dir(newdir);
374 new_cd = newdir;
375 } else {
376 new_cd = talloc_asprintf(ctx, "%s%s",
377 client_get_cur_dir(),
378 newdir);
379 if (!new_cd) {
380 goto out;
384 /* Ensure cur_dir ends in a DIRSEP */
385 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
386 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
387 if (!new_cd) {
388 goto out;
391 client_set_cur_dir(new_cd);
393 new_cd = clean_name(ctx, new_cd);
394 client_set_cur_dir(new_cd);
396 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
397 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
398 client_set_cur_dir(saved_dir);
399 goto out;
402 if (strequal(targetpath,CLI_DIRSEP_STR )) {
403 TALLOC_FREE(ctx);
404 return 0;
407 /* Use a trans2_qpathinfo to test directories for modern servers.
408 Except Win9x doesn't support the qpathinfo_basic() call..... */
410 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
411 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
412 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
413 client_set_cur_dir(saved_dir);
414 goto out;
417 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
418 d_printf("cd %s: not a directory\n", new_cd);
419 client_set_cur_dir(saved_dir);
420 goto out;
422 } else {
423 targetpath = talloc_asprintf(ctx,
424 "%s%s",
425 targetpath,
426 CLI_DIRSEP_STR );
427 if (!targetpath) {
428 client_set_cur_dir(saved_dir);
429 goto out;
431 targetpath = clean_name(ctx, targetpath);
432 if (!targetpath) {
433 client_set_cur_dir(saved_dir);
434 goto out;
437 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, targetpath))) {
438 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
439 client_set_cur_dir(saved_dir);
440 goto out;
444 ret = 0;
446 out:
448 TALLOC_FREE(ctx);
449 return ret;
452 /****************************************************************************
453 Change directory.
454 ****************************************************************************/
456 static int cmd_cd(void)
458 char *buf = NULL;
459 int rc = 0;
461 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
462 rc = do_cd(buf);
463 } else {
464 d_printf("Current directory is %s\n",client_get_cur_dir());
467 return rc;
470 /****************************************************************************
471 Change directory.
472 ****************************************************************************/
474 static int cmd_cd_oneup(void)
476 return do_cd("..");
479 /*******************************************************************
480 Decide if a file should be operated on.
481 ********************************************************************/
483 static bool do_this_one(file_info *finfo)
485 if (!finfo->name) {
486 return false;
489 if (finfo->mode & aDIR) {
490 return true;
493 if (*client_get_fileselection() &&
494 !mask_match(finfo->name,client_get_fileselection(),false)) {
495 DEBUG(3,("mask_match %s failed\n", finfo->name));
496 return false;
499 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
500 DEBUG(3,("newer_than %s failed\n", finfo->name));
501 return false;
504 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
505 DEBUG(3,("archive %s failed\n", finfo->name));
506 return false;
509 return true;
512 /****************************************************************************
513 Display info about a file.
514 ****************************************************************************/
516 static void display_finfo(file_info *finfo, const char *dir)
518 time_t t;
519 TALLOC_CTX *ctx = talloc_tos();
521 if (!do_this_one(finfo)) {
522 return;
525 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
526 if (!showacls) {
527 d_printf(" %-30s%7.7s %8.0f %s",
528 finfo->name,
529 attrib_string(finfo->mode),
530 (double)finfo->size,
531 time_to_asc(t));
532 dir_total += finfo->size;
533 } else {
534 char *afname = NULL;
535 uint16_t fnum;
537 /* skip if this is . or .. */
538 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
539 return;
540 /* create absolute filename for cli_ntcreate() FIXME */
541 afname = talloc_asprintf(ctx,
542 "%s%s%s",
543 dir,
544 CLI_DIRSEP_STR,
545 finfo->name);
546 if (!afname) {
547 return;
549 /* print file meta date header */
550 d_printf( "FILENAME:%s\n", finfo->name);
551 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
552 d_printf( "SIZE:%.0f\n", (double)finfo->size);
553 d_printf( "MTIME:%s", time_to_asc(t));
554 if (!NT_STATUS_IS_OK(cli_ntcreate(finfo->cli, afname, 0,
555 CREATE_ACCESS_READ, 0, FILE_SHARE_READ|FILE_SHARE_WRITE,
556 FILE_OPEN, 0x0, 0x0, &fnum))) {
557 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
558 afname,
559 cli_errstr( finfo->cli)));
560 } else {
561 SEC_DESC *sd = NULL;
562 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
563 if (!sd) {
564 DEBUG( 0, ("display_finfo() failed to "
565 "get security descriptor: %s",
566 cli_errstr( finfo->cli)));
567 } else {
568 display_sec_desc(sd);
570 TALLOC_FREE(sd);
572 TALLOC_FREE(afname);
576 /****************************************************************************
577 Accumulate size of a file.
578 ****************************************************************************/
580 static void do_du(file_info *finfo, const char *dir)
582 if (do_this_one(finfo)) {
583 dir_total += finfo->size;
587 static bool do_list_recurse;
588 static bool do_list_dirs;
589 static char *do_list_queue = 0;
590 static long do_list_queue_size = 0;
591 static long do_list_queue_start = 0;
592 static long do_list_queue_end = 0;
593 static void (*do_list_fn)(file_info *, const char *dir);
595 /****************************************************************************
596 Functions for do_list_queue.
597 ****************************************************************************/
600 * The do_list_queue is a NUL-separated list of strings stored in a
601 * char*. Since this is a FIFO, we keep track of the beginning and
602 * ending locations of the data in the queue. When we overflow, we
603 * double the size of the char*. When the start of the data passes
604 * the midpoint, we move everything back. This is logically more
605 * complex than a linked list, but easier from a memory management
606 * angle. In any memory error condition, do_list_queue is reset.
607 * Functions check to ensure that do_list_queue is non-NULL before
608 * accessing it.
611 static void reset_do_list_queue(void)
613 SAFE_FREE(do_list_queue);
614 do_list_queue_size = 0;
615 do_list_queue_start = 0;
616 do_list_queue_end = 0;
619 static void init_do_list_queue(void)
621 reset_do_list_queue();
622 do_list_queue_size = 1024;
623 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
624 if (do_list_queue == 0) {
625 d_printf("malloc fail for size %d\n",
626 (int)do_list_queue_size);
627 reset_do_list_queue();
628 } else {
629 memset(do_list_queue, 0, do_list_queue_size);
633 static void adjust_do_list_queue(void)
636 * If the starting point of the queue is more than half way through,
637 * move everything toward the beginning.
640 if (do_list_queue == NULL) {
641 DEBUG(4,("do_list_queue is empty\n"));
642 do_list_queue_start = do_list_queue_end = 0;
643 return;
646 if (do_list_queue_start == do_list_queue_end) {
647 DEBUG(4,("do_list_queue is empty\n"));
648 do_list_queue_start = do_list_queue_end = 0;
649 *do_list_queue = '\0';
650 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
651 DEBUG(4,("sliding do_list_queue backward\n"));
652 memmove(do_list_queue,
653 do_list_queue + do_list_queue_start,
654 do_list_queue_end - do_list_queue_start);
655 do_list_queue_end -= do_list_queue_start;
656 do_list_queue_start = 0;
660 static void add_to_do_list_queue(const char *entry)
662 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
663 while (new_end > do_list_queue_size) {
664 do_list_queue_size *= 2;
665 DEBUG(4,("enlarging do_list_queue to %d\n",
666 (int)do_list_queue_size));
667 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
668 if (! do_list_queue) {
669 d_printf("failure enlarging do_list_queue to %d bytes\n",
670 (int)do_list_queue_size);
671 reset_do_list_queue();
672 } else {
673 memset(do_list_queue + do_list_queue_size / 2,
674 0, do_list_queue_size / 2);
677 if (do_list_queue) {
678 safe_strcpy_base(do_list_queue + do_list_queue_end,
679 entry, do_list_queue, do_list_queue_size);
680 do_list_queue_end = new_end;
681 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
682 entry, (int)do_list_queue_start, (int)do_list_queue_end));
686 static char *do_list_queue_head(void)
688 return do_list_queue + do_list_queue_start;
691 static void remove_do_list_queue_head(void)
693 if (do_list_queue_end > do_list_queue_start) {
694 do_list_queue_start += strlen(do_list_queue_head()) + 1;
695 adjust_do_list_queue();
696 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
697 (int)do_list_queue_start, (int)do_list_queue_end));
701 static int do_list_queue_empty(void)
703 return (! (do_list_queue && *do_list_queue));
706 /****************************************************************************
707 A helper for do_list.
708 ****************************************************************************/
710 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
712 TALLOC_CTX *ctx = talloc_tos();
713 char *dir = NULL;
714 char *dir_end = NULL;
716 /* Work out the directory. */
717 dir = talloc_strdup(ctx, mask);
718 if (!dir) {
719 return;
721 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
722 *dir_end = '\0';
725 if (f->mode & aDIR) {
726 if (do_list_dirs && do_this_one(f)) {
727 do_list_fn(f, dir);
729 if (do_list_recurse &&
730 f->name &&
731 !strequal(f->name,".") &&
732 !strequal(f->name,"..")) {
733 char *mask2 = NULL;
734 char *p = NULL;
736 if (!f->name[0]) {
737 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
738 TALLOC_FREE(dir);
739 return;
742 mask2 = talloc_asprintf(ctx,
743 "%s%s",
744 mntpoint,
745 mask);
746 if (!mask2) {
747 TALLOC_FREE(dir);
748 return;
750 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
751 if (p) {
752 p[1] = 0;
753 } else {
754 mask2[0] = '\0';
756 mask2 = talloc_asprintf_append(mask2,
757 "%s%s*",
758 f->name,
759 CLI_DIRSEP_STR);
760 if (!mask2) {
761 TALLOC_FREE(dir);
762 return;
764 add_to_do_list_queue(mask2);
765 TALLOC_FREE(mask2);
767 TALLOC_FREE(dir);
768 return;
771 if (do_this_one(f)) {
772 do_list_fn(f,dir);
774 TALLOC_FREE(dir);
777 /****************************************************************************
778 A wrapper around cli_list that adds recursion.
779 ****************************************************************************/
781 void do_list(const char *mask,
782 uint16 attribute,
783 void (*fn)(file_info *, const char *dir),
784 bool rec,
785 bool dirs)
787 static int in_do_list = 0;
788 TALLOC_CTX *ctx = talloc_tos();
789 struct cli_state *targetcli = NULL;
790 char *targetpath = NULL;
792 if (in_do_list && rec) {
793 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
794 exit(1);
797 in_do_list = 1;
799 do_list_recurse = rec;
800 do_list_dirs = dirs;
801 do_list_fn = fn;
803 if (rec) {
804 init_do_list_queue();
805 add_to_do_list_queue(mask);
807 while (!do_list_queue_empty()) {
809 * Need to copy head so that it doesn't become
810 * invalid inside the call to cli_list. This
811 * would happen if the list were expanded
812 * during the call.
813 * Fix from E. Jay Berkenbilt (ejb@ql.org)
815 char *head = talloc_strdup(ctx, do_list_queue_head());
817 if (!head) {
818 return;
821 /* check for dfs */
823 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
824 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
825 remove_do_list_queue_head();
826 continue;
829 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
830 remove_do_list_queue_head();
831 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
832 char *next_file = do_list_queue_head();
833 char *save_ch = 0;
834 if ((strlen(next_file) >= 2) &&
835 (next_file[strlen(next_file) - 1] == '*') &&
836 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
837 save_ch = next_file +
838 strlen(next_file) - 2;
839 *save_ch = '\0';
840 if (showacls) {
841 /* cwd is only used if showacls is on */
842 client_set_cwd(next_file);
845 if (!showacls) /* don't disturbe the showacls output */
846 d_printf("\n%s\n",next_file);
847 if (save_ch) {
848 *save_ch = CLI_DIRSEP_CHAR;
851 TALLOC_FREE(head);
852 TALLOC_FREE(targetpath);
854 } else {
855 /* check for dfs */
856 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
857 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
858 d_printf("%s listing %s\n",
859 cli_errstr(targetcli), targetpath);
861 TALLOC_FREE(targetpath);
862 } else {
863 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
867 in_do_list = 0;
868 reset_do_list_queue();
871 /****************************************************************************
872 Get a directory listing.
873 ****************************************************************************/
875 static int cmd_dir(void)
877 TALLOC_CTX *ctx = talloc_tos();
878 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
879 char *mask = NULL;
880 char *buf = NULL;
881 int rc = 1;
883 dir_total = 0;
884 mask = talloc_strdup(ctx, client_get_cur_dir());
885 if (!mask) {
886 return 1;
889 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
890 normalize_name(buf);
891 if (*buf == CLI_DIRSEP_CHAR) {
892 mask = talloc_strdup(ctx, buf);
893 } else {
894 mask = talloc_asprintf_append(mask, "%s", buf);
896 } else {
897 mask = talloc_asprintf_append(mask, "*");
899 if (!mask) {
900 return 1;
903 if (showacls) {
904 /* cwd is only used if showacls is on */
905 client_set_cwd(client_get_cur_dir());
908 do_list(mask, attribute, display_finfo, recurse, true);
910 rc = do_dskattr();
912 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
914 return rc;
917 /****************************************************************************
918 Get a directory listing.
919 ****************************************************************************/
921 static int cmd_du(void)
923 TALLOC_CTX *ctx = talloc_tos();
924 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
925 char *mask = NULL;
926 char *buf = NULL;
927 int rc = 1;
929 dir_total = 0;
930 mask = talloc_strdup(ctx, client_get_cur_dir());
931 if (!mask) {
932 return 1;
934 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
935 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
936 if (!mask) {
937 return 1;
941 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
942 normalize_name(buf);
943 if (*buf == CLI_DIRSEP_CHAR) {
944 mask = talloc_strdup(ctx, buf);
945 } else {
946 mask = talloc_asprintf_append(mask, "%s", buf);
948 } else {
949 mask = talloc_strdup(ctx, "*");
952 do_list(mask, attribute, do_du, recurse, true);
954 rc = do_dskattr();
956 d_printf("Total number of bytes: %.0f\n", dir_total);
958 return rc;
961 static int cmd_echo(void)
963 TALLOC_CTX *ctx = talloc_tos();
964 char *num;
965 char *data;
966 NTSTATUS status;
968 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
969 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
970 d_printf("echo <num> <data>\n");
971 return 1;
974 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
976 if (!NT_STATUS_IS_OK(status)) {
977 d_printf("echo failed: %s\n", nt_errstr(status));
978 return 1;
981 return 0;
984 /****************************************************************************
985 Get a file from rname to lname
986 ****************************************************************************/
988 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
990 int *pfd = (int *)priv;
991 if (writefile(*pfd, buf, n) == -1) {
992 return map_nt_error_from_unix(errno);
994 return NT_STATUS_OK;
997 static int do_get(const char *rname, const char *lname_in, bool reget)
999 TALLOC_CTX *ctx = talloc_tos();
1000 int handle = 0;
1001 uint16_t fnum;
1002 bool newhandle = false;
1003 struct timeval tp_start;
1004 uint16 attr;
1005 SMB_OFF_T size;
1006 off_t start = 0;
1007 SMB_OFF_T nread = 0;
1008 int rc = 0;
1009 struct cli_state *targetcli = NULL;
1010 char *targetname = NULL;
1011 char *lname = NULL;
1012 NTSTATUS status;
1014 lname = talloc_strdup(ctx, lname_in);
1015 if (!lname) {
1016 return 1;
1019 if (lowercase) {
1020 strlower_m(lname);
1023 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1024 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1025 return 1;
1028 GetTimeOfDay(&tp_start);
1030 if (!NT_STATUS_IS_OK(cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum))) {
1031 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1032 return 1;
1035 if(!strcmp(lname,"-")) {
1036 handle = fileno(stdout);
1037 } else {
1038 if (reget) {
1039 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1040 if (handle >= 0) {
1041 start = sys_lseek(handle, 0, SEEK_END);
1042 if (start == -1) {
1043 d_printf("Error seeking local file\n");
1044 return 1;
1047 } else {
1048 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1050 newhandle = true;
1052 if (handle < 0) {
1053 d_printf("Error opening local file %s\n",lname);
1054 return 1;
1058 if (!cli_qfileinfo(targetcli, fnum,
1059 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1060 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum,
1061 &attr, &size, NULL, NULL, NULL))) {
1062 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1063 return 1;
1066 DEBUG(1,("getting file %s of size %.0f as %s ",
1067 rname, (double)size, lname));
1069 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1070 writefile_sink, (void *)&handle, &nread);
1071 if (!NT_STATUS_IS_OK(status)) {
1072 d_fprintf(stderr, "parallel_read returned %s\n",
1073 nt_errstr(status));
1074 cli_close(targetcli, fnum);
1075 return 1;
1078 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1079 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1080 rc = 1;
1083 if (newhandle) {
1084 close(handle);
1087 if (archive_level >= 2 && (attr & aARCH)) {
1088 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1092 struct timeval tp_end;
1093 int this_time;
1095 GetTimeOfDay(&tp_end);
1096 this_time =
1097 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1098 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1099 get_total_time_ms += this_time;
1100 get_total_size += nread;
1102 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1103 nread / (1.024*this_time + 1.0e-4),
1104 get_total_size / (1.024*get_total_time_ms)));
1107 TALLOC_FREE(targetname);
1108 return rc;
1111 /****************************************************************************
1112 Get a file.
1113 ****************************************************************************/
1115 static int cmd_get(void)
1117 TALLOC_CTX *ctx = talloc_tos();
1118 char *lname = NULL;
1119 char *rname = NULL;
1120 char *fname = NULL;
1122 rname = talloc_strdup(ctx, client_get_cur_dir());
1123 if (!rname) {
1124 return 1;
1127 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1128 d_printf("get <filename> [localname]\n");
1129 return 1;
1131 rname = talloc_asprintf_append(rname, "%s", fname);
1132 if (!rname) {
1133 return 1;
1135 rname = clean_name(ctx, rname);
1136 if (!rname) {
1137 return 1;
1140 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1141 if (!lname) {
1142 lname = fname;
1145 return do_get(rname, lname, false);
1148 /****************************************************************************
1149 Do an mget operation on one file.
1150 ****************************************************************************/
1152 static void do_mget(file_info *finfo, const char *dir)
1154 TALLOC_CTX *ctx = talloc_tos();
1155 char *rname = NULL;
1156 char *quest = NULL;
1157 char *saved_curdir = NULL;
1158 char *mget_mask = NULL;
1159 char *new_cd = NULL;
1161 if (!finfo->name) {
1162 return;
1165 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1166 return;
1168 if (abort_mget) {
1169 d_printf("mget aborted\n");
1170 return;
1173 if (finfo->mode & aDIR) {
1174 if (asprintf(&quest,
1175 "Get directory %s? ",finfo->name) < 0) {
1176 return;
1178 } else {
1179 if (asprintf(&quest,
1180 "Get file %s? ",finfo->name) < 0) {
1181 return;
1185 if (prompt && !yesno(quest)) {
1186 SAFE_FREE(quest);
1187 return;
1189 SAFE_FREE(quest);
1191 if (!(finfo->mode & aDIR)) {
1192 rname = talloc_asprintf(ctx,
1193 "%s%s",
1194 client_get_cur_dir(),
1195 finfo->name);
1196 if (!rname) {
1197 return;
1199 do_get(rname, finfo->name, false);
1200 TALLOC_FREE(rname);
1201 return;
1204 /* handle directories */
1205 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1206 if (!saved_curdir) {
1207 return;
1210 new_cd = talloc_asprintf(ctx,
1211 "%s%s%s",
1212 client_get_cur_dir(),
1213 finfo->name,
1214 CLI_DIRSEP_STR);
1215 if (!new_cd) {
1216 return;
1218 client_set_cur_dir(new_cd);
1220 string_replace(finfo->name,'\\','/');
1221 if (lowercase) {
1222 strlower_m(finfo->name);
1225 if (!directory_exist(finfo->name) &&
1226 mkdir(finfo->name,0777) != 0) {
1227 d_printf("failed to create directory %s\n",finfo->name);
1228 client_set_cur_dir(saved_curdir);
1229 return;
1232 if (chdir(finfo->name) != 0) {
1233 d_printf("failed to chdir to directory %s\n",finfo->name);
1234 client_set_cur_dir(saved_curdir);
1235 return;
1238 mget_mask = talloc_asprintf(ctx,
1239 "%s*",
1240 client_get_cur_dir());
1242 if (!mget_mask) {
1243 return;
1246 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1247 if (chdir("..") == -1) {
1248 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1249 strerror(errno) );
1251 client_set_cur_dir(saved_curdir);
1252 TALLOC_FREE(mget_mask);
1253 TALLOC_FREE(saved_curdir);
1254 TALLOC_FREE(new_cd);
1257 /****************************************************************************
1258 View the file using the pager.
1259 ****************************************************************************/
1261 static int cmd_more(void)
1263 TALLOC_CTX *ctx = talloc_tos();
1264 char *rname = NULL;
1265 char *fname = NULL;
1266 char *lname = NULL;
1267 char *pager_cmd = NULL;
1268 const char *pager;
1269 int fd;
1270 int rc = 0;
1272 rname = talloc_strdup(ctx, client_get_cur_dir());
1273 if (!rname) {
1274 return 1;
1277 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1278 if (!lname) {
1279 return 1;
1281 fd = mkstemp(lname);
1282 if (fd == -1) {
1283 d_printf("failed to create temporary file for more\n");
1284 return 1;
1286 close(fd);
1288 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1289 d_printf("more <filename>\n");
1290 unlink(lname);
1291 return 1;
1293 rname = talloc_asprintf_append(rname, "%s", fname);
1294 if (!rname) {
1295 return 1;
1297 rname = clean_name(ctx,rname);
1298 if (!rname) {
1299 return 1;
1302 rc = do_get(rname, lname, false);
1304 pager=getenv("PAGER");
1306 pager_cmd = talloc_asprintf(ctx,
1307 "%s %s",
1308 (pager? pager:PAGER),
1309 lname);
1310 if (!pager_cmd) {
1311 return 1;
1313 if (system(pager_cmd) == -1) {
1314 d_printf("system command '%s' returned -1\n",
1315 pager_cmd);
1317 unlink(lname);
1319 return rc;
1322 /****************************************************************************
1323 Do a mget command.
1324 ****************************************************************************/
1326 static int cmd_mget(void)
1328 TALLOC_CTX *ctx = talloc_tos();
1329 uint16 attribute = aSYSTEM | aHIDDEN;
1330 char *mget_mask = NULL;
1331 char *buf = NULL;
1333 if (recurse) {
1334 attribute |= aDIR;
1337 abort_mget = false;
1339 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1340 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1341 if (!mget_mask) {
1342 return 1;
1344 if (*buf == CLI_DIRSEP_CHAR) {
1345 mget_mask = talloc_strdup(ctx, buf);
1346 } else {
1347 mget_mask = talloc_asprintf_append(mget_mask,
1348 "%s", buf);
1350 if (!mget_mask) {
1351 return 1;
1353 do_list(mget_mask, attribute, do_mget, false, true);
1356 if (mget_mask == NULL) {
1357 d_printf("nothing to mget\n");
1358 return 0;
1361 if (!*mget_mask) {
1362 mget_mask = talloc_asprintf(ctx,
1363 "%s*",
1364 client_get_cur_dir());
1365 if (!mget_mask) {
1366 return 1;
1368 do_list(mget_mask, attribute, do_mget, false, true);
1371 return 0;
1374 /****************************************************************************
1375 Make a directory of name "name".
1376 ****************************************************************************/
1378 static bool do_mkdir(const char *name)
1380 TALLOC_CTX *ctx = talloc_tos();
1381 struct cli_state *targetcli;
1382 char *targetname = NULL;
1384 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1385 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1386 return false;
1389 if (!NT_STATUS_IS_OK(cli_mkdir(targetcli, targetname))) {
1390 d_printf("%s making remote directory %s\n",
1391 cli_errstr(targetcli),name);
1392 return false;
1395 return true;
1398 /****************************************************************************
1399 Show 8.3 name of a file.
1400 ****************************************************************************/
1402 static bool do_altname(const char *name)
1404 fstring altname;
1406 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1407 d_printf("%s getting alt name for %s\n",
1408 cli_errstr(cli),name);
1409 return false;
1411 d_printf("%s\n", altname);
1413 return true;
1416 /****************************************************************************
1417 Exit client.
1418 ****************************************************************************/
1420 static int cmd_quit(void)
1422 cli_shutdown(cli);
1423 exit(0);
1424 /* NOTREACHED */
1425 return 0;
1428 /****************************************************************************
1429 Make a directory.
1430 ****************************************************************************/
1432 static int cmd_mkdir(void)
1434 TALLOC_CTX *ctx = talloc_tos();
1435 char *mask = NULL;
1436 char *buf = NULL;
1438 mask = talloc_strdup(ctx, client_get_cur_dir());
1439 if (!mask) {
1440 return 1;
1443 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1444 if (!recurse) {
1445 d_printf("mkdir <dirname>\n");
1447 return 1;
1449 mask = talloc_asprintf_append(mask, "%s", buf);
1450 if (!mask) {
1451 return 1;
1454 if (recurse) {
1455 char *ddir = NULL;
1456 char *ddir2 = NULL;
1457 struct cli_state *targetcli;
1458 char *targetname = NULL;
1459 char *p = NULL;
1460 char *saveptr;
1462 ddir2 = talloc_strdup(ctx, "");
1463 if (!ddir2) {
1464 return 1;
1467 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1468 return 1;
1471 ddir = talloc_strdup(ctx, targetname);
1472 if (!ddir) {
1473 return 1;
1475 trim_char(ddir,'.','\0');
1476 p = strtok_r(ddir, "/\\", &saveptr);
1477 while (p) {
1478 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1479 if (!ddir2) {
1480 return 1;
1482 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1483 do_mkdir(ddir2);
1485 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1486 if (!ddir2) {
1487 return 1;
1489 p = strtok_r(NULL, "/\\", &saveptr);
1491 } else {
1492 do_mkdir(mask);
1495 return 0;
1498 /****************************************************************************
1499 Show alt name.
1500 ****************************************************************************/
1502 static int cmd_altname(void)
1504 TALLOC_CTX *ctx = talloc_tos();
1505 char *name;
1506 char *buf;
1508 name = talloc_strdup(ctx, client_get_cur_dir());
1509 if (!name) {
1510 return 1;
1513 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1514 d_printf("altname <file>\n");
1515 return 1;
1517 name = talloc_asprintf_append(name, "%s", buf);
1518 if (!name) {
1519 return 1;
1521 do_altname(name);
1522 return 0;
1525 /****************************************************************************
1526 Show all info we can get
1527 ****************************************************************************/
1529 static int do_allinfo(const char *name)
1531 fstring altname;
1532 struct timespec b_time, a_time, m_time, c_time;
1533 SMB_OFF_T size;
1534 uint16_t mode;
1535 SMB_INO_T ino;
1536 NTTIME tmp;
1537 unsigned int num_streams;
1538 struct stream_struct *streams;
1539 unsigned int i;
1541 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1542 d_printf("%s getting alt name for %s\n",
1543 cli_errstr(cli),name);
1544 return false;
1546 d_printf("altname: %s\n", altname);
1548 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1549 &size, &mode, &ino)) {
1550 d_printf("%s getting pathinfo for %s\n",
1551 cli_errstr(cli),name);
1552 return false;
1555 unix_timespec_to_nt_time(&tmp, b_time);
1556 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1558 unix_timespec_to_nt_time(&tmp, a_time);
1559 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1561 unix_timespec_to_nt_time(&tmp, m_time);
1562 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1564 unix_timespec_to_nt_time(&tmp, c_time);
1565 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1567 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1568 &streams)) {
1569 d_printf("%s getting streams for %s\n",
1570 cli_errstr(cli),name);
1571 return false;
1574 for (i=0; i<num_streams; i++) {
1575 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1576 (unsigned long long)streams[i].size);
1579 return 0;
1582 /****************************************************************************
1583 Show all info we can get
1584 ****************************************************************************/
1586 static int cmd_allinfo(void)
1588 TALLOC_CTX *ctx = talloc_tos();
1589 char *name;
1590 char *buf;
1592 name = talloc_strdup(ctx, client_get_cur_dir());
1593 if (!name) {
1594 return 1;
1597 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1598 d_printf("allinfo <file>\n");
1599 return 1;
1601 name = talloc_asprintf_append(name, "%s", buf);
1602 if (!name) {
1603 return 1;
1606 do_allinfo(name);
1608 return 0;
1611 /****************************************************************************
1612 Put a single file.
1613 ****************************************************************************/
1615 static int do_put(const char *rname, const char *lname, bool reput)
1617 TALLOC_CTX *ctx = talloc_tos();
1618 uint16_t fnum;
1619 XFILE *f;
1620 SMB_OFF_T start = 0;
1621 int rc = 0;
1622 struct timeval tp_start;
1623 struct cli_state *targetcli;
1624 char *targetname = NULL;
1625 struct push_state state;
1626 NTSTATUS status;
1628 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1629 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1630 return 1;
1633 GetTimeOfDay(&tp_start);
1635 if (reput) {
1636 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1637 if (NT_STATUS_IS_OK(status)) {
1638 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1639 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1640 d_printf("getattrib: %s\n",cli_errstr(cli));
1641 return 1;
1644 } else {
1645 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1648 if (!NT_STATUS_IS_OK(status)) {
1649 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1650 return 1;
1653 /* allow files to be piped into smbclient
1654 jdblair 24.jun.98
1656 Note that in this case this function will exit(0) rather
1657 than returning. */
1658 if (!strcmp(lname, "-")) {
1659 f = x_stdin;
1660 /* size of file is not known */
1661 } else {
1662 f = x_fopen(lname,O_RDONLY, 0);
1663 if (f && reput) {
1664 if (x_tseek(f, start, SEEK_SET) == -1) {
1665 d_printf("Error seeking local file\n");
1666 x_fclose(f);
1667 return 1;
1672 if (!f) {
1673 d_printf("Error opening local file %s\n",lname);
1674 return 1;
1677 DEBUG(1,("putting file %s as %s ",lname,
1678 rname));
1680 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1682 state.f = f;
1683 state.nread = 0;
1685 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1686 &state);
1687 if (!NT_STATUS_IS_OK(status)) {
1688 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1691 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1692 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1693 if (f != x_stdin) {
1694 x_fclose(f);
1696 return 1;
1699 if (f != x_stdin) {
1700 x_fclose(f);
1704 struct timeval tp_end;
1705 int this_time;
1707 GetTimeOfDay(&tp_end);
1708 this_time =
1709 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1710 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1711 put_total_time_ms += this_time;
1712 put_total_size += state.nread;
1714 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1715 state.nread / (1.024*this_time + 1.0e-4),
1716 put_total_size / (1.024*put_total_time_ms)));
1719 if (f == x_stdin) {
1720 cli_shutdown(cli);
1721 exit(0);
1724 return rc;
1727 /****************************************************************************
1728 Put a file.
1729 ****************************************************************************/
1731 static int cmd_put(void)
1733 TALLOC_CTX *ctx = talloc_tos();
1734 char *lname;
1735 char *rname;
1736 char *buf;
1738 rname = talloc_strdup(ctx, client_get_cur_dir());
1739 if (!rname) {
1740 return 1;
1743 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1744 d_printf("put <filename>\n");
1745 return 1;
1748 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1749 rname = talloc_asprintf_append(rname, "%s", buf);
1750 } else {
1751 rname = talloc_asprintf_append(rname, "%s", lname);
1753 if (!rname) {
1754 return 1;
1757 rname = clean_name(ctx, rname);
1758 if (!rname) {
1759 return 1;
1763 SMB_STRUCT_STAT st;
1764 /* allow '-' to represent stdin
1765 jdblair, 24.jun.98 */
1766 if (!file_exist_stat(lname, &st, false) &&
1767 (strcmp(lname,"-"))) {
1768 d_printf("%s does not exist\n",lname);
1769 return 1;
1773 return do_put(rname, lname, false);
1776 /*************************************
1777 File list structure.
1778 *************************************/
1780 static struct file_list {
1781 struct file_list *prev, *next;
1782 char *file_path;
1783 bool isdir;
1784 } *file_list;
1786 /****************************************************************************
1787 Free a file_list structure.
1788 ****************************************************************************/
1790 static void free_file_list (struct file_list *l_head)
1792 struct file_list *list, *next;
1794 for (list = l_head; list; list = next) {
1795 next = list->next;
1796 DLIST_REMOVE(l_head, list);
1797 SAFE_FREE(list->file_path);
1798 SAFE_FREE(list);
1802 /****************************************************************************
1803 Seek in a directory/file list until you get something that doesn't start with
1804 the specified name.
1805 ****************************************************************************/
1807 static bool seek_list(struct file_list *list, char *name)
1809 while (list) {
1810 trim_string(list->file_path,"./","\n");
1811 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1812 return true;
1814 list = list->next;
1817 return false;
1820 /****************************************************************************
1821 Set the file selection mask.
1822 ****************************************************************************/
1824 static int cmd_select(void)
1826 TALLOC_CTX *ctx = talloc_tos();
1827 char *new_fs = NULL;
1828 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1830 if (new_fs) {
1831 client_set_fileselection(new_fs);
1832 } else {
1833 client_set_fileselection("");
1835 return 0;
1838 /****************************************************************************
1839 Recursive file matching function act as find
1840 match must be always set to true when calling this function
1841 ****************************************************************************/
1843 static int file_find(struct file_list **list, const char *directory,
1844 const char *expression, bool match)
1846 SMB_STRUCT_DIR *dir;
1847 struct file_list *entry;
1848 struct stat statbuf;
1849 int ret;
1850 char *path;
1851 bool isdir;
1852 const char *dname;
1854 dir = sys_opendir(directory);
1855 if (!dir)
1856 return -1;
1858 while ((dname = readdirname(dir))) {
1859 if (!strcmp("..", dname))
1860 continue;
1861 if (!strcmp(".", dname))
1862 continue;
1864 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1865 continue;
1868 isdir = false;
1869 if (!match || !gen_fnmatch(expression, dname)) {
1870 if (recurse) {
1871 ret = stat(path, &statbuf);
1872 if (ret == 0) {
1873 if (S_ISDIR(statbuf.st_mode)) {
1874 isdir = true;
1875 ret = file_find(list, path, expression, false);
1877 } else {
1878 d_printf("file_find: cannot stat file %s\n", path);
1881 if (ret == -1) {
1882 SAFE_FREE(path);
1883 sys_closedir(dir);
1884 return -1;
1887 entry = SMB_MALLOC_P(struct file_list);
1888 if (!entry) {
1889 d_printf("Out of memory in file_find\n");
1890 sys_closedir(dir);
1891 return -1;
1893 entry->file_path = path;
1894 entry->isdir = isdir;
1895 DLIST_ADD(*list, entry);
1896 } else {
1897 SAFE_FREE(path);
1901 sys_closedir(dir);
1902 return 0;
1905 /****************************************************************************
1906 mput some files.
1907 ****************************************************************************/
1909 static int cmd_mput(void)
1911 TALLOC_CTX *ctx = talloc_tos();
1912 char *p = NULL;
1914 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1915 int ret;
1916 struct file_list *temp_list;
1917 char *quest, *lname, *rname;
1919 file_list = NULL;
1921 ret = file_find(&file_list, ".", p, true);
1922 if (ret) {
1923 free_file_list(file_list);
1924 continue;
1927 quest = NULL;
1928 lname = NULL;
1929 rname = NULL;
1931 for (temp_list = file_list; temp_list;
1932 temp_list = temp_list->next) {
1934 SAFE_FREE(lname);
1935 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1936 continue;
1938 trim_string(lname, "./", "/");
1940 /* check if it's a directory */
1941 if (temp_list->isdir) {
1942 /* if (!recurse) continue; */
1944 SAFE_FREE(quest);
1945 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1946 break;
1948 if (prompt && !yesno(quest)) { /* No */
1949 /* Skip the directory */
1950 lname[strlen(lname)-1] = '/';
1951 if (!seek_list(temp_list, lname))
1952 break;
1953 } else { /* Yes */
1954 SAFE_FREE(rname);
1955 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1956 break;
1958 normalize_name(rname);
1959 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
1960 !do_mkdir(rname)) {
1961 DEBUG (0, ("Unable to make dir, skipping..."));
1962 /* Skip the directory */
1963 lname[strlen(lname)-1] = '/';
1964 if (!seek_list(temp_list, lname)) {
1965 break;
1969 continue;
1970 } else {
1971 SAFE_FREE(quest);
1972 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1973 break;
1975 if (prompt && !yesno(quest)) {
1976 /* No */
1977 continue;
1980 /* Yes */
1981 SAFE_FREE(rname);
1982 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1983 break;
1987 normalize_name(rname);
1989 do_put(rname, lname, false);
1991 free_file_list(file_list);
1992 SAFE_FREE(quest);
1993 SAFE_FREE(lname);
1994 SAFE_FREE(rname);
1997 return 0;
2000 /****************************************************************************
2001 Cancel a print job.
2002 ****************************************************************************/
2004 static int do_cancel(int job)
2006 if (cli_printjob_del(cli, job)) {
2007 d_printf("Job %d cancelled\n",job);
2008 return 0;
2009 } else {
2010 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
2011 return 1;
2015 /****************************************************************************
2016 Cancel a print job.
2017 ****************************************************************************/
2019 static int cmd_cancel(void)
2021 TALLOC_CTX *ctx = talloc_tos();
2022 char *buf = NULL;
2023 int job;
2025 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2026 d_printf("cancel <jobid> ...\n");
2027 return 1;
2029 do {
2030 job = atoi(buf);
2031 do_cancel(job);
2032 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2034 return 0;
2037 /****************************************************************************
2038 Print a file.
2039 ****************************************************************************/
2041 static int cmd_print(void)
2043 TALLOC_CTX *ctx = talloc_tos();
2044 char *lname = NULL;
2045 char *rname = NULL;
2046 char *p = NULL;
2048 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2049 d_printf("print <filename>\n");
2050 return 1;
2053 rname = talloc_strdup(ctx, lname);
2054 if (!rname) {
2055 return 1;
2057 p = strrchr_m(rname,'/');
2058 if (p) {
2059 rname = talloc_asprintf(ctx,
2060 "%s-%d",
2061 p+1,
2062 (int)sys_getpid());
2064 if (strequal(lname,"-")) {
2065 rname = talloc_asprintf(ctx,
2066 "stdin-%d",
2067 (int)sys_getpid());
2069 if (!rname) {
2070 return 1;
2073 return do_put(rname, lname, false);
2076 /****************************************************************************
2077 Show a print queue entry.
2078 ****************************************************************************/
2080 static void queue_fn(struct print_job_info *p)
2082 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2085 /****************************************************************************
2086 Show a print queue.
2087 ****************************************************************************/
2089 static int cmd_queue(void)
2091 cli_print_queue(cli, queue_fn);
2092 return 0;
2095 /****************************************************************************
2096 Delete some files.
2097 ****************************************************************************/
2099 static void do_del(file_info *finfo, const char *dir)
2101 TALLOC_CTX *ctx = talloc_tos();
2102 char *mask = NULL;
2104 mask = talloc_asprintf(ctx,
2105 "%s%c%s",
2106 dir,
2107 CLI_DIRSEP_CHAR,
2108 finfo->name);
2109 if (!mask) {
2110 return;
2113 if (finfo->mode & aDIR) {
2114 TALLOC_FREE(mask);
2115 return;
2118 if (!NT_STATUS_IS_OK(cli_unlink(finfo->cli, mask, aSYSTEM | aHIDDEN))) {
2119 d_printf("%s deleting remote file %s\n",
2120 cli_errstr(finfo->cli),mask);
2122 TALLOC_FREE(mask);
2125 /****************************************************************************
2126 Delete some files.
2127 ****************************************************************************/
2129 static int cmd_del(void)
2131 TALLOC_CTX *ctx = talloc_tos();
2132 char *mask = NULL;
2133 char *buf = NULL;
2134 uint16 attribute = aSYSTEM | aHIDDEN;
2136 if (recurse) {
2137 attribute |= aDIR;
2140 mask = talloc_strdup(ctx, client_get_cur_dir());
2141 if (!mask) {
2142 return 1;
2144 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2145 d_printf("del <filename>\n");
2146 return 1;
2148 mask = talloc_asprintf_append(mask, "%s", buf);
2149 if (!mask) {
2150 return 1;
2153 do_list(mask,attribute,do_del,false,false);
2154 return 0;
2157 /****************************************************************************
2158 Wildcard delete some files.
2159 ****************************************************************************/
2161 static int cmd_wdel(void)
2163 TALLOC_CTX *ctx = talloc_tos();
2164 char *mask = NULL;
2165 char *buf = NULL;
2166 uint16 attribute;
2167 struct cli_state *targetcli;
2168 char *targetname = NULL;
2170 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2171 d_printf("wdel 0x<attrib> <wcard>\n");
2172 return 1;
2175 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2177 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2178 d_printf("wdel 0x<attrib> <wcard>\n");
2179 return 1;
2182 mask = talloc_asprintf(ctx, "%s%s",
2183 client_get_cur_dir(),
2184 buf);
2185 if (!mask) {
2186 return 1;
2189 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2190 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2191 return 1;
2194 if (!NT_STATUS_IS_OK(cli_unlink(targetcli, targetname, attribute))) {
2195 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2197 return 0;
2200 /****************************************************************************
2201 ****************************************************************************/
2203 static int cmd_open(void)
2205 TALLOC_CTX *ctx = talloc_tos();
2206 char *mask = NULL;
2207 char *buf = NULL;
2208 char *targetname = NULL;
2209 struct cli_state *targetcli;
2210 uint16_t fnum = (uint16_t)-1;
2212 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2213 d_printf("open <filename>\n");
2214 return 1;
2216 mask = talloc_asprintf(ctx,
2217 "%s%s",
2218 client_get_cur_dir(),
2219 buf);
2220 if (!mask) {
2221 return 1;
2224 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2225 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2226 return 1;
2229 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2230 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2231 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2232 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2233 FILE_READ_DATA, 0,
2234 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2235 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2236 } else {
2237 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2239 } else {
2240 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2242 return 0;
2245 static int cmd_posix_encrypt(void)
2247 TALLOC_CTX *ctx = talloc_tos();
2248 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2250 if (cli->use_kerberos) {
2251 status = cli_gss_smb_encryption_start(cli);
2252 } else {
2253 char *domain = NULL;
2254 char *user = NULL;
2255 char *password = NULL;
2257 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2258 d_printf("posix_encrypt domain user password\n");
2259 return 1;
2262 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2263 d_printf("posix_encrypt domain user password\n");
2264 return 1;
2267 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2268 d_printf("posix_encrypt domain user password\n");
2269 return 1;
2272 status = cli_raw_ntlm_smb_encryption_start(cli,
2273 user,
2274 password,
2275 domain);
2278 if (!NT_STATUS_IS_OK(status)) {
2279 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2280 } else {
2281 d_printf("encryption on\n");
2282 smb_encrypt = true;
2285 return 0;
2288 /****************************************************************************
2289 ****************************************************************************/
2291 static int cmd_posix_open(void)
2293 TALLOC_CTX *ctx = talloc_tos();
2294 char *mask = NULL;
2295 char *buf = NULL;
2296 char *targetname = NULL;
2297 struct cli_state *targetcli;
2298 mode_t mode;
2299 uint16_t fnum;
2301 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2302 d_printf("posix_open <filename> 0<mode>\n");
2303 return 1;
2305 mask = talloc_asprintf(ctx,
2306 "%s%s",
2307 client_get_cur_dir(),
2308 buf);
2309 if (!mask) {
2310 return 1;
2313 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2314 d_printf("posix_open <filename> 0<mode>\n");
2315 return 1;
2317 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2319 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2320 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2321 return 1;
2324 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2325 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2326 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2327 } else {
2328 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2330 } else {
2331 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2334 return 0;
2337 static int cmd_posix_mkdir(void)
2339 TALLOC_CTX *ctx = talloc_tos();
2340 char *mask = NULL;
2341 char *buf = NULL;
2342 char *targetname = NULL;
2343 struct cli_state *targetcli;
2344 mode_t mode;
2346 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2347 d_printf("posix_mkdir <filename> 0<mode>\n");
2348 return 1;
2350 mask = talloc_asprintf(ctx,
2351 "%s%s",
2352 client_get_cur_dir(),
2353 buf);
2354 if (!mask) {
2355 return 1;
2358 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2359 d_printf("posix_mkdir <filename> 0<mode>\n");
2360 return 1;
2362 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2364 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2365 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2366 return 1;
2369 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2370 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2371 } else {
2372 d_printf("posix_mkdir created directory %s\n", targetname);
2374 return 0;
2377 static int cmd_posix_unlink(void)
2379 TALLOC_CTX *ctx = talloc_tos();
2380 char *mask = NULL;
2381 char *buf = NULL;
2382 char *targetname = NULL;
2383 struct cli_state *targetcli;
2385 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2386 d_printf("posix_unlink <filename>\n");
2387 return 1;
2389 mask = talloc_asprintf(ctx,
2390 "%s%s",
2391 client_get_cur_dir(),
2392 buf);
2393 if (!mask) {
2394 return 1;
2397 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2398 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2399 return 1;
2402 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2403 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2404 } else {
2405 d_printf("posix_unlink deleted file %s\n", targetname);
2408 return 0;
2411 static int cmd_posix_rmdir(void)
2413 TALLOC_CTX *ctx = talloc_tos();
2414 char *mask = NULL;
2415 char *buf = NULL;
2416 char *targetname = NULL;
2417 struct cli_state *targetcli;
2419 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2420 d_printf("posix_rmdir <filename>\n");
2421 return 1;
2423 mask = talloc_asprintf(ctx,
2424 "%s%s",
2425 client_get_cur_dir(),
2426 buf);
2427 if (!mask) {
2428 return 1;
2431 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2432 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2433 return 1;
2436 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2437 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2438 } else {
2439 d_printf("posix_rmdir deleted directory %s\n", targetname);
2442 return 0;
2445 static int cmd_close(void)
2447 TALLOC_CTX *ctx = talloc_tos();
2448 char *buf = NULL;
2449 int fnum;
2451 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2452 d_printf("close <fnum>\n");
2453 return 1;
2456 fnum = atoi(buf);
2457 /* We really should use the targetcli here.... */
2458 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2459 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2460 return 1;
2462 return 0;
2465 static int cmd_posix(void)
2467 TALLOC_CTX *ctx = talloc_tos();
2468 uint16 major, minor;
2469 uint32 caplow, caphigh;
2470 char *caps;
2471 NTSTATUS status;
2473 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2474 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2475 return 1;
2478 status = cli_unix_extensions_version(cli, &major, &minor, &caplow,
2479 &caphigh);
2480 if (!NT_STATUS_IS_OK(status)) {
2481 d_printf("Can't get UNIX CIFS extensions version from "
2482 "server: %s\n", nt_errstr(status));
2483 return 1;
2486 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2488 caps = talloc_strdup(ctx, "");
2489 if (!caps) {
2490 return 1;
2492 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2493 caps = talloc_asprintf_append(caps, "locks ");
2494 if (!caps) {
2495 return 1;
2498 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2499 caps = talloc_asprintf_append(caps, "acls ");
2500 if (!caps) {
2501 return 1;
2504 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2505 caps = talloc_asprintf_append(caps, "eas ");
2506 if (!caps) {
2507 return 1;
2510 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2511 caps = talloc_asprintf_append(caps, "pathnames ");
2512 if (!caps) {
2513 return 1;
2516 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2517 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2518 if (!caps) {
2519 return 1;
2522 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2523 caps = talloc_asprintf_append(caps, "large_read ");
2524 if (!caps) {
2525 return 1;
2528 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2529 caps = talloc_asprintf_append(caps, "large_write ");
2530 if (!caps) {
2531 return 1;
2534 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2535 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2536 if (!caps) {
2537 return 1;
2540 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2541 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2542 if (!caps) {
2543 return 1;
2547 if (*caps && caps[strlen(caps)-1] == ' ') {
2548 caps[strlen(caps)-1] = '\0';
2551 d_printf("Server supports CIFS capabilities %s\n", caps);
2553 status = cli_set_unix_extensions_capabilities(cli, major, minor,
2554 caplow, caphigh);
2555 if (!NT_STATUS_IS_OK(status)) {
2556 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n",
2557 nt_errstr(status));
2558 return 1;
2561 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2562 CLI_DIRSEP_CHAR = '/';
2563 *CLI_DIRSEP_STR = '/';
2564 client_set_cur_dir(CLI_DIRSEP_STR);
2567 return 0;
2570 static int cmd_lock(void)
2572 TALLOC_CTX *ctx = talloc_tos();
2573 char *buf = NULL;
2574 uint64_t start, len;
2575 enum brl_type lock_type;
2576 int fnum;
2578 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2579 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2580 return 1;
2582 fnum = atoi(buf);
2584 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2585 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2586 return 1;
2589 if (*buf == 'r' || *buf == 'R') {
2590 lock_type = READ_LOCK;
2591 } else if (*buf == 'w' || *buf == 'W') {
2592 lock_type = WRITE_LOCK;
2593 } else {
2594 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2595 return 1;
2598 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2599 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2600 return 1;
2603 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2605 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2606 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2607 return 1;
2610 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2612 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2613 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2616 return 0;
2619 static int cmd_unlock(void)
2621 TALLOC_CTX *ctx = talloc_tos();
2622 char *buf = NULL;
2623 uint64_t start, len;
2624 int fnum;
2626 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2627 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2628 return 1;
2630 fnum = atoi(buf);
2632 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2633 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2634 return 1;
2637 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2639 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2640 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2641 return 1;
2644 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2646 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2647 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2650 return 0;
2654 /****************************************************************************
2655 Remove a directory.
2656 ****************************************************************************/
2658 static int cmd_rmdir(void)
2660 TALLOC_CTX *ctx = talloc_tos();
2661 char *mask = NULL;
2662 char *buf = NULL;
2663 char *targetname = NULL;
2664 struct cli_state *targetcli;
2666 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2667 d_printf("rmdir <dirname>\n");
2668 return 1;
2670 mask = talloc_asprintf(ctx,
2671 "%s%s",
2672 client_get_cur_dir(),
2673 buf);
2674 if (!mask) {
2675 return 1;
2678 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2679 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2680 return 1;
2683 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2684 d_printf("%s removing remote directory file %s\n",
2685 cli_errstr(targetcli),mask);
2688 return 0;
2691 /****************************************************************************
2692 UNIX hardlink.
2693 ****************************************************************************/
2695 static int cmd_link(void)
2697 TALLOC_CTX *ctx = talloc_tos();
2698 char *oldname = NULL;
2699 char *newname = NULL;
2700 char *buf = NULL;
2701 char *buf2 = NULL;
2702 char *targetname = NULL;
2703 struct cli_state *targetcli;
2705 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2706 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2707 d_printf("link <oldname> <newname>\n");
2708 return 1;
2710 oldname = talloc_asprintf(ctx,
2711 "%s%s",
2712 client_get_cur_dir(),
2713 buf);
2714 if (!oldname) {
2715 return 1;
2717 newname = talloc_asprintf(ctx,
2718 "%s%s",
2719 client_get_cur_dir(),
2720 buf2);
2721 if (!newname) {
2722 return 1;
2725 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2726 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2727 return 1;
2730 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2731 d_printf("Server doesn't support UNIX CIFS calls.\n");
2732 return 1;
2735 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2736 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2737 return 1;
2739 return 0;
2742 /****************************************************************************
2743 UNIX readlink.
2744 ****************************************************************************/
2746 static int cmd_readlink(void)
2748 TALLOC_CTX *ctx = talloc_tos();
2749 char *name= NULL;
2750 char *buf = NULL;
2751 char *targetname = NULL;
2752 char linkname[PATH_MAX+1];
2753 struct cli_state *targetcli;
2755 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2756 d_printf("readlink <name>\n");
2757 return 1;
2759 name = talloc_asprintf(ctx,
2760 "%s%s",
2761 client_get_cur_dir(),
2762 buf);
2763 if (!name) {
2764 return 1;
2767 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2768 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2769 return 1;
2772 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2773 d_printf("Server doesn't support UNIX CIFS calls.\n");
2774 return 1;
2777 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2778 linkname, PATH_MAX+1))) {
2779 d_printf("%s readlink on file %s\n",
2780 cli_errstr(targetcli), name);
2781 return 1;
2784 d_printf("%s -> %s\n", name, linkname);
2786 return 0;
2790 /****************************************************************************
2791 UNIX symlink.
2792 ****************************************************************************/
2794 static int cmd_symlink(void)
2796 TALLOC_CTX *ctx = talloc_tos();
2797 char *oldname = NULL;
2798 char *newname = NULL;
2799 char *buf = NULL;
2800 char *buf2 = NULL;
2801 char *targetname = NULL;
2802 struct cli_state *targetcli;
2804 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2805 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2806 d_printf("symlink <oldname> <newname>\n");
2807 return 1;
2809 oldname = talloc_asprintf(ctx,
2810 "%s%s",
2811 client_get_cur_dir(),
2812 buf);
2813 if (!oldname) {
2814 return 1;
2816 newname = talloc_asprintf(ctx,
2817 "%s%s",
2818 client_get_cur_dir(),
2819 buf2);
2820 if (!newname) {
2821 return 1;
2824 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2825 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2826 return 1;
2829 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2830 d_printf("Server doesn't support UNIX CIFS calls.\n");
2831 return 1;
2834 if (!NT_STATUS_IS_OK(cli_posix_symlink(targetcli, targetname, newname))) {
2835 d_printf("%s symlinking files (%s -> %s)\n",
2836 cli_errstr(targetcli), newname, targetname);
2837 return 1;
2840 return 0;
2843 /****************************************************************************
2844 UNIX chmod.
2845 ****************************************************************************/
2847 static int cmd_chmod(void)
2849 TALLOC_CTX *ctx = talloc_tos();
2850 char *src = NULL;
2851 char *buf = NULL;
2852 char *buf2 = NULL;
2853 char *targetname = NULL;
2854 struct cli_state *targetcli;
2855 mode_t mode;
2857 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2858 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2859 d_printf("chmod mode file\n");
2860 return 1;
2862 src = talloc_asprintf(ctx,
2863 "%s%s",
2864 client_get_cur_dir(),
2865 buf2);
2866 if (!src) {
2867 return 1;
2870 mode = (mode_t)strtol(buf, NULL, 8);
2872 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2873 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2874 return 1;
2877 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2878 d_printf("Server doesn't support UNIX CIFS calls.\n");
2879 return 1;
2882 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
2883 d_printf("%s chmod file %s 0%o\n",
2884 cli_errstr(targetcli), src, (unsigned int)mode);
2885 return 1;
2888 return 0;
2891 static const char *filetype_to_str(mode_t mode)
2893 if (S_ISREG(mode)) {
2894 return "regular file";
2895 } else if (S_ISDIR(mode)) {
2896 return "directory";
2897 } else
2898 #ifdef S_ISCHR
2899 if (S_ISCHR(mode)) {
2900 return "character device";
2901 } else
2902 #endif
2903 #ifdef S_ISBLK
2904 if (S_ISBLK(mode)) {
2905 return "block device";
2906 } else
2907 #endif
2908 #ifdef S_ISFIFO
2909 if (S_ISFIFO(mode)) {
2910 return "fifo";
2911 } else
2912 #endif
2913 #ifdef S_ISLNK
2914 if (S_ISLNK(mode)) {
2915 return "symbolic link";
2916 } else
2917 #endif
2918 #ifdef S_ISSOCK
2919 if (S_ISSOCK(mode)) {
2920 return "socket";
2921 } else
2922 #endif
2923 return "";
2926 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2928 if (m & bt) {
2929 return ret;
2930 } else {
2931 return '-';
2935 static char *unix_mode_to_str(char *s, mode_t m)
2937 char *p = s;
2938 const char *str = filetype_to_str(m);
2940 switch(str[0]) {
2941 case 'd':
2942 *p++ = 'd';
2943 break;
2944 case 'c':
2945 *p++ = 'c';
2946 break;
2947 case 'b':
2948 *p++ = 'b';
2949 break;
2950 case 'f':
2951 *p++ = 'p';
2952 break;
2953 case 's':
2954 *p++ = str[1] == 'y' ? 'l' : 's';
2955 break;
2956 case 'r':
2957 default:
2958 *p++ = '-';
2959 break;
2961 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2962 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2963 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2964 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2965 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2966 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2967 *p++ = rwx_to_str(m, S_IROTH, 'r');
2968 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2969 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2970 *p++ = '\0';
2971 return s;
2974 /****************************************************************************
2975 Utility function for UNIX getfacl.
2976 ****************************************************************************/
2978 static char *perms_to_string(fstring permstr, unsigned char perms)
2980 fstrcpy(permstr, "---");
2981 if (perms & SMB_POSIX_ACL_READ) {
2982 permstr[0] = 'r';
2984 if (perms & SMB_POSIX_ACL_WRITE) {
2985 permstr[1] = 'w';
2987 if (perms & SMB_POSIX_ACL_EXECUTE) {
2988 permstr[2] = 'x';
2990 return permstr;
2993 /****************************************************************************
2994 UNIX getfacl.
2995 ****************************************************************************/
2997 static int cmd_getfacl(void)
2999 TALLOC_CTX *ctx = talloc_tos();
3000 char *src = NULL;
3001 char *name = NULL;
3002 char *targetname = NULL;
3003 struct cli_state *targetcli;
3004 uint16 major, minor;
3005 uint32 caplow, caphigh;
3006 char *retbuf = NULL;
3007 size_t rb_size = 0;
3008 SMB_STRUCT_STAT sbuf;
3009 uint16 num_file_acls = 0;
3010 uint16 num_dir_acls = 0;
3011 uint16 i;
3012 NTSTATUS status;
3014 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3015 d_printf("getfacl filename\n");
3016 return 1;
3018 src = talloc_asprintf(ctx,
3019 "%s%s",
3020 client_get_cur_dir(),
3021 name);
3022 if (!src) {
3023 return 1;
3026 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3027 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3028 return 1;
3031 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3032 d_printf("Server doesn't support UNIX CIFS calls.\n");
3033 return 1;
3036 status = cli_unix_extensions_version(targetcli, &major, &minor,
3037 &caplow, &caphigh);
3038 if (!NT_STATUS_IS_OK(status)) {
3039 d_printf("Can't get UNIX CIFS version from server: %s.\n",
3040 nt_errstr(status));
3041 return 1;
3044 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3045 d_printf("This server supports UNIX extensions "
3046 "but doesn't support POSIX ACLs.\n");
3047 return 1;
3050 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3051 d_printf("%s getfacl doing a stat on file %s\n",
3052 cli_errstr(targetcli), src);
3053 return 1;
3056 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3057 d_printf("%s getfacl file %s\n",
3058 cli_errstr(targetcli), src);
3059 return 1;
3062 /* ToDo : Print out the ACL values. */
3063 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3064 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3065 src, (unsigned int)CVAL(retbuf,0) );
3066 return 1;
3069 num_file_acls = SVAL(retbuf,2);
3070 num_dir_acls = SVAL(retbuf,4);
3071 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3072 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3073 src,
3074 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3075 (unsigned int)rb_size);
3076 return 1;
3079 d_printf("# file: %s\n", src);
3080 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3082 if (num_file_acls == 0 && num_dir_acls == 0) {
3083 d_printf("No acls found.\n");
3086 for (i = 0; i < num_file_acls; i++) {
3087 uint32 uorg;
3088 fstring permstring;
3089 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3090 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3092 switch(tagtype) {
3093 case SMB_POSIX_ACL_USER_OBJ:
3094 d_printf("user::");
3095 break;
3096 case SMB_POSIX_ACL_USER:
3097 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3098 d_printf("user:%u:", uorg);
3099 break;
3100 case SMB_POSIX_ACL_GROUP_OBJ:
3101 d_printf("group::");
3102 break;
3103 case SMB_POSIX_ACL_GROUP:
3104 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3105 d_printf("group:%u:", uorg);
3106 break;
3107 case SMB_POSIX_ACL_MASK:
3108 d_printf("mask::");
3109 break;
3110 case SMB_POSIX_ACL_OTHER:
3111 d_printf("other::");
3112 break;
3113 default:
3114 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3115 src, (unsigned int)tagtype );
3116 SAFE_FREE(retbuf);
3117 return 1;
3120 d_printf("%s\n", perms_to_string(permstring, perms));
3123 for (i = 0; i < num_dir_acls; i++) {
3124 uint32 uorg;
3125 fstring permstring;
3126 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3127 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3129 switch(tagtype) {
3130 case SMB_POSIX_ACL_USER_OBJ:
3131 d_printf("default:user::");
3132 break;
3133 case SMB_POSIX_ACL_USER:
3134 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3135 d_printf("default:user:%u:", uorg);
3136 break;
3137 case SMB_POSIX_ACL_GROUP_OBJ:
3138 d_printf("default:group::");
3139 break;
3140 case SMB_POSIX_ACL_GROUP:
3141 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3142 d_printf("default:group:%u:", uorg);
3143 break;
3144 case SMB_POSIX_ACL_MASK:
3145 d_printf("default:mask::");
3146 break;
3147 case SMB_POSIX_ACL_OTHER:
3148 d_printf("default:other::");
3149 break;
3150 default:
3151 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3152 src, (unsigned int)tagtype );
3153 SAFE_FREE(retbuf);
3154 return 1;
3157 d_printf("%s\n", perms_to_string(permstring, perms));
3160 return 0;
3163 /****************************************************************************
3164 UNIX stat.
3165 ****************************************************************************/
3167 static int cmd_stat(void)
3169 TALLOC_CTX *ctx = talloc_tos();
3170 char *src = NULL;
3171 char *name = NULL;
3172 char *targetname = NULL;
3173 struct cli_state *targetcli;
3174 fstring mode_str;
3175 SMB_STRUCT_STAT sbuf;
3176 struct tm *lt;
3177 time_t tmp_time;
3179 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3180 d_printf("stat file\n");
3181 return 1;
3183 src = talloc_asprintf(ctx,
3184 "%s%s",
3185 client_get_cur_dir(),
3186 name);
3187 if (!src) {
3188 return 1;
3191 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3192 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3193 return 1;
3196 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3197 d_printf("Server doesn't support UNIX CIFS calls.\n");
3198 return 1;
3201 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3202 d_printf("%s stat file %s\n",
3203 cli_errstr(targetcli), src);
3204 return 1;
3207 /* Print out the stat values. */
3208 d_printf("File: %s\n", src);
3209 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3210 (double)sbuf.st_ex_size,
3211 (unsigned int)sbuf.st_ex_blocks,
3212 filetype_to_str(sbuf.st_ex_mode));
3214 #if defined(S_ISCHR) && defined(S_ISBLK)
3215 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3216 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3217 (double)sbuf.st_ex_ino,
3218 (unsigned int)sbuf.st_ex_nlink,
3219 unix_dev_major(sbuf.st_ex_rdev),
3220 unix_dev_minor(sbuf.st_ex_rdev));
3221 } else
3222 #endif
3223 d_printf("Inode: %.0f\tLinks: %u\n",
3224 (double)sbuf.st_ex_ino,
3225 (unsigned int)sbuf.st_ex_nlink);
3227 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3228 ((int)sbuf.st_ex_mode & 0777),
3229 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3230 (unsigned int)sbuf.st_ex_uid,
3231 (unsigned int)sbuf.st_ex_gid);
3233 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3234 lt = localtime(&tmp_time);
3235 if (lt) {
3236 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3237 } else {
3238 fstrcpy(mode_str, "unknown");
3240 d_printf("Access: %s\n", mode_str);
3242 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3243 lt = localtime(&tmp_time);
3244 if (lt) {
3245 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3246 } else {
3247 fstrcpy(mode_str, "unknown");
3249 d_printf("Modify: %s\n", mode_str);
3251 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3252 lt = localtime(&tmp_time);
3253 if (lt) {
3254 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3255 } else {
3256 fstrcpy(mode_str, "unknown");
3258 d_printf("Change: %s\n", mode_str);
3260 return 0;
3264 /****************************************************************************
3265 UNIX chown.
3266 ****************************************************************************/
3268 static int cmd_chown(void)
3270 TALLOC_CTX *ctx = talloc_tos();
3271 char *src = NULL;
3272 uid_t uid;
3273 gid_t gid;
3274 char *buf, *buf2, *buf3;
3275 struct cli_state *targetcli;
3276 char *targetname = NULL;
3278 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3279 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3280 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3281 d_printf("chown uid gid file\n");
3282 return 1;
3285 uid = (uid_t)atoi(buf);
3286 gid = (gid_t)atoi(buf2);
3288 src = talloc_asprintf(ctx,
3289 "%s%s",
3290 client_get_cur_dir(),
3291 buf3);
3292 if (!src) {
3293 return 1;
3295 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3296 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3297 return 1;
3300 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3301 d_printf("Server doesn't support UNIX CIFS calls.\n");
3302 return 1;
3305 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3306 d_printf("%s chown file %s uid=%d, gid=%d\n",
3307 cli_errstr(targetcli), src, (int)uid, (int)gid);
3308 return 1;
3311 return 0;
3314 /****************************************************************************
3315 Rename some file.
3316 ****************************************************************************/
3318 static int cmd_rename(void)
3320 TALLOC_CTX *ctx = talloc_tos();
3321 char *src, *dest;
3322 char *buf, *buf2;
3323 struct cli_state *targetcli;
3324 char *targetsrc;
3325 char *targetdest;
3327 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3328 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3329 d_printf("rename <src> <dest>\n");
3330 return 1;
3333 src = talloc_asprintf(ctx,
3334 "%s%s",
3335 client_get_cur_dir(),
3336 buf);
3337 if (!src) {
3338 return 1;
3341 dest = talloc_asprintf(ctx,
3342 "%s%s",
3343 client_get_cur_dir(),
3344 buf2);
3345 if (!dest) {
3346 return 1;
3349 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3350 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3351 return 1;
3354 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3355 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3356 return 1;
3359 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3360 d_printf("%s renaming files %s -> %s \n",
3361 cli_errstr(targetcli),
3362 targetsrc,
3363 targetdest);
3364 return 1;
3367 return 0;
3370 /****************************************************************************
3371 Print the volume name.
3372 ****************************************************************************/
3374 static int cmd_volume(void)
3376 fstring volname;
3377 uint32 serial_num;
3378 time_t create_date;
3380 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3381 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3382 return 1;
3385 d_printf("Volume: |%s| serial number 0x%x\n",
3386 volname, (unsigned int)serial_num);
3387 return 0;
3390 /****************************************************************************
3391 Hard link files using the NT call.
3392 ****************************************************************************/
3394 static int cmd_hardlink(void)
3396 TALLOC_CTX *ctx = talloc_tos();
3397 char *src, *dest;
3398 char *buf, *buf2;
3399 struct cli_state *targetcli;
3400 char *targetname;
3402 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3403 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3404 d_printf("hardlink <src> <dest>\n");
3405 return 1;
3408 src = talloc_asprintf(ctx,
3409 "%s%s",
3410 client_get_cur_dir(),
3411 buf);
3412 if (!src) {
3413 return 1;
3416 dest = talloc_asprintf(ctx,
3417 "%s%s",
3418 client_get_cur_dir(),
3419 buf2);
3420 if (!dest) {
3421 return 1;
3424 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3425 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3426 return 1;
3429 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3430 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3431 return 1;
3434 return 0;
3437 /****************************************************************************
3438 Toggle the prompt flag.
3439 ****************************************************************************/
3441 static int cmd_prompt(void)
3443 prompt = !prompt;
3444 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3445 return 1;
3448 /****************************************************************************
3449 Set the newer than time.
3450 ****************************************************************************/
3452 static int cmd_newer(void)
3454 TALLOC_CTX *ctx = talloc_tos();
3455 char *buf;
3456 bool ok;
3457 SMB_STRUCT_STAT sbuf;
3459 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3460 if (ok && (sys_stat(buf, &sbuf, false) == 0)) {
3461 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3462 DEBUG(1,("Getting files newer than %s",
3463 time_to_asc(newer_than)));
3464 } else {
3465 newer_than = 0;
3468 if (ok && newer_than == 0) {
3469 d_printf("Error setting newer-than time\n");
3470 return 1;
3473 return 0;
3476 /****************************************************************************
3477 Set the archive level.
3478 ****************************************************************************/
3480 static int cmd_archive(void)
3482 TALLOC_CTX *ctx = talloc_tos();
3483 char *buf;
3485 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3486 archive_level = atoi(buf);
3487 } else {
3488 d_printf("Archive level is %d\n",archive_level);
3491 return 0;
3494 /****************************************************************************
3495 Toggle the lowercaseflag.
3496 ****************************************************************************/
3498 static int cmd_lowercase(void)
3500 lowercase = !lowercase;
3501 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3502 return 0;
3505 /****************************************************************************
3506 Toggle the case sensitive flag.
3507 ****************************************************************************/
3509 static int cmd_setcase(void)
3511 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3513 cli_set_case_sensitive(cli, !orig_case_sensitive);
3514 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3515 "on":"off"));
3516 return 0;
3519 /****************************************************************************
3520 Toggle the showacls flag.
3521 ****************************************************************************/
3523 static int cmd_showacls(void)
3525 showacls = !showacls;
3526 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3527 return 0;
3531 /****************************************************************************
3532 Toggle the recurse flag.
3533 ****************************************************************************/
3535 static int cmd_recurse(void)
3537 recurse = !recurse;
3538 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3539 return 0;
3542 /****************************************************************************
3543 Toggle the translate flag.
3544 ****************************************************************************/
3546 static int cmd_translate(void)
3548 translation = !translation;
3549 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3550 translation?"on":"off"));
3551 return 0;
3554 /****************************************************************************
3555 Do the lcd command.
3556 ****************************************************************************/
3558 static int cmd_lcd(void)
3560 TALLOC_CTX *ctx = talloc_tos();
3561 char *buf;
3562 char *d;
3564 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3565 if (chdir(buf) == -1) {
3566 d_printf("chdir to %s failed (%s)\n",
3567 buf, strerror(errno));
3570 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3571 if (!d) {
3572 return 1;
3574 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3575 return 0;
3578 /****************************************************************************
3579 Get a file restarting at end of local file.
3580 ****************************************************************************/
3582 static int cmd_reget(void)
3584 TALLOC_CTX *ctx = talloc_tos();
3585 char *local_name = NULL;
3586 char *remote_name = NULL;
3587 char *fname = NULL;
3588 char *p = NULL;
3590 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3591 if (!remote_name) {
3592 return 1;
3595 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3596 d_printf("reget <filename>\n");
3597 return 1;
3599 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3600 if (!remote_name) {
3601 return 1;
3603 remote_name = clean_name(ctx,remote_name);
3604 if (!remote_name) {
3605 return 1;
3608 local_name = fname;
3609 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3610 if (p) {
3611 local_name = p;
3614 return do_get(remote_name, local_name, true);
3617 /****************************************************************************
3618 Put a file restarting at end of local file.
3619 ****************************************************************************/
3621 static int cmd_reput(void)
3623 TALLOC_CTX *ctx = talloc_tos();
3624 char *local_name = NULL;
3625 char *remote_name = NULL;
3626 char *buf;
3627 SMB_STRUCT_STAT st;
3629 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3630 if (!remote_name) {
3631 return 1;
3634 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3635 d_printf("reput <filename>\n");
3636 return 1;
3639 if (!file_exist_stat(local_name, &st, false)) {
3640 d_printf("%s does not exist\n", local_name);
3641 return 1;
3644 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3645 remote_name = talloc_asprintf_append(remote_name,
3646 "%s", buf);
3647 } else {
3648 remote_name = talloc_asprintf_append(remote_name,
3649 "%s", local_name);
3651 if (!remote_name) {
3652 return 1;
3655 remote_name = clean_name(ctx, remote_name);
3656 if (!remote_name) {
3657 return 1;
3660 return do_put(remote_name, local_name, true);
3663 /****************************************************************************
3664 List a share name.
3665 ****************************************************************************/
3667 static void browse_fn(const char *name, uint32 m,
3668 const char *comment, void *state)
3670 const char *typestr = "";
3672 switch (m & 7) {
3673 case STYPE_DISKTREE:
3674 typestr = "Disk";
3675 break;
3676 case STYPE_PRINTQ:
3677 typestr = "Printer";
3678 break;
3679 case STYPE_DEVICE:
3680 typestr = "Device";
3681 break;
3682 case STYPE_IPC:
3683 typestr = "IPC";
3684 break;
3686 /* FIXME: If the remote machine returns non-ascii characters
3687 in any of these fields, they can corrupt the output. We
3688 should remove them. */
3689 if (!grepable) {
3690 d_printf("\t%-15s %-10.10s%s\n",
3691 name,typestr,comment);
3692 } else {
3693 d_printf ("%s|%s|%s\n",typestr,name,comment);
3697 static bool browse_host_rpc(bool sort)
3699 NTSTATUS status;
3700 struct rpc_pipe_client *pipe_hnd = NULL;
3701 TALLOC_CTX *frame = talloc_stackframe();
3702 WERROR werr;
3703 struct srvsvc_NetShareInfoCtr info_ctr;
3704 struct srvsvc_NetShareCtr1 ctr1;
3705 uint32_t resume_handle = 0;
3706 uint32_t total_entries = 0;
3707 int i;
3709 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3710 &pipe_hnd);
3712 if (!NT_STATUS_IS_OK(status)) {
3713 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3714 nt_errstr(status)));
3715 TALLOC_FREE(frame);
3716 return false;
3719 ZERO_STRUCT(info_ctr);
3720 ZERO_STRUCT(ctr1);
3722 info_ctr.level = 1;
3723 info_ctr.ctr.ctr1 = &ctr1;
3725 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3726 pipe_hnd->desthost,
3727 &info_ctr,
3728 0xffffffff,
3729 &total_entries,
3730 &resume_handle,
3731 &werr);
3733 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3734 TALLOC_FREE(pipe_hnd);
3735 TALLOC_FREE(frame);
3736 return false;
3739 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3740 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3741 browse_fn(info.name, info.type, info.comment, NULL);
3744 TALLOC_FREE(pipe_hnd);
3745 TALLOC_FREE(frame);
3746 return true;
3749 /****************************************************************************
3750 Try and browse available connections on a host.
3751 ****************************************************************************/
3753 static bool browse_host(bool sort)
3755 int ret;
3756 if (!grepable) {
3757 d_printf("\n\tSharename Type Comment\n");
3758 d_printf("\t--------- ---- -------\n");
3761 if (browse_host_rpc(sort)) {
3762 return true;
3765 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3766 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3768 return (ret != -1);
3771 /****************************************************************************
3772 List a server name.
3773 ****************************************************************************/
3775 static void server_fn(const char *name, uint32 m,
3776 const char *comment, void *state)
3779 if (!grepable){
3780 d_printf("\t%-16s %s\n", name, comment);
3781 } else {
3782 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3786 /****************************************************************************
3787 Try and browse available connections on a host.
3788 ****************************************************************************/
3790 static bool list_servers(const char *wk_grp)
3792 fstring state;
3794 if (!cli->server_domain)
3795 return false;
3797 if (!grepable) {
3798 d_printf("\n\tServer Comment\n");
3799 d_printf("\t--------- -------\n");
3801 fstrcpy( state, "Server" );
3802 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3803 state);
3805 if (!grepable) {
3806 d_printf("\n\tWorkgroup Master\n");
3807 d_printf("\t--------- -------\n");
3810 fstrcpy( state, "Workgroup" );
3811 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3812 server_fn, state);
3813 return true;
3816 /****************************************************************************
3817 Print or set current VUID
3818 ****************************************************************************/
3820 static int cmd_vuid(void)
3822 TALLOC_CTX *ctx = talloc_tos();
3823 char *buf;
3825 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3826 d_printf("Current VUID is %d\n", cli->vuid);
3827 return 0;
3830 cli->vuid = atoi(buf);
3831 return 0;
3834 /****************************************************************************
3835 Setup a new VUID, by issuing a session setup
3836 ****************************************************************************/
3838 static int cmd_logon(void)
3840 TALLOC_CTX *ctx = talloc_tos();
3841 char *l_username, *l_password;
3843 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3844 d_printf("logon <username> [<password>]\n");
3845 return 0;
3848 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3849 char *pass = getpass("Password: ");
3850 if (pass) {
3851 l_password = talloc_strdup(ctx,pass);
3854 if (!l_password) {
3855 return 1;
3858 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3859 l_password, strlen(l_password),
3860 l_password, strlen(l_password),
3861 lp_workgroup()))) {
3862 d_printf("session setup failed: %s\n", cli_errstr(cli));
3863 return -1;
3866 d_printf("Current VUID is %d\n", cli->vuid);
3867 return 0;
3871 /****************************************************************************
3872 list active connections
3873 ****************************************************************************/
3875 static int cmd_list_connect(void)
3877 cli_cm_display(cli);
3878 return 0;
3881 /****************************************************************************
3882 display the current active client connection
3883 ****************************************************************************/
3885 static int cmd_show_connect( void )
3887 TALLOC_CTX *ctx = talloc_tos();
3888 struct cli_state *targetcli;
3889 char *targetpath;
3891 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
3892 &targetcli, &targetpath ) ) {
3893 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3894 return 1;
3897 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3898 return 0;
3901 /****************************************************************************
3902 iosize command
3903 ***************************************************************************/
3905 int cmd_iosize(void)
3907 TALLOC_CTX *ctx = talloc_tos();
3908 char *buf;
3909 int iosize;
3911 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3912 if (!smb_encrypt) {
3913 d_printf("iosize <n> or iosize 0x<n>. "
3914 "Minimum is 16384 (0x4000), "
3915 "max is 16776960 (0xFFFF00)\n");
3916 } else {
3917 d_printf("iosize <n> or iosize 0x<n>. "
3918 "(Encrypted connection) ,"
3919 "Minimum is 16384 (0x4000), "
3920 "max is 130048 (0x1FC00)\n");
3922 return 1;
3925 iosize = strtol(buf,NULL,0);
3926 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3927 d_printf("iosize out of range for encrypted "
3928 "connection (min = 16384 (0x4000), "
3929 "max = 130048 (0x1FC00)");
3930 return 1;
3931 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3932 d_printf("iosize out of range (min = 16384 (0x4000), "
3933 "max = 16776960 (0xFFFF00)");
3934 return 1;
3937 io_bufsize = iosize;
3938 d_printf("iosize is now %d\n", io_bufsize);
3939 return 0;
3943 /* Some constants for completing filename arguments */
3945 #define COMPL_NONE 0 /* No completions */
3946 #define COMPL_REMOTE 1 /* Complete remote filename */
3947 #define COMPL_LOCAL 2 /* Complete local filename */
3949 /* This defines the commands supported by this client.
3950 * NOTE: The "!" must be the last one in the list because it's fn pointer
3951 * field is NULL, and NULL in that field is used in process_tok()
3952 * (below) to indicate the end of the list. crh
3954 static struct {
3955 const char *name;
3956 int (*fn)(void);
3957 const char *description;
3958 char compl_args[2]; /* Completion argument info */
3959 } commands[] = {
3960 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3961 {"allinfo",cmd_allinfo,"<file> show all available info",
3962 {COMPL_NONE,COMPL_NONE}},
3963 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3964 {"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}},
3965 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3966 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3967 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3968 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3969 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3970 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3971 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3972 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3973 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3974 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3975 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3976 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3977 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3978 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3979 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3980 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3981 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3982 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3983 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3984 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3985 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3986 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3987 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3988 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3989 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3990 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3991 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3992 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3993 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3994 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3995 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3996 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3997 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3998 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3999 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4000 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4001 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4002 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
4003 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
4004 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
4005 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
4006 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
4007 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4008 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
4009 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
4010 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4011 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4012 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
4013 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
4014 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
4015 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
4016 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4017 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
4018 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
4019 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
4020 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
4021 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
4022 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
4023 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
4024 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
4025 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
4026 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
4027 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
4028 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4029 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4030 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4031 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4032 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4034 /* Yes, this must be here, see crh's comment above. */
4035 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4036 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4039 /*******************************************************************
4040 Lookup a command string in the list of commands, including
4041 abbreviations.
4042 ******************************************************************/
4044 static int process_tok(char *tok)
4046 int i = 0, matches = 0;
4047 int cmd=0;
4048 int tok_len = strlen(tok);
4050 while (commands[i].fn != NULL) {
4051 if (strequal(commands[i].name,tok)) {
4052 matches = 1;
4053 cmd = i;
4054 break;
4055 } else if (strnequal(commands[i].name, tok, tok_len)) {
4056 matches++;
4057 cmd = i;
4059 i++;
4062 if (matches == 0)
4063 return(-1);
4064 else if (matches == 1)
4065 return(cmd);
4066 else
4067 return(-2);
4070 /****************************************************************************
4071 Help.
4072 ****************************************************************************/
4074 static int cmd_help(void)
4076 TALLOC_CTX *ctx = talloc_tos();
4077 int i=0,j;
4078 char *buf;
4080 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4081 if ((i = process_tok(buf)) >= 0)
4082 d_printf("HELP %s:\n\t%s\n\n",
4083 commands[i].name,commands[i].description);
4084 } else {
4085 while (commands[i].description) {
4086 for (j=0; commands[i].description && (j<5); j++) {
4087 d_printf("%-15s",commands[i].name);
4088 i++;
4090 d_printf("\n");
4093 return 0;
4096 /****************************************************************************
4097 Process a -c command string.
4098 ****************************************************************************/
4100 static int process_command_string(const char *cmd_in)
4102 TALLOC_CTX *ctx = talloc_tos();
4103 char *cmd = talloc_strdup(ctx, cmd_in);
4104 int rc = 0;
4106 if (!cmd) {
4107 return 1;
4109 /* establish the connection if not already */
4111 if (!cli) {
4112 cli = cli_cm_open(talloc_tos(), NULL,
4113 have_ip ? dest_ss_str : desthost,
4114 service, auth_info,
4115 true, smb_encrypt,
4116 max_protocol, port, name_type);
4117 if (!cli) {
4118 return 1;
4122 while (cmd[0] != '\0') {
4123 char *line;
4124 char *p;
4125 char *tok;
4126 int i;
4128 if ((p = strchr_m(cmd, ';')) == 0) {
4129 line = cmd;
4130 cmd += strlen(cmd);
4131 } else {
4132 *p = '\0';
4133 line = cmd;
4134 cmd = p + 1;
4137 /* and get the first part of the command */
4138 cmd_ptr = line;
4139 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4140 continue;
4143 if ((i = process_tok(tok)) >= 0) {
4144 rc = commands[i].fn();
4145 } else if (i == -2) {
4146 d_printf("%s: command abbreviation ambiguous\n",tok);
4147 } else {
4148 d_printf("%s: command not found\n",tok);
4152 return rc;
4155 #define MAX_COMPLETIONS 100
4157 typedef struct {
4158 char *dirmask;
4159 char **matches;
4160 int count, samelen;
4161 const char *text;
4162 int len;
4163 } completion_remote_t;
4165 static void completion_remote_filter(const char *mnt,
4166 file_info *f,
4167 const char *mask,
4168 void *state)
4170 completion_remote_t *info = (completion_remote_t *)state;
4172 if ((info->count < MAX_COMPLETIONS - 1) &&
4173 (strncmp(info->text, f->name, info->len) == 0) &&
4174 (strcmp(f->name, ".") != 0) &&
4175 (strcmp(f->name, "..") != 0)) {
4176 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4177 info->matches[info->count] = SMB_STRDUP(f->name);
4178 else {
4179 TALLOC_CTX *ctx = talloc_stackframe();
4180 char *tmp;
4182 tmp = talloc_strdup(ctx,info->dirmask);
4183 if (!tmp) {
4184 TALLOC_FREE(ctx);
4185 return;
4187 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4188 if (!tmp) {
4189 TALLOC_FREE(ctx);
4190 return;
4192 if (f->mode & aDIR) {
4193 tmp = talloc_asprintf_append(tmp, "%s", CLI_DIRSEP_STR);
4195 if (!tmp) {
4196 TALLOC_FREE(ctx);
4197 return;
4199 info->matches[info->count] = SMB_STRDUP(tmp);
4200 TALLOC_FREE(ctx);
4202 if (info->matches[info->count] == NULL) {
4203 return;
4205 if (f->mode & aDIR) {
4206 smb_readline_ca_char(0);
4208 if (info->count == 1) {
4209 info->samelen = strlen(info->matches[info->count]);
4210 } else {
4211 while (strncmp(info->matches[info->count],
4212 info->matches[info->count-1],
4213 info->samelen) != 0) {
4214 info->samelen--;
4217 info->count++;
4221 static char **remote_completion(const char *text, int len)
4223 TALLOC_CTX *ctx = talloc_stackframe();
4224 char *dirmask = NULL;
4225 char *targetpath = NULL;
4226 struct cli_state *targetcli = NULL;
4227 int i;
4228 completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4230 /* can't have non-static intialisation on Sun CC, so do it
4231 at run time here */
4232 info.samelen = len;
4233 info.text = text;
4234 info.len = len;
4236 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4237 if (!info.matches) {
4238 TALLOC_FREE(ctx);
4239 return NULL;
4243 * We're leaving matches[0] free to fill it later with the text to
4244 * display: Either the one single match or the longest common subset
4245 * of the matches.
4247 info.matches[0] = NULL;
4248 info.count = 1;
4250 for (i = len-1; i >= 0; i--) {
4251 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4252 break;
4256 info.text = text+i+1;
4257 info.samelen = info.len = len-i-1;
4259 if (i > 0) {
4260 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4261 if (!info.dirmask) {
4262 goto cleanup;
4264 strncpy(info.dirmask, text, i+1);
4265 info.dirmask[i+1] = 0;
4266 dirmask = talloc_asprintf(ctx,
4267 "%s%*s*",
4268 client_get_cur_dir(),
4269 i-1,
4270 text);
4271 } else {
4272 info.dirmask = SMB_STRDUP("");
4273 if (!info.dirmask) {
4274 goto cleanup;
4276 dirmask = talloc_asprintf(ctx,
4277 "%s*",
4278 client_get_cur_dir());
4280 if (!dirmask) {
4281 goto cleanup;
4284 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4285 goto cleanup;
4287 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4288 completion_remote_filter, (void *)&info) < 0) {
4289 goto cleanup;
4292 if (info.count == 1) {
4294 * No matches at all, NULL indicates there is nothing
4296 SAFE_FREE(info.matches[0]);
4297 SAFE_FREE(info.matches);
4298 TALLOC_FREE(ctx);
4299 return NULL;
4302 if (info.count == 2) {
4304 * Exactly one match in matches[1], indicate this is the one
4305 * in matches[0].
4307 info.matches[0] = info.matches[1];
4308 info.matches[1] = NULL;
4309 info.count -= 1;
4310 TALLOC_FREE(ctx);
4311 return info.matches;
4315 * We got more than one possible match, set the result to the maximum
4316 * common subset
4319 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4320 info.matches[info.count] = NULL;
4321 return info.matches;
4323 cleanup:
4324 for (i = 0; i < info.count; i++) {
4325 SAFE_FREE(info.matches[i]);
4327 SAFE_FREE(info.matches);
4328 SAFE_FREE(info.dirmask);
4329 TALLOC_FREE(ctx);
4330 return NULL;
4333 static char **completion_fn(const char *text, int start, int end)
4335 smb_readline_ca_char(' ');
4337 if (start) {
4338 const char *buf, *sp;
4339 int i;
4340 char compl_type;
4342 buf = smb_readline_get_line_buffer();
4343 if (buf == NULL)
4344 return NULL;
4346 sp = strchr(buf, ' ');
4347 if (sp == NULL)
4348 return NULL;
4350 for (i = 0; commands[i].name; i++) {
4351 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4352 (commands[i].name[sp - buf] == 0)) {
4353 break;
4356 if (commands[i].name == NULL)
4357 return NULL;
4359 while (*sp == ' ')
4360 sp++;
4362 if (sp == (buf + start))
4363 compl_type = commands[i].compl_args[0];
4364 else
4365 compl_type = commands[i].compl_args[1];
4367 if (compl_type == COMPL_REMOTE)
4368 return remote_completion(text, end - start);
4369 else /* fall back to local filename completion */
4370 return NULL;
4371 } else {
4372 char **matches;
4373 int i, len, samelen = 0, count=1;
4375 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4376 if (!matches) {
4377 return NULL;
4379 matches[0] = NULL;
4381 len = strlen(text);
4382 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4383 if (strncmp(text, commands[i].name, len) == 0) {
4384 matches[count] = SMB_STRDUP(commands[i].name);
4385 if (!matches[count])
4386 goto cleanup;
4387 if (count == 1)
4388 samelen = strlen(matches[count]);
4389 else
4390 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4391 samelen--;
4392 count++;
4396 switch (count) {
4397 case 0: /* should never happen */
4398 case 1:
4399 goto cleanup;
4400 case 2:
4401 matches[0] = SMB_STRDUP(matches[1]);
4402 break;
4403 default:
4404 matches[0] = (char *)SMB_MALLOC(samelen+1);
4405 if (!matches[0])
4406 goto cleanup;
4407 strncpy(matches[0], matches[1], samelen);
4408 matches[0][samelen] = 0;
4410 matches[count] = NULL;
4411 return matches;
4413 cleanup:
4414 for (i = 0; i < count; i++)
4415 free(matches[i]);
4417 free(matches);
4418 return NULL;
4422 static bool finished;
4424 /****************************************************************************
4425 Make sure we swallow keepalives during idle time.
4426 ****************************************************************************/
4428 static void readline_callback(void)
4430 fd_set fds;
4431 struct timeval timeout;
4432 static time_t last_t;
4433 time_t t;
4435 t = time(NULL);
4437 if (t - last_t < 5)
4438 return;
4440 last_t = t;
4442 again:
4444 if (cli->fd == -1)
4445 return;
4447 FD_ZERO(&fds);
4448 FD_SET(cli->fd,&fds);
4450 timeout.tv_sec = 0;
4451 timeout.tv_usec = 0;
4452 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4454 /* We deliberately use receive_smb_raw instead of
4455 client_receive_smb as we want to receive
4456 session keepalives and then drop them here.
4458 if (FD_ISSET(cli->fd,&fds)) {
4459 NTSTATUS status;
4460 size_t len;
4462 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4464 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4466 if (!NT_STATUS_IS_OK(status)) {
4467 DEBUG(0, ("Read from server failed, maybe it closed "
4468 "the connection\n"));
4470 finished = true;
4471 smb_readline_done();
4472 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4473 set_smb_read_error(&cli->smb_rw_error,
4474 SMB_READ_EOF);
4475 return;
4478 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4479 set_smb_read_error(&cli->smb_rw_error,
4480 SMB_READ_TIMEOUT);
4481 return;
4484 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4485 return;
4487 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4488 DEBUG(0, ("Read from server "
4489 "returned unexpected packet!\n"));
4490 return;
4493 goto again;
4496 /* Ping the server to keep the connection alive using SMBecho. */
4498 NTSTATUS status;
4499 unsigned char garbage[16];
4500 memset(garbage, 0xf0, sizeof(garbage));
4501 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4503 if (!NT_STATUS_IS_OK(status)) {
4504 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4505 "the connection\n"));
4506 finished = true;
4507 smb_readline_done();
4512 /****************************************************************************
4513 Process commands on stdin.
4514 ****************************************************************************/
4516 static int process_stdin(void)
4518 int rc = 0;
4520 while (!finished) {
4521 TALLOC_CTX *frame = talloc_stackframe();
4522 char *tok = NULL;
4523 char *the_prompt = NULL;
4524 char *line = NULL;
4525 int i;
4527 /* display a prompt */
4528 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4529 TALLOC_FREE(frame);
4530 break;
4532 line = smb_readline(the_prompt, readline_callback, completion_fn);
4533 SAFE_FREE(the_prompt);
4534 if (!line) {
4535 TALLOC_FREE(frame);
4536 break;
4539 /* special case - first char is ! */
4540 if (*line == '!') {
4541 if (system(line + 1) == -1) {
4542 d_printf("system() command %s failed.\n",
4543 line+1);
4545 SAFE_FREE(line);
4546 TALLOC_FREE(frame);
4547 continue;
4550 /* and get the first part of the command */
4551 cmd_ptr = line;
4552 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4553 TALLOC_FREE(frame);
4554 SAFE_FREE(line);
4555 continue;
4558 if ((i = process_tok(tok)) >= 0) {
4559 rc = commands[i].fn();
4560 } else if (i == -2) {
4561 d_printf("%s: command abbreviation ambiguous\n",tok);
4562 } else {
4563 d_printf("%s: command not found\n",tok);
4565 SAFE_FREE(line);
4566 TALLOC_FREE(frame);
4568 return rc;
4571 /****************************************************************************
4572 Process commands from the client.
4573 ****************************************************************************/
4575 static int process(const char *base_directory)
4577 int rc = 0;
4579 cli = cli_cm_open(talloc_tos(), NULL,
4580 have_ip ? dest_ss_str : desthost,
4581 service, auth_info, true, smb_encrypt,
4582 max_protocol, port, name_type);
4583 if (!cli) {
4584 return 1;
4587 if (base_directory && *base_directory) {
4588 rc = do_cd(base_directory);
4589 if (rc) {
4590 cli_shutdown(cli);
4591 return rc;
4595 if (cmdstr) {
4596 rc = process_command_string(cmdstr);
4597 } else {
4598 process_stdin();
4601 cli_shutdown(cli);
4602 return rc;
4605 /****************************************************************************
4606 Handle a -L query.
4607 ****************************************************************************/
4609 static int do_host_query(const char *query_host)
4611 cli = cli_cm_open(talloc_tos(), NULL,
4612 query_host, "IPC$", auth_info, true, smb_encrypt,
4613 max_protocol, port, name_type);
4614 if (!cli)
4615 return 1;
4617 browse_host(true);
4619 /* Ensure that the host can do IPv4 */
4621 if (!interpret_addr(query_host)) {
4622 struct sockaddr_storage ss;
4623 if (interpret_string_addr(&ss, query_host, 0) &&
4624 (ss.ss_family != AF_INET)) {
4625 d_printf("%s is an IPv6 address -- no workgroup available\n",
4626 query_host);
4627 return 1;
4631 if (port != 139) {
4633 /* Workgroups simply don't make sense over anything
4634 else but port 139... */
4636 cli_shutdown(cli);
4637 cli = cli_cm_open(talloc_tos(), NULL,
4638 query_host, "IPC$", auth_info, true, smb_encrypt,
4639 max_protocol, 139, name_type);
4642 if (cli == NULL) {
4643 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4644 return 1;
4647 list_servers(lp_workgroup());
4649 cli_shutdown(cli);
4651 return(0);
4654 /****************************************************************************
4655 Handle a tar operation.
4656 ****************************************************************************/
4658 static int do_tar_op(const char *base_directory)
4660 int ret;
4662 /* do we already have a connection? */
4663 if (!cli) {
4664 cli = cli_cm_open(talloc_tos(), NULL,
4665 have_ip ? dest_ss_str : desthost,
4666 service, auth_info, true, smb_encrypt,
4667 max_protocol, port, name_type);
4668 if (!cli)
4669 return 1;
4672 recurse=true;
4674 if (base_directory && *base_directory) {
4675 ret = do_cd(base_directory);
4676 if (ret) {
4677 cli_shutdown(cli);
4678 return ret;
4682 ret=process_tar();
4684 cli_shutdown(cli);
4686 return(ret);
4689 /****************************************************************************
4690 Handle a message operation.
4691 ****************************************************************************/
4693 static int do_message_op(struct user_auth_info *a_info)
4695 struct sockaddr_storage ss;
4696 struct nmb_name called, calling;
4697 fstring server_name;
4698 char name_type_hex[10];
4699 int msg_port;
4700 NTSTATUS status;
4702 make_nmb_name(&calling, calling_name, 0x0);
4703 make_nmb_name(&called , desthost, name_type);
4705 fstrcpy(server_name, desthost);
4706 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4707 fstrcat(server_name, name_type_hex);
4709 zero_sockaddr(&ss);
4710 if (have_ip)
4711 ss = dest_ss;
4713 /* we can only do messages over port 139 (to windows clients at least) */
4715 msg_port = port ? port : 139;
4717 if (!(cli=cli_initialise())) {
4718 d_printf("Connection to %s failed\n", desthost);
4719 return 1;
4721 cli_set_port(cli, msg_port);
4723 status = cli_connect(cli, server_name, &ss);
4724 if (!NT_STATUS_IS_OK(status)) {
4725 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4726 return 1;
4729 if (!cli_session_request(cli, &calling, &called)) {
4730 d_printf("session request failed\n");
4731 cli_shutdown(cli);
4732 return 1;
4735 send_message(get_cmdline_auth_info_username(a_info));
4736 cli_shutdown(cli);
4738 return 0;
4741 /****************************************************************************
4742 main program
4743 ****************************************************************************/
4745 int main(int argc,char *argv[])
4747 char *base_directory = NULL;
4748 int opt;
4749 char *query_host = NULL;
4750 bool message = false;
4751 static const char *new_name_resolve_order = NULL;
4752 poptContext pc;
4753 char *p;
4754 int rc = 0;
4755 fstring new_workgroup;
4756 bool tar_opt = false;
4757 bool service_opt = false;
4758 struct poptOption long_options[] = {
4759 POPT_AUTOHELP
4761 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4762 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4763 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4764 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4765 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4766 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4767 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4768 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4769 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4770 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4771 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4772 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4773 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4774 POPT_COMMON_SAMBA
4775 POPT_COMMON_CONNECTION
4776 POPT_COMMON_CREDENTIALS
4777 POPT_TABLEEND
4779 TALLOC_CTX *frame = talloc_stackframe();
4781 if (!client_set_cur_dir("\\")) {
4782 exit(ENOMEM);
4785 /* initialize the workgroup name so we can determine whether or
4786 not it was set by a command line option */
4788 set_global_myworkgroup( "" );
4789 set_global_myname( "" );
4791 /* set default debug level to 1 regardless of what smb.conf sets */
4792 setup_logging( "smbclient", true );
4793 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4794 if ((dbf = x_fdup(x_stderr))) {
4795 x_setbuf( dbf, NULL );
4798 load_case_tables();
4800 auth_info = user_auth_info_init(frame);
4801 if (auth_info == NULL) {
4802 exit(1);
4804 popt_common_set_auth_info(auth_info);
4806 /* skip argv(0) */
4807 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4808 poptSetOtherOptionHelp(pc, "service <password>");
4810 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4812 while ((opt = poptGetNextOpt(pc)) != -1) {
4814 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4815 /* I see no other way to keep things sane --SSS */
4816 if (tar_opt == true) {
4817 while (poptPeekArg(pc)) {
4818 poptGetArg(pc);
4820 tar_opt = false;
4823 /* if the service has not yet been specified lets see if it is available in the popt stack */
4824 if (!service_opt && poptPeekArg(pc)) {
4825 service = talloc_strdup(frame, poptGetArg(pc));
4826 if (!service) {
4827 exit(ENOMEM);
4829 service_opt = true;
4832 /* if the service has already been retrieved then check if we have also a password */
4833 if (service_opt
4834 && (!get_cmdline_auth_info_got_pass(auth_info))
4835 && poptPeekArg(pc)) {
4836 set_cmdline_auth_info_password(auth_info,
4837 poptGetArg(pc));
4840 switch (opt) {
4841 case 'M':
4842 /* Messages are sent to NetBIOS name type 0x3
4843 * (Messenger Service). Make sure we default
4844 * to port 139 instead of port 445. srl,crh
4846 name_type = 0x03;
4847 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4848 if (!desthost) {
4849 exit(ENOMEM);
4851 if( !port )
4852 port = 139;
4853 message = true;
4854 break;
4855 case 'I':
4857 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4858 exit(1);
4860 have_ip = true;
4861 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
4863 break;
4864 case 'E':
4865 if (dbf) {
4866 x_fclose(dbf);
4868 dbf = x_stderr;
4869 display_set_stderr();
4870 break;
4872 case 'L':
4873 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4874 if (!query_host) {
4875 exit(ENOMEM);
4877 break;
4878 case 'm':
4879 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4880 break;
4881 case 'T':
4882 /* We must use old option processing for this. Find the
4883 * position of the -T option in the raw argv[]. */
4885 int i;
4886 for (i = 1; i < argc; i++) {
4887 if (strncmp("-T", argv[i],2)==0)
4888 break;
4890 i++;
4891 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4892 poptPrintUsage(pc, stderr, 0);
4893 exit(1);
4896 /* this must be the last option, mark we have parsed it so that we know we have */
4897 tar_opt = true;
4898 break;
4899 case 'D':
4900 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4901 if (!base_directory) {
4902 exit(ENOMEM);
4904 break;
4905 case 'g':
4906 grepable=true;
4907 break;
4908 case 'e':
4909 smb_encrypt=true;
4910 break;
4911 case 'B':
4912 return(do_smb_browse());
4917 /* We may still have some leftovers after the last popt option has been called */
4918 if (tar_opt == true) {
4919 while (poptPeekArg(pc)) {
4920 poptGetArg(pc);
4922 tar_opt = false;
4925 /* if the service has not yet been specified lets see if it is available in the popt stack */
4926 if (!service_opt && poptPeekArg(pc)) {
4927 service = talloc_strdup(frame,poptGetArg(pc));
4928 if (!service) {
4929 exit(ENOMEM);
4931 service_opt = true;
4934 /* if the service has already been retrieved then check if we have also a password */
4935 if (service_opt
4936 && !get_cmdline_auth_info_got_pass(auth_info)
4937 && poptPeekArg(pc)) {
4938 set_cmdline_auth_info_password(auth_info,
4939 poptGetArg(pc));
4943 * Don't load debug level from smb.conf. It should be
4944 * set by cmdline arg or remain default (0)
4946 AllowDebugChange = false;
4948 /* save the workgroup...
4950 FIXME!! do we need to do this for other options as well
4951 (or maybe a generic way to keep lp_load() from overwriting
4952 everything)? */
4954 fstrcpy( new_workgroup, lp_workgroup() );
4955 calling_name = talloc_strdup(frame, global_myname() );
4956 if (!calling_name) {
4957 exit(ENOMEM);
4960 if ( override_logfile )
4961 setup_logging( lp_logfile(), false );
4963 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4964 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4965 argv[0], get_dyn_CONFIGFILE());
4968 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
4969 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
4970 exit(-1);
4973 load_interfaces();
4975 if (service_opt && service) {
4976 size_t len;
4978 /* Convert any '/' characters in the service name to '\' characters */
4979 string_replace(service, '/','\\');
4980 if (count_chars(service,'\\') < 3) {
4981 d_printf("\n%s: Not enough '\\' characters in service\n",service);
4982 poptPrintUsage(pc, stderr, 0);
4983 exit(1);
4985 /* Remove trailing slashes */
4986 len = strlen(service);
4987 while(len > 0 && service[len - 1] == '\\') {
4988 --len;
4989 service[len] = '\0';
4993 if ( strlen(new_workgroup) != 0 ) {
4994 set_global_myworkgroup( new_workgroup );
4997 if ( strlen(calling_name) != 0 ) {
4998 set_global_myname( calling_name );
4999 } else {
5000 TALLOC_FREE(calling_name);
5001 calling_name = talloc_strdup(frame, global_myname() );
5004 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
5005 if (!init_names()) {
5006 fprintf(stderr, "init_names() failed\n");
5007 exit(1);
5010 if(new_name_resolve_order)
5011 lp_set_name_resolve_order(new_name_resolve_order);
5013 if (!tar_type && !query_host && !service && !message) {
5014 poptPrintUsage(pc, stderr, 0);
5015 exit(1);
5018 poptFreeContext(pc);
5020 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
5022 /* Ensure we have a password (or equivalent). */
5023 set_cmdline_auth_info_getpass(auth_info);
5025 if (tar_type) {
5026 if (cmdstr)
5027 process_command_string(cmdstr);
5028 return do_tar_op(base_directory);
5031 if (query_host && *query_host) {
5032 char *qhost = query_host;
5033 char *slash;
5035 while (*qhost == '\\' || *qhost == '/')
5036 qhost++;
5038 if ((slash = strchr_m(qhost, '/'))
5039 || (slash = strchr_m(qhost, '\\'))) {
5040 *slash = 0;
5043 if ((p=strchr_m(qhost, '#'))) {
5044 *p = 0;
5045 p++;
5046 sscanf(p, "%x", &name_type);
5049 return do_host_query(qhost);
5052 if (message) {
5053 return do_message_op(auth_info);
5056 if (process(base_directory)) {
5057 return 1;
5060 TALLOC_FREE(frame);
5061 return rc;