blob: 3ee57515dcba371ce0da3bc63b29622ed3bbfe23 [file] [log] [blame]
Damien Miller33804262001-02-04 23:20:18 +11001/*
Damien Miller3db5f532002-02-13 14:10:32 +11002 * Copyright (c) 2001,2002 Damien Miller. All rights reserved.
Damien Miller33804262001-02-04 23:20:18 +11003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
Damien Miller33804262001-02-04 23:20:18 +110025/* XXX: recursive operations */
26
27#include "includes.h"
Damien Millerb21be842004-01-27 21:20:11 +110028RCSID("$OpenBSD: sftp-int.c,v 1.67 2004/01/23 17:57:48 mouring Exp $");
Damien Miller4870afd2001-03-14 10:27:09 +110029
Damien Miller33804262001-02-04 23:20:18 +110030#include "buffer.h"
31#include "xmalloc.h"
32#include "log.h"
33#include "pathnames.h"
34
35#include "sftp.h"
36#include "sftp-common.h"
Damien Miller4870afd2001-03-14 10:27:09 +110037#include "sftp-glob.h"
Damien Miller33804262001-02-04 23:20:18 +110038#include "sftp-client.h"
39#include "sftp-int.h"
40
Damien Miller058316f2001-03-08 10:08:49 +110041/* File to read commands from */
42extern FILE *infile;
43
Damien Miller44f75c12004-01-21 10:58:47 +110044/* Are we in batchfile mode? */
45extern int batchmode;
46
Damien Miller8829d362002-02-08 22:04:05 +110047/* Size of buffer used when copying files */
48extern size_t copy_buffer_len;
49
Damien Miller16a13332002-02-13 14:03:56 +110050/* Number of concurrent outstanding requests */
51extern int num_requests;
52
Damien Miller62d57f62003-01-10 21:43:24 +110053/* This is set to 0 if the progressmeter is not desired. */
54int showprogress = 1;
55
Damien Miller939cd382003-11-17 21:17:24 +110056/* Separators for interactive commands */
Damien Miller33804262001-02-04 23:20:18 +110057#define WHITESPACE " \t\r\n"
58
Damien Miller19c8f2b2003-05-15 13:49:21 +100059/* Define what type of ls view (0 - multi-column) */
60#define LONG_VIEW 1 /* Full view ala ls -l */
61#define SHORT_VIEW 2 /* Single row view ala ls -1 */
62
Damien Miller33804262001-02-04 23:20:18 +110063/* Commands for interactive mode */
64#define I_CHDIR 1
65#define I_CHGRP 2
66#define I_CHMOD 3
67#define I_CHOWN 4
68#define I_GET 5
69#define I_HELP 6
70#define I_LCHDIR 7
71#define I_LLS 8
72#define I_LMKDIR 9
73#define I_LPWD 10
74#define I_LS 11
75#define I_LUMASK 12
76#define I_MKDIR 13
77#define I_PUT 14
78#define I_PWD 15
79#define I_QUIT 16
80#define I_RENAME 17
81#define I_RM 18
82#define I_RMDIR 19
83#define I_SHELL 20
Damien Miller058316f2001-03-08 10:08:49 +110084#define I_SYMLINK 21
Ben Lindstromf78682d2001-03-14 21:26:27 +000085#define I_VERSION 22
Damien Miller62d57f62003-01-10 21:43:24 +110086#define I_PROGRESS 23
Damien Miller33804262001-02-04 23:20:18 +110087
88struct CMD {
Damien Miller33804262001-02-04 23:20:18 +110089 const char *c;
Kevin Steves62c45db2001-02-05 13:42:43 +000090 const int n;
Damien Miller33804262001-02-04 23:20:18 +110091};
92
Damien Millerdc708572003-01-14 22:24:05 +110093static const struct CMD cmds[] = {
Ben Lindstrom59e12492001-08-15 23:22:56 +000094 { "bye", I_QUIT },
Damien Millerd7686fd2001-02-10 00:40:03 +110095 { "cd", I_CHDIR },
96 { "chdir", I_CHDIR },
97 { "chgrp", I_CHGRP },
98 { "chmod", I_CHMOD },
99 { "chown", I_CHOWN },
100 { "dir", I_LS },
101 { "exit", I_QUIT },
102 { "get", I_GET },
Ben Lindstrom23d9a6d2001-04-11 23:05:17 +0000103 { "mget", I_GET },
Damien Millerd7686fd2001-02-10 00:40:03 +1100104 { "help", I_HELP },
105 { "lcd", I_LCHDIR },
106 { "lchdir", I_LCHDIR },
107 { "lls", I_LLS },
108 { "lmkdir", I_LMKDIR },
Damien Miller058316f2001-03-08 10:08:49 +1100109 { "ln", I_SYMLINK },
Damien Millerd7686fd2001-02-10 00:40:03 +1100110 { "lpwd", I_LPWD },
111 { "ls", I_LS },
112 { "lumask", I_LUMASK },
113 { "mkdir", I_MKDIR },
Damien Miller62d57f62003-01-10 21:43:24 +1100114 { "progress", I_PROGRESS },
Damien Millerd7686fd2001-02-10 00:40:03 +1100115 { "put", I_PUT },
Ben Lindstrom23d9a6d2001-04-11 23:05:17 +0000116 { "mput", I_PUT },
Damien Millerd7686fd2001-02-10 00:40:03 +1100117 { "pwd", I_PWD },
118 { "quit", I_QUIT },
119 { "rename", I_RENAME },
120 { "rm", I_RM },
121 { "rmdir", I_RMDIR },
Damien Miller058316f2001-03-08 10:08:49 +1100122 { "symlink", I_SYMLINK },
Ben Lindstromf78682d2001-03-14 21:26:27 +0000123 { "version", I_VERSION },
Kevin Steves62c45db2001-02-05 13:42:43 +0000124 { "!", I_SHELL },
125 { "?", I_HELP },
126 { NULL, -1}
Damien Miller33804262001-02-04 23:20:18 +1100127};
128
Ben Lindstrombba81212001-06-25 05:01:22 +0000129static void
Damien Miller33804262001-02-04 23:20:18 +1100130help(void)
131{
132 printf("Available commands:\n");
Damien Millerd7686fd2001-02-10 00:40:03 +1100133 printf("cd path Change remote directory to 'path'\n");
134 printf("lcd path Change local directory to 'path'\n");
135 printf("chgrp grp path Change group of file 'path' to 'grp'\n");
136 printf("chmod mode path Change permissions of file 'path' to 'mode'\n");
137 printf("chown own path Change owner of file 'path' to 'own'\n");
138 printf("help Display this help text\n");
139 printf("get remote-path [local-path] Download file\n");
140 printf("lls [ls-options [path]] Display local directory listing\n");
Damien Miller058316f2001-03-08 10:08:49 +1100141 printf("ln oldpath newpath Symlink remote file\n");
Damien Millerd7686fd2001-02-10 00:40:03 +1100142 printf("lmkdir path Create local directory\n");
143 printf("lpwd Print local working directory\n");
144 printf("ls [path] Display remote directory listing\n");
145 printf("lumask umask Set local umask to 'umask'\n");
146 printf("mkdir path Create remote directory\n");
Damien Miller01413192003-01-14 22:22:11 +1100147 printf("progress Toggle display of progress meter\n");
Damien Millerd7686fd2001-02-10 00:40:03 +1100148 printf("put local-path [remote-path] Upload file\n");
149 printf("pwd Display remote working directory\n");
150 printf("exit Quit sftp\n");
151 printf("quit Quit sftp\n");
152 printf("rename oldpath newpath Rename remote file\n");
153 printf("rmdir path Remove remote directory\n");
154 printf("rm path Delete remote file\n");
Damien Miller058316f2001-03-08 10:08:49 +1100155 printf("symlink oldpath newpath Symlink remote file\n");
Ben Lindstromf78682d2001-03-14 21:26:27 +0000156 printf("version Show SFTP version\n");
Damien Miller33804262001-02-04 23:20:18 +1100157 printf("!command Execute 'command' in local shell\n");
158 printf("! Escape to local shell\n");
Damien Millerd7686fd2001-02-10 00:40:03 +1100159 printf("? Synonym for help\n");
Damien Miller33804262001-02-04 23:20:18 +1100160}
161
Ben Lindstrombba81212001-06-25 05:01:22 +0000162static void
Damien Miller33804262001-02-04 23:20:18 +1100163local_do_shell(const char *args)
164{
Ben Lindstrom206941f2001-04-15 14:27:16 +0000165 int status;
Damien Miller33804262001-02-04 23:20:18 +1100166 char *shell;
167 pid_t pid;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000168
Damien Miller33804262001-02-04 23:20:18 +1100169 if (!*args)
170 args = NULL;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000171
Damien Miller33804262001-02-04 23:20:18 +1100172 if ((shell = getenv("SHELL")) == NULL)
173 shell = _PATH_BSHELL;
174
175 if ((pid = fork()) == -1)
176 fatal("Couldn't fork: %s", strerror(errno));
177
178 if (pid == 0) {
179 /* XXX: child has pipe fds to ssh subproc open - issue? */
180 if (args) {
181 debug3("Executing %s -c \"%s\"", shell, args);
Damien Millerefb1edf2001-07-14 12:19:36 +1000182 execl(shell, shell, "-c", args, (char *)NULL);
Damien Miller33804262001-02-04 23:20:18 +1100183 } else {
184 debug3("Executing %s", shell);
Damien Millerefb1edf2001-07-14 12:19:36 +1000185 execl(shell, shell, (char *)NULL);
Damien Miller33804262001-02-04 23:20:18 +1100186 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000187 fprintf(stderr, "Couldn't execute \"%s\": %s\n", shell,
Damien Miller33804262001-02-04 23:20:18 +1100188 strerror(errno));
189 _exit(1);
190 }
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000191 while (waitpid(pid, &status, 0) == -1)
192 if (errno != EINTR)
193 fatal("Couldn't wait for child: %s", strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +1100194 if (!WIFEXITED(status))
195 error("Shell exited abormally");
196 else if (WEXITSTATUS(status))
197 error("Shell exited with status %d", WEXITSTATUS(status));
198}
199
Ben Lindstrombba81212001-06-25 05:01:22 +0000200static void
Damien Miller33804262001-02-04 23:20:18 +1100201local_do_ls(const char *args)
202{
203 if (!args || !*args)
Damien Millerd7686fd2001-02-10 00:40:03 +1100204 local_do_shell(_PATH_LS);
Damien Miller33804262001-02-04 23:20:18 +1100205 else {
Damien Millerd7686fd2001-02-10 00:40:03 +1100206 int len = strlen(_PATH_LS " ") + strlen(args) + 1;
207 char *buf = xmalloc(len);
Damien Miller33804262001-02-04 23:20:18 +1100208
209 /* XXX: quoting - rip quoting code from ftp? */
Damien Millerd7686fd2001-02-10 00:40:03 +1100210 snprintf(buf, len, _PATH_LS " %s", args);
Damien Miller33804262001-02-04 23:20:18 +1100211 local_do_shell(buf);
Damien Millerd7686fd2001-02-10 00:40:03 +1100212 xfree(buf);
Damien Miller33804262001-02-04 23:20:18 +1100213 }
214}
215
Damien Millere1a49812002-09-12 09:54:25 +1000216/* Strip one path (usually the pwd) from the start of another */
217static char *
218path_strip(char *path, char *strip)
219{
220 size_t len;
Damien Millere1a49812002-09-12 09:54:25 +1000221
222 if (strip == NULL)
223 return (xstrdup(path));
224
225 len = strlen(strip);
226 if (strip != NULL && strncmp(path, strip, len) == 0) {
227 if (strip[len - 1] != '/' && path[len] == '/')
228 len++;
229 return (xstrdup(path + len));
230 }
231
232 return (xstrdup(path));
233}
234
Ben Lindstrombba81212001-06-25 05:01:22 +0000235static char *
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000236path_append(char *p1, char *p2)
237{
238 char *ret;
Ben Lindstromcf00df62001-03-17 00:37:31 +0000239 int len = strlen(p1) + strlen(p2) + 2;
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000240
Ben Lindstromcf00df62001-03-17 00:37:31 +0000241 ret = xmalloc(len);
242 strlcpy(ret, p1, len);
Damien Millere1a49812002-09-12 09:54:25 +1000243 if (p1[strlen(p1) - 1] != '/')
Ben Lindstrom95148e32001-08-06 21:30:53 +0000244 strlcat(ret, "/", len);
Ben Lindstromcf00df62001-03-17 00:37:31 +0000245 strlcat(ret, p2, len);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000246
247 return(ret);
248}
249
Ben Lindstrombba81212001-06-25 05:01:22 +0000250static char *
Damien Miller33804262001-02-04 23:20:18 +1100251make_absolute(char *p, char *pwd)
252{
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000253 char *abs;
Damien Miller33804262001-02-04 23:20:18 +1100254
255 /* Derelativise */
256 if (p && p[0] != '/') {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000257 abs = path_append(pwd, p);
Damien Miller33804262001-02-04 23:20:18 +1100258 xfree(p);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000259 return(abs);
260 } else
261 return(p);
262}
263
Ben Lindstrombba81212001-06-25 05:01:22 +0000264static int
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000265infer_path(const char *p, char **ifp)
266{
267 char *cp;
268
269 cp = strrchr(p, '/');
270 if (cp == NULL) {
271 *ifp = xstrdup(p);
272 return(0);
Damien Miller33804262001-02-04 23:20:18 +1100273 }
274
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000275 if (!cp[1]) {
276 error("Invalid path");
277 return(-1);
278 }
279
280 *ifp = xstrdup(cp + 1);
281 return(0);
Damien Miller33804262001-02-04 23:20:18 +1100282}
283
Ben Lindstrombba81212001-06-25 05:01:22 +0000284static int
Damien Miller33804262001-02-04 23:20:18 +1100285parse_getput_flags(const char **cpp, int *pflag)
286{
287 const char *cp = *cpp;
288
289 /* Check for flags */
290 if (cp[0] == '-' && cp[1] && strchr(WHITESPACE, cp[2])) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100291 switch (cp[1]) {
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000292 case 'p':
Damien Miller33804262001-02-04 23:20:18 +1100293 case 'P':
294 *pflag = 1;
295 break;
296 default:
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000297 error("Invalid flag -%c", cp[1]);
Damien Miller33804262001-02-04 23:20:18 +1100298 return(-1);
299 }
300 cp += 2;
301 *cpp = cp + strspn(cp, WHITESPACE);
302 }
303
304 return(0);
305}
306
Ben Lindstrombba81212001-06-25 05:01:22 +0000307static int
Damien Millere1a49812002-09-12 09:54:25 +1000308parse_ls_flags(const char **cpp, int *lflag)
309{
310 const char *cp = *cpp;
311
312 /* Check for flags */
313 if (cp++[0] == '-') {
314 for(; strchr(WHITESPACE, *cp) == NULL; cp++) {
315 switch (*cp) {
316 case 'l':
Damien Miller19c8f2b2003-05-15 13:49:21 +1000317 *lflag = LONG_VIEW;
318 break;
319 case '1':
320 *lflag = SHORT_VIEW;
Damien Millere1a49812002-09-12 09:54:25 +1000321 break;
322 default:
323 error("Invalid flag -%c", *cp);
324 return(-1);
325 }
326 }
327 *cpp = cp + strspn(cp, WHITESPACE);
328 }
329
330 return(0);
331}
332
333static int
Damien Miller33804262001-02-04 23:20:18 +1100334get_pathname(const char **cpp, char **path)
335{
Damien Millerd7686fd2001-02-10 00:40:03 +1100336 const char *cp = *cpp, *end;
337 char quot;
Darren Tucker554d5b52003-07-19 20:09:21 +1000338 int i, j;
Damien Miller33804262001-02-04 23:20:18 +1100339
340 cp += strspn(cp, WHITESPACE);
341 if (!*cp) {
342 *cpp = cp;
343 *path = NULL;
Damien Millerd7686fd2001-02-10 00:40:03 +1100344 return (0);
Damien Miller33804262001-02-04 23:20:18 +1100345 }
346
Darren Tucker554d5b52003-07-19 20:09:21 +1000347 *path = xmalloc(strlen(cp) + 1);
348
Damien Miller33804262001-02-04 23:20:18 +1100349 /* Check for quoted filenames */
350 if (*cp == '\"' || *cp == '\'') {
Damien Millerd7686fd2001-02-10 00:40:03 +1100351 quot = *cp++;
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000352
Darren Tucker554d5b52003-07-19 20:09:21 +1000353 /* Search for terminating quote, unescape some chars */
354 for (i = j = 0; i <= strlen(cp); i++) {
355 if (cp[i] == quot) { /* Found quote */
Darren Tucker64dbccc2003-10-08 17:34:38 +1000356 i++;
Darren Tucker554d5b52003-07-19 20:09:21 +1000357 (*path)[j] = '\0';
358 break;
359 }
360 if (cp[i] == '\0') { /* End of string */
361 error("Unterminated quote");
362 goto fail;
363 }
364 if (cp[i] == '\\') { /* Escaped characters */
365 i++;
Damien Millera8e06ce2003-11-21 23:48:55 +1100366 if (cp[i] != '\'' && cp[i] != '\"' &&
Darren Tucker554d5b52003-07-19 20:09:21 +1000367 cp[i] != '\\') {
368 error("Bad escaped character '\%c'",
369 cp[i]);
370 goto fail;
371 }
372 }
373 (*path)[j++] = cp[i];
Damien Miller33804262001-02-04 23:20:18 +1100374 }
Darren Tucker554d5b52003-07-19 20:09:21 +1000375
376 if (j == 0) {
Damien Miller33804262001-02-04 23:20:18 +1100377 error("Empty quotes");
Damien Millerd7686fd2001-02-10 00:40:03 +1100378 goto fail;
Damien Miller33804262001-02-04 23:20:18 +1100379 }
Darren Tucker554d5b52003-07-19 20:09:21 +1000380 *cpp = cp + i + strspn(cp + i, WHITESPACE);
Damien Millerd7686fd2001-02-10 00:40:03 +1100381 } else {
382 /* Read to end of filename */
383 end = strpbrk(cp, WHITESPACE);
384 if (end == NULL)
385 end = strchr(cp, '\0');
386 *cpp = end + strspn(end, WHITESPACE);
Darren Tucker554d5b52003-07-19 20:09:21 +1000387
388 memcpy(*path, cp, end - cp);
389 (*path)[end - cp] = '\0';
Damien Miller33804262001-02-04 23:20:18 +1100390 }
Darren Tucker554d5b52003-07-19 20:09:21 +1000391 return (0);
Damien Millerd7686fd2001-02-10 00:40:03 +1100392
393 fail:
Damien Millera8e06ce2003-11-21 23:48:55 +1100394 xfree(*path);
Damien Miller787b2ec2003-11-21 23:56:47 +1100395 *path = NULL;
Damien Millerd7686fd2001-02-10 00:40:03 +1100396 return (-1);
Damien Miller33804262001-02-04 23:20:18 +1100397}
398
Ben Lindstrombba81212001-06-25 05:01:22 +0000399static int
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000400is_dir(char *path)
Damien Miller33804262001-02-04 23:20:18 +1100401{
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000402 struct stat sb;
Damien Miller33804262001-02-04 23:20:18 +1100403
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000404 /* XXX: report errors? */
405 if (stat(path, &sb) == -1)
Damien Miller33804262001-02-04 23:20:18 +1100406 return(0);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000407
408 return(sb.st_mode & S_IFDIR);
409}
410
Ben Lindstrombba81212001-06-25 05:01:22 +0000411static int
Damien Miller5fa01fd2003-01-14 22:24:47 +1100412is_reg(char *path)
413{
414 struct stat sb;
415
416 if (stat(path, &sb) == -1)
417 fatal("stat %s: %s", path, strerror(errno));
418
419 return(S_ISREG(sb.st_mode));
420}
421
422static int
Damien Miller3db5f532002-02-13 14:10:32 +1100423remote_is_dir(struct sftp_conn *conn, char *path)
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000424{
425 Attrib *a;
426
427 /* XXX: report errors? */
Damien Miller3db5f532002-02-13 14:10:32 +1100428 if ((a = do_stat(conn, path, 1)) == NULL)
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000429 return(0);
430 if (!(a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS))
431 return(0);
432 return(a->perm & S_IFDIR);
433}
434
Ben Lindstrombba81212001-06-25 05:01:22 +0000435static int
Damien Miller3db5f532002-02-13 14:10:32 +1100436process_get(struct sftp_conn *conn, char *src, char *dst, char *pwd, int pflag)
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000437{
438 char *abs_src = NULL;
439 char *abs_dst = NULL;
440 char *tmp;
441 glob_t g;
442 int err = 0;
443 int i;
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000444
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000445 abs_src = xstrdup(src);
446 abs_src = make_absolute(abs_src, pwd);
447
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000448 memset(&g, 0, sizeof(g));
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000449 debug3("Looking up %s", abs_src);
Damien Miller3db5f532002-02-13 14:10:32 +1100450 if (remote_glob(conn, abs_src, 0, NULL, &g)) {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000451 error("File \"%s\" not found.", abs_src);
452 err = -1;
453 goto out;
Damien Miller33804262001-02-04 23:20:18 +1100454 }
455
Damien Miller4962ed62003-05-15 13:48:59 +1000456 /* If multiple matches, dst must be a directory or unspecified */
457 if (g.gl_matchc > 1 && dst && !is_dir(dst)) {
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000458 error("Multiple files match, but \"%s\" is not a directory",
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000459 dst);
460 err = -1;
461 goto out;
462 }
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000463
Damien Miller9f0f5c62001-12-21 14:45:46 +1100464 for (i = 0; g.gl_pathv[i]; i++) {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000465 if (infer_path(g.gl_pathv[i], &tmp)) {
466 err = -1;
467 goto out;
468 }
Damien Miller4962ed62003-05-15 13:48:59 +1000469
470 if (g.gl_matchc == 1 && dst) {
471 /* If directory specified, append filename */
472 if (is_dir(dst)) {
473 if (infer_path(g.gl_pathv[0], &tmp)) {
474 err = 1;
475 goto out;
476 }
477 abs_dst = path_append(dst, tmp);
478 xfree(tmp);
479 } else
480 abs_dst = xstrdup(dst);
481 } else if (dst) {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000482 abs_dst = path_append(dst, tmp);
483 xfree(tmp);
484 } else
485 abs_dst = tmp;
486
487 printf("Fetching %s to %s\n", g.gl_pathv[i], abs_dst);
Damien Miller3db5f532002-02-13 14:10:32 +1100488 if (do_download(conn, g.gl_pathv[i], abs_dst, pflag) == -1)
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000489 err = -1;
490 xfree(abs_dst);
491 abs_dst = NULL;
492 }
493
494out:
495 xfree(abs_src);
496 if (abs_dst)
497 xfree(abs_dst);
498 globfree(&g);
499 return(err);
500}
501
Ben Lindstrombba81212001-06-25 05:01:22 +0000502static int
Damien Miller3db5f532002-02-13 14:10:32 +1100503process_put(struct sftp_conn *conn, char *src, char *dst, char *pwd, int pflag)
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000504{
505 char *tmp_dst = NULL;
506 char *abs_dst = NULL;
507 char *tmp;
508 glob_t g;
509 int err = 0;
510 int i;
511
512 if (dst) {
513 tmp_dst = xstrdup(dst);
514 tmp_dst = make_absolute(tmp_dst, pwd);
515 }
516
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000517 memset(&g, 0, sizeof(g));
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000518 debug3("Looking up %s", src);
519 if (glob(src, 0, NULL, &g)) {
520 error("File \"%s\" not found.", src);
521 err = -1;
522 goto out;
523 }
524
Damien Miller4962ed62003-05-15 13:48:59 +1000525 /* If multiple matches, dst may be directory or unspecified */
526 if (g.gl_matchc > 1 && tmp_dst && !remote_is_dir(conn, tmp_dst)) {
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000527 error("Multiple files match, but \"%s\" is not a directory",
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000528 tmp_dst);
529 err = -1;
530 goto out;
531 }
532
Damien Miller9f0f5c62001-12-21 14:45:46 +1100533 for (i = 0; g.gl_pathv[i]; i++) {
Damien Miller5fa01fd2003-01-14 22:24:47 +1100534 if (!is_reg(g.gl_pathv[i])) {
Damien Millera8e06ce2003-11-21 23:48:55 +1100535 error("skipping non-regular file %s",
Damien Miller5fa01fd2003-01-14 22:24:47 +1100536 g.gl_pathv[i]);
537 continue;
538 }
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000539 if (infer_path(g.gl_pathv[i], &tmp)) {
540 err = -1;
541 goto out;
542 }
Damien Miller4962ed62003-05-15 13:48:59 +1000543
544 if (g.gl_matchc == 1 && tmp_dst) {
545 /* If directory specified, append filename */
546 if (remote_is_dir(conn, tmp_dst)) {
547 if (infer_path(g.gl_pathv[0], &tmp)) {
548 err = 1;
549 goto out;
550 }
551 abs_dst = path_append(tmp_dst, tmp);
552 xfree(tmp);
553 } else
554 abs_dst = xstrdup(tmp_dst);
555
556 } else if (tmp_dst) {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000557 abs_dst = path_append(tmp_dst, tmp);
558 xfree(tmp);
559 } else
560 abs_dst = make_absolute(tmp, pwd);
561
562 printf("Uploading %s to %s\n", g.gl_pathv[i], abs_dst);
Damien Miller3db5f532002-02-13 14:10:32 +1100563 if (do_upload(conn, g.gl_pathv[i], abs_dst, pflag) == -1)
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000564 err = -1;
565 }
566
567out:
568 if (abs_dst)
569 xfree(abs_dst);
570 if (tmp_dst)
571 xfree(tmp_dst);
Damien Miller5d421c02003-05-14 13:42:40 +1000572 globfree(&g);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000573 return(err);
Damien Miller33804262001-02-04 23:20:18 +1100574}
575
Ben Lindstrombba81212001-06-25 05:01:22 +0000576static int
Damien Millere1a49812002-09-12 09:54:25 +1000577sdirent_comp(const void *aa, const void *bb)
578{
579 SFTP_DIRENT *a = *(SFTP_DIRENT **)aa;
580 SFTP_DIRENT *b = *(SFTP_DIRENT **)bb;
581
Ben Lindstrom93576d92002-12-23 02:06:19 +0000582 return (strcmp(a->filename, b->filename));
Damien Millere1a49812002-09-12 09:54:25 +1000583}
584
585/* sftp ls.1 replacement for directories */
586static int
587do_ls_dir(struct sftp_conn *conn, char *path, char *strip_path, int lflag)
588{
Damien Miller19c8f2b2003-05-15 13:49:21 +1000589 int n, c = 1, colspace = 0, columns = 1;
Damien Millere1a49812002-09-12 09:54:25 +1000590 SFTP_DIRENT **d;
591
592 if ((n = do_readdir(conn, path, &d)) != 0)
593 return (n);
594
Damien Miller19c8f2b2003-05-15 13:49:21 +1000595 if (!(lflag & SHORT_VIEW)) {
596 int m = 0, width = 80;
597 struct winsize ws;
Damien Millerb21be842004-01-27 21:20:11 +1100598 char *tmp;
Damien Miller19c8f2b2003-05-15 13:49:21 +1000599
600 /* Count entries for sort and find longest filename */
601 for (n = 0; d[n] != NULL; n++)
602 m = MAX(m, strlen(d[n]->filename));
603
Damien Millerb21be842004-01-27 21:20:11 +1100604 /* Add any subpath that also needs to be counted */
605 tmp = path_strip(path, strip_path);
606 m += strlen(tmp);
607 xfree(tmp);
608
Damien Millera8e06ce2003-11-21 23:48:55 +1100609 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) != -1)
Damien Miller19c8f2b2003-05-15 13:49:21 +1000610 width = ws.ws_col;
611
612 columns = width / (m + 2);
Darren Tucker78587262003-08-26 12:12:56 +1000613 columns = MAX(columns, 1);
Damien Miller19c8f2b2003-05-15 13:49:21 +1000614 colspace = width / columns;
Damien Millerb21be842004-01-27 21:20:11 +1100615 colspace = MIN(colspace, width);
Damien Miller19c8f2b2003-05-15 13:49:21 +1000616 }
Damien Millere1a49812002-09-12 09:54:25 +1000617
618 qsort(d, n, sizeof(*d), sdirent_comp);
619
620 for (n = 0; d[n] != NULL; n++) {
621 char *tmp, *fname;
Ben Lindstrom93576d92002-12-23 02:06:19 +0000622
Damien Millere1a49812002-09-12 09:54:25 +1000623 tmp = path_append(path, d[n]->filename);
624 fname = path_strip(tmp, strip_path);
625 xfree(tmp);
626
Damien Miller19c8f2b2003-05-15 13:49:21 +1000627 if (lflag & LONG_VIEW) {
Damien Millere1a49812002-09-12 09:54:25 +1000628 char *lname;
629 struct stat sb;
630
631 memset(&sb, 0, sizeof(sb));
632 attrib_to_stat(&d[n]->a, &sb);
633 lname = ls_file(fname, &sb, 1);
634 printf("%s\n", lname);
635 xfree(lname);
636 } else {
Damien Miller19c8f2b2003-05-15 13:49:21 +1000637 printf("%-*s", colspace, fname);
638 if (c >= columns) {
639 printf("\n");
640 c = 1;
641 } else
642 c++;
Damien Millere1a49812002-09-12 09:54:25 +1000643 }
Ben Lindstrom93576d92002-12-23 02:06:19 +0000644
Damien Millere1a49812002-09-12 09:54:25 +1000645 xfree(fname);
646 }
647
Damien Miller19c8f2b2003-05-15 13:49:21 +1000648 if (!(lflag & LONG_VIEW) && (c != 1))
649 printf("\n");
650
Damien Millere1a49812002-09-12 09:54:25 +1000651 free_sftp_dirents(d);
652 return (0);
653}
654
655/* sftp ls.1 replacement which handles path globs */
656static int
Ben Lindstrom93576d92002-12-23 02:06:19 +0000657do_globbed_ls(struct sftp_conn *conn, char *path, char *strip_path,
Damien Millere1a49812002-09-12 09:54:25 +1000658 int lflag)
659{
660 glob_t g;
Damien Miller19c8f2b2003-05-15 13:49:21 +1000661 int i, c = 1, colspace = 0, columns = 1;
Damien Millere1a49812002-09-12 09:54:25 +1000662 Attrib *a;
Damien Millere1a49812002-09-12 09:54:25 +1000663
664 memset(&g, 0, sizeof(g));
665
Ben Lindstrom93576d92002-12-23 02:06:19 +0000666 if (remote_glob(conn, path, GLOB_MARK|GLOB_NOCHECK|GLOB_BRACE,
Damien Millere1a49812002-09-12 09:54:25 +1000667 NULL, &g)) {
668 error("Can't ls: \"%s\" not found", path);
669 return (-1);
670 }
671
672 /*
Ben Lindstrom93576d92002-12-23 02:06:19 +0000673 * If the glob returns a single match, which is the same as the
Damien Millere1a49812002-09-12 09:54:25 +1000674 * input glob, and it is a directory, then just list its contents
675 */
Ben Lindstrom93576d92002-12-23 02:06:19 +0000676 if (g.gl_pathc == 1 &&
Damien Millere1a49812002-09-12 09:54:25 +1000677 strncmp(path, g.gl_pathv[0], strlen(g.gl_pathv[0]) - 1) == 0) {
678 if ((a = do_lstat(conn, path, 1)) == NULL) {
679 globfree(&g);
Damien Millera8e06ce2003-11-21 23:48:55 +1100680 return (-1);
Damien Millere1a49812002-09-12 09:54:25 +1000681 }
Ben Lindstrom93576d92002-12-23 02:06:19 +0000682 if ((a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) &&
Damien Millere1a49812002-09-12 09:54:25 +1000683 S_ISDIR(a->perm)) {
684 globfree(&g);
685 return (do_ls_dir(conn, path, strip_path, lflag));
686 }
687 }
688
Damien Miller19c8f2b2003-05-15 13:49:21 +1000689 if (!(lflag & SHORT_VIEW)) {
690 int m = 0, width = 80;
Damien Miller787b2ec2003-11-21 23:56:47 +1100691 struct winsize ws;
Damien Miller19c8f2b2003-05-15 13:49:21 +1000692
693 /* Count entries for sort and find longest filename */
Damien Millera8e06ce2003-11-21 23:48:55 +1100694 for (i = 0; g.gl_pathv[i]; i++)
Damien Miller19c8f2b2003-05-15 13:49:21 +1000695 m = MAX(m, strlen(g.gl_pathv[i]));
696
697 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) != -1)
698 width = ws.ws_col;
699
700 columns = width / (m + 2);
Darren Tucker78587262003-08-26 12:12:56 +1000701 columns = MAX(columns, 1);
Damien Miller19c8f2b2003-05-15 13:49:21 +1000702 colspace = width / columns;
703 }
704
Damien Millere1a49812002-09-12 09:54:25 +1000705 for (i = 0; g.gl_pathv[i]; i++) {
Damien Miller19c8f2b2003-05-15 13:49:21 +1000706 char *fname;
Damien Millere1a49812002-09-12 09:54:25 +1000707
708 fname = path_strip(g.gl_pathv[i], strip_path);
709
Damien Miller19c8f2b2003-05-15 13:49:21 +1000710 if (lflag & LONG_VIEW) {
711 char *lname;
712 struct stat sb;
713
Damien Millere1a49812002-09-12 09:54:25 +1000714 /*
715 * XXX: this is slow - 1 roundtrip per path
Ben Lindstrom93576d92002-12-23 02:06:19 +0000716 * A solution to this is to fork glob() and
717 * build a sftp specific version which keeps the
Damien Millere1a49812002-09-12 09:54:25 +1000718 * attribs (which currently get thrown away)
719 * that the server returns as well as the filenames.
720 */
721 memset(&sb, 0, sizeof(sb));
722 a = do_lstat(conn, g.gl_pathv[i], 1);
723 if (a != NULL)
724 attrib_to_stat(a, &sb);
725 lname = ls_file(fname, &sb, 1);
726 printf("%s\n", lname);
727 xfree(lname);
728 } else {
Damien Miller19c8f2b2003-05-15 13:49:21 +1000729 printf("%-*s", colspace, fname);
730 if (c >= columns) {
731 printf("\n");
732 c = 1;
733 } else
734 c++;
Damien Millere1a49812002-09-12 09:54:25 +1000735 }
736 xfree(fname);
737 }
738
Damien Miller19c8f2b2003-05-15 13:49:21 +1000739 if (!(lflag & LONG_VIEW) && (c != 1))
740 printf("\n");
741
Damien Millere1a49812002-09-12 09:54:25 +1000742 if (g.gl_pathc)
743 globfree(&g);
744
745 return (0);
746}
747
748static int
Damien Miller956f3fb2003-01-10 21:40:00 +1100749parse_args(const char **cpp, int *pflag, int *lflag, int *iflag,
Damien Millere1a49812002-09-12 09:54:25 +1000750 unsigned long *n_arg, char **path1, char **path2)
Damien Miller33804262001-02-04 23:20:18 +1100751{
752 const char *cmd, *cp = *cpp;
Ben Lindstrom66904942001-02-15 03:19:56 +0000753 char *cp2;
Kevin Steves62c45db2001-02-05 13:42:43 +0000754 int base = 0;
Ben Lindstrom66904942001-02-15 03:19:56 +0000755 long l;
Damien Miller33804262001-02-04 23:20:18 +1100756 int i, cmdnum;
757
758 /* Skip leading whitespace */
759 cp = cp + strspn(cp, WHITESPACE);
760
Damien Miller956f3fb2003-01-10 21:40:00 +1100761 /* Ignore blank lines and lines which begin with comment '#' char */
762 if (*cp == '\0' || *cp == '#')
763 return (0);
Damien Miller33804262001-02-04 23:20:18 +1100764
Damien Miller956f3fb2003-01-10 21:40:00 +1100765 /* Check for leading '-' (disable error processing) */
766 *iflag = 0;
767 if (*cp == '-') {
768 *iflag = 1;
769 cp++;
770 }
Damien Miller787b2ec2003-11-21 23:56:47 +1100771
Damien Miller33804262001-02-04 23:20:18 +1100772 /* Figure out which command we have */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100773 for (i = 0; cmds[i].c; i++) {
Damien Miller33804262001-02-04 23:20:18 +1100774 int cmdlen = strlen(cmds[i].c);
775
776 /* Check for command followed by whitespace */
777 if (!strncasecmp(cp, cmds[i].c, cmdlen) &&
778 strchr(WHITESPACE, cp[cmdlen])) {
779 cp += cmdlen;
780 cp = cp + strspn(cp, WHITESPACE);
781 break;
782 }
783 }
784 cmdnum = cmds[i].n;
785 cmd = cmds[i].c;
786
787 /* Special case */
788 if (*cp == '!') {
789 cp++;
790 cmdnum = I_SHELL;
791 } else if (cmdnum == -1) {
792 error("Invalid command.");
Damien Miller956f3fb2003-01-10 21:40:00 +1100793 return (-1);
Damien Miller33804262001-02-04 23:20:18 +1100794 }
795
796 /* Get arguments and parse flags */
Damien Millere1a49812002-09-12 09:54:25 +1000797 *lflag = *pflag = *n_arg = 0;
Damien Miller33804262001-02-04 23:20:18 +1100798 *path1 = *path2 = NULL;
799 switch (cmdnum) {
800 case I_GET:
801 case I_PUT:
802 if (parse_getput_flags(&cp, pflag))
803 return(-1);
804 /* Get first pathname (mandatory) */
805 if (get_pathname(&cp, path1))
806 return(-1);
807 if (*path1 == NULL) {
808 error("You must specify at least one path after a "
809 "%s command.", cmd);
810 return(-1);
811 }
812 /* Try to get second pathname (optional) */
813 if (get_pathname(&cp, path2))
814 return(-1);
Damien Miller33804262001-02-04 23:20:18 +1100815 break;
816 case I_RENAME:
Damien Miller058316f2001-03-08 10:08:49 +1100817 case I_SYMLINK:
Damien Miller33804262001-02-04 23:20:18 +1100818 if (get_pathname(&cp, path1))
819 return(-1);
820 if (get_pathname(&cp, path2))
821 return(-1);
822 if (!*path1 || !*path2) {
823 error("You must specify two paths after a %s "
824 "command.", cmd);
825 return(-1);
826 }
827 break;
828 case I_RM:
829 case I_MKDIR:
830 case I_RMDIR:
831 case I_CHDIR:
832 case I_LCHDIR:
833 case I_LMKDIR:
834 /* Get pathname (mandatory) */
835 if (get_pathname(&cp, path1))
836 return(-1);
837 if (*path1 == NULL) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000838 error("You must specify a path after a %s command.",
Damien Miller33804262001-02-04 23:20:18 +1100839 cmd);
840 return(-1);
841 }
842 break;
843 case I_LS:
Damien Millere1a49812002-09-12 09:54:25 +1000844 if (parse_ls_flags(&cp, lflag))
845 return(-1);
Damien Miller33804262001-02-04 23:20:18 +1100846 /* Path is optional */
847 if (get_pathname(&cp, path1))
848 return(-1);
849 break;
850 case I_LLS:
851 case I_SHELL:
852 /* Uses the rest of the line */
853 break;
854 case I_LUMASK:
Ben Lindstrom66904942001-02-15 03:19:56 +0000855 base = 8;
Damien Miller33804262001-02-04 23:20:18 +1100856 case I_CHMOD:
Kevin Steves62c45db2001-02-05 13:42:43 +0000857 base = 8;
Damien Miller33804262001-02-04 23:20:18 +1100858 case I_CHOWN:
859 case I_CHGRP:
860 /* Get numeric arg (mandatory) */
Ben Lindstrom66904942001-02-15 03:19:56 +0000861 l = strtol(cp, &cp2, base);
862 if (cp2 == cp || ((l == LONG_MIN || l == LONG_MAX) &&
863 errno == ERANGE) || l < 0) {
Damien Miller33804262001-02-04 23:20:18 +1100864 error("You must supply a numeric argument "
865 "to the %s command.", cmd);
866 return(-1);
867 }
Ben Lindstrom66904942001-02-15 03:19:56 +0000868 cp = cp2;
869 *n_arg = l;
870 if (cmdnum == I_LUMASK && strchr(WHITESPACE, *cp))
871 break;
872 if (cmdnum == I_LUMASK || !strchr(WHITESPACE, *cp)) {
Damien Miller33804262001-02-04 23:20:18 +1100873 error("You must supply a numeric argument "
874 "to the %s command.", cmd);
875 return(-1);
876 }
877 cp += strspn(cp, WHITESPACE);
878
879 /* Get pathname (mandatory) */
880 if (get_pathname(&cp, path1))
881 return(-1);
882 if (*path1 == NULL) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000883 error("You must specify a path after a %s command.",
Damien Miller33804262001-02-04 23:20:18 +1100884 cmd);
885 return(-1);
886 }
887 break;
888 case I_QUIT:
889 case I_PWD:
890 case I_LPWD:
891 case I_HELP:
Ben Lindstromf78682d2001-03-14 21:26:27 +0000892 case I_VERSION:
Damien Miller62d57f62003-01-10 21:43:24 +1100893 case I_PROGRESS:
Damien Miller33804262001-02-04 23:20:18 +1100894 break;
895 default:
896 fatal("Command not implemented");
897 }
898
899 *cpp = cp;
Damien Miller33804262001-02-04 23:20:18 +1100900 return(cmdnum);
901}
902
Ben Lindstrombba81212001-06-25 05:01:22 +0000903static int
Damien Miller956f3fb2003-01-10 21:40:00 +1100904parse_dispatch_command(struct sftp_conn *conn, const char *cmd, char **pwd,
905 int err_abort)
Damien Miller33804262001-02-04 23:20:18 +1100906{
Damien Millerd7686fd2001-02-10 00:40:03 +1100907 char *path1, *path2, *tmp;
Damien Miller956f3fb2003-01-10 21:40:00 +1100908 int pflag, lflag, iflag, cmdnum, i;
Damien Miller33804262001-02-04 23:20:18 +1100909 unsigned long n_arg;
910 Attrib a, *aa;
Ben Lindstrom0a7e3542001-02-15 03:50:49 +0000911 char path_buf[MAXPATHLEN];
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000912 int err = 0;
Damien Miller4870afd2001-03-14 10:27:09 +1100913 glob_t g;
Damien Miller33804262001-02-04 23:20:18 +1100914
915 path1 = path2 = NULL;
Damien Miller956f3fb2003-01-10 21:40:00 +1100916 cmdnum = parse_args(&cmd, &pflag, &lflag, &iflag, &n_arg,
Damien Millere1a49812002-09-12 09:54:25 +1000917 &path1, &path2);
Damien Miller33804262001-02-04 23:20:18 +1100918
Damien Miller956f3fb2003-01-10 21:40:00 +1100919 if (iflag != 0)
920 err_abort = 0;
921
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000922 memset(&g, 0, sizeof(g));
923
Damien Miller33804262001-02-04 23:20:18 +1100924 /* Perform command */
925 switch (cmdnum) {
Damien Miller956f3fb2003-01-10 21:40:00 +1100926 case 0:
927 /* Blank line */
928 break;
Damien Miller33804262001-02-04 23:20:18 +1100929 case -1:
Damien Miller956f3fb2003-01-10 21:40:00 +1100930 /* Unrecognized command */
931 err = -1;
Damien Miller33804262001-02-04 23:20:18 +1100932 break;
933 case I_GET:
Damien Miller3db5f532002-02-13 14:10:32 +1100934 err = process_get(conn, path1, path2, *pwd, pflag);
Damien Miller33804262001-02-04 23:20:18 +1100935 break;
936 case I_PUT:
Damien Miller3db5f532002-02-13 14:10:32 +1100937 err = process_put(conn, path1, path2, *pwd, pflag);
Ben Lindstroma3700052001-04-05 23:26:32 +0000938 break;
939 case I_RENAME:
Damien Miller33804262001-02-04 23:20:18 +1100940 path1 = make_absolute(path1, *pwd);
941 path2 = make_absolute(path2, *pwd);
Damien Miller3db5f532002-02-13 14:10:32 +1100942 err = do_rename(conn, path1, path2);
Damien Miller33804262001-02-04 23:20:18 +1100943 break;
Damien Miller058316f2001-03-08 10:08:49 +1100944 case I_SYMLINK:
Damien Miller3db5f532002-02-13 14:10:32 +1100945 path2 = make_absolute(path2, *pwd);
946 err = do_symlink(conn, path1, path2);
Damien Miller058316f2001-03-08 10:08:49 +1100947 break;
Damien Miller33804262001-02-04 23:20:18 +1100948 case I_RM:
949 path1 = make_absolute(path1, *pwd);
Damien Miller3db5f532002-02-13 14:10:32 +1100950 remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100951 for (i = 0; g.gl_pathv[i]; i++) {
Damien Miller4870afd2001-03-14 10:27:09 +1100952 printf("Removing %s\n", g.gl_pathv[i]);
Damien Miller956f3fb2003-01-10 21:40:00 +1100953 err = do_rm(conn, g.gl_pathv[i]);
954 if (err != 0 && err_abort)
955 break;
Damien Miller4870afd2001-03-14 10:27:09 +1100956 }
Damien Miller33804262001-02-04 23:20:18 +1100957 break;
958 case I_MKDIR:
959 path1 = make_absolute(path1, *pwd);
960 attrib_clear(&a);
961 a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
962 a.perm = 0777;
Damien Miller3db5f532002-02-13 14:10:32 +1100963 err = do_mkdir(conn, path1, &a);
Damien Miller33804262001-02-04 23:20:18 +1100964 break;
965 case I_RMDIR:
966 path1 = make_absolute(path1, *pwd);
Damien Miller3db5f532002-02-13 14:10:32 +1100967 err = do_rmdir(conn, path1);
Damien Miller33804262001-02-04 23:20:18 +1100968 break;
969 case I_CHDIR:
970 path1 = make_absolute(path1, *pwd);
Damien Miller3db5f532002-02-13 14:10:32 +1100971 if ((tmp = do_realpath(conn, path1)) == NULL) {
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000972 err = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100973 break;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000974 }
Damien Miller3db5f532002-02-13 14:10:32 +1100975 if ((aa = do_stat(conn, tmp, 0)) == NULL) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100976 xfree(tmp);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000977 err = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100978 break;
979 }
980 if (!(aa->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)) {
981 error("Can't change directory: Can't check target");
982 xfree(tmp);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000983 err = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100984 break;
985 }
986 if (!S_ISDIR(aa->perm)) {
987 error("Can't change directory: \"%s\" is not "
988 "a directory", tmp);
989 xfree(tmp);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000990 err = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100991 break;
992 }
Damien Miller33804262001-02-04 23:20:18 +1100993 xfree(*pwd);
Damien Millerd7686fd2001-02-10 00:40:03 +1100994 *pwd = tmp;
Damien Miller33804262001-02-04 23:20:18 +1100995 break;
996 case I_LS:
Damien Millerd7686fd2001-02-10 00:40:03 +1100997 if (!path1) {
Damien Millere1a49812002-09-12 09:54:25 +1000998 do_globbed_ls(conn, *pwd, *pwd, lflag);
Damien Millerd7686fd2001-02-10 00:40:03 +1100999 break;
1000 }
Ben Lindstrom93576d92002-12-23 02:06:19 +00001001
Damien Millere1a49812002-09-12 09:54:25 +10001002 /* Strip pwd off beginning of non-absolute paths */
1003 tmp = NULL;
1004 if (*path1 != '/')
1005 tmp = *pwd;
1006
Damien Miller33804262001-02-04 23:20:18 +11001007 path1 = make_absolute(path1, *pwd);
Damien Miller956f3fb2003-01-10 21:40:00 +11001008 err = do_globbed_ls(conn, path1, tmp, lflag);
Damien Miller33804262001-02-04 23:20:18 +11001009 break;
1010 case I_LCHDIR:
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001011 if (chdir(path1) == -1) {
Damien Miller33804262001-02-04 23:20:18 +11001012 error("Couldn't change local directory to "
1013 "\"%s\": %s", path1, strerror(errno));
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001014 err = 1;
1015 }
Damien Miller33804262001-02-04 23:20:18 +11001016 break;
1017 case I_LMKDIR:
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001018 if (mkdir(path1, 0777) == -1) {
Damien Millerd7686fd2001-02-10 00:40:03 +11001019 error("Couldn't create local directory "
Damien Miller33804262001-02-04 23:20:18 +11001020 "\"%s\": %s", path1, strerror(errno));
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001021 err = 1;
1022 }
Damien Miller33804262001-02-04 23:20:18 +11001023 break;
1024 case I_LLS:
1025 local_do_ls(cmd);
1026 break;
1027 case I_SHELL:
1028 local_do_shell(cmd);
1029 break;
1030 case I_LUMASK:
1031 umask(n_arg);
Ben Lindstrom66904942001-02-15 03:19:56 +00001032 printf("Local umask: %03lo\n", n_arg);
Damien Miller33804262001-02-04 23:20:18 +11001033 break;
1034 case I_CHMOD:
1035 path1 = make_absolute(path1, *pwd);
1036 attrib_clear(&a);
1037 a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
1038 a.perm = n_arg;
Damien Miller3db5f532002-02-13 14:10:32 +11001039 remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001040 for (i = 0; g.gl_pathv[i]; i++) {
Damien Miller4870afd2001-03-14 10:27:09 +11001041 printf("Changing mode on %s\n", g.gl_pathv[i]);
Damien Miller956f3fb2003-01-10 21:40:00 +11001042 err = do_setstat(conn, g.gl_pathv[i], &a);
1043 if (err != 0 && err_abort)
1044 break;
Damien Miller4870afd2001-03-14 10:27:09 +11001045 }
Kevin Steves62c45db2001-02-05 13:42:43 +00001046 break;
Damien Miller33804262001-02-04 23:20:18 +11001047 case I_CHOWN:
Damien Miller33804262001-02-04 23:20:18 +11001048 case I_CHGRP:
1049 path1 = make_absolute(path1, *pwd);
Damien Miller3db5f532002-02-13 14:10:32 +11001050 remote_glob(conn, path1, GLOB_NOCHECK, NULL, &g);
Damien Miller9f0f5c62001-12-21 14:45:46 +11001051 for (i = 0; g.gl_pathv[i]; i++) {
Damien Miller956f3fb2003-01-10 21:40:00 +11001052 if (!(aa = do_stat(conn, g.gl_pathv[i], 0))) {
1053 if (err != 0 && err_abort)
1054 break;
1055 else
1056 continue;
1057 }
Damien Miller4870afd2001-03-14 10:27:09 +11001058 if (!(aa->flags & SSH2_FILEXFER_ATTR_UIDGID)) {
1059 error("Can't get current ownership of "
1060 "remote file \"%s\"", g.gl_pathv[i]);
Damien Miller956f3fb2003-01-10 21:40:00 +11001061 if (err != 0 && err_abort)
1062 break;
1063 else
1064 continue;
Damien Miller4870afd2001-03-14 10:27:09 +11001065 }
Damien Miller4870afd2001-03-14 10:27:09 +11001066 aa->flags &= SSH2_FILEXFER_ATTR_UIDGID;
Damien Miller956f3fb2003-01-10 21:40:00 +11001067 if (cmdnum == I_CHOWN) {
1068 printf("Changing owner on %s\n", g.gl_pathv[i]);
1069 aa->uid = n_arg;
1070 } else {
1071 printf("Changing group on %s\n", g.gl_pathv[i]);
1072 aa->gid = n_arg;
1073 }
1074 err = do_setstat(conn, g.gl_pathv[i], aa);
1075 if (err != 0 && err_abort)
1076 break;
Damien Miller33804262001-02-04 23:20:18 +11001077 }
Damien Miller33804262001-02-04 23:20:18 +11001078 break;
1079 case I_PWD:
1080 printf("Remote working directory: %s\n", *pwd);
1081 break;
1082 case I_LPWD:
Damien Miller956f3fb2003-01-10 21:40:00 +11001083 if (!getcwd(path_buf, sizeof(path_buf))) {
1084 error("Couldn't get local cwd: %s", strerror(errno));
1085 err = -1;
1086 break;
1087 }
1088 printf("Local working directory: %s\n", path_buf);
Damien Miller33804262001-02-04 23:20:18 +11001089 break;
1090 case I_QUIT:
Damien Miller956f3fb2003-01-10 21:40:00 +11001091 /* Processed below */
1092 break;
Damien Miller33804262001-02-04 23:20:18 +11001093 case I_HELP:
1094 help();
1095 break;
Ben Lindstromf78682d2001-03-14 21:26:27 +00001096 case I_VERSION:
Ben Lindstromb1f483f2002-06-23 21:27:18 +00001097 printf("SFTP protocol version %u\n", sftp_proto_version(conn));
Ben Lindstromf78682d2001-03-14 21:26:27 +00001098 break;
Damien Miller62d57f62003-01-10 21:43:24 +11001099 case I_PROGRESS:
1100 showprogress = !showprogress;
1101 if (showprogress)
1102 printf("Progress meter enabled\n");
1103 else
1104 printf("Progress meter disabled\n");
1105 break;
Damien Miller33804262001-02-04 23:20:18 +11001106 default:
1107 fatal("%d is not implemented", cmdnum);
1108 }
1109
Ben Lindstromc8d1c302001-03-17 00:34:46 +00001110 if (g.gl_pathc)
1111 globfree(&g);
Damien Miller33804262001-02-04 23:20:18 +11001112 if (path1)
1113 xfree(path1);
1114 if (path2)
1115 xfree(path2);
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001116
Damien Miller956f3fb2003-01-10 21:40:00 +11001117 /* If an unignored error occurs in batch mode we should abort. */
1118 if (err_abort && err != 0)
1119 return (-1);
1120 else if (cmdnum == I_QUIT)
1121 return (1);
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001122
Damien Miller956f3fb2003-01-10 21:40:00 +11001123 return (0);
Damien Miller33804262001-02-04 23:20:18 +11001124}
1125
Damien Miller956f3fb2003-01-10 21:40:00 +11001126int
Ben Lindstrom63667f62001-04-13 00:00:14 +00001127interactive_loop(int fd_in, int fd_out, char *file1, char *file2)
Damien Miller33804262001-02-04 23:20:18 +11001128{
1129 char *pwd;
Ben Lindstrom63667f62001-04-13 00:00:14 +00001130 char *dir = NULL;
Damien Miller33804262001-02-04 23:20:18 +11001131 char cmd[2048];
Damien Miller3db5f532002-02-13 14:10:32 +11001132 struct sftp_conn *conn;
Damien Miller956f3fb2003-01-10 21:40:00 +11001133 int err;
Damien Miller33804262001-02-04 23:20:18 +11001134
Damien Miller3db5f532002-02-13 14:10:32 +11001135 conn = do_init(fd_in, fd_out, copy_buffer_len, num_requests);
1136 if (conn == NULL)
Damien Miller058316f2001-03-08 10:08:49 +11001137 fatal("Couldn't initialise connection to server");
1138
Damien Miller3db5f532002-02-13 14:10:32 +11001139 pwd = do_realpath(conn, ".");
Damien Miller33804262001-02-04 23:20:18 +11001140 if (pwd == NULL)
1141 fatal("Need cwd");
1142
Ben Lindstrom63667f62001-04-13 00:00:14 +00001143 if (file1 != NULL) {
1144 dir = xstrdup(file1);
1145 dir = make_absolute(dir, pwd);
1146
Damien Miller3db5f532002-02-13 14:10:32 +11001147 if (remote_is_dir(conn, dir) && file2 == NULL) {
Ben Lindstrom63667f62001-04-13 00:00:14 +00001148 printf("Changing to: %s\n", dir);
1149 snprintf(cmd, sizeof cmd, "cd \"%s\"", dir);
Damien Miller956f3fb2003-01-10 21:40:00 +11001150 if (parse_dispatch_command(conn, cmd, &pwd, 1) != 0)
1151 return (-1);
Ben Lindstrom63667f62001-04-13 00:00:14 +00001152 } else {
1153 if (file2 == NULL)
1154 snprintf(cmd, sizeof cmd, "get %s", dir);
1155 else
1156 snprintf(cmd, sizeof cmd, "get %s %s", dir,
1157 file2);
1158
Damien Miller956f3fb2003-01-10 21:40:00 +11001159 err = parse_dispatch_command(conn, cmd, &pwd, 1);
Ben Lindstromcb1f60e2002-03-22 02:47:28 +00001160 xfree(dir);
Damien Miller00111382003-03-10 11:21:17 +11001161 xfree(pwd);
Damien Miller956f3fb2003-01-10 21:40:00 +11001162 return (err);
Ben Lindstrom63667f62001-04-13 00:00:14 +00001163 }
Ben Lindstromcb1f60e2002-03-22 02:47:28 +00001164 xfree(dir);
Ben Lindstrom63667f62001-04-13 00:00:14 +00001165 }
Damien Miller956f3fb2003-01-10 21:40:00 +11001166
Ben Lindstrom6aebb342001-05-09 00:38:19 +00001167#if HAVE_SETVBUF
Damien Millerd7686fd2001-02-10 00:40:03 +11001168 setvbuf(stdout, NULL, _IOLBF, 0);
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001169 setvbuf(infile, NULL, _IOLBF, 0);
Ben Lindstrom6aebb342001-05-09 00:38:19 +00001170#else
1171 setlinebuf(stdout);
1172 setlinebuf(infile);
1173#endif
Damien Miller33804262001-02-04 23:20:18 +11001174
Damien Miller956f3fb2003-01-10 21:40:00 +11001175 err = 0;
Damien Miller9f0f5c62001-12-21 14:45:46 +11001176 for (;;) {
Damien Miller33804262001-02-04 23:20:18 +11001177 char *cp;
1178
1179 printf("sftp> ");
1180
1181 /* XXX: use libedit */
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001182 if (fgets(cmd, sizeof(cmd), infile) == NULL) {
Damien Miller33804262001-02-04 23:20:18 +11001183 printf("\n");
1184 break;
Damien Miller44f75c12004-01-21 10:58:47 +11001185 }
1186
1187 if (batchmode) /* Echo command */
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001188 printf("%s", cmd);
1189
Damien Miller33804262001-02-04 23:20:18 +11001190 cp = strrchr(cmd, '\n');
1191 if (cp)
1192 *cp = '\0';
Ben Lindstrom562c26b2001-03-07 01:26:48 +00001193
Damien Miller44f75c12004-01-21 10:58:47 +11001194 err = parse_dispatch_command(conn, cmd, &pwd, batchmode);
Damien Miller956f3fb2003-01-10 21:40:00 +11001195 if (err != 0)
Damien Miller33804262001-02-04 23:20:18 +11001196 break;
1197 }
1198 xfree(pwd);
Damien Miller956f3fb2003-01-10 21:40:00 +11001199
1200 /* err == 1 signifies normal "quit" exit */
1201 return (err >= 0 ? 0 : -1);
Damien Miller33804262001-02-04 23:20:18 +11001202}
Damien Miller956f3fb2003-01-10 21:40:00 +11001203