Ensure all callers to the rpc_client/cli_pipe functions correctly
[Samba/gebeck_regimport.git] / source3 / client / client.c
blob6a3e73c710ea01beb5a657599d6c27630d8c4b55
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 "include/rpc_client.h"
27 #ifndef REGISTER
28 #define REGISTER 0
29 #endif
31 extern int do_smb_browse(void); /* mDNS browsing */
33 extern bool AllowDebugChange;
34 extern bool override_logfile;
35 extern char tar_type;
37 static int port = 0;
38 static char *service;
39 static char *desthost;
40 static char *calling_name;
41 static bool grepable = false;
42 static char *cmdstr = NULL;
43 const char *cmd_ptr = NULL;
45 static int io_bufsize = 524288;
47 static int name_type = 0x20;
48 static int max_protocol = PROTOCOL_NT1;
50 static int process_tok(char *tok);
51 static int cmd_help(void);
53 #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
55 /* 30 second timeout on most commands */
56 #define CLIENT_TIMEOUT (30*1000)
57 #define SHORT_TIMEOUT (5*1000)
59 /* value for unused fid field in trans2 secondary request */
60 #define FID_UNUSED (0xFFFF)
62 time_t newer_than = 0;
63 static int archive_level = 0;
65 static bool translation = false;
66 static bool have_ip;
68 /* clitar bits insert */
69 extern int blocksize;
70 extern bool tar_inc;
71 extern bool tar_reset;
72 /* clitar bits end */
74 static bool prompt = true;
76 static bool recurse = false;
77 static bool showacls = false;
78 bool lowercase = false;
80 static struct sockaddr_storage dest_ss;
81 static char dest_ss_str[INET6_ADDRSTRLEN];
83 #define SEPARATORS " \t\n\r"
85 static bool abort_mget = true;
87 /* timing globals */
88 uint64_t get_total_size = 0;
89 unsigned int get_total_time_ms = 0;
90 static uint64_t put_total_size = 0;
91 static unsigned int put_total_time_ms = 0;
93 /* totals globals */
94 static double dir_total;
96 /* encrypted state. */
97 static bool smb_encrypt;
99 /* root cli_state connection */
101 struct cli_state *cli;
103 static char CLI_DIRSEP_CHAR = '\\';
104 static char CLI_DIRSEP_STR[] = { '\\', '\0' };
106 /* Authentication for client connections. */
107 struct user_auth_info *auth_info;
109 /* Accessor functions for directory paths. */
110 static char *fileselection;
111 static const char *client_get_fileselection(void)
113 if (fileselection) {
114 return fileselection;
116 return "";
119 static const char *client_set_fileselection(const char *new_fs)
121 SAFE_FREE(fileselection);
122 if (new_fs) {
123 fileselection = SMB_STRDUP(new_fs);
125 return client_get_fileselection();
128 static char *cwd;
129 static const char *client_get_cwd(void)
131 if (cwd) {
132 return cwd;
134 return CLI_DIRSEP_STR;
137 static const char *client_set_cwd(const char *new_cwd)
139 SAFE_FREE(cwd);
140 if (new_cwd) {
141 cwd = SMB_STRDUP(new_cwd);
143 return client_get_cwd();
146 static char *cur_dir;
147 const char *client_get_cur_dir(void)
149 if (cur_dir) {
150 return cur_dir;
152 return CLI_DIRSEP_STR;
155 const char *client_set_cur_dir(const char *newdir)
157 SAFE_FREE(cur_dir);
158 if (newdir) {
159 cur_dir = SMB_STRDUP(newdir);
161 return client_get_cur_dir();
164 /****************************************************************************
165 Write to a local file with CR/LF->LF translation if appropriate. Return the
166 number taken from the buffer. This may not equal the number written.
167 ****************************************************************************/
169 static int writefile(int f, char *b, int n)
171 int i;
173 if (!translation) {
174 return write(f,b,n);
177 i = 0;
178 while (i < n) {
179 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
180 b++;i++;
182 if (write(f, b, 1) != 1) {
183 break;
185 b++;
186 i++;
189 return(i);
192 /****************************************************************************
193 Read from a file with LF->CR/LF translation if appropriate. Return the
194 number read. read approx n bytes.
195 ****************************************************************************/
197 static int readfile(uint8_t *b, int n, XFILE *f)
199 int i;
200 int c;
202 if (!translation)
203 return x_fread(b,1,n,f);
205 i = 0;
206 while (i < (n - 1) && (i < BUFFER_SIZE)) {
207 if ((c = x_getc(f)) == EOF) {
208 break;
211 if (c == '\n') { /* change all LFs to CR/LF */
212 b[i++] = '\r';
215 b[i++] = c;
218 return(i);
221 struct push_state {
222 XFILE *f;
223 SMB_OFF_T nread;
226 static size_t push_source(uint8_t *buf, size_t n, void *priv)
228 struct push_state *state = (struct push_state *)priv;
229 int result;
231 if (x_feof(state->f)) {
232 return 0;
235 result = readfile(buf, n, state->f);
236 state->nread += result;
237 return result;
240 /****************************************************************************
241 Send a message.
242 ****************************************************************************/
244 static void send_message(const char *username)
246 char buf[1600];
247 NTSTATUS status;
248 int i;
250 d_printf("Type your message, ending it with a Control-D\n");
252 i = 0;
253 while (i<sizeof(buf)-2) {
254 int c = fgetc(stdin);
255 if (c == EOF) {
256 break;
258 if (c == '\n') {
259 buf[i++] = '\r';
261 buf[i++] = c;
263 buf[i] = '\0';
265 status = cli_message(cli, desthost, username, buf);
266 if (!NT_STATUS_IS_OK(status)) {
267 d_fprintf(stderr, "cli_message returned %s\n",
268 nt_errstr(status));
272 /****************************************************************************
273 Check the space on a device.
274 ****************************************************************************/
276 static int do_dskattr(void)
278 int total, bsize, avail;
279 struct cli_state *targetcli = NULL;
280 char *targetpath = NULL;
281 TALLOC_CTX *ctx = talloc_tos();
283 if ( !cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(), &targetcli, &targetpath)) {
284 d_printf("Error in dskattr: %s\n", cli_errstr(cli));
285 return 1;
288 if (!NT_STATUS_IS_OK(cli_dskattr(targetcli, &bsize, &total, &avail))) {
289 d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
290 return 1;
293 d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
294 total, bsize, avail);
296 return 0;
299 /****************************************************************************
300 Show cd/pwd.
301 ****************************************************************************/
303 static int cmd_pwd(void)
305 d_printf("Current directory is %s",service);
306 d_printf("%s\n",client_get_cur_dir());
307 return 0;
310 /****************************************************************************
311 Ensure name has correct directory separators.
312 ****************************************************************************/
314 static void normalize_name(char *newdir)
316 if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
317 string_replace(newdir,'/','\\');
321 /****************************************************************************
322 Change directory - inner section.
323 ****************************************************************************/
325 static int do_cd(const char *new_dir)
327 char *newdir = NULL;
328 char *saved_dir = NULL;
329 char *new_cd = NULL;
330 char *targetpath = NULL;
331 struct cli_state *targetcli = NULL;
332 SMB_STRUCT_STAT sbuf;
333 uint32 attributes;
334 int ret = 1;
335 TALLOC_CTX *ctx = talloc_stackframe();
337 newdir = talloc_strdup(ctx, new_dir);
338 if (!newdir) {
339 TALLOC_FREE(ctx);
340 return 1;
343 normalize_name(newdir);
345 /* Save the current directory in case the new directory is invalid */
347 saved_dir = talloc_strdup(ctx, client_get_cur_dir());
348 if (!saved_dir) {
349 TALLOC_FREE(ctx);
350 return 1;
353 if (*newdir == CLI_DIRSEP_CHAR) {
354 client_set_cur_dir(newdir);
355 new_cd = newdir;
356 } else {
357 new_cd = talloc_asprintf(ctx, "%s%s",
358 client_get_cur_dir(),
359 newdir);
360 if (!new_cd) {
361 goto out;
365 /* Ensure cur_dir ends in a DIRSEP */
366 if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
367 new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
368 if (!new_cd) {
369 goto out;
372 client_set_cur_dir(new_cd);
374 new_cd = clean_name(ctx, new_cd);
375 client_set_cur_dir(new_cd);
377 if ( !cli_resolve_path(ctx, "", auth_info, cli, new_cd, &targetcli, &targetpath)) {
378 d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
379 client_set_cur_dir(saved_dir);
380 goto out;
383 if (strequal(targetpath,CLI_DIRSEP_STR )) {
384 TALLOC_FREE(ctx);
385 return 0;
388 /* Use a trans2_qpathinfo to test directories for modern servers.
389 Except Win9x doesn't support the qpathinfo_basic() call..... */
391 if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
392 if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
393 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
394 client_set_cur_dir(saved_dir);
395 goto out;
398 if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
399 d_printf("cd %s: not a directory\n", new_cd);
400 client_set_cur_dir(saved_dir);
401 goto out;
403 } else {
404 targetpath = talloc_asprintf(ctx,
405 "%s%s",
406 targetpath,
407 CLI_DIRSEP_STR );
408 if (!targetpath) {
409 client_set_cur_dir(saved_dir);
410 goto out;
412 targetpath = clean_name(ctx, targetpath);
413 if (!targetpath) {
414 client_set_cur_dir(saved_dir);
415 goto out;
418 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, targetpath))) {
419 d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
420 client_set_cur_dir(saved_dir);
421 goto out;
425 ret = 0;
427 out:
429 TALLOC_FREE(ctx);
430 return ret;
433 /****************************************************************************
434 Change directory.
435 ****************************************************************************/
437 static int cmd_cd(void)
439 char *buf = NULL;
440 int rc = 0;
442 if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
443 rc = do_cd(buf);
444 } else {
445 d_printf("Current directory is %s\n",client_get_cur_dir());
448 return rc;
451 /****************************************************************************
452 Change directory.
453 ****************************************************************************/
455 static int cmd_cd_oneup(void)
457 return do_cd("..");
460 /*******************************************************************
461 Decide if a file should be operated on.
462 ********************************************************************/
464 static bool do_this_one(file_info *finfo)
466 if (!finfo->name) {
467 return false;
470 if (finfo->mode & aDIR) {
471 return true;
474 if (*client_get_fileselection() &&
475 !mask_match(finfo->name,client_get_fileselection(),false)) {
476 DEBUG(3,("mask_match %s failed\n", finfo->name));
477 return false;
480 if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
481 DEBUG(3,("newer_than %s failed\n", finfo->name));
482 return false;
485 if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
486 DEBUG(3,("archive %s failed\n", finfo->name));
487 return false;
490 return true;
493 /****************************************************************************
494 Display info about a file.
495 ****************************************************************************/
497 static void display_finfo(file_info *finfo, const char *dir)
499 time_t t;
500 TALLOC_CTX *ctx = talloc_tos();
502 if (!do_this_one(finfo)) {
503 return;
506 t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
507 if (!showacls) {
508 d_printf(" %-30s%7.7s %8.0f %s",
509 finfo->name,
510 attrib_string(finfo->mode),
511 (double)finfo->size,
512 time_to_asc(t));
513 dir_total += finfo->size;
514 } else {
515 char *afname = NULL;
516 uint16_t fnum;
518 /* skip if this is . or .. */
519 if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
520 return;
521 /* create absolute filename for cli_ntcreate() FIXME */
522 afname = talloc_asprintf(ctx,
523 "%s%s%s",
524 dir,
525 CLI_DIRSEP_STR,
526 finfo->name);
527 if (!afname) {
528 return;
530 /* print file meta date header */
531 d_printf( "FILENAME:%s\n", finfo->name);
532 d_printf( "MODE:%s\n", attrib_string(finfo->mode));
533 d_printf( "SIZE:%.0f\n", (double)finfo->size);
534 d_printf( "MTIME:%s", time_to_asc(t));
535 if (!NT_STATUS_IS_OK(cli_ntcreate(finfo->cli, afname, 0,
536 CREATE_ACCESS_READ, 0, FILE_SHARE_READ|FILE_SHARE_WRITE,
537 FILE_OPEN, 0x0, 0x0, &fnum))) {
538 DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
539 afname,
540 cli_errstr( finfo->cli)));
541 } else {
542 SEC_DESC *sd = NULL;
543 sd = cli_query_secdesc(finfo->cli, fnum, ctx);
544 if (!sd) {
545 DEBUG( 0, ("display_finfo() failed to "
546 "get security descriptor: %s",
547 cli_errstr( finfo->cli)));
548 } else {
549 display_sec_desc(sd);
551 TALLOC_FREE(sd);
553 TALLOC_FREE(afname);
557 /****************************************************************************
558 Accumulate size of a file.
559 ****************************************************************************/
561 static void do_du(file_info *finfo, const char *dir)
563 if (do_this_one(finfo)) {
564 dir_total += finfo->size;
568 static bool do_list_recurse;
569 static bool do_list_dirs;
570 static char *do_list_queue = 0;
571 static long do_list_queue_size = 0;
572 static long do_list_queue_start = 0;
573 static long do_list_queue_end = 0;
574 static void (*do_list_fn)(file_info *, const char *dir);
576 /****************************************************************************
577 Functions for do_list_queue.
578 ****************************************************************************/
581 * The do_list_queue is a NUL-separated list of strings stored in a
582 * char*. Since this is a FIFO, we keep track of the beginning and
583 * ending locations of the data in the queue. When we overflow, we
584 * double the size of the char*. When the start of the data passes
585 * the midpoint, we move everything back. This is logically more
586 * complex than a linked list, but easier from a memory management
587 * angle. In any memory error condition, do_list_queue is reset.
588 * Functions check to ensure that do_list_queue is non-NULL before
589 * accessing it.
592 static void reset_do_list_queue(void)
594 SAFE_FREE(do_list_queue);
595 do_list_queue_size = 0;
596 do_list_queue_start = 0;
597 do_list_queue_end = 0;
600 static void init_do_list_queue(void)
602 reset_do_list_queue();
603 do_list_queue_size = 1024;
604 do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
605 if (do_list_queue == 0) {
606 d_printf("malloc fail for size %d\n",
607 (int)do_list_queue_size);
608 reset_do_list_queue();
609 } else {
610 memset(do_list_queue, 0, do_list_queue_size);
614 static void adjust_do_list_queue(void)
617 * If the starting point of the queue is more than half way through,
618 * move everything toward the beginning.
621 if (do_list_queue == NULL) {
622 DEBUG(4,("do_list_queue is empty\n"));
623 do_list_queue_start = do_list_queue_end = 0;
624 return;
627 if (do_list_queue_start == do_list_queue_end) {
628 DEBUG(4,("do_list_queue is empty\n"));
629 do_list_queue_start = do_list_queue_end = 0;
630 *do_list_queue = '\0';
631 } else if (do_list_queue_start > (do_list_queue_size / 2)) {
632 DEBUG(4,("sliding do_list_queue backward\n"));
633 memmove(do_list_queue,
634 do_list_queue + do_list_queue_start,
635 do_list_queue_end - do_list_queue_start);
636 do_list_queue_end -= do_list_queue_start;
637 do_list_queue_start = 0;
641 static void add_to_do_list_queue(const char *entry)
643 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
644 while (new_end > do_list_queue_size) {
645 do_list_queue_size *= 2;
646 DEBUG(4,("enlarging do_list_queue to %d\n",
647 (int)do_list_queue_size));
648 do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
649 if (! do_list_queue) {
650 d_printf("failure enlarging do_list_queue to %d bytes\n",
651 (int)do_list_queue_size);
652 reset_do_list_queue();
653 } else {
654 memset(do_list_queue + do_list_queue_size / 2,
655 0, do_list_queue_size / 2);
658 if (do_list_queue) {
659 safe_strcpy_base(do_list_queue + do_list_queue_end,
660 entry, do_list_queue, do_list_queue_size);
661 do_list_queue_end = new_end;
662 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
663 entry, (int)do_list_queue_start, (int)do_list_queue_end));
667 static char *do_list_queue_head(void)
669 return do_list_queue + do_list_queue_start;
672 static void remove_do_list_queue_head(void)
674 if (do_list_queue_end > do_list_queue_start) {
675 do_list_queue_start += strlen(do_list_queue_head()) + 1;
676 adjust_do_list_queue();
677 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
678 (int)do_list_queue_start, (int)do_list_queue_end));
682 static int do_list_queue_empty(void)
684 return (! (do_list_queue && *do_list_queue));
687 /****************************************************************************
688 A helper for do_list.
689 ****************************************************************************/
691 static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
693 TALLOC_CTX *ctx = talloc_tos();
694 char *dir = NULL;
695 char *dir_end = NULL;
697 /* Work out the directory. */
698 dir = talloc_strdup(ctx, mask);
699 if (!dir) {
700 return;
702 if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
703 *dir_end = '\0';
706 if (f->mode & aDIR) {
707 if (do_list_dirs && do_this_one(f)) {
708 do_list_fn(f, dir);
710 if (do_list_recurse &&
711 f->name &&
712 !strequal(f->name,".") &&
713 !strequal(f->name,"..")) {
714 char *mask2 = NULL;
715 char *p = NULL;
717 if (!f->name[0]) {
718 d_printf("Empty dir name returned. Possible server misconfiguration.\n");
719 TALLOC_FREE(dir);
720 return;
723 mask2 = talloc_asprintf(ctx,
724 "%s%s",
725 mntpoint,
726 mask);
727 if (!mask2) {
728 TALLOC_FREE(dir);
729 return;
731 p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
732 if (p) {
733 p[1] = 0;
734 } else {
735 mask2[0] = '\0';
737 mask2 = talloc_asprintf_append(mask2,
738 "%s%s*",
739 f->name,
740 CLI_DIRSEP_STR);
741 if (!mask2) {
742 TALLOC_FREE(dir);
743 return;
745 add_to_do_list_queue(mask2);
746 TALLOC_FREE(mask2);
748 TALLOC_FREE(dir);
749 return;
752 if (do_this_one(f)) {
753 do_list_fn(f,dir);
755 TALLOC_FREE(dir);
758 /****************************************************************************
759 A wrapper around cli_list that adds recursion.
760 ****************************************************************************/
762 void do_list(const char *mask,
763 uint16 attribute,
764 void (*fn)(file_info *, const char *dir),
765 bool rec,
766 bool dirs)
768 static int in_do_list = 0;
769 TALLOC_CTX *ctx = talloc_tos();
770 struct cli_state *targetcli = NULL;
771 char *targetpath = NULL;
773 if (in_do_list && rec) {
774 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
775 exit(1);
778 in_do_list = 1;
780 do_list_recurse = rec;
781 do_list_dirs = dirs;
782 do_list_fn = fn;
784 if (rec) {
785 init_do_list_queue();
786 add_to_do_list_queue(mask);
788 while (!do_list_queue_empty()) {
790 * Need to copy head so that it doesn't become
791 * invalid inside the call to cli_list. This
792 * would happen if the list were expanded
793 * during the call.
794 * Fix from E. Jay Berkenbilt (ejb@ql.org)
796 char *head = talloc_strdup(ctx, do_list_queue_head());
798 if (!head) {
799 return;
802 /* check for dfs */
804 if ( !cli_resolve_path(ctx, "", auth_info, cli, head, &targetcli, &targetpath ) ) {
805 d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
806 remove_do_list_queue_head();
807 continue;
810 cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
811 remove_do_list_queue_head();
812 if ((! do_list_queue_empty()) && (fn == display_finfo)) {
813 char *next_file = do_list_queue_head();
814 char *save_ch = 0;
815 if ((strlen(next_file) >= 2) &&
816 (next_file[strlen(next_file) - 1] == '*') &&
817 (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
818 save_ch = next_file +
819 strlen(next_file) - 2;
820 *save_ch = '\0';
821 if (showacls) {
822 /* cwd is only used if showacls is on */
823 client_set_cwd(next_file);
826 if (!showacls) /* don't disturbe the showacls output */
827 d_printf("\n%s\n",next_file);
828 if (save_ch) {
829 *save_ch = CLI_DIRSEP_CHAR;
832 TALLOC_FREE(head);
833 TALLOC_FREE(targetpath);
835 } else {
836 /* check for dfs */
837 if (cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetpath)) {
838 if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
839 d_printf("%s listing %s\n",
840 cli_errstr(targetcli), targetpath);
842 TALLOC_FREE(targetpath);
843 } else {
844 d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
848 in_do_list = 0;
849 reset_do_list_queue();
852 /****************************************************************************
853 Get a directory listing.
854 ****************************************************************************/
856 static int cmd_dir(void)
858 TALLOC_CTX *ctx = talloc_tos();
859 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
860 char *mask = NULL;
861 char *buf = NULL;
862 int rc = 1;
864 dir_total = 0;
865 mask = talloc_strdup(ctx, client_get_cur_dir());
866 if (!mask) {
867 return 1;
870 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
871 normalize_name(buf);
872 if (*buf == CLI_DIRSEP_CHAR) {
873 mask = talloc_strdup(ctx, buf);
874 } else {
875 mask = talloc_asprintf_append(mask, "%s", buf);
877 } else {
878 mask = talloc_asprintf_append(mask, "*");
880 if (!mask) {
881 return 1;
884 if (showacls) {
885 /* cwd is only used if showacls is on */
886 client_set_cwd(client_get_cur_dir());
889 do_list(mask, attribute, display_finfo, recurse, true);
891 rc = do_dskattr();
893 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
895 return rc;
898 /****************************************************************************
899 Get a directory listing.
900 ****************************************************************************/
902 static int cmd_du(void)
904 TALLOC_CTX *ctx = talloc_tos();
905 uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
906 char *mask = NULL;
907 char *buf = NULL;
908 int rc = 1;
910 dir_total = 0;
911 mask = talloc_strdup(ctx, client_get_cur_dir());
912 if (!mask) {
913 return 1;
915 if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
916 mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
917 if (!mask) {
918 return 1;
922 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
923 normalize_name(buf);
924 if (*buf == CLI_DIRSEP_CHAR) {
925 mask = talloc_strdup(ctx, buf);
926 } else {
927 mask = talloc_asprintf_append(mask, "%s", buf);
929 } else {
930 mask = talloc_strdup(ctx, "*");
933 do_list(mask, attribute, do_du, recurse, true);
935 rc = do_dskattr();
937 d_printf("Total number of bytes: %.0f\n", dir_total);
939 return rc;
942 static int cmd_echo(void)
944 TALLOC_CTX *ctx = talloc_tos();
945 char *num;
946 char *data;
947 NTSTATUS status;
949 if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
950 || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
951 d_printf("echo <num> <data>\n");
952 return 1;
955 status = cli_echo(cli, atoi(num), data_blob_const(data, strlen(data)));
957 if (!NT_STATUS_IS_OK(status)) {
958 d_printf("echo failed: %s\n", nt_errstr(status));
959 return 1;
962 return 0;
965 /****************************************************************************
966 Get a file from rname to lname
967 ****************************************************************************/
969 static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
971 int *pfd = (int *)priv;
972 if (writefile(*pfd, buf, n) == -1) {
973 return map_nt_error_from_unix(errno);
975 return NT_STATUS_OK;
978 static int do_get(const char *rname, const char *lname_in, bool reget)
980 TALLOC_CTX *ctx = talloc_tos();
981 int handle = 0;
982 uint16_t fnum;
983 bool newhandle = false;
984 struct timeval tp_start;
985 uint16 attr;
986 SMB_OFF_T size;
987 off_t start = 0;
988 SMB_OFF_T nread = 0;
989 int rc = 0;
990 struct cli_state *targetcli = NULL;
991 char *targetname = NULL;
992 char *lname = NULL;
993 NTSTATUS status;
995 lname = talloc_strdup(ctx, lname_in);
996 if (!lname) {
997 return 1;
1000 if (lowercase) {
1001 strlower_m(lname);
1004 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname ) ) {
1005 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1006 return 1;
1009 GetTimeOfDay(&tp_start);
1011 if (!NT_STATUS_IS_OK(cli_open(targetcli, targetname, O_RDONLY, DENY_NONE, &fnum))) {
1012 d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
1013 return 1;
1016 if(!strcmp(lname,"-")) {
1017 handle = fileno(stdout);
1018 } else {
1019 if (reget) {
1020 handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
1021 if (handle >= 0) {
1022 start = sys_lseek(handle, 0, SEEK_END);
1023 if (start == -1) {
1024 d_printf("Error seeking local file\n");
1025 return 1;
1028 } else {
1029 handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
1031 newhandle = true;
1033 if (handle < 0) {
1034 d_printf("Error opening local file %s\n",lname);
1035 return 1;
1039 if (!cli_qfileinfo(targetcli, fnum,
1040 &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
1041 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum,
1042 &attr, &size, NULL, NULL, NULL))) {
1043 d_printf("getattrib: %s\n",cli_errstr(targetcli));
1044 return 1;
1047 DEBUG(1,("getting file %s of size %.0f as %s ",
1048 rname, (double)size, lname));
1050 status = cli_pull(targetcli, fnum, start, size, io_bufsize,
1051 writefile_sink, (void *)&handle, &nread);
1052 if (!NT_STATUS_IS_OK(status)) {
1053 d_fprintf(stderr, "parallel_read returned %s\n",
1054 nt_errstr(status));
1055 cli_close(targetcli, fnum);
1056 return 1;
1059 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1060 d_printf("Error %s closing remote file\n",cli_errstr(cli));
1061 rc = 1;
1064 if (newhandle) {
1065 close(handle);
1068 if (archive_level >= 2 && (attr & aARCH)) {
1069 cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
1073 struct timeval tp_end;
1074 int this_time;
1076 GetTimeOfDay(&tp_end);
1077 this_time =
1078 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1079 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1080 get_total_time_ms += this_time;
1081 get_total_size += nread;
1083 DEBUG(1,("(%3.1f KiloBytes/sec) (average %3.1f KiloBytes/sec)\n",
1084 nread / (1.024*this_time + 1.0e-4),
1085 get_total_size / (1.024*get_total_time_ms)));
1088 TALLOC_FREE(targetname);
1089 return rc;
1092 /****************************************************************************
1093 Get a file.
1094 ****************************************************************************/
1096 static int cmd_get(void)
1098 TALLOC_CTX *ctx = talloc_tos();
1099 char *lname = NULL;
1100 char *rname = NULL;
1101 char *fname = NULL;
1103 rname = talloc_strdup(ctx, client_get_cur_dir());
1104 if (!rname) {
1105 return 1;
1108 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1109 d_printf("get <filename> [localname]\n");
1110 return 1;
1112 rname = talloc_asprintf_append(rname, "%s", fname);
1113 if (!rname) {
1114 return 1;
1116 rname = clean_name(ctx, rname);
1117 if (!rname) {
1118 return 1;
1121 next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
1122 if (!lname) {
1123 lname = fname;
1126 return do_get(rname, lname, false);
1129 /****************************************************************************
1130 Do an mget operation on one file.
1131 ****************************************************************************/
1133 static void do_mget(file_info *finfo, const char *dir)
1135 TALLOC_CTX *ctx = talloc_tos();
1136 char *rname = NULL;
1137 char *quest = NULL;
1138 char *saved_curdir = NULL;
1139 char *mget_mask = NULL;
1140 char *new_cd = NULL;
1142 if (!finfo->name) {
1143 return;
1146 if (strequal(finfo->name,".") || strequal(finfo->name,".."))
1147 return;
1149 if (abort_mget) {
1150 d_printf("mget aborted\n");
1151 return;
1154 if (finfo->mode & aDIR) {
1155 if (asprintf(&quest,
1156 "Get directory %s? ",finfo->name) < 0) {
1157 return;
1159 } else {
1160 if (asprintf(&quest,
1161 "Get file %s? ",finfo->name) < 0) {
1162 return;
1166 if (prompt && !yesno(quest)) {
1167 SAFE_FREE(quest);
1168 return;
1170 SAFE_FREE(quest);
1172 if (!(finfo->mode & aDIR)) {
1173 rname = talloc_asprintf(ctx,
1174 "%s%s",
1175 client_get_cur_dir(),
1176 finfo->name);
1177 if (!rname) {
1178 return;
1180 do_get(rname, finfo->name, false);
1181 TALLOC_FREE(rname);
1182 return;
1185 /* handle directories */
1186 saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
1187 if (!saved_curdir) {
1188 return;
1191 new_cd = talloc_asprintf(ctx,
1192 "%s%s%s",
1193 client_get_cur_dir(),
1194 finfo->name,
1195 CLI_DIRSEP_STR);
1196 if (!new_cd) {
1197 return;
1199 client_set_cur_dir(new_cd);
1201 string_replace(finfo->name,'\\','/');
1202 if (lowercase) {
1203 strlower_m(finfo->name);
1206 if (!directory_exist(finfo->name) &&
1207 mkdir(finfo->name,0777) != 0) {
1208 d_printf("failed to create directory %s\n",finfo->name);
1209 client_set_cur_dir(saved_curdir);
1210 return;
1213 if (chdir(finfo->name) != 0) {
1214 d_printf("failed to chdir to directory %s\n",finfo->name);
1215 client_set_cur_dir(saved_curdir);
1216 return;
1219 mget_mask = talloc_asprintf(ctx,
1220 "%s*",
1221 client_get_cur_dir());
1223 if (!mget_mask) {
1224 return;
1227 do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
1228 if (chdir("..") == -1) {
1229 d_printf("do_mget: failed to chdir to .. (error %s)\n",
1230 strerror(errno) );
1232 client_set_cur_dir(saved_curdir);
1233 TALLOC_FREE(mget_mask);
1234 TALLOC_FREE(saved_curdir);
1235 TALLOC_FREE(new_cd);
1238 /****************************************************************************
1239 View the file using the pager.
1240 ****************************************************************************/
1242 static int cmd_more(void)
1244 TALLOC_CTX *ctx = talloc_tos();
1245 char *rname = NULL;
1246 char *fname = NULL;
1247 char *lname = NULL;
1248 char *pager_cmd = NULL;
1249 const char *pager;
1250 int fd;
1251 int rc = 0;
1253 rname = talloc_strdup(ctx, client_get_cur_dir());
1254 if (!rname) {
1255 return 1;
1258 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
1259 if (!lname) {
1260 return 1;
1262 fd = mkstemp(lname);
1263 if (fd == -1) {
1264 d_printf("failed to create temporary file for more\n");
1265 return 1;
1267 close(fd);
1269 if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
1270 d_printf("more <filename>\n");
1271 unlink(lname);
1272 return 1;
1274 rname = talloc_asprintf_append(rname, "%s", fname);
1275 if (!rname) {
1276 return 1;
1278 rname = clean_name(ctx,rname);
1279 if (!rname) {
1280 return 1;
1283 rc = do_get(rname, lname, false);
1285 pager=getenv("PAGER");
1287 pager_cmd = talloc_asprintf(ctx,
1288 "%s %s",
1289 (pager? pager:PAGER),
1290 lname);
1291 if (!pager_cmd) {
1292 return 1;
1294 if (system(pager_cmd) == -1) {
1295 d_printf("system command '%s' returned -1\n",
1296 pager_cmd);
1298 unlink(lname);
1300 return rc;
1303 /****************************************************************************
1304 Do a mget command.
1305 ****************************************************************************/
1307 static int cmd_mget(void)
1309 TALLOC_CTX *ctx = talloc_tos();
1310 uint16 attribute = aSYSTEM | aHIDDEN;
1311 char *mget_mask = NULL;
1312 char *buf = NULL;
1314 if (recurse) {
1315 attribute |= aDIR;
1318 abort_mget = false;
1320 while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1321 mget_mask = talloc_strdup(ctx, client_get_cur_dir());
1322 if (!mget_mask) {
1323 return 1;
1325 if (*buf == CLI_DIRSEP_CHAR) {
1326 mget_mask = talloc_strdup(ctx, buf);
1327 } else {
1328 mget_mask = talloc_asprintf_append(mget_mask,
1329 "%s", buf);
1331 if (!mget_mask) {
1332 return 1;
1334 do_list(mget_mask, attribute, do_mget, false, true);
1337 if (mget_mask == NULL) {
1338 d_printf("nothing to mget\n");
1339 return 0;
1342 if (!*mget_mask) {
1343 mget_mask = talloc_asprintf(ctx,
1344 "%s*",
1345 client_get_cur_dir());
1346 if (!mget_mask) {
1347 return 1;
1349 do_list(mget_mask, attribute, do_mget, false, true);
1352 return 0;
1355 /****************************************************************************
1356 Make a directory of name "name".
1357 ****************************************************************************/
1359 static bool do_mkdir(const char *name)
1361 TALLOC_CTX *ctx = talloc_tos();
1362 struct cli_state *targetcli;
1363 char *targetname = NULL;
1365 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
1366 d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
1367 return false;
1370 if (!NT_STATUS_IS_OK(cli_mkdir(targetcli, targetname))) {
1371 d_printf("%s making remote directory %s\n",
1372 cli_errstr(targetcli),name);
1373 return false;
1376 return true;
1379 /****************************************************************************
1380 Show 8.3 name of a file.
1381 ****************************************************************************/
1383 static bool do_altname(const char *name)
1385 fstring altname;
1387 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1388 d_printf("%s getting alt name for %s\n",
1389 cli_errstr(cli),name);
1390 return false;
1392 d_printf("%s\n", altname);
1394 return true;
1397 /****************************************************************************
1398 Exit client.
1399 ****************************************************************************/
1401 static int cmd_quit(void)
1403 cli_shutdown(cli);
1404 exit(0);
1405 /* NOTREACHED */
1406 return 0;
1409 /****************************************************************************
1410 Make a directory.
1411 ****************************************************************************/
1413 static int cmd_mkdir(void)
1415 TALLOC_CTX *ctx = talloc_tos();
1416 char *mask = NULL;
1417 char *buf = NULL;
1419 mask = talloc_strdup(ctx, client_get_cur_dir());
1420 if (!mask) {
1421 return 1;
1424 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1425 if (!recurse) {
1426 d_printf("mkdir <dirname>\n");
1428 return 1;
1430 mask = talloc_asprintf_append(mask, "%s", buf);
1431 if (!mask) {
1432 return 1;
1435 if (recurse) {
1436 char *ddir = NULL;
1437 char *ddir2 = NULL;
1438 struct cli_state *targetcli;
1439 char *targetname = NULL;
1440 char *p = NULL;
1441 char *saveptr;
1443 ddir2 = talloc_strdup(ctx, "");
1444 if (!ddir2) {
1445 return 1;
1448 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
1449 return 1;
1452 ddir = talloc_strdup(ctx, targetname);
1453 if (!ddir) {
1454 return 1;
1456 trim_char(ddir,'.','\0');
1457 p = strtok_r(ddir, "/\\", &saveptr);
1458 while (p) {
1459 ddir2 = talloc_asprintf_append(ddir2, "%s", p);
1460 if (!ddir2) {
1461 return 1;
1463 if (!NT_STATUS_IS_OK(cli_chkpath(targetcli, ddir2))) {
1464 do_mkdir(ddir2);
1466 ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
1467 if (!ddir2) {
1468 return 1;
1470 p = strtok_r(NULL, "/\\", &saveptr);
1472 } else {
1473 do_mkdir(mask);
1476 return 0;
1479 /****************************************************************************
1480 Show alt name.
1481 ****************************************************************************/
1483 static int cmd_altname(void)
1485 TALLOC_CTX *ctx = talloc_tos();
1486 char *name;
1487 char *buf;
1489 name = talloc_strdup(ctx, client_get_cur_dir());
1490 if (!name) {
1491 return 1;
1494 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1495 d_printf("altname <file>\n");
1496 return 1;
1498 name = talloc_asprintf_append(name, "%s", buf);
1499 if (!name) {
1500 return 1;
1502 do_altname(name);
1503 return 0;
1506 /****************************************************************************
1507 Show all info we can get
1508 ****************************************************************************/
1510 static int do_allinfo(const char *name)
1512 fstring altname;
1513 struct timespec b_time, a_time, m_time, c_time;
1514 SMB_OFF_T size;
1515 uint16_t mode;
1516 SMB_INO_T ino;
1517 NTTIME tmp;
1518 unsigned int num_streams;
1519 struct stream_struct *streams;
1520 unsigned int i;
1522 if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
1523 d_printf("%s getting alt name for %s\n",
1524 cli_errstr(cli),name);
1525 return false;
1527 d_printf("altname: %s\n", altname);
1529 if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
1530 &size, &mode, &ino)) {
1531 d_printf("%s getting pathinfo for %s\n",
1532 cli_errstr(cli),name);
1533 return false;
1536 unix_timespec_to_nt_time(&tmp, b_time);
1537 d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
1539 unix_timespec_to_nt_time(&tmp, a_time);
1540 d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
1542 unix_timespec_to_nt_time(&tmp, m_time);
1543 d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
1545 unix_timespec_to_nt_time(&tmp, c_time);
1546 d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
1548 if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
1549 &streams)) {
1550 d_printf("%s getting streams for %s\n",
1551 cli_errstr(cli),name);
1552 return false;
1555 for (i=0; i<num_streams; i++) {
1556 d_printf("stream: [%s], %lld bytes\n", streams[i].name,
1557 (unsigned long long)streams[i].size);
1560 return 0;
1563 /****************************************************************************
1564 Show all info we can get
1565 ****************************************************************************/
1567 static int cmd_allinfo(void)
1569 TALLOC_CTX *ctx = talloc_tos();
1570 char *name;
1571 char *buf;
1573 name = talloc_strdup(ctx, client_get_cur_dir());
1574 if (!name) {
1575 return 1;
1578 if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
1579 d_printf("allinfo <file>\n");
1580 return 1;
1582 name = talloc_asprintf_append(name, "%s", buf);
1583 if (!name) {
1584 return 1;
1587 do_allinfo(name);
1589 return 0;
1592 /****************************************************************************
1593 Put a single file.
1594 ****************************************************************************/
1596 static int do_put(const char *rname, const char *lname, bool reput)
1598 TALLOC_CTX *ctx = talloc_tos();
1599 uint16_t fnum;
1600 XFILE *f;
1601 SMB_OFF_T start = 0;
1602 int rc = 0;
1603 struct timeval tp_start;
1604 struct cli_state *targetcli;
1605 char *targetname = NULL;
1606 struct push_state state;
1607 NTSTATUS status;
1609 if (!cli_resolve_path(ctx, "", auth_info, cli, rname, &targetcli, &targetname)) {
1610 d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
1611 return 1;
1614 GetTimeOfDay(&tp_start);
1616 if (reput) {
1617 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE, &fnum);
1618 if (NT_STATUS_IS_OK(status)) {
1619 if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
1620 !NT_STATUS_IS_OK(cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL))) {
1621 d_printf("getattrib: %s\n",cli_errstr(cli));
1622 return 1;
1625 } else {
1626 status = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE, &fnum);
1629 if (!NT_STATUS_IS_OK(status)) {
1630 d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
1631 return 1;
1634 /* allow files to be piped into smbclient
1635 jdblair 24.jun.98
1637 Note that in this case this function will exit(0) rather
1638 than returning. */
1639 if (!strcmp(lname, "-")) {
1640 f = x_stdin;
1641 /* size of file is not known */
1642 } else {
1643 f = x_fopen(lname,O_RDONLY, 0);
1644 if (f && reput) {
1645 if (x_tseek(f, start, SEEK_SET) == -1) {
1646 d_printf("Error seeking local file\n");
1647 x_fclose(f);
1648 return 1;
1653 if (!f) {
1654 d_printf("Error opening local file %s\n",lname);
1655 return 1;
1658 DEBUG(1,("putting file %s as %s ",lname,
1659 rname));
1661 x_setvbuf(f, NULL, X_IOFBF, io_bufsize);
1663 state.f = f;
1664 state.nread = 0;
1666 status = cli_push(targetcli, fnum, 0, 0, io_bufsize, push_source,
1667 &state);
1668 if (!NT_STATUS_IS_OK(status)) {
1669 d_fprintf(stderr, "cli_push returned %s\n", nt_errstr(status));
1672 if (!NT_STATUS_IS_OK(cli_close(targetcli, fnum))) {
1673 d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
1674 if (f != x_stdin) {
1675 x_fclose(f);
1677 return 1;
1680 if (f != x_stdin) {
1681 x_fclose(f);
1685 struct timeval tp_end;
1686 int this_time;
1688 GetTimeOfDay(&tp_end);
1689 this_time =
1690 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1691 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1692 put_total_time_ms += this_time;
1693 put_total_size += state.nread;
1695 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1696 state.nread / (1.024*this_time + 1.0e-4),
1697 put_total_size / (1.024*put_total_time_ms)));
1700 if (f == x_stdin) {
1701 cli_shutdown(cli);
1702 exit(0);
1705 return rc;
1708 /****************************************************************************
1709 Put a file.
1710 ****************************************************************************/
1712 static int cmd_put(void)
1714 TALLOC_CTX *ctx = talloc_tos();
1715 char *lname;
1716 char *rname;
1717 char *buf;
1719 rname = talloc_strdup(ctx, client_get_cur_dir());
1720 if (!rname) {
1721 return 1;
1724 if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
1725 d_printf("put <filename>\n");
1726 return 1;
1729 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
1730 rname = talloc_asprintf_append(rname, "%s", buf);
1731 } else {
1732 rname = talloc_asprintf_append(rname, "%s", lname);
1734 if (!rname) {
1735 return 1;
1738 rname = clean_name(ctx, rname);
1739 if (!rname) {
1740 return 1;
1744 SMB_STRUCT_STAT st;
1745 /* allow '-' to represent stdin
1746 jdblair, 24.jun.98 */
1747 if (!file_exist_stat(lname,&st) &&
1748 (strcmp(lname,"-"))) {
1749 d_printf("%s does not exist\n",lname);
1750 return 1;
1754 return do_put(rname, lname, false);
1757 /*************************************
1758 File list structure.
1759 *************************************/
1761 static struct file_list {
1762 struct file_list *prev, *next;
1763 char *file_path;
1764 bool isdir;
1765 } *file_list;
1767 /****************************************************************************
1768 Free a file_list structure.
1769 ****************************************************************************/
1771 static void free_file_list (struct file_list *l_head)
1773 struct file_list *list, *next;
1775 for (list = l_head; list; list = next) {
1776 next = list->next;
1777 DLIST_REMOVE(l_head, list);
1778 SAFE_FREE(list->file_path);
1779 SAFE_FREE(list);
1783 /****************************************************************************
1784 Seek in a directory/file list until you get something that doesn't start with
1785 the specified name.
1786 ****************************************************************************/
1788 static bool seek_list(struct file_list *list, char *name)
1790 while (list) {
1791 trim_string(list->file_path,"./","\n");
1792 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1793 return true;
1795 list = list->next;
1798 return false;
1801 /****************************************************************************
1802 Set the file selection mask.
1803 ****************************************************************************/
1805 static int cmd_select(void)
1807 TALLOC_CTX *ctx = talloc_tos();
1808 char *new_fs = NULL;
1809 next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
1811 if (new_fs) {
1812 client_set_fileselection(new_fs);
1813 } else {
1814 client_set_fileselection("");
1816 return 0;
1819 /****************************************************************************
1820 Recursive file matching function act as find
1821 match must be always set to true when calling this function
1822 ****************************************************************************/
1824 static int file_find(struct file_list **list, const char *directory,
1825 const char *expression, bool match)
1827 SMB_STRUCT_DIR *dir;
1828 struct file_list *entry;
1829 struct stat statbuf;
1830 int ret;
1831 char *path;
1832 bool isdir;
1833 const char *dname;
1835 dir = sys_opendir(directory);
1836 if (!dir)
1837 return -1;
1839 while ((dname = readdirname(dir))) {
1840 if (!strcmp("..", dname))
1841 continue;
1842 if (!strcmp(".", dname))
1843 continue;
1845 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1846 continue;
1849 isdir = false;
1850 if (!match || !gen_fnmatch(expression, dname)) {
1851 if (recurse) {
1852 ret = stat(path, &statbuf);
1853 if (ret == 0) {
1854 if (S_ISDIR(statbuf.st_mode)) {
1855 isdir = true;
1856 ret = file_find(list, path, expression, false);
1858 } else {
1859 d_printf("file_find: cannot stat file %s\n", path);
1862 if (ret == -1) {
1863 SAFE_FREE(path);
1864 sys_closedir(dir);
1865 return -1;
1868 entry = SMB_MALLOC_P(struct file_list);
1869 if (!entry) {
1870 d_printf("Out of memory in file_find\n");
1871 sys_closedir(dir);
1872 return -1;
1874 entry->file_path = path;
1875 entry->isdir = isdir;
1876 DLIST_ADD(*list, entry);
1877 } else {
1878 SAFE_FREE(path);
1882 sys_closedir(dir);
1883 return 0;
1886 /****************************************************************************
1887 mput some files.
1888 ****************************************************************************/
1890 static int cmd_mput(void)
1892 TALLOC_CTX *ctx = talloc_tos();
1893 char *p = NULL;
1895 while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
1896 int ret;
1897 struct file_list *temp_list;
1898 char *quest, *lname, *rname;
1900 file_list = NULL;
1902 ret = file_find(&file_list, ".", p, true);
1903 if (ret) {
1904 free_file_list(file_list);
1905 continue;
1908 quest = NULL;
1909 lname = NULL;
1910 rname = NULL;
1912 for (temp_list = file_list; temp_list;
1913 temp_list = temp_list->next) {
1915 SAFE_FREE(lname);
1916 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
1917 continue;
1919 trim_string(lname, "./", "/");
1921 /* check if it's a directory */
1922 if (temp_list->isdir) {
1923 /* if (!recurse) continue; */
1925 SAFE_FREE(quest);
1926 if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
1927 break;
1929 if (prompt && !yesno(quest)) { /* No */
1930 /* Skip the directory */
1931 lname[strlen(lname)-1] = '/';
1932 if (!seek_list(temp_list, lname))
1933 break;
1934 } else { /* Yes */
1935 SAFE_FREE(rname);
1936 if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1937 break;
1939 normalize_name(rname);
1940 if (!NT_STATUS_IS_OK(cli_chkpath(cli, rname)) &&
1941 !do_mkdir(rname)) {
1942 DEBUG (0, ("Unable to make dir, skipping..."));
1943 /* Skip the directory */
1944 lname[strlen(lname)-1] = '/';
1945 if (!seek_list(temp_list, lname)) {
1946 break;
1950 continue;
1951 } else {
1952 SAFE_FREE(quest);
1953 if (asprintf(&quest,"Put file %s? ", lname) < 0) {
1954 break;
1956 if (prompt && !yesno(quest)) {
1957 /* No */
1958 continue;
1961 /* Yes */
1962 SAFE_FREE(rname);
1963 if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
1964 break;
1968 normalize_name(rname);
1970 do_put(rname, lname, false);
1972 free_file_list(file_list);
1973 SAFE_FREE(quest);
1974 SAFE_FREE(lname);
1975 SAFE_FREE(rname);
1978 return 0;
1981 /****************************************************************************
1982 Cancel a print job.
1983 ****************************************************************************/
1985 static int do_cancel(int job)
1987 if (cli_printjob_del(cli, job)) {
1988 d_printf("Job %d cancelled\n",job);
1989 return 0;
1990 } else {
1991 d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
1992 return 1;
1996 /****************************************************************************
1997 Cancel a print job.
1998 ****************************************************************************/
2000 static int cmd_cancel(void)
2002 TALLOC_CTX *ctx = talloc_tos();
2003 char *buf = NULL;
2004 int job;
2006 if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
2007 d_printf("cancel <jobid> ...\n");
2008 return 1;
2010 do {
2011 job = atoi(buf);
2012 do_cancel(job);
2013 } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
2015 return 0;
2018 /****************************************************************************
2019 Print a file.
2020 ****************************************************************************/
2022 static int cmd_print(void)
2024 TALLOC_CTX *ctx = talloc_tos();
2025 char *lname = NULL;
2026 char *rname = NULL;
2027 char *p = NULL;
2029 if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
2030 d_printf("print <filename>\n");
2031 return 1;
2034 rname = talloc_strdup(ctx, lname);
2035 if (!rname) {
2036 return 1;
2038 p = strrchr_m(rname,'/');
2039 if (p) {
2040 rname = talloc_asprintf(ctx,
2041 "%s-%d",
2042 p+1,
2043 (int)sys_getpid());
2045 if (strequal(lname,"-")) {
2046 rname = talloc_asprintf(ctx,
2047 "stdin-%d",
2048 (int)sys_getpid());
2050 if (!rname) {
2051 return 1;
2054 return do_put(rname, lname, false);
2057 /****************************************************************************
2058 Show a print queue entry.
2059 ****************************************************************************/
2061 static void queue_fn(struct print_job_info *p)
2063 d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
2066 /****************************************************************************
2067 Show a print queue.
2068 ****************************************************************************/
2070 static int cmd_queue(void)
2072 cli_print_queue(cli, queue_fn);
2073 return 0;
2076 /****************************************************************************
2077 Delete some files.
2078 ****************************************************************************/
2080 static void do_del(file_info *finfo, const char *dir)
2082 TALLOC_CTX *ctx = talloc_tos();
2083 char *mask = NULL;
2085 mask = talloc_asprintf(ctx,
2086 "%s%c%s",
2087 dir,
2088 CLI_DIRSEP_CHAR,
2089 finfo->name);
2090 if (!mask) {
2091 return;
2094 if (finfo->mode & aDIR) {
2095 TALLOC_FREE(mask);
2096 return;
2099 if (!NT_STATUS_IS_OK(cli_unlink(finfo->cli, mask, aSYSTEM | aHIDDEN))) {
2100 d_printf("%s deleting remote file %s\n",
2101 cli_errstr(finfo->cli),mask);
2103 TALLOC_FREE(mask);
2106 /****************************************************************************
2107 Delete some files.
2108 ****************************************************************************/
2110 static int cmd_del(void)
2112 TALLOC_CTX *ctx = talloc_tos();
2113 char *mask = NULL;
2114 char *buf = NULL;
2115 uint16 attribute = aSYSTEM | aHIDDEN;
2117 if (recurse) {
2118 attribute |= aDIR;
2121 mask = talloc_strdup(ctx, client_get_cur_dir());
2122 if (!mask) {
2123 return 1;
2125 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2126 d_printf("del <filename>\n");
2127 return 1;
2129 mask = talloc_asprintf_append(mask, "%s", buf);
2130 if (!mask) {
2131 return 1;
2134 do_list(mask,attribute,do_del,false,false);
2135 return 0;
2138 /****************************************************************************
2139 Wildcard delete some files.
2140 ****************************************************************************/
2142 static int cmd_wdel(void)
2144 TALLOC_CTX *ctx = talloc_tos();
2145 char *mask = NULL;
2146 char *buf = NULL;
2147 uint16 attribute;
2148 struct cli_state *targetcli;
2149 char *targetname = NULL;
2151 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2152 d_printf("wdel 0x<attrib> <wcard>\n");
2153 return 1;
2156 attribute = (uint16)strtol(buf, (char **)NULL, 16);
2158 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2159 d_printf("wdel 0x<attrib> <wcard>\n");
2160 return 1;
2163 mask = talloc_asprintf(ctx, "%s%s",
2164 client_get_cur_dir(),
2165 buf);
2166 if (!mask) {
2167 return 1;
2170 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2171 d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
2172 return 1;
2175 if (!NT_STATUS_IS_OK(cli_unlink(targetcli, targetname, attribute))) {
2176 d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
2178 return 0;
2181 /****************************************************************************
2182 ****************************************************************************/
2184 static int cmd_open(void)
2186 TALLOC_CTX *ctx = talloc_tos();
2187 char *mask = NULL;
2188 char *buf = NULL;
2189 char *targetname = NULL;
2190 struct cli_state *targetcli;
2191 uint16_t fnum = (uint16_t)-1;
2193 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2194 d_printf("open <filename>\n");
2195 return 1;
2197 mask = talloc_asprintf(ctx,
2198 "%s%s",
2199 client_get_cur_dir(),
2200 buf);
2201 if (!mask) {
2202 return 1;
2205 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2206 d_printf("open %s: %s\n", mask, cli_errstr(cli));
2207 return 1;
2210 if (!NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2211 FILE_READ_DATA|FILE_WRITE_DATA, 0,
2212 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2213 if (NT_STATUS_IS_OK(cli_ntcreate(targetcli, targetname, 0,
2214 FILE_READ_DATA, 0,
2215 FILE_SHARE_READ|FILE_SHARE_WRITE, FILE_OPEN, 0x0, 0x0, &fnum))) {
2216 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2217 } else {
2218 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2220 } else {
2221 d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
2223 return 0;
2226 static int cmd_posix_encrypt(void)
2228 TALLOC_CTX *ctx = talloc_tos();
2229 NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
2231 if (cli->use_kerberos) {
2232 status = cli_gss_smb_encryption_start(cli);
2233 } else {
2234 char *domain = NULL;
2235 char *user = NULL;
2236 char *password = NULL;
2238 if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
2239 d_printf("posix_encrypt domain user password\n");
2240 return 1;
2243 if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
2244 d_printf("posix_encrypt domain user password\n");
2245 return 1;
2248 if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
2249 d_printf("posix_encrypt domain user password\n");
2250 return 1;
2253 status = cli_raw_ntlm_smb_encryption_start(cli,
2254 user,
2255 password,
2256 domain);
2259 if (!NT_STATUS_IS_OK(status)) {
2260 d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
2261 } else {
2262 d_printf("encryption on\n");
2263 smb_encrypt = true;
2266 return 0;
2269 /****************************************************************************
2270 ****************************************************************************/
2272 static int cmd_posix_open(void)
2274 TALLOC_CTX *ctx = talloc_tos();
2275 char *mask = NULL;
2276 char *buf = NULL;
2277 char *targetname = NULL;
2278 struct cli_state *targetcli;
2279 mode_t mode;
2280 uint16_t fnum;
2282 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2283 d_printf("posix_open <filename> 0<mode>\n");
2284 return 1;
2286 mask = talloc_asprintf(ctx,
2287 "%s%s",
2288 client_get_cur_dir(),
2289 buf);
2290 if (!mask) {
2291 return 1;
2294 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2295 d_printf("posix_open <filename> 0<mode>\n");
2296 return 1;
2298 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2300 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2301 d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
2302 return 1;
2305 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode, &fnum))) {
2306 if (!NT_STATUS_IS_OK(cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode, &fnum))) {
2307 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2308 } else {
2309 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2311 } else {
2312 d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
2315 return 0;
2318 static int cmd_posix_mkdir(void)
2320 TALLOC_CTX *ctx = talloc_tos();
2321 char *mask = NULL;
2322 char *buf = NULL;
2323 char *targetname = NULL;
2324 struct cli_state *targetcli;
2325 mode_t mode;
2327 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2328 d_printf("posix_mkdir <filename> 0<mode>\n");
2329 return 1;
2331 mask = talloc_asprintf(ctx,
2332 "%s%s",
2333 client_get_cur_dir(),
2334 buf);
2335 if (!mask) {
2336 return 1;
2339 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2340 d_printf("posix_mkdir <filename> 0<mode>\n");
2341 return 1;
2343 mode = (mode_t)strtol(buf, (char **)NULL, 8);
2345 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2346 d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
2347 return 1;
2350 if (!NT_STATUS_IS_OK(cli_posix_mkdir(targetcli, targetname, mode))) {
2351 d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
2352 } else {
2353 d_printf("posix_mkdir created directory %s\n", targetname);
2355 return 0;
2358 static int cmd_posix_unlink(void)
2360 TALLOC_CTX *ctx = talloc_tos();
2361 char *mask = NULL;
2362 char *buf = NULL;
2363 char *targetname = NULL;
2364 struct cli_state *targetcli;
2366 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2367 d_printf("posix_unlink <filename>\n");
2368 return 1;
2370 mask = talloc_asprintf(ctx,
2371 "%s%s",
2372 client_get_cur_dir(),
2373 buf);
2374 if (!mask) {
2375 return 1;
2378 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2379 d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
2380 return 1;
2383 if (!NT_STATUS_IS_OK(cli_posix_unlink(targetcli, targetname))) {
2384 d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
2385 } else {
2386 d_printf("posix_unlink deleted file %s\n", targetname);
2389 return 0;
2392 static int cmd_posix_rmdir(void)
2394 TALLOC_CTX *ctx = talloc_tos();
2395 char *mask = NULL;
2396 char *buf = NULL;
2397 char *targetname = NULL;
2398 struct cli_state *targetcli;
2400 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2401 d_printf("posix_rmdir <filename>\n");
2402 return 1;
2404 mask = talloc_asprintf(ctx,
2405 "%s%s",
2406 client_get_cur_dir(),
2407 buf);
2408 if (!mask) {
2409 return 1;
2412 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2413 d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
2414 return 1;
2417 if (!NT_STATUS_IS_OK(cli_posix_rmdir(targetcli, targetname))) {
2418 d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
2419 } else {
2420 d_printf("posix_rmdir deleted directory %s\n", targetname);
2423 return 0;
2426 static int cmd_close(void)
2428 TALLOC_CTX *ctx = talloc_tos();
2429 char *buf = NULL;
2430 int fnum;
2432 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2433 d_printf("close <fnum>\n");
2434 return 1;
2437 fnum = atoi(buf);
2438 /* We really should use the targetcli here.... */
2439 if (!NT_STATUS_IS_OK(cli_close(cli, fnum))) {
2440 d_printf("close %d: %s\n", fnum, cli_errstr(cli));
2441 return 1;
2443 return 0;
2446 static int cmd_posix(void)
2448 TALLOC_CTX *ctx = talloc_tos();
2449 uint16 major, minor;
2450 uint32 caplow, caphigh;
2451 char *caps;
2453 if (!SERVER_HAS_UNIX_CIFS(cli)) {
2454 d_printf("Server doesn't support UNIX CIFS extensions.\n");
2455 return 1;
2458 if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
2459 d_printf("Can't get UNIX CIFS extensions version from server.\n");
2460 return 1;
2463 d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
2465 caps = talloc_strdup(ctx, "");
2466 if (!caps) {
2467 return 1;
2469 if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
2470 caps = talloc_asprintf_append(caps, "locks ");
2471 if (!caps) {
2472 return 1;
2475 if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
2476 caps = talloc_asprintf_append(caps, "acls ");
2477 if (!caps) {
2478 return 1;
2481 if (caplow & CIFS_UNIX_XATTTR_CAP) {
2482 caps = talloc_asprintf_append(caps, "eas ");
2483 if (!caps) {
2484 return 1;
2487 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2488 caps = talloc_asprintf_append(caps, "pathnames ");
2489 if (!caps) {
2490 return 1;
2493 if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
2494 caps = talloc_asprintf_append(caps, "posix_path_operations ");
2495 if (!caps) {
2496 return 1;
2499 if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
2500 caps = talloc_asprintf_append(caps, "large_read ");
2501 if (!caps) {
2502 return 1;
2505 if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
2506 caps = talloc_asprintf_append(caps, "large_write ");
2507 if (!caps) {
2508 return 1;
2511 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
2512 caps = talloc_asprintf_append(caps, "posix_encrypt ");
2513 if (!caps) {
2514 return 1;
2517 if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
2518 caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
2519 if (!caps) {
2520 return 1;
2524 if (*caps && caps[strlen(caps)-1] == ' ') {
2525 caps[strlen(caps)-1] = '\0';
2528 d_printf("Server supports CIFS capabilities %s\n", caps);
2530 if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
2531 d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
2532 return 1;
2535 if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
2536 CLI_DIRSEP_CHAR = '/';
2537 *CLI_DIRSEP_STR = '/';
2538 client_set_cur_dir(CLI_DIRSEP_STR);
2541 return 0;
2544 static int cmd_lock(void)
2546 TALLOC_CTX *ctx = talloc_tos();
2547 char *buf = NULL;
2548 uint64_t start, len;
2549 enum brl_type lock_type;
2550 int fnum;
2552 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2553 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2554 return 1;
2556 fnum = atoi(buf);
2558 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2559 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2560 return 1;
2563 if (*buf == 'r' || *buf == 'R') {
2564 lock_type = READ_LOCK;
2565 } else if (*buf == 'w' || *buf == 'W') {
2566 lock_type = WRITE_LOCK;
2567 } else {
2568 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2569 return 1;
2572 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2573 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2574 return 1;
2577 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2579 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2580 d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
2581 return 1;
2584 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2586 if (!NT_STATUS_IS_OK(cli_posix_lock(cli, fnum, start, len, true, lock_type))) {
2587 d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
2590 return 0;
2593 static int cmd_unlock(void)
2595 TALLOC_CTX *ctx = talloc_tos();
2596 char *buf = NULL;
2597 uint64_t start, len;
2598 int fnum;
2600 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2601 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2602 return 1;
2604 fnum = atoi(buf);
2606 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2607 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2608 return 1;
2611 start = (uint64_t)strtol(buf, (char **)NULL, 16);
2613 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2614 d_printf("unlock <fnum> <hex-start> <hex-len>\n");
2615 return 1;
2618 len = (uint64_t)strtol(buf, (char **)NULL, 16);
2620 if (!NT_STATUS_IS_OK(cli_posix_unlock(cli, fnum, start, len))) {
2621 d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
2624 return 0;
2628 /****************************************************************************
2629 Remove a directory.
2630 ****************************************************************************/
2632 static int cmd_rmdir(void)
2634 TALLOC_CTX *ctx = talloc_tos();
2635 char *mask = NULL;
2636 char *buf = NULL;
2637 char *targetname = NULL;
2638 struct cli_state *targetcli;
2640 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2641 d_printf("rmdir <dirname>\n");
2642 return 1;
2644 mask = talloc_asprintf(ctx,
2645 "%s%s",
2646 client_get_cur_dir(),
2647 buf);
2648 if (!mask) {
2649 return 1;
2652 if (!cli_resolve_path(ctx, "", auth_info, cli, mask, &targetcli, &targetname)) {
2653 d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
2654 return 1;
2657 if (!NT_STATUS_IS_OK(cli_rmdir(targetcli, targetname))) {
2658 d_printf("%s removing remote directory file %s\n",
2659 cli_errstr(targetcli),mask);
2662 return 0;
2665 /****************************************************************************
2666 UNIX hardlink.
2667 ****************************************************************************/
2669 static int cmd_link(void)
2671 TALLOC_CTX *ctx = talloc_tos();
2672 char *oldname = NULL;
2673 char *newname = NULL;
2674 char *buf = NULL;
2675 char *buf2 = NULL;
2676 char *targetname = NULL;
2677 struct cli_state *targetcli;
2679 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2680 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2681 d_printf("link <oldname> <newname>\n");
2682 return 1;
2684 oldname = talloc_asprintf(ctx,
2685 "%s%s",
2686 client_get_cur_dir(),
2687 buf);
2688 if (!oldname) {
2689 return 1;
2691 newname = talloc_asprintf(ctx,
2692 "%s%s",
2693 client_get_cur_dir(),
2694 buf2);
2695 if (!newname) {
2696 return 1;
2699 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2700 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2701 return 1;
2704 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2705 d_printf("Server doesn't support UNIX CIFS calls.\n");
2706 return 1;
2709 if (!NT_STATUS_IS_OK(cli_posix_hardlink(targetcli, targetname, newname))) {
2710 d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
2711 return 1;
2713 return 0;
2716 /****************************************************************************
2717 UNIX readlink.
2718 ****************************************************************************/
2720 static int cmd_readlink(void)
2722 TALLOC_CTX *ctx = talloc_tos();
2723 char *name= NULL;
2724 char *buf = NULL;
2725 char *targetname = NULL;
2726 char linkname[PATH_MAX+1];
2727 struct cli_state *targetcli;
2729 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
2730 d_printf("readlink <name>\n");
2731 return 1;
2733 name = talloc_asprintf(ctx,
2734 "%s%s",
2735 client_get_cur_dir(),
2736 buf);
2737 if (!name) {
2738 return 1;
2741 if (!cli_resolve_path(ctx, "", auth_info, cli, name, &targetcli, &targetname)) {
2742 d_printf("readlink %s: %s\n", name, cli_errstr(cli));
2743 return 1;
2746 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2747 d_printf("Server doesn't support UNIX CIFS calls.\n");
2748 return 1;
2751 if (!NT_STATUS_IS_OK(cli_posix_readlink(targetcli, name,
2752 linkname, PATH_MAX+1))) {
2753 d_printf("%s readlink on file %s\n",
2754 cli_errstr(targetcli), name);
2755 return 1;
2758 d_printf("%s -> %s\n", name, linkname);
2760 return 0;
2764 /****************************************************************************
2765 UNIX symlink.
2766 ****************************************************************************/
2768 static int cmd_symlink(void)
2770 TALLOC_CTX *ctx = talloc_tos();
2771 char *oldname = NULL;
2772 char *newname = NULL;
2773 char *buf = NULL;
2774 char *buf2 = NULL;
2775 char *targetname = NULL;
2776 struct cli_state *targetcli;
2778 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2779 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2780 d_printf("symlink <oldname> <newname>\n");
2781 return 1;
2783 oldname = talloc_asprintf(ctx,
2784 "%s%s",
2785 client_get_cur_dir(),
2786 buf);
2787 if (!oldname) {
2788 return 1;
2790 newname = talloc_asprintf(ctx,
2791 "%s%s",
2792 client_get_cur_dir(),
2793 buf2);
2794 if (!newname) {
2795 return 1;
2798 if (!cli_resolve_path(ctx, "", auth_info, cli, oldname, &targetcli, &targetname)) {
2799 d_printf("link %s: %s\n", oldname, cli_errstr(cli));
2800 return 1;
2803 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2804 d_printf("Server doesn't support UNIX CIFS calls.\n");
2805 return 1;
2808 if (!NT_STATUS_IS_OK(cli_posix_symlink(targetcli, targetname, newname))) {
2809 d_printf("%s symlinking files (%s -> %s)\n",
2810 cli_errstr(targetcli), newname, targetname);
2811 return 1;
2814 return 0;
2817 /****************************************************************************
2818 UNIX chmod.
2819 ****************************************************************************/
2821 static int cmd_chmod(void)
2823 TALLOC_CTX *ctx = talloc_tos();
2824 char *src = NULL;
2825 char *buf = NULL;
2826 char *buf2 = NULL;
2827 char *targetname = NULL;
2828 struct cli_state *targetcli;
2829 mode_t mode;
2831 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
2832 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
2833 d_printf("chmod mode file\n");
2834 return 1;
2836 src = talloc_asprintf(ctx,
2837 "%s%s",
2838 client_get_cur_dir(),
2839 buf2);
2840 if (!src) {
2841 return 1;
2844 mode = (mode_t)strtol(buf, NULL, 8);
2846 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
2847 d_printf("chmod %s: %s\n", src, cli_errstr(cli));
2848 return 1;
2851 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
2852 d_printf("Server doesn't support UNIX CIFS calls.\n");
2853 return 1;
2856 if (!NT_STATUS_IS_OK(cli_posix_chmod(targetcli, targetname, mode))) {
2857 d_printf("%s chmod file %s 0%o\n",
2858 cli_errstr(targetcli), src, (unsigned int)mode);
2859 return 1;
2862 return 0;
2865 static const char *filetype_to_str(mode_t mode)
2867 if (S_ISREG(mode)) {
2868 return "regular file";
2869 } else if (S_ISDIR(mode)) {
2870 return "directory";
2871 } else
2872 #ifdef S_ISCHR
2873 if (S_ISCHR(mode)) {
2874 return "character device";
2875 } else
2876 #endif
2877 #ifdef S_ISBLK
2878 if (S_ISBLK(mode)) {
2879 return "block device";
2880 } else
2881 #endif
2882 #ifdef S_ISFIFO
2883 if (S_ISFIFO(mode)) {
2884 return "fifo";
2885 } else
2886 #endif
2887 #ifdef S_ISLNK
2888 if (S_ISLNK(mode)) {
2889 return "symbolic link";
2890 } else
2891 #endif
2892 #ifdef S_ISSOCK
2893 if (S_ISSOCK(mode)) {
2894 return "socket";
2895 } else
2896 #endif
2897 return "";
2900 static char rwx_to_str(mode_t m, mode_t bt, char ret)
2902 if (m & bt) {
2903 return ret;
2904 } else {
2905 return '-';
2909 static char *unix_mode_to_str(char *s, mode_t m)
2911 char *p = s;
2912 const char *str = filetype_to_str(m);
2914 switch(str[0]) {
2915 case 'd':
2916 *p++ = 'd';
2917 break;
2918 case 'c':
2919 *p++ = 'c';
2920 break;
2921 case 'b':
2922 *p++ = 'b';
2923 break;
2924 case 'f':
2925 *p++ = 'p';
2926 break;
2927 case 's':
2928 *p++ = str[1] == 'y' ? 'l' : 's';
2929 break;
2930 case 'r':
2931 default:
2932 *p++ = '-';
2933 break;
2935 *p++ = rwx_to_str(m, S_IRUSR, 'r');
2936 *p++ = rwx_to_str(m, S_IWUSR, 'w');
2937 *p++ = rwx_to_str(m, S_IXUSR, 'x');
2938 *p++ = rwx_to_str(m, S_IRGRP, 'r');
2939 *p++ = rwx_to_str(m, S_IWGRP, 'w');
2940 *p++ = rwx_to_str(m, S_IXGRP, 'x');
2941 *p++ = rwx_to_str(m, S_IROTH, 'r');
2942 *p++ = rwx_to_str(m, S_IWOTH, 'w');
2943 *p++ = rwx_to_str(m, S_IXOTH, 'x');
2944 *p++ = '\0';
2945 return s;
2948 /****************************************************************************
2949 Utility function for UNIX getfacl.
2950 ****************************************************************************/
2952 static char *perms_to_string(fstring permstr, unsigned char perms)
2954 fstrcpy(permstr, "---");
2955 if (perms & SMB_POSIX_ACL_READ) {
2956 permstr[0] = 'r';
2958 if (perms & SMB_POSIX_ACL_WRITE) {
2959 permstr[1] = 'w';
2961 if (perms & SMB_POSIX_ACL_EXECUTE) {
2962 permstr[2] = 'x';
2964 return permstr;
2967 /****************************************************************************
2968 UNIX getfacl.
2969 ****************************************************************************/
2971 static int cmd_getfacl(void)
2973 TALLOC_CTX *ctx = talloc_tos();
2974 char *src = NULL;
2975 char *name = NULL;
2976 char *targetname = NULL;
2977 struct cli_state *targetcli;
2978 uint16 major, minor;
2979 uint32 caplow, caphigh;
2980 char *retbuf = NULL;
2981 size_t rb_size = 0;
2982 SMB_STRUCT_STAT sbuf;
2983 uint16 num_file_acls = 0;
2984 uint16 num_dir_acls = 0;
2985 uint16 i;
2987 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
2988 d_printf("getfacl filename\n");
2989 return 1;
2991 src = talloc_asprintf(ctx,
2992 "%s%s",
2993 client_get_cur_dir(),
2994 name);
2995 if (!src) {
2996 return 1;
2999 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3000 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3001 return 1;
3004 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3005 d_printf("Server doesn't support UNIX CIFS calls.\n");
3006 return 1;
3009 if (!cli_unix_extensions_version(targetcli, &major, &minor,
3010 &caplow, &caphigh)) {
3011 d_printf("Can't get UNIX CIFS version from server.\n");
3012 return 1;
3015 if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
3016 d_printf("This server supports UNIX extensions "
3017 "but doesn't support POSIX ACLs.\n");
3018 return 1;
3021 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3022 d_printf("%s getfacl doing a stat on file %s\n",
3023 cli_errstr(targetcli), src);
3024 return 1;
3027 if (!NT_STATUS_IS_OK(cli_posix_getfacl(targetcli, targetname, ctx, &rb_size, &retbuf))) {
3028 d_printf("%s getfacl file %s\n",
3029 cli_errstr(targetcli), src);
3030 return 1;
3033 /* ToDo : Print out the ACL values. */
3034 if (rb_size < 6 || SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION) {
3035 d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
3036 src, (unsigned int)CVAL(retbuf,0) );
3037 return 1;
3040 num_file_acls = SVAL(retbuf,2);
3041 num_dir_acls = SVAL(retbuf,4);
3042 if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
3043 d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
3044 src,
3045 (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
3046 (unsigned int)rb_size);
3047 return 1;
3050 d_printf("# file: %s\n", src);
3051 d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_ex_uid, (unsigned int)sbuf.st_ex_gid);
3053 if (num_file_acls == 0 && num_dir_acls == 0) {
3054 d_printf("No acls found.\n");
3057 for (i = 0; i < num_file_acls; i++) {
3058 uint32 uorg;
3059 fstring permstring;
3060 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
3061 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3063 switch(tagtype) {
3064 case SMB_POSIX_ACL_USER_OBJ:
3065 d_printf("user::");
3066 break;
3067 case SMB_POSIX_ACL_USER:
3068 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3069 d_printf("user:%u:", uorg);
3070 break;
3071 case SMB_POSIX_ACL_GROUP_OBJ:
3072 d_printf("group::");
3073 break;
3074 case SMB_POSIX_ACL_GROUP:
3075 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3076 d_printf("group:%u:", uorg);
3077 break;
3078 case SMB_POSIX_ACL_MASK:
3079 d_printf("mask::");
3080 break;
3081 case SMB_POSIX_ACL_OTHER:
3082 d_printf("other::");
3083 break;
3084 default:
3085 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3086 src, (unsigned int)tagtype );
3087 SAFE_FREE(retbuf);
3088 return 1;
3091 d_printf("%s\n", perms_to_string(permstring, perms));
3094 for (i = 0; i < num_dir_acls; i++) {
3095 uint32 uorg;
3096 fstring permstring;
3097 unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
3098 unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
3100 switch(tagtype) {
3101 case SMB_POSIX_ACL_USER_OBJ:
3102 d_printf("default:user::");
3103 break;
3104 case SMB_POSIX_ACL_USER:
3105 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3106 d_printf("default:user:%u:", uorg);
3107 break;
3108 case SMB_POSIX_ACL_GROUP_OBJ:
3109 d_printf("default:group::");
3110 break;
3111 case SMB_POSIX_ACL_GROUP:
3112 uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
3113 d_printf("default:group:%u:", uorg);
3114 break;
3115 case SMB_POSIX_ACL_MASK:
3116 d_printf("default:mask::");
3117 break;
3118 case SMB_POSIX_ACL_OTHER:
3119 d_printf("default:other::");
3120 break;
3121 default:
3122 d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
3123 src, (unsigned int)tagtype );
3124 SAFE_FREE(retbuf);
3125 return 1;
3128 d_printf("%s\n", perms_to_string(permstring, perms));
3131 return 0;
3134 /****************************************************************************
3135 UNIX stat.
3136 ****************************************************************************/
3138 static int cmd_stat(void)
3140 TALLOC_CTX *ctx = talloc_tos();
3141 char *src = NULL;
3142 char *name = NULL;
3143 char *targetname = NULL;
3144 struct cli_state *targetcli;
3145 fstring mode_str;
3146 SMB_STRUCT_STAT sbuf;
3147 struct tm *lt;
3148 time_t tmp_time;
3150 if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
3151 d_printf("stat file\n");
3152 return 1;
3154 src = talloc_asprintf(ctx,
3155 "%s%s",
3156 client_get_cur_dir(),
3157 name);
3158 if (!src) {
3159 return 1;
3162 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3163 d_printf("stat %s: %s\n", src, cli_errstr(cli));
3164 return 1;
3167 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3168 d_printf("Server doesn't support UNIX CIFS calls.\n");
3169 return 1;
3172 if (!NT_STATUS_IS_OK(cli_posix_stat(targetcli, targetname, &sbuf))) {
3173 d_printf("%s stat file %s\n",
3174 cli_errstr(targetcli), src);
3175 return 1;
3178 /* Print out the stat values. */
3179 d_printf("File: %s\n", src);
3180 d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
3181 (double)sbuf.st_ex_size,
3182 (unsigned int)sbuf.st_ex_blocks,
3183 filetype_to_str(sbuf.st_ex_mode));
3185 #if defined(S_ISCHR) && defined(S_ISBLK)
3186 if (S_ISCHR(sbuf.st_ex_mode) || S_ISBLK(sbuf.st_ex_mode)) {
3187 d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
3188 (double)sbuf.st_ex_ino,
3189 (unsigned int)sbuf.st_ex_nlink,
3190 unix_dev_major(sbuf.st_ex_rdev),
3191 unix_dev_minor(sbuf.st_ex_rdev));
3192 } else
3193 #endif
3194 d_printf("Inode: %.0f\tLinks: %u\n",
3195 (double)sbuf.st_ex_ino,
3196 (unsigned int)sbuf.st_ex_nlink);
3198 d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
3199 ((int)sbuf.st_ex_mode & 0777),
3200 unix_mode_to_str(mode_str, sbuf.st_ex_mode),
3201 (unsigned int)sbuf.st_ex_uid,
3202 (unsigned int)sbuf.st_ex_gid);
3204 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_atime);
3205 lt = localtime(&tmp_time);
3206 if (lt) {
3207 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3208 } else {
3209 fstrcpy(mode_str, "unknown");
3211 d_printf("Access: %s\n", mode_str);
3213 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3214 lt = localtime(&tmp_time);
3215 if (lt) {
3216 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3217 } else {
3218 fstrcpy(mode_str, "unknown");
3220 d_printf("Modify: %s\n", mode_str);
3222 tmp_time = convert_timespec_to_time_t(sbuf.st_ex_ctime);
3223 lt = localtime(&tmp_time);
3224 if (lt) {
3225 strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
3226 } else {
3227 fstrcpy(mode_str, "unknown");
3229 d_printf("Change: %s\n", mode_str);
3231 return 0;
3235 /****************************************************************************
3236 UNIX chown.
3237 ****************************************************************************/
3239 static int cmd_chown(void)
3241 TALLOC_CTX *ctx = talloc_tos();
3242 char *src = NULL;
3243 uid_t uid;
3244 gid_t gid;
3245 char *buf, *buf2, *buf3;
3246 struct cli_state *targetcli;
3247 char *targetname = NULL;
3249 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3250 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
3251 !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
3252 d_printf("chown uid gid file\n");
3253 return 1;
3256 uid = (uid_t)atoi(buf);
3257 gid = (gid_t)atoi(buf2);
3259 src = talloc_asprintf(ctx,
3260 "%s%s",
3261 client_get_cur_dir(),
3262 buf3);
3263 if (!src) {
3264 return 1;
3266 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname) ) {
3267 d_printf("chown %s: %s\n", src, cli_errstr(cli));
3268 return 1;
3271 if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
3272 d_printf("Server doesn't support UNIX CIFS calls.\n");
3273 return 1;
3276 if (!NT_STATUS_IS_OK(cli_posix_chown(targetcli, targetname, uid, gid))) {
3277 d_printf("%s chown file %s uid=%d, gid=%d\n",
3278 cli_errstr(targetcli), src, (int)uid, (int)gid);
3279 return 1;
3282 return 0;
3285 /****************************************************************************
3286 Rename some file.
3287 ****************************************************************************/
3289 static int cmd_rename(void)
3291 TALLOC_CTX *ctx = talloc_tos();
3292 char *src, *dest;
3293 char *buf, *buf2;
3294 struct cli_state *targetcli;
3295 char *targetsrc;
3296 char *targetdest;
3298 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3299 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3300 d_printf("rename <src> <dest>\n");
3301 return 1;
3304 src = talloc_asprintf(ctx,
3305 "%s%s",
3306 client_get_cur_dir(),
3307 buf);
3308 if (!src) {
3309 return 1;
3312 dest = talloc_asprintf(ctx,
3313 "%s%s",
3314 client_get_cur_dir(),
3315 buf2);
3316 if (!dest) {
3317 return 1;
3320 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetsrc)) {
3321 d_printf("rename %s: %s\n", src, cli_errstr(cli));
3322 return 1;
3325 if (!cli_resolve_path(ctx, "", auth_info, cli, dest, &targetcli, &targetdest)) {
3326 d_printf("rename %s: %s\n", dest, cli_errstr(cli));
3327 return 1;
3330 if (!NT_STATUS_IS_OK(cli_rename(targetcli, targetsrc, targetdest))) {
3331 d_printf("%s renaming files %s -> %s \n",
3332 cli_errstr(targetcli),
3333 targetsrc,
3334 targetdest);
3335 return 1;
3338 return 0;
3341 /****************************************************************************
3342 Print the volume name.
3343 ****************************************************************************/
3345 static int cmd_volume(void)
3347 fstring volname;
3348 uint32 serial_num;
3349 time_t create_date;
3351 if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
3352 d_printf("Errr %s getting volume info\n",cli_errstr(cli));
3353 return 1;
3356 d_printf("Volume: |%s| serial number 0x%x\n",
3357 volname, (unsigned int)serial_num);
3358 return 0;
3361 /****************************************************************************
3362 Hard link files using the NT call.
3363 ****************************************************************************/
3365 static int cmd_hardlink(void)
3367 TALLOC_CTX *ctx = talloc_tos();
3368 char *src, *dest;
3369 char *buf, *buf2;
3370 struct cli_state *targetcli;
3371 char *targetname;
3373 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
3374 !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
3375 d_printf("hardlink <src> <dest>\n");
3376 return 1;
3379 src = talloc_asprintf(ctx,
3380 "%s%s",
3381 client_get_cur_dir(),
3382 buf);
3383 if (!src) {
3384 return 1;
3387 dest = talloc_asprintf(ctx,
3388 "%s%s",
3389 client_get_cur_dir(),
3390 buf2);
3391 if (!dest) {
3392 return 1;
3395 if (!cli_resolve_path(ctx, "", auth_info, cli, src, &targetcli, &targetname)) {
3396 d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
3397 return 1;
3400 if (!NT_STATUS_IS_OK(cli_nt_hardlink(targetcli, targetname, dest))) {
3401 d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
3402 return 1;
3405 return 0;
3408 /****************************************************************************
3409 Toggle the prompt flag.
3410 ****************************************************************************/
3412 static int cmd_prompt(void)
3414 prompt = !prompt;
3415 DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
3416 return 1;
3419 /****************************************************************************
3420 Set the newer than time.
3421 ****************************************************************************/
3423 static int cmd_newer(void)
3425 TALLOC_CTX *ctx = talloc_tos();
3426 char *buf;
3427 bool ok;
3428 SMB_STRUCT_STAT sbuf;
3430 ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
3431 if (ok && (sys_stat(buf,&sbuf) == 0)) {
3432 newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime);
3433 DEBUG(1,("Getting files newer than %s",
3434 time_to_asc(newer_than)));
3435 } else {
3436 newer_than = 0;
3439 if (ok && newer_than == 0) {
3440 d_printf("Error setting newer-than time\n");
3441 return 1;
3444 return 0;
3447 /****************************************************************************
3448 Set the archive level.
3449 ****************************************************************************/
3451 static int cmd_archive(void)
3453 TALLOC_CTX *ctx = talloc_tos();
3454 char *buf;
3456 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3457 archive_level = atoi(buf);
3458 } else {
3459 d_printf("Archive level is %d\n",archive_level);
3462 return 0;
3465 /****************************************************************************
3466 Toggle the lowercaseflag.
3467 ****************************************************************************/
3469 static int cmd_lowercase(void)
3471 lowercase = !lowercase;
3472 DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
3473 return 0;
3476 /****************************************************************************
3477 Toggle the case sensitive flag.
3478 ****************************************************************************/
3480 static int cmd_setcase(void)
3482 bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
3484 cli_set_case_sensitive(cli, !orig_case_sensitive);
3485 DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
3486 "on":"off"));
3487 return 0;
3490 /****************************************************************************
3491 Toggle the showacls flag.
3492 ****************************************************************************/
3494 static int cmd_showacls(void)
3496 showacls = !showacls;
3497 DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
3498 return 0;
3502 /****************************************************************************
3503 Toggle the recurse flag.
3504 ****************************************************************************/
3506 static int cmd_recurse(void)
3508 recurse = !recurse;
3509 DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
3510 return 0;
3513 /****************************************************************************
3514 Toggle the translate flag.
3515 ****************************************************************************/
3517 static int cmd_translate(void)
3519 translation = !translation;
3520 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
3521 translation?"on":"off"));
3522 return 0;
3525 /****************************************************************************
3526 Do the lcd command.
3527 ****************************************************************************/
3529 static int cmd_lcd(void)
3531 TALLOC_CTX *ctx = talloc_tos();
3532 char *buf;
3533 char *d;
3535 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3536 if (chdir(buf) == -1) {
3537 d_printf("chdir to %s failed (%s)\n",
3538 buf, strerror(errno));
3541 d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
3542 if (!d) {
3543 return 1;
3545 DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
3546 return 0;
3549 /****************************************************************************
3550 Get a file restarting at end of local file.
3551 ****************************************************************************/
3553 static int cmd_reget(void)
3555 TALLOC_CTX *ctx = talloc_tos();
3556 char *local_name = NULL;
3557 char *remote_name = NULL;
3558 char *fname = NULL;
3559 char *p = NULL;
3561 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3562 if (!remote_name) {
3563 return 1;
3566 if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
3567 d_printf("reget <filename>\n");
3568 return 1;
3570 remote_name = talloc_asprintf_append(remote_name, "%s", fname);
3571 if (!remote_name) {
3572 return 1;
3574 remote_name = clean_name(ctx,remote_name);
3575 if (!remote_name) {
3576 return 1;
3579 local_name = fname;
3580 next_token_talloc(ctx, &cmd_ptr, &p, NULL);
3581 if (p) {
3582 local_name = p;
3585 return do_get(remote_name, local_name, true);
3588 /****************************************************************************
3589 Put a file restarting at end of local file.
3590 ****************************************************************************/
3592 static int cmd_reput(void)
3594 TALLOC_CTX *ctx = talloc_tos();
3595 char *local_name = NULL;
3596 char *remote_name = NULL;
3597 char *buf;
3598 SMB_STRUCT_STAT st;
3600 remote_name = talloc_strdup(ctx, client_get_cur_dir());
3601 if (!remote_name) {
3602 return 1;
3605 if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
3606 d_printf("reput <filename>\n");
3607 return 1;
3610 if (!file_exist_stat(local_name, &st)) {
3611 d_printf("%s does not exist\n", local_name);
3612 return 1;
3615 if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
3616 remote_name = talloc_asprintf_append(remote_name,
3617 "%s", buf);
3618 } else {
3619 remote_name = talloc_asprintf_append(remote_name,
3620 "%s", local_name);
3622 if (!remote_name) {
3623 return 1;
3626 remote_name = clean_name(ctx, remote_name);
3627 if (!remote_name) {
3628 return 1;
3631 return do_put(remote_name, local_name, true);
3634 /****************************************************************************
3635 List a share name.
3636 ****************************************************************************/
3638 static void browse_fn(const char *name, uint32 m,
3639 const char *comment, void *state)
3641 const char *typestr = "";
3643 switch (m & 7) {
3644 case STYPE_DISKTREE:
3645 typestr = "Disk";
3646 break;
3647 case STYPE_PRINTQ:
3648 typestr = "Printer";
3649 break;
3650 case STYPE_DEVICE:
3651 typestr = "Device";
3652 break;
3653 case STYPE_IPC:
3654 typestr = "IPC";
3655 break;
3657 /* FIXME: If the remote machine returns non-ascii characters
3658 in any of these fields, they can corrupt the output. We
3659 should remove them. */
3660 if (!grepable) {
3661 d_printf("\t%-15s %-10.10s%s\n",
3662 name,typestr,comment);
3663 } else {
3664 d_printf ("%s|%s|%s\n",typestr,name,comment);
3668 static bool browse_host_rpc(bool sort)
3670 NTSTATUS status;
3671 struct rpc_pipe_client *pipe_hnd = NULL;
3672 TALLOC_CTX *frame = talloc_stackframe();
3673 WERROR werr;
3674 struct srvsvc_NetShareInfoCtr info_ctr;
3675 struct srvsvc_NetShareCtr1 ctr1;
3676 uint32_t resume_handle = 0;
3677 uint32_t total_entries = 0;
3678 int i;
3680 status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
3681 &pipe_hnd);
3683 if (!NT_STATUS_IS_OK(status)) {
3684 DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
3685 nt_errstr(status)));
3686 TALLOC_FREE(frame);
3687 return false;
3690 ZERO_STRUCT(info_ctr);
3691 ZERO_STRUCT(ctr1);
3693 info_ctr.level = 1;
3694 info_ctr.ctr.ctr1 = &ctr1;
3696 status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
3697 pipe_hnd->desthost,
3698 &info_ctr,
3699 0xffffffff,
3700 &total_entries,
3701 &resume_handle,
3702 &werr);
3704 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
3705 TALLOC_FREE(pipe_hnd);
3706 TALLOC_FREE(frame);
3707 return false;
3710 for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
3711 struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
3712 browse_fn(info.name, info.type, info.comment, NULL);
3715 TALLOC_FREE(pipe_hnd);
3716 TALLOC_FREE(frame);
3717 return true;
3720 /****************************************************************************
3721 Try and browse available connections on a host.
3722 ****************************************************************************/
3724 static bool browse_host(bool sort)
3726 int ret;
3727 if (!grepable) {
3728 d_printf("\n\tSharename Type Comment\n");
3729 d_printf("\t--------- ---- -------\n");
3732 if (browse_host_rpc(sort)) {
3733 return true;
3736 if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
3737 d_printf("Error returning browse list: %s\n", cli_errstr(cli));
3739 return (ret != -1);
3742 /****************************************************************************
3743 List a server name.
3744 ****************************************************************************/
3746 static void server_fn(const char *name, uint32 m,
3747 const char *comment, void *state)
3750 if (!grepable){
3751 d_printf("\t%-16s %s\n", name, comment);
3752 } else {
3753 d_printf("%s|%s|%s\n",(char *)state, name, comment);
3757 /****************************************************************************
3758 Try and browse available connections on a host.
3759 ****************************************************************************/
3761 static bool list_servers(const char *wk_grp)
3763 fstring state;
3765 if (!cli->server_domain)
3766 return false;
3768 if (!grepable) {
3769 d_printf("\n\tServer Comment\n");
3770 d_printf("\t--------- -------\n");
3772 fstrcpy( state, "Server" );
3773 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
3774 state);
3776 if (!grepable) {
3777 d_printf("\n\tWorkgroup Master\n");
3778 d_printf("\t--------- -------\n");
3781 fstrcpy( state, "Workgroup" );
3782 cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
3783 server_fn, state);
3784 return true;
3787 /****************************************************************************
3788 Print or set current VUID
3789 ****************************************************************************/
3791 static int cmd_vuid(void)
3793 TALLOC_CTX *ctx = talloc_tos();
3794 char *buf;
3796 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3797 d_printf("Current VUID is %d\n", cli->vuid);
3798 return 0;
3801 cli->vuid = atoi(buf);
3802 return 0;
3805 /****************************************************************************
3806 Setup a new VUID, by issuing a session setup
3807 ****************************************************************************/
3809 static int cmd_logon(void)
3811 TALLOC_CTX *ctx = talloc_tos();
3812 char *l_username, *l_password;
3814 if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
3815 d_printf("logon <username> [<password>]\n");
3816 return 0;
3819 if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
3820 char *pass = getpass("Password: ");
3821 if (pass) {
3822 l_password = talloc_strdup(ctx,pass);
3825 if (!l_password) {
3826 return 1;
3829 if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
3830 l_password, strlen(l_password),
3831 l_password, strlen(l_password),
3832 lp_workgroup()))) {
3833 d_printf("session setup failed: %s\n", cli_errstr(cli));
3834 return -1;
3837 d_printf("Current VUID is %d\n", cli->vuid);
3838 return 0;
3842 /****************************************************************************
3843 list active connections
3844 ****************************************************************************/
3846 static int cmd_list_connect(void)
3848 cli_cm_display(cli);
3849 return 0;
3852 /****************************************************************************
3853 display the current active client connection
3854 ****************************************************************************/
3856 static int cmd_show_connect( void )
3858 TALLOC_CTX *ctx = talloc_tos();
3859 struct cli_state *targetcli;
3860 char *targetpath;
3862 if (!cli_resolve_path(ctx, "", auth_info, cli, client_get_cur_dir(),
3863 &targetcli, &targetpath ) ) {
3864 d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
3865 return 1;
3868 d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
3869 return 0;
3872 /****************************************************************************
3873 iosize command
3874 ***************************************************************************/
3876 int cmd_iosize(void)
3878 TALLOC_CTX *ctx = talloc_tos();
3879 char *buf;
3880 int iosize;
3882 if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
3883 if (!smb_encrypt) {
3884 d_printf("iosize <n> or iosize 0x<n>. "
3885 "Minimum is 16384 (0x4000), "
3886 "max is 16776960 (0xFFFF00)\n");
3887 } else {
3888 d_printf("iosize <n> or iosize 0x<n>. "
3889 "(Encrypted connection) ,"
3890 "Minimum is 16384 (0x4000), "
3891 "max is 130048 (0x1FC00)\n");
3893 return 1;
3896 iosize = strtol(buf,NULL,0);
3897 if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
3898 d_printf("iosize out of range for encrypted "
3899 "connection (min = 16384 (0x4000), "
3900 "max = 130048 (0x1FC00)");
3901 return 1;
3902 } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
3903 d_printf("iosize out of range (min = 16384 (0x4000), "
3904 "max = 16776960 (0xFFFF00)");
3905 return 1;
3908 io_bufsize = iosize;
3909 d_printf("iosize is now %d\n", io_bufsize);
3910 return 0;
3914 /* Some constants for completing filename arguments */
3916 #define COMPL_NONE 0 /* No completions */
3917 #define COMPL_REMOTE 1 /* Complete remote filename */
3918 #define COMPL_LOCAL 2 /* Complete local filename */
3920 /* This defines the commands supported by this client.
3921 * NOTE: The "!" must be the last one in the list because it's fn pointer
3922 * field is NULL, and NULL in that field is used in process_tok()
3923 * (below) to indicate the end of the list. crh
3925 static struct {
3926 const char *name;
3927 int (*fn)(void);
3928 const char *description;
3929 char compl_args[2]; /* Completion argument info */
3930 } commands[] = {
3931 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3932 {"allinfo",cmd_allinfo,"<file> show all available info",
3933 {COMPL_NONE,COMPL_NONE}},
3934 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
3935 {"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}},
3936 {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
3937 {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
3938 {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
3939 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
3940 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
3941 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
3942 {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
3943 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3944 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3945 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3946 {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
3947 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3948 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
3949 {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
3950 {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3951 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
3952 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
3953 {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
3954 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
3955 {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
3956 {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3957 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
3958 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3959 {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
3960 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
3961 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3962 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
3963 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
3964 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
3965 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
3966 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
3967 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
3968 {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
3969 {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
3970 {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3971 {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3972 {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3973 {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
3974 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
3975 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
3976 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
3977 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
3978 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3979 {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
3980 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
3981 {"readlink",cmd_readlink,"filename Do a UNIX extensions readlink call on a symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3982 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3983 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
3984 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
3985 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
3986 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
3987 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
3988 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
3989 {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
3990 {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
3991 {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
3992 {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
3993 {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
3994 {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
3995 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
3996 {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
3997 {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
3998 {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
3999 {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
4000 {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
4001 {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
4002 {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
4003 {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
4005 /* Yes, this must be here, see crh's comment above. */
4006 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
4007 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
4010 /*******************************************************************
4011 Lookup a command string in the list of commands, including
4012 abbreviations.
4013 ******************************************************************/
4015 static int process_tok(char *tok)
4017 int i = 0, matches = 0;
4018 int cmd=0;
4019 int tok_len = strlen(tok);
4021 while (commands[i].fn != NULL) {
4022 if (strequal(commands[i].name,tok)) {
4023 matches = 1;
4024 cmd = i;
4025 break;
4026 } else if (strnequal(commands[i].name, tok, tok_len)) {
4027 matches++;
4028 cmd = i;
4030 i++;
4033 if (matches == 0)
4034 return(-1);
4035 else if (matches == 1)
4036 return(cmd);
4037 else
4038 return(-2);
4041 /****************************************************************************
4042 Help.
4043 ****************************************************************************/
4045 static int cmd_help(void)
4047 TALLOC_CTX *ctx = talloc_tos();
4048 int i=0,j;
4049 char *buf;
4051 if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
4052 if ((i = process_tok(buf)) >= 0)
4053 d_printf("HELP %s:\n\t%s\n\n",
4054 commands[i].name,commands[i].description);
4055 } else {
4056 while (commands[i].description) {
4057 for (j=0; commands[i].description && (j<5); j++) {
4058 d_printf("%-15s",commands[i].name);
4059 i++;
4061 d_printf("\n");
4064 return 0;
4067 /****************************************************************************
4068 Process a -c command string.
4069 ****************************************************************************/
4071 static int process_command_string(const char *cmd_in)
4073 TALLOC_CTX *ctx = talloc_tos();
4074 char *cmd = talloc_strdup(ctx, cmd_in);
4075 int rc = 0;
4077 if (!cmd) {
4078 return 1;
4080 /* establish the connection if not already */
4082 if (!cli) {
4083 cli = cli_cm_open(talloc_tos(), NULL,
4084 have_ip ? dest_ss_str : desthost,
4085 service, auth_info,
4086 true, smb_encrypt,
4087 max_protocol, port, name_type);
4088 if (!cli) {
4089 return 1;
4093 while (cmd[0] != '\0') {
4094 char *line;
4095 char *p;
4096 char *tok;
4097 int i;
4099 if ((p = strchr_m(cmd, ';')) == 0) {
4100 line = cmd;
4101 cmd += strlen(cmd);
4102 } else {
4103 *p = '\0';
4104 line = cmd;
4105 cmd = p + 1;
4108 /* and get the first part of the command */
4109 cmd_ptr = line;
4110 if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
4111 continue;
4114 if ((i = process_tok(tok)) >= 0) {
4115 rc = commands[i].fn();
4116 } else if (i == -2) {
4117 d_printf("%s: command abbreviation ambiguous\n",tok);
4118 } else {
4119 d_printf("%s: command not found\n",tok);
4123 return rc;
4126 #define MAX_COMPLETIONS 100
4128 typedef struct {
4129 char *dirmask;
4130 char **matches;
4131 int count, samelen;
4132 const char *text;
4133 int len;
4134 } completion_remote_t;
4136 static void completion_remote_filter(const char *mnt,
4137 file_info *f,
4138 const char *mask,
4139 void *state)
4141 completion_remote_t *info = (completion_remote_t *)state;
4143 if ((info->count < MAX_COMPLETIONS - 1) &&
4144 (strncmp(info->text, f->name, info->len) == 0) &&
4145 (strcmp(f->name, ".") != 0) &&
4146 (strcmp(f->name, "..") != 0)) {
4147 if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
4148 info->matches[info->count] = SMB_STRDUP(f->name);
4149 else {
4150 TALLOC_CTX *ctx = talloc_stackframe();
4151 char *tmp;
4153 tmp = talloc_strdup(ctx,info->dirmask);
4154 if (!tmp) {
4155 TALLOC_FREE(ctx);
4156 return;
4158 tmp = talloc_asprintf_append(tmp, "%s", f->name);
4159 if (!tmp) {
4160 TALLOC_FREE(ctx);
4161 return;
4163 if (f->mode & aDIR) {
4164 tmp = talloc_asprintf_append(tmp, "%s", CLI_DIRSEP_STR);
4166 if (!tmp) {
4167 TALLOC_FREE(ctx);
4168 return;
4170 info->matches[info->count] = SMB_STRDUP(tmp);
4171 TALLOC_FREE(ctx);
4173 if (info->matches[info->count] == NULL) {
4174 return;
4176 if (f->mode & aDIR) {
4177 smb_readline_ca_char(0);
4179 if (info->count == 1) {
4180 info->samelen = strlen(info->matches[info->count]);
4181 } else {
4182 while (strncmp(info->matches[info->count],
4183 info->matches[info->count-1],
4184 info->samelen) != 0) {
4185 info->samelen--;
4188 info->count++;
4192 static char **remote_completion(const char *text, int len)
4194 TALLOC_CTX *ctx = talloc_stackframe();
4195 char *dirmask = NULL;
4196 char *targetpath = NULL;
4197 struct cli_state *targetcli = NULL;
4198 int i;
4199 completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
4201 /* can't have non-static intialisation on Sun CC, so do it
4202 at run time here */
4203 info.samelen = len;
4204 info.text = text;
4205 info.len = len;
4207 info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
4208 if (!info.matches) {
4209 TALLOC_FREE(ctx);
4210 return NULL;
4214 * We're leaving matches[0] free to fill it later with the text to
4215 * display: Either the one single match or the longest common subset
4216 * of the matches.
4218 info.matches[0] = NULL;
4219 info.count = 1;
4221 for (i = len-1; i >= 0; i--) {
4222 if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
4223 break;
4227 info.text = text+i+1;
4228 info.samelen = info.len = len-i-1;
4230 if (i > 0) {
4231 info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
4232 if (!info.dirmask) {
4233 goto cleanup;
4235 strncpy(info.dirmask, text, i+1);
4236 info.dirmask[i+1] = 0;
4237 dirmask = talloc_asprintf(ctx,
4238 "%s%*s*",
4239 client_get_cur_dir(),
4240 i-1,
4241 text);
4242 } else {
4243 info.dirmask = SMB_STRDUP("");
4244 if (!info.dirmask) {
4245 goto cleanup;
4247 dirmask = talloc_asprintf(ctx,
4248 "%s*",
4249 client_get_cur_dir());
4251 if (!dirmask) {
4252 goto cleanup;
4255 if (!cli_resolve_path(ctx, "", auth_info, cli, dirmask, &targetcli, &targetpath)) {
4256 goto cleanup;
4258 if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
4259 completion_remote_filter, (void *)&info) < 0) {
4260 goto cleanup;
4263 if (info.count == 1) {
4265 * No matches at all, NULL indicates there is nothing
4267 SAFE_FREE(info.matches[0]);
4268 SAFE_FREE(info.matches);
4269 TALLOC_FREE(ctx);
4270 return NULL;
4273 if (info.count == 2) {
4275 * Exactly one match in matches[1], indicate this is the one
4276 * in matches[0].
4278 info.matches[0] = info.matches[1];
4279 info.matches[1] = NULL;
4280 info.count -= 1;
4281 TALLOC_FREE(ctx);
4282 return info.matches;
4286 * We got more than one possible match, set the result to the maximum
4287 * common subset
4290 info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
4291 info.matches[info.count] = NULL;
4292 return info.matches;
4294 cleanup:
4295 for (i = 0; i < info.count; i++) {
4296 SAFE_FREE(info.matches[i]);
4298 SAFE_FREE(info.matches);
4299 SAFE_FREE(info.dirmask);
4300 TALLOC_FREE(ctx);
4301 return NULL;
4304 static char **completion_fn(const char *text, int start, int end)
4306 smb_readline_ca_char(' ');
4308 if (start) {
4309 const char *buf, *sp;
4310 int i;
4311 char compl_type;
4313 buf = smb_readline_get_line_buffer();
4314 if (buf == NULL)
4315 return NULL;
4317 sp = strchr(buf, ' ');
4318 if (sp == NULL)
4319 return NULL;
4321 for (i = 0; commands[i].name; i++) {
4322 if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
4323 (commands[i].name[sp - buf] == 0)) {
4324 break;
4327 if (commands[i].name == NULL)
4328 return NULL;
4330 while (*sp == ' ')
4331 sp++;
4333 if (sp == (buf + start))
4334 compl_type = commands[i].compl_args[0];
4335 else
4336 compl_type = commands[i].compl_args[1];
4338 if (compl_type == COMPL_REMOTE)
4339 return remote_completion(text, end - start);
4340 else /* fall back to local filename completion */
4341 return NULL;
4342 } else {
4343 char **matches;
4344 int i, len, samelen = 0, count=1;
4346 matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
4347 if (!matches) {
4348 return NULL;
4350 matches[0] = NULL;
4352 len = strlen(text);
4353 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
4354 if (strncmp(text, commands[i].name, len) == 0) {
4355 matches[count] = SMB_STRDUP(commands[i].name);
4356 if (!matches[count])
4357 goto cleanup;
4358 if (count == 1)
4359 samelen = strlen(matches[count]);
4360 else
4361 while (strncmp(matches[count], matches[count-1], samelen) != 0)
4362 samelen--;
4363 count++;
4367 switch (count) {
4368 case 0: /* should never happen */
4369 case 1:
4370 goto cleanup;
4371 case 2:
4372 matches[0] = SMB_STRDUP(matches[1]);
4373 break;
4374 default:
4375 matches[0] = (char *)SMB_MALLOC(samelen+1);
4376 if (!matches[0])
4377 goto cleanup;
4378 strncpy(matches[0], matches[1], samelen);
4379 matches[0][samelen] = 0;
4381 matches[count] = NULL;
4382 return matches;
4384 cleanup:
4385 for (i = 0; i < count; i++)
4386 free(matches[i]);
4388 free(matches);
4389 return NULL;
4393 static bool finished;
4395 /****************************************************************************
4396 Make sure we swallow keepalives during idle time.
4397 ****************************************************************************/
4399 static void readline_callback(void)
4401 fd_set fds;
4402 struct timeval timeout;
4403 static time_t last_t;
4404 time_t t;
4406 t = time(NULL);
4408 if (t - last_t < 5)
4409 return;
4411 last_t = t;
4413 again:
4415 if (cli->fd == -1)
4416 return;
4418 FD_ZERO(&fds);
4419 FD_SET(cli->fd,&fds);
4421 timeout.tv_sec = 0;
4422 timeout.tv_usec = 0;
4423 sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
4425 /* We deliberately use receive_smb_raw instead of
4426 client_receive_smb as we want to receive
4427 session keepalives and then drop them here.
4429 if (FD_ISSET(cli->fd,&fds)) {
4430 NTSTATUS status;
4431 size_t len;
4433 set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
4435 status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
4437 if (!NT_STATUS_IS_OK(status)) {
4438 DEBUG(0, ("Read from server failed, maybe it closed "
4439 "the connection\n"));
4441 finished = true;
4442 smb_readline_done();
4443 if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
4444 set_smb_read_error(&cli->smb_rw_error,
4445 SMB_READ_EOF);
4446 return;
4449 if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
4450 set_smb_read_error(&cli->smb_rw_error,
4451 SMB_READ_TIMEOUT);
4452 return;
4455 set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
4456 return;
4458 if(CVAL(cli->inbuf,0) != SMBkeepalive) {
4459 DEBUG(0, ("Read from server "
4460 "returned unexpected packet!\n"));
4461 return;
4464 goto again;
4467 /* Ping the server to keep the connection alive using SMBecho. */
4469 NTSTATUS status;
4470 unsigned char garbage[16];
4471 memset(garbage, 0xf0, sizeof(garbage));
4472 status = cli_echo(cli, 1, data_blob_const(garbage, sizeof(garbage)));
4474 if (!NT_STATUS_IS_OK(status)) {
4475 DEBUG(0, ("SMBecho failed. Maybe server has closed "
4476 "the connection\n"));
4477 finished = true;
4478 smb_readline_done();
4483 /****************************************************************************
4484 Process commands on stdin.
4485 ****************************************************************************/
4487 static int process_stdin(void)
4489 int rc = 0;
4491 while (!finished) {
4492 TALLOC_CTX *frame = talloc_stackframe();
4493 char *tok = NULL;
4494 char *the_prompt = NULL;
4495 char *line = NULL;
4496 int i;
4498 /* display a prompt */
4499 if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
4500 TALLOC_FREE(frame);
4501 break;
4503 line = smb_readline(the_prompt, readline_callback, completion_fn);
4504 SAFE_FREE(the_prompt);
4505 if (!line) {
4506 TALLOC_FREE(frame);
4507 break;
4510 /* special case - first char is ! */
4511 if (*line == '!') {
4512 if (system(line + 1) == -1) {
4513 d_printf("system() command %s failed.\n",
4514 line+1);
4516 SAFE_FREE(line);
4517 TALLOC_FREE(frame);
4518 continue;
4521 /* and get the first part of the command */
4522 cmd_ptr = line;
4523 if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
4524 TALLOC_FREE(frame);
4525 SAFE_FREE(line);
4526 continue;
4529 if ((i = process_tok(tok)) >= 0) {
4530 rc = commands[i].fn();
4531 } else if (i == -2) {
4532 d_printf("%s: command abbreviation ambiguous\n",tok);
4533 } else {
4534 d_printf("%s: command not found\n",tok);
4536 SAFE_FREE(line);
4537 TALLOC_FREE(frame);
4539 return rc;
4542 /****************************************************************************
4543 Process commands from the client.
4544 ****************************************************************************/
4546 static int process(const char *base_directory)
4548 int rc = 0;
4550 cli = cli_cm_open(talloc_tos(), NULL,
4551 have_ip ? dest_ss_str : desthost,
4552 service, auth_info, true, smb_encrypt,
4553 max_protocol, port, name_type);
4554 if (!cli) {
4555 return 1;
4558 if (base_directory && *base_directory) {
4559 rc = do_cd(base_directory);
4560 if (rc) {
4561 cli_shutdown(cli);
4562 return rc;
4566 if (cmdstr) {
4567 rc = process_command_string(cmdstr);
4568 } else {
4569 process_stdin();
4572 cli_shutdown(cli);
4573 return rc;
4576 /****************************************************************************
4577 Handle a -L query.
4578 ****************************************************************************/
4580 static int do_host_query(const char *query_host)
4582 cli = cli_cm_open(talloc_tos(), NULL,
4583 query_host, "IPC$", auth_info, true, smb_encrypt,
4584 max_protocol, port, name_type);
4585 if (!cli)
4586 return 1;
4588 browse_host(true);
4590 /* Ensure that the host can do IPv4 */
4592 if (!interpret_addr(query_host)) {
4593 struct sockaddr_storage ss;
4594 if (interpret_string_addr(&ss, query_host, 0) &&
4595 (ss.ss_family != AF_INET)) {
4596 d_printf("%s is an IPv6 address -- no workgroup available\n",
4597 query_host);
4598 return 1;
4602 if (port != 139) {
4604 /* Workgroups simply don't make sense over anything
4605 else but port 139... */
4607 cli_shutdown(cli);
4608 cli = cli_cm_open(talloc_tos(), NULL,
4609 query_host, "IPC$", auth_info, true, smb_encrypt,
4610 max_protocol, 139, name_type);
4613 if (cli == NULL) {
4614 d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
4615 return 1;
4618 list_servers(lp_workgroup());
4620 cli_shutdown(cli);
4622 return(0);
4625 /****************************************************************************
4626 Handle a tar operation.
4627 ****************************************************************************/
4629 static int do_tar_op(const char *base_directory)
4631 int ret;
4633 /* do we already have a connection? */
4634 if (!cli) {
4635 cli = cli_cm_open(talloc_tos(), NULL,
4636 have_ip ? dest_ss_str : desthost,
4637 service, auth_info, true, smb_encrypt,
4638 max_protocol, port, name_type);
4639 if (!cli)
4640 return 1;
4643 recurse=true;
4645 if (base_directory && *base_directory) {
4646 ret = do_cd(base_directory);
4647 if (ret) {
4648 cli_shutdown(cli);
4649 return ret;
4653 ret=process_tar();
4655 cli_shutdown(cli);
4657 return(ret);
4660 /****************************************************************************
4661 Handle a message operation.
4662 ****************************************************************************/
4664 static int do_message_op(struct user_auth_info *a_info)
4666 struct sockaddr_storage ss;
4667 struct nmb_name called, calling;
4668 fstring server_name;
4669 char name_type_hex[10];
4670 int msg_port;
4671 NTSTATUS status;
4673 make_nmb_name(&calling, calling_name, 0x0);
4674 make_nmb_name(&called , desthost, name_type);
4676 fstrcpy(server_name, desthost);
4677 snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
4678 fstrcat(server_name, name_type_hex);
4680 zero_sockaddr(&ss);
4681 if (have_ip)
4682 ss = dest_ss;
4684 /* we can only do messages over port 139 (to windows clients at least) */
4686 msg_port = port ? port : 139;
4688 if (!(cli=cli_initialise())) {
4689 d_printf("Connection to %s failed\n", desthost);
4690 return 1;
4692 cli_set_port(cli, msg_port);
4694 status = cli_connect(cli, server_name, &ss);
4695 if (!NT_STATUS_IS_OK(status)) {
4696 d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
4697 return 1;
4700 if (!cli_session_request(cli, &calling, &called)) {
4701 d_printf("session request failed\n");
4702 cli_shutdown(cli);
4703 return 1;
4706 send_message(get_cmdline_auth_info_username(a_info));
4707 cli_shutdown(cli);
4709 return 0;
4712 /****************************************************************************
4713 main program
4714 ****************************************************************************/
4716 int main(int argc,char *argv[])
4718 char *base_directory = NULL;
4719 int opt;
4720 char *query_host = NULL;
4721 bool message = false;
4722 static const char *new_name_resolve_order = NULL;
4723 poptContext pc;
4724 char *p;
4725 int rc = 0;
4726 fstring new_workgroup;
4727 bool tar_opt = false;
4728 bool service_opt = false;
4729 struct poptOption long_options[] = {
4730 POPT_AUTOHELP
4732 { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
4733 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
4734 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
4735 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
4736 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
4737 { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
4738 { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
4739 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
4740 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
4741 { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
4742 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
4743 { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
4744 { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
4745 POPT_COMMON_SAMBA
4746 POPT_COMMON_CONNECTION
4747 POPT_COMMON_CREDENTIALS
4748 POPT_TABLEEND
4750 TALLOC_CTX *frame = talloc_stackframe();
4752 if (!client_set_cur_dir("\\")) {
4753 exit(ENOMEM);
4756 /* initialize the workgroup name so we can determine whether or
4757 not it was set by a command line option */
4759 set_global_myworkgroup( "" );
4760 set_global_myname( "" );
4762 /* set default debug level to 1 regardless of what smb.conf sets */
4763 setup_logging( "smbclient", true );
4764 DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
4765 if ((dbf = x_fdup(x_stderr))) {
4766 x_setbuf( dbf, NULL );
4769 load_case_tables();
4771 auth_info = user_auth_info_init(frame);
4772 if (auth_info == NULL) {
4773 exit(1);
4775 popt_common_set_auth_info(auth_info);
4777 /* skip argv(0) */
4778 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
4779 poptSetOtherOptionHelp(pc, "service <password>");
4781 lp_set_in_client(true); /* Make sure that we tell lp_load we are */
4783 while ((opt = poptGetNextOpt(pc)) != -1) {
4785 /* if the tar option has been called previouslt, now we need to eat out the leftovers */
4786 /* I see no other way to keep things sane --SSS */
4787 if (tar_opt == true) {
4788 while (poptPeekArg(pc)) {
4789 poptGetArg(pc);
4791 tar_opt = false;
4794 /* if the service has not yet been specified lets see if it is available in the popt stack */
4795 if (!service_opt && poptPeekArg(pc)) {
4796 service = talloc_strdup(frame, poptGetArg(pc));
4797 if (!service) {
4798 exit(ENOMEM);
4800 service_opt = true;
4803 /* if the service has already been retrieved then check if we have also a password */
4804 if (service_opt
4805 && (!get_cmdline_auth_info_got_pass(auth_info))
4806 && poptPeekArg(pc)) {
4807 set_cmdline_auth_info_password(auth_info,
4808 poptGetArg(pc));
4811 switch (opt) {
4812 case 'M':
4813 /* Messages are sent to NetBIOS name type 0x3
4814 * (Messenger Service). Make sure we default
4815 * to port 139 instead of port 445. srl,crh
4817 name_type = 0x03;
4818 desthost = talloc_strdup(frame,poptGetOptArg(pc));
4819 if (!desthost) {
4820 exit(ENOMEM);
4822 if( !port )
4823 port = 139;
4824 message = true;
4825 break;
4826 case 'I':
4828 if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
4829 exit(1);
4831 have_ip = true;
4832 print_sockaddr(dest_ss_str, sizeof(dest_ss_str), &dest_ss);
4834 break;
4835 case 'E':
4836 if (dbf) {
4837 x_fclose(dbf);
4839 dbf = x_stderr;
4840 display_set_stderr();
4841 break;
4843 case 'L':
4844 query_host = talloc_strdup(frame, poptGetOptArg(pc));
4845 if (!query_host) {
4846 exit(ENOMEM);
4848 break;
4849 case 'm':
4850 max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
4851 break;
4852 case 'T':
4853 /* We must use old option processing for this. Find the
4854 * position of the -T option in the raw argv[]. */
4856 int i;
4857 for (i = 1; i < argc; i++) {
4858 if (strncmp("-T", argv[i],2)==0)
4859 break;
4861 i++;
4862 if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
4863 poptPrintUsage(pc, stderr, 0);
4864 exit(1);
4867 /* this must be the last option, mark we have parsed it so that we know we have */
4868 tar_opt = true;
4869 break;
4870 case 'D':
4871 base_directory = talloc_strdup(frame, poptGetOptArg(pc));
4872 if (!base_directory) {
4873 exit(ENOMEM);
4875 break;
4876 case 'g':
4877 grepable=true;
4878 break;
4879 case 'e':
4880 smb_encrypt=true;
4881 break;
4882 case 'B':
4883 return(do_smb_browse());
4888 /* We may still have some leftovers after the last popt option has been called */
4889 if (tar_opt == true) {
4890 while (poptPeekArg(pc)) {
4891 poptGetArg(pc);
4893 tar_opt = false;
4896 /* if the service has not yet been specified lets see if it is available in the popt stack */
4897 if (!service_opt && poptPeekArg(pc)) {
4898 service = talloc_strdup(frame,poptGetArg(pc));
4899 if (!service) {
4900 exit(ENOMEM);
4902 service_opt = true;
4905 /* if the service has already been retrieved then check if we have also a password */
4906 if (service_opt
4907 && !get_cmdline_auth_info_got_pass(auth_info)
4908 && poptPeekArg(pc)) {
4909 set_cmdline_auth_info_password(auth_info,
4910 poptGetArg(pc));
4914 * Don't load debug level from smb.conf. It should be
4915 * set by cmdline arg or remain default (0)
4917 AllowDebugChange = false;
4919 /* save the workgroup...
4921 FIXME!! do we need to do this for other options as well
4922 (or maybe a generic way to keep lp_load() from overwriting
4923 everything)? */
4925 fstrcpy( new_workgroup, lp_workgroup() );
4926 calling_name = talloc_strdup(frame, global_myname() );
4927 if (!calling_name) {
4928 exit(ENOMEM);
4931 if ( override_logfile )
4932 setup_logging( lp_logfile(), false );
4934 if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
4935 fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
4936 argv[0], get_dyn_CONFIGFILE());
4939 if (get_cmdline_auth_info_use_machine_account(auth_info) &&
4940 !set_cmdline_auth_info_machine_account_creds(auth_info)) {
4941 exit(-1);
4944 load_interfaces();
4946 if (service_opt && service) {
4947 size_t len;
4949 /* Convert any '/' characters in the service name to '\' characters */
4950 string_replace(service, '/','\\');
4951 if (count_chars(service,'\\') < 3) {
4952 d_printf("\n%s: Not enough '\\' characters in service\n",service);
4953 poptPrintUsage(pc, stderr, 0);
4954 exit(1);
4956 /* Remove trailing slashes */
4957 len = strlen(service);
4958 while(len > 0 && service[len - 1] == '\\') {
4959 --len;
4960 service[len] = '\0';
4964 if ( strlen(new_workgroup) != 0 ) {
4965 set_global_myworkgroup( new_workgroup );
4968 if ( strlen(calling_name) != 0 ) {
4969 set_global_myname( calling_name );
4970 } else {
4971 TALLOC_FREE(calling_name);
4972 calling_name = talloc_strdup(frame, global_myname() );
4975 smb_encrypt = get_cmdline_auth_info_smb_encrypt(auth_info);
4976 if (!init_names()) {
4977 fprintf(stderr, "init_names() failed\n");
4978 exit(1);
4981 if(new_name_resolve_order)
4982 lp_set_name_resolve_order(new_name_resolve_order);
4984 if (!tar_type && !query_host && !service && !message) {
4985 poptPrintUsage(pc, stderr, 0);
4986 exit(1);
4989 poptFreeContext(pc);
4991 DEBUG(3,("Client started (version %s).\n", samba_version_string()));
4993 /* Ensure we have a password (or equivalent). */
4994 set_cmdline_auth_info_getpass(auth_info);
4996 if (tar_type) {
4997 if (cmdstr)
4998 process_command_string(cmdstr);
4999 return do_tar_op(base_directory);
5002 if (query_host && *query_host) {
5003 char *qhost = query_host;
5004 char *slash;
5006 while (*qhost == '\\' || *qhost == '/')
5007 qhost++;
5009 if ((slash = strchr_m(qhost, '/'))
5010 || (slash = strchr_m(qhost, '\\'))) {
5011 *slash = 0;
5014 if ((p=strchr_m(qhost, '#'))) {
5015 *p = 0;
5016 p++;
5017 sscanf(p, "%x", &name_type);
5020 return do_host_query(qhost);
5023 if (message) {
5024 return do_message_op(auth_info);
5027 if (process(base_directory)) {
5028 return 1;
5031 TALLOC_FREE(frame);
5032 return rc;