]> andersk Git - openssh.git/blame - sftp.c
- stevesk@cvs.openbsd.org 2006/07/06 17:36:37
[openssh.git] / sftp.c
CommitLineData
2b8dc5e3 1/* $OpenBSD: sftp.c,v 1.82 2006/05/17 12:43:34 markus Exp $ */
61e96248 2/*
ab3932ab 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
61e96248 4 *
ab3932ab 5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
61e96248 8 *
ab3932ab 9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
61e96248 16 */
17
18#include "includes.h"
19
aa2eae64 20#include <sys/types.h>
4095f623 21#ifdef HAVE_SYS_STAT_H
22# include <sys/stat.h>
23#endif
24#include <sys/ioctl.h>
aa2eae64 25#include <sys/wait.h>
5132eac0 26
a75f5360 27#ifdef HAVE_PATHS_H
6f61e0ec 28# include <paths.h>
a75f5360 29#endif
5132eac0 30#ifdef USE_LIBEDIT
31#include <histedit.h>
32#else
33typedef void EditLine;
34#endif
ada68823 35#include <signal.h>
61e96248 36
37#include "buffer.h"
38#include "xmalloc.h"
39#include "log.h"
40#include "pathnames.h"
1fcde3fe 41#include "misc.h"
61e96248 42
43#include "sftp.h"
44#include "sftp-common.h"
45#include "sftp-client.h"
caf1e9f0 46
2cda7d6b 47/* File to read commands from */
48FILE* infile;
49
50/* Are we in batchfile mode? */
51int batchmode = 0;
52
53/* Size of buffer used when copying files */
54size_t copy_buffer_len = 32768;
55
56/* Number of concurrent outstanding requests */
57size_t num_requests = 16;
58
59/* PID of ssh transport process */
60static pid_t sshpid = -1;
61
62/* This is set to 0 if the progressmeter is not desired. */
06abcf97 63int showprogress = 1;
2cda7d6b 64
0e5de6f8 65/* SIGINT received during command processing */
66volatile sig_atomic_t interrupted = 0;
67
95cbd340 68/* I wish qsort() took a separate ctx for the comparison function...*/
69int sort_flag;
70
2cda7d6b 71int remote_glob(struct sftp_conn *, const char *, int,
72 int (*)(const char *, int), glob_t *); /* proto for sftp-glob.c */
61e96248 73
5152d46f 74extern char *__progname;
5152d46f 75
2cda7d6b 76/* Separators for interactive commands */
77#define WHITESPACE " \t\r\n"
78
95cbd340 79/* ls flags */
ae7daec3 80#define LS_LONG_VIEW 0x01 /* Full view ala ls -l */
81#define LS_SHORT_VIEW 0x02 /* Single row view ala ls -1 */
82#define LS_NUMERIC_VIEW 0x04 /* Long view with numeric uid/gid */
83#define LS_NAME_SORT 0x08 /* Sort by name (default) */
84#define LS_TIME_SORT 0x10 /* Sort by mtime */
85#define LS_SIZE_SORT 0x20 /* Sort by file size */
86#define LS_REVERSE_SORT 0x40 /* Reverse sort order */
cc4ff6c4 87#define LS_SHOW_ALL 0x80 /* Don't skip filenames starting with '.' */
95cbd340 88
ae7daec3 89#define VIEW_FLAGS (LS_LONG_VIEW|LS_SHORT_VIEW|LS_NUMERIC_VIEW)
90#define SORT_FLAGS (LS_NAME_SORT|LS_TIME_SORT|LS_SIZE_SORT)
2cda7d6b 91
92/* Commands for interactive mode */
93#define I_CHDIR 1
94#define I_CHGRP 2
95#define I_CHMOD 3
96#define I_CHOWN 4
97#define I_GET 5
98#define I_HELP 6
99#define I_LCHDIR 7
100#define I_LLS 8
101#define I_LMKDIR 9
102#define I_LPWD 10
103#define I_LS 11
104#define I_LUMASK 12
105#define I_MKDIR 13
106#define I_PUT 14
107#define I_PWD 15
108#define I_QUIT 16
109#define I_RENAME 17
110#define I_RM 18
111#define I_RMDIR 19
112#define I_SHELL 20
113#define I_SYMLINK 21
114#define I_VERSION 22
115#define I_PROGRESS 23
116
117struct CMD {
118 const char *c;
119 const int n;
120};
121
122static const struct CMD cmds[] = {
123 { "bye", I_QUIT },
124 { "cd", I_CHDIR },
125 { "chdir", I_CHDIR },
126 { "chgrp", I_CHGRP },
127 { "chmod", I_CHMOD },
128 { "chown", I_CHOWN },
129 { "dir", I_LS },
130 { "exit", I_QUIT },
131 { "get", I_GET },
132 { "mget", I_GET },
133 { "help", I_HELP },
134 { "lcd", I_LCHDIR },
135 { "lchdir", I_LCHDIR },
136 { "lls", I_LLS },
137 { "lmkdir", I_LMKDIR },
138 { "ln", I_SYMLINK },
139 { "lpwd", I_LPWD },
140 { "ls", I_LS },
141 { "lumask", I_LUMASK },
142 { "mkdir", I_MKDIR },
143 { "progress", I_PROGRESS },
144 { "put", I_PUT },
145 { "mput", I_PUT },
146 { "pwd", I_PWD },
147 { "quit", I_QUIT },
148 { "rename", I_RENAME },
149 { "rm", I_RM },
150 { "rmdir", I_RMDIR },
151 { "symlink", I_SYMLINK },
152 { "version", I_VERSION },
153 { "!", I_SHELL },
154 { "?", I_HELP },
155 { NULL, -1}
156};
157
158int interactive_loop(int fd_in, int fd_out, char *file1, char *file2);
159
0e5de6f8 160static void
161killchild(int signo)
162{
3c03ad3f 163 if (sshpid > 1) {
0e5de6f8 164 kill(sshpid, SIGTERM);
3c03ad3f 165 waitpid(sshpid, NULL, 0);
166 }
0e5de6f8 167
168 _exit(1);
169}
170
171static void
172cmd_interrupt(int signo)
173{
174 const char msg[] = "\rInterrupt \n";
47460206 175 int olderrno = errno;
0e5de6f8 176
177 write(STDERR_FILENO, msg, sizeof(msg) - 1);
178 interrupted = 1;
47460206 179 errno = olderrno;
0e5de6f8 180}
181
2cda7d6b 182static void
183help(void)
184{
185 printf("Available commands:\n");
186 printf("cd path Change remote directory to 'path'\n");
187 printf("lcd path Change local directory to 'path'\n");
188 printf("chgrp grp path Change group of file 'path' to 'grp'\n");
189 printf("chmod mode path Change permissions of file 'path' to 'mode'\n");
190 printf("chown own path Change owner of file 'path' to 'own'\n");
191 printf("help Display this help text\n");
192 printf("get remote-path [local-path] Download file\n");
193 printf("lls [ls-options [path]] Display local directory listing\n");
194 printf("ln oldpath newpath Symlink remote file\n");
195 printf("lmkdir path Create local directory\n");
196 printf("lpwd Print local working directory\n");
197 printf("ls [path] Display remote directory listing\n");
198 printf("lumask umask Set local umask to 'umask'\n");
199 printf("mkdir path Create remote directory\n");
200 printf("progress Toggle display of progress meter\n");
201 printf("put local-path [remote-path] Upload file\n");
202 printf("pwd Display remote working directory\n");
203 printf("exit Quit sftp\n");
204 printf("quit Quit sftp\n");
205 printf("rename oldpath newpath Rename remote file\n");
206 printf("rmdir path Remove remote directory\n");
207 printf("rm path Delete remote file\n");
208 printf("symlink oldpath newpath Symlink remote file\n");
209 printf("version Show SFTP version\n");
210 printf("!command Execute 'command' in local shell\n");
211 printf("! Escape to local shell\n");
212 printf("? Synonym for help\n");
213}
214
215static void
216local_do_shell(const char *args)
217{
218 int status;
219 char *shell;
220 pid_t pid;
221
222 if (!*args)
223 args = NULL;
224
225 if ((shell = getenv("SHELL")) == NULL)
226 shell = _PATH_BSHELL;
227
228 if ((pid = fork()) == -1)
229 fatal("Couldn't fork: %s", strerror(errno));
230
231 if (pid == 0) {
232 /* XXX: child has pipe fds to ssh subproc open - issue? */
233 if (args) {
234 debug3("Executing %s -c \"%s\"", shell, args);
235 execl(shell, shell, "-c", args, (char *)NULL);
236 } else {
237 debug3("Executing %s", shell);
238 execl(shell, shell, (char *)NULL);
239 }
240 fprintf(stderr, "Couldn't execute \"%s\": %s\n", shell,
241 strerror(errno));
242 _exit(1);
243 }
244 while (waitpid(pid, &status, 0) == -1)
245 if (errno != EINTR)
246 fatal("Couldn't wait for child: %s", strerror(errno));
247 if (!WIFEXITED(status))
522327f5 248 error("Shell exited abnormally");
2cda7d6b 249 else if (WEXITSTATUS(status))
250 error("Shell exited with status %d", WEXITSTATUS(status));
251}
252
253static void
254local_do_ls(const char *args)
255{
256 if (!args || !*args)
257 local_do_shell(_PATH_LS);
258 else {
259 int len = strlen(_PATH_LS " ") + strlen(args) + 1;
260 char *buf = xmalloc(len);
261
262 /* XXX: quoting - rip quoting code from ftp? */
263 snprintf(buf, len, _PATH_LS " %s", args);
264 local_do_shell(buf);
265 xfree(buf);
266 }
267}
268
269/* Strip one path (usually the pwd) from the start of another */
270static char *
271path_strip(char *path, char *strip)
272{
273 size_t len;
0426a3b4 274
2cda7d6b 275 if (strip == NULL)
276 return (xstrdup(path));
277
278 len = strlen(strip);
47460206 279 if (strncmp(path, strip, len) == 0) {
2cda7d6b 280 if (strip[len - 1] != '/' && path[len] == '/')
281 len++;
282 return (xstrdup(path + len));
283 }
284
285 return (xstrdup(path));
286}
287
288static char *
289path_append(char *p1, char *p2)
290{
291 char *ret;
292 int len = strlen(p1) + strlen(p2) + 2;
293
294 ret = xmalloc(len);
295 strlcpy(ret, p1, len);
296 if (p1[strlen(p1) - 1] != '/')
297 strlcat(ret, "/", len);
298 strlcat(ret, p2, len);
299
300 return(ret);
301}
302
303static char *
304make_absolute(char *p, char *pwd)
305{
ca75d7de 306 char *abs_str;
2cda7d6b 307
308 /* Derelativise */
309 if (p && p[0] != '/') {
ca75d7de 310 abs_str = path_append(pwd, p);
2cda7d6b 311 xfree(p);
ca75d7de 312 return(abs_str);
2cda7d6b 313 } else
314 return(p);
315}
316
317static int
318infer_path(const char *p, char **ifp)
319{
320 char *cp;
321
322 cp = strrchr(p, '/');
323 if (cp == NULL) {
324 *ifp = xstrdup(p);
325 return(0);
326 }
327
328 if (!cp[1]) {
329 error("Invalid path");
330 return(-1);
331 }
332
333 *ifp = xstrdup(cp + 1);
334 return(0);
335}
336
337static int
338parse_getput_flags(const char **cpp, int *pflag)
339{
340 const char *cp = *cpp;
341
342 /* Check for flags */
343 if (cp[0] == '-' && cp[1] && strchr(WHITESPACE, cp[2])) {
344 switch (cp[1]) {
345 case 'p':
346 case 'P':
347 *pflag = 1;
348 break;
349 default:
350 error("Invalid flag -%c", cp[1]);
351 return(-1);
352 }
353 cp += 2;
354 *cpp = cp + strspn(cp, WHITESPACE);
355 }
356
357 return(0);
358}
359
360static int
361parse_ls_flags(const char **cpp, int *lflag)
362{
363 const char *cp = *cpp;
364
95cbd340 365 /* Defaults */
ae7daec3 366 *lflag = LS_NAME_SORT;
95cbd340 367
2cda7d6b 368 /* Check for flags */
369 if (cp++[0] == '-') {
f8cc7664 370 for (; strchr(WHITESPACE, *cp) == NULL; cp++) {
2cda7d6b 371 switch (*cp) {
372 case 'l':
48925711 373 *lflag &= ~VIEW_FLAGS;
ae7daec3 374 *lflag |= LS_LONG_VIEW;
2cda7d6b 375 break;
376 case '1':
48925711 377 *lflag &= ~VIEW_FLAGS;
ae7daec3 378 *lflag |= LS_SHORT_VIEW;
48925711 379 break;
380 case 'n':
381 *lflag &= ~VIEW_FLAGS;
ae7daec3 382 *lflag |= LS_NUMERIC_VIEW|LS_LONG_VIEW;
2cda7d6b 383 break;
95cbd340 384 case 'S':
385 *lflag &= ~SORT_FLAGS;
ae7daec3 386 *lflag |= LS_SIZE_SORT;
95cbd340 387 break;
388 case 't':
389 *lflag &= ~SORT_FLAGS;
ae7daec3 390 *lflag |= LS_TIME_SORT;
95cbd340 391 break;
392 case 'r':
ae7daec3 393 *lflag |= LS_REVERSE_SORT;
95cbd340 394 break;
395 case 'f':
396 *lflag &= ~SORT_FLAGS;
397 break;
cc4ff6c4 398 case 'a':
399 *lflag |= LS_SHOW_ALL;
400 break;
2cda7d6b 401 default:
402 error("Invalid flag -%c", *cp);
403 return(-1);
404 }
405 }
406 *cpp = cp + strspn(cp, WHITESPACE);
407 }
408
409 return(0);
410}
411
412static int
413get_pathname(const char **cpp, char **path)
414{
415 const char *cp = *cpp, *end;
416 char quot;
2ceb8101 417 u_int i, j;
2cda7d6b 418
419 cp += strspn(cp, WHITESPACE);
420 if (!*cp) {
421 *cpp = cp;
422 *path = NULL;
423 return (0);
424 }
425
426 *path = xmalloc(strlen(cp) + 1);
427
428 /* Check for quoted filenames */
429 if (*cp == '\"' || *cp == '\'') {
430 quot = *cp++;
431
432 /* Search for terminating quote, unescape some chars */
433 for (i = j = 0; i <= strlen(cp); i++) {
434 if (cp[i] == quot) { /* Found quote */
435 i++;
436 (*path)[j] = '\0';
437 break;
438 }
439 if (cp[i] == '\0') { /* End of string */
440 error("Unterminated quote");
441 goto fail;
442 }
443 if (cp[i] == '\\') { /* Escaped characters */
444 i++;
445 if (cp[i] != '\'' && cp[i] != '\"' &&
446 cp[i] != '\\') {
7f09f717 447 error("Bad escaped character '\\%c'",
2cda7d6b 448 cp[i]);
449 goto fail;
450 }
451 }
452 (*path)[j++] = cp[i];
453 }
454
455 if (j == 0) {
456 error("Empty quotes");
457 goto fail;
458 }
459 *cpp = cp + i + strspn(cp + i, WHITESPACE);
460 } else {
461 /* Read to end of filename */
462 end = strpbrk(cp, WHITESPACE);
463 if (end == NULL)
464 end = strchr(cp, '\0');
465 *cpp = end + strspn(end, WHITESPACE);
466
467 memcpy(*path, cp, end - cp);
468 (*path)[end - cp] = '\0';
469 }
470 return (0);
471
472 fail:
473 xfree(*path);
474 *path = NULL;
475 return (-1);
476}
477
478static int
479is_dir(char *path)
480{
481 struct stat sb;
482
483 /* XXX: report errors? */
484 if (stat(path, &sb) == -1)
485 return(0);
486
487 return(sb.st_mode & S_IFDIR);
488}
489
490static int
491is_reg(char *path)
492{
493 struct stat sb;
494
495 if (stat(path, &sb) == -1)
496 fatal("stat %s: %s", path, strerror(errno));
497
498 return(S_ISREG(sb.st_mode));
499}
500
501static int
502remote_is_dir(struct sftp_conn *conn, char *path)
503{
504 Attrib *a;
505
506 /* XXX: report errors? */
507 if ((a = do_stat(conn, path, 1)) == NULL)
508 return(0);
509 if (!(a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS))
510 return(0);
511 return(a->perm & S_IFDIR);
512}
513
514static int
515process_get(struct sftp_conn *conn, char *src, char *dst, char *pwd, int pflag)
516{
517 char *abs_src = NULL;
518 char *abs_dst = NULL;
519 char *tmp;
520 glob_t g;
521 int err = 0;
522 int i;
523
524 abs_src = xstrdup(src);
525 abs_src = make_absolute(abs_src, pwd);
526
527 memset(&g, 0, sizeof(g));
528 debug3("Looking up %s", abs_src);
529 if (remote_glob(conn, abs_src, 0, NULL, &g)) {
530 error("File \"%s\" not found.", abs_src);
531 err = -1;
532 goto out;
533 }
534
535 /* If multiple matches, dst must be a directory or unspecified */
536 if (g.gl_matchc > 1 && dst && !is_dir(dst)) {
537 error("Multiple files match, but \"%s\" is not a directory",
538 dst);
539 err = -1;
540 goto out;
541 }
542
0e5de6f8 543 for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
2cda7d6b 544 if (infer_path(g.gl_pathv[i], &tmp)) {
545 err = -1;
546 goto out;
547 }
548
549 if (g.gl_matchc == 1 && dst) {
550 /* If directory specified, append filename */
2b8dc5e3 551 xfree(tmp);
2cda7d6b 552 if (is_dir(dst)) {
553 if (infer_path(g.gl_pathv[0], &tmp)) {
554 err = 1;
555 goto out;
556 }
557 abs_dst = path_append(dst, tmp);
558 xfree(tmp);
559 } else
560 abs_dst = xstrdup(dst);
561 } else if (dst) {
562 abs_dst = path_append(dst, tmp);
563 xfree(tmp);
564 } else
565 abs_dst = tmp;
566
567 printf("Fetching %s to %s\n", g.gl_pathv[i], abs_dst);
568 if (do_download(conn, g.gl_pathv[i], abs_dst, pflag) == -1)
569 err = -1;
570 xfree(abs_dst);
571 abs_dst = NULL;
572 }
573
574out:
575 xfree(abs_src);
2cda7d6b 576 globfree(&g);
577 return(err);
578}
579
580static int
581process_put(struct sftp_conn *conn, char *src, char *dst, char *pwd, int pflag)
582{
583 char *tmp_dst = NULL;
584 char *abs_dst = NULL;
585 char *tmp;
586 glob_t g;
587 int err = 0;
588 int i;
589
590 if (dst) {
591 tmp_dst = xstrdup(dst);
592 tmp_dst = make_absolute(tmp_dst, pwd);
593 }
594
595 memset(&g, 0, sizeof(g));
596 debug3("Looking up %s", src);
597 if (glob(src, 0, NULL, &g)) {
598 error("File \"%s\" not found.", src);
599 err = -1;
600 goto out;
601 }
602
603 /* If multiple matches, dst may be directory or unspecified */
604 if (g.gl_matchc > 1 && tmp_dst && !remote_is_dir(conn, tmp_dst)) {
605 error("Multiple files match, but \"%s\" is not a directory",
606 tmp_dst);
607 err = -1;
608 goto out;
609 }
610
0e5de6f8 611 for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
2cda7d6b 612 if (!is_reg(g.gl_pathv[i])) {
613 error("skipping non-regular file %s",
614 g.gl_pathv[i]);
615 continue;
616 }
617 if (infer_path(g.gl_pathv[i], &tmp)) {
618 err = -1;
619 goto out;
620 }
621
622 if (g.gl_matchc == 1 && tmp_dst) {
623 /* If directory specified, append filename */
624 if (remote_is_dir(conn, tmp_dst)) {
625 if (infer_path(g.gl_pathv[0], &tmp)) {
626 err = 1;
627 goto out;
628 }
629 abs_dst = path_append(tmp_dst, tmp);
630 xfree(tmp);
631 } else
632 abs_dst = xstrdup(tmp_dst);
633
634 } else if (tmp_dst) {
635 abs_dst = path_append(tmp_dst, tmp);
636 xfree(tmp);
637 } else
638 abs_dst = make_absolute(tmp, pwd);
639
640 printf("Uploading %s to %s\n", g.gl_pathv[i], abs_dst);
641 if (do_upload(conn, g.gl_pathv[i], abs_dst, pflag) == -1)
642 err = -1;
643 }
644
645out:
646 if (abs_dst)
647 xfree(abs_dst);
648 if (tmp_dst)
649 xfree(tmp_dst);
650 globfree(&g);
651 return(err);
652}
653
654static int
655sdirent_comp(const void *aa, const void *bb)
656{
657 SFTP_DIRENT *a = *(SFTP_DIRENT **)aa;
658 SFTP_DIRENT *b = *(SFTP_DIRENT **)bb;
ae7daec3 659 int rmul = sort_flag & LS_REVERSE_SORT ? -1 : 1;
2cda7d6b 660
95cbd340 661#define NCMP(a,b) (a == b ? 0 : (a < b ? 1 : -1))
ae7daec3 662 if (sort_flag & LS_NAME_SORT)
95cbd340 663 return (rmul * strcmp(a->filename, b->filename));
ae7daec3 664 else if (sort_flag & LS_TIME_SORT)
95cbd340 665 return (rmul * NCMP(a->a.mtime, b->a.mtime));
ae7daec3 666 else if (sort_flag & LS_SIZE_SORT)
95cbd340 667 return (rmul * NCMP(a->a.size, b->a.size));
668
669 fatal("Unknown ls sort type");
2cda7d6b 670}
671
672/* sftp ls.1 replacement for directories */
673static int
674do_ls_dir(struct sftp_conn *conn, char *path, char *strip_path, int lflag)
675{
2ceb8101 676 int n;
677 u_int c = 1, colspace = 0, columns = 1;
2cda7d6b 678 SFTP_DIRENT **d;
679
680 if ((n = do_readdir(conn, path, &d)) != 0)
681 return (n);
682
ae7daec3 683 if (!(lflag & LS_SHORT_VIEW)) {
2ceb8101 684 u_int m = 0, width = 80;
2cda7d6b 685 struct winsize ws;
686 char *tmp;
687
688 /* Count entries for sort and find longest filename */
cc4ff6c4 689 for (n = 0; d[n] != NULL; n++) {
690 if (d[n]->filename[0] != '.' || (lflag & LS_SHOW_ALL))
691 m = MAX(m, strlen(d[n]->filename));
692 }
2cda7d6b 693
694 /* Add any subpath that also needs to be counted */
695 tmp = path_strip(path, strip_path);
696 m += strlen(tmp);
697 xfree(tmp);
698
699 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) != -1)
700 width = ws.ws_col;
701
702 columns = width / (m + 2);
703 columns = MAX(columns, 1);
704 colspace = width / columns;
705 colspace = MIN(colspace, width);
706 }
707
95cbd340 708 if (lflag & SORT_FLAGS) {
bdd3b323 709 for (n = 0; d[n] != NULL; n++)
710 ; /* count entries */
ae7daec3 711 sort_flag = lflag & (SORT_FLAGS|LS_REVERSE_SORT);
95cbd340 712 qsort(d, n, sizeof(*d), sdirent_comp);
713 }
2cda7d6b 714
0e5de6f8 715 for (n = 0; d[n] != NULL && !interrupted; n++) {
2cda7d6b 716 char *tmp, *fname;
717
cc4ff6c4 718 if (d[n]->filename[0] == '.' && !(lflag & LS_SHOW_ALL))
719 continue;
720
2cda7d6b 721 tmp = path_append(path, d[n]->filename);
722 fname = path_strip(tmp, strip_path);
723 xfree(tmp);
724
ae7daec3 725 if (lflag & LS_LONG_VIEW) {
726 if (lflag & LS_NUMERIC_VIEW) {
48925711 727 char *lname;
728 struct stat sb;
729
730 memset(&sb, 0, sizeof(sb));
731 attrib_to_stat(&d[n]->a, &sb);
732 lname = ls_file(fname, &sb, 1);
733 printf("%s\n", lname);
734 xfree(lname);
735 } else
736 printf("%s\n", d[n]->longname);
2cda7d6b 737 } else {
738 printf("%-*s", colspace, fname);
739 if (c >= columns) {
740 printf("\n");
741 c = 1;
742 } else
743 c++;
744 }
745
746 xfree(fname);
747 }
748
ae7daec3 749 if (!(lflag & LS_LONG_VIEW) && (c != 1))
2cda7d6b 750 printf("\n");
751
752 free_sftp_dirents(d);
753 return (0);
754}
755
756/* sftp ls.1 replacement which handles path globs */
757static int
758do_globbed_ls(struct sftp_conn *conn, char *path, char *strip_path,
759 int lflag)
760{
761 glob_t g;
2ceb8101 762 u_int i, c = 1, colspace = 0, columns = 1;
2bd204e5 763 Attrib *a = NULL;
2cda7d6b 764
765 memset(&g, 0, sizeof(g));
766
767 if (remote_glob(conn, path, GLOB_MARK|GLOB_NOCHECK|GLOB_BRACE,
2bd204e5 768 NULL, &g) || (g.gl_pathc && !g.gl_matchc)) {
769 if (g.gl_pathc)
770 globfree(&g);
2cda7d6b 771 error("Can't ls: \"%s\" not found", path);
772 return (-1);
773 }
774
0e5de6f8 775 if (interrupted)
776 goto out;
777
2cda7d6b 778 /*
2bd204e5 779 * If the glob returns a single match and it is a directory,
780 * then just list its contents.
2cda7d6b 781 */
2bd204e5 782 if (g.gl_matchc == 1) {
783 if ((a = do_lstat(conn, g.gl_pathv[0], 1)) == NULL) {
2cda7d6b 784 globfree(&g);
785 return (-1);
786 }
787 if ((a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) &&
788 S_ISDIR(a->perm)) {
2bd204e5 789 int err;
790
791 err = do_ls_dir(conn, g.gl_pathv[0], strip_path, lflag);
2cda7d6b 792 globfree(&g);
2bd204e5 793 return (err);
2cda7d6b 794 }
795 }
796
ae7daec3 797 if (!(lflag & LS_SHORT_VIEW)) {
2ceb8101 798 u_int m = 0, width = 80;
2cda7d6b 799 struct winsize ws;
800
801 /* Count entries for sort and find longest filename */
802 for (i = 0; g.gl_pathv[i]; i++)
803 m = MAX(m, strlen(g.gl_pathv[i]));
804
805 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) != -1)
806 width = ws.ws_col;
807
808 columns = width / (m + 2);
809 columns = MAX(columns, 1);
810 colspace = width / columns;
811 }
812
2bd204e5 813 for (i = 0; g.gl_pathv[i] && !interrupted; i++, a = NULL) {
2cda7d6b 814 char *fname;
815
816 fname = path_strip(g.gl_pathv[i], strip_path);
817
ae7daec3 818 if (lflag & LS_LONG_VIEW) {
2cda7d6b 819 char *lname;
820 struct stat sb;
821
822 /*
823 * XXX: this is slow - 1 roundtrip per path
824 * A solution to this is to fork glob() and
825 * build a sftp specific version which keeps the
826 * attribs (which currently get thrown away)
827 * that the server returns as well as the filenames.
828 */
829 memset(&sb, 0, sizeof(sb));
2bd204e5 830 if (a == NULL)
831 a = do_lstat(conn, g.gl_pathv[i], 1);
2cda7d6b 832 if (a != NULL)
833 attrib_to_stat(a, &sb);
834 lname = ls_file(fname, &sb, 1);
835 printf("%s\n", lname);
836 xfree(lname);
837 } else {
838 printf("%-*s", colspace, fname);
839 if (c >= columns) {
840 printf("\n");
841 c = 1;
842 } else
843 c++;
844 }
845 xfree(fname);
846 }
847
ae7daec3 848 if (!(lflag & LS_LONG_VIEW) && (c != 1))
2cda7d6b 849 printf("\n");
850
0e5de6f8 851 out:
2cda7d6b 852 if (g.gl_pathc)
853 globfree(&g);
854
855 return (0);
856}
857
858static int
859parse_args(const char **cpp, int *pflag, int *lflag, int *iflag,
860 unsigned long *n_arg, char **path1, char **path2)
861{
862 const char *cmd, *cp = *cpp;
863 char *cp2;
864 int base = 0;
865 long l;
866 int i, cmdnum;
867
868 /* Skip leading whitespace */
869 cp = cp + strspn(cp, WHITESPACE);
870
871 /* Ignore blank lines and lines which begin with comment '#' char */
872 if (*cp == '\0' || *cp == '#')
873 return (0);
874
875 /* Check for leading '-' (disable error processing) */
876 *iflag = 0;
877 if (*cp == '-') {
878 *iflag = 1;
879 cp++;
880 }
881
882 /* Figure out which command we have */
883 for (i = 0; cmds[i].c; i++) {
884 int cmdlen = strlen(cmds[i].c);
885
886 /* Check for command followed by whitespace */
887 if (!strncasecmp(cp, cmds[i].c, cmdlen) &&
888 strchr(WHITESPACE, cp[cmdlen])) {
889 cp += cmdlen;
890 cp = cp + strspn(cp, WHITESPACE);
891 break;
892 }
893 }
894 cmdnum = cmds[i].n;
895 cmd = cmds[i].c;
896
897 /* Special case */
898 if (*cp == '!') {
899 cp++;
900 cmdnum = I_SHELL;
901 } else if (cmdnum == -1) {
902 error("Invalid command.");
903 return (-1);
904 }
905
906 /* Get arguments and parse flags */
907 *lflag = *pflag = *n_arg = 0;
908 *path1 = *path2 = NULL;
909 switch (cmdnum) {
910 case I_GET:
911 case I_PUT:
912 if (parse_getput_flags(&cp, pflag))
913 return(-1);
914 /* Get first pathname (mandatory) */
915 if (get_pathname(&cp, path1))
916 return(-1);
917 if (*path1 == NULL) {
918 error("You must specify at least one path after a "
919 "%s command.", cmd);
920 return(-1);
921 }
922 /* Try to get second pathname (optional) */
923 if (get_pathname(&cp, path2))
924 return(-1);
925 break;
926 case I_RENAME:
927 case I_SYMLINK:
928 if (get_pathname(&cp, path1))
929 return(-1);
930 if (get_pathname(&cp, path2))
931 return(-1);
932 if (!*path1 || !*path2) {
933 error("You must specify two paths after a %s "
934 "command.", cmd);
935 return(-1);
936 }
937 break;
938 case I_RM:
939 case I_MKDIR:
940 case I_RMDIR:
941 case I_CHDIR:
942 case I_LCHDIR:
943 case I_LMKDIR:
944 /* Get pathname (mandatory) */
945 if (get_pathname(&cp, path1))
946 return(-1);
947 if (*path1 == NULL) {
948 error("You must specify a path after a %s command.",
949 cmd);
950 return(-1);
951 }
952 break;
953 case I_LS:
954 if (parse_ls_flags(&cp, lflag))
955 return(-1);
956 /* Path is optional */
957 if (get_pathname(&cp, path1))
958 return(-1);
959 break;
960 case I_LLS:
961 case I_SHELL:
962 /* Uses the rest of the line */
963 break;
964 case I_LUMASK:
965 base = 8;
966 case I_CHMOD:
967 base = 8;
968 case I_CHOWN:
969 case I_CHGRP:
970 /* Get numeric arg (mandatory) */
971 l = strtol(cp, &cp2, base);
972 if (cp2 == cp || ((l == LONG_MIN || l == LONG_MAX) &&
973 errno == ERANGE) || l < 0) {
974 error("You must supply a numeric argument "
975 "to the %s command.", cmd);
976 return(-1);
977 }
978 cp = cp2;
979 *n_arg = l;
980 if (cmdnum == I_LUMASK && strchr(WHITESPACE, *cp))
981 break;
982 if (cmdnum == I_LUMASK || !strchr(WHITESPACE, *cp)) {
983 error("You must supply a numeric argument "
984 "to the %s command.", cmd);
985 return(-1);
986 }
987 cp += strspn(cp, WHITESPACE);
988
989 /* Get pathname (mandatory) */
990 if (get_pathname(&cp, path1))
991 return(-1);
992 if (*path1 == NULL) {
993 error("You must specify a path after a %s command.",
994 cmd);
995 return(-1);
996 }
997 break;
998 case I_QUIT:
999 case I_PWD:
1000 case I_LPWD:
1001 case I_HELP:
1002 case I_VERSION:
1003 case I_PROGRESS:
1004 break;
1005 default:
1006 fatal("Command not implemented");
1007 }
1008
1009 *cpp = cp;
1010 return(cmdnum);
1011}
1012
1013static int
1014parse_dispatch_command(struct sftp_conn *conn, const char *cmd, char **pwd,
1015 int err_abort)
1016{
1017 char *path1, *path2, *tmp;
1018 int pflag, lflag, iflag, cmdnum, i;
1019 unsigned long n_arg;
1020 Attrib a, *aa;
1021 char path_buf[MAXPATHLEN];
1022 int err = 0;
1023 glob_t g;
1024
1025 path1 = path2 = NULL;
1026 cmdnum = parse_args(&cmd, &pflag, &lflag, &iflag, &n_arg,
1027 &path1, &path2);
1028
1029 if (iflag != 0)
1030 err_abort = 0;
1031
1032 memset(&g, 0, sizeof(g));
1033
1034 /* Perform command */
1035 switch (cmdnum) {
1036 case 0:
1037 /* Blank line */
1038 break;
1039 case -1:
1040 /* Unrecognized command */
1041 err = -1;
1042 break;
1043 case I_GET:
1044 err = process_get(conn, path1, path2, *pwd, pflag);
1045 break;
1046 case I_PUT:
1047 err = process_put(conn, path1, path2, *pwd, pflag);
1048 break;
1049 case I_RENAME:
1050 path1 = make_absolute(path1, *pwd);
1051 path2 = make_absolute(path2, *pwd);
1052 err = do_rename(conn, path1, path2);
1053 break;
1054 case I_SYMLINK:
1055 path2 = make_absolute(path2, *pwd);
1056 err = do_symlink(conn, path1, path2);
1057 break;
1058 case I_RM:
1059 path1 = make_absolute(path1, *pwd);
1060 remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g);
0e5de6f8 1061 for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
2cda7d6b 1062 printf("Removing %s\n", g.gl_pathv[i]);
1063 err = do_rm(conn, g.gl_pathv[i]);
1064 if (err != 0 && err_abort)
1065 break;
1066 }
1067 break;
1068 case I_MKDIR:
1069 path1 = make_absolute(path1, *pwd);
1070 attrib_clear(&a);
1071 a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
1072 a.perm = 0777;
1073 err = do_mkdir(conn, path1, &a);
1074 break;
1075 case I_RMDIR:
1076 path1 = make_absolute(path1, *pwd);
1077 err = do_rmdir(conn, path1);
1078 break;
1079 case I_CHDIR:
1080 path1 = make_absolute(path1, *pwd);
1081 if ((tmp = do_realpath(conn, path1)) == NULL) {
1082 err = 1;
1083 break;
1084 }
1085 if ((aa = do_stat(conn, tmp, 0)) == NULL) {
1086 xfree(tmp);
1087 err = 1;
1088 break;
1089 }
1090 if (!(aa->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)) {
1091 error("Can't change directory: Can't check target");
1092 xfree(tmp);
1093 err = 1;
1094 break;
1095 }
1096 if (!S_ISDIR(aa->perm)) {
1097 error("Can't change directory: \"%s\" is not "
1098 "a directory", tmp);
1099 xfree(tmp);
1100 err = 1;
1101 break;
1102 }
1103 xfree(*pwd);
1104 *pwd = tmp;
1105 break;
1106 case I_LS:
1107 if (!path1) {
1108 do_globbed_ls(conn, *pwd, *pwd, lflag);
1109 break;
1110 }
1111
1112 /* Strip pwd off beginning of non-absolute paths */
1113 tmp = NULL;
1114 if (*path1 != '/')
1115 tmp = *pwd;
1116
1117 path1 = make_absolute(path1, *pwd);
1118 err = do_globbed_ls(conn, path1, tmp, lflag);
1119 break;
1120 case I_LCHDIR:
1121 if (chdir(path1) == -1) {
1122 error("Couldn't change local directory to "
1123 "\"%s\": %s", path1, strerror(errno));
1124 err = 1;
1125 }
1126 break;
1127 case I_LMKDIR:
1128 if (mkdir(path1, 0777) == -1) {
1129 error("Couldn't create local directory "
1130 "\"%s\": %s", path1, strerror(errno));
1131 err = 1;
1132 }
1133 break;
1134 case I_LLS:
1135 local_do_ls(cmd);
1136 break;
1137 case I_SHELL:
1138 local_do_shell(cmd);
1139 break;
1140 case I_LUMASK:
1141 umask(n_arg);
1142 printf("Local umask: %03lo\n", n_arg);
1143 break;
1144 case I_CHMOD:
1145 path1 = make_absolute(path1, *pwd);
1146 attrib_clear(&a);
1147 a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
1148 a.perm = n_arg;
1149 remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g);
0e5de6f8 1150 for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
2cda7d6b 1151 printf("Changing mode on %s\n", g.gl_pathv[i]);
1152 err = do_setstat(conn, g.gl_pathv[i], &a);
1153 if (err != 0 && err_abort)
1154 break;
1155 }
1156 break;
1157 case I_CHOWN:
1158 case I_CHGRP:
1159 path1 = make_absolute(path1, *pwd);
1160 remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g);
0e5de6f8 1161 for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
2cda7d6b 1162 if (!(aa = do_stat(conn, g.gl_pathv[i], 0))) {
1163 if (err != 0 && err_abort)
1164 break;
1165 else
1166 continue;
1167 }
1168 if (!(aa->flags & SSH2_FILEXFER_ATTR_UIDGID)) {
1169 error("Can't get current ownership of "
1170 "remote file \"%s\"", g.gl_pathv[i]);
1171 if (err != 0 && err_abort)
1172 break;
1173 else
1174 continue;
1175 }
1176 aa->flags &= SSH2_FILEXFER_ATTR_UIDGID;
1177 if (cmdnum == I_CHOWN) {
1178 printf("Changing owner on %s\n", g.gl_pathv[i]);
1179 aa->uid = n_arg;
1180 } else {
1181 printf("Changing group on %s\n", g.gl_pathv[i]);
1182 aa->gid = n_arg;
1183 }
1184 err = do_setstat(conn, g.gl_pathv[i], aa);
1185 if (err != 0 && err_abort)
1186 break;
1187 }
1188 break;
1189 case I_PWD:
1190 printf("Remote working directory: %s\n", *pwd);
1191 break;
1192 case I_LPWD:
1193 if (!getcwd(path_buf, sizeof(path_buf))) {
1194 error("Couldn't get local cwd: %s", strerror(errno));
1195 err = -1;
1196 break;
1197 }
1198 printf("Local working directory: %s\n", path_buf);
1199 break;
1200 case I_QUIT:
1201 /* Processed below */
1202 break;
1203 case I_HELP:
1204 help();
1205 break;
1206 case I_VERSION:
1207 printf("SFTP protocol version %u\n", sftp_proto_version(conn));
1208 break;
1209 case I_PROGRESS:
1210 showprogress = !showprogress;
1211 if (showprogress)
1212 printf("Progress meter enabled\n");
1213 else
1214 printf("Progress meter disabled\n");
1215 break;
1216 default:
1217 fatal("%d is not implemented", cmdnum);
1218 }
1219
1220 if (g.gl_pathc)
1221 globfree(&g);
1222 if (path1)
1223 xfree(path1);
1224 if (path2)
1225 xfree(path2);
1226
1227 /* If an unignored error occurs in batch mode we should abort. */
1228 if (err_abort && err != 0)
1229 return (-1);
1230 else if (cmdnum == I_QUIT)
1231 return (1);
1232
1233 return (0);
1234}
1235
5132eac0 1236#ifdef USE_LIBEDIT
1237static char *
1238prompt(EditLine *el)
1239{
1240 return ("sftp> ");
1241}
1242#endif
1243
2cda7d6b 1244int
1245interactive_loop(int fd_in, int fd_out, char *file1, char *file2)
1246{
1247 char *pwd;
1248 char *dir = NULL;
1249 char cmd[2048];
1250 struct sftp_conn *conn;
0aa1cc4b 1251 int err, interactive;
5132eac0 1252 EditLine *el = NULL;
1253#ifdef USE_LIBEDIT
1254 History *hl = NULL;
1255 HistEvent hev;
1256 extern char *__progname;
1257
1258 if (!batchmode && isatty(STDIN_FILENO)) {
1259 if ((el = el_init(__progname, stdin, stdout, stderr)) == NULL)
1260 fatal("Couldn't initialise editline");
1261 if ((hl = history_init()) == NULL)
1262 fatal("Couldn't initialise editline history");
1263 history(hl, &hev, H_SETSIZE, 100);
1264 el_set(el, EL_HIST, history, hl);
1265
1266 el_set(el, EL_PROMPT, prompt);
1267 el_set(el, EL_EDITOR, "emacs");
1268 el_set(el, EL_TERMINAL, NULL);
1269 el_set(el, EL_SIGNAL, 1);
1270 el_source(el, NULL);
1271 }
1272#endif /* USE_LIBEDIT */
2cda7d6b 1273
1274 conn = do_init(fd_in, fd_out, copy_buffer_len, num_requests);
1275 if (conn == NULL)
1276 fatal("Couldn't initialise connection to server");
1277
1278 pwd = do_realpath(conn, ".");
1279 if (pwd == NULL)
1280 fatal("Need cwd");
1281
1282 if (file1 != NULL) {
1283 dir = xstrdup(file1);
1284 dir = make_absolute(dir, pwd);
1285
1286 if (remote_is_dir(conn, dir) && file2 == NULL) {
1287 printf("Changing to: %s\n", dir);
1288 snprintf(cmd, sizeof cmd, "cd \"%s\"", dir);
aa41be57 1289 if (parse_dispatch_command(conn, cmd, &pwd, 1) != 0) {
1290 xfree(dir);
1291 xfree(pwd);
e6a3cfb5 1292 xfree(conn);
2cda7d6b 1293 return (-1);
aa41be57 1294 }
2cda7d6b 1295 } else {
1296 if (file2 == NULL)
1297 snprintf(cmd, sizeof cmd, "get %s", dir);
1298 else
1299 snprintf(cmd, sizeof cmd, "get %s %s", dir,
1300 file2);
1301
1302 err = parse_dispatch_command(conn, cmd, &pwd, 1);
1303 xfree(dir);
1304 xfree(pwd);
e6a3cfb5 1305 xfree(conn);
2cda7d6b 1306 return (err);
1307 }
1308 xfree(dir);
1309 }
1310
157b6700 1311#if defined(HAVE_SETVBUF) && !defined(BROKEN_SETVBUF)
2cda7d6b 1312 setvbuf(stdout, NULL, _IOLBF, 0);
1313 setvbuf(infile, NULL, _IOLBF, 0);
1314#else
ed9e8be3 1315 setlinebuf(stdout);
1316 setlinebuf(infile);
2cda7d6b 1317#endif
1318
0aa1cc4b 1319 interactive = !batchmode && isatty(STDIN_FILENO);
2cda7d6b 1320 err = 0;
1321 for (;;) {
1322 char *cp;
1323
0e5de6f8 1324 signal(SIGINT, SIG_IGN);
1325
5132eac0 1326 if (el == NULL) {
0aa1cc4b 1327 if (interactive)
1328 printf("sftp> ");
5132eac0 1329 if (fgets(cmd, sizeof(cmd), infile) == NULL) {
0aa1cc4b 1330 if (interactive)
1331 printf("\n");
5132eac0 1332 break;
1333 }
0aa1cc4b 1334 if (!interactive) { /* Echo command */
1335 printf("sftp> %s", cmd);
1336 if (strlen(cmd) > 0 &&
1337 cmd[strlen(cmd) - 1] != '\n')
1338 printf("\n");
1339 }
5132eac0 1340 } else {
1341#ifdef USE_LIBEDIT
1342 const char *line;
1343 int count = 0;
2cda7d6b 1344
0aa1cc4b 1345 if ((line = el_gets(el, &count)) == NULL || count <= 0) {
1346 printf("\n");
1347 break;
1348 }
5132eac0 1349 history(hl, &hev, H_ENTER, line);
1350 if (strlcpy(cmd, line, sizeof(cmd)) >= sizeof(cmd)) {
1351 fprintf(stderr, "Error: input line too long\n");
1352 continue;
1353 }
1354#endif /* USE_LIBEDIT */
2cda7d6b 1355 }
1356
2cda7d6b 1357 cp = strrchr(cmd, '\n');
1358 if (cp)
1359 *cp = '\0';
1360
0e5de6f8 1361 /* Handle user interrupts gracefully during commands */
1362 interrupted = 0;
1363 signal(SIGINT, cmd_interrupt);
1364
2cda7d6b 1365 err = parse_dispatch_command(conn, cmd, &pwd, batchmode);
1366 if (err != 0)
1367 break;
1368 }
1369 xfree(pwd);
e6a3cfb5 1370 xfree(conn);
2cda7d6b 1371
a345f787 1372#ifdef USE_LIBEDIT
0aa1cc4b 1373 if (el != NULL)
1374 el_end(el);
a345f787 1375#endif /* USE_LIBEDIT */
0aa1cc4b 1376
2cda7d6b 1377 /* err == 1 signifies normal "quit" exit */
1378 return (err >= 0 ? 0 : -1);
1379}
b65c3807 1380
1b558925 1381static void
1382connect_to_server(char *path, char **args, int *in, int *out)
61e96248 1383{
1384 int c_in, c_out;
9906a836 1385
61e96248 1386#ifdef USE_PIPES
1387 int pin[2], pout[2];
9906a836 1388
61e96248 1389 if ((pipe(pin) == -1) || (pipe(pout) == -1))
1390 fatal("pipe: %s", strerror(errno));
1391 *in = pin[0];
1392 *out = pout[1];
1393 c_in = pout[0];
1394 c_out = pin[1];
1395#else /* USE_PIPES */
1396 int inout[2];
9906a836 1397
61e96248 1398 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
1399 fatal("socketpair: %s", strerror(errno));
1400 *in = *out = inout[0];
1401 c_in = c_out = inout[1];
1402#endif /* USE_PIPES */
1403
1b558925 1404 if ((sshpid = fork()) == -1)
61e96248 1405 fatal("fork: %s", strerror(errno));
1b558925 1406 else if (sshpid == 0) {
61e96248 1407 if ((dup2(c_in, STDIN_FILENO) == -1) ||
1408 (dup2(c_out, STDOUT_FILENO) == -1)) {
1409 fprintf(stderr, "dup2: %s\n", strerror(errno));
8dbffee9 1410 _exit(1);
61e96248 1411 }
1412 close(*in);
1413 close(*out);
1414 close(c_in);
1415 close(c_out);
0e5de6f8 1416
1417 /*
1418 * The underlying ssh is in the same process group, so we must
f2107e97 1419 * ignore SIGINT if we want to gracefully abort commands,
1420 * otherwise the signal will make it to the ssh process and
0e5de6f8 1421 * kill it too
1422 */
1423 signal(SIGINT, SIG_IGN);
35e49915 1424 execvp(path, args);
a96fd7c2 1425 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
8dbffee9 1426 _exit(1);
61e96248 1427 }
1428
1b558925 1429 signal(SIGTERM, killchild);
1430 signal(SIGINT, killchild);
1431 signal(SIGHUP, killchild);
61e96248 1432 close(c_in);
1433 close(c_out);
1434}
1435
396c147e 1436static void
61e96248 1437usage(void)
1438{
22be05a5 1439 extern char *__progname;
762715ce 1440
f1278af7 1441 fprintf(stderr,
433e60ac 1442 "usage: %s [-1Cv] [-B buffer_size] [-b batchfile] [-F ssh_config]\n"
1443 " [-o ssh_option] [-P sftp_server_path] [-R num_requests]\n"
1444 " [-S program] [-s subsystem | sftp_server] host\n"
1445 " %s [[user@]host[:file [file]]]\n"
1446 " %s [[user@]host[:dir[/]]]\n"
1447 " %s -b batchfile [user@]host\n", __progname, __progname, __progname, __progname);
61e96248 1448 exit(1);
1449}
1450
2b87da3b 1451int
61e96248 1452main(int argc, char **argv)
1453{
9a36208d 1454 int in, out, ch, err;
6e007f08 1455 char *host, *userhost, *cp, *file2 = NULL;
8a624ebf 1456 int debug_level = 0, sshver = 2;
1457 char *file1 = NULL, *sftp_server = NULL;
a96fd7c2 1458 char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
8a624ebf 1459 LogLevel ll = SYSLOG_LEVEL_INFO;
1460 arglist args;
0426a3b4 1461 extern int optind;
1462 extern char *optarg;
61e96248 1463
fd6168c1 1464 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1465 sanitise_stdfd();
1466
fda04d7d 1467 __progname = ssh_get_progname(argv[0]);
4116f5c0 1468 memset(&args, '\0', sizeof(args));
8a624ebf 1469 args.list = NULL;
e56b07ea 1470 addargs(&args, "%s", ssh_program);
8a624ebf 1471 addargs(&args, "-oForwardX11 no");
1472 addargs(&args, "-oForwardAgent no");
d20f3c9e 1473 addargs(&args, "-oPermitLocalCommand no");
e1c5bfaf 1474 addargs(&args, "-oClearAllForwardings yes");
ac414e17 1475
8a624ebf 1476 ll = SYSLOG_LEVEL_INFO;
ac414e17 1477 infile = stdin;
0426a3b4 1478
c25d3df7 1479 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:R:")) != -1) {
0426a3b4 1480 switch (ch) {
1481 case 'C':
8a624ebf 1482 addargs(&args, "-C");
0426a3b4 1483 break;
1484 case 'v':
8a624ebf 1485 if (debug_level < 3) {
1486 addargs(&args, "-v");
1487 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
1488 }
1489 debug_level++;
0426a3b4 1490 break;
f1278af7 1491 case 'F':
0426a3b4 1492 case 'o':
f1278af7 1493 addargs(&args, "-%c%s", ch, optarg);
0426a3b4 1494 break;
1495 case '1':
8a624ebf 1496 sshver = 1;
0426a3b4 1497 if (sftp_server == NULL)
1498 sftp_server = _PATH_SFTP_SERVER;
1499 break;
1500 case 's':
1501 sftp_server = optarg;
1502 break;
1503 case 'S':
1504 ssh_program = optarg;
4116f5c0 1505 replacearg(&args, 0, "%s", ssh_program);
0426a3b4 1506 break;
a5ec8a3d 1507 case 'b':
a8b64bb8 1508 if (batchmode)
1509 fatal("Batch file already specified.");
1510
1511 /* Allow "-" as stdin */
f2107e97 1512 if (strcmp(optarg, "-") != 0 &&
4e2e5cfd 1513 (infile = fopen(optarg, "r")) == NULL)
a8b64bb8 1514 fatal("%s (%s).", strerror(errno), optarg);
b65c3807 1515 showprogress = 0;
a8b64bb8 1516 batchmode = 1;
0b73a454 1517 addargs(&args, "-obatchmode yes");
a5ec8a3d 1518 break;
a96fd7c2 1519 case 'P':
1520 sftp_direct = optarg;
1521 break;
375f867e 1522 case 'B':
1523 copy_buffer_len = strtol(optarg, &cp, 10);
1524 if (copy_buffer_len == 0 || *cp != '\0')
1525 fatal("Invalid buffer size \"%s\"", optarg);
1526 break;
c25d3df7 1527 case 'R':
1528 num_requests = strtol(optarg, &cp, 10);
1529 if (num_requests == 0 || *cp != '\0')
762715ce 1530 fatal("Invalid number of requests \"%s\"",
c25d3df7 1531 optarg);
1532 break;
0426a3b4 1533 case 'h':
1534 default:
61e96248 1535 usage();
1536 }
1537 }
1538
06abcf97 1539 if (!isatty(STDERR_FILENO))
1540 showprogress = 0;
1541
b69145c2 1542 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
1543
a96fd7c2 1544 if (sftp_direct == NULL) {
1545 if (optind == argc || argc > (optind + 2))
1546 usage();
61e96248 1547
a96fd7c2 1548 userhost = xstrdup(argv[optind]);
1549 file2 = argv[optind+1];
edeeab1e 1550
15748b4d 1551 if ((host = strrchr(userhost, '@')) == NULL)
a96fd7c2 1552 host = userhost;
1553 else {
1554 *host++ = '\0';
1555 if (!userhost[0]) {
1556 fprintf(stderr, "Missing username\n");
1557 usage();
1558 }
1559 addargs(&args, "-l%s",userhost);
61e96248 1560 }
61e96248 1561
02de7c6e 1562 if ((cp = colon(host)) != NULL) {
1563 *cp++ = '\0';
1564 file1 = cp;
1565 }
1566
a96fd7c2 1567 host = cleanhostname(host);
1568 if (!*host) {
1569 fprintf(stderr, "Missing hostname\n");
1570 usage();
1571 }
61e96248 1572
a96fd7c2 1573 addargs(&args, "-oProtocol %d", sshver);
8a624ebf 1574
a96fd7c2 1575 /* no subsystem if the server-spec contains a '/' */
1576 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
1577 addargs(&args, "-s");
61e96248 1578
a96fd7c2 1579 addargs(&args, "%s", host);
762715ce 1580 addargs(&args, "%s", (sftp_server != NULL ?
a96fd7c2 1581 sftp_server : "sftp"));
61e96248 1582
a8b64bb8 1583 if (!batchmode)
1584 fprintf(stderr, "Connecting to %s...\n", host);
1b558925 1585 connect_to_server(ssh_program, args.list, &in, &out);
a96fd7c2 1586 } else {
1587 args.list = NULL;
1588 addargs(&args, "sftp-server");
61e96248 1589
a8b64bb8 1590 if (!batchmode)
1591 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
1b558925 1592 connect_to_server(sftp_direct, args.list, &in, &out);
a96fd7c2 1593 }
4116f5c0 1594 freeargs(&args);
61e96248 1595
9a36208d 1596 err = interactive_loop(in, out, file1, file2);
61e96248 1597
51fb577a 1598#if !defined(USE_PIPES)
ed9e8be3 1599 shutdown(in, SHUT_RDWR);
1600 shutdown(out, SHUT_RDWR);
51fb577a 1601#endif
1602
61e96248 1603 close(in);
1604 close(out);
a8b64bb8 1605 if (batchmode)
a5ec8a3d 1606 fclose(infile);
61e96248 1607
8c38e88b 1608 while (waitpid(sshpid, NULL, 0) == -1)
1609 if (errno != EINTR)
1610 fatal("Couldn't wait for ssh process: %s",
1611 strerror(errno));
61e96248 1612
9a36208d 1613 exit(err == 0 ? 0 : 1);
61e96248 1614}
This page took 1.747008 seconds and 5 git commands to generate.