blob: 364ab2860d53470affd699b65ef873236d6f68e5 [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"
Darren Tucker1f203942003-10-15 15:50:42 +100074RCSID("$OpenBSD: scp.c,v 1.110 2003/10/08 08:27:36 jmc 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 */
Damien Millerb69aaa82003-06-04 22:51:24 +1000110pid_t do_cmd_pid = -1;
111
112static void
113killchild(int signo)
114{
115 if (do_cmd_pid > 1)
116 kill(do_cmd_pid, signo);
117
118 _exit(1);
119}
Ben Lindstrom007eb912002-11-09 15:54:08 +0000120
Damien Miller5428f641999-11-25 11:54:57 +1100121/*
122 * This function executes the given command as the specified user on the
123 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
124 * assigns the input and output file descriptors on success.
125 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126
Damien Miller4af51302000-04-16 11:18:38 +1000127int
Damien Millerad833b32000-08-23 10:46:23 +1000128do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000129{
Damien Miller95def091999-11-25 00:26:21 +1100130 int pin[2], pout[2], reserved[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000131
Damien Miller95def091999-11-25 00:26:21 +1100132 if (verbose_mode)
Ben Lindstrom2772a3f2001-08-06 21:17:12 +0000133 fprintf(stderr,
134 "Executing: program %s host %s, user %s, command %s\n",
135 ssh_program, host,
136 remuser ? remuser : "(unspecified)", cmd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000137
Damien Miller5428f641999-11-25 11:54:57 +1100138 /*
139 * Reserve two descriptors so that the real pipes won't get
140 * descriptors 0 and 1 because that will screw up dup2 below.
141 */
Damien Miller95def091999-11-25 00:26:21 +1100142 pipe(reserved);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143
Damien Miller95def091999-11-25 00:26:21 +1100144 /* Create a socket pair for communicating with ssh. */
145 if (pipe(pin) < 0)
146 fatal("pipe: %s", strerror(errno));
147 if (pipe(pout) < 0)
148 fatal("pipe: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149
Damien Miller95def091999-11-25 00:26:21 +1100150 /* Free the reserved descriptors. */
151 close(reserved[0]);
152 close(reserved[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000153
Damien Millerb2cdcb52003-06-18 20:26:34 +1000154 /* Fork a child to execute the command on the remote host using ssh. */
Ben Lindstrom007eb912002-11-09 15:54:08 +0000155 do_cmd_pid = fork();
156 if (do_cmd_pid == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100157 /* Child. */
158 close(pin[1]);
159 close(pout[0]);
160 dup2(pin[0], 0);
161 dup2(pout[1], 1);
162 close(pin[0]);
163 close(pout[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164
Damien Miller874d77b2000-10-14 16:23:11 +1100165 args.list[0] = ssh_program;
166 if (remuser != NULL)
Ben Lindstrom387c4722001-05-08 20:27:25 +0000167 addargs(&args, "-l%s", remuser);
168 addargs(&args, "%s", host);
169 addargs(&args, "%s", cmd);
Damien Miller95def091999-11-25 00:26:21 +1100170
Damien Miller874d77b2000-10-14 16:23:11 +1100171 execvp(ssh_program, args.list);
Damien Millerad833b32000-08-23 10:46:23 +1000172 perror(ssh_program);
Damien Miller95def091999-11-25 00:26:21 +1100173 exit(1);
Ben Lindstrom007eb912002-11-09 15:54:08 +0000174 } else if (do_cmd_pid == -1) {
175 fatal("fork: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000176 }
Damien Miller95def091999-11-25 00:26:21 +1100177 /* Parent. Close the other side, and return the local side. */
178 close(pin[0]);
179 *fdout = pin[1];
180 close(pout[1]);
181 *fdin = pout[0];
Damien Millerb69aaa82003-06-04 22:51:24 +1000182 signal(SIGTERM, killchild);
183 signal(SIGINT, killchild);
184 signal(SIGHUP, killchild);
Damien Miller95def091999-11-25 00:26:21 +1100185 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186}
187
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000188typedef struct {
189 int cnt;
190 char *buf;
191} BUF;
192
Damien Miller95def091999-11-25 00:26:21 +1100193BUF *allocbuf(BUF *, int, int);
Damien Miller95def091999-11-25 00:26:21 +1100194void lostconn(int);
195void nospace(void);
196int okname(char *);
197void run_err(const char *,...);
198void verifydir(char *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000199
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200struct passwd *pwd;
Damien Miller95def091999-11-25 00:26:21 +1100201uid_t userid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202int errs, remin, remout;
203int pflag, iamremote, iamrecursive, targetshouldbedirectory;
204
205#define CMDNEEDS 64
206char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
207
Damien Miller95def091999-11-25 00:26:21 +1100208int response(void);
209void rsource(char *, struct stat *);
210void sink(int, char *[]);
211void source(int, char *[]);
212void tolocal(int, char *[]);
213void toremote(char *, int, char *[]);
214void usage(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215
216int
Damien Miller65d1f572003-06-04 22:51:08 +1000217main(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000218{
Ben Lindstrom007eb912002-11-09 15:54:08 +0000219 int ch, fflag, tflag, status;
Damien Millerff74d742003-01-24 11:36:58 +1100220 double speed;
221 char *targ, *endp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000222 extern char *optarg;
223 extern int optind;
224
Damien Miller59d3d5b2003-08-22 09:34:41 +1000225 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000226
Damien Miller874d77b2000-10-14 16:23:11 +1100227 args.list = NULL;
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000228 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000229 addargs(&args, "-x");
Ben Lindstrom4213c552001-09-12 18:45:09 +0000230 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000231 addargs(&args, "-oClearAllForwardings yes");
Damien Miller874d77b2000-10-14 16:23:11 +1100232
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000233 fflag = tflag = 0;
Damien Miller8e121472003-01-24 11:37:38 +1100234 while ((ch = getopt(argc, argv, "dfl:prtvBCc:i:P:q1246S:o:F:")) != -1)
Damien Miller95def091999-11-25 00:26:21 +1100235 switch (ch) {
236 /* User-visible flags. */
Damien Miller8e121472003-01-24 11:37:38 +1100237 case '1':
238 case '2':
Damien Miller34132e52000-01-14 15:45:46 +1100239 case '4':
Damien Miller34132e52000-01-14 15:45:46 +1100240 case '6':
Damien Miller874d77b2000-10-14 16:23:11 +1100241 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000242 addargs(&args, "-%c", ch);
Damien Miller874d77b2000-10-14 16:23:11 +1100243 break;
244 case 'o':
245 case 'c':
246 case 'i':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000247 case 'F':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000248 addargs(&args, "-%c%s", ch, optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100249 break;
250 case 'P':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000251 addargs(&args, "-p%s", optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100252 break;
253 case 'B':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000254 addargs(&args, "-oBatchmode yes");
Damien Miller34132e52000-01-14 15:45:46 +1100255 break;
Damien Millerff74d742003-01-24 11:36:58 +1100256 case 'l':
257 speed = strtod(optarg, &endp);
258 if (speed <= 0 || *endp != '\0')
259 usage();
Ben Lindstromd54d9382003-03-21 00:55:32 +0000260 limitbw = speed * 1024;
Damien Millerff74d742003-01-24 11:36:58 +1100261 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000262 case 'p':
263 pflag = 1;
264 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000265 case 'r':
266 iamrecursive = 1;
267 break;
Damien Millerad833b32000-08-23 10:46:23 +1000268 case 'S':
Damien Miller874d77b2000-10-14 16:23:11 +1100269 ssh_program = xstrdup(optarg);
270 break;
271 case 'v':
Ben Lindstrom9cc94642001-06-09 01:15:11 +0000272 addargs(&args, "-v");
Damien Miller874d77b2000-10-14 16:23:11 +1100273 verbose_mode = 1;
274 break;
275 case 'q':
276 showprogress = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000277 break;
278
Damien Miller95def091999-11-25 00:26:21 +1100279 /* Server options. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280 case 'd':
281 targetshouldbedirectory = 1;
282 break;
Damien Miller95def091999-11-25 00:26:21 +1100283 case 'f': /* "from" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284 iamremote = 1;
285 fflag = 1;
286 break;
Damien Miller95def091999-11-25 00:26:21 +1100287 case 't': /* "to" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288 iamremote = 1;
289 tflag = 1;
Damien Miller402b3312001-04-14 00:28:42 +1000290#ifdef HAVE_CYGWIN
291 setmode(0, O_BINARY);
292#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000293 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000294 default:
295 usage();
296 }
297 argc -= optind;
298 argv += optind;
299
300 if ((pwd = getpwuid(userid = getuid())) == NULL)
Darren Tucker03a29ba2003-07-19 20:07:45 +1000301 fatal("unknown user %u", (u_int) userid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000302
Damien Miller95def091999-11-25 00:26:21 +1100303 if (!isatty(STDERR_FILENO))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000304 showprogress = 0;
305
306 remin = STDIN_FILENO;
307 remout = STDOUT_FILENO;
308
Kevin Stevesef4eea92001-02-05 12:42:17 +0000309 if (fflag) {
Damien Miller95def091999-11-25 00:26:21 +1100310 /* Follow "protocol", send data. */
311 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312 source(argc, argv);
313 exit(errs != 0);
314 }
Damien Miller95def091999-11-25 00:26:21 +1100315 if (tflag) {
316 /* Receive data. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317 sink(argc, argv);
318 exit(errs != 0);
319 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000320 if (argc < 2)
321 usage();
322 if (argc > 2)
323 targetshouldbedirectory = 1;
324
325 remin = remout = -1;
Ben Lindstrom007eb912002-11-09 15:54:08 +0000326 do_cmd_pid = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000327 /* Command to be executed on remote system using "ssh". */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000328 (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
329 verbose_mode ? " -v" : "",
Damien Millerad833b32000-08-23 10:46:23 +1000330 iamrecursive ? " -r" : "", pflag ? " -p" : "",
331 targetshouldbedirectory ? " -d" : "");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000332
Damien Miller95def091999-11-25 00:26:21 +1100333 (void) signal(SIGPIPE, lostconn);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334
335 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
336 toremote(targ, argc, argv);
337 else {
Damien Miller95def091999-11-25 00:26:21 +1100338 tolocal(argc, argv); /* Dest is local host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000339 if (targetshouldbedirectory)
340 verifydir(argv[argc - 1]);
341 }
Ben Lindstrom007eb912002-11-09 15:54:08 +0000342 /*
343 * Finally check the exit status of the ssh process, if one was forked
344 * and no error has occured yet
345 */
346 if (do_cmd_pid != -1 && errs == 0) {
347 if (remin != -1)
348 (void) close(remin);
349 if (remout != -1)
350 (void) close(remout);
351 if (waitpid(do_cmd_pid, &status, 0) == -1)
352 errs = 1;
353 else {
354 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
355 errs = 1;
356 }
357 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000358 exit(errs != 0);
359}
360
361void
Damien Miller65d1f572003-06-04 22:51:08 +1000362toremote(char *targ, int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000363{
364 int i, len;
365 char *bp, *host, *src, *suser, *thost, *tuser;
366
367 *targ++ = 0;
368 if (*targ == 0)
369 targ = ".";
370
Ben Lindstromc276c122002-12-23 02:14:51 +0000371 if ((thost = strrchr(argv[argc - 1], '@'))) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000372 /* user@host */
373 *thost++ = 0;
374 tuser = argv[argc - 1];
375 if (*tuser == '\0')
376 tuser = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000377 } else {
378 thost = argv[argc - 1];
379 tuser = NULL;
380 }
381
382 for (i = 0; i < argc - 1; i++) {
383 src = colon(argv[i]);
Damien Miller95def091999-11-25 00:26:21 +1100384 if (src) { /* remote to remote */
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000385 static char *ssh_options =
Ben Lindstromaf0c6d62002-06-09 20:06:29 +0000386 "-x -o'ClearAllForwardings yes'";
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000387 *src++ = 0;
388 if (*src == 0)
389 src = ".";
Ben Lindstromc276c122002-12-23 02:14:51 +0000390 host = strrchr(argv[i], '@');
Damien Millerad833b32000-08-23 10:46:23 +1000391 len = strlen(ssh_program) + strlen(argv[i]) +
392 strlen(src) + (tuser ? strlen(tuser) : 0) +
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000393 strlen(thost) + strlen(targ) +
394 strlen(ssh_options) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100395 bp = xmalloc(len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396 if (host) {
397 *host++ = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100398 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000399 suser = argv[i];
400 if (*suser == '\0')
401 suser = pwd->pw_name;
Damien Miller00111382003-03-10 11:21:17 +1100402 else if (!okname(suser)) {
403 xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000404 continue;
Damien Miller00111382003-03-10 11:21:17 +1100405 }
406 if (tuser && !okname(tuser)) {
407 xfree(bp);
Damien Millereeeeb352003-02-24 11:52:58 +1100408 continue;
Damien Miller00111382003-03-10 11:21:17 +1100409 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000410 snprintf(bp, len,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000411 "%s%s %s -n "
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000412 "-l %s %s %s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000413 ssh_program, verbose_mode ? " -v" : "",
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000414 ssh_options, suser, host, cmd, src,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000415 tuser ? tuser : "", tuser ? "@" : "",
416 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100417 } else {
418 host = cleanhostname(argv[i]);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000419 snprintf(bp, len,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000420 "exec %s%s %s -n %s "
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000421 "%s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000422 ssh_program, verbose_mode ? " -v" : "",
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000423 ssh_options, host, cmd, src,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000424 tuser ? tuser : "", tuser ? "@" : "",
425 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100426 }
Damien Miller95def091999-11-25 00:26:21 +1100427 if (verbose_mode)
428 fprintf(stderr, "Executing: %s\n", bp);
Darren Tucker8654d162003-09-22 21:14:55 +1000429 if (system(bp) != 0)
430 errs = 1;
Damien Miller95def091999-11-25 00:26:21 +1100431 (void) xfree(bp);
432 } else { /* local to remote */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433 if (remin == -1) {
434 len = strlen(targ) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100435 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000436 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100437 host = cleanhostname(thost);
Damien Millerad833b32000-08-23 10:46:23 +1000438 if (do_cmd(host, tuser, bp, &remin,
439 &remout, argc) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100440 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441 if (response() < 0)
442 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100443 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444 }
Damien Miller95def091999-11-25 00:26:21 +1100445 source(1, argv + i);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000446 }
447 }
448}
449
450void
Damien Miller65d1f572003-06-04 22:51:08 +1000451tolocal(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000452{
453 int i, len;
454 char *bp, *host, *src, *suser;
455
456 for (i = 0; i < argc - 1; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100457 if (!(src = colon(argv[i]))) { /* Local to local. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000458 len = strlen(_PATH_CP) + strlen(argv[i]) +
Damien Millerad833b32000-08-23 10:46:23 +1000459 strlen(argv[argc - 1]) + 20;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000460 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000461 (void) snprintf(bp, len, "exec %s%s%s %s %s", _PATH_CP,
Damien Millerad833b32000-08-23 10:46:23 +1000462 iamrecursive ? " -r" : "", pflag ? " -p" : "",
463 argv[i], argv[argc - 1]);
Damien Miller95def091999-11-25 00:26:21 +1100464 if (verbose_mode)
465 fprintf(stderr, "Executing: %s\n", bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000466 if (system(bp))
467 ++errs;
Damien Miller95def091999-11-25 00:26:21 +1100468 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000469 continue;
470 }
471 *src++ = 0;
472 if (*src == 0)
473 src = ".";
Ben Lindstromc276c122002-12-23 02:14:51 +0000474 if ((host = strrchr(argv[i], '@')) == NULL) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000475 host = argv[i];
476 suser = NULL;
477 } else {
478 *host++ = 0;
479 suser = argv[i];
480 if (*suser == '\0')
481 suser = pwd->pw_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000482 }
Damien Miller34132e52000-01-14 15:45:46 +1100483 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000484 len = strlen(src) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100485 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000486 (void) snprintf(bp, len, "%s -f %s", cmd, src);
Damien Millerad833b32000-08-23 10:46:23 +1000487 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100488 (void) xfree(bp);
489 ++errs;
490 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491 }
Damien Miller95def091999-11-25 00:26:21 +1100492 xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000493 sink(1, argv + argc - 1);
Damien Miller95def091999-11-25 00:26:21 +1100494 (void) close(remin);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000495 remin = remout = -1;
496 }
497}
498
499void
Damien Miller65d1f572003-06-04 22:51:08 +1000500source(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000501{
502 struct stat stb;
503 static BUF buffer;
504 BUF *bp;
Damien Miller62d57f62003-01-10 21:43:24 +1100505 off_t i, amt, result, statbytes;
Ben Lindstrom4eda71d2001-04-22 17:13:20 +0000506 int fd, haderr, indx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000507 char *last, *name, buf[2048];
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000508 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000509
510 for (indx = 0; indx < argc; ++indx) {
Damien Miller95def091999-11-25 00:26:21 +1100511 name = argv[indx];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000512 statbytes = 0;
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000513 len = strlen(name);
514 while (len > 1 && name[len-1] == '/')
515 name[--len] = '\0';
Ben Lindstrom3e45e4c2001-10-03 17:30:58 +0000516 if (strchr(name, '\n') != NULL) {
517 run_err("%s: skipping, filename contains a newline",
518 name);
519 goto next;
520 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000521 if ((fd = open(name, O_RDONLY, 0)) < 0)
522 goto syserr;
523 if (fstat(fd, &stb) < 0) {
524syserr: run_err("%s: %s", name, strerror(errno));
525 goto next;
526 }
527 switch (stb.st_mode & S_IFMT) {
528 case S_IFREG:
529 break;
530 case S_IFDIR:
531 if (iamrecursive) {
532 rsource(name, &stb);
533 goto next;
534 }
535 /* FALLTHROUGH */
536 default:
537 run_err("%s: not a regular file", name);
538 goto next;
539 }
540 if ((last = strrchr(name, '/')) == NULL)
541 last = name;
542 else
543 ++last;
544 curfile = last;
545 if (pflag) {
546 /*
547 * Make it compatible with possible future
548 * versions expecting microseconds.
549 */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000550 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000551 (u_long) stb.st_mtime,
552 (u_long) stb.st_atime);
Darren Tucker9f63f222003-07-03 13:46:56 +1000553 (void) atomicio(vwrite, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554 if (response() < 0)
555 goto next;
556 }
557#define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
Ben Lindstroma4c57662001-03-17 00:10:20 +0000558 snprintf(buf, sizeof buf, "C%04o %lld %s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000559 (u_int) (stb.st_mode & FILEMODEMASK),
Ben Lindstrom0e7f4362003-04-28 23:30:43 +0000560 (int64_t)stb.st_size, last);
Damien Miller95def091999-11-25 00:26:21 +1100561 if (verbose_mode) {
562 fprintf(stderr, "Sending file modes: %s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100563 }
Darren Tucker9f63f222003-07-03 13:46:56 +1000564 (void) atomicio(vwrite, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565 if (response() < 0)
566 goto next;
567 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100568next: (void) close(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000569 continue;
570 }
Damien Miller62d57f62003-01-10 21:43:24 +1100571 if (showprogress)
572 start_progress_meter(curfile, stb.st_size, &statbytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000573 /* Keep writing after an error so that we stay sync'd up. */
574 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
575 amt = bp->cnt;
576 if (i + amt > stb.st_size)
577 amt = stb.st_size - i;
578 if (!haderr) {
Damien Millere247cc42000-05-07 12:03:14 +1000579 result = atomicio(read, fd, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000580 if (result != amt)
581 haderr = result >= 0 ? EIO : errno;
582 }
583 if (haderr)
Darren Tucker9f63f222003-07-03 13:46:56 +1000584 (void) atomicio(vwrite, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000585 else {
Darren Tucker9f63f222003-07-03 13:46:56 +1000586 result = atomicio(vwrite, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587 if (result != amt)
588 haderr = result >= 0 ? EIO : errno;
589 statbytes += result;
590 }
Ben Lindstromd54d9382003-03-21 00:55:32 +0000591 if (limitbw)
Damien Millerff74d742003-01-24 11:36:58 +1100592 bwlimit(amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000593 }
Damien Miller95def091999-11-25 00:26:21 +1100594 if (showprogress)
Damien Miller62d57f62003-01-10 21:43:24 +1100595 stop_progress_meter();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000596
597 if (close(fd) < 0 && !haderr)
598 haderr = errno;
599 if (!haderr)
Darren Tucker9f63f222003-07-03 13:46:56 +1000600 (void) atomicio(vwrite, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000601 else
602 run_err("%s: %s", name, strerror(haderr));
Damien Miller95def091999-11-25 00:26:21 +1100603 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000604 }
605}
606
607void
Damien Miller65d1f572003-06-04 22:51:08 +1000608rsource(char *name, struct stat *statp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000609{
610 DIR *dirp;
611 struct dirent *dp;
612 char *last, *vect[1], path[1100];
613
614 if (!(dirp = opendir(name))) {
615 run_err("%s: %s", name, strerror(errno));
616 return;
617 }
618 last = strrchr(name, '/');
619 if (last == 0)
620 last = name;
621 else
622 last++;
623 if (pflag) {
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000624 (void) snprintf(path, sizeof(path), "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000625 (u_long) statp->st_mtime,
626 (u_long) statp->st_atime);
Darren Tucker9f63f222003-07-03 13:46:56 +1000627 (void) atomicio(vwrite, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628 if (response() < 0) {
629 closedir(dirp);
630 return;
631 }
632 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000633 (void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000634 (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
Damien Miller95def091999-11-25 00:26:21 +1100635 if (verbose_mode)
636 fprintf(stderr, "Entering directory: %s", path);
Darren Tucker9f63f222003-07-03 13:46:56 +1000637 (void) atomicio(vwrite, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000638 if (response() < 0) {
639 closedir(dirp);
640 return;
641 }
Ben Lindstrombd472262001-03-29 00:39:55 +0000642 while ((dp = readdir(dirp)) != NULL) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000643 if (dp->d_ino == 0)
644 continue;
645 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
646 continue;
647 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
648 run_err("%s/%s: name too long", name, dp->d_name);
649 continue;
650 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000651 (void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000652 vect[0] = path;
653 source(1, vect);
654 }
Damien Miller95def091999-11-25 00:26:21 +1100655 (void) closedir(dirp);
Darren Tucker9f63f222003-07-03 13:46:56 +1000656 (void) atomicio(vwrite, remout, "E\n", 2);
Damien Miller95def091999-11-25 00:26:21 +1100657 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000658}
659
660void
Damien Millerff74d742003-01-24 11:36:58 +1100661bwlimit(int amount)
662{
663 static struct timeval bwstart, bwend;
664 static int lamt, thresh = 16384;
665 u_int64_t wait;
666 struct timespec ts, rm;
667
668 if (!timerisset(&bwstart)) {
669 gettimeofday(&bwstart, NULL);
670 return;
671 }
672
673 lamt += amount;
674 if (lamt < thresh)
675 return;
676
677 gettimeofday(&bwend, NULL);
678 timersub(&bwend, &bwstart, &bwend);
679 if (!timerisset(&bwend))
680 return;
681
682 lamt *= 8;
Ben Lindstromd54d9382003-03-21 00:55:32 +0000683 wait = (double)1000000L * lamt / limitbw;
Damien Millerff74d742003-01-24 11:36:58 +1100684
685 bwstart.tv_sec = wait / 1000000L;
686 bwstart.tv_usec = wait % 1000000L;
687
688 if (timercmp(&bwstart, &bwend, >)) {
689 timersub(&bwstart, &bwend, &bwend);
690
691 /* Adjust the wait time */
692 if (bwend.tv_sec) {
693 thresh /= 2;
694 if (thresh < 2048)
695 thresh = 2048;
696 } else if (bwend.tv_usec < 100) {
697 thresh *= 2;
698 if (thresh > 32768)
699 thresh = 32768;
700 }
701
702 TIMEVAL_TO_TIMESPEC(&bwend, &ts);
703 while (nanosleep(&ts, &rm) == -1) {
704 if (errno != EINTR)
705 break;
706 ts = rm;
707 }
708 }
709
710 lamt = 0;
711 gettimeofday(&bwstart, NULL);
712}
713
714void
Damien Miller65d1f572003-06-04 22:51:08 +1000715sink(int argc, char **argv)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000716{
717 static BUF buffer;
718 struct stat stb;
Damien Miller95def091999-11-25 00:26:21 +1100719 enum {
720 YES, NO, DISPLAYED
721 } wrerr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000722 BUF *bp;
723 off_t i, j;
724 int amt, count, exists, first, mask, mode, ofd, omode;
Damien Miller62d57f62003-01-10 21:43:24 +1100725 off_t size, statbytes;
Damien Millercaf6dd62000-08-29 11:33:50 +1100726 int setimes, targisdir, wrerrno = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000727 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
Damien Miller62cee002000-09-23 17:15:56 +1100728 struct timeval tv[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000729
Ben Lindstromf719a202001-04-14 23:14:22 +0000730#define atime tv[0]
731#define mtime tv[1]
Ben Lindstrom7d5ed3a2001-06-25 04:28:30 +0000732#define SCREWUP(str) do { why = str; goto screwup; } while (0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000733
734 setimes = targisdir = 0;
735 mask = umask(0);
736 if (!pflag)
Damien Miller95def091999-11-25 00:26:21 +1100737 (void) umask(mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000738 if (argc != 1) {
739 run_err("ambiguous target");
740 exit(1);
741 }
742 targ = *argv;
743 if (targetshouldbedirectory)
744 verifydir(targ);
Damien Miller95def091999-11-25 00:26:21 +1100745
Darren Tucker9f63f222003-07-03 13:46:56 +1000746 (void) atomicio(vwrite, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000747 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
748 targisdir = 1;
749 for (first = 1;; first = 0) {
750 cp = buf;
Damien Millere247cc42000-05-07 12:03:14 +1000751 if (atomicio(read, remin, cp, 1) <= 0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000752 return;
753 if (*cp++ == '\n')
754 SCREWUP("unexpected <newline>");
755 do {
Damien Millere247cc42000-05-07 12:03:14 +1000756 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000757 SCREWUP("lost connection");
758 *cp++ = ch;
759 } while (cp < &buf[sizeof(buf) - 1] && ch != '\n');
760 *cp = 0;
761
762 if (buf[0] == '\01' || buf[0] == '\02') {
763 if (iamremote == 0)
Darren Tucker9f63f222003-07-03 13:46:56 +1000764 (void) atomicio(vwrite, STDERR_FILENO,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000765 buf + 1, strlen(buf + 1));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000766 if (buf[0] == '\02')
767 exit(1);
768 ++errs;
769 continue;
770 }
771 if (buf[0] == 'E') {
Darren Tucker9f63f222003-07-03 13:46:56 +1000772 (void) atomicio(vwrite, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000773 return;
774 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000775 if (ch == '\n')
776 *--cp = 0;
777
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000778 cp = buf;
779 if (*cp == 'T') {
780 setimes++;
781 cp++;
Ben Lindstromf719a202001-04-14 23:14:22 +0000782 mtime.tv_sec = strtol(cp, &cp, 10);
783 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000784 SCREWUP("mtime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000785 mtime.tv_usec = strtol(cp, &cp, 10);
786 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000787 SCREWUP("mtime.usec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000788 atime.tv_sec = strtol(cp, &cp, 10);
789 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000790 SCREWUP("atime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000791 atime.tv_usec = strtol(cp, &cp, 10);
792 if (!cp || *cp++ != '\0')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793 SCREWUP("atime.usec not delimited");
Darren Tucker9f63f222003-07-03 13:46:56 +1000794 (void) atomicio(vwrite, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000795 continue;
796 }
797 if (*cp != 'C' && *cp != 'D') {
798 /*
799 * Check for the case "rcp remote:foo\* local:bar".
800 * In this case, the line "No match." can be returned
801 * by the shell before the rcp command on the remote is
802 * executed so the ^Aerror_message convention isn't
803 * followed.
804 */
805 if (first) {
806 run_err("%s", cp);
807 exit(1);
808 }
809 SCREWUP("expected control record");
810 }
811 mode = 0;
812 for (++cp; cp < buf + 5; cp++) {
813 if (*cp < '0' || *cp > '7')
814 SCREWUP("bad mode");
815 mode = (mode << 3) | (*cp - '0');
816 }
817 if (*cp++ != ' ')
818 SCREWUP("mode not delimited");
819
Ben Lindstrombd472262001-03-29 00:39:55 +0000820 for (size = 0; isdigit(*cp);)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000821 size = size * 10 + (*cp++ - '0');
822 if (*cp++ != ' ')
823 SCREWUP("size not delimited");
824 if (targisdir) {
825 static char *namebuf;
826 static int cursize;
827 size_t need;
828
829 need = strlen(targ) + strlen(cp) + 250;
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000830 if (need > cursize) {
831 if (namebuf)
832 xfree(namebuf);
Damien Miller95def091999-11-25 00:26:21 +1100833 namebuf = xmalloc(need);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000834 cursize = need;
835 }
836 (void) snprintf(namebuf, need, "%s%s%s", targ,
Ben Lindstromde3895d2002-04-06 18:29:59 +0000837 strcmp(targ, "/") ? "/" : "", cp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000838 np = namebuf;
839 } else
840 np = targ;
841 curfile = cp;
842 exists = stat(np, &stb) == 0;
843 if (buf[0] == 'D') {
844 int mod_flag = pflag;
845 if (exists) {
846 if (!S_ISDIR(stb.st_mode)) {
847 errno = ENOTDIR;
848 goto bad;
849 }
850 if (pflag)
Damien Miller95def091999-11-25 00:26:21 +1100851 (void) chmod(np, mode);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000852 } else {
Damien Miller95def091999-11-25 00:26:21 +1100853 /* Handle copying from a read-only
854 directory */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000855 mod_flag = 1;
856 if (mkdir(np, mode | S_IRWXU) < 0)
857 goto bad;
858 }
Ben Lindstrom550bc542001-02-10 21:50:00 +0000859 vect[0] = xstrdup(np);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000860 sink(1, vect);
861 if (setimes) {
862 setimes = 0;
Damien Miller225736c2001-02-19 21:51:08 +1100863 if (utimes(vect[0], tv) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100864 run_err("%s: set times: %s",
Damien Miller225736c2001-02-19 21:51:08 +1100865 vect[0], strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000866 }
867 if (mod_flag)
Damien Miller225736c2001-02-19 21:51:08 +1100868 (void) chmod(vect[0], mode);
869 if (vect[0])
870 xfree(vect[0]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000871 continue;
872 }
873 omode = mode;
874 mode |= S_IWRITE;
Ben Lindstrom7bad55b2001-06-05 19:31:41 +0000875 if ((ofd = open(np, O_WRONLY|O_CREAT, mode)) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000876bad: run_err("%s: %s", np, strerror(errno));
877 continue;
878 }
Darren Tucker9f63f222003-07-03 13:46:56 +1000879 (void) atomicio(vwrite, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000880 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100881 (void) close(ofd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000882 continue;
883 }
884 cp = bp->buf;
885 wrerr = NO;
886
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000887 statbytes = 0;
Damien Miller62d57f62003-01-10 21:43:24 +1100888 if (showprogress)
889 start_progress_meter(curfile, size, &statbytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000890 for (count = i = 0; i < size; i += 4096) {
891 amt = 4096;
892 if (i + amt > size)
893 amt = size - i;
894 count += amt;
895 do {
Damien Miller69b69aa2000-10-28 14:19:58 +1100896 j = read(remin, cp, amt);
Ben Lindstrom2772a3f2001-08-06 21:17:12 +0000897 if (j == -1 && (errno == EINTR ||
898 errno == EAGAIN)) {
Damien Miller69b69aa2000-10-28 14:19:58 +1100899 continue;
900 } else if (j <= 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000901 run_err("%s", j ? strerror(errno) :
Ben Lindstrombd472262001-03-29 00:39:55 +0000902 "dropped connection");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000903 exit(1);
904 }
905 amt -= j;
906 cp += j;
Damien Miller95def091999-11-25 00:26:21 +1100907 statbytes += j;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000908 } while (amt > 0);
Damien Millerff74d742003-01-24 11:36:58 +1100909
Ben Lindstromd54d9382003-03-21 00:55:32 +0000910 if (limitbw)
Damien Millerff74d742003-01-24 11:36:58 +1100911 bwlimit(4096);
912
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000913 if (count == bp->cnt) {
914 /* Keep reading so we stay sync'd up. */
915 if (wrerr == NO) {
Darren Tucker9f63f222003-07-03 13:46:56 +1000916 j = atomicio(vwrite, ofd, bp->buf, count);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000917 if (j != count) {
918 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100919 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000920 }
921 }
922 count = 0;
923 cp = bp->buf;
924 }
925 }
926 if (showprogress)
Damien Miller62d57f62003-01-10 21:43:24 +1100927 stop_progress_meter();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000928 if (count != 0 && wrerr == NO &&
Darren Tucker9f63f222003-07-03 13:46:56 +1000929 (j = atomicio(vwrite, ofd, bp->buf, count)) != count) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000930 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100931 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000932 }
Damien Miller86b781c2003-01-10 21:44:48 +1100933 if (wrerr == NO && ftruncate(ofd, size) != 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934 run_err("%s: truncate: %s", np, strerror(errno));
935 wrerr = DISPLAYED;
936 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000937 if (pflag) {
938 if (exists || omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100939#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000940 if (fchmod(ofd, omode))
Damien Miller78315eb2000-09-29 23:01:36 +1100941#else /* HAVE_FCHMOD */
942 if (chmod(np, omode))
943#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000944 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000945 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000946 } else {
947 if (!exists && omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100948#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000949 if (fchmod(ofd, omode & ~mask))
Damien Miller78315eb2000-09-29 23:01:36 +1100950#else /* HAVE_FCHMOD */
951 if (chmod(np, omode & ~mask))
952#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000953 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000954 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000955 }
Damien Millerbe484b52000-07-15 14:14:16 +1000956 if (close(ofd) == -1) {
957 wrerr = YES;
958 wrerrno = errno;
959 }
Damien Miller95def091999-11-25 00:26:21 +1100960 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000961 if (setimes && wrerr == NO) {
962 setimes = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100963 if (utimes(np, tv) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000964 run_err("%s: set times: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000965 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000966 wrerr = DISPLAYED;
967 }
968 }
Damien Miller95def091999-11-25 00:26:21 +1100969 switch (wrerr) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000970 case YES:
971 run_err("%s: %s", np, strerror(wrerrno));
972 break;
973 case NO:
Darren Tucker9f63f222003-07-03 13:46:56 +1000974 (void) atomicio(vwrite, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000975 break;
976 case DISPLAYED:
977 break;
978 }
979 }
980screwup:
981 run_err("protocol error: %s", why);
982 exit(1);
983}
984
985int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000986response(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000987{
988 char ch, *cp, resp, rbuf[2048];
989
Damien Millere247cc42000-05-07 12:03:14 +1000990 if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000991 lostconn(0);
992
993 cp = rbuf;
Damien Miller95def091999-11-25 00:26:21 +1100994 switch (resp) {
995 case 0: /* ok */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000996 return (0);
997 default:
998 *cp++ = resp;
999 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +11001000 case 1: /* error, followed by error msg */
1001 case 2: /* fatal error, "" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001002 do {
Damien Millere247cc42000-05-07 12:03:14 +10001003 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001004 lostconn(0);
1005 *cp++ = ch;
1006 } while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
1007
1008 if (!iamremote)
Darren Tucker9f63f222003-07-03 13:46:56 +10001009 (void) atomicio(vwrite, STDERR_FILENO, rbuf, cp - rbuf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001010 ++errs;
1011 if (resp == 1)
1012 return (-1);
1013 exit(1);
1014 }
1015 /* NOTREACHED */
1016}
1017
1018void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001019usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001020{
Ben Lindstrom1e243242001-09-18 05:38:44 +00001021 (void) fprintf(stderr,
Darren Tucker1f203942003-10-15 15:50:42 +10001022 "usage: scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]\n"
1023 " [-l limit] [-o ssh_option] [-P port] [-S program]\n"
Ben Lindstrom45933dd2002-06-21 00:10:58 +00001024 " [[user@]host1:]file1 [...] [[user@]host2:]file2\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001025 exit(1);
1026}
1027
1028void
Damien Miller95def091999-11-25 00:26:21 +11001029run_err(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001030{
1031 static FILE *fp;
1032 va_list ap;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001033
1034 ++errs;
1035 if (fp == NULL && !(fp = fdopen(remout, "w")))
1036 return;
Damien Miller95def091999-11-25 00:26:21 +11001037 (void) fprintf(fp, "%c", 0x01);
1038 (void) fprintf(fp, "scp: ");
Damien Miller03783f01999-12-31 09:16:40 +11001039 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +11001040 (void) vfprintf(fp, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +11001041 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +11001042 (void) fprintf(fp, "\n");
1043 (void) fflush(fp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001044
Damien Miller95def091999-11-25 00:26:21 +11001045 if (!iamremote) {
Damien Miller03783f01999-12-31 09:16:40 +11001046 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +11001047 vfprintf(stderr, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +11001048 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +11001049 fprintf(stderr, "\n");
1050 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001051}
1052
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001053void
Damien Miller65d1f572003-06-04 22:51:08 +10001054verifydir(char *cp)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001055{
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
Damien Miller65d1f572003-06-04 22:51:08 +10001068okname(char *cp0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001069{
1070 int c;
1071 char *cp;
1072
1073 cp = cp0;
1074 do {
Ben Lindstrom7d5ed3a2001-06-25 04:28:30 +00001075 c = (int)*cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001076 if (c & 0200)
1077 goto bad;
Damien Millereeeeb352003-02-24 11:52:58 +11001078 if (!isalpha(c) && !isdigit(c)) {
1079 switch (c) {
1080 case '\'':
1081 case '"':
1082 case '`':
1083 case ' ':
1084 case '#':
1085 goto bad;
1086 default:
1087 break;
1088 }
1089 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001090 } while (*++cp);
1091 return (1);
1092
Damien Miller98c7ad62000-03-09 21:27:49 +11001093bad: fprintf(stderr, "%s: invalid user name\n", cp0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001094 return (0);
1095}
1096
1097BUF *
Damien Miller65d1f572003-06-04 22:51:08 +10001098allocbuf(BUF *bp, int fd, int blksize)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001099{
1100 size_t size;
Tim Rice13aae5e2001-10-21 17:53:58 -07001101#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001102 struct stat stb;
1103
1104 if (fstat(fd, &stb) < 0) {
1105 run_err("fstat: %s", strerror(errno));
1106 return (0);
1107 }
Ben Lindstrom418e0782002-12-23 02:22:09 +00001108 size = roundup(stb.st_blksize, blksize);
1109 if (size == 0)
Damien Miller95def091999-11-25 00:26:21 +11001110 size = blksize;
Tim Rice13aae5e2001-10-21 17:53:58 -07001111#else /* HAVE_STRUCT_STAT_ST_BLKSIZE */
Kevin Stevesef4eea92001-02-05 12:42:17 +00001112 size = blksize;
Tim Rice13aae5e2001-10-21 17:53:58 -07001113#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001114 if (bp->cnt >= size)
1115 return (bp);
Damien Miller95def091999-11-25 00:26:21 +11001116 if (bp->buf == NULL)
1117 bp->buf = xmalloc(size);
1118 else
1119 bp->buf = xrealloc(bp->buf, size);
Ben Lindstrom5fccbc22001-09-12 17:49:48 +00001120 memset(bp->buf, 0, size);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001121 bp->cnt = size;
1122 return (bp);
1123}
1124
1125void
Damien Miller65d1f572003-06-04 22:51:08 +10001126lostconn(int signo)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001127{
1128 if (!iamremote)
Ben Lindstrom738f51e2001-06-21 03:08:58 +00001129 write(STDERR_FILENO, "lost connection\n", 16);
1130 if (signo)
1131 _exit(1);
1132 else
1133 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001134}