1 /* $OpenBSD: sftp.c,v 1.99 2008/01/20 00:38:30 djm Exp $ */
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
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.
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.
20 #include <sys/types.h>
21 #include <sys/ioctl.h>
22 #ifdef HAVE_SYS_STAT_H
23 # include <sys/stat.h>
25 #include <sys/param.h>
26 #include <sys/socket.h>
38 typedef void EditLine
;
49 #include "pathnames.h"
54 #include "sftp-common.h"
55 #include "sftp-client.h"
57 /* File to read commands from */
60 /* Are we in batchfile mode? */
63 /* Size of buffer used when copying files */
64 size_t copy_buffer_len
= 32768;
66 /* Number of concurrent outstanding requests */
67 size_t num_requests
= 16;
69 /* PID of ssh transport process */
70 static pid_t sshpid
= -1;
72 /* This is set to 0 if the progressmeter is not desired. */
75 /* SIGINT received during command processing */
76 volatile sig_atomic_t interrupted
= 0;
78 /* I wish qsort() took a separate ctx for the comparison function...*/
81 int remote_glob(struct sftp_conn
*, const char *, int,
82 int (*)(const char *, int), glob_t
*); /* proto for sftp-glob.c */
84 extern char *__progname
;
86 /* Separators for interactive commands */
87 #define WHITESPACE " \t\r\n"
90 #define LS_LONG_VIEW 0x01 /* Full view ala ls -l */
91 #define LS_SHORT_VIEW 0x02 /* Single row view ala ls -1 */
92 #define LS_NUMERIC_VIEW 0x04 /* Long view with numeric uid/gid */
93 #define LS_NAME_SORT 0x08 /* Sort by name (default) */
94 #define LS_TIME_SORT 0x10 /* Sort by mtime */
95 #define LS_SIZE_SORT 0x20 /* Sort by file size */
96 #define LS_REVERSE_SORT 0x40 /* Reverse sort order */
97 #define LS_SHOW_ALL 0x80 /* Don't skip filenames starting with '.' */
99 #define VIEW_FLAGS (LS_LONG_VIEW|LS_SHORT_VIEW|LS_NUMERIC_VIEW)
100 #define SORT_FLAGS (LS_NAME_SORT|LS_TIME_SORT|LS_SIZE_SORT)
102 /* Commands for interactive mode */
125 #define I_PROGRESS 23
132 static const struct CMD cmds
[] = {
135 { "chdir", I_CHDIR
},
136 { "chgrp", I_CHGRP
},
137 { "chmod", I_CHMOD
},
138 { "chown", I_CHOWN
},
145 { "lchdir", I_LCHDIR
},
147 { "lmkdir", I_LMKDIR
},
151 { "lumask", I_LUMASK
},
152 { "mkdir", I_MKDIR
},
153 { "progress", I_PROGRESS
},
158 { "rename", I_RENAME
},
160 { "rmdir", I_RMDIR
},
161 { "symlink", I_SYMLINK
},
162 { "version", I_VERSION
},
168 int interactive_loop(int fd_in
, int fd_out
, char *file1
, char *file2
);
175 kill(sshpid
, SIGTERM
);
176 waitpid(sshpid
, NULL
, 0);
184 cmd_interrupt(int signo
)
186 const char msg
[] = "\rInterrupt \n";
187 int olderrno
= errno
;
189 write(STDERR_FILENO
, msg
, sizeof(msg
) - 1);
197 printf("Available commands:\n");
198 printf("cd path Change remote directory to 'path'\n");
199 printf("lcd path Change local directory to 'path'\n");
200 printf("chgrp grp path Change group of file 'path' to 'grp'\n");
201 printf("chmod mode path Change permissions of file 'path' to 'mode'\n");
202 printf("chown own path Change owner of file 'path' to 'own'\n");
203 printf("help Display this help text\n");
204 printf("get remote-path [local-path] Download file\n");
205 printf("lls [ls-options [path]] Display local directory listing\n");
206 printf("ln oldpath newpath Symlink remote file\n");
207 printf("lmkdir path Create local directory\n");
208 printf("lpwd Print local working directory\n");
209 printf("ls [path] Display remote directory listing\n");
210 printf("lumask umask Set local umask to 'umask'\n");
211 printf("mkdir path Create remote directory\n");
212 printf("progress Toggle display of progress meter\n");
213 printf("put local-path [remote-path] Upload file\n");
214 printf("pwd Display remote working directory\n");
215 printf("exit Quit sftp\n");
216 printf("quit Quit sftp\n");
217 printf("rename oldpath newpath Rename remote file\n");
218 printf("rmdir path Remove remote directory\n");
219 printf("rm path Delete remote file\n");
220 printf("symlink oldpath newpath Symlink remote file\n");
221 printf("version Show SFTP version\n");
222 printf("!command Execute 'command' in local shell\n");
223 printf("! Escape to local shell\n");
224 printf("? Synonym for help\n");
228 local_do_shell(const char *args
)
237 if ((shell
= getenv("SHELL")) == NULL
)
238 shell
= _PATH_BSHELL
;
240 if ((pid
= fork()) == -1)
241 fatal("Couldn't fork: %s", strerror(errno
));
244 /* XXX: child has pipe fds to ssh subproc open - issue? */
246 debug3("Executing %s -c \"%s\"", shell
, args
);
247 execl(shell
, shell
, "-c", args
, (char *)NULL
);
249 debug3("Executing %s", shell
);
250 execl(shell
, shell
, (char *)NULL
);
252 fprintf(stderr
, "Couldn't execute \"%s\": %s\n", shell
,
256 while (waitpid(pid
, &status
, 0) == -1)
258 fatal("Couldn't wait for child: %s", strerror(errno
));
259 if (!WIFEXITED(status
))
260 error("Shell exited abnormally");
261 else if (WEXITSTATUS(status
))
262 error("Shell exited with status %d", WEXITSTATUS(status
));
266 local_do_ls(const char *args
)
269 local_do_shell(_PATH_LS
);
271 int len
= strlen(_PATH_LS
" ") + strlen(args
) + 1;
272 char *buf
= xmalloc(len
);
274 /* XXX: quoting - rip quoting code from ftp? */
275 snprintf(buf
, len
, _PATH_LS
" %s", args
);
281 /* Strip one path (usually the pwd) from the start of another */
283 path_strip(char *path
, char *strip
)
288 return (xstrdup(path
));
291 if (strncmp(path
, strip
, len
) == 0) {
292 if (strip
[len
- 1] != '/' && path
[len
] == '/')
294 return (xstrdup(path
+ len
));
297 return (xstrdup(path
));
301 path_append(char *p1
, char *p2
)
304 size_t len
= strlen(p1
) + strlen(p2
) + 2;
307 strlcpy(ret
, p1
, len
);
308 if (p1
[0] != '\0' && p1
[strlen(p1
) - 1] != '/')
309 strlcat(ret
, "/", len
);
310 strlcat(ret
, p2
, len
);
316 make_absolute(char *p
, char *pwd
)
321 if (p
&& p
[0] != '/') {
322 abs_str
= path_append(pwd
, p
);
330 infer_path(const char *p
, char **ifp
)
334 cp
= strrchr(p
, '/');
341 error("Invalid path");
345 *ifp
= xstrdup(cp
+ 1);
350 parse_getput_flags(const char *cmd
, char **argv
, int argc
, int *pflag
)
352 extern int optind
, optreset
, opterr
;
355 optind
= optreset
= 1;
359 while ((ch
= getopt(argc
, argv
, "Pp")) != -1) {
366 error("%s: Invalid flag -%c", cmd
, ch
);
375 parse_ls_flags(char **argv
, int argc
, int *lflag
)
377 extern int optind
, optreset
, opterr
;
380 optind
= optreset
= 1;
383 *lflag
= LS_NAME_SORT
;
384 while ((ch
= getopt(argc
, argv
, "1Saflnrt")) != -1) {
387 *lflag
&= ~VIEW_FLAGS
;
388 *lflag
|= LS_SHORT_VIEW
;
391 *lflag
&= ~SORT_FLAGS
;
392 *lflag
|= LS_SIZE_SORT
;
395 *lflag
|= LS_SHOW_ALL
;
398 *lflag
&= ~SORT_FLAGS
;
401 *lflag
&= ~VIEW_FLAGS
;
402 *lflag
|= LS_LONG_VIEW
;
405 *lflag
&= ~VIEW_FLAGS
;
406 *lflag
|= LS_NUMERIC_VIEW
|LS_LONG_VIEW
;
409 *lflag
|= LS_REVERSE_SORT
;
412 *lflag
&= ~SORT_FLAGS
;
413 *lflag
|= LS_TIME_SORT
;
416 error("ls: Invalid flag -%c", ch
);
429 /* XXX: report errors? */
430 if (stat(path
, &sb
) == -1)
433 return(S_ISDIR(sb
.st_mode
));
437 remote_is_dir(struct sftp_conn
*conn
, char *path
)
441 /* XXX: report errors? */
442 if ((a
= do_stat(conn
, path
, 1)) == NULL
)
444 if (!(a
->flags
& SSH2_FILEXFER_ATTR_PERMISSIONS
))
446 return(S_ISDIR(a
->perm
));
450 process_get(struct sftp_conn
*conn
, char *src
, char *dst
, char *pwd
, int pflag
)
452 char *abs_src
= NULL
;
453 char *abs_dst
= NULL
;
459 abs_src
= xstrdup(src
);
460 abs_src
= make_absolute(abs_src
, pwd
);
462 memset(&g
, 0, sizeof(g
));
463 debug3("Looking up %s", abs_src
);
464 if (remote_glob(conn
, abs_src
, 0, NULL
, &g
)) {
465 error("File \"%s\" not found.", abs_src
);
470 /* If multiple matches, dst must be a directory or unspecified */
471 if (g
.gl_matchc
> 1 && dst
&& !is_dir(dst
)) {
472 error("Multiple files match, but \"%s\" is not a directory",
478 for (i
= 0; g
.gl_pathv
[i
] && !interrupted
; i
++) {
479 if (infer_path(g
.gl_pathv
[i
], &tmp
)) {
484 if (g
.gl_matchc
== 1 && dst
) {
485 /* If directory specified, append filename */
488 if (infer_path(g
.gl_pathv
[0], &tmp
)) {
492 abs_dst
= path_append(dst
, tmp
);
495 abs_dst
= xstrdup(dst
);
497 abs_dst
= path_append(dst
, tmp
);
502 printf("Fetching %s to %s\n", g
.gl_pathv
[i
], abs_dst
);
503 if (do_download(conn
, g
.gl_pathv
[i
], abs_dst
, pflag
) == -1)
516 process_put(struct sftp_conn
*conn
, char *src
, char *dst
, char *pwd
, int pflag
)
518 char *tmp_dst
= NULL
;
519 char *abs_dst
= NULL
;
527 tmp_dst
= xstrdup(dst
);
528 tmp_dst
= make_absolute(tmp_dst
, pwd
);
531 memset(&g
, 0, sizeof(g
));
532 debug3("Looking up %s", src
);
533 if (glob(src
, GLOB_NOCHECK
, NULL
, &g
)) {
534 error("File \"%s\" not found.", src
);
539 /* If multiple matches, dst may be directory or unspecified */
540 if (g
.gl_matchc
> 1 && tmp_dst
&& !remote_is_dir(conn
, tmp_dst
)) {
541 error("Multiple files match, but \"%s\" is not a directory",
547 for (i
= 0; g
.gl_pathv
[i
] && !interrupted
; i
++) {
548 if (stat(g
.gl_pathv
[i
], &sb
) == -1) {
550 error("stat %s: %s", g
.gl_pathv
[i
], strerror(errno
));
554 if (!S_ISREG(sb
.st_mode
)) {
555 error("skipping non-regular file %s",
559 if (infer_path(g
.gl_pathv
[i
], &tmp
)) {
564 if (g
.gl_matchc
== 1 && tmp_dst
) {
565 /* If directory specified, append filename */
566 if (remote_is_dir(conn
, tmp_dst
)) {
567 if (infer_path(g
.gl_pathv
[0], &tmp
)) {
571 abs_dst
= path_append(tmp_dst
, tmp
);
574 abs_dst
= xstrdup(tmp_dst
);
576 } else if (tmp_dst
) {
577 abs_dst
= path_append(tmp_dst
, tmp
);
580 abs_dst
= make_absolute(tmp
, pwd
);
582 printf("Uploading %s to %s\n", g
.gl_pathv
[i
], abs_dst
);
583 if (do_upload(conn
, g
.gl_pathv
[i
], abs_dst
, pflag
) == -1)
597 sdirent_comp(const void *aa
, const void *bb
)
599 SFTP_DIRENT
*a
= *(SFTP_DIRENT
**)aa
;
600 SFTP_DIRENT
*b
= *(SFTP_DIRENT
**)bb
;
601 int rmul
= sort_flag
& LS_REVERSE_SORT
? -1 : 1;
603 #define NCMP(a,b) (a == b ? 0 : (a < b ? 1 : -1))
604 if (sort_flag
& LS_NAME_SORT
)
605 return (rmul
* strcmp(a
->filename
, b
->filename
));
606 else if (sort_flag
& LS_TIME_SORT
)
607 return (rmul
* NCMP(a
->a
.mtime
, b
->a
.mtime
));
608 else if (sort_flag
& LS_SIZE_SORT
)
609 return (rmul
* NCMP(a
->a
.size
, b
->a
.size
));
611 fatal("Unknown ls sort type");
614 /* sftp ls.1 replacement for directories */
616 do_ls_dir(struct sftp_conn
*conn
, char *path
, char *strip_path
, int lflag
)
619 u_int c
= 1, colspace
= 0, columns
= 1;
622 if ((n
= do_readdir(conn
, path
, &d
)) != 0)
625 if (!(lflag
& LS_SHORT_VIEW
)) {
626 u_int m
= 0, width
= 80;
630 /* Count entries for sort and find longest filename */
631 for (n
= 0; d
[n
] != NULL
; n
++) {
632 if (d
[n
]->filename
[0] != '.' || (lflag
& LS_SHOW_ALL
))
633 m
= MAX(m
, strlen(d
[n
]->filename
));
636 /* Add any subpath that also needs to be counted */
637 tmp
= path_strip(path
, strip_path
);
641 if (ioctl(fileno(stdin
), TIOCGWINSZ
, &ws
) != -1)
644 columns
= width
/ (m
+ 2);
645 columns
= MAX(columns
, 1);
646 colspace
= width
/ columns
;
647 colspace
= MIN(colspace
, width
);
650 if (lflag
& SORT_FLAGS
) {
651 for (n
= 0; d
[n
] != NULL
; n
++)
652 ; /* count entries */
653 sort_flag
= lflag
& (SORT_FLAGS
|LS_REVERSE_SORT
);
654 qsort(d
, n
, sizeof(*d
), sdirent_comp
);
657 for (n
= 0; d
[n
] != NULL
&& !interrupted
; n
++) {
660 if (d
[n
]->filename
[0] == '.' && !(lflag
& LS_SHOW_ALL
))
663 tmp
= path_append(path
, d
[n
]->filename
);
664 fname
= path_strip(tmp
, strip_path
);
667 if (lflag
& LS_LONG_VIEW
) {
668 if (lflag
& LS_NUMERIC_VIEW
) {
672 memset(&sb
, 0, sizeof(sb
));
673 attrib_to_stat(&d
[n
]->a
, &sb
);
674 lname
= ls_file(fname
, &sb
, 1);
675 printf("%s\n", lname
);
678 printf("%s\n", d
[n
]->longname
);
680 printf("%-*s", colspace
, fname
);
691 if (!(lflag
& LS_LONG_VIEW
) && (c
!= 1))
694 free_sftp_dirents(d
);
698 /* sftp ls.1 replacement which handles path globs */
700 do_globbed_ls(struct sftp_conn
*conn
, char *path
, char *strip_path
,
704 u_int i
, c
= 1, colspace
= 0, columns
= 1;
707 memset(&g
, 0, sizeof(g
));
709 if (remote_glob(conn
, path
, GLOB_MARK
|GLOB_NOCHECK
|GLOB_BRACE
,
710 NULL
, &g
) || (g
.gl_pathc
&& !g
.gl_matchc
)) {
713 error("Can't ls: \"%s\" not found", path
);
721 * If the glob returns a single match and it is a directory,
722 * then just list its contents.
724 if (g
.gl_matchc
== 1) {
725 if ((a
= do_lstat(conn
, g
.gl_pathv
[0], 1)) == NULL
) {
729 if ((a
->flags
& SSH2_FILEXFER_ATTR_PERMISSIONS
) &&
733 err
= do_ls_dir(conn
, g
.gl_pathv
[0], strip_path
, lflag
);
739 if (!(lflag
& LS_SHORT_VIEW
)) {
740 u_int m
= 0, width
= 80;
743 /* Count entries for sort and find longest filename */
744 for (i
= 0; g
.gl_pathv
[i
]; i
++)
745 m
= MAX(m
, strlen(g
.gl_pathv
[i
]));
747 if (ioctl(fileno(stdin
), TIOCGWINSZ
, &ws
) != -1)
750 columns
= width
/ (m
+ 2);
751 columns
= MAX(columns
, 1);
752 colspace
= width
/ columns
;
755 for (i
= 0; g
.gl_pathv
[i
] && !interrupted
; i
++, a
= NULL
) {
758 fname
= path_strip(g
.gl_pathv
[i
], strip_path
);
760 if (lflag
& LS_LONG_VIEW
) {
765 * XXX: this is slow - 1 roundtrip per path
766 * A solution to this is to fork glob() and
767 * build a sftp specific version which keeps the
768 * attribs (which currently get thrown away)
769 * that the server returns as well as the filenames.
771 memset(&sb
, 0, sizeof(sb
));
773 a
= do_lstat(conn
, g
.gl_pathv
[i
], 1);
775 attrib_to_stat(a
, &sb
);
776 lname
= ls_file(fname
, &sb
, 1);
777 printf("%s\n", lname
);
780 printf("%-*s", colspace
, fname
);
790 if (!(lflag
& LS_LONG_VIEW
) && (c
!= 1))
801 * Undo escaping of glob sequences in place. Used to undo extra escaping
802 * applied in makeargv() when the string is destined for a function that
806 undo_glob_escape(char *s
)
841 * Split a string into an argument vector using sh(1)-style quoting,
842 * comment and escaping rules, but with some tweaks to handle glob(3)
844 * Returns NULL on error or a NULL-terminated array of arguments.
847 #define MAXARGLEN 8192
849 makeargv(const char *arg
, int *argcp
)
853 static char argvs
[MAXARGLEN
];
854 static char *argv
[MAXARGS
+ 1];
855 enum { MA_START
, MA_SQUOTE
, MA_DQUOTE
, MA_UNQUOTED
} state
, q
;
858 if (strlen(arg
) > sizeof(argvs
) - 1) {
860 error("string too long");
866 if (isspace(arg
[i
])) {
867 if (state
== MA_UNQUOTED
) {
868 /* Terminate current argument */
872 } else if (state
!= MA_START
)
874 } else if (arg
[i
] == '"' || arg
[i
] == '\'') {
875 q
= arg
[i
] == '"' ? MA_DQUOTE
: MA_SQUOTE
;
876 if (state
== MA_START
) {
877 argv
[argc
] = argvs
+ j
;
879 } else if (state
== MA_UNQUOTED
)
885 } else if (arg
[i
] == '\\') {
886 if (state
== MA_SQUOTE
|| state
== MA_DQUOTE
) {
887 quot
= state
== MA_SQUOTE
? '\'' : '"';
888 /* Unescape quote we are in */
889 /* XXX support \n and friends? */
890 if (arg
[i
+ 1] == quot
) {
893 } else if (arg
[i
+ 1] == '?' ||
894 arg
[i
+ 1] == '[' || arg
[i
+ 1] == '*') {
896 * Special case for sftp: append
897 * double-escaped glob sequence -
898 * glob will undo one level of
899 * escaping. NB. string can grow here.
901 if (j
>= sizeof(argvs
) - 5)
904 argvs
[j
++] = arg
[i
++];
908 argvs
[j
++] = arg
[i
++];
912 if (state
== MA_START
) {
913 argv
[argc
] = argvs
+ j
;
916 if (arg
[i
+ 1] == '?' || arg
[i
+ 1] == '[' ||
917 arg
[i
+ 1] == '*' || arg
[i
+ 1] == '\\') {
919 * Special case for sftp: append
920 * escaped glob sequence -
921 * glob will undo one level of
924 argvs
[j
++] = arg
[i
++];
927 /* Unescape everything */
928 /* XXX support \n and friends? */
933 } else if (arg
[i
] == '#') {
934 if (state
== MA_SQUOTE
|| state
== MA_DQUOTE
)
938 } else if (arg
[i
] == '\0') {
939 if (state
== MA_SQUOTE
|| state
== MA_DQUOTE
) {
940 error("Unterminated quoted argument");
944 if (state
== MA_UNQUOTED
) {
950 if (state
== MA_START
) {
951 argv
[argc
] = argvs
+ j
;
954 if ((state
== MA_SQUOTE
|| state
== MA_DQUOTE
) &&
955 (arg
[i
] == '?' || arg
[i
] == '[' || arg
[i
] == '*')) {
957 * Special case for sftp: escape quoted
958 * glob(3) wildcards. NB. string can grow
961 if (j
>= sizeof(argvs
) - 3)
975 parse_args(const char **cpp
, int *pflag
, int *lflag
, int *iflag
,
976 unsigned long *n_arg
, char **path1
, char **path2
)
978 const char *cmd
, *cp
= *cpp
;
982 int i
, cmdnum
, optidx
, argc
;
984 /* Skip leading whitespace */
985 cp
= cp
+ strspn(cp
, WHITESPACE
);
987 /* Ignore blank lines and lines which begin with comment '#' char */
988 if (*cp
== '\0' || *cp
== '#')
991 /* Check for leading '-' (disable error processing) */
998 if ((argv
= makeargv(cp
, &argc
)) == NULL
)
1001 /* Figure out which command we have */
1002 for (i
= 0; cmds
[i
].c
!= NULL
; i
++) {
1003 if (strcasecmp(cmds
[i
].c
, argv
[0]) == 0)
1013 } else if (cmdnum
== -1) {
1014 error("Invalid command.");
1018 /* Get arguments and parse flags */
1019 *lflag
= *pflag
= *n_arg
= 0;
1020 *path1
= *path2
= NULL
;
1025 if ((optidx
= parse_getput_flags(cmd
, argv
, argc
, pflag
)) == -1)
1027 /* Get first pathname (mandatory) */
1028 if (argc
- optidx
< 1) {
1029 error("You must specify at least one path after a "
1030 "%s command.", cmd
);
1033 *path1
= xstrdup(argv
[optidx
]);
1034 /* Get second pathname (optional) */
1035 if (argc
- optidx
> 1) {
1036 *path2
= xstrdup(argv
[optidx
+ 1]);
1037 /* Destination is not globbed */
1038 undo_glob_escape(*path2
);
1043 if (argc
- optidx
< 2) {
1044 error("You must specify two paths after a %s "
1048 *path1
= xstrdup(argv
[optidx
]);
1049 *path2
= xstrdup(argv
[optidx
+ 1]);
1050 /* Paths are not globbed */
1051 undo_glob_escape(*path1
);
1052 undo_glob_escape(*path2
);
1060 /* Get pathname (mandatory) */
1061 if (argc
- optidx
< 1) {
1062 error("You must specify a path after a %s command.",
1066 *path1
= xstrdup(argv
[optidx
]);
1067 /* Only "rm" globs */
1069 undo_glob_escape(*path1
);
1072 if ((optidx
= parse_ls_flags(argv
, argc
, lflag
)) == -1)
1074 /* Path is optional */
1075 if (argc
- optidx
> 0)
1076 *path1
= xstrdup(argv
[optidx
]);
1079 /* Skip ls command and following whitespace */
1080 cp
= cp
+ strlen(cmd
) + strspn(cp
, WHITESPACE
);
1082 /* Uses the rest of the line */
1089 /* Get numeric arg (mandatory) */
1090 if (argc
- optidx
< 1)
1093 l
= strtol(argv
[optidx
], &cp2
, base
);
1094 if (cp2
== argv
[optidx
] || *cp2
!= '\0' ||
1095 ((l
== LONG_MIN
|| l
== LONG_MAX
) && errno
== ERANGE
) ||
1098 error("You must supply a numeric argument "
1099 "to the %s command.", cmd
);
1103 if (cmdnum
== I_LUMASK
)
1105 /* Get pathname (mandatory) */
1106 if (argc
- optidx
< 2) {
1107 error("You must specify a path after a %s command.",
1111 *path1
= xstrdup(argv
[optidx
+ 1]);
1121 fatal("Command not implemented");
1129 parse_dispatch_command(struct sftp_conn
*conn
, const char *cmd
, char **pwd
,
1132 char *path1
, *path2
, *tmp
;
1133 int pflag
, lflag
, iflag
, cmdnum
, i
;
1134 unsigned long n_arg
;
1136 char path_buf
[MAXPATHLEN
];
1140 path1
= path2
= NULL
;
1141 cmdnum
= parse_args(&cmd
, &pflag
, &lflag
, &iflag
, &n_arg
,
1147 memset(&g
, 0, sizeof(g
));
1149 /* Perform command */
1155 /* Unrecognized command */
1159 err
= process_get(conn
, path1
, path2
, *pwd
, pflag
);
1162 err
= process_put(conn
, path1
, path2
, *pwd
, pflag
);
1165 path1
= make_absolute(path1
, *pwd
);
1166 path2
= make_absolute(path2
, *pwd
);
1167 err
= do_rename(conn
, path1
, path2
);
1170 path2
= make_absolute(path2
, *pwd
);
1171 err
= do_symlink(conn
, path1
, path2
);
1174 path1
= make_absolute(path1
, *pwd
);
1175 remote_glob(conn
, path1
, GLOB_NOCHECK
, NULL
, &g
);
1176 for (i
= 0; g
.gl_pathv
[i
] && !interrupted
; i
++) {
1177 printf("Removing %s\n", g
.gl_pathv
[i
]);
1178 err
= do_rm(conn
, g
.gl_pathv
[i
]);
1179 if (err
!= 0 && err_abort
)
1184 path1
= make_absolute(path1
, *pwd
);
1186 a
.flags
|= SSH2_FILEXFER_ATTR_PERMISSIONS
;
1188 err
= do_mkdir(conn
, path1
, &a
);
1191 path1
= make_absolute(path1
, *pwd
);
1192 err
= do_rmdir(conn
, path1
);
1195 path1
= make_absolute(path1
, *pwd
);
1196 if ((tmp
= do_realpath(conn
, path1
)) == NULL
) {
1200 if ((aa
= do_stat(conn
, tmp
, 0)) == NULL
) {
1205 if (!(aa
->flags
& SSH2_FILEXFER_ATTR_PERMISSIONS
)) {
1206 error("Can't change directory: Can't check target");
1211 if (!S_ISDIR(aa
->perm
)) {
1212 error("Can't change directory: \"%s\" is not "
1213 "a directory", tmp
);
1223 do_globbed_ls(conn
, *pwd
, *pwd
, lflag
);
1227 /* Strip pwd off beginning of non-absolute paths */
1232 path1
= make_absolute(path1
, *pwd
);
1233 err
= do_globbed_ls(conn
, path1
, tmp
, lflag
);
1236 if (chdir(path1
) == -1) {
1237 error("Couldn't change local directory to "
1238 "\"%s\": %s", path1
, strerror(errno
));
1243 if (mkdir(path1
, 0777) == -1) {
1244 error("Couldn't create local directory "
1245 "\"%s\": %s", path1
, strerror(errno
));
1253 local_do_shell(cmd
);
1257 printf("Local umask: %03lo\n", n_arg
);
1260 path1
= make_absolute(path1
, *pwd
);
1262 a
.flags
|= SSH2_FILEXFER_ATTR_PERMISSIONS
;
1264 remote_glob(conn
, path1
, GLOB_NOCHECK
, NULL
, &g
);
1265 for (i
= 0; g
.gl_pathv
[i
] && !interrupted
; i
++) {
1266 printf("Changing mode on %s\n", g
.gl_pathv
[i
]);
1267 err
= do_setstat(conn
, g
.gl_pathv
[i
], &a
);
1268 if (err
!= 0 && err_abort
)
1274 path1
= make_absolute(path1
, *pwd
);
1275 remote_glob(conn
, path1
, GLOB_NOCHECK
, NULL
, &g
);
1276 for (i
= 0; g
.gl_pathv
[i
] && !interrupted
; i
++) {
1277 if (!(aa
= do_stat(conn
, g
.gl_pathv
[i
], 0))) {
1278 if (err
!= 0 && err_abort
)
1283 if (!(aa
->flags
& SSH2_FILEXFER_ATTR_UIDGID
)) {
1284 error("Can't get current ownership of "
1285 "remote file \"%s\"", g
.gl_pathv
[i
]);
1286 if (err
!= 0 && err_abort
)
1291 aa
->flags
&= SSH2_FILEXFER_ATTR_UIDGID
;
1292 if (cmdnum
== I_CHOWN
) {
1293 printf("Changing owner on %s\n", g
.gl_pathv
[i
]);
1296 printf("Changing group on %s\n", g
.gl_pathv
[i
]);
1299 err
= do_setstat(conn
, g
.gl_pathv
[i
], aa
);
1300 if (err
!= 0 && err_abort
)
1305 printf("Remote working directory: %s\n", *pwd
);
1308 if (!getcwd(path_buf
, sizeof(path_buf
))) {
1309 error("Couldn't get local cwd: %s", strerror(errno
));
1313 printf("Local working directory: %s\n", path_buf
);
1316 /* Processed below */
1322 printf("SFTP protocol version %u\n", sftp_proto_version(conn
));
1325 showprogress
= !showprogress
;
1327 printf("Progress meter enabled\n");
1329 printf("Progress meter disabled\n");
1332 fatal("%d is not implemented", cmdnum
);
1342 /* If an unignored error occurs in batch mode we should abort. */
1343 if (err_abort
&& err
!= 0)
1345 else if (cmdnum
== I_QUIT
)
1353 prompt(EditLine
*el
)
1360 interactive_loop(int fd_in
, int fd_out
, char *file1
, char *file2
)
1365 struct sftp_conn
*conn
;
1366 int err
, interactive
;
1367 EditLine
*el
= NULL
;
1371 extern char *__progname
;
1373 if (!batchmode
&& isatty(STDIN_FILENO
)) {
1374 if ((el
= el_init(__progname
, stdin
, stdout
, stderr
)) == NULL
)
1375 fatal("Couldn't initialise editline");
1376 if ((hl
= history_init()) == NULL
)
1377 fatal("Couldn't initialise editline history");
1378 history(hl
, &hev
, H_SETSIZE
, 100);
1379 el_set(el
, EL_HIST
, history
, hl
);
1381 el_set(el
, EL_PROMPT
, prompt
);
1382 el_set(el
, EL_EDITOR
, "emacs");
1383 el_set(el
, EL_TERMINAL
, NULL
);
1384 el_set(el
, EL_SIGNAL
, 1);
1385 el_source(el
, NULL
);
1387 #endif /* USE_LIBEDIT */
1389 conn
= do_init(fd_in
, fd_out
, copy_buffer_len
, num_requests
);
1391 fatal("Couldn't initialise connection to server");
1393 pwd
= do_realpath(conn
, ".");
1397 if (file1
!= NULL
) {
1398 dir
= xstrdup(file1
);
1399 dir
= make_absolute(dir
, pwd
);
1401 if (remote_is_dir(conn
, dir
) && file2
== NULL
) {
1402 printf("Changing to: %s\n", dir
);
1403 snprintf(cmd
, sizeof cmd
, "cd \"%s\"", dir
);
1404 if (parse_dispatch_command(conn
, cmd
, &pwd
, 1) != 0) {
1412 snprintf(cmd
, sizeof cmd
, "get %s", dir
);
1414 snprintf(cmd
, sizeof cmd
, "get %s %s", dir
,
1417 err
= parse_dispatch_command(conn
, cmd
, &pwd
, 1);
1426 #if defined(HAVE_SETVBUF) && !defined(BROKEN_SETVBUF)
1427 setvbuf(stdout
, NULL
, _IOLBF
, 0);
1428 setvbuf(infile
, NULL
, _IOLBF
, 0);
1434 interactive
= !batchmode
&& isatty(STDIN_FILENO
);
1439 signal(SIGINT
, SIG_IGN
);
1444 if (fgets(cmd
, sizeof(cmd
), infile
) == NULL
) {
1449 if (!interactive
) { /* Echo command */
1450 printf("sftp> %s", cmd
);
1451 if (strlen(cmd
) > 0 &&
1452 cmd
[strlen(cmd
) - 1] != '\n')
1460 if ((line
= el_gets(el
, &count
)) == NULL
|| count
<= 0) {
1464 history(hl
, &hev
, H_ENTER
, line
);
1465 if (strlcpy(cmd
, line
, sizeof(cmd
)) >= sizeof(cmd
)) {
1466 fprintf(stderr
, "Error: input line too long\n");
1469 #endif /* USE_LIBEDIT */
1472 cp
= strrchr(cmd
, '\n');
1476 /* Handle user interrupts gracefully during commands */
1478 signal(SIGINT
, cmd_interrupt
);
1480 err
= parse_dispatch_command(conn
, cmd
, &pwd
, batchmode
);
1490 #endif /* USE_LIBEDIT */
1492 /* err == 1 signifies normal "quit" exit */
1493 return (err
>= 0 ? 0 : -1);
1497 connect_to_server(char *path
, char **args
, int *in
, int *out
)
1502 int pin
[2], pout
[2];
1504 if ((pipe(pin
) == -1) || (pipe(pout
) == -1))
1505 fatal("pipe: %s", strerror(errno
));
1510 #else /* USE_PIPES */
1513 if (socketpair(AF_UNIX
, SOCK_STREAM
, 0, inout
) == -1)
1514 fatal("socketpair: %s", strerror(errno
));
1515 *in
= *out
= inout
[0];
1516 c_in
= c_out
= inout
[1];
1517 #endif /* USE_PIPES */
1519 if ((sshpid
= fork()) == -1)
1520 fatal("fork: %s", strerror(errno
));
1521 else if (sshpid
== 0) {
1522 if ((dup2(c_in
, STDIN_FILENO
) == -1) ||
1523 (dup2(c_out
, STDOUT_FILENO
) == -1)) {
1524 fprintf(stderr
, "dup2: %s\n", strerror(errno
));
1533 * The underlying ssh is in the same process group, so we must
1534 * ignore SIGINT if we want to gracefully abort commands,
1535 * otherwise the signal will make it to the ssh process and
1538 signal(SIGINT
, SIG_IGN
);
1540 fprintf(stderr
, "exec: %s: %s\n", path
, strerror(errno
));
1544 signal(SIGTERM
, killchild
);
1545 signal(SIGINT
, killchild
);
1546 signal(SIGHUP
, killchild
);
1554 extern char *__progname
;
1557 "usage: %s [-1Cv] [-B buffer_size] [-b batchfile] [-F ssh_config]\n"
1558 " [-o ssh_option] [-P sftp_server_path] [-R num_requests]\n"
1559 " [-S program] [-s subsystem | sftp_server] host\n"
1560 " %s [[user@]host[:file [file]]]\n"
1561 " %s [[user@]host[:dir[/]]]\n"
1562 " %s -b batchfile [user@]host\n", __progname
, __progname
, __progname
, __progname
);
1567 main(int argc
, char **argv
)
1569 int in
, out
, ch
, err
;
1570 char *host
, *userhost
, *cp
, *file2
= NULL
;
1571 int debug_level
= 0, sshver
= 2;
1572 char *file1
= NULL
, *sftp_server
= NULL
;
1573 char *ssh_program
= _PATH_SSH_PROGRAM
, *sftp_direct
= NULL
;
1574 LogLevel ll
= SYSLOG_LEVEL_INFO
;
1577 extern char *optarg
;
1579 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
1582 __progname
= ssh_get_progname(argv
[0]);
1583 memset(&args
, '\0', sizeof(args
));
1585 addargs(&args
, "%s", ssh_program
);
1586 addargs(&args
, "-oForwardX11 no");
1587 addargs(&args
, "-oForwardAgent no");
1588 addargs(&args
, "-oPermitLocalCommand no");
1589 addargs(&args
, "-oClearAllForwardings yes");
1591 ll
= SYSLOG_LEVEL_INFO
;
1594 while ((ch
= getopt(argc
, argv
, "1hvCo:s:S:b:B:F:P:R:")) != -1) {
1597 addargs(&args
, "-C");
1600 if (debug_level
< 3) {
1601 addargs(&args
, "-v");
1602 ll
= SYSLOG_LEVEL_DEBUG1
+ debug_level
;
1608 addargs(&args
, "-%c%s", ch
, optarg
);
1612 if (sftp_server
== NULL
)
1613 sftp_server
= _PATH_SFTP_SERVER
;
1616 sftp_server
= optarg
;
1619 ssh_program
= optarg
;
1620 replacearg(&args
, 0, "%s", ssh_program
);
1624 fatal("Batch file already specified.");
1626 /* Allow "-" as stdin */
1627 if (strcmp(optarg
, "-") != 0 &&
1628 (infile
= fopen(optarg
, "r")) == NULL
)
1629 fatal("%s (%s).", strerror(errno
), optarg
);
1632 addargs(&args
, "-obatchmode yes");
1635 sftp_direct
= optarg
;
1638 copy_buffer_len
= strtol(optarg
, &cp
, 10);
1639 if (copy_buffer_len
== 0 || *cp
!= '\0')
1640 fatal("Invalid buffer size \"%s\"", optarg
);
1643 num_requests
= strtol(optarg
, &cp
, 10);
1644 if (num_requests
== 0 || *cp
!= '\0')
1645 fatal("Invalid number of requests \"%s\"",
1654 if (!isatty(STDERR_FILENO
))
1657 log_init(argv
[0], ll
, SYSLOG_FACILITY_USER
, 1);
1659 if (sftp_direct
== NULL
) {
1660 if (optind
== argc
|| argc
> (optind
+ 2))
1663 userhost
= xstrdup(argv
[optind
]);
1664 file2
= argv
[optind
+1];
1666 if ((host
= strrchr(userhost
, '@')) == NULL
)
1671 fprintf(stderr
, "Missing username\n");
1674 addargs(&args
, "-l%s", userhost
);
1677 if ((cp
= colon(host
)) != NULL
) {
1682 host
= cleanhostname(host
);
1684 fprintf(stderr
, "Missing hostname\n");
1688 addargs(&args
, "-oProtocol %d", sshver
);
1690 /* no subsystem if the server-spec contains a '/' */
1691 if (sftp_server
== NULL
|| strchr(sftp_server
, '/') == NULL
)
1692 addargs(&args
, "-s");
1694 addargs(&args
, "%s", host
);
1695 addargs(&args
, "%s", (sftp_server
!= NULL
?
1696 sftp_server
: "sftp"));
1699 fprintf(stderr
, "Connecting to %s...\n", host
);
1700 connect_to_server(ssh_program
, args
.list
, &in
, &out
);
1703 addargs(&args
, "sftp-server");
1706 fprintf(stderr
, "Attaching to %s...\n", sftp_direct
);
1707 connect_to_server(sftp_direct
, args
.list
, &in
, &out
);
1711 err
= interactive_loop(in
, out
, file1
, file2
);
1713 #if !defined(USE_PIPES)
1714 shutdown(in
, SHUT_RDWR
);
1715 shutdown(out
, SHUT_RDWR
);
1723 while (waitpid(sshpid
, NULL
, 0) == -1)
1725 fatal("Couldn't wait for ssh process: %s",
1728 exit(err
== 0 ? 0 : 1);