blob: 72558c75ac6fabe336452353d3db2e5631555d39 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Millere4340be2000-09-16 13:29:08 +11002 * scp - secure remote copy. This is basically patched BSD rcp which
3 * uses ssh to do the data transfer (instead of using rcmd).
Damien Miller4af51302000-04-16 11:18:38 +10004 *
Damien Millere4340be2000-09-16 13:29:08 +11005 * NOTE: This version should NOT be suid root. (This uses ssh to
6 * do the transfer and ssh has the necessary privileges.)
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Miller95def091999-11-25 00:26:21 +11008 * 1995 Timo Rinne <tri@iki.fi>, Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller4af51302000-04-16 11:18:38 +10009 *
Damien Millere4340be2000-09-16 13:29:08 +110010 * As far as I am concerned, the code I have written for this software
11 * can be used freely for any purpose. Any derived versions of this
12 * software must be clearly marked as such, and if the derived work is
13 * incompatible with the protocol description in the RFC file, it must be
14 * called by a name other than "ssh" or "Secure Shell".
15 */
16/*
Ben Lindstrom92a2e382001-03-05 06:59:27 +000017 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
18 * Copyright (c) 1999 Aaron Campbell. All rights reserved.
Damien Millere4340be2000-09-16 13:29:08 +110019 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions
22 * are met:
23 * 1. Redistributions of source code must retain the above copyright
24 * notice, this list of conditions and the following disclaimer.
25 * 2. Redistributions in binary form must reproduce the above copyright
26 * notice, this list of conditions and the following disclaimer in the
27 * documentation and/or other materials provided with the distribution.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
30 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
31 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
32 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
33 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
34 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
38 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
41/*
Damien Millerad833b32000-08-23 10:46:23 +100042 * Parts from:
43 *
Damien Millerd4a8b7e1999-10-27 13:42:43 +100044 * Copyright (c) 1983, 1990, 1992, 1993, 1995
45 * The Regents of the University of California. All rights reserved.
46 *
47 * Redistribution and use in source and binary forms, with or without
48 * modification, are permitted provided that the following conditions
49 * are met:
50 * 1. Redistributions of source code must retain the above copyright
51 * notice, this list of conditions and the following disclaimer.
52 * 2. Redistributions in binary form must reproduce the above copyright
53 * notice, this list of conditions and the following disclaimer in the
54 * documentation and/or other materials provided with the distribution.
Damien Millerdafb12e2003-06-03 13:06:18 +100055 * 3. Neither the name of the University nor the names of its contributors
Damien Millerd4a8b7e1999-10-27 13:42:43 +100056 * may be used to endorse or promote products derived from this software
57 * without specific prior written permission.
58 *
59 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69 * SUCH DAMAGE.
70 *
Damien Millerd4a8b7e1999-10-27 13:42:43 +100071 */
72
73#include "includes.h"
Damien Millerdafb12e2003-06-03 13:06:18 +100074RCSID("$OpenBSD: scp.c,v 1.103 2003/06/03 02:56:16 millert Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075
Damien Millerd4a8b7e1999-10-27 13:42:43 +100076#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000077#include "atomicio.h"
78#include "pathnames.h"
79#include "log.h"
Kevin Steves93c17d92001-02-18 03:55:16 +000080#include "misc.h"
Damien Miller62d57f62003-01-10 21:43:24 +110081#include "progressmeter.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100082
Ben Lindstrom49a79c02000-11-17 03:47:20 +000083#ifdef HAVE___PROGNAME
84extern char *__progname;
85#else
86char *__progname;
87#endif
88
Damien Millerff74d742003-01-24 11:36:58 +110089void bwlimit(int);
90
Ben Lindstrom387c4722001-05-08 20:27:25 +000091/* Struct for addargs */
92arglist args;
Damien Miller874d77b2000-10-14 16:23:11 +110093
Damien Millerff74d742003-01-24 11:36:58 +110094/* Bandwidth limit */
Ben Lindstromd54d9382003-03-21 00:55:32 +000095off_t limitbw = 0;
Damien Millerff74d742003-01-24 11:36:58 +110096
Damien Millerd4a8b7e1999-10-27 13:42:43 +100097/* Name of current file being transferred. */
98char *curfile;
99
100/* This is set to non-zero to enable verbose mode. */
Damien Miller95def091999-11-25 00:26:21 +1100101int verbose_mode = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103/* This is set to zero if the progressmeter is not desired. */
104int showprogress = 1;
105
Damien Millerad833b32000-08-23 10:46:23 +1000106/* This is the program to execute for the secured connection. ("ssh" or -S) */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000107char *ssh_program = _PATH_SSH_PROGRAM;
Damien Millerad833b32000-08-23 10:46:23 +1000108
Ben Lindstrom007eb912002-11-09 15:54:08 +0000109/* This is used to store the pid of ssh_program */
110pid_t do_cmd_pid;
111
Damien Miller5428f641999-11-25 11:54:57 +1100112/*
113 * This function executes the given command as the specified user on the
114 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
115 * assigns the input and output file descriptors on success.
116 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000117
Damien Miller4af51302000-04-16 11:18:38 +1000118int
Damien Millerad833b32000-08-23 10:46:23 +1000119do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000120{
Damien Miller95def091999-11-25 00:26:21 +1100121 int pin[2], pout[2], reserved[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000122
Damien Miller95def091999-11-25 00:26:21 +1100123 if (verbose_mode)
Ben Lindstrom2772a3f2001-08-06 21:17:12 +0000124 fprintf(stderr,
125 "Executing: program %s host %s, user %s, command %s\n",
126 ssh_program, host,
127 remuser ? remuser : "(unspecified)", cmd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128
Damien Miller5428f641999-11-25 11:54:57 +1100129 /*
130 * Reserve two descriptors so that the real pipes won't get
131 * descriptors 0 and 1 because that will screw up dup2 below.
132 */
Damien Miller95def091999-11-25 00:26:21 +1100133 pipe(reserved);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000134
Damien Miller95def091999-11-25 00:26:21 +1100135 /* Create a socket pair for communicating with ssh. */
136 if (pipe(pin) < 0)
137 fatal("pipe: %s", strerror(errno));
138 if (pipe(pout) < 0)
139 fatal("pipe: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000140
Damien Miller95def091999-11-25 00:26:21 +1100141 /* Free the reserved descriptors. */
142 close(reserved[0]);
143 close(reserved[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Damien Miller95def091999-11-25 00:26:21 +1100145 /* For a child to execute the command on the remote host using ssh. */
Ben Lindstrom007eb912002-11-09 15:54:08 +0000146 do_cmd_pid = fork();
147 if (do_cmd_pid == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100148 /* Child. */
149 close(pin[1]);
150 close(pout[0]);
151 dup2(pin[0], 0);
152 dup2(pout[1], 1);
153 close(pin[0]);
154 close(pout[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
Damien Miller874d77b2000-10-14 16:23:11 +1100156 args.list[0] = ssh_program;
157 if (remuser != NULL)
Ben Lindstrom387c4722001-05-08 20:27:25 +0000158 addargs(&args, "-l%s", remuser);
159 addargs(&args, "%s", host);
160 addargs(&args, "%s", cmd);
Damien Miller95def091999-11-25 00:26:21 +1100161
Damien Miller874d77b2000-10-14 16:23:11 +1100162 execvp(ssh_program, args.list);
Damien Millerad833b32000-08-23 10:46:23 +1000163 perror(ssh_program);
Damien Miller95def091999-11-25 00:26:21 +1100164 exit(1);
Ben Lindstrom007eb912002-11-09 15:54:08 +0000165 } else if (do_cmd_pid == -1) {
166 fatal("fork: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000167 }
Damien Miller95def091999-11-25 00:26:21 +1100168 /* Parent. Close the other side, and return the local side. */
169 close(pin[0]);
170 *fdout = pin[1];
171 close(pout[1]);
172 *fdin = pout[0];
173 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174}
175
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176typedef struct {
177 int cnt;
178 char *buf;
179} BUF;
180
Damien Miller95def091999-11-25 00:26:21 +1100181BUF *allocbuf(BUF *, int, int);
Damien Miller95def091999-11-25 00:26:21 +1100182void lostconn(int);
183void nospace(void);
184int okname(char *);
185void run_err(const char *,...);
186void verifydir(char *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188struct passwd *pwd;
Damien Miller95def091999-11-25 00:26:21 +1100189uid_t userid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000190int errs, remin, remout;
191int pflag, iamremote, iamrecursive, targetshouldbedirectory;
192
193#define CMDNEEDS 64
194char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
195
Damien Miller95def091999-11-25 00:26:21 +1100196int response(void);
197void rsource(char *, struct stat *);
198void sink(int, char *[]);
199void source(int, char *[]);
200void tolocal(int, char *[]);
201void toremote(char *, int, char *[]);
202void usage(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000203
204int
205main(argc, argv)
206 int argc;
207 char *argv[];
208{
Ben Lindstrom007eb912002-11-09 15:54:08 +0000209 int ch, fflag, tflag, status;
Damien Millerff74d742003-01-24 11:36:58 +1100210 double speed;
211 char *targ, *endp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000212 extern char *optarg;
213 extern int optind;
214
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000215 __progname = get_progname(argv[0]);
216
Damien Miller874d77b2000-10-14 16:23:11 +1100217 args.list = NULL;
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000218 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000219 addargs(&args, "-x");
Ben Lindstrom4213c552001-09-12 18:45:09 +0000220 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000221 addargs(&args, "-oClearAllForwardings yes");
Damien Miller874d77b2000-10-14 16:23:11 +1100222
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000223 fflag = tflag = 0;
Damien Miller8e121472003-01-24 11:37:38 +1100224 while ((ch = getopt(argc, argv, "dfl:prtvBCc:i:P:q1246S:o:F:")) != -1)
Damien Miller95def091999-11-25 00:26:21 +1100225 switch (ch) {
226 /* User-visible flags. */
Damien Miller8e121472003-01-24 11:37:38 +1100227 case '1':
228 case '2':
Damien Miller34132e52000-01-14 15:45:46 +1100229 case '4':
Damien Miller34132e52000-01-14 15:45:46 +1100230 case '6':
Damien Miller874d77b2000-10-14 16:23:11 +1100231 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000232 addargs(&args, "-%c", ch);
Damien Miller874d77b2000-10-14 16:23:11 +1100233 break;
234 case 'o':
235 case 'c':
236 case 'i':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000237 case 'F':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000238 addargs(&args, "-%c%s", ch, optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100239 break;
240 case 'P':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000241 addargs(&args, "-p%s", optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100242 break;
243 case 'B':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000244 addargs(&args, "-oBatchmode yes");
Damien Miller34132e52000-01-14 15:45:46 +1100245 break;
Damien Millerff74d742003-01-24 11:36:58 +1100246 case 'l':
247 speed = strtod(optarg, &endp);
248 if (speed <= 0 || *endp != '\0')
249 usage();
Ben Lindstromd54d9382003-03-21 00:55:32 +0000250 limitbw = speed * 1024;
Damien Millerff74d742003-01-24 11:36:58 +1100251 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000252 case 'p':
253 pflag = 1;
254 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000255 case 'r':
256 iamrecursive = 1;
257 break;
Damien Millerad833b32000-08-23 10:46:23 +1000258 case 'S':
Damien Miller874d77b2000-10-14 16:23:11 +1100259 ssh_program = xstrdup(optarg);
260 break;
261 case 'v':
Ben Lindstrom9cc94642001-06-09 01:15:11 +0000262 addargs(&args, "-v");
Damien Miller874d77b2000-10-14 16:23:11 +1100263 verbose_mode = 1;
264 break;
265 case 'q':
266 showprogress = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000267 break;
268
Damien Miller95def091999-11-25 00:26:21 +1100269 /* Server options. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270 case 'd':
271 targetshouldbedirectory = 1;
272 break;
Damien Miller95def091999-11-25 00:26:21 +1100273 case 'f': /* "from" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274 iamremote = 1;
275 fflag = 1;
276 break;
Damien Miller95def091999-11-25 00:26:21 +1100277 case 't': /* "to" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278 iamremote = 1;
279 tflag = 1;
Damien Miller402b3312001-04-14 00:28:42 +1000280#ifdef HAVE_CYGWIN
281 setmode(0, O_BINARY);
282#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000283 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284 default:
285 usage();
286 }
287 argc -= optind;
288 argv += optind;
289
290 if ((pwd = getpwuid(userid = getuid())) == NULL)
Damien Miller95def091999-11-25 00:26:21 +1100291 fatal("unknown user %d", (int) userid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292
Damien Miller95def091999-11-25 00:26:21 +1100293 if (!isatty(STDERR_FILENO))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294 showprogress = 0;
295
296 remin = STDIN_FILENO;
297 remout = STDOUT_FILENO;
298
Kevin Stevesef4eea92001-02-05 12:42:17 +0000299 if (fflag) {
Damien Miller95def091999-11-25 00:26:21 +1100300 /* Follow "protocol", send data. */
301 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302 source(argc, argv);
303 exit(errs != 0);
304 }
Damien Miller95def091999-11-25 00:26:21 +1100305 if (tflag) {
306 /* Receive data. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307 sink(argc, argv);
308 exit(errs != 0);
309 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000310 if (argc < 2)
311 usage();
312 if (argc > 2)
313 targetshouldbedirectory = 1;
314
315 remin = remout = -1;
Ben Lindstrom007eb912002-11-09 15:54:08 +0000316 do_cmd_pid = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317 /* Command to be executed on remote system using "ssh". */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000318 (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
319 verbose_mode ? " -v" : "",
Damien Millerad833b32000-08-23 10:46:23 +1000320 iamrecursive ? " -r" : "", pflag ? " -p" : "",
321 targetshouldbedirectory ? " -d" : "");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322
Damien Miller95def091999-11-25 00:26:21 +1100323 (void) signal(SIGPIPE, lostconn);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000324
325 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
326 toremote(targ, argc, argv);
327 else {
Damien Miller95def091999-11-25 00:26:21 +1100328 tolocal(argc, argv); /* Dest is local host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329 if (targetshouldbedirectory)
330 verifydir(argv[argc - 1]);
331 }
Ben Lindstrom007eb912002-11-09 15:54:08 +0000332 /*
333 * Finally check the exit status of the ssh process, if one was forked
334 * and no error has occured yet
335 */
336 if (do_cmd_pid != -1 && errs == 0) {
337 if (remin != -1)
338 (void) close(remin);
339 if (remout != -1)
340 (void) close(remout);
341 if (waitpid(do_cmd_pid, &status, 0) == -1)
342 errs = 1;
343 else {
344 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
345 errs = 1;
346 }
347 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000348 exit(errs != 0);
349}
350
351void
352toremote(targ, argc, argv)
353 char *targ, *argv[];
354 int argc;
355{
356 int i, len;
357 char *bp, *host, *src, *suser, *thost, *tuser;
358
359 *targ++ = 0;
360 if (*targ == 0)
361 targ = ".";
362
Ben Lindstromc276c122002-12-23 02:14:51 +0000363 if ((thost = strrchr(argv[argc - 1], '@'))) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000364 /* user@host */
365 *thost++ = 0;
366 tuser = argv[argc - 1];
367 if (*tuser == '\0')
368 tuser = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000369 } else {
370 thost = argv[argc - 1];
371 tuser = NULL;
372 }
373
374 for (i = 0; i < argc - 1; i++) {
375 src = colon(argv[i]);
Damien Miller95def091999-11-25 00:26:21 +1100376 if (src) { /* remote to remote */
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000377 static char *ssh_options =
Ben Lindstromaf0c6d62002-06-09 20:06:29 +0000378 "-x -o'ClearAllForwardings yes'";
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000379 *src++ = 0;
380 if (*src == 0)
381 src = ".";
Ben Lindstromc276c122002-12-23 02:14:51 +0000382 host = strrchr(argv[i], '@');
Damien Millerad833b32000-08-23 10:46:23 +1000383 len = strlen(ssh_program) + strlen(argv[i]) +
384 strlen(src) + (tuser ? strlen(tuser) : 0) +
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000385 strlen(thost) + strlen(targ) +
386 strlen(ssh_options) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100387 bp = xmalloc(len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388 if (host) {
389 *host++ = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100390 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000391 suser = argv[i];
392 if (*suser == '\0')
393 suser = pwd->pw_name;
Damien Miller00111382003-03-10 11:21:17 +1100394 else if (!okname(suser)) {
395 xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396 continue;
Damien Miller00111382003-03-10 11:21:17 +1100397 }
398 if (tuser && !okname(tuser)) {
399 xfree(bp);
Damien Millereeeeb352003-02-24 11:52:58 +1100400 continue;
Damien Miller00111382003-03-10 11:21:17 +1100401 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000402 snprintf(bp, len,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000403 "%s%s %s -n "
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000404 "-l %s %s %s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000405 ssh_program, verbose_mode ? " -v" : "",
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000406 ssh_options, suser, host, cmd, src,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000407 tuser ? tuser : "", tuser ? "@" : "",
408 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100409 } else {
410 host = cleanhostname(argv[i]);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000411 snprintf(bp, len,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000412 "exec %s%s %s -n %s "
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000413 "%s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000414 ssh_program, verbose_mode ? " -v" : "",
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000415 ssh_options, host, cmd, src,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000416 tuser ? tuser : "", tuser ? "@" : "",
417 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100418 }
Damien Miller95def091999-11-25 00:26:21 +1100419 if (verbose_mode)
420 fprintf(stderr, "Executing: %s\n", bp);
421 (void) system(bp);
422 (void) xfree(bp);
423 } else { /* local to remote */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000424 if (remin == -1) {
425 len = strlen(targ) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100426 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000427 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100428 host = cleanhostname(thost);
Damien Millerad833b32000-08-23 10:46:23 +1000429 if (do_cmd(host, tuser, bp, &remin,
430 &remout, argc) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100431 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000432 if (response() < 0)
433 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100434 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000435 }
Damien Miller95def091999-11-25 00:26:21 +1100436 source(1, argv + i);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000437 }
438 }
439}
440
441void
442tolocal(argc, argv)
443 int argc;
444 char *argv[];
445{
446 int i, len;
447 char *bp, *host, *src, *suser;
448
449 for (i = 0; i < argc - 1; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100450 if (!(src = colon(argv[i]))) { /* Local to local. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000451 len = strlen(_PATH_CP) + strlen(argv[i]) +
Damien Millerad833b32000-08-23 10:46:23 +1000452 strlen(argv[argc - 1]) + 20;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000454 (void) snprintf(bp, len, "exec %s%s%s %s %s", _PATH_CP,
Damien Millerad833b32000-08-23 10:46:23 +1000455 iamrecursive ? " -r" : "", pflag ? " -p" : "",
456 argv[i], argv[argc - 1]);
Damien Miller95def091999-11-25 00:26:21 +1100457 if (verbose_mode)
458 fprintf(stderr, "Executing: %s\n", bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000459 if (system(bp))
460 ++errs;
Damien Miller95def091999-11-25 00:26:21 +1100461 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000462 continue;
463 }
464 *src++ = 0;
465 if (*src == 0)
466 src = ".";
Ben Lindstromc276c122002-12-23 02:14:51 +0000467 if ((host = strrchr(argv[i], '@')) == NULL) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000468 host = argv[i];
469 suser = NULL;
470 } else {
471 *host++ = 0;
472 suser = argv[i];
473 if (*suser == '\0')
474 suser = pwd->pw_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000475 }
Damien Miller34132e52000-01-14 15:45:46 +1100476 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000477 len = strlen(src) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100478 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000479 (void) snprintf(bp, len, "%s -f %s", cmd, src);
Damien Millerad833b32000-08-23 10:46:23 +1000480 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100481 (void) xfree(bp);
482 ++errs;
483 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000484 }
Damien Miller95def091999-11-25 00:26:21 +1100485 xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000486 sink(1, argv + argc - 1);
Damien Miller95def091999-11-25 00:26:21 +1100487 (void) close(remin);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488 remin = remout = -1;
489 }
490}
491
492void
493source(argc, argv)
494 int argc;
495 char *argv[];
496{
497 struct stat stb;
498 static BUF buffer;
499 BUF *bp;
Damien Miller62d57f62003-01-10 21:43:24 +1100500 off_t i, amt, result, statbytes;
Ben Lindstrom4eda71d2001-04-22 17:13:20 +0000501 int fd, haderr, indx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000502 char *last, *name, buf[2048];
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000503 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504
505 for (indx = 0; indx < argc; ++indx) {
Damien Miller95def091999-11-25 00:26:21 +1100506 name = argv[indx];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000507 statbytes = 0;
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000508 len = strlen(name);
509 while (len > 1 && name[len-1] == '/')
510 name[--len] = '\0';
Ben Lindstrom3e45e4c2001-10-03 17:30:58 +0000511 if (strchr(name, '\n') != NULL) {
512 run_err("%s: skipping, filename contains a newline",
513 name);
514 goto next;
515 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000516 if ((fd = open(name, O_RDONLY, 0)) < 0)
517 goto syserr;
518 if (fstat(fd, &stb) < 0) {
519syserr: run_err("%s: %s", name, strerror(errno));
520 goto next;
521 }
522 switch (stb.st_mode & S_IFMT) {
523 case S_IFREG:
524 break;
525 case S_IFDIR:
526 if (iamrecursive) {
527 rsource(name, &stb);
528 goto next;
529 }
530 /* FALLTHROUGH */
531 default:
532 run_err("%s: not a regular file", name);
533 goto next;
534 }
535 if ((last = strrchr(name, '/')) == NULL)
536 last = name;
537 else
538 ++last;
539 curfile = last;
540 if (pflag) {
541 /*
542 * Make it compatible with possible future
543 * versions expecting microseconds.
544 */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000545 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000546 (u_long) stb.st_mtime,
547 (u_long) stb.st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000548 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000549 if (response() < 0)
550 goto next;
551 }
552#define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
Ben Lindstroma4c57662001-03-17 00:10:20 +0000553 snprintf(buf, sizeof buf, "C%04o %lld %s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000554 (u_int) (stb.st_mode & FILEMODEMASK),
Ben Lindstrom0e7f4362003-04-28 23:30:43 +0000555 (int64_t)stb.st_size, last);
Damien Miller95def091999-11-25 00:26:21 +1100556 if (verbose_mode) {
557 fprintf(stderr, "Sending file modes: %s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100558 }
Damien Miller35dabd02000-05-01 21:10:33 +1000559 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000560 if (response() < 0)
561 goto next;
562 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100563next: (void) close(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564 continue;
565 }
Damien Miller62d57f62003-01-10 21:43:24 +1100566 if (showprogress)
567 start_progress_meter(curfile, stb.st_size, &statbytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568 /* Keep writing after an error so that we stay sync'd up. */
569 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
570 amt = bp->cnt;
571 if (i + amt > stb.st_size)
572 amt = stb.st_size - i;
573 if (!haderr) {
Damien Millere247cc42000-05-07 12:03:14 +1000574 result = atomicio(read, fd, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575 if (result != amt)
576 haderr = result >= 0 ? EIO : errno;
577 }
578 if (haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000579 (void) atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580 else {
Damien Miller864ea591999-12-15 11:04:25 +1100581 result = atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000582 if (result != amt)
583 haderr = result >= 0 ? EIO : errno;
584 statbytes += result;
585 }
Ben Lindstromd54d9382003-03-21 00:55:32 +0000586 if (limitbw)
Damien Millerff74d742003-01-24 11:36:58 +1100587 bwlimit(amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588 }
Damien Miller95def091999-11-25 00:26:21 +1100589 if (showprogress)
Damien Miller62d57f62003-01-10 21:43:24 +1100590 stop_progress_meter();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000591
592 if (close(fd) < 0 && !haderr)
593 haderr = errno;
594 if (!haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000595 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596 else
597 run_err("%s: %s", name, strerror(haderr));
Damien Miller95def091999-11-25 00:26:21 +1100598 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000599 }
600}
601
602void
603rsource(name, statp)
604 char *name;
605 struct stat *statp;
606{
607 DIR *dirp;
608 struct dirent *dp;
609 char *last, *vect[1], path[1100];
610
611 if (!(dirp = opendir(name))) {
612 run_err("%s: %s", name, strerror(errno));
613 return;
614 }
615 last = strrchr(name, '/');
616 if (last == 0)
617 last = name;
618 else
619 last++;
620 if (pflag) {
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000621 (void) snprintf(path, sizeof(path), "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000622 (u_long) statp->st_mtime,
623 (u_long) statp->st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000624 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000625 if (response() < 0) {
626 closedir(dirp);
627 return;
628 }
629 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000630 (void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000631 (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
Damien Miller95def091999-11-25 00:26:21 +1100632 if (verbose_mode)
633 fprintf(stderr, "Entering directory: %s", path);
Damien Miller35dabd02000-05-01 21:10:33 +1000634 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000635 if (response() < 0) {
636 closedir(dirp);
637 return;
638 }
Ben Lindstrombd472262001-03-29 00:39:55 +0000639 while ((dp = readdir(dirp)) != NULL) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000640 if (dp->d_ino == 0)
641 continue;
642 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
643 continue;
644 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
645 run_err("%s/%s: name too long", name, dp->d_name);
646 continue;
647 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000648 (void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000649 vect[0] = path;
650 source(1, vect);
651 }
Damien Miller95def091999-11-25 00:26:21 +1100652 (void) closedir(dirp);
Damien Miller35dabd02000-05-01 21:10:33 +1000653 (void) atomicio(write, remout, "E\n", 2);
Damien Miller95def091999-11-25 00:26:21 +1100654 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000655}
656
657void
Damien Millerff74d742003-01-24 11:36:58 +1100658bwlimit(int amount)
659{
660 static struct timeval bwstart, bwend;
661 static int lamt, thresh = 16384;
662 u_int64_t wait;
663 struct timespec ts, rm;
664
665 if (!timerisset(&bwstart)) {
666 gettimeofday(&bwstart, NULL);
667 return;
668 }
669
670 lamt += amount;
671 if (lamt < thresh)
672 return;
673
674 gettimeofday(&bwend, NULL);
675 timersub(&bwend, &bwstart, &bwend);
676 if (!timerisset(&bwend))
677 return;
678
679 lamt *= 8;
Ben Lindstromd54d9382003-03-21 00:55:32 +0000680 wait = (double)1000000L * lamt / limitbw;
Damien Millerff74d742003-01-24 11:36:58 +1100681
682 bwstart.tv_sec = wait / 1000000L;
683 bwstart.tv_usec = wait % 1000000L;
684
685 if (timercmp(&bwstart, &bwend, >)) {
686 timersub(&bwstart, &bwend, &bwend);
687
688 /* Adjust the wait time */
689 if (bwend.tv_sec) {
690 thresh /= 2;
691 if (thresh < 2048)
692 thresh = 2048;
693 } else if (bwend.tv_usec < 100) {
694 thresh *= 2;
695 if (thresh > 32768)
696 thresh = 32768;
697 }
698
699 TIMEVAL_TO_TIMESPEC(&bwend, &ts);
700 while (nanosleep(&ts, &rm) == -1) {
701 if (errno != EINTR)
702 break;
703 ts = rm;
704 }
705 }
706
707 lamt = 0;
708 gettimeofday(&bwstart, NULL);
709}
710
711void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000712sink(argc, argv)
713 int argc;
714 char *argv[];
715{
716 static BUF buffer;
717 struct stat stb;
Damien Miller95def091999-11-25 00:26:21 +1100718 enum {
719 YES, NO, DISPLAYED
720 } wrerr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000721 BUF *bp;
722 off_t i, j;
723 int amt, count, exists, first, mask, mode, ofd, omode;
Damien Miller62d57f62003-01-10 21:43:24 +1100724 off_t size, statbytes;
Damien Millercaf6dd62000-08-29 11:33:50 +1100725 int setimes, targisdir, wrerrno = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000726 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
Damien Miller62cee002000-09-23 17:15:56 +1100727 struct timeval tv[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000728
Ben Lindstromf719a202001-04-14 23:14:22 +0000729#define atime tv[0]
730#define mtime tv[1]
Ben Lindstrom7d5ed3a2001-06-25 04:28:30 +0000731#define SCREWUP(str) do { why = str; goto screwup; } while (0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000732
733 setimes = targisdir = 0;
734 mask = umask(0);
735 if (!pflag)
Damien Miller95def091999-11-25 00:26:21 +1100736 (void) umask(mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000737 if (argc != 1) {
738 run_err("ambiguous target");
739 exit(1);
740 }
741 targ = *argv;
742 if (targetshouldbedirectory)
743 verifydir(targ);
Damien Miller95def091999-11-25 00:26:21 +1100744
Damien Miller35dabd02000-05-01 21:10:33 +1000745 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000746 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
747 targisdir = 1;
748 for (first = 1;; first = 0) {
749 cp = buf;
Damien Millere247cc42000-05-07 12:03:14 +1000750 if (atomicio(read, remin, cp, 1) <= 0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000751 return;
752 if (*cp++ == '\n')
753 SCREWUP("unexpected <newline>");
754 do {
Damien Millere247cc42000-05-07 12:03:14 +1000755 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000756 SCREWUP("lost connection");
757 *cp++ = ch;
758 } while (cp < &buf[sizeof(buf) - 1] && ch != '\n');
759 *cp = 0;
760
761 if (buf[0] == '\01' || buf[0] == '\02') {
762 if (iamremote == 0)
Damien Miller35dabd02000-05-01 21:10:33 +1000763 (void) atomicio(write, STDERR_FILENO,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000764 buf + 1, strlen(buf + 1));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000765 if (buf[0] == '\02')
766 exit(1);
767 ++errs;
768 continue;
769 }
770 if (buf[0] == 'E') {
Damien Miller35dabd02000-05-01 21:10:33 +1000771 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000772 return;
773 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000774 if (ch == '\n')
775 *--cp = 0;
776
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000777 cp = buf;
778 if (*cp == 'T') {
779 setimes++;
780 cp++;
Ben Lindstromf719a202001-04-14 23:14:22 +0000781 mtime.tv_sec = strtol(cp, &cp, 10);
782 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000783 SCREWUP("mtime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000784 mtime.tv_usec = strtol(cp, &cp, 10);
785 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000786 SCREWUP("mtime.usec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000787 atime.tv_sec = strtol(cp, &cp, 10);
788 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000789 SCREWUP("atime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000790 atime.tv_usec = strtol(cp, &cp, 10);
791 if (!cp || *cp++ != '\0')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000792 SCREWUP("atime.usec not delimited");
Damien Miller35dabd02000-05-01 21:10:33 +1000793 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000794 continue;
795 }
796 if (*cp != 'C' && *cp != 'D') {
797 /*
798 * Check for the case "rcp remote:foo\* local:bar".
799 * In this case, the line "No match." can be returned
800 * by the shell before the rcp command on the remote is
801 * executed so the ^Aerror_message convention isn't
802 * followed.
803 */
804 if (first) {
805 run_err("%s", cp);
806 exit(1);
807 }
808 SCREWUP("expected control record");
809 }
810 mode = 0;
811 for (++cp; cp < buf + 5; cp++) {
812 if (*cp < '0' || *cp > '7')
813 SCREWUP("bad mode");
814 mode = (mode << 3) | (*cp - '0');
815 }
816 if (*cp++ != ' ')
817 SCREWUP("mode not delimited");
818
Ben Lindstrombd472262001-03-29 00:39:55 +0000819 for (size = 0; isdigit(*cp);)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000820 size = size * 10 + (*cp++ - '0');
821 if (*cp++ != ' ')
822 SCREWUP("size not delimited");
823 if (targisdir) {
824 static char *namebuf;
825 static int cursize;
826 size_t need;
827
828 need = strlen(targ) + strlen(cp) + 250;
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000829 if (need > cursize) {
830 if (namebuf)
831 xfree(namebuf);
Damien Miller95def091999-11-25 00:26:21 +1100832 namebuf = xmalloc(need);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000833 cursize = need;
834 }
835 (void) snprintf(namebuf, need, "%s%s%s", targ,
Ben Lindstromde3895d2002-04-06 18:29:59 +0000836 strcmp(targ, "/") ? "/" : "", cp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000837 np = namebuf;
838 } else
839 np = targ;
840 curfile = cp;
841 exists = stat(np, &stb) == 0;
842 if (buf[0] == 'D') {
843 int mod_flag = pflag;
844 if (exists) {
845 if (!S_ISDIR(stb.st_mode)) {
846 errno = ENOTDIR;
847 goto bad;
848 }
849 if (pflag)
Damien Miller95def091999-11-25 00:26:21 +1100850 (void) chmod(np, mode);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000851 } else {
Damien Miller95def091999-11-25 00:26:21 +1100852 /* Handle copying from a read-only
853 directory */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000854 mod_flag = 1;
855 if (mkdir(np, mode | S_IRWXU) < 0)
856 goto bad;
857 }
Ben Lindstrom550bc542001-02-10 21:50:00 +0000858 vect[0] = xstrdup(np);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000859 sink(1, vect);
860 if (setimes) {
861 setimes = 0;
Damien Miller225736c2001-02-19 21:51:08 +1100862 if (utimes(vect[0], tv) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100863 run_err("%s: set times: %s",
Damien Miller225736c2001-02-19 21:51:08 +1100864 vect[0], strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000865 }
866 if (mod_flag)
Damien Miller225736c2001-02-19 21:51:08 +1100867 (void) chmod(vect[0], mode);
868 if (vect[0])
869 xfree(vect[0]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000870 continue;
871 }
872 omode = mode;
873 mode |= S_IWRITE;
Ben Lindstrom7bad55b2001-06-05 19:31:41 +0000874 if ((ofd = open(np, O_WRONLY|O_CREAT, mode)) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000875bad: run_err("%s: %s", np, strerror(errno));
876 continue;
877 }
Damien Miller35dabd02000-05-01 21:10:33 +1000878 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000879 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100880 (void) close(ofd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000881 continue;
882 }
883 cp = bp->buf;
884 wrerr = NO;
885
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000886 statbytes = 0;
Damien Miller62d57f62003-01-10 21:43:24 +1100887 if (showprogress)
888 start_progress_meter(curfile, size, &statbytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000889 for (count = i = 0; i < size; i += 4096) {
890 amt = 4096;
891 if (i + amt > size)
892 amt = size - i;
893 count += amt;
894 do {
Damien Miller69b69aa2000-10-28 14:19:58 +1100895 j = read(remin, cp, amt);
Ben Lindstrom2772a3f2001-08-06 21:17:12 +0000896 if (j == -1 && (errno == EINTR ||
897 errno == EAGAIN)) {
Damien Miller69b69aa2000-10-28 14:19:58 +1100898 continue;
899 } else if (j <= 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000900 run_err("%s", j ? strerror(errno) :
Ben Lindstrombd472262001-03-29 00:39:55 +0000901 "dropped connection");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000902 exit(1);
903 }
904 amt -= j;
905 cp += j;
Damien Miller95def091999-11-25 00:26:21 +1100906 statbytes += j;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000907 } while (amt > 0);
Damien Millerff74d742003-01-24 11:36:58 +1100908
Ben Lindstromd54d9382003-03-21 00:55:32 +0000909 if (limitbw)
Damien Millerff74d742003-01-24 11:36:58 +1100910 bwlimit(4096);
911
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000912 if (count == bp->cnt) {
913 /* Keep reading so we stay sync'd up. */
914 if (wrerr == NO) {
Damien Millere247cc42000-05-07 12:03:14 +1000915 j = atomicio(write, ofd, bp->buf, count);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000916 if (j != count) {
917 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100918 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000919 }
920 }
921 count = 0;
922 cp = bp->buf;
923 }
924 }
925 if (showprogress)
Damien Miller62d57f62003-01-10 21:43:24 +1100926 stop_progress_meter();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000927 if (count != 0 && wrerr == NO &&
Damien Millere247cc42000-05-07 12:03:14 +1000928 (j = atomicio(write, ofd, bp->buf, count)) != count) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000929 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100930 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000931 }
Damien Miller86b781c2003-01-10 21:44:48 +1100932 if (wrerr == NO && ftruncate(ofd, size) != 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000933 run_err("%s: truncate: %s", np, strerror(errno));
934 wrerr = DISPLAYED;
935 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000936 if (pflag) {
937 if (exists || omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100938#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000939 if (fchmod(ofd, omode))
Damien Miller78315eb2000-09-29 23:01:36 +1100940#else /* HAVE_FCHMOD */
941 if (chmod(np, omode))
942#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000943 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000944 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000945 } else {
946 if (!exists && omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100947#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000948 if (fchmod(ofd, omode & ~mask))
Damien Miller78315eb2000-09-29 23:01:36 +1100949#else /* HAVE_FCHMOD */
950 if (chmod(np, omode & ~mask))
951#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000953 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000954 }
Damien Millerbe484b52000-07-15 14:14:16 +1000955 if (close(ofd) == -1) {
956 wrerr = YES;
957 wrerrno = errno;
958 }
Damien Miller95def091999-11-25 00:26:21 +1100959 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000960 if (setimes && wrerr == NO) {
961 setimes = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100962 if (utimes(np, tv) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000963 run_err("%s: set times: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000964 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000965 wrerr = DISPLAYED;
966 }
967 }
Damien Miller95def091999-11-25 00:26:21 +1100968 switch (wrerr) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000969 case YES:
970 run_err("%s: %s", np, strerror(wrerrno));
971 break;
972 case NO:
Damien Miller35dabd02000-05-01 21:10:33 +1000973 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000974 break;
975 case DISPLAYED:
976 break;
977 }
978 }
979screwup:
980 run_err("protocol error: %s", why);
981 exit(1);
982}
983
984int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000985response(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000986{
987 char ch, *cp, resp, rbuf[2048];
988
Damien Millere247cc42000-05-07 12:03:14 +1000989 if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990 lostconn(0);
991
992 cp = rbuf;
Damien Miller95def091999-11-25 00:26:21 +1100993 switch (resp) {
994 case 0: /* ok */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000995 return (0);
996 default:
997 *cp++ = resp;
998 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100999 case 1: /* error, followed by error msg */
1000 case 2: /* fatal error, "" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001001 do {
Damien Millere247cc42000-05-07 12:03:14 +10001002 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001003 lostconn(0);
1004 *cp++ = ch;
1005 } while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
1006
1007 if (!iamremote)
Damien Miller35dabd02000-05-01 21:10:33 +10001008 (void) atomicio(write, STDERR_FILENO, rbuf, cp - rbuf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001009 ++errs;
1010 if (resp == 1)
1011 return (-1);
1012 exit(1);
1013 }
1014 /* NOTREACHED */
1015}
1016
1017void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001018usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001019{
Ben Lindstrom1e243242001-09-18 05:38:44 +00001020 (void) fprintf(stderr,
Damien Miller8e121472003-01-24 11:37:38 +11001021 "usage: scp [-pqrvBC1246] [-F config] [-S program] [-P port]\n"
Damien Millerff74d742003-01-24 11:36:58 +11001022 " [-c cipher] [-i identity] [-l limit] [-o option]\n"
Ben Lindstrom45933dd2002-06-21 00:10:58 +00001023 " [[user@]host1:]file1 [...] [[user@]host2:]file2\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001024 exit(1);
1025}
1026
1027void
Damien Miller95def091999-11-25 00:26:21 +11001028run_err(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001029{
1030 static FILE *fp;
1031 va_list ap;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001032
1033 ++errs;
1034 if (fp == NULL && !(fp = fdopen(remout, "w")))
1035 return;
Damien Miller95def091999-11-25 00:26:21 +11001036 (void) fprintf(fp, "%c", 0x01);
1037 (void) fprintf(fp, "scp: ");
Damien Miller03783f01999-12-31 09:16:40 +11001038 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +11001039 (void) vfprintf(fp, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +11001040 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +11001041 (void) fprintf(fp, "\n");
1042 (void) fflush(fp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001043
Damien Miller95def091999-11-25 00:26:21 +11001044 if (!iamremote) {
Damien Miller03783f01999-12-31 09:16:40 +11001045 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +11001046 vfprintf(stderr, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +11001047 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +11001048 fprintf(stderr, "\n");
1049 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001050}
1051
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001052void
1053verifydir(cp)
1054 char *cp;
1055{
1056 struct stat stb;
1057
1058 if (!stat(cp, &stb)) {
1059 if (S_ISDIR(stb.st_mode))
1060 return;
1061 errno = ENOTDIR;
1062 }
1063 run_err("%s: %s", cp, strerror(errno));
1064 exit(1);
1065}
1066
1067int
1068okname(cp0)
1069 char *cp0;
1070{
1071 int c;
1072 char *cp;
1073
1074 cp = cp0;
1075 do {
Ben Lindstrom7d5ed3a2001-06-25 04:28:30 +00001076 c = (int)*cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001077 if (c & 0200)
1078 goto bad;
Damien Millereeeeb352003-02-24 11:52:58 +11001079 if (!isalpha(c) && !isdigit(c)) {
1080 switch (c) {
1081 case '\'':
1082 case '"':
1083 case '`':
1084 case ' ':
1085 case '#':
1086 goto bad;
1087 default:
1088 break;
1089 }
1090 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001091 } while (*++cp);
1092 return (1);
1093
Damien Miller98c7ad62000-03-09 21:27:49 +11001094bad: fprintf(stderr, "%s: invalid user name\n", cp0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001095 return (0);
1096}
1097
1098BUF *
1099allocbuf(bp, fd, blksize)
1100 BUF *bp;
1101 int fd, blksize;
1102{
1103 size_t size;
Tim Rice13aae5e2001-10-21 17:53:58 -07001104#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001105 struct stat stb;
1106
1107 if (fstat(fd, &stb) < 0) {
1108 run_err("fstat: %s", strerror(errno));
1109 return (0);
1110 }
Ben Lindstrom418e0782002-12-23 02:22:09 +00001111 size = roundup(stb.st_blksize, blksize);
1112 if (size == 0)
Damien Miller95def091999-11-25 00:26:21 +11001113 size = blksize;
Tim Rice13aae5e2001-10-21 17:53:58 -07001114#else /* HAVE_STRUCT_STAT_ST_BLKSIZE */
Kevin Stevesef4eea92001-02-05 12:42:17 +00001115 size = blksize;
Tim Rice13aae5e2001-10-21 17:53:58 -07001116#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001117 if (bp->cnt >= size)
1118 return (bp);
Damien Miller95def091999-11-25 00:26:21 +11001119 if (bp->buf == NULL)
1120 bp->buf = xmalloc(size);
1121 else
1122 bp->buf = xrealloc(bp->buf, size);
Ben Lindstrom5fccbc22001-09-12 17:49:48 +00001123 memset(bp->buf, 0, size);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001124 bp->cnt = size;
1125 return (bp);
1126}
1127
1128void
1129lostconn(signo)
1130 int signo;
1131{
1132 if (!iamremote)
Ben Lindstrom738f51e2001-06-21 03:08:58 +00001133 write(STDERR_FILENO, "lost connection\n", 16);
1134 if (signo)
1135 _exit(1);
1136 else
1137 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001138}