blob: 42ebec0fee4fc053337e5e466112314a9e91f948 [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.
55 * 3. All advertising materials mentioning features or use of this software
56 * must display the following acknowledgement:
57 * This product includes software developed by the University of
58 * California, Berkeley and its contributors.
59 * 4. Neither the name of the University nor the names of its contributors
60 * may be used to endorse or promote products derived from this software
61 * without specific prior written permission.
62 *
63 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
64 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
65 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
66 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
67 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
68 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
69 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
70 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
71 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
72 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
73 * SUCH DAMAGE.
74 *
Damien Millerd4a8b7e1999-10-27 13:42:43 +100075 */
76
77#include "includes.h"
Damien Miller00111382003-03-10 11:21:17 +110078RCSID("$OpenBSD: scp.c,v 1.102 2003/03/05 22:33:43 markus Exp $");
Damien Millerd4a8b7e1999-10-27 13:42:43 +100079
Damien Millerd4a8b7e1999-10-27 13:42:43 +100080#include "xmalloc.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000081#include "atomicio.h"
82#include "pathnames.h"
83#include "log.h"
Kevin Steves93c17d92001-02-18 03:55:16 +000084#include "misc.h"
Damien Miller62d57f62003-01-10 21:43:24 +110085#include "progressmeter.h"
Damien Millerd4a8b7e1999-10-27 13:42:43 +100086
Ben Lindstrom49a79c02000-11-17 03:47:20 +000087#ifdef HAVE___PROGNAME
88extern char *__progname;
89#else
90char *__progname;
91#endif
92
Damien Millerff74d742003-01-24 11:36:58 +110093void bwlimit(int);
94
Ben Lindstrom387c4722001-05-08 20:27:25 +000095/* Struct for addargs */
96arglist args;
Damien Miller874d77b2000-10-14 16:23:11 +110097
Damien Millerff74d742003-01-24 11:36:58 +110098/* Bandwidth limit */
Ben Lindstromd54d9382003-03-21 00:55:32 +000099off_t limitbw = 0;
Damien Millerff74d742003-01-24 11:36:58 +1100100
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101/* Name of current file being transferred. */
102char *curfile;
103
104/* This is set to non-zero to enable verbose mode. */
Damien Miller95def091999-11-25 00:26:21 +1100105int verbose_mode = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000106
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000107/* This is set to zero if the progressmeter is not desired. */
108int showprogress = 1;
109
Damien Millerad833b32000-08-23 10:46:23 +1000110/* This is the program to execute for the secured connection. ("ssh" or -S) */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000111char *ssh_program = _PATH_SSH_PROGRAM;
Damien Millerad833b32000-08-23 10:46:23 +1000112
Ben Lindstrom007eb912002-11-09 15:54:08 +0000113/* This is used to store the pid of ssh_program */
114pid_t do_cmd_pid;
115
Damien Miller5428f641999-11-25 11:54:57 +1100116/*
117 * This function executes the given command as the specified user on the
118 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
119 * assigns the input and output file descriptors on success.
120 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
Damien Miller4af51302000-04-16 11:18:38 +1000122int
Damien Millerad833b32000-08-23 10:46:23 +1000123do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000124{
Damien Miller95def091999-11-25 00:26:21 +1100125 int pin[2], pout[2], reserved[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000126
Damien Miller95def091999-11-25 00:26:21 +1100127 if (verbose_mode)
Ben Lindstrom2772a3f2001-08-06 21:17:12 +0000128 fprintf(stderr,
129 "Executing: program %s host %s, user %s, command %s\n",
130 ssh_program, host,
131 remuser ? remuser : "(unspecified)", cmd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000132
Damien Miller5428f641999-11-25 11:54:57 +1100133 /*
134 * Reserve two descriptors so that the real pipes won't get
135 * descriptors 0 and 1 because that will screw up dup2 below.
136 */
Damien Miller95def091999-11-25 00:26:21 +1100137 pipe(reserved);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000138
Damien Miller95def091999-11-25 00:26:21 +1100139 /* Create a socket pair for communicating with ssh. */
140 if (pipe(pin) < 0)
141 fatal("pipe: %s", strerror(errno));
142 if (pipe(pout) < 0)
143 fatal("pipe: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Damien Miller95def091999-11-25 00:26:21 +1100145 /* Free the reserved descriptors. */
146 close(reserved[0]);
147 close(reserved[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Damien Miller95def091999-11-25 00:26:21 +1100149 /* For a child to execute the command on the remote host using ssh. */
Ben Lindstrom007eb912002-11-09 15:54:08 +0000150 do_cmd_pid = fork();
151 if (do_cmd_pid == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100152 /* Child. */
153 close(pin[1]);
154 close(pout[0]);
155 dup2(pin[0], 0);
156 dup2(pout[1], 1);
157 close(pin[0]);
158 close(pout[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000159
Damien Miller874d77b2000-10-14 16:23:11 +1100160 args.list[0] = ssh_program;
161 if (remuser != NULL)
Ben Lindstrom387c4722001-05-08 20:27:25 +0000162 addargs(&args, "-l%s", remuser);
163 addargs(&args, "%s", host);
164 addargs(&args, "%s", cmd);
Damien Miller95def091999-11-25 00:26:21 +1100165
Damien Miller874d77b2000-10-14 16:23:11 +1100166 execvp(ssh_program, args.list);
Damien Millerad833b32000-08-23 10:46:23 +1000167 perror(ssh_program);
Damien Miller95def091999-11-25 00:26:21 +1100168 exit(1);
Ben Lindstrom007eb912002-11-09 15:54:08 +0000169 } else if (do_cmd_pid == -1) {
170 fatal("fork: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171 }
Damien Miller95def091999-11-25 00:26:21 +1100172 /* Parent. Close the other side, and return the local side. */
173 close(pin[0]);
174 *fdout = pin[1];
175 close(pout[1]);
176 *fdin = pout[0];
177 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000178}
179
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000180typedef struct {
181 int cnt;
182 char *buf;
183} BUF;
184
Damien Miller95def091999-11-25 00:26:21 +1100185BUF *allocbuf(BUF *, int, int);
Damien Miller95def091999-11-25 00:26:21 +1100186void lostconn(int);
187void nospace(void);
188int okname(char *);
189void run_err(const char *,...);
190void verifydir(char *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000192struct passwd *pwd;
Damien Miller95def091999-11-25 00:26:21 +1100193uid_t userid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000194int errs, remin, remout;
195int pflag, iamremote, iamrecursive, targetshouldbedirectory;
196
197#define CMDNEEDS 64
198char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
199
Damien Miller95def091999-11-25 00:26:21 +1100200int response(void);
201void rsource(char *, struct stat *);
202void sink(int, char *[]);
203void source(int, char *[]);
204void tolocal(int, char *[]);
205void toremote(char *, int, char *[]);
206void usage(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207
208int
209main(argc, argv)
210 int argc;
211 char *argv[];
212{
Ben Lindstrom007eb912002-11-09 15:54:08 +0000213 int ch, fflag, tflag, status;
Damien Millerff74d742003-01-24 11:36:58 +1100214 double speed;
215 char *targ, *endp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000216 extern char *optarg;
217 extern int optind;
218
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000219 __progname = get_progname(argv[0]);
220
Damien Miller874d77b2000-10-14 16:23:11 +1100221 args.list = NULL;
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000222 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000223 addargs(&args, "-x");
Ben Lindstrom4213c552001-09-12 18:45:09 +0000224 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000225 addargs(&args, "-oClearAllForwardings yes");
Damien Miller874d77b2000-10-14 16:23:11 +1100226
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000227 fflag = tflag = 0;
Damien Miller8e121472003-01-24 11:37:38 +1100228 while ((ch = getopt(argc, argv, "dfl:prtvBCc:i:P:q1246S:o:F:")) != -1)
Damien Miller95def091999-11-25 00:26:21 +1100229 switch (ch) {
230 /* User-visible flags. */
Damien Miller8e121472003-01-24 11:37:38 +1100231 case '1':
232 case '2':
Damien Miller34132e52000-01-14 15:45:46 +1100233 case '4':
Damien Miller34132e52000-01-14 15:45:46 +1100234 case '6':
Damien Miller874d77b2000-10-14 16:23:11 +1100235 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000236 addargs(&args, "-%c", ch);
Damien Miller874d77b2000-10-14 16:23:11 +1100237 break;
238 case 'o':
239 case 'c':
240 case 'i':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000241 case 'F':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000242 addargs(&args, "-%c%s", ch, optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100243 break;
244 case 'P':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000245 addargs(&args, "-p%s", optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100246 break;
247 case 'B':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000248 addargs(&args, "-oBatchmode yes");
Damien Miller34132e52000-01-14 15:45:46 +1100249 break;
Damien Millerff74d742003-01-24 11:36:58 +1100250 case 'l':
251 speed = strtod(optarg, &endp);
252 if (speed <= 0 || *endp != '\0')
253 usage();
Ben Lindstromd54d9382003-03-21 00:55:32 +0000254 limitbw = speed * 1024;
Damien Millerff74d742003-01-24 11:36:58 +1100255 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000256 case 'p':
257 pflag = 1;
258 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000259 case 'r':
260 iamrecursive = 1;
261 break;
Damien Millerad833b32000-08-23 10:46:23 +1000262 case 'S':
Damien Miller874d77b2000-10-14 16:23:11 +1100263 ssh_program = xstrdup(optarg);
264 break;
265 case 'v':
Ben Lindstrom9cc94642001-06-09 01:15:11 +0000266 addargs(&args, "-v");
Damien Miller874d77b2000-10-14 16:23:11 +1100267 verbose_mode = 1;
268 break;
269 case 'q':
270 showprogress = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000271 break;
272
Damien Miller95def091999-11-25 00:26:21 +1100273 /* Server options. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274 case 'd':
275 targetshouldbedirectory = 1;
276 break;
Damien Miller95def091999-11-25 00:26:21 +1100277 case 'f': /* "from" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000278 iamremote = 1;
279 fflag = 1;
280 break;
Damien Miller95def091999-11-25 00:26:21 +1100281 case 't': /* "to" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282 iamremote = 1;
283 tflag = 1;
Damien Miller402b3312001-04-14 00:28:42 +1000284#ifdef HAVE_CYGWIN
285 setmode(0, O_BINARY);
286#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000288 default:
289 usage();
290 }
291 argc -= optind;
292 argv += optind;
293
294 if ((pwd = getpwuid(userid = getuid())) == NULL)
Damien Miller95def091999-11-25 00:26:21 +1100295 fatal("unknown user %d", (int) userid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000296
Damien Miller95def091999-11-25 00:26:21 +1100297 if (!isatty(STDERR_FILENO))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298 showprogress = 0;
299
300 remin = STDIN_FILENO;
301 remout = STDOUT_FILENO;
302
Kevin Stevesef4eea92001-02-05 12:42:17 +0000303 if (fflag) {
Damien Miller95def091999-11-25 00:26:21 +1100304 /* Follow "protocol", send data. */
305 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000306 source(argc, argv);
307 exit(errs != 0);
308 }
Damien Miller95def091999-11-25 00:26:21 +1100309 if (tflag) {
310 /* Receive data. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000311 sink(argc, argv);
312 exit(errs != 0);
313 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314 if (argc < 2)
315 usage();
316 if (argc > 2)
317 targetshouldbedirectory = 1;
318
319 remin = remout = -1;
Ben Lindstrom007eb912002-11-09 15:54:08 +0000320 do_cmd_pid = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000321 /* Command to be executed on remote system using "ssh". */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000322 (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
323 verbose_mode ? " -v" : "",
Damien Millerad833b32000-08-23 10:46:23 +1000324 iamrecursive ? " -r" : "", pflag ? " -p" : "",
325 targetshouldbedirectory ? " -d" : "");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000326
Damien Miller95def091999-11-25 00:26:21 +1100327 (void) signal(SIGPIPE, lostconn);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000328
329 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
330 toremote(targ, argc, argv);
331 else {
Damien Miller95def091999-11-25 00:26:21 +1100332 tolocal(argc, argv); /* Dest is local host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000333 if (targetshouldbedirectory)
334 verifydir(argv[argc - 1]);
335 }
Ben Lindstrom007eb912002-11-09 15:54:08 +0000336 /*
337 * Finally check the exit status of the ssh process, if one was forked
338 * and no error has occured yet
339 */
340 if (do_cmd_pid != -1 && errs == 0) {
341 if (remin != -1)
342 (void) close(remin);
343 if (remout != -1)
344 (void) close(remout);
345 if (waitpid(do_cmd_pid, &status, 0) == -1)
346 errs = 1;
347 else {
348 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
349 errs = 1;
350 }
351 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000352 exit(errs != 0);
353}
354
355void
356toremote(targ, argc, argv)
357 char *targ, *argv[];
358 int argc;
359{
360 int i, len;
361 char *bp, *host, *src, *suser, *thost, *tuser;
362
363 *targ++ = 0;
364 if (*targ == 0)
365 targ = ".";
366
Ben Lindstromc276c122002-12-23 02:14:51 +0000367 if ((thost = strrchr(argv[argc - 1], '@'))) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000368 /* user@host */
369 *thost++ = 0;
370 tuser = argv[argc - 1];
371 if (*tuser == '\0')
372 tuser = NULL;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000373 } else {
374 thost = argv[argc - 1];
375 tuser = NULL;
376 }
377
378 for (i = 0; i < argc - 1; i++) {
379 src = colon(argv[i]);
Damien Miller95def091999-11-25 00:26:21 +1100380 if (src) { /* remote to remote */
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000381 static char *ssh_options =
Ben Lindstromaf0c6d62002-06-09 20:06:29 +0000382 "-x -o'ClearAllForwardings yes'";
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383 *src++ = 0;
384 if (*src == 0)
385 src = ".";
Ben Lindstromc276c122002-12-23 02:14:51 +0000386 host = strrchr(argv[i], '@');
Damien Millerad833b32000-08-23 10:46:23 +1000387 len = strlen(ssh_program) + strlen(argv[i]) +
388 strlen(src) + (tuser ? strlen(tuser) : 0) +
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000389 strlen(thost) + strlen(targ) +
390 strlen(ssh_options) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100391 bp = xmalloc(len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000392 if (host) {
393 *host++ = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100394 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000395 suser = argv[i];
396 if (*suser == '\0')
397 suser = pwd->pw_name;
Damien Miller00111382003-03-10 11:21:17 +1100398 else if (!okname(suser)) {
399 xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000400 continue;
Damien Miller00111382003-03-10 11:21:17 +1100401 }
402 if (tuser && !okname(tuser)) {
403 xfree(bp);
Damien Millereeeeb352003-02-24 11:52:58 +1100404 continue;
Damien Miller00111382003-03-10 11:21:17 +1100405 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000406 snprintf(bp, len,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000407 "%s%s %s -n "
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000408 "-l %s %s %s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000409 ssh_program, verbose_mode ? " -v" : "",
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000410 ssh_options, suser, host, cmd, src,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000411 tuser ? tuser : "", tuser ? "@" : "",
412 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100413 } else {
414 host = cleanhostname(argv[i]);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000415 snprintf(bp, len,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000416 "exec %s%s %s -n %s "
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000417 "%s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000418 ssh_program, verbose_mode ? " -v" : "",
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000419 ssh_options, host, cmd, src,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000420 tuser ? tuser : "", tuser ? "@" : "",
421 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100422 }
Damien Miller95def091999-11-25 00:26:21 +1100423 if (verbose_mode)
424 fprintf(stderr, "Executing: %s\n", bp);
425 (void) system(bp);
426 (void) xfree(bp);
427 } else { /* local to remote */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000428 if (remin == -1) {
429 len = strlen(targ) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100430 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000431 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100432 host = cleanhostname(thost);
Damien Millerad833b32000-08-23 10:46:23 +1000433 if (do_cmd(host, tuser, bp, &remin,
434 &remout, argc) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100435 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000436 if (response() < 0)
437 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100438 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439 }
Damien Miller95def091999-11-25 00:26:21 +1100440 source(1, argv + i);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441 }
442 }
443}
444
445void
446tolocal(argc, argv)
447 int argc;
448 char *argv[];
449{
450 int i, len;
451 char *bp, *host, *src, *suser;
452
453 for (i = 0; i < argc - 1; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100454 if (!(src = colon(argv[i]))) { /* Local to local. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000455 len = strlen(_PATH_CP) + strlen(argv[i]) +
Damien Millerad833b32000-08-23 10:46:23 +1000456 strlen(argv[argc - 1]) + 20;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000457 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000458 (void) snprintf(bp, len, "exec %s%s%s %s %s", _PATH_CP,
Damien Millerad833b32000-08-23 10:46:23 +1000459 iamrecursive ? " -r" : "", pflag ? " -p" : "",
460 argv[i], argv[argc - 1]);
Damien Miller95def091999-11-25 00:26:21 +1100461 if (verbose_mode)
462 fprintf(stderr, "Executing: %s\n", bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000463 if (system(bp))
464 ++errs;
Damien Miller95def091999-11-25 00:26:21 +1100465 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000466 continue;
467 }
468 *src++ = 0;
469 if (*src == 0)
470 src = ".";
Ben Lindstromc276c122002-12-23 02:14:51 +0000471 if ((host = strrchr(argv[i], '@')) == NULL) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472 host = argv[i];
473 suser = NULL;
474 } else {
475 *host++ = 0;
476 suser = argv[i];
477 if (*suser == '\0')
478 suser = pwd->pw_name;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000479 }
Damien Miller34132e52000-01-14 15:45:46 +1100480 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481 len = strlen(src) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100482 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000483 (void) snprintf(bp, len, "%s -f %s", cmd, src);
Damien Millerad833b32000-08-23 10:46:23 +1000484 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100485 (void) xfree(bp);
486 ++errs;
487 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488 }
Damien Miller95def091999-11-25 00:26:21 +1100489 xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490 sink(1, argv + argc - 1);
Damien Miller95def091999-11-25 00:26:21 +1100491 (void) close(remin);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492 remin = remout = -1;
493 }
494}
495
496void
497source(argc, argv)
498 int argc;
499 char *argv[];
500{
501 struct stat stb;
502 static BUF buffer;
503 BUF *bp;
Damien Miller62d57f62003-01-10 21:43:24 +1100504 off_t i, amt, result, statbytes;
Ben Lindstrom4eda71d2001-04-22 17:13:20 +0000505 int fd, haderr, indx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000506 char *last, *name, buf[2048];
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000507 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000508
509 for (indx = 0; indx < argc; ++indx) {
Damien Miller95def091999-11-25 00:26:21 +1100510 name = argv[indx];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000511 statbytes = 0;
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000512 len = strlen(name);
513 while (len > 1 && name[len-1] == '/')
514 name[--len] = '\0';
Ben Lindstrom3e45e4c2001-10-03 17:30:58 +0000515 if (strchr(name, '\n') != NULL) {
516 run_err("%s: skipping, filename contains a newline",
517 name);
518 goto next;
519 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000520 if ((fd = open(name, O_RDONLY, 0)) < 0)
521 goto syserr;
522 if (fstat(fd, &stb) < 0) {
523syserr: run_err("%s: %s", name, strerror(errno));
524 goto next;
525 }
526 switch (stb.st_mode & S_IFMT) {
527 case S_IFREG:
528 break;
529 case S_IFDIR:
530 if (iamrecursive) {
531 rsource(name, &stb);
532 goto next;
533 }
534 /* FALLTHROUGH */
535 default:
536 run_err("%s: not a regular file", name);
537 goto next;
538 }
539 if ((last = strrchr(name, '/')) == NULL)
540 last = name;
541 else
542 ++last;
543 curfile = last;
544 if (pflag) {
545 /*
546 * Make it compatible with possible future
547 * versions expecting microseconds.
548 */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000549 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000550 (u_long) stb.st_mtime,
551 (u_long) stb.st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000552 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000553 if (response() < 0)
554 goto next;
555 }
556#define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
Ben Lindstroma4c57662001-03-17 00:10:20 +0000557 snprintf(buf, sizeof buf, "C%04o %lld %s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000558 (u_int) (stb.st_mode & FILEMODEMASK),
Ben Lindstrom0e7f4362003-04-28 23:30:43 +0000559 (int64_t)stb.st_size, last);
Damien Miller95def091999-11-25 00:26:21 +1100560 if (verbose_mode) {
561 fprintf(stderr, "Sending file modes: %s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100562 }
Damien Miller35dabd02000-05-01 21:10:33 +1000563 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564 if (response() < 0)
565 goto next;
566 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100567next: (void) close(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568 continue;
569 }
Damien Miller62d57f62003-01-10 21:43:24 +1100570 if (showprogress)
571 start_progress_meter(curfile, stb.st_size, &statbytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572 /* Keep writing after an error so that we stay sync'd up. */
573 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
574 amt = bp->cnt;
575 if (i + amt > stb.st_size)
576 amt = stb.st_size - i;
577 if (!haderr) {
Damien Millere247cc42000-05-07 12:03:14 +1000578 result = atomicio(read, fd, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000579 if (result != amt)
580 haderr = result >= 0 ? EIO : errno;
581 }
582 if (haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000583 (void) atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584 else {
Damien Miller864ea591999-12-15 11:04:25 +1100585 result = atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586 if (result != amt)
587 haderr = result >= 0 ? EIO : errno;
588 statbytes += result;
589 }
Ben Lindstromd54d9382003-03-21 00:55:32 +0000590 if (limitbw)
Damien Millerff74d742003-01-24 11:36:58 +1100591 bwlimit(amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592 }
Damien Miller95def091999-11-25 00:26:21 +1100593 if (showprogress)
Damien Miller62d57f62003-01-10 21:43:24 +1100594 stop_progress_meter();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000595
596 if (close(fd) < 0 && !haderr)
597 haderr = errno;
598 if (!haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000599 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600 else
601 run_err("%s: %s", name, strerror(haderr));
Damien Miller95def091999-11-25 00:26:21 +1100602 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603 }
604}
605
606void
607rsource(name, statp)
608 char *name;
609 struct stat *statp;
610{
611 DIR *dirp;
612 struct dirent *dp;
613 char *last, *vect[1], path[1100];
614
615 if (!(dirp = opendir(name))) {
616 run_err("%s: %s", name, strerror(errno));
617 return;
618 }
619 last = strrchr(name, '/');
620 if (last == 0)
621 last = name;
622 else
623 last++;
624 if (pflag) {
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000625 (void) snprintf(path, sizeof(path), "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000626 (u_long) statp->st_mtime,
627 (u_long) statp->st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000628 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629 if (response() < 0) {
630 closedir(dirp);
631 return;
632 }
633 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000634 (void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000635 (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
Damien Miller95def091999-11-25 00:26:21 +1100636 if (verbose_mode)
637 fprintf(stderr, "Entering directory: %s", path);
Damien Miller35dabd02000-05-01 21:10:33 +1000638 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639 if (response() < 0) {
640 closedir(dirp);
641 return;
642 }
Ben Lindstrombd472262001-03-29 00:39:55 +0000643 while ((dp = readdir(dirp)) != NULL) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000644 if (dp->d_ino == 0)
645 continue;
646 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
647 continue;
648 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
649 run_err("%s/%s: name too long", name, dp->d_name);
650 continue;
651 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000652 (void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000653 vect[0] = path;
654 source(1, vect);
655 }
Damien Miller95def091999-11-25 00:26:21 +1100656 (void) closedir(dirp);
Damien Miller35dabd02000-05-01 21:10:33 +1000657 (void) atomicio(write, remout, "E\n", 2);
Damien Miller95def091999-11-25 00:26:21 +1100658 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659}
660
661void
Damien Millerff74d742003-01-24 11:36:58 +1100662bwlimit(int amount)
663{
664 static struct timeval bwstart, bwend;
665 static int lamt, thresh = 16384;
666 u_int64_t wait;
667 struct timespec ts, rm;
668
669 if (!timerisset(&bwstart)) {
670 gettimeofday(&bwstart, NULL);
671 return;
672 }
673
674 lamt += amount;
675 if (lamt < thresh)
676 return;
677
678 gettimeofday(&bwend, NULL);
679 timersub(&bwend, &bwstart, &bwend);
680 if (!timerisset(&bwend))
681 return;
682
683 lamt *= 8;
Ben Lindstromd54d9382003-03-21 00:55:32 +0000684 wait = (double)1000000L * lamt / limitbw;
Damien Millerff74d742003-01-24 11:36:58 +1100685
686 bwstart.tv_sec = wait / 1000000L;
687 bwstart.tv_usec = wait % 1000000L;
688
689 if (timercmp(&bwstart, &bwend, >)) {
690 timersub(&bwstart, &bwend, &bwend);
691
692 /* Adjust the wait time */
693 if (bwend.tv_sec) {
694 thresh /= 2;
695 if (thresh < 2048)
696 thresh = 2048;
697 } else if (bwend.tv_usec < 100) {
698 thresh *= 2;
699 if (thresh > 32768)
700 thresh = 32768;
701 }
702
703 TIMEVAL_TO_TIMESPEC(&bwend, &ts);
704 while (nanosleep(&ts, &rm) == -1) {
705 if (errno != EINTR)
706 break;
707 ts = rm;
708 }
709 }
710
711 lamt = 0;
712 gettimeofday(&bwstart, NULL);
713}
714
715void
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000716sink(argc, argv)
717 int argc;
718 char *argv[];
719{
720 static BUF buffer;
721 struct stat stb;
Damien Miller95def091999-11-25 00:26:21 +1100722 enum {
723 YES, NO, DISPLAYED
724 } wrerr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000725 BUF *bp;
726 off_t i, j;
727 int amt, count, exists, first, mask, mode, ofd, omode;
Damien Miller62d57f62003-01-10 21:43:24 +1100728 off_t size, statbytes;
Damien Millercaf6dd62000-08-29 11:33:50 +1100729 int setimes, targisdir, wrerrno = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000730 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
Damien Miller62cee002000-09-23 17:15:56 +1100731 struct timeval tv[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000732
Ben Lindstromf719a202001-04-14 23:14:22 +0000733#define atime tv[0]
734#define mtime tv[1]
Ben Lindstrom7d5ed3a2001-06-25 04:28:30 +0000735#define SCREWUP(str) do { why = str; goto screwup; } while (0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000736
737 setimes = targisdir = 0;
738 mask = umask(0);
739 if (!pflag)
Damien Miller95def091999-11-25 00:26:21 +1100740 (void) umask(mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000741 if (argc != 1) {
742 run_err("ambiguous target");
743 exit(1);
744 }
745 targ = *argv;
746 if (targetshouldbedirectory)
747 verifydir(targ);
Damien Miller95def091999-11-25 00:26:21 +1100748
Damien Miller35dabd02000-05-01 21:10:33 +1000749 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000750 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
751 targisdir = 1;
752 for (first = 1;; first = 0) {
753 cp = buf;
Damien Millere247cc42000-05-07 12:03:14 +1000754 if (atomicio(read, remin, cp, 1) <= 0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000755 return;
756 if (*cp++ == '\n')
757 SCREWUP("unexpected <newline>");
758 do {
Damien Millere247cc42000-05-07 12:03:14 +1000759 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000760 SCREWUP("lost connection");
761 *cp++ = ch;
762 } while (cp < &buf[sizeof(buf) - 1] && ch != '\n');
763 *cp = 0;
764
765 if (buf[0] == '\01' || buf[0] == '\02') {
766 if (iamremote == 0)
Damien Miller35dabd02000-05-01 21:10:33 +1000767 (void) atomicio(write, STDERR_FILENO,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000768 buf + 1, strlen(buf + 1));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000769 if (buf[0] == '\02')
770 exit(1);
771 ++errs;
772 continue;
773 }
774 if (buf[0] == 'E') {
Damien Miller35dabd02000-05-01 21:10:33 +1000775 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000776 return;
777 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000778 if (ch == '\n')
779 *--cp = 0;
780
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000781 cp = buf;
782 if (*cp == 'T') {
783 setimes++;
784 cp++;
Ben Lindstromf719a202001-04-14 23:14:22 +0000785 mtime.tv_sec = strtol(cp, &cp, 10);
786 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000787 SCREWUP("mtime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000788 mtime.tv_usec = strtol(cp, &cp, 10);
789 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000790 SCREWUP("mtime.usec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000791 atime.tv_sec = strtol(cp, &cp, 10);
792 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793 SCREWUP("atime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000794 atime.tv_usec = strtol(cp, &cp, 10);
795 if (!cp || *cp++ != '\0')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000796 SCREWUP("atime.usec not delimited");
Damien Miller35dabd02000-05-01 21:10:33 +1000797 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000798 continue;
799 }
800 if (*cp != 'C' && *cp != 'D') {
801 /*
802 * Check for the case "rcp remote:foo\* local:bar".
803 * In this case, the line "No match." can be returned
804 * by the shell before the rcp command on the remote is
805 * executed so the ^Aerror_message convention isn't
806 * followed.
807 */
808 if (first) {
809 run_err("%s", cp);
810 exit(1);
811 }
812 SCREWUP("expected control record");
813 }
814 mode = 0;
815 for (++cp; cp < buf + 5; cp++) {
816 if (*cp < '0' || *cp > '7')
817 SCREWUP("bad mode");
818 mode = (mode << 3) | (*cp - '0');
819 }
820 if (*cp++ != ' ')
821 SCREWUP("mode not delimited");
822
Ben Lindstrombd472262001-03-29 00:39:55 +0000823 for (size = 0; isdigit(*cp);)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000824 size = size * 10 + (*cp++ - '0');
825 if (*cp++ != ' ')
826 SCREWUP("size not delimited");
827 if (targisdir) {
828 static char *namebuf;
829 static int cursize;
830 size_t need;
831
832 need = strlen(targ) + strlen(cp) + 250;
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000833 if (need > cursize) {
834 if (namebuf)
835 xfree(namebuf);
Damien Miller95def091999-11-25 00:26:21 +1100836 namebuf = xmalloc(need);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000837 cursize = need;
838 }
839 (void) snprintf(namebuf, need, "%s%s%s", targ,
Ben Lindstromde3895d2002-04-06 18:29:59 +0000840 strcmp(targ, "/") ? "/" : "", cp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000841 np = namebuf;
842 } else
843 np = targ;
844 curfile = cp;
845 exists = stat(np, &stb) == 0;
846 if (buf[0] == 'D') {
847 int mod_flag = pflag;
848 if (exists) {
849 if (!S_ISDIR(stb.st_mode)) {
850 errno = ENOTDIR;
851 goto bad;
852 }
853 if (pflag)
Damien Miller95def091999-11-25 00:26:21 +1100854 (void) chmod(np, mode);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000855 } else {
Damien Miller95def091999-11-25 00:26:21 +1100856 /* Handle copying from a read-only
857 directory */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000858 mod_flag = 1;
859 if (mkdir(np, mode | S_IRWXU) < 0)
860 goto bad;
861 }
Ben Lindstrom550bc542001-02-10 21:50:00 +0000862 vect[0] = xstrdup(np);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000863 sink(1, vect);
864 if (setimes) {
865 setimes = 0;
Damien Miller225736c2001-02-19 21:51:08 +1100866 if (utimes(vect[0], tv) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100867 run_err("%s: set times: %s",
Damien Miller225736c2001-02-19 21:51:08 +1100868 vect[0], strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000869 }
870 if (mod_flag)
Damien Miller225736c2001-02-19 21:51:08 +1100871 (void) chmod(vect[0], mode);
872 if (vect[0])
873 xfree(vect[0]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000874 continue;
875 }
876 omode = mode;
877 mode |= S_IWRITE;
Ben Lindstrom7bad55b2001-06-05 19:31:41 +0000878 if ((ofd = open(np, O_WRONLY|O_CREAT, mode)) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000879bad: run_err("%s: %s", np, strerror(errno));
880 continue;
881 }
Damien Miller35dabd02000-05-01 21:10:33 +1000882 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000883 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100884 (void) close(ofd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000885 continue;
886 }
887 cp = bp->buf;
888 wrerr = NO;
889
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000890 statbytes = 0;
Damien Miller62d57f62003-01-10 21:43:24 +1100891 if (showprogress)
892 start_progress_meter(curfile, size, &statbytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000893 for (count = i = 0; i < size; i += 4096) {
894 amt = 4096;
895 if (i + amt > size)
896 amt = size - i;
897 count += amt;
898 do {
Damien Miller69b69aa2000-10-28 14:19:58 +1100899 j = read(remin, cp, amt);
Ben Lindstrom2772a3f2001-08-06 21:17:12 +0000900 if (j == -1 && (errno == EINTR ||
901 errno == EAGAIN)) {
Damien Miller69b69aa2000-10-28 14:19:58 +1100902 continue;
903 } else if (j <= 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000904 run_err("%s", j ? strerror(errno) :
Ben Lindstrombd472262001-03-29 00:39:55 +0000905 "dropped connection");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000906 exit(1);
907 }
908 amt -= j;
909 cp += j;
Damien Miller95def091999-11-25 00:26:21 +1100910 statbytes += j;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000911 } while (amt > 0);
Damien Millerff74d742003-01-24 11:36:58 +1100912
Ben Lindstromd54d9382003-03-21 00:55:32 +0000913 if (limitbw)
Damien Millerff74d742003-01-24 11:36:58 +1100914 bwlimit(4096);
915
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000916 if (count == bp->cnt) {
917 /* Keep reading so we stay sync'd up. */
918 if (wrerr == NO) {
Damien Millere247cc42000-05-07 12:03:14 +1000919 j = atomicio(write, ofd, bp->buf, count);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000920 if (j != count) {
921 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100922 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000923 }
924 }
925 count = 0;
926 cp = bp->buf;
927 }
928 }
929 if (showprogress)
Damien Miller62d57f62003-01-10 21:43:24 +1100930 stop_progress_meter();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000931 if (count != 0 && wrerr == NO &&
Damien Millere247cc42000-05-07 12:03:14 +1000932 (j = atomicio(write, ofd, bp->buf, count)) != count) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000933 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100934 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000935 }
Damien Miller86b781c2003-01-10 21:44:48 +1100936 if (wrerr == NO && ftruncate(ofd, size) != 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000937 run_err("%s: truncate: %s", np, strerror(errno));
938 wrerr = DISPLAYED;
939 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000940 if (pflag) {
941 if (exists || omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100942#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000943 if (fchmod(ofd, omode))
Damien Miller78315eb2000-09-29 23:01:36 +1100944#else /* HAVE_FCHMOD */
945 if (chmod(np, omode))
946#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000947 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000948 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000949 } else {
950 if (!exists && omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100951#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000952 if (fchmod(ofd, omode & ~mask))
Damien Miller78315eb2000-09-29 23:01:36 +1100953#else /* HAVE_FCHMOD */
954 if (chmod(np, omode & ~mask))
955#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000956 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000957 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000958 }
Damien Millerbe484b52000-07-15 14:14:16 +1000959 if (close(ofd) == -1) {
960 wrerr = YES;
961 wrerrno = errno;
962 }
Damien Miller95def091999-11-25 00:26:21 +1100963 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000964 if (setimes && wrerr == NO) {
965 setimes = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100966 if (utimes(np, tv) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000967 run_err("%s: set times: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000968 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000969 wrerr = DISPLAYED;
970 }
971 }
Damien Miller95def091999-11-25 00:26:21 +1100972 switch (wrerr) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000973 case YES:
974 run_err("%s: %s", np, strerror(wrerrno));
975 break;
976 case NO:
Damien Miller35dabd02000-05-01 21:10:33 +1000977 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000978 break;
979 case DISPLAYED:
980 break;
981 }
982 }
983screwup:
984 run_err("protocol error: %s", why);
985 exit(1);
986}
987
988int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000989response(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000990{
991 char ch, *cp, resp, rbuf[2048];
992
Damien Millere247cc42000-05-07 12:03:14 +1000993 if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000994 lostconn(0);
995
996 cp = rbuf;
Damien Miller95def091999-11-25 00:26:21 +1100997 switch (resp) {
998 case 0: /* ok */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000999 return (0);
1000 default:
1001 *cp++ = resp;
1002 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +11001003 case 1: /* error, followed by error msg */
1004 case 2: /* fatal error, "" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001005 do {
Damien Millere247cc42000-05-07 12:03:14 +10001006 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001007 lostconn(0);
1008 *cp++ = ch;
1009 } while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
1010
1011 if (!iamremote)
Damien Miller35dabd02000-05-01 21:10:33 +10001012 (void) atomicio(write, STDERR_FILENO, rbuf, cp - rbuf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001013 ++errs;
1014 if (resp == 1)
1015 return (-1);
1016 exit(1);
1017 }
1018 /* NOTREACHED */
1019}
1020
1021void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +00001022usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001023{
Ben Lindstrom1e243242001-09-18 05:38:44 +00001024 (void) fprintf(stderr,
Damien Miller8e121472003-01-24 11:37:38 +11001025 "usage: scp [-pqrvBC1246] [-F config] [-S program] [-P port]\n"
Damien Millerff74d742003-01-24 11:36:58 +11001026 " [-c cipher] [-i identity] [-l limit] [-o option]\n"
Ben Lindstrom45933dd2002-06-21 00:10:58 +00001027 " [[user@]host1:]file1 [...] [[user@]host2:]file2\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001028 exit(1);
1029}
1030
1031void
Damien Miller95def091999-11-25 00:26:21 +11001032run_err(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001033{
1034 static FILE *fp;
1035 va_list ap;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001036
1037 ++errs;
1038 if (fp == NULL && !(fp = fdopen(remout, "w")))
1039 return;
Damien Miller95def091999-11-25 00:26:21 +11001040 (void) fprintf(fp, "%c", 0x01);
1041 (void) fprintf(fp, "scp: ");
Damien Miller03783f01999-12-31 09:16:40 +11001042 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +11001043 (void) vfprintf(fp, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +11001044 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +11001045 (void) fprintf(fp, "\n");
1046 (void) fflush(fp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001047
Damien Miller95def091999-11-25 00:26:21 +11001048 if (!iamremote) {
Damien Miller03783f01999-12-31 09:16:40 +11001049 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +11001050 vfprintf(stderr, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +11001051 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +11001052 fprintf(stderr, "\n");
1053 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001054}
1055
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001056void
1057verifydir(cp)
1058 char *cp;
1059{
1060 struct stat stb;
1061
1062 if (!stat(cp, &stb)) {
1063 if (S_ISDIR(stb.st_mode))
1064 return;
1065 errno = ENOTDIR;
1066 }
1067 run_err("%s: %s", cp, strerror(errno));
1068 exit(1);
1069}
1070
1071int
1072okname(cp0)
1073 char *cp0;
1074{
1075 int c;
1076 char *cp;
1077
1078 cp = cp0;
1079 do {
Ben Lindstrom7d5ed3a2001-06-25 04:28:30 +00001080 c = (int)*cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001081 if (c & 0200)
1082 goto bad;
Damien Millereeeeb352003-02-24 11:52:58 +11001083 if (!isalpha(c) && !isdigit(c)) {
1084 switch (c) {
1085 case '\'':
1086 case '"':
1087 case '`':
1088 case ' ':
1089 case '#':
1090 goto bad;
1091 default:
1092 break;
1093 }
1094 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001095 } while (*++cp);
1096 return (1);
1097
Damien Miller98c7ad62000-03-09 21:27:49 +11001098bad: fprintf(stderr, "%s: invalid user name\n", cp0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001099 return (0);
1100}
1101
1102BUF *
1103allocbuf(bp, fd, blksize)
1104 BUF *bp;
1105 int fd, blksize;
1106{
1107 size_t size;
Tim Rice13aae5e2001-10-21 17:53:58 -07001108#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001109 struct stat stb;
1110
1111 if (fstat(fd, &stb) < 0) {
1112 run_err("fstat: %s", strerror(errno));
1113 return (0);
1114 }
Ben Lindstrom418e0782002-12-23 02:22:09 +00001115 size = roundup(stb.st_blksize, blksize);
1116 if (size == 0)
Damien Miller95def091999-11-25 00:26:21 +11001117 size = blksize;
Tim Rice13aae5e2001-10-21 17:53:58 -07001118#else /* HAVE_STRUCT_STAT_ST_BLKSIZE */
Kevin Stevesef4eea92001-02-05 12:42:17 +00001119 size = blksize;
Tim Rice13aae5e2001-10-21 17:53:58 -07001120#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001121 if (bp->cnt >= size)
1122 return (bp);
Damien Miller95def091999-11-25 00:26:21 +11001123 if (bp->buf == NULL)
1124 bp->buf = xmalloc(size);
1125 else
1126 bp->buf = xrealloc(bp->buf, size);
Ben Lindstrom5fccbc22001-09-12 17:49:48 +00001127 memset(bp->buf, 0, size);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001128 bp->cnt = size;
1129 return (bp);
1130}
1131
1132void
1133lostconn(signo)
1134 int signo;
1135{
1136 if (!iamremote)
Ben Lindstrom738f51e2001-06-21 03:08:58 +00001137 write(STDERR_FILENO, "lost connection\n", 16);
1138 if (signo)
1139 _exit(1);
1140 else
1141 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001142}