Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 1 | /* |
| 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 Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 25 | /* XXX: globbed ls */ |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 26 | /* XXX: recursive operations */ |
| 27 | |
| 28 | #include "includes.h" |
Ben Lindstrom | 7527f8b | 2001-03-24 00:39:12 +0000 | [diff] [blame] | 29 | RCSID("$OpenBSD: sftp-int.c,v 1.32 2001/03/23 13:10:57 markus Exp $"); |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 30 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 31 | #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 Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 38 | #include "sftp-glob.h" |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 39 | #include "sftp-client.h" |
| 40 | #include "sftp-int.h" |
| 41 | |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 42 | /* File to read commands from */ |
| 43 | extern FILE *infile; |
| 44 | |
| 45 | /* Version of server we are speaking to */ |
| 46 | int version; |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 47 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 48 | /* Seperators for interactive commands */ |
| 49 | #define WHITESPACE " \t\r\n" |
| 50 | |
| 51 | /* Commands for interactive mode */ |
| 52 | #define I_CHDIR 1 |
| 53 | #define I_CHGRP 2 |
| 54 | #define I_CHMOD 3 |
| 55 | #define I_CHOWN 4 |
| 56 | #define I_GET 5 |
| 57 | #define I_HELP 6 |
| 58 | #define I_LCHDIR 7 |
| 59 | #define I_LLS 8 |
| 60 | #define I_LMKDIR 9 |
| 61 | #define I_LPWD 10 |
| 62 | #define I_LS 11 |
| 63 | #define I_LUMASK 12 |
| 64 | #define I_MKDIR 13 |
| 65 | #define I_PUT 14 |
| 66 | #define I_PWD 15 |
| 67 | #define I_QUIT 16 |
| 68 | #define I_RENAME 17 |
| 69 | #define I_RM 18 |
| 70 | #define I_RMDIR 19 |
| 71 | #define I_SHELL 20 |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 72 | #define I_SYMLINK 21 |
Ben Lindstrom | f78682d | 2001-03-14 21:26:27 +0000 | [diff] [blame] | 73 | #define I_VERSION 22 |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 74 | |
| 75 | struct CMD { |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 76 | const char *c; |
Kevin Steves | 62c45db | 2001-02-05 13:42:43 +0000 | [diff] [blame] | 77 | const int n; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | const struct CMD cmds[] = { |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 81 | { "cd", I_CHDIR }, |
| 82 | { "chdir", I_CHDIR }, |
| 83 | { "chgrp", I_CHGRP }, |
| 84 | { "chmod", I_CHMOD }, |
| 85 | { "chown", I_CHOWN }, |
| 86 | { "dir", I_LS }, |
| 87 | { "exit", I_QUIT }, |
| 88 | { "get", I_GET }, |
| 89 | { "help", I_HELP }, |
| 90 | { "lcd", I_LCHDIR }, |
| 91 | { "lchdir", I_LCHDIR }, |
| 92 | { "lls", I_LLS }, |
| 93 | { "lmkdir", I_LMKDIR }, |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 94 | { "ln", I_SYMLINK }, |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 95 | { "lpwd", I_LPWD }, |
| 96 | { "ls", I_LS }, |
| 97 | { "lumask", I_LUMASK }, |
| 98 | { "mkdir", I_MKDIR }, |
| 99 | { "put", I_PUT }, |
| 100 | { "pwd", I_PWD }, |
| 101 | { "quit", I_QUIT }, |
| 102 | { "rename", I_RENAME }, |
| 103 | { "rm", I_RM }, |
| 104 | { "rmdir", I_RMDIR }, |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 105 | { "symlink", I_SYMLINK }, |
Ben Lindstrom | f78682d | 2001-03-14 21:26:27 +0000 | [diff] [blame] | 106 | { "version", I_VERSION }, |
Kevin Steves | 62c45db | 2001-02-05 13:42:43 +0000 | [diff] [blame] | 107 | { "!", I_SHELL }, |
| 108 | { "?", I_HELP }, |
| 109 | { NULL, -1} |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | void |
| 113 | help(void) |
| 114 | { |
| 115 | printf("Available commands:\n"); |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 116 | printf("cd path Change remote directory to 'path'\n"); |
| 117 | printf("lcd path Change local directory to 'path'\n"); |
| 118 | printf("chgrp grp path Change group of file 'path' to 'grp'\n"); |
| 119 | printf("chmod mode path Change permissions of file 'path' to 'mode'\n"); |
| 120 | printf("chown own path Change owner of file 'path' to 'own'\n"); |
| 121 | printf("help Display this help text\n"); |
| 122 | printf("get remote-path [local-path] Download file\n"); |
| 123 | printf("lls [ls-options [path]] Display local directory listing\n"); |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 124 | printf("ln oldpath newpath Symlink remote file\n"); |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 125 | printf("lmkdir path Create local directory\n"); |
| 126 | printf("lpwd Print local working directory\n"); |
| 127 | printf("ls [path] Display remote directory listing\n"); |
| 128 | printf("lumask umask Set local umask to 'umask'\n"); |
| 129 | printf("mkdir path Create remote directory\n"); |
| 130 | printf("put local-path [remote-path] Upload file\n"); |
| 131 | printf("pwd Display remote working directory\n"); |
| 132 | printf("exit Quit sftp\n"); |
| 133 | printf("quit Quit sftp\n"); |
| 134 | printf("rename oldpath newpath Rename remote file\n"); |
| 135 | printf("rmdir path Remove remote directory\n"); |
| 136 | printf("rm path Delete remote file\n"); |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 137 | printf("symlink oldpath newpath Symlink remote file\n"); |
Ben Lindstrom | f78682d | 2001-03-14 21:26:27 +0000 | [diff] [blame] | 138 | printf("version Show SFTP version\n"); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 139 | printf("!command Execute 'command' in local shell\n"); |
| 140 | printf("! Escape to local shell\n"); |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 141 | printf("? Synonym for help\n"); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 142 | } |
| 143 | |
| 144 | void |
| 145 | local_do_shell(const char *args) |
| 146 | { |
| 147 | int ret, status; |
| 148 | char *shell; |
| 149 | pid_t pid; |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 150 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 151 | if (!*args) |
| 152 | args = NULL; |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 153 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 154 | if ((shell = getenv("SHELL")) == NULL) |
| 155 | shell = _PATH_BSHELL; |
| 156 | |
| 157 | if ((pid = fork()) == -1) |
| 158 | fatal("Couldn't fork: %s", strerror(errno)); |
| 159 | |
| 160 | if (pid == 0) { |
| 161 | /* XXX: child has pipe fds to ssh subproc open - issue? */ |
| 162 | if (args) { |
| 163 | debug3("Executing %s -c \"%s\"", shell, args); |
| 164 | ret = execl(shell, shell, "-c", args, NULL); |
| 165 | } else { |
| 166 | debug3("Executing %s", shell); |
| 167 | ret = execl(shell, shell, NULL); |
| 168 | } |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 169 | fprintf(stderr, "Couldn't execute \"%s\": %s\n", shell, |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 170 | strerror(errno)); |
| 171 | _exit(1); |
| 172 | } |
| 173 | if (waitpid(pid, &status, 0) == -1) |
| 174 | fatal("Couldn't wait for child: %s", strerror(errno)); |
| 175 | if (!WIFEXITED(status)) |
| 176 | error("Shell exited abormally"); |
| 177 | else if (WEXITSTATUS(status)) |
| 178 | error("Shell exited with status %d", WEXITSTATUS(status)); |
| 179 | } |
| 180 | |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 181 | void |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 182 | local_do_ls(const char *args) |
| 183 | { |
| 184 | if (!args || !*args) |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 185 | local_do_shell(_PATH_LS); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 186 | else { |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 187 | int len = strlen(_PATH_LS " ") + strlen(args) + 1; |
| 188 | char *buf = xmalloc(len); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 189 | |
| 190 | /* XXX: quoting - rip quoting code from ftp? */ |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 191 | snprintf(buf, len, _PATH_LS " %s", args); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 192 | local_do_shell(buf); |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 193 | xfree(buf); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 194 | } |
| 195 | } |
| 196 | |
| 197 | char * |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 198 | path_append(char *p1, char *p2) |
| 199 | { |
| 200 | char *ret; |
Ben Lindstrom | cf00df6 | 2001-03-17 00:37:31 +0000 | [diff] [blame] | 201 | int len = strlen(p1) + strlen(p2) + 2; |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 202 | |
Ben Lindstrom | cf00df6 | 2001-03-17 00:37:31 +0000 | [diff] [blame] | 203 | ret = xmalloc(len); |
| 204 | strlcpy(ret, p1, len); |
| 205 | strlcat(ret, "/", len); |
| 206 | strlcat(ret, p2, len); |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 207 | |
| 208 | return(ret); |
| 209 | } |
| 210 | |
| 211 | char * |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 212 | make_absolute(char *p, char *pwd) |
| 213 | { |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 214 | char *abs; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 215 | |
| 216 | /* Derelativise */ |
| 217 | if (p && p[0] != '/') { |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 218 | abs = path_append(pwd, p); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 219 | xfree(p); |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 220 | return(abs); |
| 221 | } else |
| 222 | return(p); |
| 223 | } |
| 224 | |
| 225 | int |
| 226 | infer_path(const char *p, char **ifp) |
| 227 | { |
| 228 | char *cp; |
| 229 | |
| 230 | cp = strrchr(p, '/'); |
| 231 | if (cp == NULL) { |
| 232 | *ifp = xstrdup(p); |
| 233 | return(0); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 234 | } |
| 235 | |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 236 | if (!cp[1]) { |
| 237 | error("Invalid path"); |
| 238 | return(-1); |
| 239 | } |
| 240 | |
| 241 | *ifp = xstrdup(cp + 1); |
| 242 | return(0); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 243 | } |
| 244 | |
| 245 | int |
| 246 | parse_getput_flags(const char **cpp, int *pflag) |
| 247 | { |
| 248 | const char *cp = *cpp; |
| 249 | |
| 250 | /* Check for flags */ |
| 251 | if (cp[0] == '-' && cp[1] && strchr(WHITESPACE, cp[2])) { |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 252 | switch (cp[1]) { |
Ben Lindstrom | 9d4f2c8 | 2001-02-15 03:22:45 +0000 | [diff] [blame] | 253 | case 'p': |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 254 | case 'P': |
| 255 | *pflag = 1; |
| 256 | break; |
| 257 | default: |
Ben Lindstrom | 9d4f2c8 | 2001-02-15 03:22:45 +0000 | [diff] [blame] | 258 | error("Invalid flag -%c", cp[1]); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 259 | return(-1); |
| 260 | } |
| 261 | cp += 2; |
| 262 | *cpp = cp + strspn(cp, WHITESPACE); |
| 263 | } |
| 264 | |
| 265 | return(0); |
| 266 | } |
| 267 | |
| 268 | int |
| 269 | get_pathname(const char **cpp, char **path) |
| 270 | { |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 271 | const char *cp = *cpp, *end; |
| 272 | char quot; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 273 | int i; |
| 274 | |
| 275 | cp += strspn(cp, WHITESPACE); |
| 276 | if (!*cp) { |
| 277 | *cpp = cp; |
| 278 | *path = NULL; |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 279 | return (0); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 280 | } |
| 281 | |
| 282 | /* Check for quoted filenames */ |
| 283 | if (*cp == '\"' || *cp == '\'') { |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 284 | quot = *cp++; |
Ben Lindstrom | 5df2ffa | 2001-03-17 00:36:17 +0000 | [diff] [blame] | 285 | |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 286 | end = strchr(cp, quot); |
| 287 | if (end == NULL) { |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 288 | error("Unterminated quote"); |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 289 | goto fail; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 290 | } |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 291 | if (cp == end) { |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 292 | error("Empty quotes"); |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 293 | goto fail; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 294 | } |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 295 | *cpp = end + 1 + strspn(end + 1, WHITESPACE); |
| 296 | } else { |
| 297 | /* Read to end of filename */ |
| 298 | end = strpbrk(cp, WHITESPACE); |
| 299 | if (end == NULL) |
| 300 | end = strchr(cp, '\0'); |
| 301 | *cpp = end + strspn(end, WHITESPACE); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 302 | } |
| 303 | |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 304 | i = end - cp; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 305 | |
| 306 | *path = xmalloc(i + 1); |
| 307 | memcpy(*path, cp, i); |
| 308 | (*path)[i] = '\0'; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 309 | return(0); |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 310 | |
| 311 | fail: |
| 312 | *path = NULL; |
| 313 | return (-1); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | int |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 317 | is_dir(char *path) |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 318 | { |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 319 | struct stat sb; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 320 | |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 321 | /* XXX: report errors? */ |
| 322 | if (stat(path, &sb) == -1) |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 323 | return(0); |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 324 | |
| 325 | return(sb.st_mode & S_IFDIR); |
| 326 | } |
| 327 | |
| 328 | int |
| 329 | remote_is_dir(int in, int out, char *path) |
| 330 | { |
| 331 | Attrib *a; |
| 332 | |
| 333 | /* XXX: report errors? */ |
| 334 | if ((a = do_stat(in, out, path, 1)) == NULL) |
| 335 | return(0); |
| 336 | if (!(a->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)) |
| 337 | return(0); |
| 338 | return(a->perm & S_IFDIR); |
| 339 | } |
| 340 | |
| 341 | int |
| 342 | process_get(int in, int out, char *src, char *dst, char *pwd, int pflag) |
| 343 | { |
| 344 | char *abs_src = NULL; |
| 345 | char *abs_dst = NULL; |
| 346 | char *tmp; |
| 347 | glob_t g; |
| 348 | int err = 0; |
| 349 | int i; |
Ben Lindstrom | 5df2ffa | 2001-03-17 00:36:17 +0000 | [diff] [blame] | 350 | |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 351 | abs_src = xstrdup(src); |
| 352 | abs_src = make_absolute(abs_src, pwd); |
| 353 | |
Ben Lindstrom | 5df2ffa | 2001-03-17 00:36:17 +0000 | [diff] [blame] | 354 | memset(&g, 0, sizeof(g)); |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 355 | debug3("Looking up %s", abs_src); |
| 356 | if (remote_glob(in, out, abs_src, 0, NULL, &g)) { |
| 357 | error("File \"%s\" not found.", abs_src); |
| 358 | err = -1; |
| 359 | goto out; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 360 | } |
| 361 | |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 362 | /* Only one match, dst may be file, directory or unspecified */ |
| 363 | if (g.gl_pathv[0] && g.gl_matchc == 1) { |
| 364 | if (dst) { |
| 365 | /* If directory specified, append filename */ |
| 366 | if (is_dir(dst)) { |
| 367 | if (infer_path(g.gl_pathv[0], &tmp)) { |
| 368 | err = 1; |
| 369 | goto out; |
| 370 | } |
| 371 | abs_dst = path_append(dst, tmp); |
| 372 | xfree(tmp); |
| 373 | } else |
| 374 | abs_dst = xstrdup(dst); |
| 375 | } else if (infer_path(g.gl_pathv[0], &abs_dst)) { |
| 376 | err = -1; |
| 377 | goto out; |
| 378 | } |
| 379 | printf("Fetching %s to %s\n", g.gl_pathv[0], abs_dst); |
| 380 | err = do_download(in, out, g.gl_pathv[0], abs_dst, pflag); |
| 381 | goto out; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 382 | } |
| 383 | |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 384 | /* Multiple matches, dst may be directory or unspecified */ |
| 385 | if (dst && !is_dir(dst)) { |
Ben Lindstrom | 5df2ffa | 2001-03-17 00:36:17 +0000 | [diff] [blame] | 386 | error("Multiple files match, but \"%s\" is not a directory", |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 387 | dst); |
| 388 | err = -1; |
| 389 | goto out; |
| 390 | } |
Ben Lindstrom | 5df2ffa | 2001-03-17 00:36:17 +0000 | [diff] [blame] | 391 | |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 392 | for(i = 0; g.gl_pathv[i]; i++) { |
| 393 | if (infer_path(g.gl_pathv[i], &tmp)) { |
| 394 | err = -1; |
| 395 | goto out; |
| 396 | } |
| 397 | if (dst) { |
| 398 | abs_dst = path_append(dst, tmp); |
| 399 | xfree(tmp); |
| 400 | } else |
| 401 | abs_dst = tmp; |
| 402 | |
| 403 | printf("Fetching %s to %s\n", g.gl_pathv[i], abs_dst); |
| 404 | if (do_download(in, out, g.gl_pathv[i], abs_dst, pflag) == -1) |
| 405 | err = -1; |
| 406 | xfree(abs_dst); |
| 407 | abs_dst = NULL; |
| 408 | } |
| 409 | |
| 410 | out: |
| 411 | xfree(abs_src); |
| 412 | if (abs_dst) |
| 413 | xfree(abs_dst); |
| 414 | globfree(&g); |
| 415 | return(err); |
| 416 | } |
| 417 | |
| 418 | int |
| 419 | process_put(int in, int out, char *src, char *dst, char *pwd, int pflag) |
| 420 | { |
| 421 | char *tmp_dst = NULL; |
| 422 | char *abs_dst = NULL; |
| 423 | char *tmp; |
| 424 | glob_t g; |
| 425 | int err = 0; |
| 426 | int i; |
| 427 | |
| 428 | if (dst) { |
| 429 | tmp_dst = xstrdup(dst); |
| 430 | tmp_dst = make_absolute(tmp_dst, pwd); |
| 431 | } |
| 432 | |
Ben Lindstrom | 5df2ffa | 2001-03-17 00:36:17 +0000 | [diff] [blame] | 433 | memset(&g, 0, sizeof(g)); |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 434 | debug3("Looking up %s", src); |
| 435 | if (glob(src, 0, NULL, &g)) { |
| 436 | error("File \"%s\" not found.", src); |
| 437 | err = -1; |
| 438 | goto out; |
| 439 | } |
| 440 | |
| 441 | /* Only one match, dst may be file, directory or unspecified */ |
| 442 | if (g.gl_pathv[0] && g.gl_matchc == 1) { |
| 443 | if (tmp_dst) { |
| 444 | /* If directory specified, append filename */ |
| 445 | if (remote_is_dir(in, out, tmp_dst)) { |
| 446 | if (infer_path(g.gl_pathv[0], &tmp)) { |
| 447 | err = 1; |
| 448 | goto out; |
| 449 | } |
| 450 | abs_dst = path_append(tmp_dst, tmp); |
| 451 | xfree(tmp); |
| 452 | } else |
| 453 | abs_dst = xstrdup(tmp_dst); |
Ben Lindstrom | 7527f8b | 2001-03-24 00:39:12 +0000 | [diff] [blame] | 454 | } else { |
| 455 | if (infer_path(g.gl_pathv[0], &abs_dst)) { |
| 456 | err = -1; |
| 457 | goto out; |
| 458 | } |
| 459 | abs_dst = make_absolute(abs_dst, pwd); |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 460 | } |
| 461 | printf("Uploading %s to %s\n", g.gl_pathv[0], abs_dst); |
| 462 | err = do_upload(in, out, g.gl_pathv[0], abs_dst, pflag); |
| 463 | goto out; |
| 464 | } |
| 465 | |
| 466 | /* Multiple matches, dst may be directory or unspecified */ |
| 467 | if (tmp_dst && !remote_is_dir(in, out, tmp_dst)) { |
Ben Lindstrom | 5df2ffa | 2001-03-17 00:36:17 +0000 | [diff] [blame] | 468 | error("Multiple files match, but \"%s\" is not a directory", |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 469 | tmp_dst); |
| 470 | err = -1; |
| 471 | goto out; |
| 472 | } |
| 473 | |
| 474 | for(i = 0; g.gl_pathv[i]; i++) { |
| 475 | if (infer_path(g.gl_pathv[i], &tmp)) { |
| 476 | err = -1; |
| 477 | goto out; |
| 478 | } |
| 479 | if (tmp_dst) { |
| 480 | abs_dst = path_append(tmp_dst, tmp); |
| 481 | xfree(tmp); |
| 482 | } else |
| 483 | abs_dst = make_absolute(tmp, pwd); |
| 484 | |
| 485 | printf("Uploading %s to %s\n", g.gl_pathv[i], abs_dst); |
| 486 | if (do_upload(in, out, g.gl_pathv[i], abs_dst, pflag) == -1) |
| 487 | err = -1; |
| 488 | } |
| 489 | |
| 490 | out: |
| 491 | if (abs_dst) |
| 492 | xfree(abs_dst); |
| 493 | if (tmp_dst) |
| 494 | xfree(tmp_dst); |
| 495 | return(err); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 496 | } |
| 497 | |
| 498 | int |
| 499 | parse_args(const char **cpp, int *pflag, unsigned long *n_arg, |
| 500 | char **path1, char **path2) |
| 501 | { |
| 502 | const char *cmd, *cp = *cpp; |
Ben Lindstrom | 6690494 | 2001-02-15 03:19:56 +0000 | [diff] [blame] | 503 | char *cp2; |
Kevin Steves | 62c45db | 2001-02-05 13:42:43 +0000 | [diff] [blame] | 504 | int base = 0; |
Ben Lindstrom | 6690494 | 2001-02-15 03:19:56 +0000 | [diff] [blame] | 505 | long l; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 506 | int i, cmdnum; |
| 507 | |
| 508 | /* Skip leading whitespace */ |
| 509 | cp = cp + strspn(cp, WHITESPACE); |
| 510 | |
| 511 | /* Ignore blank lines */ |
| 512 | if (!*cp) |
| 513 | return(-1); |
| 514 | |
| 515 | /* Figure out which command we have */ |
| 516 | for(i = 0; cmds[i].c; i++) { |
| 517 | int cmdlen = strlen(cmds[i].c); |
| 518 | |
| 519 | /* Check for command followed by whitespace */ |
| 520 | if (!strncasecmp(cp, cmds[i].c, cmdlen) && |
| 521 | strchr(WHITESPACE, cp[cmdlen])) { |
| 522 | cp += cmdlen; |
| 523 | cp = cp + strspn(cp, WHITESPACE); |
| 524 | break; |
| 525 | } |
| 526 | } |
| 527 | cmdnum = cmds[i].n; |
| 528 | cmd = cmds[i].c; |
| 529 | |
| 530 | /* Special case */ |
| 531 | if (*cp == '!') { |
| 532 | cp++; |
| 533 | cmdnum = I_SHELL; |
| 534 | } else if (cmdnum == -1) { |
| 535 | error("Invalid command."); |
| 536 | return(-1); |
| 537 | } |
| 538 | |
| 539 | /* Get arguments and parse flags */ |
| 540 | *pflag = *n_arg = 0; |
| 541 | *path1 = *path2 = NULL; |
| 542 | switch (cmdnum) { |
| 543 | case I_GET: |
| 544 | case I_PUT: |
| 545 | if (parse_getput_flags(&cp, pflag)) |
| 546 | return(-1); |
| 547 | /* Get first pathname (mandatory) */ |
| 548 | if (get_pathname(&cp, path1)) |
| 549 | return(-1); |
| 550 | if (*path1 == NULL) { |
| 551 | error("You must specify at least one path after a " |
| 552 | "%s command.", cmd); |
| 553 | return(-1); |
| 554 | } |
| 555 | /* Try to get second pathname (optional) */ |
| 556 | if (get_pathname(&cp, path2)) |
| 557 | return(-1); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 558 | break; |
| 559 | case I_RENAME: |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 560 | case I_SYMLINK: |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 561 | if (get_pathname(&cp, path1)) |
| 562 | return(-1); |
| 563 | if (get_pathname(&cp, path2)) |
| 564 | return(-1); |
| 565 | if (!*path1 || !*path2) { |
| 566 | error("You must specify two paths after a %s " |
| 567 | "command.", cmd); |
| 568 | return(-1); |
| 569 | } |
| 570 | break; |
| 571 | case I_RM: |
| 572 | case I_MKDIR: |
| 573 | case I_RMDIR: |
| 574 | case I_CHDIR: |
| 575 | case I_LCHDIR: |
| 576 | case I_LMKDIR: |
| 577 | /* Get pathname (mandatory) */ |
| 578 | if (get_pathname(&cp, path1)) |
| 579 | return(-1); |
| 580 | if (*path1 == NULL) { |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 581 | error("You must specify a path after a %s command.", |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 582 | cmd); |
| 583 | return(-1); |
| 584 | } |
| 585 | break; |
| 586 | case I_LS: |
| 587 | /* Path is optional */ |
| 588 | if (get_pathname(&cp, path1)) |
| 589 | return(-1); |
| 590 | break; |
| 591 | case I_LLS: |
| 592 | case I_SHELL: |
| 593 | /* Uses the rest of the line */ |
| 594 | break; |
| 595 | case I_LUMASK: |
Ben Lindstrom | 6690494 | 2001-02-15 03:19:56 +0000 | [diff] [blame] | 596 | base = 8; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 597 | case I_CHMOD: |
Kevin Steves | 62c45db | 2001-02-05 13:42:43 +0000 | [diff] [blame] | 598 | base = 8; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 599 | case I_CHOWN: |
| 600 | case I_CHGRP: |
| 601 | /* Get numeric arg (mandatory) */ |
Ben Lindstrom | 6690494 | 2001-02-15 03:19:56 +0000 | [diff] [blame] | 602 | l = strtol(cp, &cp2, base); |
| 603 | if (cp2 == cp || ((l == LONG_MIN || l == LONG_MAX) && |
| 604 | errno == ERANGE) || l < 0) { |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 605 | error("You must supply a numeric argument " |
| 606 | "to the %s command.", cmd); |
| 607 | return(-1); |
| 608 | } |
Ben Lindstrom | 6690494 | 2001-02-15 03:19:56 +0000 | [diff] [blame] | 609 | cp = cp2; |
| 610 | *n_arg = l; |
| 611 | if (cmdnum == I_LUMASK && strchr(WHITESPACE, *cp)) |
| 612 | break; |
| 613 | if (cmdnum == I_LUMASK || !strchr(WHITESPACE, *cp)) { |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 614 | error("You must supply a numeric argument " |
| 615 | "to the %s command.", cmd); |
| 616 | return(-1); |
| 617 | } |
| 618 | cp += strspn(cp, WHITESPACE); |
| 619 | |
| 620 | /* Get pathname (mandatory) */ |
| 621 | if (get_pathname(&cp, path1)) |
| 622 | return(-1); |
| 623 | if (*path1 == NULL) { |
Kevin Steves | ef4eea9 | 2001-02-05 12:42:17 +0000 | [diff] [blame] | 624 | error("You must specify a path after a %s command.", |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 625 | cmd); |
| 626 | return(-1); |
| 627 | } |
| 628 | break; |
| 629 | case I_QUIT: |
| 630 | case I_PWD: |
| 631 | case I_LPWD: |
| 632 | case I_HELP: |
Ben Lindstrom | f78682d | 2001-03-14 21:26:27 +0000 | [diff] [blame] | 633 | case I_VERSION: |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 634 | break; |
| 635 | default: |
| 636 | fatal("Command not implemented"); |
| 637 | } |
| 638 | |
| 639 | *cpp = cp; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 640 | return(cmdnum); |
| 641 | } |
| 642 | |
| 643 | int |
| 644 | parse_dispatch_command(int in, int out, const char *cmd, char **pwd) |
| 645 | { |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 646 | char *path1, *path2, *tmp; |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 647 | int pflag, cmdnum, i; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 648 | unsigned long n_arg; |
| 649 | Attrib a, *aa; |
Ben Lindstrom | 0a7e354 | 2001-02-15 03:50:49 +0000 | [diff] [blame] | 650 | char path_buf[MAXPATHLEN]; |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 651 | int err = 0; |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 652 | glob_t g; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 653 | |
| 654 | path1 = path2 = NULL; |
| 655 | cmdnum = parse_args(&cmd, &pflag, &n_arg, &path1, &path2); |
| 656 | |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 657 | memset(&g, 0, sizeof(g)); |
| 658 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 659 | /* Perform command */ |
| 660 | switch (cmdnum) { |
| 661 | case -1: |
| 662 | break; |
| 663 | case I_GET: |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 664 | err = process_get(in, out, path1, path2, *pwd, pflag); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 665 | break; |
| 666 | case I_PUT: |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 667 | err = process_put(in, out, path1, path2, *pwd, pflag); |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 668 | break; |
| 669 | case I_RENAME: |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 670 | path1 = make_absolute(path1, *pwd); |
| 671 | path2 = make_absolute(path2, *pwd); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 672 | err = do_rename(in, out, path1, path2); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 673 | break; |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 674 | case I_SYMLINK: |
| 675 | if (version < 3) { |
| 676 | error("The server (version %d) does not support " |
| 677 | "this operation", version); |
| 678 | err = -1; |
| 679 | } else { |
| 680 | path2 = make_absolute(path2, *pwd); |
| 681 | err = do_symlink(in, out, path1, path2); |
| 682 | } |
| 683 | break; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 684 | case I_RM: |
| 685 | path1 = make_absolute(path1, *pwd); |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 686 | remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g); |
| 687 | for(i = 0; g.gl_pathv[i]; i++) { |
| 688 | printf("Removing %s\n", g.gl_pathv[i]); |
| 689 | if (do_rm(in, out, g.gl_pathv[i]) == -1) |
| 690 | err = -1; |
| 691 | } |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 692 | break; |
| 693 | case I_MKDIR: |
| 694 | path1 = make_absolute(path1, *pwd); |
| 695 | attrib_clear(&a); |
| 696 | a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS; |
| 697 | a.perm = 0777; |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 698 | err = do_mkdir(in, out, path1, &a); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 699 | break; |
| 700 | case I_RMDIR: |
| 701 | path1 = make_absolute(path1, *pwd); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 702 | err = do_rmdir(in, out, path1); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 703 | break; |
| 704 | case I_CHDIR: |
| 705 | path1 = make_absolute(path1, *pwd); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 706 | if ((tmp = do_realpath(in, out, path1)) == NULL) { |
| 707 | err = 1; |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 708 | break; |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 709 | } |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 710 | if ((aa = do_stat(in, out, tmp, 0)) == NULL) { |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 711 | xfree(tmp); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 712 | err = 1; |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 713 | break; |
| 714 | } |
| 715 | if (!(aa->flags & SSH2_FILEXFER_ATTR_PERMISSIONS)) { |
| 716 | error("Can't change directory: Can't check target"); |
| 717 | xfree(tmp); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 718 | err = 1; |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 719 | break; |
| 720 | } |
| 721 | if (!S_ISDIR(aa->perm)) { |
| 722 | error("Can't change directory: \"%s\" is not " |
| 723 | "a directory", tmp); |
| 724 | xfree(tmp); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 725 | err = 1; |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 726 | break; |
| 727 | } |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 728 | xfree(*pwd); |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 729 | *pwd = tmp; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 730 | break; |
| 731 | case I_LS: |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 732 | if (!path1) { |
| 733 | do_ls(in, out, *pwd); |
| 734 | break; |
| 735 | } |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 736 | path1 = make_absolute(path1, *pwd); |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 737 | if ((tmp = do_realpath(in, out, path1)) == NULL) |
| 738 | break; |
| 739 | xfree(path1); |
| 740 | path1 = tmp; |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 741 | if ((aa = do_stat(in, out, path1, 0)) == NULL) |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 742 | break; |
Ben Lindstrom | 5df2ffa | 2001-03-17 00:36:17 +0000 | [diff] [blame] | 743 | if ((aa->flags & SSH2_FILEXFER_ATTR_PERMISSIONS) && |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 744 | !S_ISDIR(aa->perm)) { |
| 745 | error("Can't ls: \"%s\" is not a directory", path1); |
| 746 | break; |
| 747 | } |
| 748 | do_ls(in, out, path1); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 749 | break; |
| 750 | case I_LCHDIR: |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 751 | if (chdir(path1) == -1) { |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 752 | error("Couldn't change local directory to " |
| 753 | "\"%s\": %s", path1, strerror(errno)); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 754 | err = 1; |
| 755 | } |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 756 | break; |
| 757 | case I_LMKDIR: |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 758 | if (mkdir(path1, 0777) == -1) { |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 759 | error("Couldn't create local directory " |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 760 | "\"%s\": %s", path1, strerror(errno)); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 761 | err = 1; |
| 762 | } |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 763 | break; |
| 764 | case I_LLS: |
| 765 | local_do_ls(cmd); |
| 766 | break; |
| 767 | case I_SHELL: |
| 768 | local_do_shell(cmd); |
| 769 | break; |
| 770 | case I_LUMASK: |
| 771 | umask(n_arg); |
Ben Lindstrom | 6690494 | 2001-02-15 03:19:56 +0000 | [diff] [blame] | 772 | printf("Local umask: %03lo\n", n_arg); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 773 | break; |
| 774 | case I_CHMOD: |
| 775 | path1 = make_absolute(path1, *pwd); |
| 776 | attrib_clear(&a); |
| 777 | a.flags |= SSH2_FILEXFER_ATTR_PERMISSIONS; |
| 778 | a.perm = n_arg; |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 779 | remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g); |
| 780 | for(i = 0; g.gl_pathv[i]; i++) { |
| 781 | printf("Changing mode on %s\n", g.gl_pathv[i]); |
| 782 | do_setstat(in, out, g.gl_pathv[i], &a); |
| 783 | } |
Kevin Steves | 62c45db | 2001-02-05 13:42:43 +0000 | [diff] [blame] | 784 | break; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 785 | case I_CHOWN: |
| 786 | path1 = make_absolute(path1, *pwd); |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 787 | remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g); |
| 788 | for(i = 0; g.gl_pathv[i]; i++) { |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 789 | if (!(aa = do_stat(in, out, g.gl_pathv[i], 0))) |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 790 | continue; |
| 791 | if (!(aa->flags & SSH2_FILEXFER_ATTR_UIDGID)) { |
| 792 | error("Can't get current ownership of " |
| 793 | "remote file \"%s\"", g.gl_pathv[i]); |
| 794 | continue; |
| 795 | } |
| 796 | printf("Changing owner on %s\n", g.gl_pathv[i]); |
| 797 | aa->flags &= SSH2_FILEXFER_ATTR_UIDGID; |
| 798 | aa->uid = n_arg; |
| 799 | do_setstat(in, out, g.gl_pathv[i], aa); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 800 | } |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 801 | break; |
| 802 | case I_CHGRP: |
| 803 | path1 = make_absolute(path1, *pwd); |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 804 | remote_glob(in, out, path1, GLOB_NOCHECK, NULL, &g); |
| 805 | for(i = 0; g.gl_pathv[i]; i++) { |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 806 | if (!(aa = do_stat(in, out, g.gl_pathv[i], 0))) |
Damien Miller | 4870afd | 2001-03-14 10:27:09 +1100 | [diff] [blame] | 807 | continue; |
| 808 | if (!(aa->flags & SSH2_FILEXFER_ATTR_UIDGID)) { |
| 809 | error("Can't get current ownership of " |
| 810 | "remote file \"%s\"", g.gl_pathv[i]); |
| 811 | continue; |
| 812 | } |
| 813 | printf("Changing group on %s\n", g.gl_pathv[i]); |
| 814 | aa->flags &= SSH2_FILEXFER_ATTR_UIDGID; |
| 815 | aa->gid = n_arg; |
| 816 | do_setstat(in, out, g.gl_pathv[i], aa); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 817 | } |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 818 | break; |
| 819 | case I_PWD: |
| 820 | printf("Remote working directory: %s\n", *pwd); |
| 821 | break; |
| 822 | case I_LPWD: |
| 823 | if (!getcwd(path_buf, sizeof(path_buf))) |
Ben Lindstrom | 6df8ef4 | 2001-03-05 07:47:23 +0000 | [diff] [blame] | 824 | error("Couldn't get local cwd: %s", |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 825 | strerror(errno)); |
| 826 | else |
| 827 | printf("Local working directory: %s\n", |
| 828 | path_buf); |
| 829 | break; |
| 830 | case I_QUIT: |
| 831 | return(-1); |
| 832 | case I_HELP: |
| 833 | help(); |
| 834 | break; |
Ben Lindstrom | f78682d | 2001-03-14 21:26:27 +0000 | [diff] [blame] | 835 | case I_VERSION: |
| 836 | printf("SFTP protocol version %d\n", version); |
| 837 | break; |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 838 | default: |
| 839 | fatal("%d is not implemented", cmdnum); |
| 840 | } |
| 841 | |
Ben Lindstrom | c8d1c30 | 2001-03-17 00:34:46 +0000 | [diff] [blame] | 842 | if (g.gl_pathc) |
| 843 | globfree(&g); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 844 | if (path1) |
| 845 | xfree(path1); |
| 846 | if (path2) |
| 847 | xfree(path2); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 848 | |
| 849 | /* If an error occurs in batch mode we should abort. */ |
| 850 | if (infile != stdin && err > 0) |
| 851 | return -1; |
| 852 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 853 | return(0); |
| 854 | } |
| 855 | |
| 856 | void |
| 857 | interactive_loop(int fd_in, int fd_out) |
| 858 | { |
| 859 | char *pwd; |
| 860 | char cmd[2048]; |
| 861 | |
Damien Miller | 058316f | 2001-03-08 10:08:49 +1100 | [diff] [blame] | 862 | version = do_init(fd_in, fd_out); |
| 863 | if (version == -1) |
| 864 | fatal("Couldn't initialise connection to server"); |
| 865 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 866 | pwd = do_realpath(fd_in, fd_out, "."); |
| 867 | if (pwd == NULL) |
| 868 | fatal("Need cwd"); |
| 869 | |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 870 | setvbuf(stdout, NULL, _IOLBF, 0); |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 871 | setvbuf(infile, NULL, _IOLBF, 0); |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 872 | |
| 873 | for(;;) { |
| 874 | char *cp; |
| 875 | |
| 876 | printf("sftp> "); |
| 877 | |
| 878 | /* XXX: use libedit */ |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 879 | if (fgets(cmd, sizeof(cmd), infile) == NULL) { |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 880 | printf("\n"); |
| 881 | break; |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 882 | } else if (infile != stdin) /* Bluff typing */ |
| 883 | printf("%s", cmd); |
| 884 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 885 | cp = strrchr(cmd, '\n'); |
| 886 | if (cp) |
| 887 | *cp = '\0'; |
Ben Lindstrom | 562c26b | 2001-03-07 01:26:48 +0000 | [diff] [blame] | 888 | |
Damien Miller | 3380426 | 2001-02-04 23:20:18 +1100 | [diff] [blame] | 889 | if (parse_dispatch_command(fd_in, fd_out, cmd, &pwd)) |
| 890 | break; |
| 891 | } |
| 892 | xfree(pwd); |
| 893 | } |