blob: 616dd3783a3d0e2664a7405a7ee7898813a62f13 [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 Miller86b781c2003-01-10 21:44:48 +110078RCSID("$OpenBSD: scp.c,v 1.98 2003/01/10 10:29:35 djm 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
Ben Lindstrom387c4722001-05-08 20:27:25 +000093/* Struct for addargs */
94arglist args;
Damien Miller874d77b2000-10-14 16:23:11 +110095
Damien Millerd4a8b7e1999-10-27 13:42:43 +100096/* Name of current file being transferred. */
97char *curfile;
98
99/* This is set to non-zero to enable verbose mode. */
Damien Miller95def091999-11-25 00:26:21 +1100100int verbose_mode = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000101
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000102/* This is set to zero if the progressmeter is not desired. */
103int showprogress = 1;
104
Damien Millerad833b32000-08-23 10:46:23 +1000105/* This is the program to execute for the secured connection. ("ssh" or -S) */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000106char *ssh_program = _PATH_SSH_PROGRAM;
Damien Millerad833b32000-08-23 10:46:23 +1000107
Ben Lindstrom007eb912002-11-09 15:54:08 +0000108/* This is used to store the pid of ssh_program */
109pid_t do_cmd_pid;
110
Damien Miller5428f641999-11-25 11:54:57 +1100111/*
112 * This function executes the given command as the specified user on the
113 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
114 * assigns the input and output file descriptors on success.
115 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000116
Damien Miller4af51302000-04-16 11:18:38 +1000117int
Damien Millerad833b32000-08-23 10:46:23 +1000118do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000119{
Damien Miller95def091999-11-25 00:26:21 +1100120 int pin[2], pout[2], reserved[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
Damien Miller95def091999-11-25 00:26:21 +1100122 if (verbose_mode)
Ben Lindstrom2772a3f2001-08-06 21:17:12 +0000123 fprintf(stderr,
124 "Executing: program %s host %s, user %s, command %s\n",
125 ssh_program, host,
126 remuser ? remuser : "(unspecified)", cmd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
Damien Miller5428f641999-11-25 11:54:57 +1100128 /*
129 * Reserve two descriptors so that the real pipes won't get
130 * descriptors 0 and 1 because that will screw up dup2 below.
131 */
Damien Miller95def091999-11-25 00:26:21 +1100132 pipe(reserved);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000133
Damien Miller95def091999-11-25 00:26:21 +1100134 /* Create a socket pair for communicating with ssh. */
135 if (pipe(pin) < 0)
136 fatal("pipe: %s", strerror(errno));
137 if (pipe(pout) < 0)
138 fatal("pipe: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Miller95def091999-11-25 00:26:21 +1100140 /* Free the reserved descriptors. */
141 close(reserved[0]);
142 close(reserved[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000143
Damien Miller95def091999-11-25 00:26:21 +1100144 /* For a child to execute the command on the remote host using ssh. */
Ben Lindstrom007eb912002-11-09 15:54:08 +0000145 do_cmd_pid = fork();
146 if (do_cmd_pid == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100147 /* Child. */
148 close(pin[1]);
149 close(pout[0]);
150 dup2(pin[0], 0);
151 dup2(pout[1], 1);
152 close(pin[0]);
153 close(pout[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154
Damien Miller874d77b2000-10-14 16:23:11 +1100155 args.list[0] = ssh_program;
156 if (remuser != NULL)
Ben Lindstrom387c4722001-05-08 20:27:25 +0000157 addargs(&args, "-l%s", remuser);
158 addargs(&args, "%s", host);
159 addargs(&args, "%s", cmd);
Damien Miller95def091999-11-25 00:26:21 +1100160
Damien Miller874d77b2000-10-14 16:23:11 +1100161 execvp(ssh_program, args.list);
Damien Millerad833b32000-08-23 10:46:23 +1000162 perror(ssh_program);
Damien Miller95def091999-11-25 00:26:21 +1100163 exit(1);
Ben Lindstrom007eb912002-11-09 15:54:08 +0000164 } else if (do_cmd_pid == -1) {
165 fatal("fork: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000166 }
Damien Miller95def091999-11-25 00:26:21 +1100167 /* Parent. Close the other side, and return the local side. */
168 close(pin[0]);
169 *fdout = pin[1];
170 close(pout[1]);
171 *fdin = pout[0];
172 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000173}
174
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000175typedef struct {
176 int cnt;
177 char *buf;
178} BUF;
179
Damien Miller95def091999-11-25 00:26:21 +1100180BUF *allocbuf(BUF *, int, int);
Damien Miller95def091999-11-25 00:26:21 +1100181void lostconn(int);
182void nospace(void);
183int okname(char *);
184void run_err(const char *,...);
185void verifydir(char *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000186
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000187struct passwd *pwd;
Damien Miller95def091999-11-25 00:26:21 +1100188uid_t userid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000189int errs, remin, remout;
190int pflag, iamremote, iamrecursive, targetshouldbedirectory;
191
192#define CMDNEEDS 64
193char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
194
Damien Miller95def091999-11-25 00:26:21 +1100195int response(void);
196void rsource(char *, struct stat *);
197void sink(int, char *[]);
198void source(int, char *[]);
199void tolocal(int, char *[]);
200void toremote(char *, int, char *[]);
201void usage(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000202
203int
204main(argc, argv)
205 int argc;
206 char *argv[];
207{
Ben Lindstrom007eb912002-11-09 15:54:08 +0000208 int ch, fflag, tflag, status;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000209 char *targ;
210 extern char *optarg;
211 extern int optind;
212
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000213 __progname = get_progname(argv[0]);
214
Damien Miller874d77b2000-10-14 16:23:11 +1100215 args.list = NULL;
Ben Lindstromcb72e4f2002-06-21 00:41:51 +0000216 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000217 addargs(&args, "-x");
Ben Lindstrom4213c552001-09-12 18:45:09 +0000218 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000219 addargs(&args, "-oClearAllForwardings yes");
Damien Miller874d77b2000-10-14 16:23:11 +1100220
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000221 fflag = tflag = 0;
Ben Lindstrom1e243242001-09-18 05:38:44 +0000222 while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:o:F:")) != -1)
Damien Miller95def091999-11-25 00:26:21 +1100223 switch (ch) {
224 /* User-visible flags. */
Damien Miller34132e52000-01-14 15:45:46 +1100225 case '4':
Damien Miller34132e52000-01-14 15:45:46 +1100226 case '6':
Damien Miller874d77b2000-10-14 16:23:11 +1100227 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000228 addargs(&args, "-%c", ch);
Damien Miller874d77b2000-10-14 16:23:11 +1100229 break;
230 case 'o':
231 case 'c':
232 case 'i':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000233 case 'F':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000234 addargs(&args, "-%c%s", ch, optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100235 break;
236 case 'P':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000237 addargs(&args, "-p%s", optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100238 break;
239 case 'B':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000240 addargs(&args, "-oBatchmode yes");
Damien Miller34132e52000-01-14 15:45:46 +1100241 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000242 case 'p':
243 pflag = 1;
244 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000245 case 'r':
246 iamrecursive = 1;
247 break;
Damien Millerad833b32000-08-23 10:46:23 +1000248 case 'S':
Damien Miller874d77b2000-10-14 16:23:11 +1100249 ssh_program = xstrdup(optarg);
250 break;
251 case 'v':
Ben Lindstrom9cc94642001-06-09 01:15:11 +0000252 addargs(&args, "-v");
Damien Miller874d77b2000-10-14 16:23:11 +1100253 verbose_mode = 1;
254 break;
255 case 'q':
256 showprogress = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000257 break;
258
Damien Miller95def091999-11-25 00:26:21 +1100259 /* Server options. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000260 case 'd':
261 targetshouldbedirectory = 1;
262 break;
Damien Miller95def091999-11-25 00:26:21 +1100263 case 'f': /* "from" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000264 iamremote = 1;
265 fflag = 1;
266 break;
Damien Miller95def091999-11-25 00:26:21 +1100267 case 't': /* "to" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000268 iamremote = 1;
269 tflag = 1;
Damien Miller402b3312001-04-14 00:28:42 +1000270#ifdef HAVE_CYGWIN
271 setmode(0, O_BINARY);
272#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000274 default:
275 usage();
276 }
277 argc -= optind;
278 argv += optind;
279
280 if ((pwd = getpwuid(userid = getuid())) == NULL)
Damien Miller95def091999-11-25 00:26:21 +1100281 fatal("unknown user %d", (int) userid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000282
Damien Miller95def091999-11-25 00:26:21 +1100283 if (!isatty(STDERR_FILENO))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284 showprogress = 0;
285
286 remin = STDIN_FILENO;
287 remout = STDOUT_FILENO;
288
Kevin Stevesef4eea92001-02-05 12:42:17 +0000289 if (fflag) {
Damien Miller95def091999-11-25 00:26:21 +1100290 /* Follow "protocol", send data. */
291 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000292 source(argc, argv);
293 exit(errs != 0);
294 }
Damien Miller95def091999-11-25 00:26:21 +1100295 if (tflag) {
296 /* Receive data. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000297 sink(argc, argv);
298 exit(errs != 0);
299 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300 if (argc < 2)
301 usage();
302 if (argc > 2)
303 targetshouldbedirectory = 1;
304
305 remin = remout = -1;
Ben Lindstrom007eb912002-11-09 15:54:08 +0000306 do_cmd_pid = -1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307 /* Command to be executed on remote system using "ssh". */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000308 (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
309 verbose_mode ? " -v" : "",
Damien Millerad833b32000-08-23 10:46:23 +1000310 iamrecursive ? " -r" : "", pflag ? " -p" : "",
311 targetshouldbedirectory ? " -d" : "");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000312
Damien Miller95def091999-11-25 00:26:21 +1100313 (void) signal(SIGPIPE, lostconn);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000314
315 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
316 toremote(targ, argc, argv);
317 else {
Damien Miller95def091999-11-25 00:26:21 +1100318 tolocal(argc, argv); /* Dest is local host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000319 if (targetshouldbedirectory)
320 verifydir(argv[argc - 1]);
321 }
Ben Lindstrom007eb912002-11-09 15:54:08 +0000322 /*
323 * Finally check the exit status of the ssh process, if one was forked
324 * and no error has occured yet
325 */
326 if (do_cmd_pid != -1 && errs == 0) {
327 if (remin != -1)
328 (void) close(remin);
329 if (remout != -1)
330 (void) close(remout);
331 if (waitpid(do_cmd_pid, &status, 0) == -1)
332 errs = 1;
333 else {
334 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
335 errs = 1;
336 }
337 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338 exit(errs != 0);
339}
340
341void
342toremote(targ, argc, argv)
343 char *targ, *argv[];
344 int argc;
345{
346 int i, len;
347 char *bp, *host, *src, *suser, *thost, *tuser;
348
349 *targ++ = 0;
350 if (*targ == 0)
351 targ = ".";
352
Ben Lindstromc276c122002-12-23 02:14:51 +0000353 if ((thost = strrchr(argv[argc - 1], '@'))) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000354 /* user@host */
355 *thost++ = 0;
356 tuser = argv[argc - 1];
357 if (*tuser == '\0')
358 tuser = NULL;
359 else if (!okname(tuser))
360 exit(1);
361 } else {
362 thost = argv[argc - 1];
363 tuser = NULL;
364 }
365
366 for (i = 0; i < argc - 1; i++) {
367 src = colon(argv[i]);
Damien Miller95def091999-11-25 00:26:21 +1100368 if (src) { /* remote to remote */
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000369 static char *ssh_options =
Ben Lindstromaf0c6d62002-06-09 20:06:29 +0000370 "-x -o'ClearAllForwardings yes'";
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000371 *src++ = 0;
372 if (*src == 0)
373 src = ".";
Ben Lindstromc276c122002-12-23 02:14:51 +0000374 host = strrchr(argv[i], '@');
Damien Millerad833b32000-08-23 10:46:23 +1000375 len = strlen(ssh_program) + strlen(argv[i]) +
376 strlen(src) + (tuser ? strlen(tuser) : 0) +
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000377 strlen(thost) + strlen(targ) +
378 strlen(ssh_options) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100379 bp = xmalloc(len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000380 if (host) {
381 *host++ = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100382 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000383 suser = argv[i];
384 if (*suser == '\0')
385 suser = pwd->pw_name;
386 else if (!okname(suser))
387 continue;
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000388 snprintf(bp, len,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000389 "%s%s %s -n "
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000390 "-l %s %s %s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000391 ssh_program, verbose_mode ? " -v" : "",
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000392 ssh_options, suser, host, cmd, src,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000393 tuser ? tuser : "", tuser ? "@" : "",
394 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100395 } else {
396 host = cleanhostname(argv[i]);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000397 snprintf(bp, len,
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000398 "exec %s%s %s -n %s "
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000399 "%s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000400 ssh_program, verbose_mode ? " -v" : "",
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000401 ssh_options, host, cmd, src,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000402 tuser ? tuser : "", tuser ? "@" : "",
403 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100404 }
Damien Miller95def091999-11-25 00:26:21 +1100405 if (verbose_mode)
406 fprintf(stderr, "Executing: %s\n", bp);
407 (void) system(bp);
408 (void) xfree(bp);
409 } else { /* local to remote */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000410 if (remin == -1) {
411 len = strlen(targ) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100412 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000413 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100414 host = cleanhostname(thost);
Damien Millerad833b32000-08-23 10:46:23 +1000415 if (do_cmd(host, tuser, bp, &remin,
416 &remout, argc) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100417 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000418 if (response() < 0)
419 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100420 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000421 }
Damien Miller95def091999-11-25 00:26:21 +1100422 source(1, argv + i);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000423 }
424 }
425}
426
427void
428tolocal(argc, argv)
429 int argc;
430 char *argv[];
431{
432 int i, len;
433 char *bp, *host, *src, *suser;
434
435 for (i = 0; i < argc - 1; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100436 if (!(src = colon(argv[i]))) { /* Local to local. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000437 len = strlen(_PATH_CP) + strlen(argv[i]) +
Damien Millerad833b32000-08-23 10:46:23 +1000438 strlen(argv[argc - 1]) + 20;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000440 (void) snprintf(bp, len, "exec %s%s%s %s %s", _PATH_CP,
Damien Millerad833b32000-08-23 10:46:23 +1000441 iamrecursive ? " -r" : "", pflag ? " -p" : "",
442 argv[i], argv[argc - 1]);
Damien Miller95def091999-11-25 00:26:21 +1100443 if (verbose_mode)
444 fprintf(stderr, "Executing: %s\n", bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000445 if (system(bp))
446 ++errs;
Damien Miller95def091999-11-25 00:26:21 +1100447 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000448 continue;
449 }
450 *src++ = 0;
451 if (*src == 0)
452 src = ".";
Ben Lindstromc276c122002-12-23 02:14:51 +0000453 if ((host = strrchr(argv[i], '@')) == NULL) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000454 host = argv[i];
455 suser = NULL;
456 } else {
457 *host++ = 0;
458 suser = argv[i];
459 if (*suser == '\0')
460 suser = pwd->pw_name;
461 else if (!okname(suser))
462 continue;
463 }
Damien Miller34132e52000-01-14 15:45:46 +1100464 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000465 len = strlen(src) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100466 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000467 (void) snprintf(bp, len, "%s -f %s", cmd, src);
Damien Millerad833b32000-08-23 10:46:23 +1000468 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100469 (void) xfree(bp);
470 ++errs;
471 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472 }
Damien Miller95def091999-11-25 00:26:21 +1100473 xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000474 sink(1, argv + argc - 1);
Damien Miller95def091999-11-25 00:26:21 +1100475 (void) close(remin);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000476 remin = remout = -1;
477 }
478}
479
480void
481source(argc, argv)
482 int argc;
483 char *argv[];
484{
485 struct stat stb;
486 static BUF buffer;
487 BUF *bp;
Damien Miller62d57f62003-01-10 21:43:24 +1100488 off_t i, amt, result, statbytes;
Ben Lindstrom4eda71d2001-04-22 17:13:20 +0000489 int fd, haderr, indx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490 char *last, *name, buf[2048];
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000491 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492
493 for (indx = 0; indx < argc; ++indx) {
Damien Miller95def091999-11-25 00:26:21 +1100494 name = argv[indx];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000495 statbytes = 0;
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000496 len = strlen(name);
497 while (len > 1 && name[len-1] == '/')
498 name[--len] = '\0';
Ben Lindstrom3e45e4c2001-10-03 17:30:58 +0000499 if (strchr(name, '\n') != NULL) {
500 run_err("%s: skipping, filename contains a newline",
501 name);
502 goto next;
503 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000504 if ((fd = open(name, O_RDONLY, 0)) < 0)
505 goto syserr;
506 if (fstat(fd, &stb) < 0) {
507syserr: run_err("%s: %s", name, strerror(errno));
508 goto next;
509 }
510 switch (stb.st_mode & S_IFMT) {
511 case S_IFREG:
512 break;
513 case S_IFDIR:
514 if (iamrecursive) {
515 rsource(name, &stb);
516 goto next;
517 }
518 /* FALLTHROUGH */
519 default:
520 run_err("%s: not a regular file", name);
521 goto next;
522 }
523 if ((last = strrchr(name, '/')) == NULL)
524 last = name;
525 else
526 ++last;
527 curfile = last;
528 if (pflag) {
529 /*
530 * Make it compatible with possible future
531 * versions expecting microseconds.
532 */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000533 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000534 (u_long) stb.st_mtime,
535 (u_long) stb.st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000536 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000537 if (response() < 0)
538 goto next;
539 }
540#define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
Damien Miller753b1c02001-03-19 12:56:14 +1100541#ifdef HAVE_LONG_LONG_INT
Ben Lindstroma4c57662001-03-17 00:10:20 +0000542 snprintf(buf, sizeof buf, "C%04o %lld %s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000543 (u_int) (stb.st_mode & FILEMODEMASK),
Kevin Steves399ec972002-03-05 18:59:45 +0000544 (long long)stb.st_size, last);
Damien Millerffd0e102001-03-19 12:45:02 +1100545#else
546 /* XXX: Handle integer overflow? */
Ben Lindstrom8feff452001-03-19 03:09:40 +0000547 snprintf(buf, sizeof buf, "C%04o %lu %s\n",
Damien Millerffd0e102001-03-19 12:45:02 +1100548 (u_int) (stb.st_mode & FILEMODEMASK),
Ben Lindstrom8feff452001-03-19 03:09:40 +0000549 (u_long) stb.st_size, last);
Damien Millerffd0e102001-03-19 12:45:02 +1100550#endif
Damien Miller95def091999-11-25 00:26:21 +1100551 if (verbose_mode) {
552 fprintf(stderr, "Sending file modes: %s", buf);
Damien Miller95def091999-11-25 00:26:21 +1100553 }
Damien Miller35dabd02000-05-01 21:10:33 +1000554 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000555 if (response() < 0)
556 goto next;
557 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100558next: (void) close(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000559 continue;
560 }
Damien Miller62d57f62003-01-10 21:43:24 +1100561 if (showprogress)
562 start_progress_meter(curfile, stb.st_size, &statbytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000563 /* Keep writing after an error so that we stay sync'd up. */
564 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
565 amt = bp->cnt;
566 if (i + amt > stb.st_size)
567 amt = stb.st_size - i;
568 if (!haderr) {
Damien Millere247cc42000-05-07 12:03:14 +1000569 result = atomicio(read, fd, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570 if (result != amt)
571 haderr = result >= 0 ? EIO : errno;
572 }
573 if (haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000574 (void) atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000575 else {
Damien Miller864ea591999-12-15 11:04:25 +1100576 result = atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000577 if (result != amt)
578 haderr = result >= 0 ? EIO : errno;
579 statbytes += result;
580 }
581 }
Damien Miller95def091999-11-25 00:26:21 +1100582 if (showprogress)
Damien Miller62d57f62003-01-10 21:43:24 +1100583 stop_progress_meter();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584
585 if (close(fd) < 0 && !haderr)
586 haderr = errno;
587 if (!haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000588 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000589 else
590 run_err("%s: %s", name, strerror(haderr));
Damien Miller95def091999-11-25 00:26:21 +1100591 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000592 }
593}
594
595void
596rsource(name, statp)
597 char *name;
598 struct stat *statp;
599{
600 DIR *dirp;
601 struct dirent *dp;
602 char *last, *vect[1], path[1100];
603
604 if (!(dirp = opendir(name))) {
605 run_err("%s: %s", name, strerror(errno));
606 return;
607 }
608 last = strrchr(name, '/');
609 if (last == 0)
610 last = name;
611 else
612 last++;
613 if (pflag) {
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000614 (void) snprintf(path, sizeof(path), "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000615 (u_long) statp->st_mtime,
616 (u_long) statp->st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000617 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000618 if (response() < 0) {
619 closedir(dirp);
620 return;
621 }
622 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000623 (void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000624 (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
Damien Miller95def091999-11-25 00:26:21 +1100625 if (verbose_mode)
626 fprintf(stderr, "Entering directory: %s", path);
Damien Miller35dabd02000-05-01 21:10:33 +1000627 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628 if (response() < 0) {
629 closedir(dirp);
630 return;
631 }
Ben Lindstrombd472262001-03-29 00:39:55 +0000632 while ((dp = readdir(dirp)) != NULL) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000633 if (dp->d_ino == 0)
634 continue;
635 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
636 continue;
637 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
638 run_err("%s/%s: name too long", name, dp->d_name);
639 continue;
640 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000641 (void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000642 vect[0] = path;
643 source(1, vect);
644 }
Damien Miller95def091999-11-25 00:26:21 +1100645 (void) closedir(dirp);
Damien Miller35dabd02000-05-01 21:10:33 +1000646 (void) atomicio(write, remout, "E\n", 2);
Damien Miller95def091999-11-25 00:26:21 +1100647 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000648}
649
650void
651sink(argc, argv)
652 int argc;
653 char *argv[];
654{
655 static BUF buffer;
656 struct stat stb;
Damien Miller95def091999-11-25 00:26:21 +1100657 enum {
658 YES, NO, DISPLAYED
659 } wrerr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000660 BUF *bp;
661 off_t i, j;
662 int amt, count, exists, first, mask, mode, ofd, omode;
Damien Miller62d57f62003-01-10 21:43:24 +1100663 off_t size, statbytes;
Damien Millercaf6dd62000-08-29 11:33:50 +1100664 int setimes, targisdir, wrerrno = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000665 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
Damien Miller62cee002000-09-23 17:15:56 +1100666 struct timeval tv[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000667
Ben Lindstromf719a202001-04-14 23:14:22 +0000668#define atime tv[0]
669#define mtime tv[1]
Ben Lindstrom7d5ed3a2001-06-25 04:28:30 +0000670#define SCREWUP(str) do { why = str; goto screwup; } while (0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671
672 setimes = targisdir = 0;
673 mask = umask(0);
674 if (!pflag)
Damien Miller95def091999-11-25 00:26:21 +1100675 (void) umask(mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000676 if (argc != 1) {
677 run_err("ambiguous target");
678 exit(1);
679 }
680 targ = *argv;
681 if (targetshouldbedirectory)
682 verifydir(targ);
Damien Miller95def091999-11-25 00:26:21 +1100683
Damien Miller35dabd02000-05-01 21:10:33 +1000684 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000685 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
686 targisdir = 1;
687 for (first = 1;; first = 0) {
688 cp = buf;
Damien Millere247cc42000-05-07 12:03:14 +1000689 if (atomicio(read, remin, cp, 1) <= 0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000690 return;
691 if (*cp++ == '\n')
692 SCREWUP("unexpected <newline>");
693 do {
Damien Millere247cc42000-05-07 12:03:14 +1000694 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000695 SCREWUP("lost connection");
696 *cp++ = ch;
697 } while (cp < &buf[sizeof(buf) - 1] && ch != '\n');
698 *cp = 0;
699
700 if (buf[0] == '\01' || buf[0] == '\02') {
701 if (iamremote == 0)
Damien Miller35dabd02000-05-01 21:10:33 +1000702 (void) atomicio(write, STDERR_FILENO,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000703 buf + 1, strlen(buf + 1));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000704 if (buf[0] == '\02')
705 exit(1);
706 ++errs;
707 continue;
708 }
709 if (buf[0] == 'E') {
Damien Miller35dabd02000-05-01 21:10:33 +1000710 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000711 return;
712 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000713 if (ch == '\n')
714 *--cp = 0;
715
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000716 cp = buf;
717 if (*cp == 'T') {
718 setimes++;
719 cp++;
Ben Lindstromf719a202001-04-14 23:14:22 +0000720 mtime.tv_sec = strtol(cp, &cp, 10);
721 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000722 SCREWUP("mtime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000723 mtime.tv_usec = strtol(cp, &cp, 10);
724 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000725 SCREWUP("mtime.usec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000726 atime.tv_sec = strtol(cp, &cp, 10);
727 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000728 SCREWUP("atime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000729 atime.tv_usec = strtol(cp, &cp, 10);
730 if (!cp || *cp++ != '\0')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000731 SCREWUP("atime.usec not delimited");
Damien Miller35dabd02000-05-01 21:10:33 +1000732 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000733 continue;
734 }
735 if (*cp != 'C' && *cp != 'D') {
736 /*
737 * Check for the case "rcp remote:foo\* local:bar".
738 * In this case, the line "No match." can be returned
739 * by the shell before the rcp command on the remote is
740 * executed so the ^Aerror_message convention isn't
741 * followed.
742 */
743 if (first) {
744 run_err("%s", cp);
745 exit(1);
746 }
747 SCREWUP("expected control record");
748 }
749 mode = 0;
750 for (++cp; cp < buf + 5; cp++) {
751 if (*cp < '0' || *cp > '7')
752 SCREWUP("bad mode");
753 mode = (mode << 3) | (*cp - '0');
754 }
755 if (*cp++ != ' ')
756 SCREWUP("mode not delimited");
757
Ben Lindstrombd472262001-03-29 00:39:55 +0000758 for (size = 0; isdigit(*cp);)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000759 size = size * 10 + (*cp++ - '0');
760 if (*cp++ != ' ')
761 SCREWUP("size not delimited");
762 if (targisdir) {
763 static char *namebuf;
764 static int cursize;
765 size_t need;
766
767 need = strlen(targ) + strlen(cp) + 250;
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000768 if (need > cursize) {
769 if (namebuf)
770 xfree(namebuf);
Damien Miller95def091999-11-25 00:26:21 +1100771 namebuf = xmalloc(need);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000772 cursize = need;
773 }
774 (void) snprintf(namebuf, need, "%s%s%s", targ,
Ben Lindstromde3895d2002-04-06 18:29:59 +0000775 strcmp(targ, "/") ? "/" : "", cp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000776 np = namebuf;
777 } else
778 np = targ;
779 curfile = cp;
780 exists = stat(np, &stb) == 0;
781 if (buf[0] == 'D') {
782 int mod_flag = pflag;
783 if (exists) {
784 if (!S_ISDIR(stb.st_mode)) {
785 errno = ENOTDIR;
786 goto bad;
787 }
788 if (pflag)
Damien Miller95def091999-11-25 00:26:21 +1100789 (void) chmod(np, mode);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000790 } else {
Damien Miller95def091999-11-25 00:26:21 +1100791 /* Handle copying from a read-only
792 directory */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793 mod_flag = 1;
794 if (mkdir(np, mode | S_IRWXU) < 0)
795 goto bad;
796 }
Ben Lindstrom550bc542001-02-10 21:50:00 +0000797 vect[0] = xstrdup(np);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000798 sink(1, vect);
799 if (setimes) {
800 setimes = 0;
Damien Miller225736c2001-02-19 21:51:08 +1100801 if (utimes(vect[0], tv) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100802 run_err("%s: set times: %s",
Damien Miller225736c2001-02-19 21:51:08 +1100803 vect[0], strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000804 }
805 if (mod_flag)
Damien Miller225736c2001-02-19 21:51:08 +1100806 (void) chmod(vect[0], mode);
807 if (vect[0])
808 xfree(vect[0]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000809 continue;
810 }
811 omode = mode;
812 mode |= S_IWRITE;
Ben Lindstrom7bad55b2001-06-05 19:31:41 +0000813 if ((ofd = open(np, O_WRONLY|O_CREAT, mode)) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000814bad: run_err("%s: %s", np, strerror(errno));
815 continue;
816 }
Damien Miller35dabd02000-05-01 21:10:33 +1000817 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000818 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100819 (void) close(ofd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000820 continue;
821 }
822 cp = bp->buf;
823 wrerr = NO;
824
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000825 statbytes = 0;
Damien Miller62d57f62003-01-10 21:43:24 +1100826 if (showprogress)
827 start_progress_meter(curfile, size, &statbytes);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000828 for (count = i = 0; i < size; i += 4096) {
829 amt = 4096;
830 if (i + amt > size)
831 amt = size - i;
832 count += amt;
833 do {
Damien Miller69b69aa2000-10-28 14:19:58 +1100834 j = read(remin, cp, amt);
Ben Lindstrom2772a3f2001-08-06 21:17:12 +0000835 if (j == -1 && (errno == EINTR ||
836 errno == EAGAIN)) {
Damien Miller69b69aa2000-10-28 14:19:58 +1100837 continue;
838 } else if (j <= 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000839 run_err("%s", j ? strerror(errno) :
Ben Lindstrombd472262001-03-29 00:39:55 +0000840 "dropped connection");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000841 exit(1);
842 }
843 amt -= j;
844 cp += j;
Damien Miller95def091999-11-25 00:26:21 +1100845 statbytes += j;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000846 } while (amt > 0);
847 if (count == bp->cnt) {
848 /* Keep reading so we stay sync'd up. */
849 if (wrerr == NO) {
Damien Millere247cc42000-05-07 12:03:14 +1000850 j = atomicio(write, ofd, bp->buf, count);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000851 if (j != count) {
852 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100853 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000854 }
855 }
856 count = 0;
857 cp = bp->buf;
858 }
859 }
860 if (showprogress)
Damien Miller62d57f62003-01-10 21:43:24 +1100861 stop_progress_meter();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000862 if (count != 0 && wrerr == NO &&
Damien Millere247cc42000-05-07 12:03:14 +1000863 (j = atomicio(write, ofd, bp->buf, count)) != count) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000864 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100865 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000866 }
Damien Miller86b781c2003-01-10 21:44:48 +1100867 if (wrerr == NO && ftruncate(ofd, size) != 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000868 run_err("%s: truncate: %s", np, strerror(errno));
869 wrerr = DISPLAYED;
870 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000871 if (pflag) {
872 if (exists || omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100873#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000874 if (fchmod(ofd, omode))
Damien Miller78315eb2000-09-29 23:01:36 +1100875#else /* HAVE_FCHMOD */
876 if (chmod(np, omode))
877#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000878 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000879 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000880 } else {
881 if (!exists && omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100882#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000883 if (fchmod(ofd, omode & ~mask))
Damien Miller78315eb2000-09-29 23:01:36 +1100884#else /* HAVE_FCHMOD */
885 if (chmod(np, omode & ~mask))
886#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000887 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000888 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000889 }
Damien Millerbe484b52000-07-15 14:14:16 +1000890 if (close(ofd) == -1) {
891 wrerr = YES;
892 wrerrno = errno;
893 }
Damien Miller95def091999-11-25 00:26:21 +1100894 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000895 if (setimes && wrerr == NO) {
896 setimes = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100897 if (utimes(np, tv) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000898 run_err("%s: set times: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000899 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000900 wrerr = DISPLAYED;
901 }
902 }
Damien Miller95def091999-11-25 00:26:21 +1100903 switch (wrerr) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000904 case YES:
905 run_err("%s: %s", np, strerror(wrerrno));
906 break;
907 case NO:
Damien Miller35dabd02000-05-01 21:10:33 +1000908 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000909 break;
910 case DISPLAYED:
911 break;
912 }
913 }
914screwup:
915 run_err("protocol error: %s", why);
916 exit(1);
917}
918
919int
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000920response(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921{
922 char ch, *cp, resp, rbuf[2048];
923
Damien Millere247cc42000-05-07 12:03:14 +1000924 if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000925 lostconn(0);
926
927 cp = rbuf;
Damien Miller95def091999-11-25 00:26:21 +1100928 switch (resp) {
929 case 0: /* ok */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000930 return (0);
931 default:
932 *cp++ = resp;
933 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100934 case 1: /* error, followed by error msg */
935 case 2: /* fatal error, "" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000936 do {
Damien Millere247cc42000-05-07 12:03:14 +1000937 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000938 lostconn(0);
939 *cp++ = ch;
940 } while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
941
942 if (!iamremote)
Damien Miller35dabd02000-05-01 21:10:33 +1000943 (void) atomicio(write, STDERR_FILENO, rbuf, cp - rbuf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000944 ++errs;
945 if (resp == 1)
946 return (-1);
947 exit(1);
948 }
949 /* NOTREACHED */
950}
951
952void
Ben Lindstrom3c36bb22001-12-06 17:55:26 +0000953usage(void)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000954{
Ben Lindstrom1e243242001-09-18 05:38:44 +0000955 (void) fprintf(stderr,
Ben Lindstrom45933dd2002-06-21 00:10:58 +0000956 "usage: scp [-pqrvBC46] [-F config] [-S program] [-P port]\n"
957 " [-c cipher] [-i identity] [-o option]\n"
958 " [[user@]host1:]file1 [...] [[user@]host2:]file2\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000959 exit(1);
960}
961
962void
Damien Miller95def091999-11-25 00:26:21 +1100963run_err(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000964{
965 static FILE *fp;
966 va_list ap;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000967
968 ++errs;
969 if (fp == NULL && !(fp = fdopen(remout, "w")))
970 return;
Damien Miller95def091999-11-25 00:26:21 +1100971 (void) fprintf(fp, "%c", 0x01);
972 (void) fprintf(fp, "scp: ");
Damien Miller03783f01999-12-31 09:16:40 +1100973 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +1100974 (void) vfprintf(fp, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +1100975 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +1100976 (void) fprintf(fp, "\n");
977 (void) fflush(fp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000978
Damien Miller95def091999-11-25 00:26:21 +1100979 if (!iamremote) {
Damien Miller03783f01999-12-31 09:16:40 +1100980 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +1100981 vfprintf(stderr, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +1100982 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +1100983 fprintf(stderr, "\n");
984 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000985}
986
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000987void
988verifydir(cp)
989 char *cp;
990{
991 struct stat stb;
992
993 if (!stat(cp, &stb)) {
994 if (S_ISDIR(stb.st_mode))
995 return;
996 errno = ENOTDIR;
997 }
998 run_err("%s: %s", cp, strerror(errno));
999 exit(1);
1000}
1001
1002int
1003okname(cp0)
1004 char *cp0;
1005{
1006 int c;
1007 char *cp;
1008
1009 cp = cp0;
1010 do {
Ben Lindstrom7d5ed3a2001-06-25 04:28:30 +00001011 c = (int)*cp;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001012 if (c & 0200)
1013 goto bad;
Kevin Steves8daed182000-12-16 19:21:03 +00001014 if (!isalpha(c) && !isdigit(c) &&
Ben Lindstromc276c122002-12-23 02:14:51 +00001015 c != '@' && c != '_' && c != '-' && c != '.' && c != '+')
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001016 goto bad;
1017 } while (*++cp);
1018 return (1);
1019
Damien Miller98c7ad62000-03-09 21:27:49 +11001020bad: fprintf(stderr, "%s: invalid user name\n", cp0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001021 return (0);
1022}
1023
1024BUF *
1025allocbuf(bp, fd, blksize)
1026 BUF *bp;
1027 int fd, blksize;
1028{
1029 size_t size;
Tim Rice13aae5e2001-10-21 17:53:58 -07001030#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001031 struct stat stb;
1032
1033 if (fstat(fd, &stb) < 0) {
1034 run_err("fstat: %s", strerror(errno));
1035 return (0);
1036 }
Ben Lindstrom418e0782002-12-23 02:22:09 +00001037 size = roundup(stb.st_blksize, blksize);
1038 if (size == 0)
Damien Miller95def091999-11-25 00:26:21 +11001039 size = blksize;
Tim Rice13aae5e2001-10-21 17:53:58 -07001040#else /* HAVE_STRUCT_STAT_ST_BLKSIZE */
Kevin Stevesef4eea92001-02-05 12:42:17 +00001041 size = blksize;
Tim Rice13aae5e2001-10-21 17:53:58 -07001042#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001043 if (bp->cnt >= size)
1044 return (bp);
Damien Miller95def091999-11-25 00:26:21 +11001045 if (bp->buf == NULL)
1046 bp->buf = xmalloc(size);
1047 else
1048 bp->buf = xrealloc(bp->buf, size);
Ben Lindstrom5fccbc22001-09-12 17:49:48 +00001049 memset(bp->buf, 0, size);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001050 bp->cnt = size;
1051 return (bp);
1052}
1053
1054void
1055lostconn(signo)
1056 int signo;
1057{
1058 if (!iamremote)
Ben Lindstrom738f51e2001-06-21 03:08:58 +00001059 write(STDERR_FILENO, "lost connection\n", 16);
1060 if (signo)
1061 _exit(1);
1062 else
1063 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001064}