1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | SMB client
|
---|
4 | Copyright (C) Andrew Tridgell 1994-1998
|
---|
5 | Copyright (C) Simo Sorce 2001-2002
|
---|
6 | Copyright (C) Jelmer Vernooij 2003
|
---|
7 | Copyright (C) Gerald (Jerry) Carter 2004
|
---|
8 | Copyright (C) Jeremy Allison 1994-2007
|
---|
9 |
|
---|
10 | This program is free software; you can redistribute it and/or modify
|
---|
11 | it under the terms of the GNU General Public License as published by
|
---|
12 | the Free Software Foundation; either version 3 of the License, or
|
---|
13 | (at your option) any later version.
|
---|
14 |
|
---|
15 | This program is distributed in the hope that it will be useful,
|
---|
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
18 | GNU General Public License for more details.
|
---|
19 |
|
---|
20 | You should have received a copy of the GNU General Public License
|
---|
21 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
22 | */
|
---|
23 |
|
---|
24 | #include "includes.h"
|
---|
25 | #include "client/client_proto.h"
|
---|
26 | #include "include/rpc_client.h"
|
---|
27 | #ifndef REGISTER
|
---|
28 | #define REGISTER 0
|
---|
29 | #endif
|
---|
30 |
|
---|
31 | extern int do_smb_browse(void); /* mDNS browsing */
|
---|
32 |
|
---|
33 | extern bool AllowDebugChange;
|
---|
34 | extern bool override_logfile;
|
---|
35 | extern char tar_type;
|
---|
36 |
|
---|
37 | static int port = 0;
|
---|
38 | static char *service;
|
---|
39 | static char *desthost;
|
---|
40 | static char *calling_name;
|
---|
41 | static bool grepable = false;
|
---|
42 | static char *cmdstr = NULL;
|
---|
43 | const char *cmd_ptr = NULL;
|
---|
44 |
|
---|
45 | static int io_bufsize = 524288;
|
---|
46 |
|
---|
47 | static int name_type = 0x20;
|
---|
48 | extern int max_protocol;
|
---|
49 |
|
---|
50 | static int process_tok(char *tok);
|
---|
51 | static int cmd_help(void);
|
---|
52 |
|
---|
53 | #define CREATE_ACCESS_READ READ_CONTROL_ACCESS
|
---|
54 |
|
---|
55 | /* 30 second timeout on most commands */
|
---|
56 | #define CLIENT_TIMEOUT (30*1000)
|
---|
57 | #define SHORT_TIMEOUT (5*1000)
|
---|
58 |
|
---|
59 | /* value for unused fid field in trans2 secondary request */
|
---|
60 | #define FID_UNUSED (0xFFFF)
|
---|
61 |
|
---|
62 | time_t newer_than = 0;
|
---|
63 | static int archive_level = 0;
|
---|
64 |
|
---|
65 | static bool translation = false;
|
---|
66 | static bool have_ip;
|
---|
67 |
|
---|
68 | /* clitar bits insert */
|
---|
69 | extern int blocksize;
|
---|
70 | extern bool tar_inc;
|
---|
71 | extern bool tar_reset;
|
---|
72 | /* clitar bits end */
|
---|
73 |
|
---|
74 | static bool prompt = true;
|
---|
75 |
|
---|
76 | static bool recurse = false;
|
---|
77 | static bool showacls = false;
|
---|
78 | bool lowercase = false;
|
---|
79 |
|
---|
80 | static struct sockaddr_storage dest_ss;
|
---|
81 |
|
---|
82 | #define SEPARATORS " \t\n\r"
|
---|
83 |
|
---|
84 | static bool abort_mget = true;
|
---|
85 |
|
---|
86 | /* timing globals */
|
---|
87 | SMB_BIG_UINT get_total_size = 0;
|
---|
88 | unsigned int get_total_time_ms = 0;
|
---|
89 | static SMB_BIG_UINT put_total_size = 0;
|
---|
90 | static unsigned int put_total_time_ms = 0;
|
---|
91 |
|
---|
92 | /* totals globals */
|
---|
93 | static double dir_total;
|
---|
94 |
|
---|
95 | /* encrypted state. */
|
---|
96 | static bool smb_encrypt;
|
---|
97 |
|
---|
98 | /* root cli_state connection */
|
---|
99 |
|
---|
100 | struct cli_state *cli;
|
---|
101 |
|
---|
102 | static char CLI_DIRSEP_CHAR = '\\';
|
---|
103 | static char CLI_DIRSEP_STR[] = { '\\', '\0' };
|
---|
104 |
|
---|
105 | /* Accessor functions for directory paths. */
|
---|
106 | static char *fileselection;
|
---|
107 | static const char *client_get_fileselection(void)
|
---|
108 | {
|
---|
109 | if (fileselection) {
|
---|
110 | return fileselection;
|
---|
111 | }
|
---|
112 | return "";
|
---|
113 | }
|
---|
114 |
|
---|
115 | static const char *client_set_fileselection(const char *new_fs)
|
---|
116 | {
|
---|
117 | SAFE_FREE(fileselection);
|
---|
118 | if (new_fs) {
|
---|
119 | fileselection = SMB_STRDUP(new_fs);
|
---|
120 | }
|
---|
121 | return client_get_fileselection();
|
---|
122 | }
|
---|
123 |
|
---|
124 | static char *cwd;
|
---|
125 | static const char *client_get_cwd(void)
|
---|
126 | {
|
---|
127 | if (cwd) {
|
---|
128 | return cwd;
|
---|
129 | }
|
---|
130 | return CLI_DIRSEP_STR;
|
---|
131 | }
|
---|
132 |
|
---|
133 | static const char *client_set_cwd(const char *new_cwd)
|
---|
134 | {
|
---|
135 | SAFE_FREE(cwd);
|
---|
136 | if (new_cwd) {
|
---|
137 | cwd = SMB_STRDUP(new_cwd);
|
---|
138 | }
|
---|
139 | return client_get_cwd();
|
---|
140 | }
|
---|
141 |
|
---|
142 | static char *cur_dir;
|
---|
143 | const char *client_get_cur_dir(void)
|
---|
144 | {
|
---|
145 | if (cur_dir) {
|
---|
146 | return cur_dir;
|
---|
147 | }
|
---|
148 | return CLI_DIRSEP_STR;
|
---|
149 | }
|
---|
150 |
|
---|
151 | const char *client_set_cur_dir(const char *newdir)
|
---|
152 | {
|
---|
153 | SAFE_FREE(cur_dir);
|
---|
154 | if (newdir) {
|
---|
155 | cur_dir = SMB_STRDUP(newdir);
|
---|
156 | }
|
---|
157 | return client_get_cur_dir();
|
---|
158 | }
|
---|
159 |
|
---|
160 | /****************************************************************************
|
---|
161 | Write to a local file with CR/LF->LF translation if appropriate. Return the
|
---|
162 | number taken from the buffer. This may not equal the number written.
|
---|
163 | ****************************************************************************/
|
---|
164 |
|
---|
165 | static int writefile(int f, char *b, int n)
|
---|
166 | {
|
---|
167 | int i;
|
---|
168 |
|
---|
169 | if (!translation) {
|
---|
170 | return write(f,b,n);
|
---|
171 | }
|
---|
172 |
|
---|
173 | i = 0;
|
---|
174 | while (i < n) {
|
---|
175 | if (*b == '\r' && (i<(n-1)) && *(b+1) == '\n') {
|
---|
176 | b++;i++;
|
---|
177 | }
|
---|
178 | if (write(f, b, 1) != 1) {
|
---|
179 | break;
|
---|
180 | }
|
---|
181 | b++;
|
---|
182 | i++;
|
---|
183 | }
|
---|
184 |
|
---|
185 | return(i);
|
---|
186 | }
|
---|
187 |
|
---|
188 | /****************************************************************************
|
---|
189 | Read from a file with LF->CR/LF translation if appropriate. Return the
|
---|
190 | number read. read approx n bytes.
|
---|
191 | ****************************************************************************/
|
---|
192 |
|
---|
193 | static int readfile(char *b, int n, XFILE *f)
|
---|
194 | {
|
---|
195 | int i;
|
---|
196 | int c;
|
---|
197 |
|
---|
198 | if (!translation)
|
---|
199 | return x_fread(b,1,n,f);
|
---|
200 |
|
---|
201 | i = 0;
|
---|
202 | while (i < (n - 1) && (i < BUFFER_SIZE)) {
|
---|
203 | if ((c = x_getc(f)) == EOF) {
|
---|
204 | break;
|
---|
205 | }
|
---|
206 |
|
---|
207 | if (c == '\n') { /* change all LFs to CR/LF */
|
---|
208 | b[i++] = '\r';
|
---|
209 | }
|
---|
210 |
|
---|
211 | b[i++] = c;
|
---|
212 | }
|
---|
213 |
|
---|
214 | return(i);
|
---|
215 | }
|
---|
216 |
|
---|
217 | /****************************************************************************
|
---|
218 | Send a message.
|
---|
219 | ****************************************************************************/
|
---|
220 |
|
---|
221 | static void send_message(void)
|
---|
222 | {
|
---|
223 | int total_len = 0;
|
---|
224 | int grp_id;
|
---|
225 |
|
---|
226 | if (!cli_message_start(cli, desthost,
|
---|
227 | get_cmdline_auth_info_username(), &grp_id)) {
|
---|
228 | d_printf("message start: %s\n", cli_errstr(cli));
|
---|
229 | return;
|
---|
230 | }
|
---|
231 |
|
---|
232 |
|
---|
233 | d_printf("Connected. Type your message, ending it with a Control-D\n");
|
---|
234 |
|
---|
235 | while (!feof(stdin) && total_len < 1600) {
|
---|
236 | int maxlen = MIN(1600 - total_len,127);
|
---|
237 | char msg[1024];
|
---|
238 | int l=0;
|
---|
239 | int c;
|
---|
240 |
|
---|
241 | ZERO_ARRAY(msg);
|
---|
242 |
|
---|
243 | for (l=0;l<maxlen && (c=fgetc(stdin))!=EOF;l++) {
|
---|
244 | if (c == '\n')
|
---|
245 | msg[l++] = '\r';
|
---|
246 | msg[l] = c;
|
---|
247 | }
|
---|
248 |
|
---|
249 | if ((total_len > 0) && (strlen(msg) == 0)) {
|
---|
250 | break;
|
---|
251 | }
|
---|
252 |
|
---|
253 | if (!cli_message_text(cli, msg, l, grp_id)) {
|
---|
254 | d_printf("SMBsendtxt failed (%s)\n",cli_errstr(cli));
|
---|
255 | return;
|
---|
256 | }
|
---|
257 |
|
---|
258 | total_len += l;
|
---|
259 | }
|
---|
260 |
|
---|
261 | if (total_len >= 1600)
|
---|
262 | d_printf("the message was truncated to 1600 bytes\n");
|
---|
263 | else
|
---|
264 | d_printf("sent %d bytes\n",total_len);
|
---|
265 |
|
---|
266 | if (!cli_message_end(cli, grp_id)) {
|
---|
267 | d_printf("SMBsendend failed (%s)\n",cli_errstr(cli));
|
---|
268 | return;
|
---|
269 | }
|
---|
270 | }
|
---|
271 |
|
---|
272 | /****************************************************************************
|
---|
273 | Check the space on a device.
|
---|
274 | ****************************************************************************/
|
---|
275 |
|
---|
276 | static int do_dskattr(void)
|
---|
277 | {
|
---|
278 | int total, bsize, avail;
|
---|
279 | struct cli_state *targetcli = NULL;
|
---|
280 | char *targetpath = NULL;
|
---|
281 | TALLOC_CTX *ctx = talloc_tos();
|
---|
282 |
|
---|
283 | if ( !cli_resolve_path(ctx, "", cli, client_get_cur_dir(), &targetcli, &targetpath)) {
|
---|
284 | d_printf("Error in dskattr: %s\n", cli_errstr(cli));
|
---|
285 | return 1;
|
---|
286 | }
|
---|
287 |
|
---|
288 | if (!cli_dskattr(targetcli, &bsize, &total, &avail)) {
|
---|
289 | d_printf("Error in dskattr: %s\n",cli_errstr(targetcli));
|
---|
290 | return 1;
|
---|
291 | }
|
---|
292 |
|
---|
293 | d_printf("\n\t\t%d blocks of size %d. %d blocks available\n",
|
---|
294 | total, bsize, avail);
|
---|
295 |
|
---|
296 | return 0;
|
---|
297 | }
|
---|
298 |
|
---|
299 | /****************************************************************************
|
---|
300 | Show cd/pwd.
|
---|
301 | ****************************************************************************/
|
---|
302 |
|
---|
303 | static int cmd_pwd(void)
|
---|
304 | {
|
---|
305 | d_printf("Current directory is %s",service);
|
---|
306 | d_printf("%s\n",client_get_cur_dir());
|
---|
307 | return 0;
|
---|
308 | }
|
---|
309 |
|
---|
310 | /****************************************************************************
|
---|
311 | Ensure name has correct directory separators.
|
---|
312 | ****************************************************************************/
|
---|
313 |
|
---|
314 | static void normalize_name(char *newdir)
|
---|
315 | {
|
---|
316 | if (!(cli->posix_capabilities & CIFS_UNIX_POSIX_PATHNAMES_CAP)) {
|
---|
317 | string_replace(newdir,'/','\\');
|
---|
318 | }
|
---|
319 | }
|
---|
320 |
|
---|
321 | /****************************************************************************
|
---|
322 | Change directory - inner section.
|
---|
323 | ****************************************************************************/
|
---|
324 |
|
---|
325 | static int do_cd(const char *new_dir)
|
---|
326 | {
|
---|
327 | char *newdir = NULL;
|
---|
328 | char *saved_dir = NULL;
|
---|
329 | char *new_cd = NULL;
|
---|
330 | char *targetpath = NULL;
|
---|
331 | struct cli_state *targetcli = NULL;
|
---|
332 | SMB_STRUCT_STAT sbuf;
|
---|
333 | uint32 attributes;
|
---|
334 | int ret = 1;
|
---|
335 | TALLOC_CTX *ctx = talloc_stackframe();
|
---|
336 |
|
---|
337 | newdir = talloc_strdup(ctx, new_dir);
|
---|
338 | if (!newdir) {
|
---|
339 | TALLOC_FREE(ctx);
|
---|
340 | return 1;
|
---|
341 | }
|
---|
342 |
|
---|
343 | normalize_name(newdir);
|
---|
344 |
|
---|
345 | /* Save the current directory in case the new directory is invalid */
|
---|
346 |
|
---|
347 | saved_dir = talloc_strdup(ctx, client_get_cur_dir());
|
---|
348 | if (!saved_dir) {
|
---|
349 | TALLOC_FREE(ctx);
|
---|
350 | return 1;
|
---|
351 | }
|
---|
352 |
|
---|
353 | if (*newdir == CLI_DIRSEP_CHAR) {
|
---|
354 | client_set_cur_dir(newdir);
|
---|
355 | new_cd = newdir;
|
---|
356 | } else {
|
---|
357 | new_cd = talloc_asprintf(ctx, "%s%s",
|
---|
358 | client_get_cur_dir(),
|
---|
359 | newdir);
|
---|
360 | if (!new_cd) {
|
---|
361 | goto out;
|
---|
362 | }
|
---|
363 | }
|
---|
364 |
|
---|
365 | /* Ensure cur_dir ends in a DIRSEP */
|
---|
366 | if ((new_cd[0] != '\0') && (*(new_cd+strlen(new_cd)-1) != CLI_DIRSEP_CHAR)) {
|
---|
367 | new_cd = talloc_asprintf_append(new_cd, "%s", CLI_DIRSEP_STR);
|
---|
368 | if (!new_cd) {
|
---|
369 | goto out;
|
---|
370 | }
|
---|
371 | }
|
---|
372 | client_set_cur_dir(new_cd);
|
---|
373 |
|
---|
374 | new_cd = clean_name(ctx, new_cd);
|
---|
375 | client_set_cur_dir(new_cd);
|
---|
376 |
|
---|
377 | if ( !cli_resolve_path(ctx, "", cli, new_cd, &targetcli, &targetpath)) {
|
---|
378 | d_printf("cd %s: %s\n", new_cd, cli_errstr(cli));
|
---|
379 | client_set_cur_dir(saved_dir);
|
---|
380 | goto out;
|
---|
381 | }
|
---|
382 |
|
---|
383 | if (strequal(targetpath,CLI_DIRSEP_STR )) {
|
---|
384 | TALLOC_FREE(ctx);
|
---|
385 | return 0;
|
---|
386 | }
|
---|
387 |
|
---|
388 | /* Use a trans2_qpathinfo to test directories for modern servers.
|
---|
389 | Except Win9x doesn't support the qpathinfo_basic() call..... */
|
---|
390 |
|
---|
391 | if (targetcli->protocol > PROTOCOL_LANMAN2 && !targetcli->win95) {
|
---|
392 | if (!cli_qpathinfo_basic( targetcli, targetpath, &sbuf, &attributes ) ) {
|
---|
393 | d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
|
---|
394 | client_set_cur_dir(saved_dir);
|
---|
395 | goto out;
|
---|
396 | }
|
---|
397 |
|
---|
398 | if (!(attributes & FILE_ATTRIBUTE_DIRECTORY)) {
|
---|
399 | d_printf("cd %s: not a directory\n", new_cd);
|
---|
400 | client_set_cur_dir(saved_dir);
|
---|
401 | goto out;
|
---|
402 | }
|
---|
403 | } else {
|
---|
404 | targetpath = talloc_asprintf(ctx,
|
---|
405 | "%s%s",
|
---|
406 | targetpath,
|
---|
407 | CLI_DIRSEP_STR );
|
---|
408 | if (!targetpath) {
|
---|
409 | client_set_cur_dir(saved_dir);
|
---|
410 | goto out;
|
---|
411 | }
|
---|
412 | targetpath = clean_name(ctx, targetpath);
|
---|
413 | if (!targetpath) {
|
---|
414 | client_set_cur_dir(saved_dir);
|
---|
415 | goto out;
|
---|
416 | }
|
---|
417 |
|
---|
418 | if (!cli_chkpath(targetcli, targetpath)) {
|
---|
419 | d_printf("cd %s: %s\n", new_cd, cli_errstr(targetcli));
|
---|
420 | client_set_cur_dir(saved_dir);
|
---|
421 | goto out;
|
---|
422 | }
|
---|
423 | }
|
---|
424 |
|
---|
425 | ret = 0;
|
---|
426 |
|
---|
427 | out:
|
---|
428 |
|
---|
429 | TALLOC_FREE(ctx);
|
---|
430 | return ret;
|
---|
431 | }
|
---|
432 |
|
---|
433 | /****************************************************************************
|
---|
434 | Change directory.
|
---|
435 | ****************************************************************************/
|
---|
436 |
|
---|
437 | static int cmd_cd(void)
|
---|
438 | {
|
---|
439 | char *buf = NULL;
|
---|
440 | int rc = 0;
|
---|
441 |
|
---|
442 | if (next_token_talloc(talloc_tos(), &cmd_ptr, &buf,NULL)) {
|
---|
443 | rc = do_cd(buf);
|
---|
444 | } else {
|
---|
445 | d_printf("Current directory is %s\n",client_get_cur_dir());
|
---|
446 | }
|
---|
447 |
|
---|
448 | return rc;
|
---|
449 | }
|
---|
450 |
|
---|
451 | /****************************************************************************
|
---|
452 | Change directory.
|
---|
453 | ****************************************************************************/
|
---|
454 |
|
---|
455 | static int cmd_cd_oneup(void)
|
---|
456 | {
|
---|
457 | return do_cd("..");
|
---|
458 | }
|
---|
459 |
|
---|
460 | /*******************************************************************
|
---|
461 | Decide if a file should be operated on.
|
---|
462 | ********************************************************************/
|
---|
463 |
|
---|
464 | static bool do_this_one(file_info *finfo)
|
---|
465 | {
|
---|
466 | if (!finfo->name) {
|
---|
467 | return false;
|
---|
468 | }
|
---|
469 |
|
---|
470 | if (finfo->mode & aDIR) {
|
---|
471 | return true;
|
---|
472 | }
|
---|
473 |
|
---|
474 | if (*client_get_fileselection() &&
|
---|
475 | !mask_match(finfo->name,client_get_fileselection(),false)) {
|
---|
476 | DEBUG(3,("mask_match %s failed\n", finfo->name));
|
---|
477 | return false;
|
---|
478 | }
|
---|
479 |
|
---|
480 | if (newer_than && finfo->mtime_ts.tv_sec < newer_than) {
|
---|
481 | DEBUG(3,("newer_than %s failed\n", finfo->name));
|
---|
482 | return false;
|
---|
483 | }
|
---|
484 |
|
---|
485 | if ((archive_level==1 || archive_level==2) && !(finfo->mode & aARCH)) {
|
---|
486 | DEBUG(3,("archive %s failed\n", finfo->name));
|
---|
487 | return false;
|
---|
488 | }
|
---|
489 |
|
---|
490 | return true;
|
---|
491 | }
|
---|
492 |
|
---|
493 | /****************************************************************************
|
---|
494 | Display info about a file.
|
---|
495 | ****************************************************************************/
|
---|
496 |
|
---|
497 | static void display_finfo(file_info *finfo, const char *dir)
|
---|
498 | {
|
---|
499 | time_t t;
|
---|
500 | TALLOC_CTX *ctx = talloc_tos();
|
---|
501 |
|
---|
502 | if (!do_this_one(finfo)) {
|
---|
503 | return;
|
---|
504 | }
|
---|
505 |
|
---|
506 | t = finfo->mtime_ts.tv_sec; /* the time is assumed to be passed as GMT */
|
---|
507 | if (!showacls) {
|
---|
508 | d_printf(" %-30s%7.7s %8.0f %s",
|
---|
509 | finfo->name,
|
---|
510 | attrib_string(finfo->mode),
|
---|
511 | (double)finfo->size,
|
---|
512 | time_to_asc(t));
|
---|
513 | dir_total += finfo->size;
|
---|
514 | } else {
|
---|
515 | char *afname = NULL;
|
---|
516 | int fnum;
|
---|
517 |
|
---|
518 | /* skip if this is . or .. */
|
---|
519 | if ( strequal(finfo->name,"..") || strequal(finfo->name,".") )
|
---|
520 | return;
|
---|
521 | /* create absolute filename for cli_nt_create() FIXME */
|
---|
522 | afname = talloc_asprintf(ctx,
|
---|
523 | "%s%s%s",
|
---|
524 | dir,
|
---|
525 | CLI_DIRSEP_STR,
|
---|
526 | finfo->name);
|
---|
527 | if (!afname) {
|
---|
528 | return;
|
---|
529 | }
|
---|
530 | /* print file meta date header */
|
---|
531 | d_printf( "FILENAME:%s\n", finfo->name);
|
---|
532 | d_printf( "MODE:%s\n", attrib_string(finfo->mode));
|
---|
533 | d_printf( "SIZE:%.0f\n", (double)finfo->size);
|
---|
534 | d_printf( "MTIME:%s", time_to_asc(t));
|
---|
535 | fnum = cli_nt_create(finfo->cli, afname, CREATE_ACCESS_READ);
|
---|
536 | if (fnum == -1) {
|
---|
537 | DEBUG( 0, ("display_finfo() Failed to open %s: %s\n",
|
---|
538 | afname,
|
---|
539 | cli_errstr( finfo->cli)));
|
---|
540 | } else {
|
---|
541 | SEC_DESC *sd = NULL;
|
---|
542 | sd = cli_query_secdesc(finfo->cli, fnum, ctx);
|
---|
543 | if (!sd) {
|
---|
544 | DEBUG( 0, ("display_finfo() failed to "
|
---|
545 | "get security descriptor: %s",
|
---|
546 | cli_errstr( finfo->cli)));
|
---|
547 | } else {
|
---|
548 | display_sec_desc(sd);
|
---|
549 | }
|
---|
550 | TALLOC_FREE(sd);
|
---|
551 | }
|
---|
552 | TALLOC_FREE(afname);
|
---|
553 | }
|
---|
554 | }
|
---|
555 |
|
---|
556 | /****************************************************************************
|
---|
557 | Accumulate size of a file.
|
---|
558 | ****************************************************************************/
|
---|
559 |
|
---|
560 | static void do_du(file_info *finfo, const char *dir)
|
---|
561 | {
|
---|
562 | if (do_this_one(finfo)) {
|
---|
563 | dir_total += finfo->size;
|
---|
564 | }
|
---|
565 | }
|
---|
566 |
|
---|
567 | static bool do_list_recurse;
|
---|
568 | static bool do_list_dirs;
|
---|
569 | static char *do_list_queue = 0;
|
---|
570 | static long do_list_queue_size = 0;
|
---|
571 | static long do_list_queue_start = 0;
|
---|
572 | static long do_list_queue_end = 0;
|
---|
573 | static void (*do_list_fn)(file_info *, const char *dir);
|
---|
574 |
|
---|
575 | /****************************************************************************
|
---|
576 | Functions for do_list_queue.
|
---|
577 | ****************************************************************************/
|
---|
578 |
|
---|
579 | /*
|
---|
580 | * The do_list_queue is a NUL-separated list of strings stored in a
|
---|
581 | * char*. Since this is a FIFO, we keep track of the beginning and
|
---|
582 | * ending locations of the data in the queue. When we overflow, we
|
---|
583 | * double the size of the char*. When the start of the data passes
|
---|
584 | * the midpoint, we move everything back. This is logically more
|
---|
585 | * complex than a linked list, but easier from a memory management
|
---|
586 | * angle. In any memory error condition, do_list_queue is reset.
|
---|
587 | * Functions check to ensure that do_list_queue is non-NULL before
|
---|
588 | * accessing it.
|
---|
589 | */
|
---|
590 |
|
---|
591 | static void reset_do_list_queue(void)
|
---|
592 | {
|
---|
593 | SAFE_FREE(do_list_queue);
|
---|
594 | do_list_queue_size = 0;
|
---|
595 | do_list_queue_start = 0;
|
---|
596 | do_list_queue_end = 0;
|
---|
597 | }
|
---|
598 |
|
---|
599 | static void init_do_list_queue(void)
|
---|
600 | {
|
---|
601 | reset_do_list_queue();
|
---|
602 | do_list_queue_size = 1024;
|
---|
603 | do_list_queue = (char *)SMB_MALLOC(do_list_queue_size);
|
---|
604 | if (do_list_queue == 0) {
|
---|
605 | d_printf("malloc fail for size %d\n",
|
---|
606 | (int)do_list_queue_size);
|
---|
607 | reset_do_list_queue();
|
---|
608 | } else {
|
---|
609 | memset(do_list_queue, 0, do_list_queue_size);
|
---|
610 | }
|
---|
611 | }
|
---|
612 |
|
---|
613 | static void adjust_do_list_queue(void)
|
---|
614 | {
|
---|
615 | /*
|
---|
616 | * If the starting point of the queue is more than half way through,
|
---|
617 | * move everything toward the beginning.
|
---|
618 | */
|
---|
619 |
|
---|
620 | if (do_list_queue == NULL) {
|
---|
621 | DEBUG(4,("do_list_queue is empty\n"));
|
---|
622 | do_list_queue_start = do_list_queue_end = 0;
|
---|
623 | return;
|
---|
624 | }
|
---|
625 |
|
---|
626 | if (do_list_queue_start == do_list_queue_end) {
|
---|
627 | DEBUG(4,("do_list_queue is empty\n"));
|
---|
628 | do_list_queue_start = do_list_queue_end = 0;
|
---|
629 | *do_list_queue = '\0';
|
---|
630 | } else if (do_list_queue_start > (do_list_queue_size / 2)) {
|
---|
631 | DEBUG(4,("sliding do_list_queue backward\n"));
|
---|
632 | memmove(do_list_queue,
|
---|
633 | do_list_queue + do_list_queue_start,
|
---|
634 | do_list_queue_end - do_list_queue_start);
|
---|
635 | do_list_queue_end -= do_list_queue_start;
|
---|
636 | do_list_queue_start = 0;
|
---|
637 | }
|
---|
638 | }
|
---|
639 |
|
---|
640 | static void add_to_do_list_queue(const char *entry)
|
---|
641 | {
|
---|
642 | long new_end = do_list_queue_end + ((long)strlen(entry)) + 1;
|
---|
643 | while (new_end > do_list_queue_size) {
|
---|
644 | do_list_queue_size *= 2;
|
---|
645 | DEBUG(4,("enlarging do_list_queue to %d\n",
|
---|
646 | (int)do_list_queue_size));
|
---|
647 | do_list_queue = (char *)SMB_REALLOC(do_list_queue, do_list_queue_size);
|
---|
648 | if (! do_list_queue) {
|
---|
649 | d_printf("failure enlarging do_list_queue to %d bytes\n",
|
---|
650 | (int)do_list_queue_size);
|
---|
651 | reset_do_list_queue();
|
---|
652 | } else {
|
---|
653 | memset(do_list_queue + do_list_queue_size / 2,
|
---|
654 | 0, do_list_queue_size / 2);
|
---|
655 | }
|
---|
656 | }
|
---|
657 | if (do_list_queue) {
|
---|
658 | safe_strcpy_base(do_list_queue + do_list_queue_end,
|
---|
659 | entry, do_list_queue, do_list_queue_size);
|
---|
660 | do_list_queue_end = new_end;
|
---|
661 | DEBUG(4,("added %s to do_list_queue (start=%d, end=%d)\n",
|
---|
662 | entry, (int)do_list_queue_start, (int)do_list_queue_end));
|
---|
663 | }
|
---|
664 | }
|
---|
665 |
|
---|
666 | static char *do_list_queue_head(void)
|
---|
667 | {
|
---|
668 | return do_list_queue + do_list_queue_start;
|
---|
669 | }
|
---|
670 |
|
---|
671 | static void remove_do_list_queue_head(void)
|
---|
672 | {
|
---|
673 | if (do_list_queue_end > do_list_queue_start) {
|
---|
674 | do_list_queue_start += strlen(do_list_queue_head()) + 1;
|
---|
675 | adjust_do_list_queue();
|
---|
676 | DEBUG(4,("removed head of do_list_queue (start=%d, end=%d)\n",
|
---|
677 | (int)do_list_queue_start, (int)do_list_queue_end));
|
---|
678 | }
|
---|
679 | }
|
---|
680 |
|
---|
681 | static int do_list_queue_empty(void)
|
---|
682 | {
|
---|
683 | return (! (do_list_queue && *do_list_queue));
|
---|
684 | }
|
---|
685 |
|
---|
686 | /****************************************************************************
|
---|
687 | A helper for do_list.
|
---|
688 | ****************************************************************************/
|
---|
689 |
|
---|
690 | static void do_list_helper(const char *mntpoint, file_info *f, const char *mask, void *state)
|
---|
691 | {
|
---|
692 | TALLOC_CTX *ctx = talloc_tos();
|
---|
693 | char *dir = NULL;
|
---|
694 | char *dir_end = NULL;
|
---|
695 |
|
---|
696 | /* Work out the directory. */
|
---|
697 | dir = talloc_strdup(ctx, mask);
|
---|
698 | if (!dir) {
|
---|
699 | return;
|
---|
700 | }
|
---|
701 | if ((dir_end = strrchr(dir, CLI_DIRSEP_CHAR)) != NULL) {
|
---|
702 | *dir_end = '\0';
|
---|
703 | }
|
---|
704 |
|
---|
705 | if (f->mode & aDIR) {
|
---|
706 | if (do_list_dirs && do_this_one(f)) {
|
---|
707 | do_list_fn(f, dir);
|
---|
708 | }
|
---|
709 | if (do_list_recurse &&
|
---|
710 | f->name &&
|
---|
711 | !strequal(f->name,".") &&
|
---|
712 | !strequal(f->name,"..")) {
|
---|
713 | char *mask2 = NULL;
|
---|
714 | char *p = NULL;
|
---|
715 |
|
---|
716 | if (!f->name[0]) {
|
---|
717 | d_printf("Empty dir name returned. Possible server misconfiguration.\n");
|
---|
718 | TALLOC_FREE(dir);
|
---|
719 | return;
|
---|
720 | }
|
---|
721 |
|
---|
722 | mask2 = talloc_asprintf(ctx,
|
---|
723 | "%s%s",
|
---|
724 | mntpoint,
|
---|
725 | mask);
|
---|
726 | if (!mask2) {
|
---|
727 | TALLOC_FREE(dir);
|
---|
728 | return;
|
---|
729 | }
|
---|
730 | p = strrchr_m(mask2,CLI_DIRSEP_CHAR);
|
---|
731 | if (p) {
|
---|
732 | p[1] = 0;
|
---|
733 | } else {
|
---|
734 | mask2[0] = '\0';
|
---|
735 | }
|
---|
736 | mask2 = talloc_asprintf_append(mask2,
|
---|
737 | "%s%s*",
|
---|
738 | f->name,
|
---|
739 | CLI_DIRSEP_STR);
|
---|
740 | if (!mask2) {
|
---|
741 | TALLOC_FREE(dir);
|
---|
742 | return;
|
---|
743 | }
|
---|
744 | add_to_do_list_queue(mask2);
|
---|
745 | TALLOC_FREE(mask2);
|
---|
746 | }
|
---|
747 | TALLOC_FREE(dir);
|
---|
748 | return;
|
---|
749 | }
|
---|
750 |
|
---|
751 | if (do_this_one(f)) {
|
---|
752 | do_list_fn(f,dir);
|
---|
753 | }
|
---|
754 | TALLOC_FREE(dir);
|
---|
755 | }
|
---|
756 |
|
---|
757 | /****************************************************************************
|
---|
758 | A wrapper around cli_list that adds recursion.
|
---|
759 | ****************************************************************************/
|
---|
760 |
|
---|
761 | void do_list(const char *mask,
|
---|
762 | uint16 attribute,
|
---|
763 | void (*fn)(file_info *, const char *dir),
|
---|
764 | bool rec,
|
---|
765 | bool dirs)
|
---|
766 | {
|
---|
767 | static int in_do_list = 0;
|
---|
768 | TALLOC_CTX *ctx = talloc_tos();
|
---|
769 | struct cli_state *targetcli = NULL;
|
---|
770 | char *targetpath = NULL;
|
---|
771 |
|
---|
772 | if (in_do_list && rec) {
|
---|
773 | fprintf(stderr, "INTERNAL ERROR: do_list called recursively when the recursive flag is true\n");
|
---|
774 | exit(1);
|
---|
775 | }
|
---|
776 |
|
---|
777 | in_do_list = 1;
|
---|
778 |
|
---|
779 | do_list_recurse = rec;
|
---|
780 | do_list_dirs = dirs;
|
---|
781 | do_list_fn = fn;
|
---|
782 |
|
---|
783 | if (rec) {
|
---|
784 | init_do_list_queue();
|
---|
785 | add_to_do_list_queue(mask);
|
---|
786 |
|
---|
787 | while (!do_list_queue_empty()) {
|
---|
788 | /*
|
---|
789 | * Need to copy head so that it doesn't become
|
---|
790 | * invalid inside the call to cli_list. This
|
---|
791 | * would happen if the list were expanded
|
---|
792 | * during the call.
|
---|
793 | * Fix from E. Jay Berkenbilt (ejb@ql.org)
|
---|
794 | */
|
---|
795 | char *head = talloc_strdup(ctx, do_list_queue_head());
|
---|
796 |
|
---|
797 | if (!head) {
|
---|
798 | return;
|
---|
799 | }
|
---|
800 |
|
---|
801 | /* check for dfs */
|
---|
802 |
|
---|
803 | if ( !cli_resolve_path(ctx, "", cli, head, &targetcli, &targetpath ) ) {
|
---|
804 | d_printf("do_list: [%s] %s\n", head, cli_errstr(cli));
|
---|
805 | remove_do_list_queue_head();
|
---|
806 | continue;
|
---|
807 | }
|
---|
808 |
|
---|
809 | cli_list(targetcli, targetpath, attribute, do_list_helper, NULL);
|
---|
810 | remove_do_list_queue_head();
|
---|
811 | if ((! do_list_queue_empty()) && (fn == display_finfo)) {
|
---|
812 | char *next_file = do_list_queue_head();
|
---|
813 | char *save_ch = 0;
|
---|
814 | if ((strlen(next_file) >= 2) &&
|
---|
815 | (next_file[strlen(next_file) - 1] == '*') &&
|
---|
816 | (next_file[strlen(next_file) - 2] == CLI_DIRSEP_CHAR)) {
|
---|
817 | save_ch = next_file +
|
---|
818 | strlen(next_file) - 2;
|
---|
819 | *save_ch = '\0';
|
---|
820 | if (showacls) {
|
---|
821 | /* cwd is only used if showacls is on */
|
---|
822 | client_set_cwd(next_file);
|
---|
823 | }
|
---|
824 | }
|
---|
825 | if (!showacls) /* don't disturbe the showacls output */
|
---|
826 | d_printf("\n%s\n",next_file);
|
---|
827 | if (save_ch) {
|
---|
828 | *save_ch = CLI_DIRSEP_CHAR;
|
---|
829 | }
|
---|
830 | }
|
---|
831 | TALLOC_FREE(head);
|
---|
832 | TALLOC_FREE(targetpath);
|
---|
833 | }
|
---|
834 | } else {
|
---|
835 | /* check for dfs */
|
---|
836 | if (cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetpath)) {
|
---|
837 | if (cli_list(targetcli, targetpath, attribute, do_list_helper, NULL) == -1) {
|
---|
838 | d_printf("%s listing %s\n",
|
---|
839 | cli_errstr(targetcli), targetpath);
|
---|
840 | }
|
---|
841 | TALLOC_FREE(targetpath);
|
---|
842 | } else {
|
---|
843 | d_printf("do_list: [%s] %s\n", mask, cli_errstr(cli));
|
---|
844 | }
|
---|
845 | }
|
---|
846 |
|
---|
847 | in_do_list = 0;
|
---|
848 | reset_do_list_queue();
|
---|
849 | }
|
---|
850 |
|
---|
851 | /****************************************************************************
|
---|
852 | Get a directory listing.
|
---|
853 | ****************************************************************************/
|
---|
854 |
|
---|
855 | static int cmd_dir(void)
|
---|
856 | {
|
---|
857 | TALLOC_CTX *ctx = talloc_tos();
|
---|
858 | uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
|
---|
859 | char *mask = NULL;
|
---|
860 | char *buf = NULL;
|
---|
861 | int rc = 1;
|
---|
862 |
|
---|
863 | dir_total = 0;
|
---|
864 | mask = talloc_strdup(ctx, client_get_cur_dir());
|
---|
865 | if (!mask) {
|
---|
866 | return 1;
|
---|
867 | }
|
---|
868 |
|
---|
869 | if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
870 | normalize_name(buf);
|
---|
871 | if (*buf == CLI_DIRSEP_CHAR) {
|
---|
872 | mask = talloc_strdup(ctx, buf);
|
---|
873 | } else {
|
---|
874 | mask = talloc_asprintf_append(mask, "%s", buf);
|
---|
875 | }
|
---|
876 | } else {
|
---|
877 | mask = talloc_asprintf_append(mask, "*");
|
---|
878 | }
|
---|
879 | if (!mask) {
|
---|
880 | return 1;
|
---|
881 | }
|
---|
882 |
|
---|
883 | if (showacls) {
|
---|
884 | /* cwd is only used if showacls is on */
|
---|
885 | client_set_cwd(client_get_cur_dir());
|
---|
886 | }
|
---|
887 |
|
---|
888 | do_list(mask, attribute, display_finfo, recurse, true);
|
---|
889 |
|
---|
890 | rc = do_dskattr();
|
---|
891 |
|
---|
892 | DEBUG(3, ("Total bytes listed: %.0f\n", dir_total));
|
---|
893 |
|
---|
894 | return rc;
|
---|
895 | }
|
---|
896 |
|
---|
897 | /****************************************************************************
|
---|
898 | Get a directory listing.
|
---|
899 | ****************************************************************************/
|
---|
900 |
|
---|
901 | static int cmd_du(void)
|
---|
902 | {
|
---|
903 | TALLOC_CTX *ctx = talloc_tos();
|
---|
904 | uint16 attribute = aDIR | aSYSTEM | aHIDDEN;
|
---|
905 | char *mask = NULL;
|
---|
906 | char *buf = NULL;
|
---|
907 | int rc = 1;
|
---|
908 |
|
---|
909 | dir_total = 0;
|
---|
910 | mask = talloc_strdup(ctx, client_get_cur_dir());
|
---|
911 | if (!mask) {
|
---|
912 | return 1;
|
---|
913 | }
|
---|
914 | if ((mask[0] != '\0') && (mask[strlen(mask)-1]!=CLI_DIRSEP_CHAR)) {
|
---|
915 | mask = talloc_asprintf_append(mask, "%s", CLI_DIRSEP_STR);
|
---|
916 | if (!mask) {
|
---|
917 | return 1;
|
---|
918 | }
|
---|
919 | }
|
---|
920 |
|
---|
921 | if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
922 | normalize_name(buf);
|
---|
923 | if (*buf == CLI_DIRSEP_CHAR) {
|
---|
924 | mask = talloc_strdup(ctx, buf);
|
---|
925 | } else {
|
---|
926 | mask = talloc_asprintf_append(mask, "%s", buf);
|
---|
927 | }
|
---|
928 | } else {
|
---|
929 | mask = talloc_strdup(ctx, "*");
|
---|
930 | }
|
---|
931 |
|
---|
932 | do_list(mask, attribute, do_du, recurse, true);
|
---|
933 |
|
---|
934 | rc = do_dskattr();
|
---|
935 |
|
---|
936 | d_printf("Total number of bytes: %.0f\n", dir_total);
|
---|
937 |
|
---|
938 | return rc;
|
---|
939 | }
|
---|
940 |
|
---|
941 | static int cmd_echo(void)
|
---|
942 | {
|
---|
943 | TALLOC_CTX *ctx = talloc_tos();
|
---|
944 | char *num;
|
---|
945 | char *data;
|
---|
946 |
|
---|
947 | if (!next_token_talloc(ctx, &cmd_ptr, &num, NULL)
|
---|
948 | || !next_token_talloc(ctx, &cmd_ptr, &data, NULL)) {
|
---|
949 | d_printf("echo <num> <data>\n");
|
---|
950 | return 1;
|
---|
951 | }
|
---|
952 |
|
---|
953 | if (!cli_echo(cli, atoi(num), (uint8 *)data, strlen(data))) {
|
---|
954 | d_printf("echo failed: %s\n",
|
---|
955 | nt_errstr(cli_get_nt_error(cli)));
|
---|
956 | return 1;
|
---|
957 | }
|
---|
958 |
|
---|
959 | return 0;
|
---|
960 | }
|
---|
961 |
|
---|
962 | /****************************************************************************
|
---|
963 | Get a file from rname to lname
|
---|
964 | ****************************************************************************/
|
---|
965 |
|
---|
966 | static NTSTATUS writefile_sink(char *buf, size_t n, void *priv)
|
---|
967 | {
|
---|
968 | int *pfd = (int *)priv;
|
---|
969 | if (writefile(*pfd, buf, n) == -1) {
|
---|
970 | return map_nt_error_from_unix(errno);
|
---|
971 | }
|
---|
972 | return NT_STATUS_OK;
|
---|
973 | }
|
---|
974 |
|
---|
975 | static int do_get(const char *rname, const char *lname_in, bool reget)
|
---|
976 | {
|
---|
977 | TALLOC_CTX *ctx = talloc_tos();
|
---|
978 | int handle = 0, fnum;
|
---|
979 | bool newhandle = false;
|
---|
980 | struct timeval tp_start;
|
---|
981 | uint16 attr;
|
---|
982 | SMB_OFF_T size;
|
---|
983 | off_t start = 0;
|
---|
984 | SMB_OFF_T nread = 0;
|
---|
985 | int rc = 0;
|
---|
986 | struct cli_state *targetcli = NULL;
|
---|
987 | char *targetname = NULL;
|
---|
988 | char *lname = NULL;
|
---|
989 | NTSTATUS status;
|
---|
990 |
|
---|
991 | lname = talloc_strdup(ctx, lname_in);
|
---|
992 | if (!lname) {
|
---|
993 | return 1;
|
---|
994 | }
|
---|
995 |
|
---|
996 | if (lowercase) {
|
---|
997 | strlower_m(lname);
|
---|
998 | }
|
---|
999 |
|
---|
1000 | if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname ) ) {
|
---|
1001 | d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
|
---|
1002 | return 1;
|
---|
1003 | }
|
---|
1004 |
|
---|
1005 | GetTimeOfDay(&tp_start);
|
---|
1006 |
|
---|
1007 | fnum = cli_open(targetcli, targetname, O_RDONLY, DENY_NONE);
|
---|
1008 |
|
---|
1009 | if (fnum == -1) {
|
---|
1010 | d_printf("%s opening remote file %s\n",cli_errstr(cli),rname);
|
---|
1011 | return 1;
|
---|
1012 | }
|
---|
1013 |
|
---|
1014 | if(!strcmp(lname,"-")) {
|
---|
1015 | handle = fileno(stdout);
|
---|
1016 | } else {
|
---|
1017 | if (reget) {
|
---|
1018 | handle = sys_open(lname, O_WRONLY|O_CREAT, 0644);
|
---|
1019 | if (handle >= 0) {
|
---|
1020 | start = sys_lseek(handle, 0, SEEK_END);
|
---|
1021 | if (start == -1) {
|
---|
1022 | d_printf("Error seeking local file\n");
|
---|
1023 | return 1;
|
---|
1024 | }
|
---|
1025 | }
|
---|
1026 | } else {
|
---|
1027 | handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644);
|
---|
1028 | }
|
---|
1029 | newhandle = true;
|
---|
1030 | }
|
---|
1031 | if (handle < 0) {
|
---|
1032 | d_printf("Error opening local file %s\n",lname);
|
---|
1033 | return 1;
|
---|
1034 | }
|
---|
1035 |
|
---|
1036 |
|
---|
1037 | if (!cli_qfileinfo(targetcli, fnum,
|
---|
1038 | &attr, &size, NULL, NULL, NULL, NULL, NULL) &&
|
---|
1039 | !cli_getattrE(targetcli, fnum,
|
---|
1040 | &attr, &size, NULL, NULL, NULL)) {
|
---|
1041 | d_printf("getattrib: %s\n",cli_errstr(targetcli));
|
---|
1042 | return 1;
|
---|
1043 | }
|
---|
1044 |
|
---|
1045 | DEBUG(1,("getting file %s of size %.0f as %s ",
|
---|
1046 | rname, (double)size, lname));
|
---|
1047 |
|
---|
1048 | status = cli_pull(targetcli, fnum, start, size, io_bufsize,
|
---|
1049 | writefile_sink, (void *)&handle, &nread);
|
---|
1050 | if (!NT_STATUS_IS_OK(status)) {
|
---|
1051 | d_fprintf(stderr, "parallel_read returned %s\n",
|
---|
1052 | nt_errstr(status));
|
---|
1053 | cli_close(targetcli, fnum);
|
---|
1054 | return 1;
|
---|
1055 | }
|
---|
1056 |
|
---|
1057 | if (!cli_close(targetcli, fnum)) {
|
---|
1058 | d_printf("Error %s closing remote file\n",cli_errstr(cli));
|
---|
1059 | rc = 1;
|
---|
1060 | }
|
---|
1061 |
|
---|
1062 | if (newhandle) {
|
---|
1063 | close(handle);
|
---|
1064 | }
|
---|
1065 |
|
---|
1066 | if (archive_level >= 2 && (attr & aARCH)) {
|
---|
1067 | cli_setatr(cli, rname, attr & ~(uint16)aARCH, 0);
|
---|
1068 | }
|
---|
1069 |
|
---|
1070 | {
|
---|
1071 | struct timeval tp_end;
|
---|
1072 | int this_time;
|
---|
1073 |
|
---|
1074 | GetTimeOfDay(&tp_end);
|
---|
1075 | this_time =
|
---|
1076 | (tp_end.tv_sec - tp_start.tv_sec)*1000 +
|
---|
1077 | (tp_end.tv_usec - tp_start.tv_usec)/1000;
|
---|
1078 | get_total_time_ms += this_time;
|
---|
1079 | get_total_size += nread;
|
---|
1080 |
|
---|
1081 | DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
|
---|
1082 | nread / (1.024*this_time + 1.0e-4),
|
---|
1083 | get_total_size / (1.024*get_total_time_ms)));
|
---|
1084 | }
|
---|
1085 |
|
---|
1086 | TALLOC_FREE(targetname);
|
---|
1087 | return rc;
|
---|
1088 | }
|
---|
1089 |
|
---|
1090 | /****************************************************************************
|
---|
1091 | Get a file.
|
---|
1092 | ****************************************************************************/
|
---|
1093 |
|
---|
1094 | static int cmd_get(void)
|
---|
1095 | {
|
---|
1096 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1097 | char *lname = NULL;
|
---|
1098 | char *rname = NULL;
|
---|
1099 | char *fname = NULL;
|
---|
1100 |
|
---|
1101 | rname = talloc_strdup(ctx, client_get_cur_dir());
|
---|
1102 | if (!rname) {
|
---|
1103 | return 1;
|
---|
1104 | }
|
---|
1105 |
|
---|
1106 | if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
|
---|
1107 | d_printf("get <filename> [localname]\n");
|
---|
1108 | return 1;
|
---|
1109 | }
|
---|
1110 | rname = talloc_asprintf_append(rname, "%s", fname);
|
---|
1111 | if (!rname) {
|
---|
1112 | return 1;
|
---|
1113 | }
|
---|
1114 | rname = clean_name(ctx, rname);
|
---|
1115 | if (!rname) {
|
---|
1116 | return 1;
|
---|
1117 | }
|
---|
1118 |
|
---|
1119 | next_token_talloc(ctx, &cmd_ptr,&lname,NULL);
|
---|
1120 | if (!lname) {
|
---|
1121 | lname = fname;
|
---|
1122 | }
|
---|
1123 |
|
---|
1124 | return do_get(rname, lname, false);
|
---|
1125 | }
|
---|
1126 |
|
---|
1127 | /****************************************************************************
|
---|
1128 | Do an mget operation on one file.
|
---|
1129 | ****************************************************************************/
|
---|
1130 |
|
---|
1131 | static void do_mget(file_info *finfo, const char *dir)
|
---|
1132 | {
|
---|
1133 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1134 | char *rname = NULL;
|
---|
1135 | char *quest = NULL;
|
---|
1136 | char *saved_curdir = NULL;
|
---|
1137 | char *mget_mask = NULL;
|
---|
1138 | char *new_cd = NULL;
|
---|
1139 |
|
---|
1140 | if (!finfo->name) {
|
---|
1141 | return;
|
---|
1142 | }
|
---|
1143 |
|
---|
1144 | if (strequal(finfo->name,".") || strequal(finfo->name,".."))
|
---|
1145 | return;
|
---|
1146 |
|
---|
1147 | if (abort_mget) {
|
---|
1148 | d_printf("mget aborted\n");
|
---|
1149 | return;
|
---|
1150 | }
|
---|
1151 |
|
---|
1152 | if (finfo->mode & aDIR) {
|
---|
1153 | if (asprintf(&quest,
|
---|
1154 | "Get directory %s? ",finfo->name) < 0) {
|
---|
1155 | return;
|
---|
1156 | }
|
---|
1157 | } else {
|
---|
1158 | if (asprintf(&quest,
|
---|
1159 | "Get file %s? ",finfo->name) < 0) {
|
---|
1160 | return;
|
---|
1161 | }
|
---|
1162 | }
|
---|
1163 |
|
---|
1164 | if (prompt && !yesno(quest)) {
|
---|
1165 | SAFE_FREE(quest);
|
---|
1166 | return;
|
---|
1167 | }
|
---|
1168 | SAFE_FREE(quest);
|
---|
1169 |
|
---|
1170 | if (!(finfo->mode & aDIR)) {
|
---|
1171 | rname = talloc_asprintf(ctx,
|
---|
1172 | "%s%s",
|
---|
1173 | client_get_cur_dir(),
|
---|
1174 | finfo->name);
|
---|
1175 | if (!rname) {
|
---|
1176 | return;
|
---|
1177 | }
|
---|
1178 | do_get(rname, finfo->name, false);
|
---|
1179 | TALLOC_FREE(rname);
|
---|
1180 | return;
|
---|
1181 | }
|
---|
1182 |
|
---|
1183 | /* handle directories */
|
---|
1184 | saved_curdir = talloc_strdup(ctx, client_get_cur_dir());
|
---|
1185 | if (!saved_curdir) {
|
---|
1186 | return;
|
---|
1187 | }
|
---|
1188 |
|
---|
1189 | new_cd = talloc_asprintf(ctx,
|
---|
1190 | "%s%s%s",
|
---|
1191 | client_get_cur_dir(),
|
---|
1192 | finfo->name,
|
---|
1193 | CLI_DIRSEP_STR);
|
---|
1194 | if (!new_cd) {
|
---|
1195 | return;
|
---|
1196 | }
|
---|
1197 | client_set_cur_dir(new_cd);
|
---|
1198 |
|
---|
1199 | string_replace(finfo->name,'\\','/');
|
---|
1200 | if (lowercase) {
|
---|
1201 | strlower_m(finfo->name);
|
---|
1202 | }
|
---|
1203 |
|
---|
1204 | if (!directory_exist(finfo->name,NULL) &&
|
---|
1205 | mkdir(finfo->name,0777) != 0) {
|
---|
1206 | d_printf("failed to create directory %s\n",finfo->name);
|
---|
1207 | client_set_cur_dir(saved_curdir);
|
---|
1208 | return;
|
---|
1209 | }
|
---|
1210 |
|
---|
1211 | if (chdir(finfo->name) != 0) {
|
---|
1212 | d_printf("failed to chdir to directory %s\n",finfo->name);
|
---|
1213 | client_set_cur_dir(saved_curdir);
|
---|
1214 | return;
|
---|
1215 | }
|
---|
1216 |
|
---|
1217 | mget_mask = talloc_asprintf(ctx,
|
---|
1218 | "%s*",
|
---|
1219 | client_get_cur_dir());
|
---|
1220 |
|
---|
1221 | if (!mget_mask) {
|
---|
1222 | return;
|
---|
1223 | }
|
---|
1224 |
|
---|
1225 | do_list(mget_mask, aSYSTEM | aHIDDEN | aDIR,do_mget,false, true);
|
---|
1226 | if (chdir("..") == -1) {
|
---|
1227 | d_printf("do_mget: failed to chdir to .. (error %s)\n",
|
---|
1228 | strerror(errno) );
|
---|
1229 | }
|
---|
1230 | client_set_cur_dir(saved_curdir);
|
---|
1231 | TALLOC_FREE(mget_mask);
|
---|
1232 | TALLOC_FREE(saved_curdir);
|
---|
1233 | TALLOC_FREE(new_cd);
|
---|
1234 | }
|
---|
1235 |
|
---|
1236 | /****************************************************************************
|
---|
1237 | View the file using the pager.
|
---|
1238 | ****************************************************************************/
|
---|
1239 |
|
---|
1240 | static int cmd_more(void)
|
---|
1241 | {
|
---|
1242 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1243 | char *rname = NULL;
|
---|
1244 | char *fname = NULL;
|
---|
1245 | char *lname = NULL;
|
---|
1246 | char *pager_cmd = NULL;
|
---|
1247 | const char *pager;
|
---|
1248 | int fd;
|
---|
1249 | int rc = 0;
|
---|
1250 |
|
---|
1251 | rname = talloc_strdup(ctx, client_get_cur_dir());
|
---|
1252 | if (!rname) {
|
---|
1253 | return 1;
|
---|
1254 | }
|
---|
1255 |
|
---|
1256 | lname = talloc_asprintf(ctx, "%s/smbmore.XXXXXX",tmpdir());
|
---|
1257 | if (!lname) {
|
---|
1258 | return 1;
|
---|
1259 | }
|
---|
1260 | fd = smb_mkstemp(lname);
|
---|
1261 | if (fd == -1) {
|
---|
1262 | d_printf("failed to create temporary file for more\n");
|
---|
1263 | return 1;
|
---|
1264 | }
|
---|
1265 | close(fd);
|
---|
1266 |
|
---|
1267 | if (!next_token_talloc(ctx, &cmd_ptr,&fname,NULL)) {
|
---|
1268 | d_printf("more <filename>\n");
|
---|
1269 | unlink(lname);
|
---|
1270 | return 1;
|
---|
1271 | }
|
---|
1272 | rname = talloc_asprintf_append(rname, "%s", fname);
|
---|
1273 | if (!rname) {
|
---|
1274 | return 1;
|
---|
1275 | }
|
---|
1276 | rname = clean_name(ctx,rname);
|
---|
1277 | if (!rname) {
|
---|
1278 | return 1;
|
---|
1279 | }
|
---|
1280 |
|
---|
1281 | rc = do_get(rname, lname, false);
|
---|
1282 |
|
---|
1283 | pager=getenv("PAGER");
|
---|
1284 |
|
---|
1285 | pager_cmd = talloc_asprintf(ctx,
|
---|
1286 | "%s %s",
|
---|
1287 | (pager? pager:PAGER),
|
---|
1288 | lname);
|
---|
1289 | if (!pager_cmd) {
|
---|
1290 | return 1;
|
---|
1291 | }
|
---|
1292 | if (system(pager_cmd) == -1) {
|
---|
1293 | d_printf("system command '%s' returned -1\n",
|
---|
1294 | pager_cmd);
|
---|
1295 | }
|
---|
1296 | unlink(lname);
|
---|
1297 |
|
---|
1298 | return rc;
|
---|
1299 | }
|
---|
1300 |
|
---|
1301 | /****************************************************************************
|
---|
1302 | Do a mget command.
|
---|
1303 | ****************************************************************************/
|
---|
1304 |
|
---|
1305 | static int cmd_mget(void)
|
---|
1306 | {
|
---|
1307 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1308 | uint16 attribute = aSYSTEM | aHIDDEN;
|
---|
1309 | char *mget_mask = NULL;
|
---|
1310 | char *buf = NULL;
|
---|
1311 |
|
---|
1312 | if (recurse) {
|
---|
1313 | attribute |= aDIR;
|
---|
1314 | }
|
---|
1315 |
|
---|
1316 | abort_mget = false;
|
---|
1317 |
|
---|
1318 | while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
1319 | mget_mask = talloc_strdup(ctx, client_get_cur_dir());
|
---|
1320 | if (!mget_mask) {
|
---|
1321 | return 1;
|
---|
1322 | }
|
---|
1323 | if (*buf == CLI_DIRSEP_CHAR) {
|
---|
1324 | mget_mask = talloc_strdup(ctx, buf);
|
---|
1325 | } else {
|
---|
1326 | mget_mask = talloc_asprintf_append(mget_mask,
|
---|
1327 | "%s", buf);
|
---|
1328 | }
|
---|
1329 | if (!mget_mask) {
|
---|
1330 | return 1;
|
---|
1331 | }
|
---|
1332 | do_list(mget_mask, attribute, do_mget, false, true);
|
---|
1333 | }
|
---|
1334 |
|
---|
1335 | if (mget_mask == NULL) {
|
---|
1336 | d_printf("nothing to mget\n");
|
---|
1337 | return 0;
|
---|
1338 | }
|
---|
1339 |
|
---|
1340 | if (!*mget_mask) {
|
---|
1341 | mget_mask = talloc_asprintf(ctx,
|
---|
1342 | "%s*",
|
---|
1343 | client_get_cur_dir());
|
---|
1344 | if (!mget_mask) {
|
---|
1345 | return 1;
|
---|
1346 | }
|
---|
1347 | do_list(mget_mask, attribute, do_mget, false, true);
|
---|
1348 | }
|
---|
1349 |
|
---|
1350 | return 0;
|
---|
1351 | }
|
---|
1352 |
|
---|
1353 | /****************************************************************************
|
---|
1354 | Make a directory of name "name".
|
---|
1355 | ****************************************************************************/
|
---|
1356 |
|
---|
1357 | static bool do_mkdir(const char *name)
|
---|
1358 | {
|
---|
1359 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1360 | struct cli_state *targetcli;
|
---|
1361 | char *targetname = NULL;
|
---|
1362 |
|
---|
1363 | if (!cli_resolve_path(ctx, "", cli, name, &targetcli, &targetname)) {
|
---|
1364 | d_printf("mkdir %s: %s\n", name, cli_errstr(cli));
|
---|
1365 | return false;
|
---|
1366 | }
|
---|
1367 |
|
---|
1368 | if (!cli_mkdir(targetcli, targetname)) {
|
---|
1369 | d_printf("%s making remote directory %s\n",
|
---|
1370 | cli_errstr(targetcli),name);
|
---|
1371 | return false;
|
---|
1372 | }
|
---|
1373 |
|
---|
1374 | return true;
|
---|
1375 | }
|
---|
1376 |
|
---|
1377 | /****************************************************************************
|
---|
1378 | Show 8.3 name of a file.
|
---|
1379 | ****************************************************************************/
|
---|
1380 |
|
---|
1381 | static bool do_altname(const char *name)
|
---|
1382 | {
|
---|
1383 | fstring altname;
|
---|
1384 |
|
---|
1385 | if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
|
---|
1386 | d_printf("%s getting alt name for %s\n",
|
---|
1387 | cli_errstr(cli),name);
|
---|
1388 | return false;
|
---|
1389 | }
|
---|
1390 | d_printf("%s\n", altname);
|
---|
1391 |
|
---|
1392 | return true;
|
---|
1393 | }
|
---|
1394 |
|
---|
1395 | /****************************************************************************
|
---|
1396 | Exit client.
|
---|
1397 | ****************************************************************************/
|
---|
1398 |
|
---|
1399 | static int cmd_quit(void)
|
---|
1400 | {
|
---|
1401 | cli_cm_shutdown();
|
---|
1402 | exit(0);
|
---|
1403 | /* NOTREACHED */
|
---|
1404 | return 0;
|
---|
1405 | }
|
---|
1406 |
|
---|
1407 | /****************************************************************************
|
---|
1408 | Make a directory.
|
---|
1409 | ****************************************************************************/
|
---|
1410 |
|
---|
1411 | static int cmd_mkdir(void)
|
---|
1412 | {
|
---|
1413 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1414 | char *mask = NULL;
|
---|
1415 | char *buf = NULL;
|
---|
1416 |
|
---|
1417 | mask = talloc_strdup(ctx, client_get_cur_dir());
|
---|
1418 | if (!mask) {
|
---|
1419 | return 1;
|
---|
1420 | }
|
---|
1421 |
|
---|
1422 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
1423 | if (!recurse) {
|
---|
1424 | d_printf("mkdir <dirname>\n");
|
---|
1425 | }
|
---|
1426 | return 1;
|
---|
1427 | }
|
---|
1428 | mask = talloc_asprintf_append(mask, "%s", buf);
|
---|
1429 | if (!mask) {
|
---|
1430 | return 1;
|
---|
1431 | }
|
---|
1432 |
|
---|
1433 | if (recurse) {
|
---|
1434 | char *ddir = NULL;
|
---|
1435 | char *ddir2 = NULL;
|
---|
1436 | struct cli_state *targetcli;
|
---|
1437 | char *targetname = NULL;
|
---|
1438 | char *p = NULL;
|
---|
1439 | char *saveptr;
|
---|
1440 |
|
---|
1441 | ddir2 = talloc_strdup(ctx, "");
|
---|
1442 | if (!ddir2) {
|
---|
1443 | return 1;
|
---|
1444 | }
|
---|
1445 |
|
---|
1446 | if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
|
---|
1447 | return 1;
|
---|
1448 | }
|
---|
1449 |
|
---|
1450 | ddir = talloc_strdup(ctx, targetname);
|
---|
1451 | if (!ddir) {
|
---|
1452 | return 1;
|
---|
1453 | }
|
---|
1454 | trim_char(ddir,'.','\0');
|
---|
1455 | p = strtok_r(ddir, "/\\", &saveptr);
|
---|
1456 | while (p) {
|
---|
1457 | ddir2 = talloc_asprintf_append(ddir2, "%s", p);
|
---|
1458 | if (!ddir2) {
|
---|
1459 | return 1;
|
---|
1460 | }
|
---|
1461 | if (!cli_chkpath(targetcli, ddir2)) {
|
---|
1462 | do_mkdir(ddir2);
|
---|
1463 | }
|
---|
1464 | ddir2 = talloc_asprintf_append(ddir2, "%s", CLI_DIRSEP_STR);
|
---|
1465 | if (!ddir2) {
|
---|
1466 | return 1;
|
---|
1467 | }
|
---|
1468 | p = strtok_r(NULL, "/\\", &saveptr);
|
---|
1469 | }
|
---|
1470 | } else {
|
---|
1471 | do_mkdir(mask);
|
---|
1472 | }
|
---|
1473 |
|
---|
1474 | return 0;
|
---|
1475 | }
|
---|
1476 |
|
---|
1477 | /****************************************************************************
|
---|
1478 | Show alt name.
|
---|
1479 | ****************************************************************************/
|
---|
1480 |
|
---|
1481 | static int cmd_altname(void)
|
---|
1482 | {
|
---|
1483 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1484 | char *name;
|
---|
1485 | char *buf;
|
---|
1486 |
|
---|
1487 | name = talloc_strdup(ctx, client_get_cur_dir());
|
---|
1488 | if (!name) {
|
---|
1489 | return 1;
|
---|
1490 | }
|
---|
1491 |
|
---|
1492 | if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
|
---|
1493 | d_printf("altname <file>\n");
|
---|
1494 | return 1;
|
---|
1495 | }
|
---|
1496 | name = talloc_asprintf_append(name, "%s", buf);
|
---|
1497 | if (!name) {
|
---|
1498 | return 1;
|
---|
1499 | }
|
---|
1500 | do_altname(name);
|
---|
1501 | return 0;
|
---|
1502 | }
|
---|
1503 |
|
---|
1504 | /****************************************************************************
|
---|
1505 | Show all info we can get
|
---|
1506 | ****************************************************************************/
|
---|
1507 |
|
---|
1508 | static int do_allinfo(const char *name)
|
---|
1509 | {
|
---|
1510 | fstring altname;
|
---|
1511 | struct timespec b_time, a_time, m_time, c_time;
|
---|
1512 | SMB_OFF_T size;
|
---|
1513 | uint16_t mode;
|
---|
1514 | SMB_INO_T ino;
|
---|
1515 | NTTIME tmp;
|
---|
1516 | unsigned int num_streams;
|
---|
1517 | struct stream_struct *streams;
|
---|
1518 | unsigned int i;
|
---|
1519 |
|
---|
1520 | if (!NT_STATUS_IS_OK(cli_qpathinfo_alt_name(cli, name, altname))) {
|
---|
1521 | d_printf("%s getting alt name for %s\n",
|
---|
1522 | cli_errstr(cli),name);
|
---|
1523 | return false;
|
---|
1524 | }
|
---|
1525 | d_printf("altname: %s\n", altname);
|
---|
1526 |
|
---|
1527 | if (!cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time,
|
---|
1528 | &size, &mode, &ino)) {
|
---|
1529 | d_printf("%s getting pathinfo for %s\n",
|
---|
1530 | cli_errstr(cli),name);
|
---|
1531 | return false;
|
---|
1532 | }
|
---|
1533 |
|
---|
1534 | unix_timespec_to_nt_time(&tmp, b_time);
|
---|
1535 | d_printf("create_time: %s\n", nt_time_string(talloc_tos(), tmp));
|
---|
1536 |
|
---|
1537 | unix_timespec_to_nt_time(&tmp, a_time);
|
---|
1538 | d_printf("access_time: %s\n", nt_time_string(talloc_tos(), tmp));
|
---|
1539 |
|
---|
1540 | unix_timespec_to_nt_time(&tmp, m_time);
|
---|
1541 | d_printf("write_time: %s\n", nt_time_string(talloc_tos(), tmp));
|
---|
1542 |
|
---|
1543 | unix_timespec_to_nt_time(&tmp, c_time);
|
---|
1544 | d_printf("change_time: %s\n", nt_time_string(talloc_tos(), tmp));
|
---|
1545 |
|
---|
1546 | if (!cli_qpathinfo_streams(cli, name, talloc_tos(), &num_streams,
|
---|
1547 | &streams)) {
|
---|
1548 | d_printf("%s getting streams for %s\n",
|
---|
1549 | cli_errstr(cli),name);
|
---|
1550 | return false;
|
---|
1551 | }
|
---|
1552 |
|
---|
1553 | for (i=0; i<num_streams; i++) {
|
---|
1554 | d_printf("stream: [%s], %lld bytes\n", streams[i].name,
|
---|
1555 | (unsigned long long)streams[i].size);
|
---|
1556 | }
|
---|
1557 |
|
---|
1558 | return 0;
|
---|
1559 | }
|
---|
1560 |
|
---|
1561 | /****************************************************************************
|
---|
1562 | Show all info we can get
|
---|
1563 | ****************************************************************************/
|
---|
1564 |
|
---|
1565 | static int cmd_allinfo(void)
|
---|
1566 | {
|
---|
1567 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1568 | char *name;
|
---|
1569 | char *buf;
|
---|
1570 |
|
---|
1571 | name = talloc_strdup(ctx, client_get_cur_dir());
|
---|
1572 | if (!name) {
|
---|
1573 | return 1;
|
---|
1574 | }
|
---|
1575 |
|
---|
1576 | if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
|
---|
1577 | d_printf("allinfo <file>\n");
|
---|
1578 | return 1;
|
---|
1579 | }
|
---|
1580 | name = talloc_asprintf_append(name, "%s", buf);
|
---|
1581 | if (!name) {
|
---|
1582 | return 1;
|
---|
1583 | }
|
---|
1584 |
|
---|
1585 | do_allinfo(name);
|
---|
1586 |
|
---|
1587 | return 0;
|
---|
1588 | }
|
---|
1589 |
|
---|
1590 | /****************************************************************************
|
---|
1591 | Put a single file.
|
---|
1592 | ****************************************************************************/
|
---|
1593 |
|
---|
1594 | static int do_put(const char *rname, const char *lname, bool reput)
|
---|
1595 | {
|
---|
1596 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1597 | int fnum;
|
---|
1598 | XFILE *f;
|
---|
1599 | SMB_OFF_T start = 0;
|
---|
1600 | off_t nread = 0;
|
---|
1601 | char *buf = NULL;
|
---|
1602 | int maxwrite = io_bufsize;
|
---|
1603 | int rc = 0;
|
---|
1604 | struct timeval tp_start;
|
---|
1605 | struct cli_state *targetcli;
|
---|
1606 | char *targetname = NULL;
|
---|
1607 |
|
---|
1608 | if (!cli_resolve_path(ctx, "", cli, rname, &targetcli, &targetname)) {
|
---|
1609 | d_printf("Failed to open %s: %s\n", rname, cli_errstr(cli));
|
---|
1610 | return 1;
|
---|
1611 | }
|
---|
1612 |
|
---|
1613 | GetTimeOfDay(&tp_start);
|
---|
1614 |
|
---|
1615 | if (reput) {
|
---|
1616 | fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT, DENY_NONE);
|
---|
1617 | if (fnum >= 0) {
|
---|
1618 | if (!cli_qfileinfo(targetcli, fnum, NULL, &start, NULL, NULL, NULL, NULL, NULL) &&
|
---|
1619 | !cli_getattrE(targetcli, fnum, NULL, &start, NULL, NULL, NULL)) {
|
---|
1620 | d_printf("getattrib: %s\n",cli_errstr(cli));
|
---|
1621 | return 1;
|
---|
1622 | }
|
---|
1623 | }
|
---|
1624 | } else {
|
---|
1625 | fnum = cli_open(targetcli, targetname, O_RDWR|O_CREAT|O_TRUNC, DENY_NONE);
|
---|
1626 | }
|
---|
1627 |
|
---|
1628 | if (fnum == -1) {
|
---|
1629 | d_printf("%s opening remote file %s\n",cli_errstr(targetcli),rname);
|
---|
1630 | return 1;
|
---|
1631 | }
|
---|
1632 |
|
---|
1633 | /* allow files to be piped into smbclient
|
---|
1634 | jdblair 24.jun.98
|
---|
1635 |
|
---|
1636 | Note that in this case this function will exit(0) rather
|
---|
1637 | than returning. */
|
---|
1638 | if (!strcmp(lname, "-")) {
|
---|
1639 | f = x_stdin;
|
---|
1640 | /* size of file is not known */
|
---|
1641 | } else {
|
---|
1642 | f = x_fopen(lname,O_RDONLY, 0);
|
---|
1643 | if (f && reput) {
|
---|
1644 | if (x_tseek(f, start, SEEK_SET) == -1) {
|
---|
1645 | d_printf("Error seeking local file\n");
|
---|
1646 | return 1;
|
---|
1647 | }
|
---|
1648 | }
|
---|
1649 | }
|
---|
1650 |
|
---|
1651 | if (!f) {
|
---|
1652 | d_printf("Error opening local file %s\n",lname);
|
---|
1653 | return 1;
|
---|
1654 | }
|
---|
1655 |
|
---|
1656 | DEBUG(1,("putting file %s as %s ",lname,
|
---|
1657 | rname));
|
---|
1658 |
|
---|
1659 | buf = (char *)SMB_MALLOC(maxwrite);
|
---|
1660 | if (!buf) {
|
---|
1661 | d_printf("ERROR: Not enough memory!\n");
|
---|
1662 | return 1;
|
---|
1663 | }
|
---|
1664 | while (!x_feof(f)) {
|
---|
1665 | int n = maxwrite;
|
---|
1666 | int ret;
|
---|
1667 |
|
---|
1668 | if ((n = readfile(buf,n,f)) < 1) {
|
---|
1669 | if((n == 0) && x_feof(f))
|
---|
1670 | break; /* Empty local file. */
|
---|
1671 |
|
---|
1672 | d_printf("Error reading local file: %s\n", strerror(errno));
|
---|
1673 | rc = 1;
|
---|
1674 | break;
|
---|
1675 | }
|
---|
1676 |
|
---|
1677 | ret = cli_write(targetcli, fnum, 0, buf, nread + start, n);
|
---|
1678 |
|
---|
1679 | if (n != ret) {
|
---|
1680 | d_printf("Error writing file: %s\n", cli_errstr(cli));
|
---|
1681 | rc = 1;
|
---|
1682 | break;
|
---|
1683 | }
|
---|
1684 |
|
---|
1685 | nread += n;
|
---|
1686 | }
|
---|
1687 |
|
---|
1688 | if (!cli_close(targetcli, fnum)) {
|
---|
1689 | d_printf("%s closing remote file %s\n",cli_errstr(cli),rname);
|
---|
1690 | x_fclose(f);
|
---|
1691 | SAFE_FREE(buf);
|
---|
1692 | return 1;
|
---|
1693 | }
|
---|
1694 |
|
---|
1695 | if (f != x_stdin) {
|
---|
1696 | x_fclose(f);
|
---|
1697 | }
|
---|
1698 |
|
---|
1699 | SAFE_FREE(buf);
|
---|
1700 |
|
---|
1701 | {
|
---|
1702 | struct timeval tp_end;
|
---|
1703 | int this_time;
|
---|
1704 |
|
---|
1705 | GetTimeOfDay(&tp_end);
|
---|
1706 | this_time =
|
---|
1707 | (tp_end.tv_sec - tp_start.tv_sec)*1000 +
|
---|
1708 | (tp_end.tv_usec - tp_start.tv_usec)/1000;
|
---|
1709 | put_total_time_ms += this_time;
|
---|
1710 | put_total_size += nread;
|
---|
1711 |
|
---|
1712 | DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n",
|
---|
1713 | nread / (1.024*this_time + 1.0e-4),
|
---|
1714 | put_total_size / (1.024*put_total_time_ms)));
|
---|
1715 | }
|
---|
1716 |
|
---|
1717 | if (f == x_stdin) {
|
---|
1718 | cli_cm_shutdown();
|
---|
1719 | exit(0);
|
---|
1720 | }
|
---|
1721 |
|
---|
1722 | return rc;
|
---|
1723 | }
|
---|
1724 |
|
---|
1725 | /****************************************************************************
|
---|
1726 | Put a file.
|
---|
1727 | ****************************************************************************/
|
---|
1728 |
|
---|
1729 | static int cmd_put(void)
|
---|
1730 | {
|
---|
1731 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1732 | char *lname;
|
---|
1733 | char *rname;
|
---|
1734 | char *buf;
|
---|
1735 |
|
---|
1736 | rname = talloc_strdup(ctx, client_get_cur_dir());
|
---|
1737 | if (!rname) {
|
---|
1738 | return 1;
|
---|
1739 | }
|
---|
1740 |
|
---|
1741 | if (!next_token_talloc(ctx, &cmd_ptr,&lname,NULL)) {
|
---|
1742 | d_printf("put <filename>\n");
|
---|
1743 | return 1;
|
---|
1744 | }
|
---|
1745 |
|
---|
1746 | if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
1747 | rname = talloc_asprintf_append(rname, "%s", buf);
|
---|
1748 | } else {
|
---|
1749 | rname = talloc_asprintf_append(rname, "%s", lname);
|
---|
1750 | }
|
---|
1751 | if (!rname) {
|
---|
1752 | return 1;
|
---|
1753 | }
|
---|
1754 |
|
---|
1755 | rname = clean_name(ctx, rname);
|
---|
1756 | if (!rname) {
|
---|
1757 | return 1;
|
---|
1758 | }
|
---|
1759 |
|
---|
1760 | {
|
---|
1761 | SMB_STRUCT_STAT st;
|
---|
1762 | /* allow '-' to represent stdin
|
---|
1763 | jdblair, 24.jun.98 */
|
---|
1764 | if (!file_exist(lname,&st) &&
|
---|
1765 | (strcmp(lname,"-"))) {
|
---|
1766 | d_printf("%s does not exist\n",lname);
|
---|
1767 | return 1;
|
---|
1768 | }
|
---|
1769 | }
|
---|
1770 |
|
---|
1771 | return do_put(rname, lname, false);
|
---|
1772 | }
|
---|
1773 |
|
---|
1774 | /*************************************
|
---|
1775 | File list structure.
|
---|
1776 | *************************************/
|
---|
1777 |
|
---|
1778 | static struct file_list {
|
---|
1779 | struct file_list *prev, *next;
|
---|
1780 | char *file_path;
|
---|
1781 | bool isdir;
|
---|
1782 | } *file_list;
|
---|
1783 |
|
---|
1784 | /****************************************************************************
|
---|
1785 | Free a file_list structure.
|
---|
1786 | ****************************************************************************/
|
---|
1787 |
|
---|
1788 | static void free_file_list (struct file_list *l_head)
|
---|
1789 | {
|
---|
1790 | struct file_list *list, *next;
|
---|
1791 |
|
---|
1792 | for (list = l_head; list; list = next) {
|
---|
1793 | next = list->next;
|
---|
1794 | DLIST_REMOVE(l_head, list);
|
---|
1795 | SAFE_FREE(list->file_path);
|
---|
1796 | SAFE_FREE(list);
|
---|
1797 | }
|
---|
1798 | }
|
---|
1799 |
|
---|
1800 | /****************************************************************************
|
---|
1801 | Seek in a directory/file list until you get something that doesn't start with
|
---|
1802 | the specified name.
|
---|
1803 | ****************************************************************************/
|
---|
1804 |
|
---|
1805 | static bool seek_list(struct file_list *list, char *name)
|
---|
1806 | {
|
---|
1807 | while (list) {
|
---|
1808 | trim_string(list->file_path,"./","\n");
|
---|
1809 | if (strncmp(list->file_path, name, strlen(name)) != 0) {
|
---|
1810 | return true;
|
---|
1811 | }
|
---|
1812 | list = list->next;
|
---|
1813 | }
|
---|
1814 |
|
---|
1815 | return false;
|
---|
1816 | }
|
---|
1817 |
|
---|
1818 | /****************************************************************************
|
---|
1819 | Set the file selection mask.
|
---|
1820 | ****************************************************************************/
|
---|
1821 |
|
---|
1822 | static int cmd_select(void)
|
---|
1823 | {
|
---|
1824 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1825 | char *new_fs = NULL;
|
---|
1826 | next_token_talloc(ctx, &cmd_ptr,&new_fs,NULL)
|
---|
1827 | ;
|
---|
1828 | if (new_fs) {
|
---|
1829 | client_set_fileselection(new_fs);
|
---|
1830 | } else {
|
---|
1831 | client_set_fileselection("");
|
---|
1832 | }
|
---|
1833 | return 0;
|
---|
1834 | }
|
---|
1835 |
|
---|
1836 | /****************************************************************************
|
---|
1837 | Recursive file matching function act as find
|
---|
1838 | match must be always set to true when calling this function
|
---|
1839 | ****************************************************************************/
|
---|
1840 |
|
---|
1841 | static int file_find(struct file_list **list, const char *directory,
|
---|
1842 | const char *expression, bool match)
|
---|
1843 | {
|
---|
1844 | SMB_STRUCT_DIR *dir;
|
---|
1845 | struct file_list *entry;
|
---|
1846 | struct stat statbuf;
|
---|
1847 | int ret;
|
---|
1848 | char *path;
|
---|
1849 | bool isdir;
|
---|
1850 | const char *dname;
|
---|
1851 |
|
---|
1852 | dir = sys_opendir(directory);
|
---|
1853 | if (!dir)
|
---|
1854 | return -1;
|
---|
1855 |
|
---|
1856 | while ((dname = readdirname(dir))) {
|
---|
1857 | if (!strcmp("..", dname))
|
---|
1858 | continue;
|
---|
1859 | if (!strcmp(".", dname))
|
---|
1860 | continue;
|
---|
1861 |
|
---|
1862 | if (asprintf(&path, "%s/%s", directory, dname) <= 0) {
|
---|
1863 | continue;
|
---|
1864 | }
|
---|
1865 |
|
---|
1866 | isdir = false;
|
---|
1867 | if (!match || !gen_fnmatch(expression, dname)) {
|
---|
1868 | if (recurse) {
|
---|
1869 | ret = stat(path, &statbuf);
|
---|
1870 | if (ret == 0) {
|
---|
1871 | if (S_ISDIR(statbuf.st_mode)) {
|
---|
1872 | isdir = true;
|
---|
1873 | ret = file_find(list, path, expression, false);
|
---|
1874 | }
|
---|
1875 | } else {
|
---|
1876 | d_printf("file_find: cannot stat file %s\n", path);
|
---|
1877 | }
|
---|
1878 |
|
---|
1879 | if (ret == -1) {
|
---|
1880 | SAFE_FREE(path);
|
---|
1881 | sys_closedir(dir);
|
---|
1882 | return -1;
|
---|
1883 | }
|
---|
1884 | }
|
---|
1885 | entry = SMB_MALLOC_P(struct file_list);
|
---|
1886 | if (!entry) {
|
---|
1887 | d_printf("Out of memory in file_find\n");
|
---|
1888 | sys_closedir(dir);
|
---|
1889 | return -1;
|
---|
1890 | }
|
---|
1891 | entry->file_path = path;
|
---|
1892 | entry->isdir = isdir;
|
---|
1893 | DLIST_ADD(*list, entry);
|
---|
1894 | } else {
|
---|
1895 | SAFE_FREE(path);
|
---|
1896 | }
|
---|
1897 | }
|
---|
1898 |
|
---|
1899 | sys_closedir(dir);
|
---|
1900 | return 0;
|
---|
1901 | }
|
---|
1902 |
|
---|
1903 | /****************************************************************************
|
---|
1904 | mput some files.
|
---|
1905 | ****************************************************************************/
|
---|
1906 |
|
---|
1907 | static int cmd_mput(void)
|
---|
1908 | {
|
---|
1909 | TALLOC_CTX *ctx = talloc_tos();
|
---|
1910 | char *p = NULL;
|
---|
1911 |
|
---|
1912 | while (next_token_talloc(ctx, &cmd_ptr,&p,NULL)) {
|
---|
1913 | int ret;
|
---|
1914 | struct file_list *temp_list;
|
---|
1915 | char *quest, *lname, *rname;
|
---|
1916 |
|
---|
1917 | file_list = NULL;
|
---|
1918 |
|
---|
1919 | ret = file_find(&file_list, ".", p, true);
|
---|
1920 | if (ret) {
|
---|
1921 | free_file_list(file_list);
|
---|
1922 | continue;
|
---|
1923 | }
|
---|
1924 |
|
---|
1925 | quest = NULL;
|
---|
1926 | lname = NULL;
|
---|
1927 | rname = NULL;
|
---|
1928 |
|
---|
1929 | for (temp_list = file_list; temp_list;
|
---|
1930 | temp_list = temp_list->next) {
|
---|
1931 |
|
---|
1932 | SAFE_FREE(lname);
|
---|
1933 | if (asprintf(&lname, "%s/", temp_list->file_path) <= 0) {
|
---|
1934 | continue;
|
---|
1935 | }
|
---|
1936 | trim_string(lname, "./", "/");
|
---|
1937 |
|
---|
1938 | /* check if it's a directory */
|
---|
1939 | if (temp_list->isdir) {
|
---|
1940 | /* if (!recurse) continue; */
|
---|
1941 |
|
---|
1942 | SAFE_FREE(quest);
|
---|
1943 | if (asprintf(&quest, "Put directory %s? ", lname) < 0) {
|
---|
1944 | break;
|
---|
1945 | }
|
---|
1946 | if (prompt && !yesno(quest)) { /* No */
|
---|
1947 | /* Skip the directory */
|
---|
1948 | lname[strlen(lname)-1] = '/';
|
---|
1949 | if (!seek_list(temp_list, lname))
|
---|
1950 | break;
|
---|
1951 | } else { /* Yes */
|
---|
1952 | SAFE_FREE(rname);
|
---|
1953 | if(asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
|
---|
1954 | break;
|
---|
1955 | }
|
---|
1956 | normalize_name(rname);
|
---|
1957 | if (!cli_chkpath(cli, rname) &&
|
---|
1958 | !do_mkdir(rname)) {
|
---|
1959 | DEBUG (0, ("Unable to make dir, skipping..."));
|
---|
1960 | /* Skip the directory */
|
---|
1961 | lname[strlen(lname)-1] = '/';
|
---|
1962 | if (!seek_list(temp_list, lname)) {
|
---|
1963 | break;
|
---|
1964 | }
|
---|
1965 | }
|
---|
1966 | }
|
---|
1967 | continue;
|
---|
1968 | } else {
|
---|
1969 | SAFE_FREE(quest);
|
---|
1970 | if (asprintf(&quest,"Put file %s? ", lname) < 0) {
|
---|
1971 | break;
|
---|
1972 | }
|
---|
1973 | if (prompt && !yesno(quest)) {
|
---|
1974 | /* No */
|
---|
1975 | continue;
|
---|
1976 | }
|
---|
1977 |
|
---|
1978 | /* Yes */
|
---|
1979 | SAFE_FREE(rname);
|
---|
1980 | if (asprintf(&rname, "%s%s", client_get_cur_dir(), lname) < 0) {
|
---|
1981 | break;
|
---|
1982 | }
|
---|
1983 | }
|
---|
1984 |
|
---|
1985 | normalize_name(rname);
|
---|
1986 |
|
---|
1987 | do_put(rname, lname, false);
|
---|
1988 | }
|
---|
1989 | free_file_list(file_list);
|
---|
1990 | SAFE_FREE(quest);
|
---|
1991 | SAFE_FREE(lname);
|
---|
1992 | SAFE_FREE(rname);
|
---|
1993 | }
|
---|
1994 |
|
---|
1995 | return 0;
|
---|
1996 | }
|
---|
1997 |
|
---|
1998 | /****************************************************************************
|
---|
1999 | Cancel a print job.
|
---|
2000 | ****************************************************************************/
|
---|
2001 |
|
---|
2002 | static int do_cancel(int job)
|
---|
2003 | {
|
---|
2004 | if (cli_printjob_del(cli, job)) {
|
---|
2005 | d_printf("Job %d cancelled\n",job);
|
---|
2006 | return 0;
|
---|
2007 | } else {
|
---|
2008 | d_printf("Error cancelling job %d : %s\n",job,cli_errstr(cli));
|
---|
2009 | return 1;
|
---|
2010 | }
|
---|
2011 | }
|
---|
2012 |
|
---|
2013 | /****************************************************************************
|
---|
2014 | Cancel a print job.
|
---|
2015 | ****************************************************************************/
|
---|
2016 |
|
---|
2017 | static int cmd_cancel(void)
|
---|
2018 | {
|
---|
2019 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2020 | char *buf = NULL;
|
---|
2021 | int job;
|
---|
2022 |
|
---|
2023 | if (!next_token_talloc(ctx, &cmd_ptr, &buf,NULL)) {
|
---|
2024 | d_printf("cancel <jobid> ...\n");
|
---|
2025 | return 1;
|
---|
2026 | }
|
---|
2027 | do {
|
---|
2028 | job = atoi(buf);
|
---|
2029 | do_cancel(job);
|
---|
2030 | } while (next_token_talloc(ctx, &cmd_ptr,&buf,NULL));
|
---|
2031 |
|
---|
2032 | return 0;
|
---|
2033 | }
|
---|
2034 |
|
---|
2035 | /****************************************************************************
|
---|
2036 | Print a file.
|
---|
2037 | ****************************************************************************/
|
---|
2038 |
|
---|
2039 | static int cmd_print(void)
|
---|
2040 | {
|
---|
2041 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2042 | char *lname = NULL;
|
---|
2043 | char *rname = NULL;
|
---|
2044 | char *p = NULL;
|
---|
2045 |
|
---|
2046 | if (!next_token_talloc(ctx, &cmd_ptr, &lname,NULL)) {
|
---|
2047 | d_printf("print <filename>\n");
|
---|
2048 | return 1;
|
---|
2049 | }
|
---|
2050 |
|
---|
2051 | rname = talloc_strdup(ctx, lname);
|
---|
2052 | if (!rname) {
|
---|
2053 | return 1;
|
---|
2054 | }
|
---|
2055 | p = strrchr_m(rname,'/');
|
---|
2056 | if (p) {
|
---|
2057 | rname = talloc_asprintf(ctx,
|
---|
2058 | "%s-%d",
|
---|
2059 | p+1,
|
---|
2060 | (int)sys_getpid());
|
---|
2061 | }
|
---|
2062 | if (strequal(lname,"-")) {
|
---|
2063 | rname = talloc_asprintf(ctx,
|
---|
2064 | "stdin-%d",
|
---|
2065 | (int)sys_getpid());
|
---|
2066 | }
|
---|
2067 | if (!rname) {
|
---|
2068 | return 1;
|
---|
2069 | }
|
---|
2070 |
|
---|
2071 | return do_put(rname, lname, false);
|
---|
2072 | }
|
---|
2073 |
|
---|
2074 | /****************************************************************************
|
---|
2075 | Show a print queue entry.
|
---|
2076 | ****************************************************************************/
|
---|
2077 |
|
---|
2078 | static void queue_fn(struct print_job_info *p)
|
---|
2079 | {
|
---|
2080 | d_printf("%-6d %-9d %s\n", (int)p->id, (int)p->size, p->name);
|
---|
2081 | }
|
---|
2082 |
|
---|
2083 | /****************************************************************************
|
---|
2084 | Show a print queue.
|
---|
2085 | ****************************************************************************/
|
---|
2086 |
|
---|
2087 | static int cmd_queue(void)
|
---|
2088 | {
|
---|
2089 | cli_print_queue(cli, queue_fn);
|
---|
2090 | return 0;
|
---|
2091 | }
|
---|
2092 |
|
---|
2093 | /****************************************************************************
|
---|
2094 | Delete some files.
|
---|
2095 | ****************************************************************************/
|
---|
2096 |
|
---|
2097 | static void do_del(file_info *finfo, const char *dir)
|
---|
2098 | {
|
---|
2099 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2100 | char *mask = NULL;
|
---|
2101 |
|
---|
2102 | mask = talloc_asprintf(ctx,
|
---|
2103 | "%s%c%s",
|
---|
2104 | dir,
|
---|
2105 | CLI_DIRSEP_CHAR,
|
---|
2106 | finfo->name);
|
---|
2107 | if (!mask) {
|
---|
2108 | return;
|
---|
2109 | }
|
---|
2110 |
|
---|
2111 | if (finfo->mode & aDIR) {
|
---|
2112 | TALLOC_FREE(mask);
|
---|
2113 | return;
|
---|
2114 | }
|
---|
2115 |
|
---|
2116 | if (!cli_unlink(finfo->cli, mask)) {
|
---|
2117 | d_printf("%s deleting remote file %s\n",
|
---|
2118 | cli_errstr(finfo->cli),mask);
|
---|
2119 | }
|
---|
2120 | TALLOC_FREE(mask);
|
---|
2121 | }
|
---|
2122 |
|
---|
2123 | /****************************************************************************
|
---|
2124 | Delete some files.
|
---|
2125 | ****************************************************************************/
|
---|
2126 |
|
---|
2127 | static int cmd_del(void)
|
---|
2128 | {
|
---|
2129 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2130 | char *mask = NULL;
|
---|
2131 | char *buf = NULL;
|
---|
2132 | uint16 attribute = aSYSTEM | aHIDDEN;
|
---|
2133 |
|
---|
2134 | if (recurse) {
|
---|
2135 | attribute |= aDIR;
|
---|
2136 | }
|
---|
2137 |
|
---|
2138 | mask = talloc_strdup(ctx, client_get_cur_dir());
|
---|
2139 | if (!mask) {
|
---|
2140 | return 1;
|
---|
2141 | }
|
---|
2142 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2143 | d_printf("del <filename>\n");
|
---|
2144 | return 1;
|
---|
2145 | }
|
---|
2146 | mask = talloc_asprintf_append(mask, "%s", buf);
|
---|
2147 | if (!mask) {
|
---|
2148 | return 1;
|
---|
2149 | }
|
---|
2150 |
|
---|
2151 | do_list(mask,attribute,do_del,false,false);
|
---|
2152 | return 0;
|
---|
2153 | }
|
---|
2154 |
|
---|
2155 | /****************************************************************************
|
---|
2156 | Wildcard delete some files.
|
---|
2157 | ****************************************************************************/
|
---|
2158 |
|
---|
2159 | static int cmd_wdel(void)
|
---|
2160 | {
|
---|
2161 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2162 | char *mask = NULL;
|
---|
2163 | char *buf = NULL;
|
---|
2164 | uint16 attribute;
|
---|
2165 | struct cli_state *targetcli;
|
---|
2166 | char *targetname = NULL;
|
---|
2167 |
|
---|
2168 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2169 | d_printf("wdel 0x<attrib> <wcard>\n");
|
---|
2170 | return 1;
|
---|
2171 | }
|
---|
2172 |
|
---|
2173 | attribute = (uint16)strtol(buf, (char **)NULL, 16);
|
---|
2174 |
|
---|
2175 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2176 | d_printf("wdel 0x<attrib> <wcard>\n");
|
---|
2177 | return 1;
|
---|
2178 | }
|
---|
2179 |
|
---|
2180 | mask = talloc_asprintf(ctx, "%s%s",
|
---|
2181 | client_get_cur_dir(),
|
---|
2182 | buf);
|
---|
2183 | if (!mask) {
|
---|
2184 | return 1;
|
---|
2185 | }
|
---|
2186 |
|
---|
2187 | if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
|
---|
2188 | d_printf("cmd_wdel %s: %s\n", mask, cli_errstr(cli));
|
---|
2189 | return 1;
|
---|
2190 | }
|
---|
2191 |
|
---|
2192 | if (!cli_unlink_full(targetcli, targetname, attribute)) {
|
---|
2193 | d_printf("%s deleting remote files %s\n",cli_errstr(targetcli),targetname);
|
---|
2194 | }
|
---|
2195 | return 0;
|
---|
2196 | }
|
---|
2197 |
|
---|
2198 | /****************************************************************************
|
---|
2199 | ****************************************************************************/
|
---|
2200 |
|
---|
2201 | static int cmd_open(void)
|
---|
2202 | {
|
---|
2203 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2204 | char *mask = NULL;
|
---|
2205 | char *buf = NULL;
|
---|
2206 | char *targetname = NULL;
|
---|
2207 | struct cli_state *targetcli;
|
---|
2208 | int fnum;
|
---|
2209 |
|
---|
2210 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2211 | d_printf("open <filename>\n");
|
---|
2212 | return 1;
|
---|
2213 | }
|
---|
2214 | mask = talloc_asprintf(ctx,
|
---|
2215 | "%s%s",
|
---|
2216 | client_get_cur_dir(),
|
---|
2217 | buf);
|
---|
2218 | if (!mask) {
|
---|
2219 | return 1;
|
---|
2220 | }
|
---|
2221 |
|
---|
2222 | if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
|
---|
2223 | d_printf("open %s: %s\n", mask, cli_errstr(cli));
|
---|
2224 | return 1;
|
---|
2225 | }
|
---|
2226 |
|
---|
2227 | fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA|FILE_WRITE_DATA);
|
---|
2228 | if (fnum == -1) {
|
---|
2229 | fnum = cli_nt_create(targetcli, targetname, FILE_READ_DATA);
|
---|
2230 | if (fnum != -1) {
|
---|
2231 | d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
|
---|
2232 | } else {
|
---|
2233 | d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
|
---|
2234 | }
|
---|
2235 | } else {
|
---|
2236 | d_printf("open file %s: for read/write fnum %d\n", targetname, fnum);
|
---|
2237 | }
|
---|
2238 | return 0;
|
---|
2239 | }
|
---|
2240 |
|
---|
2241 | static int cmd_posix_encrypt(void)
|
---|
2242 | {
|
---|
2243 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2244 | NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
|
---|
2245 |
|
---|
2246 | if (cli->use_kerberos) {
|
---|
2247 | status = cli_gss_smb_encryption_start(cli);
|
---|
2248 | } else {
|
---|
2249 | char *domain = NULL;
|
---|
2250 | char *user = NULL;
|
---|
2251 | char *password = NULL;
|
---|
2252 |
|
---|
2253 | if (!next_token_talloc(ctx, &cmd_ptr,&domain,NULL)) {
|
---|
2254 | d_printf("posix_encrypt domain user password\n");
|
---|
2255 | return 1;
|
---|
2256 | }
|
---|
2257 |
|
---|
2258 | if (!next_token_talloc(ctx, &cmd_ptr,&user,NULL)) {
|
---|
2259 | d_printf("posix_encrypt domain user password\n");
|
---|
2260 | return 1;
|
---|
2261 | }
|
---|
2262 |
|
---|
2263 | if (!next_token_talloc(ctx, &cmd_ptr,&password,NULL)) {
|
---|
2264 | d_printf("posix_encrypt domain user password\n");
|
---|
2265 | return 1;
|
---|
2266 | }
|
---|
2267 |
|
---|
2268 | status = cli_raw_ntlm_smb_encryption_start(cli,
|
---|
2269 | user,
|
---|
2270 | password,
|
---|
2271 | domain);
|
---|
2272 | }
|
---|
2273 |
|
---|
2274 | if (!NT_STATUS_IS_OK(status)) {
|
---|
2275 | d_printf("posix_encrypt failed with error %s\n", nt_errstr(status));
|
---|
2276 | } else {
|
---|
2277 | d_printf("encryption on\n");
|
---|
2278 | smb_encrypt = true;
|
---|
2279 | }
|
---|
2280 |
|
---|
2281 | return 0;
|
---|
2282 | }
|
---|
2283 |
|
---|
2284 | /****************************************************************************
|
---|
2285 | ****************************************************************************/
|
---|
2286 |
|
---|
2287 | static int cmd_posix_open(void)
|
---|
2288 | {
|
---|
2289 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2290 | char *mask = NULL;
|
---|
2291 | char *buf = NULL;
|
---|
2292 | char *targetname = NULL;
|
---|
2293 | struct cli_state *targetcli;
|
---|
2294 | mode_t mode;
|
---|
2295 | int fnum;
|
---|
2296 |
|
---|
2297 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2298 | d_printf("posix_open <filename> 0<mode>\n");
|
---|
2299 | return 1;
|
---|
2300 | }
|
---|
2301 | mask = talloc_asprintf(ctx,
|
---|
2302 | "%s%s",
|
---|
2303 | client_get_cur_dir(),
|
---|
2304 | buf);
|
---|
2305 | if (!mask) {
|
---|
2306 | return 1;
|
---|
2307 | }
|
---|
2308 |
|
---|
2309 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2310 | d_printf("posix_open <filename> 0<mode>\n");
|
---|
2311 | return 1;
|
---|
2312 | }
|
---|
2313 | mode = (mode_t)strtol(buf, (char **)NULL, 8);
|
---|
2314 |
|
---|
2315 | if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
|
---|
2316 | d_printf("posix_open %s: %s\n", mask, cli_errstr(cli));
|
---|
2317 | return 1;
|
---|
2318 | }
|
---|
2319 |
|
---|
2320 | fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDWR, mode);
|
---|
2321 | if (fnum == -1) {
|
---|
2322 | fnum = cli_posix_open(targetcli, targetname, O_CREAT|O_RDONLY, mode);
|
---|
2323 | if (fnum != -1) {
|
---|
2324 | d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
|
---|
2325 | } else {
|
---|
2326 | d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
|
---|
2327 | }
|
---|
2328 | } else {
|
---|
2329 | d_printf("posix_open file %s: for read/write fnum %d\n", targetname, fnum);
|
---|
2330 | }
|
---|
2331 |
|
---|
2332 | return 0;
|
---|
2333 | }
|
---|
2334 |
|
---|
2335 | static int cmd_posix_mkdir(void)
|
---|
2336 | {
|
---|
2337 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2338 | char *mask = NULL;
|
---|
2339 | char *buf = NULL;
|
---|
2340 | char *targetname = NULL;
|
---|
2341 | struct cli_state *targetcli;
|
---|
2342 | mode_t mode;
|
---|
2343 | int fnum;
|
---|
2344 |
|
---|
2345 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2346 | d_printf("posix_mkdir <filename> 0<mode>\n");
|
---|
2347 | return 1;
|
---|
2348 | }
|
---|
2349 | mask = talloc_asprintf(ctx,
|
---|
2350 | "%s%s",
|
---|
2351 | client_get_cur_dir(),
|
---|
2352 | buf);
|
---|
2353 | if (!mask) {
|
---|
2354 | return 1;
|
---|
2355 | }
|
---|
2356 |
|
---|
2357 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2358 | d_printf("posix_mkdir <filename> 0<mode>\n");
|
---|
2359 | return 1;
|
---|
2360 | }
|
---|
2361 | mode = (mode_t)strtol(buf, (char **)NULL, 8);
|
---|
2362 |
|
---|
2363 | if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
|
---|
2364 | d_printf("posix_mkdir %s: %s\n", mask, cli_errstr(cli));
|
---|
2365 | return 1;
|
---|
2366 | }
|
---|
2367 |
|
---|
2368 | fnum = cli_posix_mkdir(targetcli, targetname, mode);
|
---|
2369 | if (fnum == -1) {
|
---|
2370 | d_printf("Failed to open file %s. %s\n", targetname, cli_errstr(cli));
|
---|
2371 | } else {
|
---|
2372 | d_printf("posix_mkdir created directory %s\n", targetname);
|
---|
2373 | }
|
---|
2374 | return 0;
|
---|
2375 | }
|
---|
2376 |
|
---|
2377 | static int cmd_posix_unlink(void)
|
---|
2378 | {
|
---|
2379 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2380 | char *mask = NULL;
|
---|
2381 | char *buf = NULL;
|
---|
2382 | char *targetname = NULL;
|
---|
2383 | struct cli_state *targetcli;
|
---|
2384 |
|
---|
2385 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2386 | d_printf("posix_unlink <filename>\n");
|
---|
2387 | return 1;
|
---|
2388 | }
|
---|
2389 | mask = talloc_asprintf(ctx,
|
---|
2390 | "%s%s",
|
---|
2391 | client_get_cur_dir(),
|
---|
2392 | buf);
|
---|
2393 | if (!mask) {
|
---|
2394 | return 1;
|
---|
2395 | }
|
---|
2396 |
|
---|
2397 | if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
|
---|
2398 | d_printf("posix_unlink %s: %s\n", mask, cli_errstr(cli));
|
---|
2399 | return 1;
|
---|
2400 | }
|
---|
2401 |
|
---|
2402 | if (!cli_posix_unlink(targetcli, targetname)) {
|
---|
2403 | d_printf("Failed to unlink file %s. %s\n", targetname, cli_errstr(cli));
|
---|
2404 | } else {
|
---|
2405 | d_printf("posix_unlink deleted file %s\n", targetname);
|
---|
2406 | }
|
---|
2407 |
|
---|
2408 | return 0;
|
---|
2409 | }
|
---|
2410 |
|
---|
2411 | static int cmd_posix_rmdir(void)
|
---|
2412 | {
|
---|
2413 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2414 | char *mask = NULL;
|
---|
2415 | char *buf = NULL;
|
---|
2416 | char *targetname = NULL;
|
---|
2417 | struct cli_state *targetcli;
|
---|
2418 |
|
---|
2419 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2420 | d_printf("posix_rmdir <filename>\n");
|
---|
2421 | return 1;
|
---|
2422 | }
|
---|
2423 | mask = talloc_asprintf(ctx,
|
---|
2424 | "%s%s",
|
---|
2425 | client_get_cur_dir(),
|
---|
2426 | buf);
|
---|
2427 | if (!mask) {
|
---|
2428 | return 1;
|
---|
2429 | }
|
---|
2430 |
|
---|
2431 | if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
|
---|
2432 | d_printf("posix_rmdir %s: %s\n", mask, cli_errstr(cli));
|
---|
2433 | return 1;
|
---|
2434 | }
|
---|
2435 |
|
---|
2436 | if (!cli_posix_rmdir(targetcli, targetname)) {
|
---|
2437 | d_printf("Failed to unlink directory %s. %s\n", targetname, cli_errstr(cli));
|
---|
2438 | } else {
|
---|
2439 | d_printf("posix_rmdir deleted directory %s\n", targetname);
|
---|
2440 | }
|
---|
2441 |
|
---|
2442 | return 0;
|
---|
2443 | }
|
---|
2444 |
|
---|
2445 | static int cmd_close(void)
|
---|
2446 | {
|
---|
2447 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2448 | char *buf = NULL;
|
---|
2449 | int fnum;
|
---|
2450 |
|
---|
2451 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2452 | d_printf("close <fnum>\n");
|
---|
2453 | return 1;
|
---|
2454 | }
|
---|
2455 |
|
---|
2456 | fnum = atoi(buf);
|
---|
2457 | /* We really should use the targetcli here.... */
|
---|
2458 | if (!cli_close(cli, fnum)) {
|
---|
2459 | d_printf("close %d: %s\n", fnum, cli_errstr(cli));
|
---|
2460 | return 1;
|
---|
2461 | }
|
---|
2462 | return 0;
|
---|
2463 | }
|
---|
2464 |
|
---|
2465 | static int cmd_posix(void)
|
---|
2466 | {
|
---|
2467 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2468 | uint16 major, minor;
|
---|
2469 | uint32 caplow, caphigh;
|
---|
2470 | char *caps;
|
---|
2471 |
|
---|
2472 | if (!SERVER_HAS_UNIX_CIFS(cli)) {
|
---|
2473 | d_printf("Server doesn't support UNIX CIFS extensions.\n");
|
---|
2474 | return 1;
|
---|
2475 | }
|
---|
2476 |
|
---|
2477 | if (!cli_unix_extensions_version(cli, &major, &minor, &caplow, &caphigh)) {
|
---|
2478 | d_printf("Can't get UNIX CIFS extensions version from server.\n");
|
---|
2479 | return 1;
|
---|
2480 | }
|
---|
2481 |
|
---|
2482 | d_printf("Server supports CIFS extensions %u.%u\n", (unsigned int)major, (unsigned int)minor);
|
---|
2483 |
|
---|
2484 | caps = talloc_strdup(ctx, "");
|
---|
2485 | if (!caps) {
|
---|
2486 | return 1;
|
---|
2487 | }
|
---|
2488 | if (caplow & CIFS_UNIX_FCNTL_LOCKS_CAP) {
|
---|
2489 | caps = talloc_asprintf_append(caps, "locks ");
|
---|
2490 | if (!caps) {
|
---|
2491 | return 1;
|
---|
2492 | }
|
---|
2493 | }
|
---|
2494 | if (caplow & CIFS_UNIX_POSIX_ACLS_CAP) {
|
---|
2495 | caps = talloc_asprintf_append(caps, "acls ");
|
---|
2496 | if (!caps) {
|
---|
2497 | return 1;
|
---|
2498 | }
|
---|
2499 | }
|
---|
2500 | if (caplow & CIFS_UNIX_XATTTR_CAP) {
|
---|
2501 | caps = talloc_asprintf_append(caps, "eas ");
|
---|
2502 | if (!caps) {
|
---|
2503 | return 1;
|
---|
2504 | }
|
---|
2505 | }
|
---|
2506 | if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
|
---|
2507 | caps = talloc_asprintf_append(caps, "pathnames ");
|
---|
2508 | if (!caps) {
|
---|
2509 | return 1;
|
---|
2510 | }
|
---|
2511 | }
|
---|
2512 | if (caplow & CIFS_UNIX_POSIX_PATH_OPERATIONS_CAP) {
|
---|
2513 | caps = talloc_asprintf_append(caps, "posix_path_operations ");
|
---|
2514 | if (!caps) {
|
---|
2515 | return 1;
|
---|
2516 | }
|
---|
2517 | }
|
---|
2518 | if (caplow & CIFS_UNIX_LARGE_READ_CAP) {
|
---|
2519 | caps = talloc_asprintf_append(caps, "large_read ");
|
---|
2520 | if (!caps) {
|
---|
2521 | return 1;
|
---|
2522 | }
|
---|
2523 | }
|
---|
2524 | if (caplow & CIFS_UNIX_LARGE_WRITE_CAP) {
|
---|
2525 | caps = talloc_asprintf_append(caps, "large_write ");
|
---|
2526 | if (!caps) {
|
---|
2527 | return 1;
|
---|
2528 | }
|
---|
2529 | }
|
---|
2530 | if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_CAP) {
|
---|
2531 | caps = talloc_asprintf_append(caps, "posix_encrypt ");
|
---|
2532 | if (!caps) {
|
---|
2533 | return 1;
|
---|
2534 | }
|
---|
2535 | }
|
---|
2536 | if (caplow & CIFS_UNIX_TRANSPORT_ENCRYPTION_MANDATORY_CAP) {
|
---|
2537 | caps = talloc_asprintf_append(caps, "mandatory_posix_encrypt ");
|
---|
2538 | if (!caps) {
|
---|
2539 | return 1;
|
---|
2540 | }
|
---|
2541 | }
|
---|
2542 |
|
---|
2543 | if (*caps && caps[strlen(caps)-1] == ' ') {
|
---|
2544 | caps[strlen(caps)-1] = '\0';
|
---|
2545 | }
|
---|
2546 |
|
---|
2547 | d_printf("Server supports CIFS capabilities %s\n", caps);
|
---|
2548 |
|
---|
2549 | if (!cli_set_unix_extensions_capabilities(cli, major, minor, caplow, caphigh)) {
|
---|
2550 | d_printf("Can't set UNIX CIFS extensions capabilities. %s.\n", cli_errstr(cli));
|
---|
2551 | return 1;
|
---|
2552 | }
|
---|
2553 |
|
---|
2554 | if (caplow & CIFS_UNIX_POSIX_PATHNAMES_CAP) {
|
---|
2555 | CLI_DIRSEP_CHAR = '/';
|
---|
2556 | *CLI_DIRSEP_STR = '/';
|
---|
2557 | client_set_cur_dir(CLI_DIRSEP_STR);
|
---|
2558 | }
|
---|
2559 |
|
---|
2560 | return 0;
|
---|
2561 | }
|
---|
2562 |
|
---|
2563 | static int cmd_lock(void)
|
---|
2564 | {
|
---|
2565 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2566 | char *buf = NULL;
|
---|
2567 | SMB_BIG_UINT start, len;
|
---|
2568 | enum brl_type lock_type;
|
---|
2569 | int fnum;
|
---|
2570 |
|
---|
2571 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2572 | d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
|
---|
2573 | return 1;
|
---|
2574 | }
|
---|
2575 | fnum = atoi(buf);
|
---|
2576 |
|
---|
2577 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2578 | d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
|
---|
2579 | return 1;
|
---|
2580 | }
|
---|
2581 |
|
---|
2582 | if (*buf == 'r' || *buf == 'R') {
|
---|
2583 | lock_type = READ_LOCK;
|
---|
2584 | } else if (*buf == 'w' || *buf == 'W') {
|
---|
2585 | lock_type = WRITE_LOCK;
|
---|
2586 | } else {
|
---|
2587 | d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
|
---|
2588 | return 1;
|
---|
2589 | }
|
---|
2590 |
|
---|
2591 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2592 | d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
|
---|
2593 | return 1;
|
---|
2594 | }
|
---|
2595 |
|
---|
2596 | start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
|
---|
2597 |
|
---|
2598 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2599 | d_printf("lock <fnum> [r|w] <hex-start> <hex-len>\n");
|
---|
2600 | return 1;
|
---|
2601 | }
|
---|
2602 |
|
---|
2603 | len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
|
---|
2604 |
|
---|
2605 | if (!cli_posix_lock(cli, fnum, start, len, true, lock_type)) {
|
---|
2606 | d_printf("lock failed %d: %s\n", fnum, cli_errstr(cli));
|
---|
2607 | }
|
---|
2608 |
|
---|
2609 | return 0;
|
---|
2610 | }
|
---|
2611 |
|
---|
2612 | static int cmd_unlock(void)
|
---|
2613 | {
|
---|
2614 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2615 | char *buf = NULL;
|
---|
2616 | SMB_BIG_UINT start, len;
|
---|
2617 | int fnum;
|
---|
2618 |
|
---|
2619 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2620 | d_printf("unlock <fnum> <hex-start> <hex-len>\n");
|
---|
2621 | return 1;
|
---|
2622 | }
|
---|
2623 | fnum = atoi(buf);
|
---|
2624 |
|
---|
2625 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2626 | d_printf("unlock <fnum> <hex-start> <hex-len>\n");
|
---|
2627 | return 1;
|
---|
2628 | }
|
---|
2629 |
|
---|
2630 | start = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
|
---|
2631 |
|
---|
2632 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2633 | d_printf("unlock <fnum> <hex-start> <hex-len>\n");
|
---|
2634 | return 1;
|
---|
2635 | }
|
---|
2636 |
|
---|
2637 | len = (SMB_BIG_UINT)strtol(buf, (char **)NULL, 16);
|
---|
2638 |
|
---|
2639 | if (!cli_posix_unlock(cli, fnum, start, len)) {
|
---|
2640 | d_printf("unlock failed %d: %s\n", fnum, cli_errstr(cli));
|
---|
2641 | }
|
---|
2642 |
|
---|
2643 | return 0;
|
---|
2644 | }
|
---|
2645 |
|
---|
2646 |
|
---|
2647 | /****************************************************************************
|
---|
2648 | Remove a directory.
|
---|
2649 | ****************************************************************************/
|
---|
2650 |
|
---|
2651 | static int cmd_rmdir(void)
|
---|
2652 | {
|
---|
2653 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2654 | char *mask = NULL;
|
---|
2655 | char *buf = NULL;
|
---|
2656 | char *targetname = NULL;
|
---|
2657 | struct cli_state *targetcli;
|
---|
2658 |
|
---|
2659 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
2660 | d_printf("rmdir <dirname>\n");
|
---|
2661 | return 1;
|
---|
2662 | }
|
---|
2663 | mask = talloc_asprintf(ctx,
|
---|
2664 | "%s%s",
|
---|
2665 | client_get_cur_dir(),
|
---|
2666 | buf);
|
---|
2667 | if (!mask) {
|
---|
2668 | return 1;
|
---|
2669 | }
|
---|
2670 |
|
---|
2671 | if (!cli_resolve_path(ctx, "", cli, mask, &targetcli, &targetname)) {
|
---|
2672 | d_printf("rmdir %s: %s\n", mask, cli_errstr(cli));
|
---|
2673 | return 1;
|
---|
2674 | }
|
---|
2675 |
|
---|
2676 | if (!cli_rmdir(targetcli, targetname)) {
|
---|
2677 | d_printf("%s removing remote directory file %s\n",
|
---|
2678 | cli_errstr(targetcli),mask);
|
---|
2679 | }
|
---|
2680 |
|
---|
2681 | return 0;
|
---|
2682 | }
|
---|
2683 |
|
---|
2684 | /****************************************************************************
|
---|
2685 | UNIX hardlink.
|
---|
2686 | ****************************************************************************/
|
---|
2687 |
|
---|
2688 | static int cmd_link(void)
|
---|
2689 | {
|
---|
2690 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2691 | char *oldname = NULL;
|
---|
2692 | char *newname = NULL;
|
---|
2693 | char *buf = NULL;
|
---|
2694 | char *buf2 = NULL;
|
---|
2695 | char *targetname = NULL;
|
---|
2696 | struct cli_state *targetcli;
|
---|
2697 |
|
---|
2698 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
|
---|
2699 | !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
|
---|
2700 | d_printf("link <oldname> <newname>\n");
|
---|
2701 | return 1;
|
---|
2702 | }
|
---|
2703 | oldname = talloc_asprintf(ctx,
|
---|
2704 | "%s%s",
|
---|
2705 | client_get_cur_dir(),
|
---|
2706 | buf);
|
---|
2707 | if (!oldname) {
|
---|
2708 | return 1;
|
---|
2709 | }
|
---|
2710 | newname = talloc_asprintf(ctx,
|
---|
2711 | "%s%s",
|
---|
2712 | client_get_cur_dir(),
|
---|
2713 | buf2);
|
---|
2714 | if (!newname) {
|
---|
2715 | return 1;
|
---|
2716 | }
|
---|
2717 |
|
---|
2718 | if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
|
---|
2719 | d_printf("link %s: %s\n", oldname, cli_errstr(cli));
|
---|
2720 | return 1;
|
---|
2721 | }
|
---|
2722 |
|
---|
2723 | if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
|
---|
2724 | d_printf("Server doesn't support UNIX CIFS calls.\n");
|
---|
2725 | return 1;
|
---|
2726 | }
|
---|
2727 |
|
---|
2728 | if (!cli_unix_hardlink(targetcli, targetname, newname)) {
|
---|
2729 | d_printf("%s linking files (%s -> %s)\n", cli_errstr(targetcli), newname, oldname);
|
---|
2730 | return 1;
|
---|
2731 | }
|
---|
2732 | return 0;
|
---|
2733 | }
|
---|
2734 |
|
---|
2735 | /****************************************************************************
|
---|
2736 | UNIX symlink.
|
---|
2737 | ****************************************************************************/
|
---|
2738 |
|
---|
2739 | static int cmd_symlink(void)
|
---|
2740 | {
|
---|
2741 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2742 | char *oldname = NULL;
|
---|
2743 | char *newname = NULL;
|
---|
2744 | char *buf = NULL;
|
---|
2745 | char *buf2 = NULL;
|
---|
2746 | char *targetname = NULL;
|
---|
2747 | struct cli_state *targetcli;
|
---|
2748 |
|
---|
2749 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
|
---|
2750 | !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
|
---|
2751 | d_printf("symlink <oldname> <newname>\n");
|
---|
2752 | return 1;
|
---|
2753 | }
|
---|
2754 | oldname = talloc_asprintf(ctx,
|
---|
2755 | "%s%s",
|
---|
2756 | client_get_cur_dir(),
|
---|
2757 | buf);
|
---|
2758 | if (!oldname) {
|
---|
2759 | return 1;
|
---|
2760 | }
|
---|
2761 | newname = talloc_asprintf(ctx,
|
---|
2762 | "%s%s",
|
---|
2763 | client_get_cur_dir(),
|
---|
2764 | buf2);
|
---|
2765 | if (!newname) {
|
---|
2766 | return 1;
|
---|
2767 | }
|
---|
2768 |
|
---|
2769 | if (!cli_resolve_path(ctx, "", cli, oldname, &targetcli, &targetname)) {
|
---|
2770 | d_printf("link %s: %s\n", oldname, cli_errstr(cli));
|
---|
2771 | return 1;
|
---|
2772 | }
|
---|
2773 |
|
---|
2774 | if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
|
---|
2775 | d_printf("Server doesn't support UNIX CIFS calls.\n");
|
---|
2776 | return 1;
|
---|
2777 | }
|
---|
2778 |
|
---|
2779 | if (!cli_unix_symlink(targetcli, targetname, newname)) {
|
---|
2780 | d_printf("%s symlinking files (%s -> %s)\n",
|
---|
2781 | cli_errstr(targetcli), newname, targetname);
|
---|
2782 | return 1;
|
---|
2783 | }
|
---|
2784 |
|
---|
2785 | return 0;
|
---|
2786 | }
|
---|
2787 |
|
---|
2788 | /****************************************************************************
|
---|
2789 | UNIX chmod.
|
---|
2790 | ****************************************************************************/
|
---|
2791 |
|
---|
2792 | static int cmd_chmod(void)
|
---|
2793 | {
|
---|
2794 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2795 | char *src = NULL;
|
---|
2796 | char *buf = NULL;
|
---|
2797 | char *buf2 = NULL;
|
---|
2798 | char *targetname = NULL;
|
---|
2799 | struct cli_state *targetcli;
|
---|
2800 | mode_t mode;
|
---|
2801 |
|
---|
2802 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
|
---|
2803 | !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
|
---|
2804 | d_printf("chmod mode file\n");
|
---|
2805 | return 1;
|
---|
2806 | }
|
---|
2807 | src = talloc_asprintf(ctx,
|
---|
2808 | "%s%s",
|
---|
2809 | client_get_cur_dir(),
|
---|
2810 | buf2);
|
---|
2811 | if (!src) {
|
---|
2812 | return 1;
|
---|
2813 | }
|
---|
2814 |
|
---|
2815 | mode = (mode_t)strtol(buf, NULL, 8);
|
---|
2816 |
|
---|
2817 | if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
|
---|
2818 | d_printf("chmod %s: %s\n", src, cli_errstr(cli));
|
---|
2819 | return 1;
|
---|
2820 | }
|
---|
2821 |
|
---|
2822 | if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
|
---|
2823 | d_printf("Server doesn't support UNIX CIFS calls.\n");
|
---|
2824 | return 1;
|
---|
2825 | }
|
---|
2826 |
|
---|
2827 | if (!cli_unix_chmod(targetcli, targetname, mode)) {
|
---|
2828 | d_printf("%s chmod file %s 0%o\n",
|
---|
2829 | cli_errstr(targetcli), src, (unsigned int)mode);
|
---|
2830 | return 1;
|
---|
2831 | }
|
---|
2832 |
|
---|
2833 | return 0;
|
---|
2834 | }
|
---|
2835 |
|
---|
2836 | static const char *filetype_to_str(mode_t mode)
|
---|
2837 | {
|
---|
2838 | if (S_ISREG(mode)) {
|
---|
2839 | return "regular file";
|
---|
2840 | } else if (S_ISDIR(mode)) {
|
---|
2841 | return "directory";
|
---|
2842 | } else
|
---|
2843 | #ifdef S_ISCHR
|
---|
2844 | if (S_ISCHR(mode)) {
|
---|
2845 | return "character device";
|
---|
2846 | } else
|
---|
2847 | #endif
|
---|
2848 | #ifdef S_ISBLK
|
---|
2849 | if (S_ISBLK(mode)) {
|
---|
2850 | return "block device";
|
---|
2851 | } else
|
---|
2852 | #endif
|
---|
2853 | #ifdef S_ISFIFO
|
---|
2854 | if (S_ISFIFO(mode)) {
|
---|
2855 | return "fifo";
|
---|
2856 | } else
|
---|
2857 | #endif
|
---|
2858 | #ifdef S_ISLNK
|
---|
2859 | if (S_ISLNK(mode)) {
|
---|
2860 | return "symbolic link";
|
---|
2861 | } else
|
---|
2862 | #endif
|
---|
2863 | #ifdef S_ISSOCK
|
---|
2864 | if (S_ISSOCK(mode)) {
|
---|
2865 | return "socket";
|
---|
2866 | } else
|
---|
2867 | #endif
|
---|
2868 | return "";
|
---|
2869 | }
|
---|
2870 |
|
---|
2871 | static char rwx_to_str(mode_t m, mode_t bt, char ret)
|
---|
2872 | {
|
---|
2873 | if (m & bt) {
|
---|
2874 | return ret;
|
---|
2875 | } else {
|
---|
2876 | return '-';
|
---|
2877 | }
|
---|
2878 | }
|
---|
2879 |
|
---|
2880 | static char *unix_mode_to_str(char *s, mode_t m)
|
---|
2881 | {
|
---|
2882 | char *p = s;
|
---|
2883 | const char *str = filetype_to_str(m);
|
---|
2884 |
|
---|
2885 | switch(str[0]) {
|
---|
2886 | case 'd':
|
---|
2887 | *p++ = 'd';
|
---|
2888 | break;
|
---|
2889 | case 'c':
|
---|
2890 | *p++ = 'c';
|
---|
2891 | break;
|
---|
2892 | case 'b':
|
---|
2893 | *p++ = 'b';
|
---|
2894 | break;
|
---|
2895 | case 'f':
|
---|
2896 | *p++ = 'p';
|
---|
2897 | break;
|
---|
2898 | case 's':
|
---|
2899 | *p++ = str[1] == 'y' ? 'l' : 's';
|
---|
2900 | break;
|
---|
2901 | case 'r':
|
---|
2902 | default:
|
---|
2903 | *p++ = '-';
|
---|
2904 | break;
|
---|
2905 | }
|
---|
2906 | *p++ = rwx_to_str(m, S_IRUSR, 'r');
|
---|
2907 | *p++ = rwx_to_str(m, S_IWUSR, 'w');
|
---|
2908 | *p++ = rwx_to_str(m, S_IXUSR, 'x');
|
---|
2909 | *p++ = rwx_to_str(m, S_IRGRP, 'r');
|
---|
2910 | *p++ = rwx_to_str(m, S_IWGRP, 'w');
|
---|
2911 | *p++ = rwx_to_str(m, S_IXGRP, 'x');
|
---|
2912 | *p++ = rwx_to_str(m, S_IROTH, 'r');
|
---|
2913 | *p++ = rwx_to_str(m, S_IWOTH, 'w');
|
---|
2914 | *p++ = rwx_to_str(m, S_IXOTH, 'x');
|
---|
2915 | *p++ = '\0';
|
---|
2916 | return s;
|
---|
2917 | }
|
---|
2918 |
|
---|
2919 | /****************************************************************************
|
---|
2920 | Utility function for UNIX getfacl.
|
---|
2921 | ****************************************************************************/
|
---|
2922 |
|
---|
2923 | static char *perms_to_string(fstring permstr, unsigned char perms)
|
---|
2924 | {
|
---|
2925 | fstrcpy(permstr, "---");
|
---|
2926 | if (perms & SMB_POSIX_ACL_READ) {
|
---|
2927 | permstr[0] = 'r';
|
---|
2928 | }
|
---|
2929 | if (perms & SMB_POSIX_ACL_WRITE) {
|
---|
2930 | permstr[1] = 'w';
|
---|
2931 | }
|
---|
2932 | if (perms & SMB_POSIX_ACL_EXECUTE) {
|
---|
2933 | permstr[2] = 'x';
|
---|
2934 | }
|
---|
2935 | return permstr;
|
---|
2936 | }
|
---|
2937 |
|
---|
2938 | /****************************************************************************
|
---|
2939 | UNIX getfacl.
|
---|
2940 | ****************************************************************************/
|
---|
2941 |
|
---|
2942 | static int cmd_getfacl(void)
|
---|
2943 | {
|
---|
2944 | TALLOC_CTX *ctx = talloc_tos();
|
---|
2945 | char *src = NULL;
|
---|
2946 | char *name = NULL;
|
---|
2947 | char *targetname = NULL;
|
---|
2948 | struct cli_state *targetcli;
|
---|
2949 | uint16 major, minor;
|
---|
2950 | uint32 caplow, caphigh;
|
---|
2951 | char *retbuf = NULL;
|
---|
2952 | size_t rb_size = 0;
|
---|
2953 | SMB_STRUCT_STAT sbuf;
|
---|
2954 | uint16 num_file_acls = 0;
|
---|
2955 | uint16 num_dir_acls = 0;
|
---|
2956 | uint16 i;
|
---|
2957 |
|
---|
2958 | if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
|
---|
2959 | d_printf("getfacl filename\n");
|
---|
2960 | return 1;
|
---|
2961 | }
|
---|
2962 | src = talloc_asprintf(ctx,
|
---|
2963 | "%s%s",
|
---|
2964 | client_get_cur_dir(),
|
---|
2965 | name);
|
---|
2966 | if (!src) {
|
---|
2967 | return 1;
|
---|
2968 | }
|
---|
2969 |
|
---|
2970 | if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
|
---|
2971 | d_printf("stat %s: %s\n", src, cli_errstr(cli));
|
---|
2972 | return 1;
|
---|
2973 | }
|
---|
2974 |
|
---|
2975 | if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
|
---|
2976 | d_printf("Server doesn't support UNIX CIFS calls.\n");
|
---|
2977 | return 1;
|
---|
2978 | }
|
---|
2979 |
|
---|
2980 | if (!cli_unix_extensions_version(targetcli, &major, &minor,
|
---|
2981 | &caplow, &caphigh)) {
|
---|
2982 | d_printf("Can't get UNIX CIFS version from server.\n");
|
---|
2983 | return 1;
|
---|
2984 | }
|
---|
2985 |
|
---|
2986 | if (!(caplow & CIFS_UNIX_POSIX_ACLS_CAP)) {
|
---|
2987 | d_printf("This server supports UNIX extensions "
|
---|
2988 | "but doesn't support POSIX ACLs.\n");
|
---|
2989 | return 1;
|
---|
2990 | }
|
---|
2991 |
|
---|
2992 | if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
|
---|
2993 | d_printf("%s getfacl doing a stat on file %s\n",
|
---|
2994 | cli_errstr(targetcli), src);
|
---|
2995 | return 1;
|
---|
2996 | }
|
---|
2997 |
|
---|
2998 | if (!cli_unix_getfacl(targetcli, targetname, &rb_size, &retbuf)) {
|
---|
2999 | d_printf("%s getfacl file %s\n",
|
---|
3000 | cli_errstr(targetcli), src);
|
---|
3001 | return 1;
|
---|
3002 | }
|
---|
3003 |
|
---|
3004 | /* ToDo : Print out the ACL values. */
|
---|
3005 | if (SVAL(retbuf,0) != SMB_POSIX_ACL_VERSION || rb_size < 6) {
|
---|
3006 | d_printf("getfacl file %s, unknown POSIX acl version %u.\n",
|
---|
3007 | src, (unsigned int)CVAL(retbuf,0) );
|
---|
3008 | SAFE_FREE(retbuf);
|
---|
3009 | return 1;
|
---|
3010 | }
|
---|
3011 |
|
---|
3012 | num_file_acls = SVAL(retbuf,2);
|
---|
3013 | num_dir_acls = SVAL(retbuf,4);
|
---|
3014 | if (rb_size != SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)) {
|
---|
3015 | d_printf("getfacl file %s, incorrect POSIX acl buffer size (should be %u, was %u).\n",
|
---|
3016 | src,
|
---|
3017 | (unsigned int)(SMB_POSIX_ACL_HEADER_SIZE + SMB_POSIX_ACL_ENTRY_SIZE*(num_file_acls+num_dir_acls)),
|
---|
3018 | (unsigned int)rb_size);
|
---|
3019 |
|
---|
3020 | SAFE_FREE(retbuf);
|
---|
3021 | return 1;
|
---|
3022 | }
|
---|
3023 |
|
---|
3024 | d_printf("# file: %s\n", src);
|
---|
3025 | d_printf("# owner: %u\n# group: %u\n", (unsigned int)sbuf.st_uid, (unsigned int)sbuf.st_gid);
|
---|
3026 |
|
---|
3027 | if (num_file_acls == 0 && num_dir_acls == 0) {
|
---|
3028 | d_printf("No acls found.\n");
|
---|
3029 | }
|
---|
3030 |
|
---|
3031 | for (i = 0; i < num_file_acls; i++) {
|
---|
3032 | uint32 uorg;
|
---|
3033 | fstring permstring;
|
---|
3034 | unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE));
|
---|
3035 | unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+1);
|
---|
3036 |
|
---|
3037 | switch(tagtype) {
|
---|
3038 | case SMB_POSIX_ACL_USER_OBJ:
|
---|
3039 | d_printf("user::");
|
---|
3040 | break;
|
---|
3041 | case SMB_POSIX_ACL_USER:
|
---|
3042 | uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
|
---|
3043 | d_printf("user:%u:", uorg);
|
---|
3044 | break;
|
---|
3045 | case SMB_POSIX_ACL_GROUP_OBJ:
|
---|
3046 | d_printf("group::");
|
---|
3047 | break;
|
---|
3048 | case SMB_POSIX_ACL_GROUP:
|
---|
3049 | uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
|
---|
3050 | d_printf("group:%u:", uorg);
|
---|
3051 | break;
|
---|
3052 | case SMB_POSIX_ACL_MASK:
|
---|
3053 | d_printf("mask::");
|
---|
3054 | break;
|
---|
3055 | case SMB_POSIX_ACL_OTHER:
|
---|
3056 | d_printf("other::");
|
---|
3057 | break;
|
---|
3058 | default:
|
---|
3059 | d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
|
---|
3060 | src, (unsigned int)tagtype );
|
---|
3061 | SAFE_FREE(retbuf);
|
---|
3062 | return 1;
|
---|
3063 | }
|
---|
3064 |
|
---|
3065 | d_printf("%s\n", perms_to_string(permstring, perms));
|
---|
3066 | }
|
---|
3067 |
|
---|
3068 | for (i = 0; i < num_dir_acls; i++) {
|
---|
3069 | uint32 uorg;
|
---|
3070 | fstring permstring;
|
---|
3071 | unsigned char tagtype = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE));
|
---|
3072 | unsigned char perms = CVAL(retbuf, SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+1);
|
---|
3073 |
|
---|
3074 | switch(tagtype) {
|
---|
3075 | case SMB_POSIX_ACL_USER_OBJ:
|
---|
3076 | d_printf("default:user::");
|
---|
3077 | break;
|
---|
3078 | case SMB_POSIX_ACL_USER:
|
---|
3079 | uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
|
---|
3080 | d_printf("default:user:%u:", uorg);
|
---|
3081 | break;
|
---|
3082 | case SMB_POSIX_ACL_GROUP_OBJ:
|
---|
3083 | d_printf("default:group::");
|
---|
3084 | break;
|
---|
3085 | case SMB_POSIX_ACL_GROUP:
|
---|
3086 | uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
|
---|
3087 | d_printf("default:group:%u:", uorg);
|
---|
3088 | break;
|
---|
3089 | case SMB_POSIX_ACL_MASK:
|
---|
3090 | d_printf("default:mask::");
|
---|
3091 | break;
|
---|
3092 | case SMB_POSIX_ACL_OTHER:
|
---|
3093 | d_printf("default:other::");
|
---|
3094 | break;
|
---|
3095 | default:
|
---|
3096 | d_printf("getfacl file %s, incorrect POSIX acl tagtype (%u).\n",
|
---|
3097 | src, (unsigned int)tagtype );
|
---|
3098 | SAFE_FREE(retbuf);
|
---|
3099 | return 1;
|
---|
3100 | }
|
---|
3101 |
|
---|
3102 | d_printf("%s\n", perms_to_string(permstring, perms));
|
---|
3103 | }
|
---|
3104 |
|
---|
3105 | SAFE_FREE(retbuf);
|
---|
3106 | return 0;
|
---|
3107 | }
|
---|
3108 |
|
---|
3109 | /****************************************************************************
|
---|
3110 | UNIX stat.
|
---|
3111 | ****************************************************************************/
|
---|
3112 |
|
---|
3113 | static int cmd_stat(void)
|
---|
3114 | {
|
---|
3115 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3116 | char *src = NULL;
|
---|
3117 | char *name = NULL;
|
---|
3118 | char *targetname = NULL;
|
---|
3119 | struct cli_state *targetcli;
|
---|
3120 | fstring mode_str;
|
---|
3121 | SMB_STRUCT_STAT sbuf;
|
---|
3122 | struct tm *lt;
|
---|
3123 |
|
---|
3124 | if (!next_token_talloc(ctx, &cmd_ptr,&name,NULL)) {
|
---|
3125 | d_printf("stat file\n");
|
---|
3126 | return 1;
|
---|
3127 | }
|
---|
3128 | src = talloc_asprintf(ctx,
|
---|
3129 | "%s%s",
|
---|
3130 | client_get_cur_dir(),
|
---|
3131 | name);
|
---|
3132 | if (!src) {
|
---|
3133 | return 1;
|
---|
3134 | }
|
---|
3135 |
|
---|
3136 | if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
|
---|
3137 | d_printf("stat %s: %s\n", src, cli_errstr(cli));
|
---|
3138 | return 1;
|
---|
3139 | }
|
---|
3140 |
|
---|
3141 | if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
|
---|
3142 | d_printf("Server doesn't support UNIX CIFS calls.\n");
|
---|
3143 | return 1;
|
---|
3144 | }
|
---|
3145 |
|
---|
3146 | if (!cli_unix_stat(targetcli, targetname, &sbuf)) {
|
---|
3147 | d_printf("%s stat file %s\n",
|
---|
3148 | cli_errstr(targetcli), src);
|
---|
3149 | return 1;
|
---|
3150 | }
|
---|
3151 |
|
---|
3152 | /* Print out the stat values. */
|
---|
3153 | d_printf("File: %s\n", src);
|
---|
3154 | d_printf("Size: %-12.0f\tBlocks: %u\t%s\n",
|
---|
3155 | (double)sbuf.st_size,
|
---|
3156 | (unsigned int)sbuf.st_blocks,
|
---|
3157 | filetype_to_str(sbuf.st_mode));
|
---|
3158 |
|
---|
3159 | #if defined(S_ISCHR) && defined(S_ISBLK)
|
---|
3160 | if (S_ISCHR(sbuf.st_mode) || S_ISBLK(sbuf.st_mode)) {
|
---|
3161 | d_printf("Inode: %.0f\tLinks: %u\tDevice type: %u,%u\n",
|
---|
3162 | (double)sbuf.st_ino,
|
---|
3163 | (unsigned int)sbuf.st_nlink,
|
---|
3164 | unix_dev_major(sbuf.st_rdev),
|
---|
3165 | unix_dev_minor(sbuf.st_rdev));
|
---|
3166 | } else
|
---|
3167 | #endif
|
---|
3168 | d_printf("Inode: %.0f\tLinks: %u\n",
|
---|
3169 | (double)sbuf.st_ino,
|
---|
3170 | (unsigned int)sbuf.st_nlink);
|
---|
3171 |
|
---|
3172 | d_printf("Access: (0%03o/%s)\tUid: %u\tGid: %u\n",
|
---|
3173 | ((int)sbuf.st_mode & 0777),
|
---|
3174 | unix_mode_to_str(mode_str, sbuf.st_mode),
|
---|
3175 | (unsigned int)sbuf.st_uid,
|
---|
3176 | (unsigned int)sbuf.st_gid);
|
---|
3177 |
|
---|
3178 | lt = localtime(&sbuf.st_atime);
|
---|
3179 | if (lt) {
|
---|
3180 | strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
|
---|
3181 | } else {
|
---|
3182 | fstrcpy(mode_str, "unknown");
|
---|
3183 | }
|
---|
3184 | d_printf("Access: %s\n", mode_str);
|
---|
3185 |
|
---|
3186 | lt = localtime(&sbuf.st_mtime);
|
---|
3187 | if (lt) {
|
---|
3188 | strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
|
---|
3189 | } else {
|
---|
3190 | fstrcpy(mode_str, "unknown");
|
---|
3191 | }
|
---|
3192 | d_printf("Modify: %s\n", mode_str);
|
---|
3193 |
|
---|
3194 | lt = localtime(&sbuf.st_ctime);
|
---|
3195 | if (lt) {
|
---|
3196 | strftime(mode_str, sizeof(mode_str), "%Y-%m-%d %T %z", lt);
|
---|
3197 | } else {
|
---|
3198 | fstrcpy(mode_str, "unknown");
|
---|
3199 | }
|
---|
3200 | d_printf("Change: %s\n", mode_str);
|
---|
3201 |
|
---|
3202 | return 0;
|
---|
3203 | }
|
---|
3204 |
|
---|
3205 |
|
---|
3206 | /****************************************************************************
|
---|
3207 | UNIX chown.
|
---|
3208 | ****************************************************************************/
|
---|
3209 |
|
---|
3210 | static int cmd_chown(void)
|
---|
3211 | {
|
---|
3212 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3213 | char *src = NULL;
|
---|
3214 | uid_t uid;
|
---|
3215 | gid_t gid;
|
---|
3216 | char *buf, *buf2, *buf3;
|
---|
3217 | struct cli_state *targetcli;
|
---|
3218 | char *targetname = NULL;
|
---|
3219 |
|
---|
3220 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
|
---|
3221 | !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL) ||
|
---|
3222 | !next_token_talloc(ctx, &cmd_ptr,&buf3,NULL)) {
|
---|
3223 | d_printf("chown uid gid file\n");
|
---|
3224 | return 1;
|
---|
3225 | }
|
---|
3226 |
|
---|
3227 | uid = (uid_t)atoi(buf);
|
---|
3228 | gid = (gid_t)atoi(buf2);
|
---|
3229 |
|
---|
3230 | src = talloc_asprintf(ctx,
|
---|
3231 | "%s%s",
|
---|
3232 | client_get_cur_dir(),
|
---|
3233 | buf3);
|
---|
3234 | if (!src) {
|
---|
3235 | return 1;
|
---|
3236 | }
|
---|
3237 | if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname) ) {
|
---|
3238 | d_printf("chown %s: %s\n", src, cli_errstr(cli));
|
---|
3239 | return 1;
|
---|
3240 | }
|
---|
3241 |
|
---|
3242 | if (!SERVER_HAS_UNIX_CIFS(targetcli)) {
|
---|
3243 | d_printf("Server doesn't support UNIX CIFS calls.\n");
|
---|
3244 | return 1;
|
---|
3245 | }
|
---|
3246 |
|
---|
3247 | if (!cli_unix_chown(targetcli, targetname, uid, gid)) {
|
---|
3248 | d_printf("%s chown file %s uid=%d, gid=%d\n",
|
---|
3249 | cli_errstr(targetcli), src, (int)uid, (int)gid);
|
---|
3250 | return 1;
|
---|
3251 | }
|
---|
3252 |
|
---|
3253 | return 0;
|
---|
3254 | }
|
---|
3255 |
|
---|
3256 | /****************************************************************************
|
---|
3257 | Rename some file.
|
---|
3258 | ****************************************************************************/
|
---|
3259 |
|
---|
3260 | static int cmd_rename(void)
|
---|
3261 | {
|
---|
3262 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3263 | char *src, *dest;
|
---|
3264 | char *buf, *buf2;
|
---|
3265 | struct cli_state *targetcli;
|
---|
3266 | char *targetsrc;
|
---|
3267 | char *targetdest;
|
---|
3268 |
|
---|
3269 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
|
---|
3270 | !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
|
---|
3271 | d_printf("rename <src> <dest>\n");
|
---|
3272 | return 1;
|
---|
3273 | }
|
---|
3274 |
|
---|
3275 | src = talloc_asprintf(ctx,
|
---|
3276 | "%s%s",
|
---|
3277 | client_get_cur_dir(),
|
---|
3278 | buf);
|
---|
3279 | if (!src) {
|
---|
3280 | return 1;
|
---|
3281 | }
|
---|
3282 |
|
---|
3283 | dest = talloc_asprintf(ctx,
|
---|
3284 | "%s%s",
|
---|
3285 | client_get_cur_dir(),
|
---|
3286 | buf2);
|
---|
3287 | if (!dest) {
|
---|
3288 | return 1;
|
---|
3289 | }
|
---|
3290 |
|
---|
3291 | if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetsrc)) {
|
---|
3292 | d_printf("rename %s: %s\n", src, cli_errstr(cli));
|
---|
3293 | return 1;
|
---|
3294 | }
|
---|
3295 |
|
---|
3296 | if (!cli_resolve_path(ctx, "", cli, dest, &targetcli, &targetdest)) {
|
---|
3297 | d_printf("rename %s: %s\n", dest, cli_errstr(cli));
|
---|
3298 | return 1;
|
---|
3299 | }
|
---|
3300 |
|
---|
3301 | if (!cli_rename(targetcli, targetsrc, targetdest)) {
|
---|
3302 | d_printf("%s renaming files %s -> %s \n",
|
---|
3303 | cli_errstr(targetcli),
|
---|
3304 | targetsrc,
|
---|
3305 | targetdest);
|
---|
3306 | return 1;
|
---|
3307 | }
|
---|
3308 |
|
---|
3309 | return 0;
|
---|
3310 | }
|
---|
3311 |
|
---|
3312 | /****************************************************************************
|
---|
3313 | Print the volume name.
|
---|
3314 | ****************************************************************************/
|
---|
3315 |
|
---|
3316 | static int cmd_volume(void)
|
---|
3317 | {
|
---|
3318 | fstring volname;
|
---|
3319 | uint32 serial_num;
|
---|
3320 | time_t create_date;
|
---|
3321 |
|
---|
3322 | if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) {
|
---|
3323 | d_printf("Errr %s getting volume info\n",cli_errstr(cli));
|
---|
3324 | return 1;
|
---|
3325 | }
|
---|
3326 |
|
---|
3327 | d_printf("Volume: |%s| serial number 0x%x\n",
|
---|
3328 | volname, (unsigned int)serial_num);
|
---|
3329 | return 0;
|
---|
3330 | }
|
---|
3331 |
|
---|
3332 | /****************************************************************************
|
---|
3333 | Hard link files using the NT call.
|
---|
3334 | ****************************************************************************/
|
---|
3335 |
|
---|
3336 | static int cmd_hardlink(void)
|
---|
3337 | {
|
---|
3338 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3339 | char *src, *dest;
|
---|
3340 | char *buf, *buf2;
|
---|
3341 | struct cli_state *targetcli;
|
---|
3342 | char *targetname;
|
---|
3343 |
|
---|
3344 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL) ||
|
---|
3345 | !next_token_talloc(ctx, &cmd_ptr,&buf2,NULL)) {
|
---|
3346 | d_printf("hardlink <src> <dest>\n");
|
---|
3347 | return 1;
|
---|
3348 | }
|
---|
3349 |
|
---|
3350 | src = talloc_asprintf(ctx,
|
---|
3351 | "%s%s",
|
---|
3352 | client_get_cur_dir(),
|
---|
3353 | buf);
|
---|
3354 | if (!src) {
|
---|
3355 | return 1;
|
---|
3356 | }
|
---|
3357 |
|
---|
3358 | dest = talloc_asprintf(ctx,
|
---|
3359 | "%s%s",
|
---|
3360 | client_get_cur_dir(),
|
---|
3361 | buf2);
|
---|
3362 | if (!dest) {
|
---|
3363 | return 1;
|
---|
3364 | }
|
---|
3365 |
|
---|
3366 | if (!cli_resolve_path(ctx, "", cli, src, &targetcli, &targetname)) {
|
---|
3367 | d_printf("hardlink %s: %s\n", src, cli_errstr(cli));
|
---|
3368 | return 1;
|
---|
3369 | }
|
---|
3370 |
|
---|
3371 | if (!cli_nt_hardlink(targetcli, targetname, dest)) {
|
---|
3372 | d_printf("%s doing an NT hard link of files\n",cli_errstr(targetcli));
|
---|
3373 | return 1;
|
---|
3374 | }
|
---|
3375 |
|
---|
3376 | return 0;
|
---|
3377 | }
|
---|
3378 |
|
---|
3379 | /****************************************************************************
|
---|
3380 | Toggle the prompt flag.
|
---|
3381 | ****************************************************************************/
|
---|
3382 |
|
---|
3383 | static int cmd_prompt(void)
|
---|
3384 | {
|
---|
3385 | prompt = !prompt;
|
---|
3386 | DEBUG(2,("prompting is now %s\n",prompt?"on":"off"));
|
---|
3387 | return 1;
|
---|
3388 | }
|
---|
3389 |
|
---|
3390 | /****************************************************************************
|
---|
3391 | Set the newer than time.
|
---|
3392 | ****************************************************************************/
|
---|
3393 |
|
---|
3394 | static int cmd_newer(void)
|
---|
3395 | {
|
---|
3396 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3397 | char *buf;
|
---|
3398 | bool ok;
|
---|
3399 | SMB_STRUCT_STAT sbuf;
|
---|
3400 |
|
---|
3401 | ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL);
|
---|
3402 | if (ok && (sys_stat(buf,&sbuf) == 0)) {
|
---|
3403 | newer_than = sbuf.st_mtime;
|
---|
3404 | DEBUG(1,("Getting files newer than %s",
|
---|
3405 | time_to_asc(newer_than)));
|
---|
3406 | } else {
|
---|
3407 | newer_than = 0;
|
---|
3408 | }
|
---|
3409 |
|
---|
3410 | if (ok && newer_than == 0) {
|
---|
3411 | d_printf("Error setting newer-than time\n");
|
---|
3412 | return 1;
|
---|
3413 | }
|
---|
3414 |
|
---|
3415 | return 0;
|
---|
3416 | }
|
---|
3417 |
|
---|
3418 | /****************************************************************************
|
---|
3419 | Set the archive level.
|
---|
3420 | ****************************************************************************/
|
---|
3421 |
|
---|
3422 | static int cmd_archive(void)
|
---|
3423 | {
|
---|
3424 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3425 | char *buf;
|
---|
3426 |
|
---|
3427 | if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
3428 | archive_level = atoi(buf);
|
---|
3429 | } else {
|
---|
3430 | d_printf("Archive level is %d\n",archive_level);
|
---|
3431 | }
|
---|
3432 |
|
---|
3433 | return 0;
|
---|
3434 | }
|
---|
3435 |
|
---|
3436 | /****************************************************************************
|
---|
3437 | Toggle the lowercaseflag.
|
---|
3438 | ****************************************************************************/
|
---|
3439 |
|
---|
3440 | static int cmd_lowercase(void)
|
---|
3441 | {
|
---|
3442 | lowercase = !lowercase;
|
---|
3443 | DEBUG(2,("filename lowercasing is now %s\n",lowercase?"on":"off"));
|
---|
3444 | return 0;
|
---|
3445 | }
|
---|
3446 |
|
---|
3447 | /****************************************************************************
|
---|
3448 | Toggle the case sensitive flag.
|
---|
3449 | ****************************************************************************/
|
---|
3450 |
|
---|
3451 | static int cmd_setcase(void)
|
---|
3452 | {
|
---|
3453 | bool orig_case_sensitive = cli_set_case_sensitive(cli, false);
|
---|
3454 |
|
---|
3455 | cli_set_case_sensitive(cli, !orig_case_sensitive);
|
---|
3456 | DEBUG(2,("filename case sensitivity is now %s\n",!orig_case_sensitive ?
|
---|
3457 | "on":"off"));
|
---|
3458 | return 0;
|
---|
3459 | }
|
---|
3460 |
|
---|
3461 | /****************************************************************************
|
---|
3462 | Toggle the showacls flag.
|
---|
3463 | ****************************************************************************/
|
---|
3464 |
|
---|
3465 | static int cmd_showacls(void)
|
---|
3466 | {
|
---|
3467 | showacls = !showacls;
|
---|
3468 | DEBUG(2,("showacls is now %s\n",showacls?"on":"off"));
|
---|
3469 | return 0;
|
---|
3470 | }
|
---|
3471 |
|
---|
3472 |
|
---|
3473 | /****************************************************************************
|
---|
3474 | Toggle the recurse flag.
|
---|
3475 | ****************************************************************************/
|
---|
3476 |
|
---|
3477 | static int cmd_recurse(void)
|
---|
3478 | {
|
---|
3479 | recurse = !recurse;
|
---|
3480 | DEBUG(2,("directory recursion is now %s\n",recurse?"on":"off"));
|
---|
3481 | return 0;
|
---|
3482 | }
|
---|
3483 |
|
---|
3484 | /****************************************************************************
|
---|
3485 | Toggle the translate flag.
|
---|
3486 | ****************************************************************************/
|
---|
3487 |
|
---|
3488 | static int cmd_translate(void)
|
---|
3489 | {
|
---|
3490 | translation = !translation;
|
---|
3491 | DEBUG(2,("CR/LF<->LF and print text translation now %s\n",
|
---|
3492 | translation?"on":"off"));
|
---|
3493 | return 0;
|
---|
3494 | }
|
---|
3495 |
|
---|
3496 | /****************************************************************************
|
---|
3497 | Do the lcd command.
|
---|
3498 | ****************************************************************************/
|
---|
3499 |
|
---|
3500 | static int cmd_lcd(void)
|
---|
3501 | {
|
---|
3502 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3503 | char *buf;
|
---|
3504 | char *d;
|
---|
3505 |
|
---|
3506 | if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
3507 | if (chdir(buf) == -1) {
|
---|
3508 | d_printf("chdir to %s failed (%s)\n",
|
---|
3509 | buf, strerror(errno));
|
---|
3510 | }
|
---|
3511 | }
|
---|
3512 | d = TALLOC_ARRAY(ctx, char, PATH_MAX+1);
|
---|
3513 | if (!d) {
|
---|
3514 | return 1;
|
---|
3515 | }
|
---|
3516 | DEBUG(2,("the local directory is now %s\n",sys_getwd(d)));
|
---|
3517 | return 0;
|
---|
3518 | }
|
---|
3519 |
|
---|
3520 | /****************************************************************************
|
---|
3521 | Get a file restarting at end of local file.
|
---|
3522 | ****************************************************************************/
|
---|
3523 |
|
---|
3524 | static int cmd_reget(void)
|
---|
3525 | {
|
---|
3526 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3527 | char *local_name = NULL;
|
---|
3528 | char *remote_name = NULL;
|
---|
3529 | char *fname = NULL;
|
---|
3530 | char *p = NULL;
|
---|
3531 |
|
---|
3532 | remote_name = talloc_strdup(ctx, client_get_cur_dir());
|
---|
3533 | if (!remote_name) {
|
---|
3534 | return 1;
|
---|
3535 | }
|
---|
3536 |
|
---|
3537 | if (!next_token_talloc(ctx, &cmd_ptr, &fname, NULL)) {
|
---|
3538 | d_printf("reget <filename>\n");
|
---|
3539 | return 1;
|
---|
3540 | }
|
---|
3541 | remote_name = talloc_asprintf_append(remote_name, "%s", fname);
|
---|
3542 | if (!remote_name) {
|
---|
3543 | return 1;
|
---|
3544 | }
|
---|
3545 | remote_name = clean_name(ctx,remote_name);
|
---|
3546 | if (!remote_name) {
|
---|
3547 | return 1;
|
---|
3548 | }
|
---|
3549 |
|
---|
3550 | local_name = fname;
|
---|
3551 | next_token_talloc(ctx, &cmd_ptr, &p, NULL);
|
---|
3552 | if (p) {
|
---|
3553 | local_name = p;
|
---|
3554 | }
|
---|
3555 |
|
---|
3556 | return do_get(remote_name, local_name, true);
|
---|
3557 | }
|
---|
3558 |
|
---|
3559 | /****************************************************************************
|
---|
3560 | Put a file restarting at end of local file.
|
---|
3561 | ****************************************************************************/
|
---|
3562 |
|
---|
3563 | static int cmd_reput(void)
|
---|
3564 | {
|
---|
3565 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3566 | char *local_name = NULL;
|
---|
3567 | char *remote_name = NULL;
|
---|
3568 | char *buf;
|
---|
3569 | SMB_STRUCT_STAT st;
|
---|
3570 |
|
---|
3571 | remote_name = talloc_strdup(ctx, client_get_cur_dir());
|
---|
3572 | if (!remote_name) {
|
---|
3573 | return 1;
|
---|
3574 | }
|
---|
3575 |
|
---|
3576 | if (!next_token_talloc(ctx, &cmd_ptr, &local_name, NULL)) {
|
---|
3577 | d_printf("reput <filename>\n");
|
---|
3578 | return 1;
|
---|
3579 | }
|
---|
3580 |
|
---|
3581 | if (!file_exist(local_name, &st)) {
|
---|
3582 | d_printf("%s does not exist\n", local_name);
|
---|
3583 | return 1;
|
---|
3584 | }
|
---|
3585 |
|
---|
3586 | if (next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
|
---|
3587 | remote_name = talloc_asprintf_append(remote_name,
|
---|
3588 | "%s", buf);
|
---|
3589 | } else {
|
---|
3590 | remote_name = talloc_asprintf_append(remote_name,
|
---|
3591 | "%s", local_name);
|
---|
3592 | }
|
---|
3593 | if (!remote_name) {
|
---|
3594 | return 1;
|
---|
3595 | }
|
---|
3596 |
|
---|
3597 | remote_name = clean_name(ctx, remote_name);
|
---|
3598 | if (!remote_name) {
|
---|
3599 | return 1;
|
---|
3600 | }
|
---|
3601 |
|
---|
3602 | return do_put(remote_name, local_name, true);
|
---|
3603 | }
|
---|
3604 |
|
---|
3605 | /****************************************************************************
|
---|
3606 | List a share name.
|
---|
3607 | ****************************************************************************/
|
---|
3608 |
|
---|
3609 | static void browse_fn(const char *name, uint32 m,
|
---|
3610 | const char *comment, void *state)
|
---|
3611 | {
|
---|
3612 | const char *typestr = "";
|
---|
3613 |
|
---|
3614 | switch (m & 7) {
|
---|
3615 | case STYPE_DISKTREE:
|
---|
3616 | typestr = "Disk";
|
---|
3617 | break;
|
---|
3618 | case STYPE_PRINTQ:
|
---|
3619 | typestr = "Printer";
|
---|
3620 | break;
|
---|
3621 | case STYPE_DEVICE:
|
---|
3622 | typestr = "Device";
|
---|
3623 | break;
|
---|
3624 | case STYPE_IPC:
|
---|
3625 | typestr = "IPC";
|
---|
3626 | break;
|
---|
3627 | }
|
---|
3628 | /* FIXME: If the remote machine returns non-ascii characters
|
---|
3629 | in any of these fields, they can corrupt the output. We
|
---|
3630 | should remove them. */
|
---|
3631 | if (!grepable) {
|
---|
3632 | d_printf("\t%-15s %-10.10s%s\n",
|
---|
3633 | name,typestr,comment);
|
---|
3634 | } else {
|
---|
3635 | d_printf ("%s|%s|%s\n",typestr,name,comment);
|
---|
3636 | }
|
---|
3637 | }
|
---|
3638 |
|
---|
3639 | static bool browse_host_rpc(bool sort)
|
---|
3640 | {
|
---|
3641 | NTSTATUS status;
|
---|
3642 | struct rpc_pipe_client *pipe_hnd;
|
---|
3643 | TALLOC_CTX *frame = talloc_stackframe();
|
---|
3644 | WERROR werr;
|
---|
3645 | struct srvsvc_NetShareInfoCtr info_ctr;
|
---|
3646 | struct srvsvc_NetShareCtr1 ctr1;
|
---|
3647 | uint32_t resume_handle = 0;
|
---|
3648 | uint32_t total_entries = 0;
|
---|
3649 | int i;
|
---|
3650 |
|
---|
3651 | status = cli_rpc_pipe_open_noauth(cli, &ndr_table_srvsvc.syntax_id,
|
---|
3652 | &pipe_hnd);
|
---|
3653 |
|
---|
3654 | if (!NT_STATUS_IS_OK(status)) {
|
---|
3655 | DEBUG(10, ("Could not connect to srvsvc pipe: %s\n",
|
---|
3656 | nt_errstr(status)));
|
---|
3657 | TALLOC_FREE(frame);
|
---|
3658 | return false;
|
---|
3659 | }
|
---|
3660 |
|
---|
3661 | ZERO_STRUCT(info_ctr);
|
---|
3662 | ZERO_STRUCT(ctr1);
|
---|
3663 |
|
---|
3664 | info_ctr.level = 1;
|
---|
3665 | info_ctr.ctr.ctr1 = &ctr1;
|
---|
3666 |
|
---|
3667 | status = rpccli_srvsvc_NetShareEnumAll(pipe_hnd, frame,
|
---|
3668 | pipe_hnd->desthost,
|
---|
3669 | &info_ctr,
|
---|
3670 | 0xffffffff,
|
---|
3671 | &total_entries,
|
---|
3672 | &resume_handle,
|
---|
3673 | &werr);
|
---|
3674 |
|
---|
3675 | if (!NT_STATUS_IS_OK(status) || !W_ERROR_IS_OK(werr)) {
|
---|
3676 | TALLOC_FREE(pipe_hnd);
|
---|
3677 | TALLOC_FREE(frame);
|
---|
3678 | return false;
|
---|
3679 | }
|
---|
3680 |
|
---|
3681 | for (i=0; i < info_ctr.ctr.ctr1->count; i++) {
|
---|
3682 | struct srvsvc_NetShareInfo1 info = info_ctr.ctr.ctr1->array[i];
|
---|
3683 | browse_fn(info.name, info.type, info.comment, NULL);
|
---|
3684 | }
|
---|
3685 |
|
---|
3686 | TALLOC_FREE(pipe_hnd);
|
---|
3687 | TALLOC_FREE(frame);
|
---|
3688 | return true;
|
---|
3689 | }
|
---|
3690 |
|
---|
3691 | /****************************************************************************
|
---|
3692 | Try and browse available connections on a host.
|
---|
3693 | ****************************************************************************/
|
---|
3694 |
|
---|
3695 | static bool browse_host(bool sort)
|
---|
3696 | {
|
---|
3697 | int ret;
|
---|
3698 | if (!grepable) {
|
---|
3699 | d_printf("\n\tSharename Type Comment\n");
|
---|
3700 | d_printf("\t--------- ---- -------\n");
|
---|
3701 | }
|
---|
3702 |
|
---|
3703 | if (browse_host_rpc(sort)) {
|
---|
3704 | return true;
|
---|
3705 | }
|
---|
3706 |
|
---|
3707 | if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
|
---|
3708 | d_printf("Error returning browse list: %s\n", cli_errstr(cli));
|
---|
3709 |
|
---|
3710 | return (ret != -1);
|
---|
3711 | }
|
---|
3712 |
|
---|
3713 | /****************************************************************************
|
---|
3714 | List a server name.
|
---|
3715 | ****************************************************************************/
|
---|
3716 |
|
---|
3717 | static void server_fn(const char *name, uint32 m,
|
---|
3718 | const char *comment, void *state)
|
---|
3719 | {
|
---|
3720 |
|
---|
3721 | if (!grepable){
|
---|
3722 | d_printf("\t%-16s %s\n", name, comment);
|
---|
3723 | } else {
|
---|
3724 | d_printf("%s|%s|%s\n",(char *)state, name, comment);
|
---|
3725 | }
|
---|
3726 | }
|
---|
3727 |
|
---|
3728 | /****************************************************************************
|
---|
3729 | Try and browse available connections on a host.
|
---|
3730 | ****************************************************************************/
|
---|
3731 |
|
---|
3732 | static bool list_servers(const char *wk_grp)
|
---|
3733 | {
|
---|
3734 | fstring state;
|
---|
3735 |
|
---|
3736 | if (!cli->server_domain)
|
---|
3737 | return false;
|
---|
3738 |
|
---|
3739 | if (!grepable) {
|
---|
3740 | d_printf("\n\tServer Comment\n");
|
---|
3741 | d_printf("\t--------- -------\n");
|
---|
3742 | };
|
---|
3743 | fstrcpy( state, "Server" );
|
---|
3744 | cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_ALL, server_fn,
|
---|
3745 | state);
|
---|
3746 |
|
---|
3747 | if (!grepable) {
|
---|
3748 | d_printf("\n\tWorkgroup Master\n");
|
---|
3749 | d_printf("\t--------- -------\n");
|
---|
3750 | };
|
---|
3751 |
|
---|
3752 | fstrcpy( state, "Workgroup" );
|
---|
3753 | cli_NetServerEnum(cli, cli->server_domain, SV_TYPE_DOMAIN_ENUM,
|
---|
3754 | server_fn, state);
|
---|
3755 | return true;
|
---|
3756 | }
|
---|
3757 |
|
---|
3758 | /****************************************************************************
|
---|
3759 | Print or set current VUID
|
---|
3760 | ****************************************************************************/
|
---|
3761 |
|
---|
3762 | static int cmd_vuid(void)
|
---|
3763 | {
|
---|
3764 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3765 | char *buf;
|
---|
3766 |
|
---|
3767 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
3768 | d_printf("Current VUID is %d\n", cli->vuid);
|
---|
3769 | return 0;
|
---|
3770 | }
|
---|
3771 |
|
---|
3772 | cli->vuid = atoi(buf);
|
---|
3773 | return 0;
|
---|
3774 | }
|
---|
3775 |
|
---|
3776 | /****************************************************************************
|
---|
3777 | Setup a new VUID, by issuing a session setup
|
---|
3778 | ****************************************************************************/
|
---|
3779 |
|
---|
3780 | static int cmd_logon(void)
|
---|
3781 | {
|
---|
3782 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3783 | char *l_username, *l_password;
|
---|
3784 |
|
---|
3785 | if (!next_token_talloc(ctx, &cmd_ptr,&l_username,NULL)) {
|
---|
3786 | d_printf("logon <username> [<password>]\n");
|
---|
3787 | return 0;
|
---|
3788 | }
|
---|
3789 |
|
---|
3790 | if (!next_token_talloc(ctx, &cmd_ptr,&l_password,NULL)) {
|
---|
3791 | char *pass = getpass("Password: ");
|
---|
3792 | if (pass) {
|
---|
3793 | l_password = talloc_strdup(ctx,pass);
|
---|
3794 | }
|
---|
3795 | }
|
---|
3796 | if (!l_password) {
|
---|
3797 | return 1;
|
---|
3798 | }
|
---|
3799 |
|
---|
3800 | if (!NT_STATUS_IS_OK(cli_session_setup(cli, l_username,
|
---|
3801 | l_password, strlen(l_password),
|
---|
3802 | l_password, strlen(l_password),
|
---|
3803 | lp_workgroup()))) {
|
---|
3804 | d_printf("session setup failed: %s\n", cli_errstr(cli));
|
---|
3805 | return -1;
|
---|
3806 | }
|
---|
3807 |
|
---|
3808 | d_printf("Current VUID is %d\n", cli->vuid);
|
---|
3809 | return 0;
|
---|
3810 | }
|
---|
3811 |
|
---|
3812 |
|
---|
3813 | /****************************************************************************
|
---|
3814 | list active connections
|
---|
3815 | ****************************************************************************/
|
---|
3816 |
|
---|
3817 | static int cmd_list_connect(void)
|
---|
3818 | {
|
---|
3819 | cli_cm_display();
|
---|
3820 | return 0;
|
---|
3821 | }
|
---|
3822 |
|
---|
3823 | /****************************************************************************
|
---|
3824 | display the current active client connection
|
---|
3825 | ****************************************************************************/
|
---|
3826 |
|
---|
3827 | static int cmd_show_connect( void )
|
---|
3828 | {
|
---|
3829 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3830 | struct cli_state *targetcli;
|
---|
3831 | char *targetpath;
|
---|
3832 |
|
---|
3833 | if (!cli_resolve_path(ctx, "", cli, client_get_cur_dir(),
|
---|
3834 | &targetcli, &targetpath ) ) {
|
---|
3835 | d_printf("showconnect %s: %s\n", cur_dir, cli_errstr(cli));
|
---|
3836 | return 1;
|
---|
3837 | }
|
---|
3838 |
|
---|
3839 | d_printf("//%s/%s\n", targetcli->desthost, targetcli->share);
|
---|
3840 | return 0;
|
---|
3841 | }
|
---|
3842 |
|
---|
3843 | /****************************************************************************
|
---|
3844 | iosize command
|
---|
3845 | ***************************************************************************/
|
---|
3846 |
|
---|
3847 | int cmd_iosize(void)
|
---|
3848 | {
|
---|
3849 | TALLOC_CTX *ctx = talloc_tos();
|
---|
3850 | char *buf;
|
---|
3851 | int iosize;
|
---|
3852 |
|
---|
3853 | if (!next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
3854 | if (!smb_encrypt) {
|
---|
3855 | d_printf("iosize <n> or iosize 0x<n>. "
|
---|
3856 | "Minimum is 16384 (0x4000), "
|
---|
3857 | "max is 16776960 (0xFFFF00)\n");
|
---|
3858 | } else {
|
---|
3859 | d_printf("iosize <n> or iosize 0x<n>. "
|
---|
3860 | "(Encrypted connection) ,"
|
---|
3861 | "Minimum is 16384 (0x4000), "
|
---|
3862 | "max is 130048 (0x1FC00)\n");
|
---|
3863 | }
|
---|
3864 | return 1;
|
---|
3865 | }
|
---|
3866 |
|
---|
3867 | iosize = strtol(buf,NULL,0);
|
---|
3868 | if (smb_encrypt && (iosize < 0x4000 || iosize > 0xFC00)) {
|
---|
3869 | d_printf("iosize out of range for encrypted "
|
---|
3870 | "connection (min = 16384 (0x4000), "
|
---|
3871 | "max = 130048 (0x1FC00)");
|
---|
3872 | return 1;
|
---|
3873 | } else if (!smb_encrypt && (iosize < 0x4000 || iosize > 0xFFFF00)) {
|
---|
3874 | d_printf("iosize out of range (min = 16384 (0x4000), "
|
---|
3875 | "max = 16776960 (0xFFFF00)");
|
---|
3876 | return 1;
|
---|
3877 | }
|
---|
3878 |
|
---|
3879 | io_bufsize = iosize;
|
---|
3880 | d_printf("iosize is now %d\n", io_bufsize);
|
---|
3881 | return 0;
|
---|
3882 | }
|
---|
3883 |
|
---|
3884 |
|
---|
3885 | /* Some constants for completing filename arguments */
|
---|
3886 |
|
---|
3887 | #define COMPL_NONE 0 /* No completions */
|
---|
3888 | #define COMPL_REMOTE 1 /* Complete remote filename */
|
---|
3889 | #define COMPL_LOCAL 2 /* Complete local filename */
|
---|
3890 |
|
---|
3891 | /* This defines the commands supported by this client.
|
---|
3892 | * NOTE: The "!" must be the last one in the list because it's fn pointer
|
---|
3893 | * field is NULL, and NULL in that field is used in process_tok()
|
---|
3894 | * (below) to indicate the end of the list. crh
|
---|
3895 | */
|
---|
3896 | static struct {
|
---|
3897 | const char *name;
|
---|
3898 | int (*fn)(void);
|
---|
3899 | const char *description;
|
---|
3900 | char compl_args[2]; /* Completion argument info */
|
---|
3901 | } commands[] = {
|
---|
3902 | {"?",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
|
---|
3903 | {"allinfo",cmd_allinfo,"<file> show all available info",
|
---|
3904 | {COMPL_NONE,COMPL_NONE}},
|
---|
3905 | {"altname",cmd_altname,"<file> show alt name",{COMPL_NONE,COMPL_NONE}},
|
---|
3906 | {"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}},
|
---|
3907 | {"blocksize",cmd_block,"blocksize <number> (default 20)",{COMPL_NONE,COMPL_NONE}},
|
---|
3908 | {"cancel",cmd_cancel,"<jobid> cancel a print queue entry",{COMPL_NONE,COMPL_NONE}},
|
---|
3909 | {"case_sensitive",cmd_setcase,"toggle the case sensitive flag to server",{COMPL_NONE,COMPL_NONE}},
|
---|
3910 | {"cd",cmd_cd,"[directory] change/report the remote directory",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3911 | {"chmod",cmd_chmod,"<src> <mode> chmod a file using UNIX permission",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3912 | {"chown",cmd_chown,"<src> <uid> <gid> chown a file using UNIX uids and gids",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3913 | {"close",cmd_close,"<fid> close a file given a fid",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3914 | {"del",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3915 | {"dir",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3916 | {"du",cmd_du,"<mask> computes the total size of the current directory",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3917 | {"echo",cmd_echo,"ping the server",{COMPL_NONE,COMPL_NONE}},
|
---|
3918 | {"exit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
|
---|
3919 | {"get",cmd_get,"<remote name> [local name] get a file",{COMPL_REMOTE,COMPL_LOCAL}},
|
---|
3920 | {"getfacl",cmd_getfacl,"<file name> get the POSIX ACL on a file (UNIX extensions only)",{COMPL_REMOTE,COMPL_LOCAL}},
|
---|
3921 | {"hardlink",cmd_hardlink,"<src> <dest> create a Windows hard link",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3922 | {"help",cmd_help,"[command] give help on a command",{COMPL_NONE,COMPL_NONE}},
|
---|
3923 | {"history",cmd_history,"displays the command history",{COMPL_NONE,COMPL_NONE}},
|
---|
3924 | {"iosize",cmd_iosize,"iosize <number> (default 64512)",{COMPL_NONE,COMPL_NONE}},
|
---|
3925 | {"lcd",cmd_lcd,"[directory] change/report the local current working directory",{COMPL_LOCAL,COMPL_NONE}},
|
---|
3926 | {"link",cmd_link,"<oldname> <newname> create a UNIX hard link",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3927 | {"lock",cmd_lock,"lock <fnum> [r|w] <hex-start> <hex-len> : set a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3928 | {"lowercase",cmd_lowercase,"toggle lowercasing of filenames for get",{COMPL_NONE,COMPL_NONE}},
|
---|
3929 | {"ls",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3930 | {"l",cmd_dir,"<mask> list the contents of the current directory",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3931 | {"mask",cmd_select,"<mask> mask all filenames against this",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3932 | {"md",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
|
---|
3933 | {"mget",cmd_mget,"<mask> get all the matching files",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3934 | {"mkdir",cmd_mkdir,"<directory> make a directory",{COMPL_NONE,COMPL_NONE}},
|
---|
3935 | {"more",cmd_more,"<remote name> view a remote file with your pager",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3936 | {"mput",cmd_mput,"<mask> put all matching files",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3937 | {"newer",cmd_newer,"<file> only mget files newer than the specified local file",{COMPL_LOCAL,COMPL_NONE}},
|
---|
3938 | {"open",cmd_open,"<mask> open a file",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3939 | {"posix", cmd_posix, "turn on all POSIX capabilities", {COMPL_REMOTE,COMPL_NONE}},
|
---|
3940 | {"posix_encrypt",cmd_posix_encrypt,"<domain> <user> <password> start up transport encryption",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3941 | {"posix_open",cmd_posix_open,"<name> 0<mode> open_flags mode open a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3942 | {"posix_mkdir",cmd_posix_mkdir,"<name> 0<mode> creates a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3943 | {"posix_rmdir",cmd_posix_rmdir,"<name> removes a directory using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3944 | {"posix_unlink",cmd_posix_unlink,"<name> removes a file using POSIX interface",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3945 | {"print",cmd_print,"<file name> print a file",{COMPL_NONE,COMPL_NONE}},
|
---|
3946 | {"prompt",cmd_prompt,"toggle prompting for filenames for mget and mput",{COMPL_NONE,COMPL_NONE}},
|
---|
3947 | {"put",cmd_put,"<local name> [remote name] put a file",{COMPL_LOCAL,COMPL_REMOTE}},
|
---|
3948 | {"pwd",cmd_pwd,"show current remote directory (same as 'cd' with no args)",{COMPL_NONE,COMPL_NONE}},
|
---|
3949 | {"q",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
|
---|
3950 | {"queue",cmd_queue,"show the print queue",{COMPL_NONE,COMPL_NONE}},
|
---|
3951 | {"quit",cmd_quit,"logoff the server",{COMPL_NONE,COMPL_NONE}},
|
---|
3952 | {"rd",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
|
---|
3953 | {"recurse",cmd_recurse,"toggle directory recursion for mget and mput",{COMPL_NONE,COMPL_NONE}},
|
---|
3954 | {"reget",cmd_reget,"<remote name> [local name] get a file restarting at end of local file",{COMPL_REMOTE,COMPL_LOCAL}},
|
---|
3955 | {"rename",cmd_rename,"<src> <dest> rename some files",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3956 | {"reput",cmd_reput,"<local name> [remote name] put a file restarting at end of remote file",{COMPL_LOCAL,COMPL_REMOTE}},
|
---|
3957 | {"rm",cmd_del,"<mask> delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3958 | {"rmdir",cmd_rmdir,"<directory> remove a directory",{COMPL_NONE,COMPL_NONE}},
|
---|
3959 | {"showacls",cmd_showacls,"toggle if ACLs are shown or not",{COMPL_NONE,COMPL_NONE}},
|
---|
3960 | {"setmode",cmd_setmode,"filename <setmode string> change modes of file",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3961 | {"stat",cmd_stat,"filename Do a UNIX extensions stat call on a file",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3962 | {"symlink",cmd_symlink,"<oldname> <newname> create a UNIX symlink",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3963 | {"tar",cmd_tar,"tar <c|x>[IXFqbgNan] current directory to/from <file name>",{COMPL_NONE,COMPL_NONE}},
|
---|
3964 | {"tarmode",cmd_tarmode,"<full|inc|reset|noreset> tar's behaviour towards archive bits",{COMPL_NONE,COMPL_NONE}},
|
---|
3965 | {"translate",cmd_translate,"toggle text translation for printing",{COMPL_NONE,COMPL_NONE}},
|
---|
3966 | {"unlock",cmd_unlock,"unlock <fnum> <hex-start> <hex-len> : remove a POSIX lock",{COMPL_REMOTE,COMPL_REMOTE}},
|
---|
3967 | {"volume",cmd_volume,"print the volume name",{COMPL_NONE,COMPL_NONE}},
|
---|
3968 | {"vuid",cmd_vuid,"change current vuid",{COMPL_NONE,COMPL_NONE}},
|
---|
3969 | {"wdel",cmd_wdel,"<attrib> <mask> wildcard delete all matching files",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3970 | {"logon",cmd_logon,"establish new logon",{COMPL_NONE,COMPL_NONE}},
|
---|
3971 | {"listconnect",cmd_list_connect,"list open connections",{COMPL_NONE,COMPL_NONE}},
|
---|
3972 | {"showconnect",cmd_show_connect,"display the current active connection",{COMPL_NONE,COMPL_NONE}},
|
---|
3973 | {"..",cmd_cd_oneup,"change the remote directory (up one level)",{COMPL_REMOTE,COMPL_NONE}},
|
---|
3974 |
|
---|
3975 | /* Yes, this must be here, see crh's comment above. */
|
---|
3976 | {"!",NULL,"run a shell command on the local system",{COMPL_NONE,COMPL_NONE}},
|
---|
3977 | {NULL,NULL,NULL,{COMPL_NONE,COMPL_NONE}}
|
---|
3978 | };
|
---|
3979 |
|
---|
3980 | /*******************************************************************
|
---|
3981 | Lookup a command string in the list of commands, including
|
---|
3982 | abbreviations.
|
---|
3983 | ******************************************************************/
|
---|
3984 |
|
---|
3985 | static int process_tok(char *tok)
|
---|
3986 | {
|
---|
3987 | int i = 0, matches = 0;
|
---|
3988 | int cmd=0;
|
---|
3989 | int tok_len = strlen(tok);
|
---|
3990 |
|
---|
3991 | while (commands[i].fn != NULL) {
|
---|
3992 | if (strequal(commands[i].name,tok)) {
|
---|
3993 | matches = 1;
|
---|
3994 | cmd = i;
|
---|
3995 | break;
|
---|
3996 | } else if (strnequal(commands[i].name, tok, tok_len)) {
|
---|
3997 | matches++;
|
---|
3998 | cmd = i;
|
---|
3999 | }
|
---|
4000 | i++;
|
---|
4001 | }
|
---|
4002 |
|
---|
4003 | if (matches == 0)
|
---|
4004 | return(-1);
|
---|
4005 | else if (matches == 1)
|
---|
4006 | return(cmd);
|
---|
4007 | else
|
---|
4008 | return(-2);
|
---|
4009 | }
|
---|
4010 |
|
---|
4011 | /****************************************************************************
|
---|
4012 | Help.
|
---|
4013 | ****************************************************************************/
|
---|
4014 |
|
---|
4015 | static int cmd_help(void)
|
---|
4016 | {
|
---|
4017 | TALLOC_CTX *ctx = talloc_tos();
|
---|
4018 | int i=0,j;
|
---|
4019 | char *buf;
|
---|
4020 |
|
---|
4021 | if (next_token_talloc(ctx, &cmd_ptr,&buf,NULL)) {
|
---|
4022 | if ((i = process_tok(buf)) >= 0)
|
---|
4023 | d_printf("HELP %s:\n\t%s\n\n",
|
---|
4024 | commands[i].name,commands[i].description);
|
---|
4025 | } else {
|
---|
4026 | while (commands[i].description) {
|
---|
4027 | for (j=0; commands[i].description && (j<5); j++) {
|
---|
4028 | d_printf("%-15s",commands[i].name);
|
---|
4029 | i++;
|
---|
4030 | }
|
---|
4031 | d_printf("\n");
|
---|
4032 | }
|
---|
4033 | }
|
---|
4034 | return 0;
|
---|
4035 | }
|
---|
4036 |
|
---|
4037 | /****************************************************************************
|
---|
4038 | Process a -c command string.
|
---|
4039 | ****************************************************************************/
|
---|
4040 |
|
---|
4041 | static int process_command_string(const char *cmd_in)
|
---|
4042 | {
|
---|
4043 | TALLOC_CTX *ctx = talloc_tos();
|
---|
4044 | char *cmd = talloc_strdup(ctx, cmd_in);
|
---|
4045 | int rc = 0;
|
---|
4046 |
|
---|
4047 | if (!cmd) {
|
---|
4048 | return 1;
|
---|
4049 | }
|
---|
4050 | /* establish the connection if not already */
|
---|
4051 |
|
---|
4052 | if (!cli) {
|
---|
4053 | cli = cli_cm_open(talloc_tos(), NULL, desthost,
|
---|
4054 | service, true, smb_encrypt);
|
---|
4055 | if (!cli) {
|
---|
4056 | return 1;
|
---|
4057 | }
|
---|
4058 | }
|
---|
4059 |
|
---|
4060 | while (cmd[0] != '\0') {
|
---|
4061 | char *line;
|
---|
4062 | char *p;
|
---|
4063 | char *tok;
|
---|
4064 | int i;
|
---|
4065 |
|
---|
4066 | if ((p = strchr_m(cmd, ';')) == 0) {
|
---|
4067 | line = cmd;
|
---|
4068 | cmd += strlen(cmd);
|
---|
4069 | } else {
|
---|
4070 | *p = '\0';
|
---|
4071 | line = cmd;
|
---|
4072 | cmd = p + 1;
|
---|
4073 | }
|
---|
4074 |
|
---|
4075 | /* and get the first part of the command */
|
---|
4076 | cmd_ptr = line;
|
---|
4077 | if (!next_token_talloc(ctx, &cmd_ptr,&tok,NULL)) {
|
---|
4078 | continue;
|
---|
4079 | }
|
---|
4080 |
|
---|
4081 | if ((i = process_tok(tok)) >= 0) {
|
---|
4082 | rc = commands[i].fn();
|
---|
4083 | } else if (i == -2) {
|
---|
4084 | d_printf("%s: command abbreviation ambiguous\n",tok);
|
---|
4085 | } else {
|
---|
4086 | d_printf("%s: command not found\n",tok);
|
---|
4087 | }
|
---|
4088 | }
|
---|
4089 |
|
---|
4090 | return rc;
|
---|
4091 | }
|
---|
4092 |
|
---|
4093 | #define MAX_COMPLETIONS 100
|
---|
4094 |
|
---|
4095 | typedef struct {
|
---|
4096 | char *dirmask;
|
---|
4097 | char **matches;
|
---|
4098 | int count, samelen;
|
---|
4099 | const char *text;
|
---|
4100 | int len;
|
---|
4101 | } completion_remote_t;
|
---|
4102 |
|
---|
4103 | static void completion_remote_filter(const char *mnt,
|
---|
4104 | file_info *f,
|
---|
4105 | const char *mask,
|
---|
4106 | void *state)
|
---|
4107 | {
|
---|
4108 | completion_remote_t *info = (completion_remote_t *)state;
|
---|
4109 |
|
---|
4110 | if ((info->count < MAX_COMPLETIONS - 1) &&
|
---|
4111 | (strncmp(info->text, f->name, info->len) == 0) &&
|
---|
4112 | (strcmp(f->name, ".") != 0) &&
|
---|
4113 | (strcmp(f->name, "..") != 0)) {
|
---|
4114 | if ((info->dirmask[0] == 0) && !(f->mode & aDIR))
|
---|
4115 | info->matches[info->count] = SMB_STRDUP(f->name);
|
---|
4116 | else {
|
---|
4117 | TALLOC_CTX *ctx = talloc_stackframe();
|
---|
4118 | char *tmp;
|
---|
4119 |
|
---|
4120 | tmp = talloc_strdup(ctx,info->dirmask);
|
---|
4121 | if (!tmp) {
|
---|
4122 | TALLOC_FREE(ctx);
|
---|
4123 | return;
|
---|
4124 | }
|
---|
4125 | tmp = talloc_asprintf_append(tmp, "%s", f->name);
|
---|
4126 | if (!tmp) {
|
---|
4127 | TALLOC_FREE(ctx);
|
---|
4128 | return;
|
---|
4129 | }
|
---|
4130 | if (f->mode & aDIR) {
|
---|
4131 | tmp = talloc_asprintf_append(tmp, "%s", CLI_DIRSEP_STR);
|
---|
4132 | }
|
---|
4133 | if (!tmp) {
|
---|
4134 | TALLOC_FREE(ctx);
|
---|
4135 | return;
|
---|
4136 | }
|
---|
4137 | info->matches[info->count] = SMB_STRDUP(tmp);
|
---|
4138 | TALLOC_FREE(ctx);
|
---|
4139 | }
|
---|
4140 | if (info->matches[info->count] == NULL) {
|
---|
4141 | return;
|
---|
4142 | }
|
---|
4143 | if (f->mode & aDIR) {
|
---|
4144 | smb_readline_ca_char(0);
|
---|
4145 | }
|
---|
4146 | if (info->count == 1) {
|
---|
4147 | info->samelen = strlen(info->matches[info->count]);
|
---|
4148 | } else {
|
---|
4149 | while (strncmp(info->matches[info->count],
|
---|
4150 | info->matches[info->count-1],
|
---|
4151 | info->samelen) != 0) {
|
---|
4152 | info->samelen--;
|
---|
4153 | }
|
---|
4154 | }
|
---|
4155 | info->count++;
|
---|
4156 | }
|
---|
4157 | }
|
---|
4158 |
|
---|
4159 | static char **remote_completion(const char *text, int len)
|
---|
4160 | {
|
---|
4161 | TALLOC_CTX *ctx = talloc_stackframe();
|
---|
4162 | char *dirmask = NULL;
|
---|
4163 | char *targetpath = NULL;
|
---|
4164 | struct cli_state *targetcli = NULL;
|
---|
4165 | int i;
|
---|
4166 | completion_remote_t info = { NULL, NULL, 1, 0, NULL, 0 };
|
---|
4167 |
|
---|
4168 | /* can't have non-static intialisation on Sun CC, so do it
|
---|
4169 | at run time here */
|
---|
4170 | info.samelen = len;
|
---|
4171 | info.text = text;
|
---|
4172 | info.len = len;
|
---|
4173 |
|
---|
4174 | info.matches = SMB_MALLOC_ARRAY(char *,MAX_COMPLETIONS);
|
---|
4175 | if (!info.matches) {
|
---|
4176 | TALLOC_FREE(ctx);
|
---|
4177 | return NULL;
|
---|
4178 | }
|
---|
4179 |
|
---|
4180 | /*
|
---|
4181 | * We're leaving matches[0] free to fill it later with the text to
|
---|
4182 | * display: Either the one single match or the longest common subset
|
---|
4183 | * of the matches.
|
---|
4184 | */
|
---|
4185 | info.matches[0] = NULL;
|
---|
4186 | info.count = 1;
|
---|
4187 |
|
---|
4188 | for (i = len-1; i >= 0; i--) {
|
---|
4189 | if ((text[i] == '/') || (text[i] == CLI_DIRSEP_CHAR)) {
|
---|
4190 | break;
|
---|
4191 | }
|
---|
4192 | }
|
---|
4193 |
|
---|
4194 | info.text = text+i+1;
|
---|
4195 | info.samelen = info.len = len-i-1;
|
---|
4196 |
|
---|
4197 | if (i > 0) {
|
---|
4198 | info.dirmask = SMB_MALLOC_ARRAY(char, i+2);
|
---|
4199 | if (!info.dirmask) {
|
---|
4200 | goto cleanup;
|
---|
4201 | }
|
---|
4202 | strncpy(info.dirmask, text, i+1);
|
---|
4203 | info.dirmask[i+1] = 0;
|
---|
4204 | dirmask = talloc_asprintf(ctx,
|
---|
4205 | "%s%*s*",
|
---|
4206 | client_get_cur_dir(),
|
---|
4207 | i-1,
|
---|
4208 | text);
|
---|
4209 | } else {
|
---|
4210 | info.dirmask = SMB_STRDUP("");
|
---|
4211 | if (!info.dirmask) {
|
---|
4212 | goto cleanup;
|
---|
4213 | }
|
---|
4214 | dirmask = talloc_asprintf(ctx,
|
---|
4215 | "%s*",
|
---|
4216 | client_get_cur_dir());
|
---|
4217 | }
|
---|
4218 | if (!dirmask) {
|
---|
4219 | goto cleanup;
|
---|
4220 | }
|
---|
4221 |
|
---|
4222 | if (!cli_resolve_path(ctx, "", cli, dirmask, &targetcli, &targetpath)) {
|
---|
4223 | goto cleanup;
|
---|
4224 | }
|
---|
4225 | if (cli_list(targetcli, targetpath, aDIR | aSYSTEM | aHIDDEN,
|
---|
4226 | completion_remote_filter, (void *)&info) < 0) {
|
---|
4227 | goto cleanup;
|
---|
4228 | }
|
---|
4229 |
|
---|
4230 | if (info.count == 1) {
|
---|
4231 | /*
|
---|
4232 | * No matches at all, NULL indicates there is nothing
|
---|
4233 | */
|
---|
4234 | SAFE_FREE(info.matches[0]);
|
---|
4235 | SAFE_FREE(info.matches);
|
---|
4236 | TALLOC_FREE(ctx);
|
---|
4237 | return NULL;
|
---|
4238 | }
|
---|
4239 |
|
---|
4240 | if (info.count == 2) {
|
---|
4241 | /*
|
---|
4242 | * Exactly one match in matches[1], indicate this is the one
|
---|
4243 | * in matches[0].
|
---|
4244 | */
|
---|
4245 | info.matches[0] = info.matches[1];
|
---|
4246 | info.matches[1] = NULL;
|
---|
4247 | info.count -= 1;
|
---|
4248 | TALLOC_FREE(ctx);
|
---|
4249 | return info.matches;
|
---|
4250 | }
|
---|
4251 |
|
---|
4252 | /*
|
---|
4253 | * We got more than one possible match, set the result to the maximum
|
---|
4254 | * common subset
|
---|
4255 | */
|
---|
4256 |
|
---|
4257 | info.matches[0] = SMB_STRNDUP(info.matches[1], info.samelen);
|
---|
4258 | info.matches[info.count] = NULL;
|
---|
4259 | return info.matches;
|
---|
4260 |
|
---|
4261 | cleanup:
|
---|
4262 | for (i = 0; i < info.count; i++) {
|
---|
4263 | SAFE_FREE(info.matches[i]);
|
---|
4264 | }
|
---|
4265 | SAFE_FREE(info.matches);
|
---|
4266 | SAFE_FREE(info.dirmask);
|
---|
4267 | TALLOC_FREE(ctx);
|
---|
4268 | return NULL;
|
---|
4269 | }
|
---|
4270 |
|
---|
4271 | static char **completion_fn(const char *text, int start, int end)
|
---|
4272 | {
|
---|
4273 | smb_readline_ca_char(' ');
|
---|
4274 |
|
---|
4275 | if (start) {
|
---|
4276 | const char *buf, *sp;
|
---|
4277 | int i;
|
---|
4278 | char compl_type;
|
---|
4279 |
|
---|
4280 | buf = smb_readline_get_line_buffer();
|
---|
4281 | if (buf == NULL)
|
---|
4282 | return NULL;
|
---|
4283 |
|
---|
4284 | sp = strchr(buf, ' ');
|
---|
4285 | if (sp == NULL)
|
---|
4286 | return NULL;
|
---|
4287 |
|
---|
4288 | for (i = 0; commands[i].name; i++) {
|
---|
4289 | if ((strncmp(commands[i].name, buf, sp - buf) == 0) &&
|
---|
4290 | (commands[i].name[sp - buf] == 0)) {
|
---|
4291 | break;
|
---|
4292 | }
|
---|
4293 | }
|
---|
4294 | if (commands[i].name == NULL)
|
---|
4295 | return NULL;
|
---|
4296 |
|
---|
4297 | while (*sp == ' ')
|
---|
4298 | sp++;
|
---|
4299 |
|
---|
4300 | if (sp == (buf + start))
|
---|
4301 | compl_type = commands[i].compl_args[0];
|
---|
4302 | else
|
---|
4303 | compl_type = commands[i].compl_args[1];
|
---|
4304 |
|
---|
4305 | if (compl_type == COMPL_REMOTE)
|
---|
4306 | return remote_completion(text, end - start);
|
---|
4307 | else /* fall back to local filename completion */
|
---|
4308 | return NULL;
|
---|
4309 | } else {
|
---|
4310 | char **matches;
|
---|
4311 | int i, len, samelen = 0, count=1;
|
---|
4312 |
|
---|
4313 | matches = SMB_MALLOC_ARRAY(char *, MAX_COMPLETIONS);
|
---|
4314 | if (!matches) {
|
---|
4315 | return NULL;
|
---|
4316 | }
|
---|
4317 | matches[0] = NULL;
|
---|
4318 |
|
---|
4319 | len = strlen(text);
|
---|
4320 | for (i=0;commands[i].fn && count < MAX_COMPLETIONS-1;i++) {
|
---|
4321 | if (strncmp(text, commands[i].name, len) == 0) {
|
---|
4322 | matches[count] = SMB_STRDUP(commands[i].name);
|
---|
4323 | if (!matches[count])
|
---|
4324 | goto cleanup;
|
---|
4325 | if (count == 1)
|
---|
4326 | samelen = strlen(matches[count]);
|
---|
4327 | else
|
---|
4328 | while (strncmp(matches[count], matches[count-1], samelen) != 0)
|
---|
4329 | samelen--;
|
---|
4330 | count++;
|
---|
4331 | }
|
---|
4332 | }
|
---|
4333 |
|
---|
4334 | switch (count) {
|
---|
4335 | case 0: /* should never happen */
|
---|
4336 | case 1:
|
---|
4337 | goto cleanup;
|
---|
4338 | case 2:
|
---|
4339 | matches[0] = SMB_STRDUP(matches[1]);
|
---|
4340 | break;
|
---|
4341 | default:
|
---|
4342 | matches[0] = (char *)SMB_MALLOC(samelen+1);
|
---|
4343 | if (!matches[0])
|
---|
4344 | goto cleanup;
|
---|
4345 | strncpy(matches[0], matches[1], samelen);
|
---|
4346 | matches[0][samelen] = 0;
|
---|
4347 | }
|
---|
4348 | matches[count] = NULL;
|
---|
4349 | return matches;
|
---|
4350 |
|
---|
4351 | cleanup:
|
---|
4352 | for (i = 0; i < count; i++)
|
---|
4353 | free(matches[i]);
|
---|
4354 |
|
---|
4355 | free(matches);
|
---|
4356 | return NULL;
|
---|
4357 | }
|
---|
4358 | }
|
---|
4359 |
|
---|
4360 | static bool finished;
|
---|
4361 |
|
---|
4362 | /****************************************************************************
|
---|
4363 | Make sure we swallow keepalives during idle time.
|
---|
4364 | ****************************************************************************/
|
---|
4365 |
|
---|
4366 | static void readline_callback(void)
|
---|
4367 | {
|
---|
4368 | fd_set fds;
|
---|
4369 | struct timeval timeout;
|
---|
4370 | static time_t last_t;
|
---|
4371 | time_t t;
|
---|
4372 |
|
---|
4373 | t = time(NULL);
|
---|
4374 |
|
---|
4375 | if (t - last_t < 5)
|
---|
4376 | return;
|
---|
4377 |
|
---|
4378 | last_t = t;
|
---|
4379 |
|
---|
4380 | again:
|
---|
4381 |
|
---|
4382 | if (cli->fd == -1)
|
---|
4383 | return;
|
---|
4384 |
|
---|
4385 | FD_ZERO(&fds);
|
---|
4386 | FD_SET(cli->fd,&fds);
|
---|
4387 |
|
---|
4388 | timeout.tv_sec = 0;
|
---|
4389 | timeout.tv_usec = 0;
|
---|
4390 | sys_select_intr(cli->fd+1,&fds,NULL,NULL,&timeout);
|
---|
4391 |
|
---|
4392 | /* We deliberately use receive_smb_raw instead of
|
---|
4393 | client_receive_smb as we want to receive
|
---|
4394 | session keepalives and then drop them here.
|
---|
4395 | */
|
---|
4396 | if (FD_ISSET(cli->fd,&fds)) {
|
---|
4397 | NTSTATUS status;
|
---|
4398 | size_t len;
|
---|
4399 |
|
---|
4400 | set_smb_read_error(&cli->smb_rw_error, SMB_READ_OK);
|
---|
4401 |
|
---|
4402 | status = receive_smb_raw(cli->fd, cli->inbuf, cli->bufsize, 0, 0, &len);
|
---|
4403 |
|
---|
4404 | if (!NT_STATUS_IS_OK(status)) {
|
---|
4405 | DEBUG(0, ("Read from server failed, maybe it closed "
|
---|
4406 | "the connection\n"));
|
---|
4407 |
|
---|
4408 | finished = true;
|
---|
4409 | smb_readline_done();
|
---|
4410 | if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
|
---|
4411 | set_smb_read_error(&cli->smb_rw_error,
|
---|
4412 | SMB_READ_EOF);
|
---|
4413 | return;
|
---|
4414 | }
|
---|
4415 |
|
---|
4416 | if (NT_STATUS_EQUAL(status, NT_STATUS_IO_TIMEOUT)) {
|
---|
4417 | set_smb_read_error(&cli->smb_rw_error,
|
---|
4418 | SMB_READ_TIMEOUT);
|
---|
4419 | return;
|
---|
4420 | }
|
---|
4421 |
|
---|
4422 | set_smb_read_error(&cli->smb_rw_error, SMB_READ_ERROR);
|
---|
4423 | return;
|
---|
4424 | }
|
---|
4425 | if(CVAL(cli->inbuf,0) != SMBkeepalive) {
|
---|
4426 | DEBUG(0, ("Read from server "
|
---|
4427 | "returned unexpected packet!\n"));
|
---|
4428 | return;
|
---|
4429 | }
|
---|
4430 |
|
---|
4431 | goto again;
|
---|
4432 | }
|
---|
4433 |
|
---|
4434 | /* Ping the server to keep the connection alive using SMBecho. */
|
---|
4435 | {
|
---|
4436 | unsigned char garbage[16];
|
---|
4437 | memset(garbage, 0xf0, sizeof(garbage));
|
---|
4438 | if (!cli_echo(cli, 1, garbage, sizeof(garbage))) {
|
---|
4439 | DEBUG(0, ("SMBecho failed. Maybe server has closed "
|
---|
4440 | "the connection\n"));
|
---|
4441 | smb_readline_done();
|
---|
4442 | finished = true;
|
---|
4443 | }
|
---|
4444 | }
|
---|
4445 | }
|
---|
4446 |
|
---|
4447 | /****************************************************************************
|
---|
4448 | Process commands on stdin.
|
---|
4449 | ****************************************************************************/
|
---|
4450 |
|
---|
4451 | static int process_stdin(void)
|
---|
4452 | {
|
---|
4453 | int rc = 0;
|
---|
4454 |
|
---|
4455 | while (!finished) {
|
---|
4456 | TALLOC_CTX *frame = talloc_stackframe();
|
---|
4457 | char *tok = NULL;
|
---|
4458 | char *the_prompt = NULL;
|
---|
4459 | char *line = NULL;
|
---|
4460 | int i;
|
---|
4461 |
|
---|
4462 | /* display a prompt */
|
---|
4463 | if (asprintf(&the_prompt, "smb: %s> ", client_get_cur_dir()) < 0) {
|
---|
4464 | TALLOC_FREE(frame);
|
---|
4465 | break;
|
---|
4466 | }
|
---|
4467 | line = smb_readline(the_prompt, readline_callback, completion_fn);
|
---|
4468 | SAFE_FREE(the_prompt);
|
---|
4469 | if (!line) {
|
---|
4470 | TALLOC_FREE(frame);
|
---|
4471 | break;
|
---|
4472 | }
|
---|
4473 |
|
---|
4474 | /* special case - first char is ! */
|
---|
4475 | if (*line == '!') {
|
---|
4476 | if (system(line + 1) == -1) {
|
---|
4477 | d_printf("system() command %s failed.\n",
|
---|
4478 | line+1);
|
---|
4479 | }
|
---|
4480 | SAFE_FREE(line);
|
---|
4481 | TALLOC_FREE(frame);
|
---|
4482 | continue;
|
---|
4483 | }
|
---|
4484 |
|
---|
4485 | /* and get the first part of the command */
|
---|
4486 | cmd_ptr = line;
|
---|
4487 | if (!next_token_talloc(frame, &cmd_ptr,&tok,NULL)) {
|
---|
4488 | TALLOC_FREE(frame);
|
---|
4489 | SAFE_FREE(line);
|
---|
4490 | continue;
|
---|
4491 | }
|
---|
4492 |
|
---|
4493 | if ((i = process_tok(tok)) >= 0) {
|
---|
4494 | rc = commands[i].fn();
|
---|
4495 | } else if (i == -2) {
|
---|
4496 | d_printf("%s: command abbreviation ambiguous\n",tok);
|
---|
4497 | } else {
|
---|
4498 | d_printf("%s: command not found\n",tok);
|
---|
4499 | }
|
---|
4500 | SAFE_FREE(line);
|
---|
4501 | TALLOC_FREE(frame);
|
---|
4502 | }
|
---|
4503 | return rc;
|
---|
4504 | }
|
---|
4505 |
|
---|
4506 | /****************************************************************************
|
---|
4507 | Process commands from the client.
|
---|
4508 | ****************************************************************************/
|
---|
4509 |
|
---|
4510 | static int process(const char *base_directory)
|
---|
4511 | {
|
---|
4512 | int rc = 0;
|
---|
4513 |
|
---|
4514 | cli = cli_cm_open(talloc_tos(), NULL,
|
---|
4515 | desthost, service, true, smb_encrypt);
|
---|
4516 | if (!cli) {
|
---|
4517 | return 1;
|
---|
4518 | }
|
---|
4519 |
|
---|
4520 | if (base_directory && *base_directory) {
|
---|
4521 | rc = do_cd(base_directory);
|
---|
4522 | if (rc) {
|
---|
4523 | cli_cm_shutdown();
|
---|
4524 | return rc;
|
---|
4525 | }
|
---|
4526 | }
|
---|
4527 |
|
---|
4528 | if (cmdstr) {
|
---|
4529 | rc = process_command_string(cmdstr);
|
---|
4530 | } else {
|
---|
4531 | process_stdin();
|
---|
4532 | }
|
---|
4533 |
|
---|
4534 | cli_cm_shutdown();
|
---|
4535 | return rc;
|
---|
4536 | }
|
---|
4537 |
|
---|
4538 | /****************************************************************************
|
---|
4539 | Handle a -L query.
|
---|
4540 | ****************************************************************************/
|
---|
4541 |
|
---|
4542 | static int do_host_query(const char *query_host)
|
---|
4543 | {
|
---|
4544 | struct sockaddr_storage ss;
|
---|
4545 |
|
---|
4546 | cli = cli_cm_open(talloc_tos(), NULL,
|
---|
4547 | query_host, "IPC$", true, smb_encrypt);
|
---|
4548 | if (!cli)
|
---|
4549 | return 1;
|
---|
4550 |
|
---|
4551 | browse_host(true);
|
---|
4552 |
|
---|
4553 | if (interpret_string_addr(&ss, query_host, 0) && (ss.ss_family != AF_INET)) {
|
---|
4554 | d_printf("%s is an IPv6 address -- no workgroup available\n",
|
---|
4555 | query_host);
|
---|
4556 | return 1;
|
---|
4557 | }
|
---|
4558 |
|
---|
4559 | if (port != 139) {
|
---|
4560 |
|
---|
4561 | /* Workgroups simply don't make sense over anything
|
---|
4562 | else but port 139... */
|
---|
4563 |
|
---|
4564 | cli_cm_shutdown();
|
---|
4565 | cli_cm_set_port( 139 );
|
---|
4566 | cli = cli_cm_open(talloc_tos(), NULL,
|
---|
4567 | query_host, "IPC$", true, smb_encrypt);
|
---|
4568 | }
|
---|
4569 |
|
---|
4570 | if (cli == NULL) {
|
---|
4571 | d_printf("NetBIOS over TCP disabled -- no workgroup available\n");
|
---|
4572 | return 1;
|
---|
4573 | }
|
---|
4574 |
|
---|
4575 | list_servers(lp_workgroup());
|
---|
4576 |
|
---|
4577 | cli_cm_shutdown();
|
---|
4578 |
|
---|
4579 | return(0);
|
---|
4580 | }
|
---|
4581 |
|
---|
4582 | /****************************************************************************
|
---|
4583 | Handle a tar operation.
|
---|
4584 | ****************************************************************************/
|
---|
4585 |
|
---|
4586 | static int do_tar_op(const char *base_directory)
|
---|
4587 | {
|
---|
4588 | int ret;
|
---|
4589 |
|
---|
4590 | /* do we already have a connection? */
|
---|
4591 | if (!cli) {
|
---|
4592 | cli = cli_cm_open(talloc_tos(), NULL,
|
---|
4593 | desthost, service, true, smb_encrypt);
|
---|
4594 | if (!cli)
|
---|
4595 | return 1;
|
---|
4596 | }
|
---|
4597 |
|
---|
4598 | recurse=true;
|
---|
4599 |
|
---|
4600 | if (base_directory && *base_directory) {
|
---|
4601 | ret = do_cd(base_directory);
|
---|
4602 | if (ret) {
|
---|
4603 | cli_cm_shutdown();
|
---|
4604 | return ret;
|
---|
4605 | }
|
---|
4606 | }
|
---|
4607 |
|
---|
4608 | ret=process_tar();
|
---|
4609 |
|
---|
4610 | cli_cm_shutdown();
|
---|
4611 |
|
---|
4612 | return(ret);
|
---|
4613 | }
|
---|
4614 |
|
---|
4615 | /****************************************************************************
|
---|
4616 | Handle a message operation.
|
---|
4617 | ****************************************************************************/
|
---|
4618 |
|
---|
4619 | static int do_message_op(void)
|
---|
4620 | {
|
---|
4621 | struct sockaddr_storage ss;
|
---|
4622 | struct nmb_name called, calling;
|
---|
4623 | fstring server_name;
|
---|
4624 | char name_type_hex[10];
|
---|
4625 | int msg_port;
|
---|
4626 | NTSTATUS status;
|
---|
4627 |
|
---|
4628 | make_nmb_name(&calling, calling_name, 0x0);
|
---|
4629 | make_nmb_name(&called , desthost, name_type);
|
---|
4630 |
|
---|
4631 | fstrcpy(server_name, desthost);
|
---|
4632 | snprintf(name_type_hex, sizeof(name_type_hex), "#%X", name_type);
|
---|
4633 | fstrcat(server_name, name_type_hex);
|
---|
4634 |
|
---|
4635 | zero_sockaddr(&ss);
|
---|
4636 | if (have_ip)
|
---|
4637 | ss = dest_ss;
|
---|
4638 |
|
---|
4639 | /* we can only do messages over port 139 (to windows clients at least) */
|
---|
4640 |
|
---|
4641 | msg_port = port ? port : 139;
|
---|
4642 |
|
---|
4643 | if (!(cli=cli_initialise()) || (cli_set_port(cli, msg_port) != msg_port)) {
|
---|
4644 | d_printf("Connection to %s failed\n", desthost);
|
---|
4645 | return 1;
|
---|
4646 | }
|
---|
4647 |
|
---|
4648 | status = cli_connect(cli, server_name, &ss);
|
---|
4649 | if (!NT_STATUS_IS_OK(status)) {
|
---|
4650 | d_printf("Connection to %s failed. Error %s\n", desthost, nt_errstr(status));
|
---|
4651 | return 1;
|
---|
4652 | }
|
---|
4653 |
|
---|
4654 | if (!cli_session_request(cli, &calling, &called)) {
|
---|
4655 | d_printf("session request failed\n");
|
---|
4656 | cli_cm_shutdown();
|
---|
4657 | return 1;
|
---|
4658 | }
|
---|
4659 |
|
---|
4660 | send_message();
|
---|
4661 | cli_cm_shutdown();
|
---|
4662 |
|
---|
4663 | return 0;
|
---|
4664 | }
|
---|
4665 |
|
---|
4666 | /****************************************************************************
|
---|
4667 | main program
|
---|
4668 | ****************************************************************************/
|
---|
4669 |
|
---|
4670 | int main(int argc,char *argv[])
|
---|
4671 | {
|
---|
4672 | char *base_directory = NULL;
|
---|
4673 | int opt;
|
---|
4674 | char *query_host = NULL;
|
---|
4675 | bool message = false;
|
---|
4676 | char *term_code = NULL;
|
---|
4677 | static const char *new_name_resolve_order = NULL;
|
---|
4678 | poptContext pc;
|
---|
4679 | char *p;
|
---|
4680 | int rc = 0;
|
---|
4681 | fstring new_workgroup;
|
---|
4682 | bool tar_opt = false;
|
---|
4683 | bool service_opt = false;
|
---|
4684 | struct poptOption long_options[] = {
|
---|
4685 | POPT_AUTOHELP
|
---|
4686 |
|
---|
4687 | { "name-resolve", 'R', POPT_ARG_STRING, &new_name_resolve_order, 'R', "Use these name resolution services only", "NAME-RESOLVE-ORDER" },
|
---|
4688 | { "message", 'M', POPT_ARG_STRING, NULL, 'M', "Send message", "HOST" },
|
---|
4689 | { "ip-address", 'I', POPT_ARG_STRING, NULL, 'I', "Use this IP to connect to", "IP" },
|
---|
4690 | { "stderr", 'E', POPT_ARG_NONE, NULL, 'E', "Write messages to stderr instead of stdout" },
|
---|
4691 | { "list", 'L', POPT_ARG_STRING, NULL, 'L', "Get a list of shares available on a host", "HOST" },
|
---|
4692 | { "terminal", 't', POPT_ARG_STRING, NULL, 't', "Terminal I/O code {sjis|euc|jis7|jis8|junet|hex}", "CODE" },
|
---|
4693 | { "max-protocol", 'm', POPT_ARG_STRING, NULL, 'm', "Set the max protocol level", "LEVEL" },
|
---|
4694 | { "tar", 'T', POPT_ARG_STRING, NULL, 'T', "Command line tar", "<c|x>IXFqgbNan" },
|
---|
4695 | { "directory", 'D', POPT_ARG_STRING, NULL, 'D', "Start from directory", "DIR" },
|
---|
4696 | { "command", 'c', POPT_ARG_STRING, &cmdstr, 'c', "Execute semicolon separated commands" },
|
---|
4697 | { "send-buffer", 'b', POPT_ARG_INT, &io_bufsize, 'b', "Changes the transmit/send buffer", "BYTES" },
|
---|
4698 | { "port", 'p', POPT_ARG_INT, &port, 'p', "Port to connect to", "PORT" },
|
---|
4699 | { "grepable", 'g', POPT_ARG_NONE, NULL, 'g', "Produce grepable output" },
|
---|
4700 | { "browse", 'B', POPT_ARG_NONE, NULL, 'B', "Browse SMB servers using DNS" },
|
---|
4701 | POPT_COMMON_SAMBA
|
---|
4702 | POPT_COMMON_CONNECTION
|
---|
4703 | POPT_COMMON_CREDENTIALS
|
---|
4704 | POPT_TABLEEND
|
---|
4705 | };
|
---|
4706 | TALLOC_CTX *frame = talloc_stackframe();
|
---|
4707 |
|
---|
4708 | if (!client_set_cur_dir("\\")) {
|
---|
4709 | exit(ENOMEM);
|
---|
4710 | }
|
---|
4711 |
|
---|
4712 | #ifdef KANJI
|
---|
4713 | term_code = talloc_strdup(frame,KANJI);
|
---|
4714 | #else /* KANJI */
|
---|
4715 | term_code = talloc_strdup(frame,"");
|
---|
4716 | #endif /* KANJI */
|
---|
4717 | if (!term_code) {
|
---|
4718 | exit(ENOMEM);
|
---|
4719 | }
|
---|
4720 |
|
---|
4721 | /* initialize the workgroup name so we can determine whether or
|
---|
4722 | not it was set by a command line option */
|
---|
4723 |
|
---|
4724 | set_global_myworkgroup( "" );
|
---|
4725 | set_global_myname( "" );
|
---|
4726 |
|
---|
4727 | /* set default debug level to 1 regardless of what smb.conf sets */
|
---|
4728 | setup_logging( "smbclient", true );
|
---|
4729 | DEBUGLEVEL_CLASS[DBGC_ALL] = 1;
|
---|
4730 | if ((dbf = x_fdup(x_stderr))) {
|
---|
4731 | x_setbuf( dbf, NULL );
|
---|
4732 | }
|
---|
4733 |
|
---|
4734 | load_case_tables();
|
---|
4735 |
|
---|
4736 | /* skip argv(0) */
|
---|
4737 | pc = poptGetContext("smbclient", argc, (const char **) argv, long_options, 0);
|
---|
4738 | poptSetOtherOptionHelp(pc, "service <password>");
|
---|
4739 |
|
---|
4740 | lp_set_in_client(true); /* Make sure that we tell lp_load we are */
|
---|
4741 |
|
---|
4742 | while ((opt = poptGetNextOpt(pc)) != -1) {
|
---|
4743 |
|
---|
4744 | /* if the tar option has been called previouslt, now we need to eat out the leftovers */
|
---|
4745 | /* I see no other way to keep things sane --SSS */
|
---|
4746 | if (tar_opt == true) {
|
---|
4747 | while (poptPeekArg(pc)) {
|
---|
4748 | poptGetArg(pc);
|
---|
4749 | }
|
---|
4750 | tar_opt = false;
|
---|
4751 | }
|
---|
4752 |
|
---|
4753 | /* if the service has not yet been specified lets see if it is available in the popt stack */
|
---|
4754 | if (!service_opt && poptPeekArg(pc)) {
|
---|
4755 | service = talloc_strdup(frame, poptGetArg(pc));
|
---|
4756 | if (!service) {
|
---|
4757 | exit(ENOMEM);
|
---|
4758 | }
|
---|
4759 | service_opt = true;
|
---|
4760 | }
|
---|
4761 |
|
---|
4762 | /* if the service has already been retrieved then check if we have also a password */
|
---|
4763 | if (service_opt && (!get_cmdline_auth_info_got_pass()) && poptPeekArg(pc)) {
|
---|
4764 | set_cmdline_auth_info_password(poptGetArg(pc));
|
---|
4765 | }
|
---|
4766 |
|
---|
4767 | switch (opt) {
|
---|
4768 | case 'M':
|
---|
4769 | /* Messages are sent to NetBIOS name type 0x3
|
---|
4770 | * (Messenger Service). Make sure we default
|
---|
4771 | * to port 139 instead of port 445. srl,crh
|
---|
4772 | */
|
---|
4773 | name_type = 0x03;
|
---|
4774 | cli_cm_set_dest_name_type( name_type );
|
---|
4775 | desthost = talloc_strdup(frame,poptGetOptArg(pc));
|
---|
4776 | if (!desthost) {
|
---|
4777 | exit(ENOMEM);
|
---|
4778 | }
|
---|
4779 | if( !port )
|
---|
4780 | cli_cm_set_port( 139 );
|
---|
4781 | message = true;
|
---|
4782 | break;
|
---|
4783 | case 'I':
|
---|
4784 | {
|
---|
4785 | if (!interpret_string_addr(&dest_ss, poptGetOptArg(pc), 0)) {
|
---|
4786 | exit(1);
|
---|
4787 | }
|
---|
4788 | have_ip = true;
|
---|
4789 |
|
---|
4790 | cli_cm_set_dest_ss(&dest_ss);
|
---|
4791 | }
|
---|
4792 | break;
|
---|
4793 | case 'E':
|
---|
4794 | if (dbf) {
|
---|
4795 | x_fclose(dbf);
|
---|
4796 | }
|
---|
4797 | dbf = x_stderr;
|
---|
4798 | display_set_stderr();
|
---|
4799 | break;
|
---|
4800 |
|
---|
4801 | case 'L':
|
---|
4802 | query_host = talloc_strdup(frame, poptGetOptArg(pc));
|
---|
4803 | if (!query_host) {
|
---|
4804 | exit(ENOMEM);
|
---|
4805 | }
|
---|
4806 | break;
|
---|
4807 | case 't':
|
---|
4808 | term_code = talloc_strdup(frame,poptGetOptArg(pc));
|
---|
4809 | if (!term_code) {
|
---|
4810 | exit(ENOMEM);
|
---|
4811 | }
|
---|
4812 | break;
|
---|
4813 | case 'm':
|
---|
4814 | max_protocol = interpret_protocol(poptGetOptArg(pc), max_protocol);
|
---|
4815 | break;
|
---|
4816 | case 'T':
|
---|
4817 | /* We must use old option processing for this. Find the
|
---|
4818 | * position of the -T option in the raw argv[]. */
|
---|
4819 | {
|
---|
4820 | int i;
|
---|
4821 | for (i = 1; i < argc; i++) {
|
---|
4822 | if (strncmp("-T", argv[i],2)==0)
|
---|
4823 | break;
|
---|
4824 | }
|
---|
4825 | i++;
|
---|
4826 | if (!tar_parseargs(argc, argv, poptGetOptArg(pc), i)) {
|
---|
4827 | poptPrintUsage(pc, stderr, 0);
|
---|
4828 | exit(1);
|
---|
4829 | }
|
---|
4830 | }
|
---|
4831 | /* this must be the last option, mark we have parsed it so that we know we have */
|
---|
4832 | tar_opt = true;
|
---|
4833 | break;
|
---|
4834 | case 'D':
|
---|
4835 | base_directory = talloc_strdup(frame, poptGetOptArg(pc));
|
---|
4836 | if (!base_directory) {
|
---|
4837 | exit(ENOMEM);
|
---|
4838 | }
|
---|
4839 | break;
|
---|
4840 | case 'g':
|
---|
4841 | grepable=true;
|
---|
4842 | break;
|
---|
4843 | case 'e':
|
---|
4844 | smb_encrypt=true;
|
---|
4845 | break;
|
---|
4846 | case 'B':
|
---|
4847 | return(do_smb_browse());
|
---|
4848 |
|
---|
4849 | }
|
---|
4850 | }
|
---|
4851 |
|
---|
4852 | /* We may still have some leftovers after the last popt option has been called */
|
---|
4853 | if (tar_opt == true) {
|
---|
4854 | while (poptPeekArg(pc)) {
|
---|
4855 | poptGetArg(pc);
|
---|
4856 | }
|
---|
4857 | tar_opt = false;
|
---|
4858 | }
|
---|
4859 |
|
---|
4860 | /* if the service has not yet been specified lets see if it is available in the popt stack */
|
---|
4861 | if (!service_opt && poptPeekArg(pc)) {
|
---|
4862 | service = talloc_strdup(frame,poptGetArg(pc));
|
---|
4863 | if (!service) {
|
---|
4864 | exit(ENOMEM);
|
---|
4865 | }
|
---|
4866 | service_opt = true;
|
---|
4867 | }
|
---|
4868 |
|
---|
4869 | /* if the service has already been retrieved then check if we have also a password */
|
---|
4870 | if (service_opt && !get_cmdline_auth_info_got_pass() && poptPeekArg(pc)) {
|
---|
4871 | set_cmdline_auth_info_password(poptGetArg(pc));
|
---|
4872 | }
|
---|
4873 |
|
---|
4874 | /* check for the -P option */
|
---|
4875 |
|
---|
4876 | if ( port != 0 )
|
---|
4877 | cli_cm_set_port( port );
|
---|
4878 |
|
---|
4879 | /*
|
---|
4880 | * Don't load debug level from smb.conf. It should be
|
---|
4881 | * set by cmdline arg or remain default (0)
|
---|
4882 | */
|
---|
4883 | AllowDebugChange = false;
|
---|
4884 |
|
---|
4885 | /* save the workgroup...
|
---|
4886 |
|
---|
4887 | FIXME!! do we need to do this for other options as well
|
---|
4888 | (or maybe a generic way to keep lp_load() from overwriting
|
---|
4889 | everything)? */
|
---|
4890 |
|
---|
4891 | fstrcpy( new_workgroup, lp_workgroup() );
|
---|
4892 | calling_name = talloc_strdup(frame, global_myname() );
|
---|
4893 | if (!calling_name) {
|
---|
4894 | exit(ENOMEM);
|
---|
4895 | }
|
---|
4896 |
|
---|
4897 | if ( override_logfile )
|
---|
4898 | setup_logging( lp_logfile(), false );
|
---|
4899 |
|
---|
4900 | if (!lp_load(get_dyn_CONFIGFILE(),true,false,false,true)) {
|
---|
4901 | fprintf(stderr, "%s: Can't load %s - run testparm to debug it\n",
|
---|
4902 | argv[0], get_dyn_CONFIGFILE());
|
---|
4903 | }
|
---|
4904 |
|
---|
4905 | if (get_cmdline_auth_info_use_machine_account() &&
|
---|
4906 | !set_cmdline_auth_info_machine_account_creds()) {
|
---|
4907 | exit(-1);
|
---|
4908 | }
|
---|
4909 |
|
---|
4910 | load_interfaces();
|
---|
4911 |
|
---|
4912 | if (service_opt && service) {
|
---|
4913 | size_t len;
|
---|
4914 |
|
---|
4915 | /* Convert any '/' characters in the service name to '\' characters */
|
---|
4916 | string_replace(service, '/','\\');
|
---|
4917 | if (count_chars(service,'\\') < 3) {
|
---|
4918 | d_printf("\n%s: Not enough '\\' characters in service\n",service);
|
---|
4919 | poptPrintUsage(pc, stderr, 0);
|
---|
4920 | exit(1);
|
---|
4921 | }
|
---|
4922 | /* Remove trailing slashes */
|
---|
4923 | len = strlen(service);
|
---|
4924 | while(len > 0 && service[len - 1] == '\\') {
|
---|
4925 | --len;
|
---|
4926 | service[len] = '\0';
|
---|
4927 | }
|
---|
4928 | }
|
---|
4929 |
|
---|
4930 | if ( strlen(new_workgroup) != 0 ) {
|
---|
4931 | set_global_myworkgroup( new_workgroup );
|
---|
4932 | }
|
---|
4933 |
|
---|
4934 | if ( strlen(calling_name) != 0 ) {
|
---|
4935 | set_global_myname( calling_name );
|
---|
4936 | } else {
|
---|
4937 | TALLOC_FREE(calling_name);
|
---|
4938 | calling_name = talloc_strdup(frame, global_myname() );
|
---|
4939 | }
|
---|
4940 |
|
---|
4941 | smb_encrypt = get_cmdline_auth_info_smb_encrypt();
|
---|
4942 | if (!init_names()) {
|
---|
4943 | fprintf(stderr, "init_names() failed\n");
|
---|
4944 | exit(1);
|
---|
4945 | }
|
---|
4946 |
|
---|
4947 | if(new_name_resolve_order)
|
---|
4948 | lp_set_name_resolve_order(new_name_resolve_order);
|
---|
4949 |
|
---|
4950 | if (!tar_type && !query_host && !service && !message) {
|
---|
4951 | poptPrintUsage(pc, stderr, 0);
|
---|
4952 | exit(1);
|
---|
4953 | }
|
---|
4954 |
|
---|
4955 | poptFreeContext(pc);
|
---|
4956 |
|
---|
4957 | /* Store the username and password for dfs support */
|
---|
4958 |
|
---|
4959 | cli_cm_set_credentials();
|
---|
4960 |
|
---|
4961 | DEBUG(3,("Client started (version %s).\n", SAMBA_VERSION_STRING));
|
---|
4962 |
|
---|
4963 | if (tar_type) {
|
---|
4964 | if (cmdstr)
|
---|
4965 | process_command_string(cmdstr);
|
---|
4966 | return do_tar_op(base_directory);
|
---|
4967 | }
|
---|
4968 |
|
---|
4969 | if (query_host && *query_host) {
|
---|
4970 | char *qhost = query_host;
|
---|
4971 | char *slash;
|
---|
4972 |
|
---|
4973 | while (*qhost == '\\' || *qhost == '/')
|
---|
4974 | qhost++;
|
---|
4975 |
|
---|
4976 | if ((slash = strchr_m(qhost, '/'))
|
---|
4977 | || (slash = strchr_m(qhost, '\\'))) {
|
---|
4978 | *slash = 0;
|
---|
4979 | }
|
---|
4980 |
|
---|
4981 | if ((p=strchr_m(qhost, '#'))) {
|
---|
4982 | *p = 0;
|
---|
4983 | p++;
|
---|
4984 | sscanf(p, "%x", &name_type);
|
---|
4985 | cli_cm_set_dest_name_type( name_type );
|
---|
4986 | }
|
---|
4987 |
|
---|
4988 | return do_host_query(qhost);
|
---|
4989 | }
|
---|
4990 |
|
---|
4991 | if (message) {
|
---|
4992 | return do_message_op();
|
---|
4993 | }
|
---|
4994 |
|
---|
4995 | if (process(base_directory)) {
|
---|
4996 | return 1;
|
---|
4997 | }
|
---|
4998 |
|
---|
4999 | TALLOC_FREE(frame);
|
---|
5000 | return rc;
|
---|
5001 | }
|
---|