blob: f86922d0c914b705f3d5bee9b68a9ccdaf870164 [file] [log] [blame]
Damien Miller33804262001-02-04 23:20:18 +11001/*
2 * Copyright (c) 2001 Damien Miller. All rights reserved.
3 *
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 Millerd7686fd2001-02-10 00:40:03 +110025/* XXX: globbed ls */
Damien Miller33804262001-02-04 23:20:18 +110026/* XXX: recursive operations */
27
28#include "includes.h"
Damien Miller8829d362002-02-08 22:04:05 +110029RCSID("$OpenBSD: sftp-int.c,v 1.42 2002/02/05 00:00:46 djm Exp $");
Damien Miller4870afd2001-03-14 10:27:09 +110030
Damien Miller33804262001-02-04 23:20:18 +110031#include "buffer.h"
32#include "xmalloc.h"
33#include "log.h"
34#include "pathnames.h"
35
36#include "sftp.h"
37#include "sftp-common.h"
Damien Miller4870afd2001-03-14 10:27:09 +110038#include "sftp-glob.h"
Damien Miller33804262001-02-04 23:20:18 +110039#include "sftp-client.h"
40#include "sftp-int.h"
41
Damien Miller058316f2001-03-08 10:08:49 +110042/* File to read commands from */
43extern FILE *infile;
44
Damien Miller8829d362002-02-08 22:04:05 +110045/* Size of buffer used when copying files */
46extern size_t copy_buffer_len;
47
Damien Miller058316f2001-03-08 10:08:49 +110048/* Version of server we are speaking to */
49int version;
Ben Lindstrom562c26b2001-03-07 01:26:48 +000050
Damien Miller33804262001-02-04 23:20:18 +110051/* Seperators for interactive commands */
52#define WHITESPACE " \t\r\n"
53
54/* Commands for interactive mode */
55#define I_CHDIR 1
56#define I_CHGRP 2
57#define I_CHMOD 3
58#define I_CHOWN 4
59#define I_GET 5
60#define I_HELP 6
61#define I_LCHDIR 7
62#define I_LLS 8
63#define I_LMKDIR 9
64#define I_LPWD 10
65#define I_LS 11
66#define I_LUMASK 12
67#define I_MKDIR 13
68#define I_PUT 14
69#define I_PWD 15
70#define I_QUIT 16
71#define I_RENAME 17
72#define I_RM 18
73#define I_RMDIR 19
74#define I_SHELL 20
Damien Miller058316f2001-03-08 10:08:49 +110075#define I_SYMLINK 21
Ben Lindstromf78682d2001-03-14 21:26:27 +000076#define I_VERSION 22
Damien Miller33804262001-02-04 23:20:18 +110077
78struct CMD {
Damien Miller33804262001-02-04 23:20:18 +110079 const char *c;
Kevin Steves62c45db2001-02-05 13:42:43 +000080 const int n;
Damien Miller33804262001-02-04 23:20:18 +110081};
82
83const struct CMD cmds[] = {
Ben Lindstrom59e12492001-08-15 23:22:56 +000084 { "bye", I_QUIT },
Damien Millerd7686fd2001-02-10 00:40:03 +110085 { "cd", I_CHDIR },
86 { "chdir", I_CHDIR },
87 { "chgrp", I_CHGRP },
88 { "chmod", I_CHMOD },
89 { "chown", I_CHOWN },
90 { "dir", I_LS },
91 { "exit", I_QUIT },
92 { "get", I_GET },
Ben Lindstrom23d9a6d2001-04-11 23:05:17 +000093 { "mget", I_GET },
Damien Millerd7686fd2001-02-10 00:40:03 +110094 { "help", I_HELP },
95 { "lcd", I_LCHDIR },
96 { "lchdir", I_LCHDIR },
97 { "lls", I_LLS },
98 { "lmkdir", I_LMKDIR },
Damien Miller058316f2001-03-08 10:08:49 +110099 { "ln", I_SYMLINK },
Damien Millerd7686fd2001-02-10 00:40:03 +1100100 { "lpwd", I_LPWD },
101 { "ls", I_LS },
102 { "lumask", I_LUMASK },
103 { "mkdir", I_MKDIR },
104 { "put", I_PUT },
Ben Lindstrom23d9a6d2001-04-11 23:05:17 +0000105 { "mput", I_PUT },
Damien Millerd7686fd2001-02-10 00:40:03 +1100106 { "pwd", I_PWD },
107 { "quit", I_QUIT },
108 { "rename", I_RENAME },
109 { "rm", I_RM },
110 { "rmdir", I_RMDIR },
Damien Miller058316f2001-03-08 10:08:49 +1100111 { "symlink", I_SYMLINK },
Ben Lindstromf78682d2001-03-14 21:26:27 +0000112 { "version", I_VERSION },
Kevin Steves62c45db2001-02-05 13:42:43 +0000113 { "!", I_SHELL },
114 { "?", I_HELP },
115 { NULL, -1}
Damien Miller33804262001-02-04 23:20:18 +1100116};
117
Ben Lindstrombba81212001-06-25 05:01:22 +0000118static void
Damien Miller33804262001-02-04 23:20:18 +1100119help(void)
120{
121 printf("Available commands:\n");
Damien Millerd7686fd2001-02-10 00:40:03 +1100122 printf("cd path Change remote directory to 'path'\n");
123 printf("lcd path Change local directory to 'path'\n");
124 printf("chgrp grp path Change group of file 'path' to 'grp'\n");
125 printf("chmod mode path Change permissions of file 'path' to 'mode'\n");
126 printf("chown own path Change owner of file 'path' to 'own'\n");
127 printf("help Display this help text\n");
128 printf("get remote-path [local-path] Download file\n");
129 printf("lls [ls-options [path]] Display local directory listing\n");
Damien Miller058316f2001-03-08 10:08:49 +1100130 printf("ln oldpath newpath Symlink remote file\n");
Damien Millerd7686fd2001-02-10 00:40:03 +1100131 printf("lmkdir path Create local directory\n");
132 printf("lpwd Print local working directory\n");
133 printf("ls [path] Display remote directory listing\n");
134 printf("lumask umask Set local umask to 'umask'\n");
135 printf("mkdir path Create remote directory\n");
136 printf("put local-path [remote-path] Upload file\n");
137 printf("pwd Display remote working directory\n");
138 printf("exit Quit sftp\n");
139 printf("quit Quit sftp\n");
140 printf("rename oldpath newpath Rename remote file\n");
141 printf("rmdir path Remove remote directory\n");
142 printf("rm path Delete remote file\n");
Damien Miller058316f2001-03-08 10:08:49 +1100143 printf("symlink oldpath newpath Symlink remote file\n");
Ben Lindstromf78682d2001-03-14 21:26:27 +0000144 printf("version Show SFTP version\n");
Damien Miller33804262001-02-04 23:20:18 +1100145 printf("!command Execute 'command' in local shell\n");
146 printf("! Escape to local shell\n");
Damien Millerd7686fd2001-02-10 00:40:03 +1100147 printf("? Synonym for help\n");
Damien Miller33804262001-02-04 23:20:18 +1100148}
149
Ben Lindstrombba81212001-06-25 05:01:22 +0000150static void
Damien Miller33804262001-02-04 23:20:18 +1100151local_do_shell(const char *args)
152{
Ben Lindstrom206941f2001-04-15 14:27:16 +0000153 int status;
Damien Miller33804262001-02-04 23:20:18 +1100154 char *shell;
155 pid_t pid;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000156
Damien Miller33804262001-02-04 23:20:18 +1100157 if (!*args)
158 args = NULL;
Kevin Stevesef4eea92001-02-05 12:42:17 +0000159
Damien Miller33804262001-02-04 23:20:18 +1100160 if ((shell = getenv("SHELL")) == NULL)
161 shell = _PATH_BSHELL;
162
163 if ((pid = fork()) == -1)
164 fatal("Couldn't fork: %s", strerror(errno));
165
166 if (pid == 0) {
167 /* XXX: child has pipe fds to ssh subproc open - issue? */
168 if (args) {
169 debug3("Executing %s -c \"%s\"", shell, args);
Damien Millerefb1edf2001-07-14 12:19:36 +1000170 execl(shell, shell, "-c", args, (char *)NULL);
Damien Miller33804262001-02-04 23:20:18 +1100171 } else {
172 debug3("Executing %s", shell);
Damien Millerefb1edf2001-07-14 12:19:36 +1000173 execl(shell, shell, (char *)NULL);
Damien Miller33804262001-02-04 23:20:18 +1100174 }
Kevin Stevesef4eea92001-02-05 12:42:17 +0000175 fprintf(stderr, "Couldn't execute \"%s\": %s\n", shell,
Damien Miller33804262001-02-04 23:20:18 +1100176 strerror(errno));
177 _exit(1);
178 }
179 if (waitpid(pid, &status, 0) == -1)
180 fatal("Couldn't wait for child: %s", strerror(errno));
181 if (!WIFEXITED(status))
182 error("Shell exited abormally");
183 else if (WEXITSTATUS(status))
184 error("Shell exited with status %d", WEXITSTATUS(status));
185}
186
Ben Lindstrombba81212001-06-25 05:01:22 +0000187static void
Damien Miller33804262001-02-04 23:20:18 +1100188local_do_ls(const char *args)
189{
190 if (!args || !*args)
Damien Millerd7686fd2001-02-10 00:40:03 +1100191 local_do_shell(_PATH_LS);
Damien Miller33804262001-02-04 23:20:18 +1100192 else {
Damien Millerd7686fd2001-02-10 00:40:03 +1100193 int len = strlen(_PATH_LS " ") + strlen(args) + 1;
194 char *buf = xmalloc(len);
Damien Miller33804262001-02-04 23:20:18 +1100195
196 /* XXX: quoting - rip quoting code from ftp? */
Damien Millerd7686fd2001-02-10 00:40:03 +1100197 snprintf(buf, len, _PATH_LS " %s", args);
Damien Miller33804262001-02-04 23:20:18 +1100198 local_do_shell(buf);
Damien Millerd7686fd2001-02-10 00:40:03 +1100199 xfree(buf);
Damien Miller33804262001-02-04 23:20:18 +1100200 }
201}
202
Ben Lindstrombba81212001-06-25 05:01:22 +0000203static char *
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000204path_append(char *p1, char *p2)
205{
206 char *ret;
Ben Lindstromcf00df62001-03-17 00:37:31 +0000207 int len = strlen(p1) + strlen(p2) + 2;
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000208
Ben Lindstromcf00df62001-03-17 00:37:31 +0000209 ret = xmalloc(len);
210 strlcpy(ret, p1, len);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100211 if (strcmp(p1, "/") != 0)
Ben Lindstrom95148e32001-08-06 21:30:53 +0000212 strlcat(ret, "/", len);
Ben Lindstromcf00df62001-03-17 00:37:31 +0000213 strlcat(ret, p2, len);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000214
215 return(ret);
216}
217
Ben Lindstrombba81212001-06-25 05:01:22 +0000218static char *
Damien Miller33804262001-02-04 23:20:18 +1100219make_absolute(char *p, char *pwd)
220{
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000221 char *abs;
Damien Miller33804262001-02-04 23:20:18 +1100222
223 /* Derelativise */
224 if (p && p[0] != '/') {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000225 abs = path_append(pwd, p);
Damien Miller33804262001-02-04 23:20:18 +1100226 xfree(p);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000227 return(abs);
228 } else
229 return(p);
230}
231
Ben Lindstrombba81212001-06-25 05:01:22 +0000232static int
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000233infer_path(const char *p, char **ifp)
234{
235 char *cp;
236
237 cp = strrchr(p, '/');
238 if (cp == NULL) {
239 *ifp = xstrdup(p);
240 return(0);
Damien Miller33804262001-02-04 23:20:18 +1100241 }
242
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000243 if (!cp[1]) {
244 error("Invalid path");
245 return(-1);
246 }
247
248 *ifp = xstrdup(cp + 1);
249 return(0);
Damien Miller33804262001-02-04 23:20:18 +1100250}
251
Ben Lindstrombba81212001-06-25 05:01:22 +0000252static int
Damien Miller33804262001-02-04 23:20:18 +1100253parse_getput_flags(const char **cpp, int *pflag)
254{
255 const char *cp = *cpp;
256
257 /* Check for flags */
258 if (cp[0] == '-' && cp[1] && strchr(WHITESPACE, cp[2])) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100259 switch (cp[1]) {
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000260 case 'p':
Damien Miller33804262001-02-04 23:20:18 +1100261 case 'P':
262 *pflag = 1;
263 break;
264 default:
Ben Lindstrom9d4f2c82001-02-15 03:22:45 +0000265 error("Invalid flag -%c", cp[1]);
Damien Miller33804262001-02-04 23:20:18 +1100266 return(-1);
267 }
268 cp += 2;
269 *cpp = cp + strspn(cp, WHITESPACE);
270 }
271
272 return(0);
273}
274
Ben Lindstrombba81212001-06-25 05:01:22 +0000275static int
Damien Miller33804262001-02-04 23:20:18 +1100276get_pathname(const char **cpp, char **path)
277{
Damien Millerd7686fd2001-02-10 00:40:03 +1100278 const char *cp = *cpp, *end;
279 char quot;
Damien Miller33804262001-02-04 23:20:18 +1100280 int i;
281
282 cp += strspn(cp, WHITESPACE);
283 if (!*cp) {
284 *cpp = cp;
285 *path = NULL;
Damien Millerd7686fd2001-02-10 00:40:03 +1100286 return (0);
Damien Miller33804262001-02-04 23:20:18 +1100287 }
288
289 /* Check for quoted filenames */
290 if (*cp == '\"' || *cp == '\'') {
Damien Millerd7686fd2001-02-10 00:40:03 +1100291 quot = *cp++;
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000292
Damien Millerd7686fd2001-02-10 00:40:03 +1100293 end = strchr(cp, quot);
294 if (end == NULL) {
Damien Miller33804262001-02-04 23:20:18 +1100295 error("Unterminated quote");
Damien Millerd7686fd2001-02-10 00:40:03 +1100296 goto fail;
Damien Miller33804262001-02-04 23:20:18 +1100297 }
Damien Millerd7686fd2001-02-10 00:40:03 +1100298 if (cp == end) {
Damien Miller33804262001-02-04 23:20:18 +1100299 error("Empty quotes");
Damien Millerd7686fd2001-02-10 00:40:03 +1100300 goto fail;
Damien Miller33804262001-02-04 23:20:18 +1100301 }
Damien Millerd7686fd2001-02-10 00:40:03 +1100302 *cpp = end + 1 + strspn(end + 1, WHITESPACE);
303 } else {
304 /* Read to end of filename */
305 end = strpbrk(cp, WHITESPACE);
306 if (end == NULL)
307 end = strchr(cp, '\0');
308 *cpp = end + strspn(end, WHITESPACE);
Damien Miller33804262001-02-04 23:20:18 +1100309 }
310
Damien Millerd7686fd2001-02-10 00:40:03 +1100311 i = end - cp;
Damien Miller33804262001-02-04 23:20:18 +1100312
313 *path = xmalloc(i + 1);
314 memcpy(*path, cp, i);
315 (*path)[i] = '\0';
Damien Miller33804262001-02-04 23:20:18 +1100316 return(0);
Damien Millerd7686fd2001-02-10 00:40:03 +1100317
318 fail:
319 *path = NULL;
320 return (-1);
Damien Miller33804262001-02-04 23:20:18 +1100321}
322
Ben Lindstrombba81212001-06-25 05:01:22 +0000323static int
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000324is_dir(char *path)
Damien Miller33804262001-02-04 23:20:18 +1100325{
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000326 struct stat sb;
Damien Miller33804262001-02-04 23:20:18 +1100327
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000328 /* XXX: report errors? */
329 if (stat(path, &sb) == -1)
Damien Miller33804262001-02-04 23:20:18 +1100330 return(0);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000331
332 return(sb.st_mode & S_IFDIR);
333}
334
Ben Lindstrombba81212001-06-25 05:01:22 +0000335static int
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000336remote_is_dir(int in, int out, char *path)
337{
338 Attrib *a;
339
340 /* XXX: report errors? */
341 if ((a = do_stat(in, out, path, 1)) == NULL)
342 return(0);
343 if (!(a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS))
344 return(0);
345 return(a->perm & S_IFDIR);
346}
347
Ben Lindstrombba81212001-06-25 05:01:22 +0000348static int
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000349process_get(int in, int out, char *src, char *dst, char *pwd, int pflag)
350{
351 char *abs_src = NULL;
352 char *abs_dst = NULL;
353 char *tmp;
354 glob_t g;
355 int err = 0;
356 int i;
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000357
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000358 abs_src = xstrdup(src);
359 abs_src = make_absolute(abs_src, pwd);
360
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000361 memset(&g, 0, sizeof(g));
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000362 debug3("Looking up %s", abs_src);
363 if (remote_glob(in, out, abs_src, 0, NULL, &g)) {
364 error("File \"%s\" not found.", abs_src);
365 err = -1;
366 goto out;
Damien Miller33804262001-02-04 23:20:18 +1100367 }
368
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000369 /* Only one match, dst may be file, directory or unspecified */
370 if (g.gl_pathv[0] && g.gl_matchc == 1) {
371 if (dst) {
372 /* If directory specified, append filename */
373 if (is_dir(dst)) {
374 if (infer_path(g.gl_pathv[0], &tmp)) {
375 err = 1;
376 goto out;
377 }
378 abs_dst = path_append(dst, tmp);
379 xfree(tmp);
380 } else
381 abs_dst = xstrdup(dst);
382 } else if (infer_path(g.gl_pathv[0], &abs_dst)) {
383 err = -1;
384 goto out;
385 }
386 printf("Fetching %s to %s\n", g.gl_pathv[0], abs_dst);
Damien Miller8829d362002-02-08 22:04:05 +1100387 err = do_download(in, out, g.gl_pathv[0], abs_dst, pflag,
388 copy_buffer_len);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000389 goto out;
Damien Miller33804262001-02-04 23:20:18 +1100390 }
391
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000392 /* Multiple matches, dst may be directory or unspecified */
393 if (dst && !is_dir(dst)) {
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000394 error("Multiple files match, but \"%s\" is not a directory",
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000395 dst);
396 err = -1;
397 goto out;
398 }
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000399
Damien Miller9f0f5c62001-12-21 14:45:46 +1100400 for (i = 0; g.gl_pathv[i]; i++) {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000401 if (infer_path(g.gl_pathv[i], &tmp)) {
402 err = -1;
403 goto out;
404 }
405 if (dst) {
406 abs_dst = path_append(dst, tmp);
407 xfree(tmp);
408 } else
409 abs_dst = tmp;
410
411 printf("Fetching %s to %s\n", g.gl_pathv[i], abs_dst);
Damien Miller8829d362002-02-08 22:04:05 +1100412 if (do_download(in, out, g.gl_pathv[i], abs_dst, pflag,
413 copy_buffer_len) == -1)
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000414 err = -1;
415 xfree(abs_dst);
416 abs_dst = NULL;
417 }
418
419out:
420 xfree(abs_src);
421 if (abs_dst)
422 xfree(abs_dst);
423 globfree(&g);
424 return(err);
425}
426
Ben Lindstrombba81212001-06-25 05:01:22 +0000427static int
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000428process_put(int in, int out, char *src, char *dst, char *pwd, int pflag)
429{
430 char *tmp_dst = NULL;
431 char *abs_dst = NULL;
432 char *tmp;
433 glob_t g;
434 int err = 0;
435 int i;
436
437 if (dst) {
438 tmp_dst = xstrdup(dst);
439 tmp_dst = make_absolute(tmp_dst, pwd);
440 }
441
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000442 memset(&g, 0, sizeof(g));
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000443 debug3("Looking up %s", src);
444 if (glob(src, 0, NULL, &g)) {
445 error("File \"%s\" not found.", src);
446 err = -1;
447 goto out;
448 }
449
450 /* Only one match, dst may be file, directory or unspecified */
451 if (g.gl_pathv[0] && g.gl_matchc == 1) {
452 if (tmp_dst) {
453 /* If directory specified, append filename */
454 if (remote_is_dir(in, out, tmp_dst)) {
455 if (infer_path(g.gl_pathv[0], &tmp)) {
456 err = 1;
457 goto out;
458 }
459 abs_dst = path_append(tmp_dst, tmp);
460 xfree(tmp);
461 } else
462 abs_dst = xstrdup(tmp_dst);
Ben Lindstrom7527f8b2001-03-24 00:39:12 +0000463 } else {
464 if (infer_path(g.gl_pathv[0], &abs_dst)) {
465 err = -1;
466 goto out;
467 }
468 abs_dst = make_absolute(abs_dst, pwd);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000469 }
470 printf("Uploading %s to %s\n", g.gl_pathv[0], abs_dst);
Damien Miller8829d362002-02-08 22:04:05 +1100471 err = do_upload(in, out, g.gl_pathv[0], abs_dst, pflag,
472 copy_buffer_len);
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000473 goto out;
474 }
475
476 /* Multiple matches, dst may be directory or unspecified */
477 if (tmp_dst && !remote_is_dir(in, out, tmp_dst)) {
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000478 error("Multiple files match, but \"%s\" is not a directory",
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000479 tmp_dst);
480 err = -1;
481 goto out;
482 }
483
Damien Miller9f0f5c62001-12-21 14:45:46 +1100484 for (i = 0; g.gl_pathv[i]; i++) {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000485 if (infer_path(g.gl_pathv[i], &tmp)) {
486 err = -1;
487 goto out;
488 }
489 if (tmp_dst) {
490 abs_dst = path_append(tmp_dst, tmp);
491 xfree(tmp);
492 } else
493 abs_dst = make_absolute(tmp, pwd);
494
495 printf("Uploading %s to %s\n", g.gl_pathv[i], abs_dst);
Damien Miller8829d362002-02-08 22:04:05 +1100496 if (do_upload(in, out, g.gl_pathv[i], abs_dst, pflag,
497 copy_buffer_len) == -1)
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000498 err = -1;
499 }
500
501out:
502 if (abs_dst)
503 xfree(abs_dst);
504 if (tmp_dst)
505 xfree(tmp_dst);
506 return(err);
Damien Miller33804262001-02-04 23:20:18 +1100507}
508
Ben Lindstrombba81212001-06-25 05:01:22 +0000509static int
Damien Miller33804262001-02-04 23:20:18 +1100510parse_args(const char **cpp, int *pflag, unsigned long *n_arg,
511 char **path1, char **path2)
512{
513 const char *cmd, *cp = *cpp;
Ben Lindstrom66904942001-02-15 03:19:56 +0000514 char *cp2;
Kevin Steves62c45db2001-02-05 13:42:43 +0000515 int base = 0;
Ben Lindstrom66904942001-02-15 03:19:56 +0000516 long l;
Damien Miller33804262001-02-04 23:20:18 +1100517 int i, cmdnum;
518
519 /* Skip leading whitespace */
520 cp = cp + strspn(cp, WHITESPACE);
521
522 /* Ignore blank lines */
523 if (!*cp)
524 return(-1);
525
526 /* Figure out which command we have */
Damien Miller9f0f5c62001-12-21 14:45:46 +1100527 for (i = 0; cmds[i].c; i++) {
Damien Miller33804262001-02-04 23:20:18 +1100528 int cmdlen = strlen(cmds[i].c);
529
530 /* Check for command followed by whitespace */
531 if (!strncasecmp(cp, cmds[i].c, cmdlen) &&
532 strchr(WHITESPACE, cp[cmdlen])) {
533 cp += cmdlen;
534 cp = cp + strspn(cp, WHITESPACE);
535 break;
536 }
537 }
538 cmdnum = cmds[i].n;
539 cmd = cmds[i].c;
540
541 /* Special case */
542 if (*cp == '!') {
543 cp++;
544 cmdnum = I_SHELL;
545 } else if (cmdnum == -1) {
546 error("Invalid command.");
547 return(-1);
548 }
549
550 /* Get arguments and parse flags */
551 *pflag = *n_arg = 0;
552 *path1 = *path2 = NULL;
553 switch (cmdnum) {
554 case I_GET:
555 case I_PUT:
556 if (parse_getput_flags(&cp, pflag))
557 return(-1);
558 /* Get first pathname (mandatory) */
559 if (get_pathname(&cp, path1))
560 return(-1);
561 if (*path1 == NULL) {
562 error("You must specify at least one path after a "
563 "%s command.", cmd);
564 return(-1);
565 }
566 /* Try to get second pathname (optional) */
567 if (get_pathname(&cp, path2))
568 return(-1);
Damien Miller33804262001-02-04 23:20:18 +1100569 break;
570 case I_RENAME:
Damien Miller058316f2001-03-08 10:08:49 +1100571 case I_SYMLINK:
Damien Miller33804262001-02-04 23:20:18 +1100572 if (get_pathname(&cp, path1))
573 return(-1);
574 if (get_pathname(&cp, path2))
575 return(-1);
576 if (!*path1 || !*path2) {
577 error("You must specify two paths after a %s "
578 "command.", cmd);
579 return(-1);
580 }
581 break;
582 case I_RM:
583 case I_MKDIR:
584 case I_RMDIR:
585 case I_CHDIR:
586 case I_LCHDIR:
587 case I_LMKDIR:
588 /* Get pathname (mandatory) */
589 if (get_pathname(&cp, path1))
590 return(-1);
591 if (*path1 == NULL) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000592 error("You must specify a path after a %s command.",
Damien Miller33804262001-02-04 23:20:18 +1100593 cmd);
594 return(-1);
595 }
596 break;
597 case I_LS:
598 /* Path is optional */
599 if (get_pathname(&cp, path1))
600 return(-1);
601 break;
602 case I_LLS:
603 case I_SHELL:
604 /* Uses the rest of the line */
605 break;
606 case I_LUMASK:
Ben Lindstrom66904942001-02-15 03:19:56 +0000607 base = 8;
Damien Miller33804262001-02-04 23:20:18 +1100608 case I_CHMOD:
Kevin Steves62c45db2001-02-05 13:42:43 +0000609 base = 8;
Damien Miller33804262001-02-04 23:20:18 +1100610 case I_CHOWN:
611 case I_CHGRP:
612 /* Get numeric arg (mandatory) */
Ben Lindstrom66904942001-02-15 03:19:56 +0000613 l = strtol(cp, &cp2, base);
614 if (cp2 == cp || ((l == LONG_MIN || l == LONG_MAX) &&
615 errno == ERANGE) || l < 0) {
Damien Miller33804262001-02-04 23:20:18 +1100616 error("You must supply a numeric argument "
617 "to the %s command.", cmd);
618 return(-1);
619 }
Ben Lindstrom66904942001-02-15 03:19:56 +0000620 cp = cp2;
621 *n_arg = l;
622 if (cmdnum == I_LUMASK && strchr(WHITESPACE, *cp))
623 break;
624 if (cmdnum == I_LUMASK || !strchr(WHITESPACE, *cp)) {
Damien Miller33804262001-02-04 23:20:18 +1100625 error("You must supply a numeric argument "
626 "to the %s command.", cmd);
627 return(-1);
628 }
629 cp += strspn(cp, WHITESPACE);
630
631 /* Get pathname (mandatory) */
632 if (get_pathname(&cp, path1))
633 return(-1);
634 if (*path1 == NULL) {
Kevin Stevesef4eea92001-02-05 12:42:17 +0000635 error("You must specify a path after a %s command.",
Damien Miller33804262001-02-04 23:20:18 +1100636 cmd);
637 return(-1);
638 }
639 break;
640 case I_QUIT:
641 case I_PWD:
642 case I_LPWD:
643 case I_HELP:
Ben Lindstromf78682d2001-03-14 21:26:27 +0000644 case I_VERSION:
Damien Miller33804262001-02-04 23:20:18 +1100645 break;
646 default:
647 fatal("Command not implemented");
648 }
649
650 *cpp = cp;
Damien Miller33804262001-02-04 23:20:18 +1100651 return(cmdnum);
652}
653
Ben Lindstrombba81212001-06-25 05:01:22 +0000654static int
Damien Miller33804262001-02-04 23:20:18 +1100655parse_dispatch_command(int in, int out, const char *cmd, char **pwd)
656{
Damien Millerd7686fd2001-02-10 00:40:03 +1100657 char *path1, *path2, *tmp;
Damien Miller4870afd2001-03-14 10:27:09 +1100658 int pflag, cmdnum, i;
Damien Miller33804262001-02-04 23:20:18 +1100659 unsigned long n_arg;
660 Attrib a, *aa;
Ben Lindstrom0a7e3542001-02-15 03:50:49 +0000661 char path_buf[MAXPATHLEN];
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000662 int err = 0;
Damien Miller4870afd2001-03-14 10:27:09 +1100663 glob_t g;
Damien Miller33804262001-02-04 23:20:18 +1100664
665 path1 = path2 = NULL;
666 cmdnum = parse_args(&cmd, &pflag, &n_arg, &path1, &path2);
667
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000668 memset(&g, 0, sizeof(g));
669
Damien Miller33804262001-02-04 23:20:18 +1100670 /* Perform command */
671 switch (cmdnum) {
672 case -1:
673 break;
674 case I_GET:
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000675 err = process_get(in, out, path1, path2, *pwd, pflag);
Damien Miller33804262001-02-04 23:20:18 +1100676 break;
677 case I_PUT:
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000678 err = process_put(in, out, path1, path2, *pwd, pflag);
Ben Lindstroma3700052001-04-05 23:26:32 +0000679 break;
680 case I_RENAME:
Damien Miller33804262001-02-04 23:20:18 +1100681 path1 = make_absolute(path1, *pwd);
682 path2 = make_absolute(path2, *pwd);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000683 err = do_rename(in, out, path1, path2);
Damien Miller33804262001-02-04 23:20:18 +1100684 break;
Damien Miller058316f2001-03-08 10:08:49 +1100685 case I_SYMLINK:
686 if (version < 3) {
687 error("The server (version %d) does not support "
688 "this operation", version);
689 err = -1;
690 } else {
691 path2 = make_absolute(path2, *pwd);
692 err = do_symlink(in, out, path1, path2);
693 }
694 break;
Damien Miller33804262001-02-04 23:20:18 +1100695 case I_RM:
696 path1 = make_absolute(path1, *pwd);
Damien Miller4870afd2001-03-14 10:27:09 +1100697 remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100698 for (i = 0; g.gl_pathv[i]; i++) {
Damien Miller4870afd2001-03-14 10:27:09 +1100699 printf("Removing %s\n", g.gl_pathv[i]);
700 if (do_rm(in, out, g.gl_pathv[i]) == -1)
701 err = -1;
702 }
Damien Miller33804262001-02-04 23:20:18 +1100703 break;
704 case I_MKDIR:
705 path1 = make_absolute(path1, *pwd);
706 attrib_clear(&a);
707 a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
708 a.perm = 0777;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000709 err = do_mkdir(in, out, path1, &a);
Damien Miller33804262001-02-04 23:20:18 +1100710 break;
711 case I_RMDIR:
712 path1 = make_absolute(path1, *pwd);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000713 err = do_rmdir(in, out, path1);
Damien Miller33804262001-02-04 23:20:18 +1100714 break;
715 case I_CHDIR:
716 path1 = make_absolute(path1, *pwd);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000717 if ((tmp = do_realpath(in, out, path1)) == NULL) {
718 err = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100719 break;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000720 }
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000721 if ((aa = do_stat(in, out, tmp, 0)) == NULL) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100722 xfree(tmp);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000723 err = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100724 break;
725 }
726 if (!(aa->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)) {
727 error("Can't change directory: Can't check target");
728 xfree(tmp);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000729 err = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100730 break;
731 }
732 if (!S_ISDIR(aa->perm)) {
733 error("Can't change directory: \"%s\" is not "
734 "a directory", tmp);
735 xfree(tmp);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000736 err = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100737 break;
738 }
Damien Miller33804262001-02-04 23:20:18 +1100739 xfree(*pwd);
Damien Millerd7686fd2001-02-10 00:40:03 +1100740 *pwd = tmp;
Damien Miller33804262001-02-04 23:20:18 +1100741 break;
742 case I_LS:
Damien Millerd7686fd2001-02-10 00:40:03 +1100743 if (!path1) {
744 do_ls(in, out, *pwd);
745 break;
746 }
Damien Miller33804262001-02-04 23:20:18 +1100747 path1 = make_absolute(path1, *pwd);
Damien Millerd7686fd2001-02-10 00:40:03 +1100748 if ((tmp = do_realpath(in, out, path1)) == NULL)
749 break;
750 xfree(path1);
751 path1 = tmp;
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000752 if ((aa = do_stat(in, out, path1, 0)) == NULL)
Damien Millerd7686fd2001-02-10 00:40:03 +1100753 break;
Ben Lindstrom5df2ffa2001-03-17 00:36:17 +0000754 if ((aa->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) &&
Damien Millerd7686fd2001-02-10 00:40:03 +1100755 !S_ISDIR(aa->perm)) {
756 error("Can't ls: \"%s\" is not a directory", path1);
757 break;
758 }
759 do_ls(in, out, path1);
Damien Miller33804262001-02-04 23:20:18 +1100760 break;
761 case I_LCHDIR:
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000762 if (chdir(path1) == -1) {
Damien Miller33804262001-02-04 23:20:18 +1100763 error("Couldn't change local directory to "
764 "\"%s\": %s", path1, strerror(errno));
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000765 err = 1;
766 }
Damien Miller33804262001-02-04 23:20:18 +1100767 break;
768 case I_LMKDIR:
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000769 if (mkdir(path1, 0777) == -1) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100770 error("Couldn't create local directory "
Damien Miller33804262001-02-04 23:20:18 +1100771 "\"%s\": %s", path1, strerror(errno));
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000772 err = 1;
773 }
Damien Miller33804262001-02-04 23:20:18 +1100774 break;
775 case I_LLS:
776 local_do_ls(cmd);
777 break;
778 case I_SHELL:
779 local_do_shell(cmd);
780 break;
781 case I_LUMASK:
782 umask(n_arg);
Ben Lindstrom66904942001-02-15 03:19:56 +0000783 printf("Local umask: %03lo\n", n_arg);
Damien Miller33804262001-02-04 23:20:18 +1100784 break;
785 case I_CHMOD:
786 path1 = make_absolute(path1, *pwd);
787 attrib_clear(&a);
788 a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS;
789 a.perm = n_arg;
Damien Miller4870afd2001-03-14 10:27:09 +1100790 remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100791 for (i = 0; g.gl_pathv[i]; i++) {
Damien Miller4870afd2001-03-14 10:27:09 +1100792 printf("Changing mode on %s\n", g.gl_pathv[i]);
793 do_setstat(in, out, g.gl_pathv[i], &a);
794 }
Kevin Steves62c45db2001-02-05 13:42:43 +0000795 break;
Damien Miller33804262001-02-04 23:20:18 +1100796 case I_CHOWN:
797 path1 = make_absolute(path1, *pwd);
Damien Miller4870afd2001-03-14 10:27:09 +1100798 remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100799 for (i = 0; g.gl_pathv[i]; i++) {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000800 if (!(aa = do_stat(in, out, g.gl_pathv[i], 0)))
Damien Miller4870afd2001-03-14 10:27:09 +1100801 continue;
802 if (!(aa->flags & SSH2_FILEXFER_ATTR_UIDGID)) {
803 error("Can't get current ownership of "
804 "remote file \"%s\"", g.gl_pathv[i]);
805 continue;
806 }
807 printf("Changing owner on %s\n", g.gl_pathv[i]);
808 aa->flags &= SSH2_FILEXFER_ATTR_UIDGID;
809 aa->uid = n_arg;
810 do_setstat(in, out, g.gl_pathv[i], aa);
Damien Miller33804262001-02-04 23:20:18 +1100811 }
Damien Miller33804262001-02-04 23:20:18 +1100812 break;
813 case I_CHGRP:
814 path1 = make_absolute(path1, *pwd);
Damien Miller4870afd2001-03-14 10:27:09 +1100815 remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g);
Damien Miller9f0f5c62001-12-21 14:45:46 +1100816 for (i = 0; g.gl_pathv[i]; i++) {
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000817 if (!(aa = do_stat(in, out, g.gl_pathv[i], 0)))
Damien Miller4870afd2001-03-14 10:27:09 +1100818 continue;
819 if (!(aa->flags & SSH2_FILEXFER_ATTR_UIDGID)) {
820 error("Can't get current ownership of "
821 "remote file \"%s\"", g.gl_pathv[i]);
822 continue;
823 }
824 printf("Changing group on %s\n", g.gl_pathv[i]);
825 aa->flags &= SSH2_FILEXFER_ATTR_UIDGID;
826 aa->gid = n_arg;
827 do_setstat(in, out, g.gl_pathv[i], aa);
Damien Miller33804262001-02-04 23:20:18 +1100828 }
Damien Miller33804262001-02-04 23:20:18 +1100829 break;
830 case I_PWD:
831 printf("Remote working directory: %s\n", *pwd);
832 break;
833 case I_LPWD:
834 if (!getcwd(path_buf, sizeof(path_buf)))
Ben Lindstrom6df8ef42001-03-05 07:47:23 +0000835 error("Couldn't get local cwd: %s",
Damien Miller33804262001-02-04 23:20:18 +1100836 strerror(errno));
837 else
838 printf("Local working directory: %s\n",
839 path_buf);
840 break;
841 case I_QUIT:
842 return(-1);
843 case I_HELP:
844 help();
845 break;
Ben Lindstromf78682d2001-03-14 21:26:27 +0000846 case I_VERSION:
847 printf("SFTP protocol version %d\n", version);
848 break;
Damien Miller33804262001-02-04 23:20:18 +1100849 default:
850 fatal("%d is not implemented", cmdnum);
851 }
852
Ben Lindstromc8d1c302001-03-17 00:34:46 +0000853 if (g.gl_pathc)
854 globfree(&g);
Damien Miller33804262001-02-04 23:20:18 +1100855 if (path1)
856 xfree(path1);
857 if (path2)
858 xfree(path2);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000859
860 /* If an error occurs in batch mode we should abort. */
861 if (infile != stdin && err > 0)
862 return -1;
863
Damien Miller33804262001-02-04 23:20:18 +1100864 return(0);
865}
866
867void
Ben Lindstrom63667f62001-04-13 00:00:14 +0000868interactive_loop(int fd_in, int fd_out, char *file1, char *file2)
Damien Miller33804262001-02-04 23:20:18 +1100869{
870 char *pwd;
Ben Lindstrom63667f62001-04-13 00:00:14 +0000871 char *dir = NULL;
Damien Miller33804262001-02-04 23:20:18 +1100872 char cmd[2048];
873
Damien Miller058316f2001-03-08 10:08:49 +1100874 version = do_init(fd_in, fd_out);
875 if (version == -1)
876 fatal("Couldn't initialise connection to server");
877
Damien Miller33804262001-02-04 23:20:18 +1100878 pwd = do_realpath(fd_in, fd_out, ".");
879 if (pwd == NULL)
880 fatal("Need cwd");
881
Ben Lindstrom63667f62001-04-13 00:00:14 +0000882 if (file1 != NULL) {
883 dir = xstrdup(file1);
884 dir = make_absolute(dir, pwd);
885
886 if (remote_is_dir(fd_in, fd_out, dir) && file2 == NULL) {
887 printf("Changing to: %s\n", dir);
888 snprintf(cmd, sizeof cmd, "cd \"%s\"", dir);
889 parse_dispatch_command(fd_in, fd_out, cmd, &pwd);
890 } else {
891 if (file2 == NULL)
892 snprintf(cmd, sizeof cmd, "get %s", dir);
893 else
894 snprintf(cmd, sizeof cmd, "get %s %s", dir,
895 file2);
896
897 parse_dispatch_command(fd_in, fd_out, cmd, &pwd);
898 return;
899 }
900 }
Ben Lindstrom6aebb342001-05-09 00:38:19 +0000901#if HAVE_SETVBUF
Damien Millerd7686fd2001-02-10 00:40:03 +1100902 setvbuf(stdout, NULL, _IOLBF, 0);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000903 setvbuf(infile, NULL, _IOLBF, 0);
Ben Lindstrom6aebb342001-05-09 00:38:19 +0000904#else
905 setlinebuf(stdout);
906 setlinebuf(infile);
907#endif
Damien Miller33804262001-02-04 23:20:18 +1100908
Damien Miller9f0f5c62001-12-21 14:45:46 +1100909 for (;;) {
Damien Miller33804262001-02-04 23:20:18 +1100910 char *cp;
911
912 printf("sftp> ");
913
914 /* XXX: use libedit */
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000915 if (fgets(cmd, sizeof(cmd), infile) == NULL) {
Damien Miller33804262001-02-04 23:20:18 +1100916 printf("\n");
917 break;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000918 } else if (infile != stdin) /* Bluff typing */
919 printf("%s", cmd);
920
Damien Miller33804262001-02-04 23:20:18 +1100921 cp = strrchr(cmd, '\n');
922 if (cp)
923 *cp = '\0';
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000924
Damien Miller33804262001-02-04 23:20:18 +1100925 if (parse_dispatch_command(fd_in, fd_out, cmd, &pwd))
926 break;
927 }
928 xfree(pwd);
929}