s3/registry: Fix typo in comment.
[Samba/gebeck_regimport.git] / source4 / client / client.c
blob71e666b74e99311097b28446a645fe03b9c706ed
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-2004
7 Copyright (C) James J Myers 2003 <myersjj@samba.org>
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 /*
24 * TODO: remove this ... and don't use talloc_append_string()
26 * NOTE: I'm not changing the code yet, because I assume there're
27 * some bugs in the existing code and I'm not sure how to fix
28 * them correctly.
30 #define TALLOC_DEPRECATED 1
32 #include "includes.h"
33 #include "version.h"
34 #include "libcli/libcli.h"
35 #include "lib/events/events.h"
36 #include "lib/cmdline/popt_common.h"
37 #include "librpc/gen_ndr/ndr_srvsvc_c.h"
38 #include "libcli/util/clilsa.h"
39 #include "system/dir.h"
40 #include "system/filesys.h"
41 #include "../lib/util/dlinklist.h"
42 #include "system/readline.h"
43 #include "auth/credentials/credentials.h"
44 #include "auth/gensec/gensec.h"
45 #include "system/time.h" /* needed by some systems for asctime() */
46 #include "libcli/resolve/resolve.h"
47 #include "libcli/security/security.h"
48 #include "lib/smbreadline/smbreadline.h"
49 #include "librpc/gen_ndr/ndr_nbt.h"
50 #include "param/param.h"
51 #include "libcli/raw/raw_proto.h"
53 /* the default pager to use for the client "more" command. Users can
54 * override this with the PAGER environment variable */
55 #ifndef DEFAULT_PAGER
56 #define DEFAULT_PAGER "more"
57 #endif
59 struct smbclient_context {
60 char *remote_cur_dir;
61 struct smbcli_state *cli;
62 char *fileselection;
63 time_t newer_than;
64 bool prompt;
65 bool recurse;
66 int archive_level;
67 bool lowercase;
68 int printmode;
69 bool translation;
70 int io_bufsize;
73 /* timing globals */
74 static uint64_t get_total_size = 0;
75 static uint_t get_total_time_ms = 0;
76 static uint64_t put_total_size = 0;
77 static uint_t put_total_time_ms = 0;
79 /* Unfortunately, there is no way to pass the a context to the completion function as an argument */
80 static struct smbclient_context *rl_ctx;
82 /* totals globals */
83 static double dir_total;
85 /*******************************************************************
86 Reduce a file name, removing .. elements.
87 ********************************************************************/
88 static void dos_clean_name(char *s)
90 char *p=NULL,*r;
92 DEBUG(3,("dos_clean_name [%s]\n",s));
94 /* remove any double slashes */
95 all_string_sub(s, "\\\\", "\\", 0);
97 while ((p = strstr(s,"\\..\\")) != NULL) {
98 *p = '\0';
99 if ((r = strrchr(s,'\\')) != NULL)
100 memmove(r,p+3,strlen(p+3)+1);
103 trim_string(s,NULL,"\\..");
105 all_string_sub(s, "\\.\\", "\\", 0);
108 /****************************************************************************
109 write to a local file with CR/LF->LF translation if appropriate. return the
110 number taken from the buffer. This may not equal the number written.
111 ****************************************************************************/
112 static int writefile(int f, const void *_b, int n, bool translation)
114 const uint8_t *b = (const uint8_t *)_b;
115 int i;
117 if (!translation) {
118 return write(f,b,n);
121 i = 0;
122 while (i < n) {
123 if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
124 b++;i++;
126 if (write(f, b, 1) != 1) {
127 break;
129 b++;
130 i++;
133 return(i);
136 /****************************************************************************
137 read from a file with LF->CR/LF translation if appropriate. return the
138 number read. read approx n bytes.
139 ****************************************************************************/
140 static int readfile(void *_b, int n, XFILE *f, bool translation)
142 uint8_t *b = (uint8_t *)_b;
143 int i;
144 int c;
146 if (!translation)
147 return x_fread(b,1,n,f);
149 i = 0;
150 while (i < (n - 1)) {
151 if ((c = x_getc(f)) == EOF) {
152 break;
155 if (c == '\n') { /* change all LFs to CR/LF */
156 b[i++] = '\r';
159 b[i++] = c;
162 return(i);
166 /****************************************************************************
167 send a message
168 ****************************************************************************/
169 static void send_message(struct smbcli_state *cli, const char *desthost)
171 char msg[1600];
172 int total_len = 0;
173 int grp_id;
175 if (!smbcli_message_start(cli->tree, desthost, cli_credentials_get_username(cmdline_credentials), &grp_id)) {
176 d_printf("message start: %s\n", smbcli_errstr(cli->tree));
177 return;
181 d_printf("Connected. Type your message, ending it with a Control-D\n");
183 while (!feof(stdin) && total_len < 1600) {
184 int maxlen = MIN(1600 - total_len,127);
185 int l=0;
186 int c;
188 for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
189 if (c == '\n')
190 msg[l++] = '\r';
191 msg[l] = c;
194 if (!smbcli_message_text(cli->tree, msg, l, grp_id)) {
195 d_printf("SMBsendtxt failed (%s)\n",smbcli_errstr(cli->tree));
196 return;
199 total_len += l;
202 if (total_len >= 1600)
203 d_printf("the message was truncated to 1600 bytes\n");
204 else
205 d_printf("sent %d bytes\n",total_len);
207 if (!smbcli_message_end(cli->tree, grp_id)) {
208 d_printf("SMBsendend failed (%s)\n",smbcli_errstr(cli->tree));
209 return;
215 /****************************************************************************
216 check the space on a device
217 ****************************************************************************/
218 static int do_dskattr(struct smbclient_context *ctx)
220 uint32_t bsize;
221 uint64_t total, avail;
223 if (NT_STATUS_IS_ERR(smbcli_dskattr(ctx->cli->tree, &bsize, &total, &avail))) {
224 d_printf("Error in dskattr: %s\n",smbcli_errstr(ctx->cli->tree));
225 return 1;
228 d_printf("\n\t\t%llu blocks of size %u. %llu blocks available\n",
229 (unsigned long long)total,
230 (unsigned)bsize,
231 (unsigned long long)avail);
233 return 0;
236 /****************************************************************************
237 show cd/pwd
238 ****************************************************************************/
239 static int cmd_pwd(struct smbclient_context *ctx, const char **args)
241 d_printf("Current directory is %s\n", ctx->remote_cur_dir);
242 return 0;
246 convert a string to dos format
248 static void dos_format(char *s)
250 string_replace(s, '/', '\\');
253 /****************************************************************************
254 change directory - inner section
255 ****************************************************************************/
256 static int do_cd(struct smbclient_context *ctx, const char *newdir)
258 char *dname;
260 /* Save the current directory in case the
261 new directory is invalid */
262 if (newdir[0] == '\\')
263 dname = talloc_strdup(ctx, newdir);
264 else
265 dname = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, newdir);
267 dos_format(dname);
269 if (*(dname+strlen(dname)-1) != '\\') {
270 dname = talloc_append_string(NULL, dname, "\\");
272 dos_clean_name(dname);
274 if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx->cli->tree, dname))) {
275 d_printf("cd %s: %s\n", dname, smbcli_errstr(ctx->cli->tree));
276 talloc_free(dname);
277 } else {
278 ctx->remote_cur_dir = dname;
281 return 0;
284 /****************************************************************************
285 change directory
286 ****************************************************************************/
287 static int cmd_cd(struct smbclient_context *ctx, const char **args)
289 int rc = 0;
291 if (args[1])
292 rc = do_cd(ctx, args[1]);
293 else
294 d_printf("Current directory is %s\n",ctx->remote_cur_dir);
296 return rc;
300 static bool mask_match(struct smbcli_state *c, const char *string,
301 const char *pattern, bool is_case_sensitive)
303 char *p2, *s2;
304 bool ret;
306 if (ISDOTDOT(string))
307 string = ".";
308 if (ISDOT(pattern))
309 return false;
311 if (is_case_sensitive)
312 return ms_fnmatch(pattern, string,
313 c->transport->negotiate.protocol) == 0;
315 p2 = strlower_talloc(NULL, pattern);
316 s2 = strlower_talloc(NULL, string);
317 ret = ms_fnmatch(p2, s2, c->transport->negotiate.protocol) == 0;
318 talloc_free(p2);
319 talloc_free(s2);
321 return ret;
326 /*******************************************************************
327 decide if a file should be operated on
328 ********************************************************************/
329 static bool do_this_one(struct smbclient_context *ctx, struct clilist_file_info *finfo)
331 if (finfo->attrib & FILE_ATTRIBUTE_DIRECTORY) return(true);
333 if (ctx->fileselection &&
334 !mask_match(ctx->cli, finfo->name,ctx->fileselection,false)) {
335 DEBUG(3,("mask_match %s failed\n", finfo->name));
336 return false;
339 if (ctx->newer_than && finfo->mtime < ctx->newer_than) {
340 DEBUG(3,("newer_than %s failed\n", finfo->name));
341 return(false);
344 if ((ctx->archive_level==1 || ctx->archive_level==2) && !(finfo->attrib & FILE_ATTRIBUTE_ARCHIVE)) {
345 DEBUG(3,("archive %s failed\n", finfo->name));
346 return(false);
349 return(true);
352 /****************************************************************************
353 display info about a file
354 ****************************************************************************/
355 static void display_finfo(struct smbclient_context *ctx, struct clilist_file_info *finfo)
357 if (do_this_one(ctx, finfo)) {
358 time_t t = finfo->mtime; /* the time is assumed to be passed as GMT */
359 char *astr = attrib_string(NULL, finfo->attrib);
360 d_printf(" %-30s%7.7s %8.0f %s",
361 finfo->name,
362 astr,
363 (double)finfo->size,
364 asctime(localtime(&t)));
365 dir_total += finfo->size;
366 talloc_free(astr);
371 /****************************************************************************
372 accumulate size of a file
373 ****************************************************************************/
374 static void do_du(struct smbclient_context *ctx, struct clilist_file_info *finfo)
376 if (do_this_one(ctx, finfo)) {
377 dir_total += finfo->size;
381 static bool do_list_recurse;
382 static bool do_list_dirs;
383 static char *do_list_queue = 0;
384 static long do_list_queue_size = 0;
385 static long do_list_queue_start = 0;
386 static long do_list_queue_end = 0;
387 static void (*do_list_fn)(struct smbclient_context *, struct clilist_file_info *);
389 /****************************************************************************
390 functions for do_list_queue
391 ****************************************************************************/
394 * The do_list_queue is a NUL-separated list of strings stored in a
395 * char*. Since this is a FIFO, we keep track of the beginning and
396 * ending locations of the data in the queue. When we overflow, we
397 * double the size of the char*. When the start of the data passes
398 * the midpoint, we move everything back. This is logically more
399 * complex than a linked list, but easier from a memory management
400 * angle. In any memory error condition, do_list_queue is reset.
401 * Functions check to ensure that do_list_queue is non-NULL before
402 * accessing it.
404 static void reset_do_list_queue(void)
406 SAFE_FREE(do_list_queue);
407 do_list_queue_size = 0;
408 do_list_queue_start = 0;
409 do_list_queue_end = 0;
412 static void init_do_list_queue(void)
414 reset_do_list_queue();
415 do_list_queue_size = 1024;
416 do_list_queue = malloc_array_p(char, do_list_queue_size);
417 if (do_list_queue == 0) {
418 d_printf("malloc fail for size %d\n",
419 (int)do_list_queue_size);
420 reset_do_list_queue();
421 } else {
422 memset(do_list_queue, 0, do_list_queue_size);
426 static void adjust_do_list_queue(void)
428 if (do_list_queue == NULL) return;
431 * If the starting point of the queue is more than half way through,
432 * move everything toward the beginning.
434 if (do_list_queue_start == do_list_queue_end)
436 DEBUG(4,("do_list_queue is empty\n"));
437 do_list_queue_start = do_list_queue_end = 0;
438 *do_list_queue = '\0';
440 else if (do_list_queue_start > (do_list_queue_size / 2))
442 DEBUG(4,("sliding do_list_queue backward\n"));
443 memmove(do_list_queue,
444 do_list_queue + do_list_queue_start,
445 do_list_queue_end - do_list_queue_start);
446 do_list_queue_end -= do_list_queue_start;
447 do_list_queue_start = 0;
452 static void add_to_do_list_queue(const char* entry)
454 char *dlq;
455 long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
456 while (new_end > do_list_queue_size)
458 do_list_queue_size *= 2;
459 DEBUG(4,("enlarging do_list_queue to %d\n",
460 (int)do_list_queue_size));
461 dlq = realloc_p(do_list_queue, char, do_list_queue_size);
462 if (! dlq) {
463 d_printf("failure enlarging do_list_queue to %d bytes\n",
464 (int)do_list_queue_size);
465 reset_do_list_queue();
467 else
469 do_list_queue = dlq;
470 memset(do_list_queue + do_list_queue_size / 2,
471 0, do_list_queue_size / 2);
474 if (do_list_queue)
476 safe_strcpy(do_list_queue + do_list_queue_end, entry,
477 do_list_queue_size - do_list_queue_end - 1);
478 do_list_queue_end = new_end;
479 DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
480 entry, (int)do_list_queue_start, (int)do_list_queue_end));
484 static char *do_list_queue_head(void)
486 return do_list_queue + do_list_queue_start;
489 static void remove_do_list_queue_head(void)
491 if (do_list_queue_end > do_list_queue_start)
493 do_list_queue_start += strlen(do_list_queue_head()) + 1;
494 adjust_do_list_queue();
495 DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
496 (int)do_list_queue_start, (int)do_list_queue_end));
500 static int do_list_queue_empty(void)
502 return (! (do_list_queue && *do_list_queue));
505 /****************************************************************************
506 a helper for do_list
507 ****************************************************************************/
508 static void do_list_helper(struct clilist_file_info *f, const char *mask, void *state)
510 struct smbclient_context *ctx = (struct smbclient_context *)state;
512 if (f->attrib & FILE_ATTRIBUTE_DIRECTORY) {
513 if (do_list_dirs && do_this_one(ctx, f)) {
514 do_list_fn(ctx, f);
516 if (do_list_recurse &&
517 !ISDOT(f->name) &&
518 !ISDOTDOT(f->name)) {
519 char *mask2;
520 char *p;
522 mask2 = talloc_strdup(NULL, mask);
523 p = strrchr_m(mask2,'\\');
524 if (!p) return;
525 p[1] = 0;
526 mask2 = talloc_asprintf_append_buffer(mask2, "%s\\*", f->name);
527 add_to_do_list_queue(mask2);
529 return;
532 if (do_this_one(ctx, f)) {
533 do_list_fn(ctx, f);
538 /****************************************************************************
539 a wrapper around smbcli_list that adds recursion
540 ****************************************************************************/
541 static void do_list(struct smbclient_context *ctx, const char *mask,uint16_t attribute,
542 void (*fn)(struct smbclient_context *, struct clilist_file_info *),bool rec, bool dirs)
544 static int in_do_list = 0;
546 if (in_do_list && rec)
548 fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
549 exit(1);
552 in_do_list = 1;
554 do_list_recurse = rec;
555 do_list_dirs = dirs;
556 do_list_fn = fn;
558 if (rec)
560 init_do_list_queue();
561 add_to_do_list_queue(mask);
563 while (! do_list_queue_empty())
566 * Need to copy head so that it doesn't become
567 * invalid inside the call to smbcli_list. This
568 * would happen if the list were expanded
569 * during the call.
570 * Fix from E. Jay Berkenbilt (ejb@ql.org)
572 char *head;
573 head = do_list_queue_head();
574 smbcli_list(ctx->cli->tree, head, attribute, do_list_helper, ctx);
575 remove_do_list_queue_head();
576 if ((! do_list_queue_empty()) && (fn == display_finfo))
578 char* next_file = do_list_queue_head();
579 char* save_ch = 0;
580 if ((strlen(next_file) >= 2) &&
581 (next_file[strlen(next_file) - 1] == '*') &&
582 (next_file[strlen(next_file) - 2] == '\\'))
584 save_ch = next_file +
585 strlen(next_file) - 2;
586 *save_ch = '\0';
588 d_printf("\n%s\n",next_file);
589 if (save_ch)
591 *save_ch = '\\';
596 else
598 if (smbcli_list(ctx->cli->tree, mask, attribute, do_list_helper, ctx) == -1)
600 d_printf("%s listing %s\n", smbcli_errstr(ctx->cli->tree), mask);
604 in_do_list = 0;
605 reset_do_list_queue();
608 /****************************************************************************
609 get a directory listing
610 ****************************************************************************/
611 static int cmd_dir(struct smbclient_context *ctx, const char **args)
613 uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
614 char *mask;
615 int rc;
617 dir_total = 0;
619 mask = talloc_strdup(ctx, ctx->remote_cur_dir);
620 if(mask[strlen(mask)-1]!='\\')
621 mask = talloc_append_string(ctx, mask,"\\");
623 if (args[1]) {
624 mask = talloc_strdup(ctx, args[1]);
625 if (mask[0] != '\\')
626 mask = talloc_append_string(ctx, mask, "\\");
627 dos_format(mask);
629 else {
630 if (ctx->cli->tree->session->transport->negotiate.protocol <=
631 PROTOCOL_LANMAN1) {
632 mask = talloc_append_string(ctx, mask, "*.*");
633 } else {
634 mask = talloc_append_string(ctx, mask, "*");
638 do_list(ctx, mask, attribute, display_finfo, ctx->recurse, true);
640 rc = do_dskattr(ctx);
642 DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
644 return rc;
648 /****************************************************************************
649 get a directory listing
650 ****************************************************************************/
651 static int cmd_du(struct smbclient_context *ctx, const char **args)
653 uint16_t attribute = FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
654 int rc;
655 char *mask;
657 dir_total = 0;
659 if (args[1]) {
660 if (args[1][0] == '\\')
661 mask = talloc_strdup(ctx, args[1]);
662 else
663 mask = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, args[1]);
664 dos_format(mask);
665 } else {
666 mask = talloc_asprintf(ctx, "%s\\*", ctx->remote_cur_dir);
669 do_list(ctx, mask, attribute, do_du, ctx->recurse, true);
671 talloc_free(mask);
673 rc = do_dskattr(ctx);
675 d_printf("Total number of bytes: %.0f\n", dir_total);
677 return rc;
681 /****************************************************************************
682 get a file from rname to lname
683 ****************************************************************************/
684 static int do_get(struct smbclient_context *ctx, char *rname, const char *p_lname, bool reget)
686 int handle = 0, fnum;
687 bool newhandle = false;
688 uint8_t *data;
689 struct timeval tp_start;
690 int read_size = ctx->io_bufsize;
691 uint16_t attr;
692 size_t size;
693 off_t start = 0;
694 off_t nread = 0;
695 int rc = 0;
696 char *lname;
699 lname = talloc_strdup(ctx, p_lname);
700 GetTimeOfDay(&tp_start);
702 if (ctx->lowercase) {
703 strlower(lname);
706 fnum = smbcli_open(ctx->cli->tree, rname, O_RDONLY, DENY_NONE);
708 if (fnum == -1) {
709 d_printf("%s opening remote file %s\n",smbcli_errstr(ctx->cli->tree),rname);
710 return 1;
713 if(!strcmp(lname,"-")) {
714 handle = fileno(stdout);
715 } else {
716 if (reget) {
717 handle = open(lname, O_WRONLY|O_CREAT, 0644);
718 if (handle >= 0) {
719 start = lseek(handle, 0, SEEK_END);
720 if (start == -1) {
721 d_printf("Error seeking local file\n");
722 return 1;
725 } else {
726 handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
728 newhandle = true;
730 if (handle < 0) {
731 d_printf("Error opening local file %s\n",lname);
732 return 1;
736 if (NT_STATUS_IS_ERR(smbcli_qfileinfo(ctx->cli->tree, fnum,
737 &attr, &size, NULL, NULL, NULL, NULL, NULL)) &&
738 NT_STATUS_IS_ERR(smbcli_getattrE(ctx->cli->tree, fnum,
739 &attr, &size, NULL, NULL, NULL))) {
740 d_printf("getattrib: %s\n",smbcli_errstr(ctx->cli->tree));
741 return 1;
744 DEBUG(2,("getting file %s of size %.0f as %s ",
745 rname, (double)size, lname));
747 if(!(data = (uint8_t *)malloc(read_size))) {
748 d_printf("malloc fail for size %d\n", read_size);
749 smbcli_close(ctx->cli->tree, fnum);
750 return 1;
753 while (1) {
754 int n = smbcli_read(ctx->cli->tree, fnum, data, nread + start, read_size);
756 if (n <= 0) break;
758 if (writefile(handle,data, n, ctx->translation) != n) {
759 d_printf("Error writing local file\n");
760 rc = 1;
761 break;
764 nread += n;
767 if (nread + start < size) {
768 DEBUG (0, ("Short read when getting file %s. Only got %ld bytes.\n",
769 rname, (long)nread));
771 rc = 1;
774 SAFE_FREE(data);
776 if (NT_STATUS_IS_ERR(smbcli_close(ctx->cli->tree, fnum))) {
777 d_printf("Error %s closing remote file\n",smbcli_errstr(ctx->cli->tree));
778 rc = 1;
781 if (newhandle) {
782 close(handle);
785 if (ctx->archive_level >= 2 && (attr & FILE_ATTRIBUTE_ARCHIVE)) {
786 smbcli_setatr(ctx->cli->tree, rname, attr & ~(uint16_t)FILE_ATTRIBUTE_ARCHIVE, 0);
790 struct timeval tp_end;
791 int this_time;
793 GetTimeOfDay(&tp_end);
794 this_time =
795 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
796 (tp_end.tv_usec - tp_start.tv_usec)/1000;
797 get_total_time_ms += this_time;
798 get_total_size += nread;
800 DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n",
801 nread / (1.024*this_time + 1.0e-4),
802 get_total_size / (1.024*get_total_time_ms)));
805 return rc;
809 /****************************************************************************
810 get a file
811 ****************************************************************************/
812 static int cmd_get(struct smbclient_context *ctx, const char **args)
814 const char *lname;
815 char *rname;
817 if (!args[1]) {
818 d_printf("get <filename>\n");
819 return 1;
822 rname = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, args[1]);
824 if (args[2])
825 lname = args[2];
826 else
827 lname = args[1];
829 dos_clean_name(rname);
831 return do_get(ctx, rname, lname, false);
834 /****************************************************************************
835 Put up a yes/no prompt.
836 ****************************************************************************/
837 static bool yesno(char *p)
839 char ans[4];
840 printf("%s",p);
842 if (!fgets(ans,sizeof(ans)-1,stdin))
843 return(false);
845 if (*ans == 'y' || *ans == 'Y')
846 return(true);
848 return(false);
851 /****************************************************************************
852 do a mget operation on one file
853 ****************************************************************************/
854 static void do_mget(struct smbclient_context *ctx, struct clilist_file_info *finfo)
856 char *rname;
857 char *quest;
858 char *mget_mask;
859 char *saved_curdir;
860 char *l_fname;
862 if (ISDOT(finfo->name) || ISDOTDOT(finfo->name))
863 return;
865 if (finfo->attrib & FILE_ATTRIBUTE_DIRECTORY)
866 asprintf(&quest, "Get directory %s? ",finfo->name);
867 else
868 asprintf(&quest, "Get file %s? ",finfo->name);
870 if (ctx->prompt && !yesno(quest)) return;
872 SAFE_FREE(quest);
874 if (!(finfo->attrib & FILE_ATTRIBUTE_DIRECTORY)) {
875 asprintf(&rname, "%s%s",ctx->remote_cur_dir,finfo->name);
876 do_get(ctx, rname, finfo->name, false);
877 SAFE_FREE(rname);
878 return;
881 /* handle directories */
882 saved_curdir = talloc_strdup(ctx, ctx->remote_cur_dir);
884 ctx->remote_cur_dir = talloc_asprintf_append_buffer(NULL, "%s\\", finfo->name);
886 l_fname = talloc_strdup(ctx, finfo->name);
888 string_replace(l_fname, '\\', '/');
889 if (ctx->lowercase) {
890 strlower(l_fname);
893 if (!directory_exist(l_fname) &&
894 mkdir(l_fname, 0777) != 0) {
895 d_printf("failed to create directory %s\n", l_fname);
896 return;
899 if (chdir(l_fname) != 0) {
900 d_printf("failed to chdir to directory %s\n", l_fname);
901 return;
904 mget_mask = talloc_asprintf(ctx, "%s*", ctx->remote_cur_dir);
906 do_list(ctx, mget_mask, FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_DIRECTORY,do_mget,false, true);
907 chdir("..");
908 talloc_free(ctx->remote_cur_dir);
910 ctx->remote_cur_dir = saved_curdir;
914 /****************************************************************************
915 view the file using the pager
916 ****************************************************************************/
917 static int cmd_more(struct smbclient_context *ctx, const char **args)
919 char *rname;
920 char *pager_cmd;
921 char *lname;
922 char *pager;
923 int fd;
924 int rc = 0;
926 lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
927 fd = mkstemp(lname);
928 if (fd == -1) {
929 d_printf("failed to create temporary file for more\n");
930 return 1;
932 close(fd);
934 if (!args[1]) {
935 d_printf("more <filename>\n");
936 unlink(lname);
937 return 1;
939 rname = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
940 dos_clean_name(rname);
942 rc = do_get(ctx, rname, lname, false);
944 pager=getenv("PAGER");
946 pager_cmd = talloc_asprintf(ctx, "%s %s",(pager? pager:DEFAULT_PAGER), lname);
947 system(pager_cmd);
948 unlink(lname);
950 return rc;
955 /****************************************************************************
956 do a mget command
957 ****************************************************************************/
958 static int cmd_mget(struct smbclient_context *ctx, const char **args)
960 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
961 char *mget_mask = NULL;
962 int i;
964 if (ctx->recurse)
965 attribute |= FILE_ATTRIBUTE_DIRECTORY;
967 for (i = 1; args[i]; i++) {
968 mget_mask = talloc_strdup(ctx, ctx->remote_cur_dir);
969 if(mget_mask[strlen(mget_mask)-1]!='\\')
970 mget_mask = talloc_append_string(ctx, mget_mask, "\\");
972 mget_mask = talloc_strdup(ctx, args[i]);
973 if (mget_mask[0] != '\\')
974 mget_mask = talloc_append_string(ctx, mget_mask, "\\");
975 do_list(ctx, mget_mask, attribute,do_mget,false,true);
977 talloc_free(mget_mask);
980 if (mget_mask == NULL) {
981 mget_mask = talloc_asprintf(ctx, "%s\\*", ctx->remote_cur_dir);
982 do_list(ctx, mget_mask, attribute,do_mget,false,true);
983 talloc_free(mget_mask);
986 return 0;
990 /****************************************************************************
991 make a directory of name "name"
992 ****************************************************************************/
993 static NTSTATUS do_mkdir(struct smbclient_context *ctx, char *name)
995 NTSTATUS status;
997 if (NT_STATUS_IS_ERR(status = smbcli_mkdir(ctx->cli->tree, name))) {
998 d_printf("%s making remote directory %s\n",
999 smbcli_errstr(ctx->cli->tree),name);
1000 return status;
1003 return status;
1007 /****************************************************************************
1008 Exit client.
1009 ****************************************************************************/
1010 static int cmd_quit(struct smbclient_context *ctx, const char **args)
1012 talloc_free(ctx);
1013 exit(0);
1014 /* NOTREACHED */
1015 return 0;
1019 /****************************************************************************
1020 make a directory
1021 ****************************************************************************/
1022 static int cmd_mkdir(struct smbclient_context *ctx, const char **args)
1024 char *mask, *p;
1026 if (!args[1]) {
1027 if (!ctx->recurse)
1028 d_printf("mkdir <dirname>\n");
1029 return 1;
1032 mask = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir,args[1]);
1034 if (ctx->recurse) {
1035 dos_clean_name(mask);
1037 trim_string(mask,".",NULL);
1038 for (p = strtok(mask,"/\\"); p; p = strtok(p, "/\\")) {
1039 char *parent = talloc_strndup(ctx, mask, PTR_DIFF(p, mask));
1041 if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx->cli->tree, parent))) {
1042 do_mkdir(ctx, parent);
1045 talloc_free(parent);
1047 } else {
1048 do_mkdir(ctx, mask);
1051 return 0;
1054 /****************************************************************************
1055 show 8.3 name of a file
1056 ****************************************************************************/
1057 static int cmd_altname(struct smbclient_context *ctx, const char **args)
1059 const char *altname;
1060 char *name;
1062 if (!args[1]) {
1063 d_printf("altname <file>\n");
1064 return 1;
1067 name = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
1069 if (!NT_STATUS_IS_OK(smbcli_qpathinfo_alt_name(ctx->cli->tree, name, &altname))) {
1070 d_printf("%s getting alt name for %s\n",
1071 smbcli_errstr(ctx->cli->tree),name);
1072 return(false);
1074 d_printf("%s\n", altname);
1076 return 0;
1080 /****************************************************************************
1081 put a single file
1082 ****************************************************************************/
1083 static int do_put(struct smbclient_context *ctx, char *rname, char *lname, bool reput)
1085 int fnum;
1086 XFILE *f;
1087 size_t start = 0;
1088 off_t nread = 0;
1089 uint8_t *buf = NULL;
1090 int maxwrite = ctx->io_bufsize;
1091 int rc = 0;
1093 struct timeval tp_start;
1094 GetTimeOfDay(&tp_start);
1096 if (reput) {
1097 fnum = smbcli_open(ctx->cli->tree, rname, O_RDWR|O_CREAT, DENY_NONE);
1098 if (fnum >= 0) {
1099 if (NT_STATUS_IS_ERR(smbcli_qfileinfo(ctx->cli->tree, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL)) &&
1100 NT_STATUS_IS_ERR(smbcli_getattrE(ctx->cli->tree, fnum, NULL, &start, NULL, NULL, NULL))) {
1101 d_printf("getattrib: %s\n",smbcli_errstr(ctx->cli->tree));
1102 return 1;
1105 } else {
1106 fnum = smbcli_open(ctx->cli->tree, rname, O_RDWR|O_CREAT|O_TRUNC,
1107 DENY_NONE);
1110 if (fnum == -1) {
1111 d_printf("%s opening remote file %s\n",smbcli_errstr(ctx->cli->tree),rname);
1112 return 1;
1115 /* allow files to be piped into smbclient
1116 jdblair 24.jun.98
1118 Note that in this case this function will exit(0) rather
1119 than returning. */
1120 if (!strcmp(lname, "-")) {
1121 f = x_stdin;
1122 /* size of file is not known */
1123 } else {
1124 f = x_fopen(lname,O_RDONLY, 0);
1125 if (f && reput) {
1126 if (x_tseek(f, start, SEEK_SET) == -1) {
1127 d_printf("Error seeking local file\n");
1128 return 1;
1133 if (!f) {
1134 d_printf("Error opening local file %s\n",lname);
1135 return 1;
1139 DEBUG(1,("putting file %s as %s ",lname,
1140 rname));
1142 buf = (uint8_t *)malloc(maxwrite);
1143 if (!buf) {
1144 d_printf("ERROR: Not enough memory!\n");
1145 return 1;
1147 while (!x_feof(f)) {
1148 int n = maxwrite;
1149 int ret;
1151 if ((n = readfile(buf,n,f,ctx->translation)) < 1) {
1152 if((n == 0) && x_feof(f))
1153 break; /* Empty local file. */
1155 d_printf("Error reading local file: %s\n", strerror(errno));
1156 rc = 1;
1157 break;
1160 ret = smbcli_write(ctx->cli->tree, fnum, 0, buf, nread + start, n);
1162 if (n != ret) {
1163 d_printf("Error writing file: %s\n", smbcli_errstr(ctx->cli->tree));
1164 rc = 1;
1165 break;
1168 nread += n;
1171 if (NT_STATUS_IS_ERR(smbcli_close(ctx->cli->tree, fnum))) {
1172 d_printf("%s closing remote file %s\n",smbcli_errstr(ctx->cli->tree),rname);
1173 x_fclose(f);
1174 SAFE_FREE(buf);
1175 return 1;
1179 if (f != x_stdin) {
1180 x_fclose(f);
1183 SAFE_FREE(buf);
1186 struct timeval tp_end;
1187 int this_time;
1189 GetTimeOfDay(&tp_end);
1190 this_time =
1191 (tp_end.tv_sec - tp_start.tv_sec)*1000 +
1192 (tp_end.tv_usec - tp_start.tv_usec)/1000;
1193 put_total_time_ms += this_time;
1194 put_total_size += nread;
1196 DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
1197 nread / (1.024*this_time + 1.0e-4),
1198 put_total_size / (1.024*put_total_time_ms)));
1201 if (f == x_stdin) {
1202 talloc_free(ctx);
1203 exit(0);
1206 return rc;
1211 /****************************************************************************
1212 put a file
1213 ****************************************************************************/
1214 static int cmd_put(struct smbclient_context *ctx, const char **args)
1216 char *lname;
1217 char *rname;
1219 if (!args[1]) {
1220 d_printf("put <filename> [<remotename>]\n");
1221 return 1;
1224 lname = talloc_strdup(ctx, args[1]);
1226 if (args[2]) {
1227 if (args[2][0]=='\\')
1228 rname = talloc_strdup(ctx, args[2]);
1229 else
1230 rname = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, args[2]);
1231 } else {
1232 rname = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, lname);
1235 dos_clean_name(rname);
1237 /* allow '-' to represent stdin
1238 jdblair, 24.jun.98 */
1239 if (!file_exist(lname) && (strcmp(lname,"-"))) {
1240 d_printf("%s does not exist\n",lname);
1241 return 1;
1244 return do_put(ctx, rname, lname, false);
1247 /*************************************
1248 File list structure
1249 *************************************/
1251 static struct file_list {
1252 struct file_list *prev, *next;
1253 char *file_path;
1254 bool isdir;
1255 } *file_list;
1257 /****************************************************************************
1258 Free a file_list structure
1259 ****************************************************************************/
1261 static void free_file_list (struct file_list * list)
1263 struct file_list *tmp;
1265 while (list)
1267 tmp = list;
1268 DLIST_REMOVE(list, list);
1269 SAFE_FREE(tmp->file_path);
1270 SAFE_FREE(tmp);
1274 /****************************************************************************
1275 seek in a directory/file list until you get something that doesn't start with
1276 the specified name
1277 ****************************************************************************/
1278 static bool seek_list(struct file_list *list, char *name)
1280 while (list) {
1281 trim_string(list->file_path,"./","\n");
1282 if (strncmp(list->file_path, name, strlen(name)) != 0) {
1283 return(true);
1285 list = list->next;
1288 return(false);
1291 /****************************************************************************
1292 set the file selection mask
1293 ****************************************************************************/
1294 static int cmd_select(struct smbclient_context *ctx, const char **args)
1296 talloc_free(ctx->fileselection);
1297 ctx->fileselection = talloc_strdup(ctx, args[1]);
1299 return 0;
1302 /*******************************************************************
1303 A readdir wrapper which just returns the file name.
1304 ********************************************************************/
1305 static const char *readdirname(DIR *p)
1307 struct dirent *ptr;
1308 char *dname;
1310 if (!p)
1311 return(NULL);
1313 ptr = (struct dirent *)readdir(p);
1314 if (!ptr)
1315 return(NULL);
1317 dname = ptr->d_name;
1319 #ifdef NEXT2
1320 if (telldir(p) < 0)
1321 return(NULL);
1322 #endif
1324 #ifdef HAVE_BROKEN_READDIR
1325 /* using /usr/ucb/cc is BAD */
1326 dname = dname - 2;
1327 #endif
1330 static char *buf;
1331 int len = NAMLEN(ptr);
1332 buf = talloc_strndup(NULL, dname, len);
1333 dname = buf;
1336 return(dname);
1339 /****************************************************************************
1340 Recursive file matching function act as find
1341 match must be always set to true when calling this function
1342 ****************************************************************************/
1343 static int file_find(struct smbclient_context *ctx, struct file_list **list, const char *directory,
1344 const char *expression, bool match)
1346 DIR *dir;
1347 struct file_list *entry;
1348 struct stat statbuf;
1349 int ret;
1350 char *path;
1351 bool isdir;
1352 const char *dname;
1354 dir = opendir(directory);
1355 if (!dir) return -1;
1357 while ((dname = readdirname(dir))) {
1358 if (ISDOT(dname) || ISDOTDOT(dname)) {
1359 continue;
1362 if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
1363 continue;
1366 isdir = false;
1367 if (!match || !gen_fnmatch(expression, dname)) {
1368 if (ctx->recurse) {
1369 ret = stat(path, &statbuf);
1370 if (ret == 0) {
1371 if (S_ISDIR(statbuf.st_mode)) {
1372 isdir = true;
1373 ret = file_find(ctx, list, path, expression, false);
1375 } else {
1376 d_printf("file_find: cannot stat file %s\n", path);
1379 if (ret == -1) {
1380 SAFE_FREE(path);
1381 closedir(dir);
1382 return -1;
1385 entry = malloc_p(struct file_list);
1386 if (!entry) {
1387 d_printf("Out of memory in file_find\n");
1388 closedir(dir);
1389 return -1;
1391 entry->file_path = path;
1392 entry->isdir = isdir;
1393 DLIST_ADD(*list, entry);
1394 } else {
1395 SAFE_FREE(path);
1399 closedir(dir);
1400 return 0;
1403 /****************************************************************************
1404 mput some files
1405 ****************************************************************************/
1406 static int cmd_mput(struct smbclient_context *ctx, const char **args)
1408 int i;
1410 for (i = 1; args[i]; i++) {
1411 int ret;
1412 struct file_list *temp_list;
1413 char *quest, *lname, *rname;
1415 printf("%s\n", args[i]);
1417 file_list = NULL;
1419 ret = file_find(ctx, &file_list, ".", args[i], true);
1420 if (ret) {
1421 free_file_list(file_list);
1422 continue;
1425 quest = NULL;
1426 lname = NULL;
1427 rname = NULL;
1429 for (temp_list = file_list; temp_list;
1430 temp_list = temp_list->next) {
1432 SAFE_FREE(lname);
1433 if (asprintf(&lname, "%s/", temp_list->file_path) <= 0)
1434 continue;
1435 trim_string(lname, "./", "/");
1437 /* check if it's a directory */
1438 if (temp_list->isdir) {
1439 /* if (!recurse) continue; */
1441 SAFE_FREE(quest);
1442 if (asprintf(&quest, "Put directory %s? ", lname) < 0) break;
1443 if (ctx->prompt && !yesno(quest)) { /* No */
1444 /* Skip the directory */
1445 lname[strlen(lname)-1] = '/';
1446 if (!seek_list(temp_list, lname))
1447 break;
1448 } else { /* Yes */
1449 SAFE_FREE(rname);
1450 if(asprintf(&rname, "%s%s", ctx->remote_cur_dir, lname) < 0) break;
1451 dos_format(rname);
1452 if (NT_STATUS_IS_ERR(smbcli_chkpath(ctx->cli->tree, rname)) &&
1453 NT_STATUS_IS_ERR(do_mkdir(ctx, rname))) {
1454 DEBUG (0, ("Unable to make dir, skipping..."));
1455 /* Skip the directory */
1456 lname[strlen(lname)-1] = '/';
1457 if (!seek_list(temp_list, lname))
1458 break;
1461 continue;
1462 } else {
1463 SAFE_FREE(quest);
1464 if (asprintf(&quest,"Put file %s? ", lname) < 0) break;
1465 if (ctx->prompt && !yesno(quest)) /* No */
1466 continue;
1468 /* Yes */
1469 SAFE_FREE(rname);
1470 if (asprintf(&rname, "%s%s", ctx->remote_cur_dir, lname) < 0) break;
1473 dos_format(rname);
1475 do_put(ctx, rname, lname, false);
1477 free_file_list(file_list);
1478 SAFE_FREE(quest);
1479 SAFE_FREE(lname);
1480 SAFE_FREE(rname);
1483 return 0;
1487 /****************************************************************************
1488 print a file
1489 ****************************************************************************/
1490 static int cmd_print(struct smbclient_context *ctx, const char **args)
1492 char *lname, *rname;
1493 char *p;
1495 if (!args[1]) {
1496 d_printf("print <filename>\n");
1497 return 1;
1500 lname = talloc_strdup(ctx, args[1]);
1502 rname = talloc_strdup(ctx, lname);
1503 p = strrchr_m(rname,'/');
1504 if (p) {
1505 slprintf(rname, sizeof(rname)-1, "%s-%d", p+1, (int)getpid());
1508 if (strequal(lname,"-")) {
1509 slprintf(rname, sizeof(rname)-1, "stdin-%d", (int)getpid());
1512 return do_put(ctx, rname, lname, false);
1516 static int cmd_rewrite(struct smbclient_context *ctx, const char **args)
1518 d_printf("REWRITE: command not implemented (FIXME!)\n");
1520 return 0;
1523 /****************************************************************************
1524 delete some files
1525 ****************************************************************************/
1526 static int cmd_del(struct smbclient_context *ctx, const char **args)
1528 char *mask;
1529 uint16_t attribute = FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN;
1531 if (ctx->recurse)
1532 attribute |= FILE_ATTRIBUTE_DIRECTORY;
1534 if (!args[1]) {
1535 d_printf("del <filename>\n");
1536 return 1;
1538 mask = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
1540 if (NT_STATUS_IS_ERR(smbcli_unlink(ctx->cli->tree, mask))) {
1541 d_printf("%s deleting remote file %s\n",smbcli_errstr(ctx->cli->tree),mask);
1544 return 0;
1548 /****************************************************************************
1549 delete a whole directory tree
1550 ****************************************************************************/
1551 static int cmd_deltree(struct smbclient_context *ctx, const char **args)
1553 char *dname;
1554 int ret;
1556 if (!args[1]) {
1557 d_printf("deltree <dirname>\n");
1558 return 1;
1561 dname = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
1563 ret = smbcli_deltree(ctx->cli->tree, dname);
1565 if (ret == -1) {
1566 printf("Failed to delete tree %s - %s\n", dname, smbcli_errstr(ctx->cli->tree));
1567 return -1;
1570 printf("Deleted %d files in %s\n", ret, dname);
1572 return 0;
1575 typedef struct {
1576 const char *level_name;
1577 enum smb_fsinfo_level level;
1578 } fsinfo_level_t;
1580 fsinfo_level_t fsinfo_levels[] = {
1581 {"dskattr", RAW_QFS_DSKATTR},
1582 {"allocation", RAW_QFS_ALLOCATION},
1583 {"volume", RAW_QFS_VOLUME},
1584 {"volumeinfo", RAW_QFS_VOLUME_INFO},
1585 {"sizeinfo", RAW_QFS_SIZE_INFO},
1586 {"deviceinfo", RAW_QFS_DEVICE_INFO},
1587 {"attributeinfo", RAW_QFS_ATTRIBUTE_INFO},
1588 {"unixinfo", RAW_QFS_UNIX_INFO},
1589 {"volume-information", RAW_QFS_VOLUME_INFORMATION},
1590 {"size-information", RAW_QFS_SIZE_INFORMATION},
1591 {"device-information", RAW_QFS_DEVICE_INFORMATION},
1592 {"attribute-information", RAW_QFS_ATTRIBUTE_INFORMATION},
1593 {"quota-information", RAW_QFS_QUOTA_INFORMATION},
1594 {"fullsize-information", RAW_QFS_FULL_SIZE_INFORMATION},
1595 {"objectid", RAW_QFS_OBJECTID_INFORMATION},
1596 {NULL, RAW_QFS_GENERIC}
1600 static int cmd_fsinfo(struct smbclient_context *ctx, const char **args)
1602 union smb_fsinfo fsinfo;
1603 NTSTATUS status;
1604 fsinfo_level_t *fsinfo_level;
1606 if (!args[1]) {
1607 d_printf("fsinfo <level>, where level is one of following:\n");
1608 fsinfo_level = fsinfo_levels;
1609 while(fsinfo_level->level_name) {
1610 d_printf("%s\n", fsinfo_level->level_name);
1611 fsinfo_level++;
1613 return 1;
1616 fsinfo_level = fsinfo_levels;
1617 while(fsinfo_level->level_name && !strequal(args[1],fsinfo_level->level_name)) {
1618 fsinfo_level++;
1621 if (!fsinfo_level->level_name) {
1622 d_printf("wrong level name!\n");
1623 return 1;
1626 fsinfo.generic.level = fsinfo_level->level;
1627 status = smb_raw_fsinfo(ctx->cli->tree, ctx, &fsinfo);
1628 if (!NT_STATUS_IS_OK(status)) {
1629 d_printf("fsinfo-level-%s - %s\n", fsinfo_level->level_name, nt_errstr(status));
1630 return 1;
1633 d_printf("fsinfo-level-%s:\n", fsinfo_level->level_name);
1634 switch(fsinfo.generic.level) {
1635 case RAW_QFS_DSKATTR:
1636 d_printf("\tunits_total: %hu\n",
1637 (unsigned short) fsinfo.dskattr.out.units_total);
1638 d_printf("\tblocks_per_unit: %hu\n",
1639 (unsigned short) fsinfo.dskattr.out.blocks_per_unit);
1640 d_printf("\tblocks_size: %hu\n",
1641 (unsigned short) fsinfo.dskattr.out.block_size);
1642 d_printf("\tunits_free: %hu\n",
1643 (unsigned short) fsinfo.dskattr.out.units_free);
1644 break;
1645 case RAW_QFS_ALLOCATION:
1646 d_printf("\tfs_id: %lu\n",
1647 (unsigned long) fsinfo.allocation.out.fs_id);
1648 d_printf("\tsectors_per_unit: %lu\n",
1649 (unsigned long) fsinfo.allocation.out.sectors_per_unit);
1650 d_printf("\ttotal_alloc_units: %lu\n",
1651 (unsigned long) fsinfo.allocation.out.total_alloc_units);
1652 d_printf("\tavail_alloc_units: %lu\n",
1653 (unsigned long) fsinfo.allocation.out.avail_alloc_units);
1654 d_printf("\tbytes_per_sector: %hu\n",
1655 (unsigned short) fsinfo.allocation.out.bytes_per_sector);
1656 break;
1657 case RAW_QFS_VOLUME:
1658 d_printf("\tserial_number: %lu\n",
1659 (unsigned long) fsinfo.volume.out.serial_number);
1660 d_printf("\tvolume_name: %s\n", fsinfo.volume.out.volume_name.s);
1661 break;
1662 case RAW_QFS_VOLUME_INFO:
1663 case RAW_QFS_VOLUME_INFORMATION:
1664 d_printf("\tcreate_time: %s\n",
1665 nt_time_string(ctx,fsinfo.volume_info.out.create_time));
1666 d_printf("\tserial_number: %lu\n",
1667 (unsigned long) fsinfo.volume_info.out.serial_number);
1668 d_printf("\tvolume_name: %s\n", fsinfo.volume_info.out.volume_name.s);
1669 break;
1670 case RAW_QFS_SIZE_INFO:
1671 case RAW_QFS_SIZE_INFORMATION:
1672 d_printf("\ttotal_alloc_units: %llu\n",
1673 (unsigned long long) fsinfo.size_info.out.total_alloc_units);
1674 d_printf("\tavail_alloc_units: %llu\n",
1675 (unsigned long long) fsinfo.size_info.out.avail_alloc_units);
1676 d_printf("\tsectors_per_unit: %lu\n",
1677 (unsigned long) fsinfo.size_info.out.sectors_per_unit);
1678 d_printf("\tbytes_per_sector: %lu\n",
1679 (unsigned long) fsinfo.size_info.out.bytes_per_sector);
1680 break;
1681 case RAW_QFS_DEVICE_INFO:
1682 case RAW_QFS_DEVICE_INFORMATION:
1683 d_printf("\tdevice_type: %lu\n",
1684 (unsigned long) fsinfo.device_info.out.device_type);
1685 d_printf("\tcharacteristics: 0x%lx\n",
1686 (unsigned long) fsinfo.device_info.out.characteristics);
1687 break;
1688 case RAW_QFS_ATTRIBUTE_INFORMATION:
1689 case RAW_QFS_ATTRIBUTE_INFO:
1690 d_printf("\tfs_attr: 0x%lx\n",
1691 (unsigned long) fsinfo.attribute_info.out.fs_attr);
1692 d_printf("\tmax_file_component_length: %lu\n",
1693 (unsigned long) fsinfo.attribute_info.out.max_file_component_length);
1694 d_printf("\tfs_type: %s\n", fsinfo.attribute_info.out.fs_type.s);
1695 break;
1696 case RAW_QFS_UNIX_INFO:
1697 d_printf("\tmajor_version: %hu\n",
1698 (unsigned short) fsinfo.unix_info.out.major_version);
1699 d_printf("\tminor_version: %hu\n",
1700 (unsigned short) fsinfo.unix_info.out.minor_version);
1701 d_printf("\tcapability: 0x%llx\n",
1702 (unsigned long long) fsinfo.unix_info.out.capability);
1703 break;
1704 case RAW_QFS_QUOTA_INFORMATION:
1705 d_printf("\tunknown[3]: [%llu,%llu,%llu]\n",
1706 (unsigned long long) fsinfo.quota_information.out.unknown[0],
1707 (unsigned long long) fsinfo.quota_information.out.unknown[1],
1708 (unsigned long long) fsinfo.quota_information.out.unknown[2]);
1709 d_printf("\tquota_soft: %llu\n",
1710 (unsigned long long) fsinfo.quota_information.out.quota_soft);
1711 d_printf("\tquota_hard: %llu\n",
1712 (unsigned long long) fsinfo.quota_information.out.quota_hard);
1713 d_printf("\tquota_flags: 0x%llx\n",
1714 (unsigned long long) fsinfo.quota_information.out.quota_flags);
1715 break;
1716 case RAW_QFS_FULL_SIZE_INFORMATION:
1717 d_printf("\ttotal_alloc_units: %llu\n",
1718 (unsigned long long) fsinfo.full_size_information.out.total_alloc_units);
1719 d_printf("\tcall_avail_alloc_units: %llu\n",
1720 (unsigned long long) fsinfo.full_size_information.out.call_avail_alloc_units);
1721 d_printf("\tactual_avail_alloc_units: %llu\n",
1722 (unsigned long long) fsinfo.full_size_information.out.actual_avail_alloc_units);
1723 d_printf("\tsectors_per_unit: %lu\n",
1724 (unsigned long) fsinfo.full_size_information.out.sectors_per_unit);
1725 d_printf("\tbytes_per_sector: %lu\n",
1726 (unsigned long) fsinfo.full_size_information.out.bytes_per_sector);
1727 break;
1728 case RAW_QFS_OBJECTID_INFORMATION:
1729 d_printf("\tGUID: %s\n",
1730 GUID_string(ctx,&fsinfo.objectid_information.out.guid));
1731 d_printf("\tunknown[6]: [%llu,%llu,%llu,%llu,%llu,%llu]\n",
1732 (unsigned long long) fsinfo.objectid_information.out.unknown[0],
1733 (unsigned long long) fsinfo.objectid_information.out.unknown[1],
1734 (unsigned long long) fsinfo.objectid_information.out.unknown[2],
1735 (unsigned long long) fsinfo.objectid_information.out.unknown[3],
1736 (unsigned long long) fsinfo.objectid_information.out.unknown[4],
1737 (unsigned long long) fsinfo.objectid_information.out.unknown[5] );
1738 break;
1739 case RAW_QFS_GENERIC:
1740 d_printf("\twrong level returned\n");
1741 break;
1744 return 0;
1747 /****************************************************************************
1748 show as much information as possible about a file
1749 ****************************************************************************/
1750 static int cmd_allinfo(struct smbclient_context *ctx, const char **args)
1752 char *fname;
1753 union smb_fileinfo finfo;
1754 NTSTATUS status;
1755 int fnum;
1757 if (!args[1]) {
1758 d_printf("allinfo <filename>\n");
1759 return 1;
1761 fname = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
1763 /* first a ALL_INFO QPATHINFO */
1764 finfo.generic.level = RAW_FILEINFO_ALL_INFO;
1765 finfo.generic.in.file.path = fname;
1766 status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1767 if (!NT_STATUS_IS_OK(status)) {
1768 d_printf("%s - %s\n", fname, nt_errstr(status));
1769 return 1;
1772 d_printf("\tcreate_time: %s\n", nt_time_string(ctx, finfo.all_info.out.create_time));
1773 d_printf("\taccess_time: %s\n", nt_time_string(ctx, finfo.all_info.out.access_time));
1774 d_printf("\twrite_time: %s\n", nt_time_string(ctx, finfo.all_info.out.write_time));
1775 d_printf("\tchange_time: %s\n", nt_time_string(ctx, finfo.all_info.out.change_time));
1776 d_printf("\tattrib: 0x%x\n", finfo.all_info.out.attrib);
1777 d_printf("\talloc_size: %lu\n", (unsigned long)finfo.all_info.out.alloc_size);
1778 d_printf("\tsize: %lu\n", (unsigned long)finfo.all_info.out.size);
1779 d_printf("\tnlink: %u\n", finfo.all_info.out.nlink);
1780 d_printf("\tdelete_pending: %u\n", finfo.all_info.out.delete_pending);
1781 d_printf("\tdirectory: %u\n", finfo.all_info.out.directory);
1782 d_printf("\tea_size: %u\n", finfo.all_info.out.ea_size);
1783 d_printf("\tfname: '%s'\n", finfo.all_info.out.fname.s);
1785 /* 8.3 name if any */
1786 finfo.generic.level = RAW_FILEINFO_ALT_NAME_INFO;
1787 status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1788 if (NT_STATUS_IS_OK(status)) {
1789 d_printf("\talt_name: %s\n", finfo.alt_name_info.out.fname.s);
1792 /* file_id if available */
1793 finfo.generic.level = RAW_FILEINFO_INTERNAL_INFORMATION;
1794 status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1795 if (NT_STATUS_IS_OK(status)) {
1796 d_printf("\tfile_id %.0f\n",
1797 (double)finfo.internal_information.out.file_id);
1800 /* the EAs, if any */
1801 finfo.generic.level = RAW_FILEINFO_ALL_EAS;
1802 status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1803 if (NT_STATUS_IS_OK(status)) {
1804 int i;
1805 for (i=0;i<finfo.all_eas.out.num_eas;i++) {
1806 d_printf("\tEA[%d] flags=%d len=%d '%s'\n", i,
1807 finfo.all_eas.out.eas[i].flags,
1808 (int)finfo.all_eas.out.eas[i].value.length,
1809 finfo.all_eas.out.eas[i].name.s);
1813 /* streams, if available */
1814 finfo.generic.level = RAW_FILEINFO_STREAM_INFO;
1815 status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1816 if (NT_STATUS_IS_OK(status)) {
1817 int i;
1818 for (i=0;i<finfo.stream_info.out.num_streams;i++) {
1819 d_printf("\tstream %d:\n", i);
1820 d_printf("\t\tsize %ld\n",
1821 (long)finfo.stream_info.out.streams[i].size);
1822 d_printf("\t\talloc size %ld\n",
1823 (long)finfo.stream_info.out.streams[i].alloc_size);
1824 d_printf("\t\tname %s\n", finfo.stream_info.out.streams[i].stream_name.s);
1828 /* dev/inode if available */
1829 finfo.generic.level = RAW_FILEINFO_COMPRESSION_INFORMATION;
1830 status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1831 if (NT_STATUS_IS_OK(status)) {
1832 d_printf("\tcompressed size %ld\n", (long)finfo.compression_info.out.compressed_size);
1833 d_printf("\tformat %ld\n", (long)finfo.compression_info.out.format);
1834 d_printf("\tunit_shift %ld\n", (long)finfo.compression_info.out.unit_shift);
1835 d_printf("\tchunk_shift %ld\n", (long)finfo.compression_info.out.chunk_shift);
1836 d_printf("\tcluster_shift %ld\n", (long)finfo.compression_info.out.cluster_shift);
1839 /* shadow copies if available */
1840 fnum = smbcli_open(ctx->cli->tree, fname, O_RDONLY, DENY_NONE);
1841 if (fnum != -1) {
1842 struct smb_shadow_copy info;
1843 int i;
1844 info.in.file.fnum = fnum;
1845 info.in.max_data = ~0;
1846 status = smb_raw_shadow_data(ctx->cli->tree, ctx, &info);
1847 if (NT_STATUS_IS_OK(status)) {
1848 d_printf("\tshadow_copy: %u volumes %u names\n",
1849 info.out.num_volumes, info.out.num_names);
1850 for (i=0;i<info.out.num_names;i++) {
1851 d_printf("\t%s\n", info.out.names[i]);
1852 finfo.generic.level = RAW_FILEINFO_ALL_INFO;
1853 finfo.generic.in.file.path = talloc_asprintf(ctx, "%s%s",
1854 info.out.names[i], fname);
1855 status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1856 if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_PATH_NOT_FOUND) ||
1857 NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
1858 continue;
1860 if (!NT_STATUS_IS_OK(status)) {
1861 d_printf("%s - %s\n", finfo.generic.in.file.path,
1862 nt_errstr(status));
1863 return 1;
1866 d_printf("\t\tcreate_time: %s\n", nt_time_string(ctx, finfo.all_info.out.create_time));
1867 d_printf("\t\twrite_time: %s\n", nt_time_string(ctx, finfo.all_info.out.write_time));
1868 d_printf("\t\tchange_time: %s\n", nt_time_string(ctx, finfo.all_info.out.change_time));
1869 d_printf("\t\tsize: %lu\n", (unsigned long)finfo.all_info.out.size);
1874 return 0;
1878 /****************************************************************************
1879 shows EA contents
1880 ****************************************************************************/
1881 static int cmd_eainfo(struct smbclient_context *ctx, const char **args)
1883 char *fname;
1884 union smb_fileinfo finfo;
1885 NTSTATUS status;
1886 int i;
1888 if (!args[1]) {
1889 d_printf("eainfo <filename>\n");
1890 return 1;
1892 fname = talloc_strdup(ctx, args[1]);
1894 finfo.generic.level = RAW_FILEINFO_ALL_EAS;
1895 finfo.generic.in.file.path = fname;
1896 status = smb_raw_pathinfo(ctx->cli->tree, ctx, &finfo);
1898 if (!NT_STATUS_IS_OK(status)) {
1899 d_printf("RAW_FILEINFO_ALL_EAS - %s\n", nt_errstr(status));
1900 return 1;
1903 d_printf("%s has %d EAs\n", fname, finfo.all_eas.out.num_eas);
1905 for (i=0;i<finfo.all_eas.out.num_eas;i++) {
1906 d_printf("\tEA[%d] flags=%d len=%d '%s'\n", i,
1907 finfo.all_eas.out.eas[i].flags,
1908 (int)finfo.all_eas.out.eas[i].value.length,
1909 finfo.all_eas.out.eas[i].name.s);
1910 fflush(stdout);
1911 dump_data(0,
1912 finfo.all_eas.out.eas[i].value.data,
1913 finfo.all_eas.out.eas[i].value.length);
1916 return 0;
1920 /****************************************************************************
1921 show any ACL on a file
1922 ****************************************************************************/
1923 static int cmd_acl(struct smbclient_context *ctx, const char **args)
1925 char *fname;
1926 union smb_fileinfo query;
1927 NTSTATUS status;
1928 int fnum;
1930 if (!args[1]) {
1931 d_printf("acl <filename>\n");
1932 return 1;
1934 fname = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
1936 fnum = smbcli_nt_create_full(ctx->cli->tree, fname, 0,
1937 SEC_STD_READ_CONTROL,
1939 NTCREATEX_SHARE_ACCESS_DELETE|
1940 NTCREATEX_SHARE_ACCESS_READ|
1941 NTCREATEX_SHARE_ACCESS_WRITE,
1942 NTCREATEX_DISP_OPEN,
1943 0, 0);
1944 if (fnum == -1) {
1945 d_printf("%s - %s\n", fname, smbcli_errstr(ctx->cli->tree));
1946 return -1;
1949 query.query_secdesc.level = RAW_FILEINFO_SEC_DESC;
1950 query.query_secdesc.in.file.fnum = fnum;
1951 query.query_secdesc.in.secinfo_flags = 0x7;
1953 status = smb_raw_fileinfo(ctx->cli->tree, ctx, &query);
1954 if (!NT_STATUS_IS_OK(status)) {
1955 d_printf("%s - %s\n", fname, nt_errstr(status));
1956 return 1;
1959 NDR_PRINT_DEBUG(security_descriptor, query.query_secdesc.out.sd);
1961 return 0;
1964 /****************************************************************************
1965 lookup a name or sid
1966 ****************************************************************************/
1967 static int cmd_lookup(struct smbclient_context *ctx, const char **args)
1969 NTSTATUS status;
1970 struct dom_sid *sid;
1972 if (!args[1]) {
1973 d_printf("lookup <sid|name>\n");
1974 return 1;
1977 sid = dom_sid_parse_talloc(ctx, args[1]);
1978 if (sid == NULL) {
1979 const char *sidstr;
1980 status = smblsa_lookup_name(ctx->cli, args[1], ctx, &sidstr);
1981 if (!NT_STATUS_IS_OK(status)) {
1982 d_printf("lsa_LookupNames - %s\n", nt_errstr(status));
1983 return 1;
1986 d_printf("%s\n", sidstr);
1987 } else {
1988 const char *name;
1989 status = smblsa_lookup_sid(ctx->cli, args[1], ctx, &name);
1990 if (!NT_STATUS_IS_OK(status)) {
1991 d_printf("lsa_LookupSids - %s\n", nt_errstr(status));
1992 return 1;
1995 d_printf("%s\n", name);
1998 return 0;
2001 /****************************************************************************
2002 show privileges for a user
2003 ****************************************************************************/
2004 static int cmd_privileges(struct smbclient_context *ctx, const char **args)
2006 NTSTATUS status;
2007 struct dom_sid *sid;
2008 struct lsa_RightSet rights;
2009 unsigned i;
2011 if (!args[1]) {
2012 d_printf("privileges <sid|name>\n");
2013 return 1;
2016 sid = dom_sid_parse_talloc(ctx, args[1]);
2017 if (sid == NULL) {
2018 const char *sid_str;
2019 status = smblsa_lookup_name(ctx->cli, args[1], ctx, &sid_str);
2020 if (!NT_STATUS_IS_OK(status)) {
2021 d_printf("lsa_LookupNames - %s\n", nt_errstr(status));
2022 return 1;
2024 sid = dom_sid_parse_talloc(ctx, sid_str);
2027 status = smblsa_sid_privileges(ctx->cli, sid, ctx, &rights);
2028 if (!NT_STATUS_IS_OK(status)) {
2029 d_printf("lsa_EnumAccountRights - %s\n", nt_errstr(status));
2030 return 1;
2033 for (i=0;i<rights.count;i++) {
2034 d_printf("\t%s\n", rights.names[i].string);
2037 return 0;
2041 /****************************************************************************
2042 add privileges for a user
2043 ****************************************************************************/
2044 static int cmd_addprivileges(struct smbclient_context *ctx, const char **args)
2046 NTSTATUS status;
2047 struct dom_sid *sid;
2048 struct lsa_RightSet rights;
2049 int i;
2051 if (!args[1]) {
2052 d_printf("addprivileges <sid|name> <privilege...>\n");
2053 return 1;
2056 sid = dom_sid_parse_talloc(ctx, args[1]);
2057 if (sid == NULL) {
2058 const char *sid_str;
2059 status = smblsa_lookup_name(ctx->cli, args[1], ctx, &sid_str);
2060 if (!NT_STATUS_IS_OK(status)) {
2061 d_printf("lsa_LookupNames - %s\n", nt_errstr(status));
2062 return 1;
2064 sid = dom_sid_parse_talloc(ctx, sid_str);
2067 ZERO_STRUCT(rights);
2068 for (i = 2; args[i]; i++) {
2069 rights.names = talloc_realloc(ctx, rights.names,
2070 struct lsa_StringLarge, rights.count+1);
2071 rights.names[rights.count].string = talloc_strdup(ctx, args[i]);
2072 rights.count++;
2076 status = smblsa_sid_add_privileges(ctx->cli, sid, ctx, &rights);
2077 if (!NT_STATUS_IS_OK(status)) {
2078 d_printf("lsa_AddAccountRights - %s\n", nt_errstr(status));
2079 return 1;
2082 return 0;
2085 /****************************************************************************
2086 delete privileges for a user
2087 ****************************************************************************/
2088 static int cmd_delprivileges(struct smbclient_context *ctx, const char **args)
2090 NTSTATUS status;
2091 struct dom_sid *sid;
2092 struct lsa_RightSet rights;
2093 int i;
2095 if (!args[1]) {
2096 d_printf("delprivileges <sid|name> <privilege...>\n");
2097 return 1;
2100 sid = dom_sid_parse_talloc(ctx, args[1]);
2101 if (sid == NULL) {
2102 const char *sid_str;
2103 status = smblsa_lookup_name(ctx->cli, args[1], ctx, &sid_str);
2104 if (!NT_STATUS_IS_OK(status)) {
2105 d_printf("lsa_LookupNames - %s\n", nt_errstr(status));
2106 return 1;
2108 sid = dom_sid_parse_talloc(ctx, sid_str);
2111 ZERO_STRUCT(rights);
2112 for (i = 2; args[i]; i++) {
2113 rights.names = talloc_realloc(ctx, rights.names,
2114 struct lsa_StringLarge, rights.count+1);
2115 rights.names[rights.count].string = talloc_strdup(ctx, args[i]);
2116 rights.count++;
2120 status = smblsa_sid_del_privileges(ctx->cli, sid, ctx, &rights);
2121 if (!NT_STATUS_IS_OK(status)) {
2122 d_printf("lsa_RemoveAccountRights - %s\n", nt_errstr(status));
2123 return 1;
2126 return 0;
2130 /****************************************************************************
2131 ****************************************************************************/
2132 static int cmd_open(struct smbclient_context *ctx, const char **args)
2134 char *mask;
2136 if (!args[1]) {
2137 d_printf("open <filename>\n");
2138 return 1;
2140 mask = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2142 smbcli_open(ctx->cli->tree, mask, O_RDWR, DENY_ALL);
2144 return 0;
2148 /****************************************************************************
2149 remove a directory
2150 ****************************************************************************/
2151 static int cmd_rmdir(struct smbclient_context *ctx, const char **args)
2153 char *mask;
2155 if (!args[1]) {
2156 d_printf("rmdir <dirname>\n");
2157 return 1;
2159 mask = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2161 if (NT_STATUS_IS_ERR(smbcli_rmdir(ctx->cli->tree, mask))) {
2162 d_printf("%s removing remote directory file %s\n",
2163 smbcli_errstr(ctx->cli->tree),mask);
2166 return 0;
2169 /****************************************************************************
2170 UNIX hardlink.
2171 ****************************************************************************/
2172 static int cmd_link(struct smbclient_context *ctx, const char **args)
2174 char *src,*dest;
2176 if (!(ctx->cli->transport->negotiate.capabilities & CAP_UNIX)) {
2177 d_printf("Server doesn't support UNIX CIFS calls.\n");
2178 return 1;
2182 if (!args[1] || !args[2]) {
2183 d_printf("link <src> <dest>\n");
2184 return 1;
2187 src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2188 dest = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[2]);
2190 if (NT_STATUS_IS_ERR(smbcli_unix_hardlink(ctx->cli->tree, src, dest))) {
2191 d_printf("%s linking files (%s -> %s)\n", smbcli_errstr(ctx->cli->tree), src, dest);
2192 return 1;
2195 return 0;
2198 /****************************************************************************
2199 UNIX symlink.
2200 ****************************************************************************/
2202 static int cmd_symlink(struct smbclient_context *ctx, const char **args)
2204 char *src,*dest;
2206 if (!(ctx->cli->transport->negotiate.capabilities & CAP_UNIX)) {
2207 d_printf("Server doesn't support UNIX CIFS calls.\n");
2208 return 1;
2211 if (!args[1] || !args[2]) {
2212 d_printf("symlink <src> <dest>\n");
2213 return 1;
2216 src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2217 dest = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[2]);
2219 if (NT_STATUS_IS_ERR(smbcli_unix_symlink(ctx->cli->tree, src, dest))) {
2220 d_printf("%s symlinking files (%s -> %s)\n",
2221 smbcli_errstr(ctx->cli->tree), src, dest);
2222 return 1;
2225 return 0;
2228 /****************************************************************************
2229 UNIX chmod.
2230 ****************************************************************************/
2232 static int cmd_chmod(struct smbclient_context *ctx, const char **args)
2234 char *src;
2235 mode_t mode;
2237 if (!(ctx->cli->transport->negotiate.capabilities & CAP_UNIX)) {
2238 d_printf("Server doesn't support UNIX CIFS calls.\n");
2239 return 1;
2242 if (!args[1] || !args[2]) {
2243 d_printf("chmod mode file\n");
2244 return 1;
2247 src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[2]);
2249 mode = (mode_t)strtol(args[1], NULL, 8);
2251 if (NT_STATUS_IS_ERR(smbcli_unix_chmod(ctx->cli->tree, src, mode))) {
2252 d_printf("%s chmod file %s 0%o\n",
2253 smbcli_errstr(ctx->cli->tree), src, (mode_t)mode);
2254 return 1;
2257 return 0;
2260 /****************************************************************************
2261 UNIX chown.
2262 ****************************************************************************/
2264 static int cmd_chown(struct smbclient_context *ctx, const char **args)
2266 char *src;
2267 uid_t uid;
2268 gid_t gid;
2270 if (!(ctx->cli->transport->negotiate.capabilities & CAP_UNIX)) {
2271 d_printf("Server doesn't support UNIX CIFS calls.\n");
2272 return 1;
2275 if (!args[1] || !args[2] || !args[3]) {
2276 d_printf("chown uid gid file\n");
2277 return 1;
2280 uid = (uid_t)atoi(args[1]);
2281 gid = (gid_t)atoi(args[2]);
2282 src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[3]);
2284 if (NT_STATUS_IS_ERR(smbcli_unix_chown(ctx->cli->tree, src, uid, gid))) {
2285 d_printf("%s chown file %s uid=%d, gid=%d\n",
2286 smbcli_errstr(ctx->cli->tree), src, (int)uid, (int)gid);
2287 return 1;
2290 return 0;
2293 /****************************************************************************
2294 rename some files
2295 ****************************************************************************/
2296 static int cmd_rename(struct smbclient_context *ctx, const char **args)
2298 char *src,*dest;
2300 if (!args[1] || !args[2]) {
2301 d_printf("rename <src> <dest>\n");
2302 return 1;
2305 src = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[1]);
2306 dest = talloc_asprintf(ctx, "%s%s", ctx->remote_cur_dir, args[2]);
2308 if (NT_STATUS_IS_ERR(smbcli_rename(ctx->cli->tree, src, dest))) {
2309 d_printf("%s renaming files\n",smbcli_errstr(ctx->cli->tree));
2310 return 1;
2313 return 0;
2317 /****************************************************************************
2318 toggle the prompt flag
2319 ****************************************************************************/
2320 static int cmd_prompt(struct smbclient_context *ctx, const char **args)
2322 ctx->prompt = !ctx->prompt;
2323 DEBUG(2,("prompting is now %s\n",ctx->prompt?"on":"off"));
2325 return 1;
2329 /****************************************************************************
2330 set the newer than time
2331 ****************************************************************************/
2332 static int cmd_newer(struct smbclient_context *ctx, const char **args)
2334 struct stat sbuf;
2336 if (args[1] && (stat(args[1],&sbuf) == 0)) {
2337 ctx->newer_than = sbuf.st_mtime;
2338 DEBUG(1,("Getting files newer than %s",
2339 asctime(localtime(&ctx->newer_than))));
2340 } else {
2341 ctx->newer_than = 0;
2344 if (args[1] && ctx->newer_than == 0) {
2345 d_printf("Error setting newer-than time\n");
2346 return 1;
2349 return 0;
2352 /****************************************************************************
2353 set the archive level
2354 ****************************************************************************/
2355 static int cmd_archive(struct smbclient_context *ctx, const char **args)
2357 if (args[1]) {
2358 ctx->archive_level = atoi(args[1]);
2359 } else
2360 d_printf("Archive level is %d\n",ctx->archive_level);
2362 return 0;
2365 /****************************************************************************
2366 toggle the lowercaseflag
2367 ****************************************************************************/
2368 static int cmd_lowercase(struct smbclient_context *ctx, const char **args)
2370 ctx->lowercase = !ctx->lowercase;
2371 DEBUG(2,("filename lowercasing is now %s\n",ctx->lowercase?"on":"off"));
2373 return 0;
2379 /****************************************************************************
2380 toggle the recurse flag
2381 ****************************************************************************/
2382 static int cmd_recurse(struct smbclient_context *ctx, const char **args)
2384 ctx->recurse = !ctx->recurse;
2385 DEBUG(2,("directory recursion is now %s\n",ctx->recurse?"on":"off"));
2387 return 0;
2390 /****************************************************************************
2391 toggle the translate flag
2392 ****************************************************************************/
2393 static int cmd_translate(struct smbclient_context *ctx, const char **args)
2395 ctx->translation = !ctx->translation;
2396 DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
2397 ctx->translation?"on":"off"));
2399 return 0;
2403 /****************************************************************************
2404 do a printmode command
2405 ****************************************************************************/
2406 static int cmd_printmode(struct smbclient_context *ctx, const char **args)
2408 if (args[1]) {
2409 if (strequal(args[1],"text")) {
2410 ctx->printmode = 0;
2411 } else {
2412 if (strequal(args[1],"graphics"))
2413 ctx->printmode = 1;
2414 else
2415 ctx->printmode = atoi(args[1]);
2419 switch(ctx->printmode)
2421 case 0:
2422 DEBUG(2,("the printmode is now text\n"));
2423 break;
2424 case 1:
2425 DEBUG(2,("the printmode is now graphics\n"));
2426 break;
2427 default:
2428 DEBUG(2,("the printmode is now %d\n", ctx->printmode));
2429 break;
2432 return 0;
2435 /****************************************************************************
2436 do the lcd command
2437 ****************************************************************************/
2438 static int cmd_lcd(struct smbclient_context *ctx, const char **args)
2440 char d[PATH_MAX];
2442 if (args[1])
2443 chdir(args[1]);
2444 DEBUG(2,("the local directory is now %s\n",getcwd(d, PATH_MAX)));
2446 return 0;
2449 /****************************************************************************
2450 history
2451 ****************************************************************************/
2452 static int cmd_history(struct smbclient_context *ctx, const char **args)
2454 #if defined(HAVE_LIBREADLINE) && defined(HAVE_HISTORY_LIST)
2455 HIST_ENTRY **hlist;
2456 int i;
2458 hlist = history_list();
2460 for (i = 0; hlist && hlist[i]; i++) {
2461 DEBUG(0, ("%d: %s\n", i, hlist[i]->line));
2463 #else
2464 DEBUG(0,("no history without readline support\n"));
2465 #endif
2467 return 0;
2470 /****************************************************************************
2471 get a file restarting at end of local file
2472 ****************************************************************************/
2473 static int cmd_reget(struct smbclient_context *ctx, const char **args)
2475 char *local_name;
2476 char *remote_name;
2478 if (!args[1]) {
2479 d_printf("reget <filename>\n");
2480 return 1;
2482 remote_name = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, args[1]);
2483 dos_clean_name(remote_name);
2485 if (args[2])
2486 local_name = talloc_strdup(ctx, args[2]);
2487 else
2488 local_name = talloc_strdup(ctx, args[1]);
2490 return do_get(ctx, remote_name, local_name, true);
2493 /****************************************************************************
2494 put a file restarting at end of local file
2495 ****************************************************************************/
2496 static int cmd_reput(struct smbclient_context *ctx, const char **args)
2498 char *local_name;
2499 char *remote_name;
2501 if (!args[1]) {
2502 d_printf("reput <filename>\n");
2503 return 1;
2505 local_name = talloc_asprintf(ctx, "%s\\%s", ctx->remote_cur_dir, args[1]);
2507 if (!file_exist(local_name)) {
2508 d_printf("%s does not exist\n", local_name);
2509 return 1;
2512 if (args[2])
2513 remote_name = talloc_strdup(ctx, args[2]);
2514 else
2515 remote_name = talloc_strdup(ctx, args[1]);
2517 dos_clean_name(remote_name);
2519 return do_put(ctx, remote_name, local_name, true);
2524 return a string representing a share type
2526 static const char *share_type_str(uint32_t type)
2528 switch (type & 0xF) {
2529 case STYPE_DISKTREE:
2530 return "Disk";
2531 case STYPE_PRINTQ:
2532 return "Printer";
2533 case STYPE_DEVICE:
2534 return "Device";
2535 case STYPE_IPC:
2536 return "IPC";
2537 default:
2538 return "Unknown";
2544 display a list of shares from a level 1 share enum
2546 static void display_share_result(struct srvsvc_NetShareCtr1 *ctr1)
2548 int i;
2550 for (i=0;i<ctr1->count;i++) {
2551 struct srvsvc_NetShareInfo1 *info = ctr1->array+i;
2553 printf("\t%-15s %-10.10s %s\n",
2554 info->name,
2555 share_type_str(info->type),
2556 info->comment);
2562 /****************************************************************************
2563 try and browse available shares on a host
2564 ****************************************************************************/
2565 static bool browse_host(struct loadparm_context *lp_ctx,
2566 struct tevent_context *ev_ctx,
2567 const char *query_host)
2569 struct dcerpc_pipe *p;
2570 char *binding;
2571 NTSTATUS status;
2572 struct srvsvc_NetShareEnumAll r;
2573 struct srvsvc_NetShareInfoCtr info_ctr;
2574 uint32_t resume_handle = 0;
2575 TALLOC_CTX *mem_ctx = talloc_init("browse_host");
2576 struct srvsvc_NetShareCtr1 ctr1;
2577 uint32_t totalentries = 0;
2579 binding = talloc_asprintf(mem_ctx, "ncacn_np:%s", query_host);
2581 status = dcerpc_pipe_connect(mem_ctx, &p, binding,
2582 &ndr_table_srvsvc,
2583 cmdline_credentials, ev_ctx,
2584 lp_ctx);
2585 if (!NT_STATUS_IS_OK(status)) {
2586 d_printf("Failed to connect to %s - %s\n",
2587 binding, nt_errstr(status));
2588 talloc_free(mem_ctx);
2589 return false;
2592 info_ctr.level = 1;
2593 info_ctr.ctr.ctr1 = &ctr1;
2595 r.in.server_unc = talloc_asprintf(mem_ctx,"\\\\%s",dcerpc_server_name(p));
2596 r.in.info_ctr = &info_ctr;
2597 r.in.max_buffer = ~0;
2598 r.in.resume_handle = &resume_handle;
2599 r.out.resume_handle = &resume_handle;
2600 r.out.totalentries = &totalentries;
2601 r.out.info_ctr = &info_ctr;
2603 d_printf("\n\tSharename Type Comment\n");
2604 d_printf("\t--------- ---- -------\n");
2606 do {
2607 ZERO_STRUCT(ctr1);
2608 status = dcerpc_srvsvc_NetShareEnumAll(p, mem_ctx, &r);
2610 if (NT_STATUS_IS_OK(status) &&
2611 (W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA) ||
2612 W_ERROR_IS_OK(r.out.result)) &&
2613 r.out.info_ctr->ctr.ctr1) {
2614 display_share_result(r.out.info_ctr->ctr.ctr1);
2615 resume_handle += r.out.info_ctr->ctr.ctr1->count;
2617 } while (NT_STATUS_IS_OK(status) && W_ERROR_EQUAL(r.out.result, WERR_MORE_DATA));
2619 talloc_free(mem_ctx);
2621 if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(r.out.result)) {
2622 d_printf("Failed NetShareEnumAll %s - %s/%s\n",
2623 binding, nt_errstr(status), win_errstr(r.out.result));
2624 return false;
2627 return false;
2630 /****************************************************************************
2631 try and browse available connections on a host
2632 ****************************************************************************/
2633 static bool list_servers(const char *wk_grp)
2635 d_printf("REWRITE: list servers not implemented\n");
2636 return false;
2639 /* Some constants for completing filename arguments */
2641 #define COMPL_NONE 0 /* No completions */
2642 #define COMPL_REMOTE 1 /* Complete remote filename */
2643 #define COMPL_LOCAL 2 /* Complete local filename */
2645 static int cmd_help(struct smbclient_context *ctx, const char **args);
2647 /* This defines the commands supported by this client.
2648 * NOTE: The "!" must be the last one in the list because it's fn pointer
2649 * field is NULL, and NULL in that field is used in process_tok()
2650 * (below) to indicate the end of the list. crh
2652 static struct
2654 const char *name;
2655 int (*fn)(struct smbclient_context *ctx, const char **args);
2656 const char *description;
2657 char compl_args[2]; /* Completion argument info */
2658 } commands[] =
2660 {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2661 {"addprivileges",cmd_addprivileges,"<sid|name> <privilege...> add privileges for a user",{COMPL_NONE,COMPL_NONE}},
2662 {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
2663 {"acl",cmd_acl,"<file> show file ACL",{COMPL_NONE,COMPL_NONE}},
2664 {"allinfo",cmd_allinfo,"<file> show all possible info about a file",{COMPL_NONE,COMPL_NONE}},
2665 {"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}},
2666 {"cancel",cmd_rewrite,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
2667 {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
2668 {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
2669 {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
2670 {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2671 {"delprivileges",cmd_delprivileges,"<sid|name> <privilege...> remove privileges for a user",{COMPL_NONE,COMPL_NONE}},
2672 {"deltree",cmd_deltree,"<dir> delete a whole directory tree",{COMPL_REMOTE,COMPL_NONE}},
2673 {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2674 {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2675 {"eainfo",cmd_eainfo,"<file> show EA contents for a file",{COMPL_NONE,COMPL_NONE}},
2676 {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2677 {"fsinfo",cmd_fsinfo,"query file system info",{COMPL_NONE,COMPL_NONE}},
2678 {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
2679 {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
2680 {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
2681 {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
2682 {"link",cmd_link,"<src> <dest> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
2683 {"lookup",cmd_lookup,"<sid|name> show SID for name or name for SID",{COMPL_NONE,COMPL_NONE}},
2684 {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
2685 {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
2686 {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
2687 {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2688 {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
2689 {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
2690 {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
2691 {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
2692 {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
2693 {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
2694 {"privileges",cmd_privileges,"<user> show privileges for a user",{COMPL_NONE,COMPL_NONE}},
2695 {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
2696 {"printmode",cmd_printmode,"<graphics or text> set the print mode",{COMPL_NONE,COMPL_NONE}},
2697 {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
2698 {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
2699 {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
2700 {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2701 {"queue",cmd_rewrite,"show the print queue",{COMPL_NONE,COMPL_NONE}},
2702 {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
2703 {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2704 {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
2705 {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
2706 {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
2707 {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
2708 {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
2709 {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
2710 {"symlink",cmd_symlink,"<src> <dest> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
2711 {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
2713 /* Yes, this must be here, see crh's comment above. */
2714 {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
2715 {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
2719 /*******************************************************************
2720 lookup a command string in the list of commands, including
2721 abbreviations
2722 ******************************************************************/
2723 static int process_tok(const char *tok)
2725 int i = 0, matches = 0;
2726 int cmd=0;
2727 int tok_len = strlen(tok);
2729 while (commands[i].fn != NULL) {
2730 if (strequal(commands[i].name,tok)) {
2731 matches = 1;
2732 cmd = i;
2733 break;
2734 } else if (strncasecmp(commands[i].name, tok, tok_len) == 0) {
2735 matches++;
2736 cmd = i;
2738 i++;
2741 if (matches == 0)
2742 return(-1);
2743 else if (matches == 1)
2744 return(cmd);
2745 else
2746 return(-2);
2749 /****************************************************************************
2750 help
2751 ****************************************************************************/
2752 static int cmd_help(struct smbclient_context *ctx, const char **args)
2754 int i=0,j;
2756 if (args[1]) {
2757 if ((i = process_tok(args[1])) >= 0)
2758 d_printf("HELP %s:\n\t%s\n\n",commands[i].name,commands[i].description);
2759 } else {
2760 while (commands[i].description) {
2761 for (j=0; commands[i].description && (j<5); j++) {
2762 d_printf("%-15s",commands[i].name);
2763 i++;
2765 d_printf("\n");
2768 return 0;
2771 static int process_line(struct smbclient_context *ctx, const char *cline);
2772 /****************************************************************************
2773 process a -c command string
2774 ****************************************************************************/
2775 static int process_command_string(struct smbclient_context *ctx, const char *cmd)
2777 char **lines;
2778 int i, rc = 0;
2780 lines = str_list_make(NULL, cmd, ";");
2781 for (i = 0; lines[i]; i++) {
2782 rc |= process_line(ctx, lines[i]);
2784 talloc_free(lines);
2786 return rc;
2789 #define MAX_COMPLETIONS 100
2791 typedef struct {
2792 char *dirmask;
2793 char **matches;
2794 int count, samelen;
2795 const char *text;
2796 int len;
2797 } completion_remote_t;
2799 static void completion_remote_filter(struct clilist_file_info *f, const char *mask, void *state)
2801 completion_remote_t *info = (completion_remote_t *)state;
2803 if ((info->count < MAX_COMPLETIONS - 1) && (strncmp(info->text, f->name, info->len) == 0) && (!ISDOT(f->name)) && (!ISDOTDOT(f->name))) {
2804 if ((info->dirmask[0] == 0) && !(f->attrib & FILE_ATTRIBUTE_DIRECTORY))
2805 info->matches[info->count] = strdup(f->name);
2806 else {
2807 char *tmp;
2809 if (info->dirmask[0] != 0)
2810 tmp = talloc_asprintf(NULL, "%s/%s", info->dirmask, f->name);
2811 else
2812 tmp = talloc_strdup(NULL, f->name);
2814 if (f->attrib & FILE_ATTRIBUTE_DIRECTORY)
2815 tmp = talloc_append_string(NULL, tmp, "/");
2816 info->matches[info->count] = tmp;
2818 if (info->matches[info->count] == NULL)
2819 return;
2820 if (f->attrib & FILE_ATTRIBUTE_DIRECTORY)
2821 smb_readline_ca_char(0);
2823 if (info->count == 1)
2824 info->samelen = strlen(info->matches[info->count]);
2825 else
2826 while (strncmp(info->matches[info->count], info->matches[info->count-1], info->samelen) != 0)
2827 info->samelen--;
2828 info->count++;
2832 static char **remote_completion(const char *text, int len)
2834 char *dirmask;
2835 int i;
2836 completion_remote_t info;
2838 info.samelen = len;
2839 info.text = text;
2840 info.len = len;
2842 if (len >= PATH_MAX)
2843 return(NULL);
2845 info.matches = malloc_array_p(char *, MAX_COMPLETIONS);
2846 if (!info.matches) return NULL;
2847 info.matches[0] = NULL;
2849 for (i = len-1; i >= 0; i--)
2850 if ((text[i] == '/') || (text[i] == '\\'))
2851 break;
2852 info.text = text+i+1;
2853 info.samelen = info.len = len-i-1;
2855 if (i > 0) {
2856 info.dirmask = talloc_strndup(NULL, text, i+1);
2857 info.dirmask[i+1] = 0;
2858 asprintf(&dirmask, "%s%*s*", rl_ctx->remote_cur_dir, i-1, text);
2859 } else
2860 asprintf(&dirmask, "%s*", rl_ctx->remote_cur_dir);
2862 if (smbcli_list(rl_ctx->cli->tree, dirmask,
2863 FILE_ATTRIBUTE_DIRECTORY | FILE_ATTRIBUTE_SYSTEM | FILE_ATTRIBUTE_HIDDEN,
2864 completion_remote_filter, &info) < 0)
2865 goto cleanup;
2867 if (info.count == 2)
2868 info.matches[0] = strdup(info.matches[1]);
2869 else {
2870 info.matches[0] = malloc_array_p(char, info.samelen+1);
2871 if (!info.matches[0])
2872 goto cleanup;
2873 strncpy(info.matches[0], info.matches[1], info.samelen);
2874 info.matches[0][info.samelen] = 0;
2876 info.matches[info.count] = NULL;
2877 return info.matches;
2879 cleanup:
2880 for (i = 0; i < info.count; i++)
2881 free(info.matches[i]);
2882 free(info.matches);
2883 return NULL;
2886 static char **completion_fn(const char *text, int start, int end)
2888 smb_readline_ca_char(' ');
2890 if (start) {
2891 const char *buf, *sp;
2892 int i;
2893 char compl_type;
2895 buf = smb_readline_get_line_buffer();
2896 if (buf == NULL)
2897 return NULL;
2899 sp = strchr(buf, ' ');
2900 if (sp == NULL)
2901 return NULL;
2903 for (i = 0; commands[i].name; i++)
2904 if ((strncmp(commands[i].name, text, sp - buf) == 0) && (commands[i].name[sp - buf] == 0))
2905 break;
2906 if (commands[i].name == NULL)
2907 return NULL;
2909 while (*sp == ' ')
2910 sp++;
2912 if (sp == (buf + start))
2913 compl_type = commands[i].compl_args[0];
2914 else
2915 compl_type = commands[i].compl_args[1];
2917 if (compl_type == COMPL_REMOTE)
2918 return remote_completion(text, end - start);
2919 else /* fall back to local filename completion */
2920 return NULL;
2921 } else {
2922 char **matches;
2923 int i, len, samelen = 0, count=1;
2925 matches = malloc_array_p(char *, MAX_COMPLETIONS);
2926 if (!matches) return NULL;
2927 matches[0] = NULL;
2929 len = strlen(text);
2930 for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
2931 if (strncmp(text, commands[i].name, len) == 0) {
2932 matches[count] = strdup(commands[i].name);
2933 if (!matches[count])
2934 goto cleanup;
2935 if (count == 1)
2936 samelen = strlen(matches[count]);
2937 else
2938 while (strncmp(matches[count], matches[count-1], samelen) != 0)
2939 samelen--;
2940 count++;
2944 switch (count) {
2945 case 0: /* should never happen */
2946 case 1:
2947 goto cleanup;
2948 case 2:
2949 matches[0] = strdup(matches[1]);
2950 break;
2951 default:
2952 matches[0] = malloc_array_p(char, samelen+1);
2953 if (!matches[0])
2954 goto cleanup;
2955 strncpy(matches[0], matches[1], samelen);
2956 matches[0][samelen] = 0;
2958 matches[count] = NULL;
2959 return matches;
2961 cleanup:
2962 count--;
2963 while (count >= 0) {
2964 free(matches[count]);
2965 count--;
2967 free(matches);
2968 return NULL;
2972 /****************************************************************************
2973 make sure we swallow keepalives during idle time
2974 ****************************************************************************/
2975 static void readline_callback(void)
2977 static time_t last_t;
2978 time_t t;
2980 t = time(NULL);
2982 if (t - last_t < 5) return;
2984 last_t = t;
2986 smbcli_transport_process(rl_ctx->cli->transport);
2988 if (rl_ctx->cli->tree) {
2989 smbcli_chkpath(rl_ctx->cli->tree, "\\");
2993 static int process_line(struct smbclient_context *ctx, const char *cline)
2995 const char **args;
2996 int i;
2998 /* and get the first part of the command */
2999 args = (const char **) str_list_make_shell(ctx, cline, NULL);
3000 if (!args || !args[0])
3001 return 0;
3003 if ((i = process_tok(args[0])) >= 0) {
3004 i = commands[i].fn(ctx, args);
3005 } else if (i == -2) {
3006 d_printf("%s: command abbreviation ambiguous\n",args[0]);
3007 } else {
3008 d_printf("%s: command not found\n",args[0]);
3011 talloc_free(args);
3013 return i;
3016 /****************************************************************************
3017 process commands on stdin
3018 ****************************************************************************/
3019 static int process_stdin(struct smbclient_context *ctx)
3021 int rc = 0;
3022 while (1) {
3023 /* display a prompt */
3024 char *the_prompt = talloc_asprintf(ctx, "smb: %s> ", ctx->remote_cur_dir);
3025 char *cline = smb_readline(the_prompt, readline_callback, completion_fn);
3026 talloc_free(the_prompt);
3028 if (!cline) break;
3030 /* special case - first char is ! */
3031 if (*cline == '!') {
3032 system(cline + 1);
3033 free(cline);
3034 continue;
3037 rc |= process_command_string(ctx, cline);
3038 free(cline);
3042 return rc;
3046 /*****************************************************
3047 return a connection to a server
3048 *******************************************************/
3049 static bool do_connect(struct smbclient_context *ctx,
3050 struct tevent_context *ev_ctx,
3051 struct resolve_context *resolve_ctx,
3052 const char *specified_server, const char **ports,
3053 const char *specified_share,
3054 const char *socket_options,
3055 struct cli_credentials *cred,
3056 struct smbcli_options *options,
3057 struct smbcli_session_options *session_options,
3058 struct smb_iconv_convenience *iconv_convenience,
3059 struct gensec_settings *gensec_settings)
3061 NTSTATUS status;
3062 char *server, *share;
3064 rl_ctx = ctx; /* Ugly hack */
3066 if (strncmp(specified_share, "\\\\", 2) == 0 ||
3067 strncmp(specified_share, "//", 2) == 0) {
3068 smbcli_parse_unc(specified_share, ctx, &server, &share);
3069 } else {
3070 share = talloc_strdup(ctx, specified_share);
3071 server = talloc_strdup(ctx, specified_server);
3074 ctx->remote_cur_dir = talloc_strdup(ctx, "\\");
3076 status = smbcli_full_connection(ctx, &ctx->cli, server, ports,
3077 share, NULL,
3078 socket_options,
3079 cred, resolve_ctx,
3080 ev_ctx, options, session_options,
3081 iconv_convenience,
3082 gensec_settings);
3083 if (!NT_STATUS_IS_OK(status)) {
3084 d_printf("Connection to \\\\%s\\%s failed - %s\n",
3085 server, share, nt_errstr(status));
3086 talloc_free(ctx);
3087 return NULL;
3090 return ctx;
3093 /****************************************************************************
3094 handle a -L query
3095 ****************************************************************************/
3096 static int do_host_query(struct loadparm_context *lp_ctx,
3097 struct tevent_context *ev_ctx,
3098 const char *query_host,
3099 const char *workgroup)
3101 browse_host(lp_ctx, ev_ctx, query_host);
3102 list_servers(workgroup);
3103 return(0);
3107 /****************************************************************************
3108 handle a message operation
3109 ****************************************************************************/
3110 static int do_message_op(const char *netbios_name, const char *desthost,
3111 const char **destports, const char *destip,
3112 int name_type,
3113 struct tevent_context *ev_ctx,
3114 struct resolve_context *resolve_ctx,
3115 struct smbcli_options *options,
3116 struct smb_iconv_convenience *iconv_convenience,
3117 const char *socket_options)
3119 struct nbt_name called, calling;
3120 const char *server_name;
3121 struct smbcli_state *cli;
3123 make_nbt_name_client(&calling, netbios_name);
3125 nbt_choose_called_name(NULL, &called, desthost, name_type);
3127 server_name = destip ? destip : desthost;
3129 if (!(cli = smbcli_state_init(NULL)) ||
3130 !smbcli_socket_connect(cli, server_name, destports,
3131 ev_ctx, resolve_ctx, options,
3132 iconv_convenience,
3133 socket_options)) {
3134 d_printf("Connection to %s failed\n", server_name);
3135 return 1;
3138 if (!smbcli_transport_establish(cli, &calling, &called)) {
3139 d_printf("session request failed\n");
3140 talloc_free(cli);
3141 return 1;
3144 send_message(cli, desthost);
3145 talloc_free(cli);
3147 return 0;
3151 /****************************************************************************
3152 main program
3153 ****************************************************************************/
3154 int main(int argc,char *argv[])
3156 char *base_directory = NULL;
3157 const char *dest_ip = NULL;
3158 int opt;
3159 const char *query_host = NULL;
3160 bool message = false;
3161 char *desthost = NULL;
3162 poptContext pc;
3163 const char *service = NULL;
3164 int port = 0;
3165 char *p;
3166 int rc = 0;
3167 int name_type = 0x20;
3168 TALLOC_CTX *mem_ctx;
3169 struct tevent_context *ev_ctx;
3170 struct smbclient_context *ctx;
3171 const char *cmdstr = NULL;
3172 struct smbcli_options smb_options;
3173 struct smbcli_session_options smb_session_options;
3175 struct poptOption long_options[] = {
3176 POPT_AUTOHELP
3178 { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
3179 { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
3180 { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
3181 { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
3182 { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
3183 { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
3184 { "send-buffer", 'b', POPT_ARG_INT, NULL, 'b', "Changes the transmit/send buffer", "BYTES" },
3185 { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
3186 POPT_COMMON_SAMBA
3187 POPT_COMMON_CONNECTION
3188 POPT_COMMON_CREDENTIALS
3189 POPT_COMMON_VERSION
3190 { NULL }
3193 mem_ctx = talloc_init("client.c/main");
3194 if (!mem_ctx) {
3195 d_printf("\nclient.c: Not enough memory\n");
3196 exit(1);
3199 ctx = talloc_zero(mem_ctx, struct smbclient_context);
3200 ctx->io_bufsize = 64512;
3202 pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
3203 poptSetOtherOptionHelp(pc, "[OPTIONS] service <password>");
3205 while ((opt = poptGetNextOpt(pc)) != -1) {
3206 switch (opt) {
3207 case 'M':
3208 /* Messages are sent to NetBIOS name type 0x3
3209 * (Messenger Service). Make sure we default
3210 * to port 139 instead of port 445. srl,crh
3212 name_type = 0x03;
3213 desthost = strdup(poptGetOptArg(pc));
3214 if( 0 == port ) port = 139;
3215 message = true;
3216 break;
3217 case 'I':
3218 dest_ip = poptGetOptArg(pc);
3219 break;
3220 case 'L':
3221 query_host = strdup(poptGetOptArg(pc));
3222 break;
3223 case 'D':
3224 base_directory = strdup(poptGetOptArg(pc));
3225 break;
3226 case 'b':
3227 ctx->io_bufsize = MAX(1, atoi(poptGetOptArg(pc)));
3228 break;
3232 gensec_init(cmdline_lp_ctx);
3234 if(poptPeekArg(pc)) {
3235 char *s = strdup(poptGetArg(pc));
3237 /* Convert any '/' characters in the service name to '\' characters */
3238 string_replace(s, '/','\\');
3240 service = s;
3242 if (count_chars(s,'\\') < 3) {
3243 d_printf("\n%s: Not enough '\\' characters in service\n",s);
3244 poptPrintUsage(pc, stderr, 0);
3245 exit(1);
3249 if (poptPeekArg(pc)) {
3250 cli_credentials_set_password(cmdline_credentials, poptGetArg(pc), CRED_SPECIFIED);
3253 /*init_names(); */
3255 if (!query_host && !service && !message) {
3256 poptPrintUsage(pc, stderr, 0);
3257 exit(1);
3260 poptFreeContext(pc);
3262 lp_smbcli_options(cmdline_lp_ctx, &smb_options);
3263 lp_smbcli_session_options(cmdline_lp_ctx, &smb_session_options);
3265 ev_ctx = s4_event_context_init(talloc_autofree_context());
3267 DEBUG( 3, ( "Client started (version %s).\n", SAMBA_VERSION_STRING ) );
3269 if (query_host && (p=strchr_m(query_host,'#'))) {
3270 *p = 0;
3271 p++;
3272 sscanf(p, "%x", &name_type);
3275 if (query_host) {
3276 rc = do_host_query(cmdline_lp_ctx, ev_ctx, query_host,
3277 lp_workgroup(cmdline_lp_ctx));
3278 return rc;
3281 if (message) {
3282 rc = do_message_op(lp_netbios_name(cmdline_lp_ctx), desthost,
3283 lp_smb_ports(cmdline_lp_ctx), dest_ip,
3284 name_type, ev_ctx,
3285 lp_resolve_context(cmdline_lp_ctx),
3286 &smb_options, lp_iconv_convenience(cmdline_lp_ctx),
3287 lp_socket_options(cmdline_lp_ctx));
3288 return rc;
3291 if (!do_connect(ctx, ev_ctx, lp_resolve_context(cmdline_lp_ctx),
3292 desthost, lp_smb_ports(cmdline_lp_ctx), service,
3293 lp_socket_options(cmdline_lp_ctx),
3294 cmdline_credentials, &smb_options, &smb_session_options,
3295 lp_iconv_convenience(cmdline_lp_ctx),
3296 lp_gensec_settings(ctx, cmdline_lp_ctx)))
3297 return 1;
3299 if (base_directory) {
3300 do_cd(ctx, base_directory);
3301 free(base_directory);
3304 if (cmdstr) {
3305 rc = process_command_string(ctx, cmdstr);
3306 } else {
3307 rc = process_stdin(ctx);
3310 free(desthost);
3311 talloc_free(mem_ctx);
3313 return rc;