blob: b18e7323c059b1a3d2c3870f909a8829eaf424e1 [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"
Ben Lindstrom9cc94642001-06-09 01:15:11 +000078RCSID("$OpenBSD: scp.c,v 1.72 2001/06/03 19:38:42 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 Millerd4a8b7e1999-10-27 13:42:43 +100085
Ben Lindstrom49a79c02000-11-17 03:47:20 +000086#ifdef HAVE___PROGNAME
87extern char *__progname;
88#else
89char *__progname;
90#endif
91
Damien Millerd4a8b7e1999-10-27 13:42:43 +100092/* For progressmeter() -- number of seconds before xfer considered "stalled" */
93#define STALLTIME 5
94
Damien Miller484118e2000-07-02 19:13:56 +100095/* Progress meter bar */
96#define BAR \
97 "************************************************************"\
98 "************************************************************"\
99 "************************************************************"\
100 "************************************************************"
101#define MAX_BARLENGTH (sizeof(BAR) - 1)
102
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000103/* Visual statistics about files as they are transferred. */
104void progressmeter(int);
105
106/* Returns width of the terminal (for progress meter calculations). */
107int getttywidth(void);
Damien Millerad833b32000-08-23 10:46:23 +1000108int do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000109
Ben Lindstrom387c4722001-05-08 20:27:25 +0000110/* Struct for addargs */
111arglist args;
Damien Miller874d77b2000-10-14 16:23:11 +1100112
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000113/* Time a transfer started. */
114static struct timeval start;
115
116/* Number of bytes of current file transferred so far. */
Ben Lindstrom4eda71d2001-04-22 17:13:20 +0000117volatile off_t statbytes;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000118
119/* Total size of current file. */
Damien Millera2d6efe1999-11-13 13:22:46 +1100120off_t totalbytes = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000121
122/* Name of current file being transferred. */
123char *curfile;
124
125/* This is set to non-zero to enable verbose mode. */
Damien Miller95def091999-11-25 00:26:21 +1100126int verbose_mode = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000127
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000128/* This is set to zero if the progressmeter is not desired. */
129int showprogress = 1;
130
Damien Millerad833b32000-08-23 10:46:23 +1000131/* This is the program to execute for the secured connection. ("ssh" or -S) */
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000132char *ssh_program = _PATH_SSH_PROGRAM;
Damien Millerad833b32000-08-23 10:46:23 +1000133
Damien Miller5428f641999-11-25 11:54:57 +1100134/*
135 * This function executes the given command as the specified user on the
136 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
137 * assigns the input and output file descriptors on success.
138 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000139
Damien Miller4af51302000-04-16 11:18:38 +1000140int
Damien Millerad833b32000-08-23 10:46:23 +1000141do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000142{
Damien Miller95def091999-11-25 00:26:21 +1100143 int pin[2], pout[2], reserved[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000144
Damien Miller95def091999-11-25 00:26:21 +1100145 if (verbose_mode)
Damien Miller874d77b2000-10-14 16:23:11 +1100146 fprintf(stderr, "Executing: program %s host %s, user %s, command %s\n",
147 ssh_program, host, remuser ? remuser : "(unspecified)", cmd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000148
Damien Miller5428f641999-11-25 11:54:57 +1100149 /*
150 * Reserve two descriptors so that the real pipes won't get
151 * descriptors 0 and 1 because that will screw up dup2 below.
152 */
Damien Miller95def091999-11-25 00:26:21 +1100153 pipe(reserved);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000154
Damien Miller95def091999-11-25 00:26:21 +1100155 /* Create a socket pair for communicating with ssh. */
156 if (pipe(pin) < 0)
157 fatal("pipe: %s", strerror(errno));
158 if (pipe(pout) < 0)
159 fatal("pipe: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000160
Damien Miller95def091999-11-25 00:26:21 +1100161 /* Free the reserved descriptors. */
162 close(reserved[0]);
163 close(reserved[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000164
Damien Miller95def091999-11-25 00:26:21 +1100165 /* For a child to execute the command on the remote host using ssh. */
Damien Miller874d77b2000-10-14 16:23:11 +1100166 if (fork() == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100167 /* Child. */
168 close(pin[1]);
169 close(pout[0]);
170 dup2(pin[0], 0);
171 dup2(pout[1], 1);
172 close(pin[0]);
173 close(pout[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000174
Damien Miller874d77b2000-10-14 16:23:11 +1100175 args.list[0] = ssh_program;
176 if (remuser != NULL)
Ben Lindstrom387c4722001-05-08 20:27:25 +0000177 addargs(&args, "-l%s", remuser);
178 addargs(&args, "%s", host);
179 addargs(&args, "%s", cmd);
Damien Miller95def091999-11-25 00:26:21 +1100180
Damien Miller874d77b2000-10-14 16:23:11 +1100181 execvp(ssh_program, args.list);
Damien Millerad833b32000-08-23 10:46:23 +1000182 perror(ssh_program);
Damien Miller95def091999-11-25 00:26:21 +1100183 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000184 }
Damien Miller95def091999-11-25 00:26:21 +1100185 /* Parent. Close the other side, and return the local side. */
186 close(pin[0]);
187 *fdout = pin[1];
188 close(pout[1]);
189 *fdin = pout[0];
190 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191}
192
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000193typedef struct {
194 int cnt;
195 char *buf;
196} BUF;
197
Damien Miller95def091999-11-25 00:26:21 +1100198BUF *allocbuf(BUF *, int, int);
Damien Miller95def091999-11-25 00:26:21 +1100199void lostconn(int);
200void nospace(void);
201int okname(char *);
202void run_err(const char *,...);
203void verifydir(char *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000204
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000205struct passwd *pwd;
Damien Miller95def091999-11-25 00:26:21 +1100206uid_t userid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000207int errs, remin, remout;
208int pflag, iamremote, iamrecursive, targetshouldbedirectory;
209
210#define CMDNEEDS 64
211char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
212
Damien Miller95def091999-11-25 00:26:21 +1100213int response(void);
214void rsource(char *, struct stat *);
215void sink(int, char *[]);
216void source(int, char *[]);
217void tolocal(int, char *[]);
218void toremote(char *, int, char *[]);
219void usage(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000220
221int
222main(argc, argv)
223 int argc;
224 char *argv[];
225{
226 int ch, fflag, tflag;
227 char *targ;
228 extern char *optarg;
229 extern int optind;
230
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000231 __progname = get_progname(argv[0]);
232
Damien Miller874d77b2000-10-14 16:23:11 +1100233 args.list = NULL;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000234 addargs(&args, "ssh"); /* overwritten with ssh_program */
235 addargs(&args, "-x");
236 addargs(&args, "-oFallBackToRsh no");
Damien Miller874d77b2000-10-14 16:23:11 +1100237
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000238 fflag = tflag = 0;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000239 while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:o:")) != -1)
Damien Miller95def091999-11-25 00:26:21 +1100240 switch (ch) {
241 /* User-visible flags. */
Damien Miller34132e52000-01-14 15:45:46 +1100242 case '4':
Damien Miller34132e52000-01-14 15:45:46 +1100243 case '6':
Damien Miller874d77b2000-10-14 16:23:11 +1100244 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000245 addargs(&args, "-%c", ch);
Damien Miller874d77b2000-10-14 16:23:11 +1100246 break;
247 case 'o':
248 case 'c':
249 case 'i':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000250 addargs(&args, "-%c%s", ch, optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100251 break;
252 case 'P':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000253 addargs(&args, "-p%s", optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100254 break;
255 case 'B':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000256 addargs(&args, "-oBatchmode yes");
Damien Miller34132e52000-01-14 15:45:46 +1100257 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000258 case 'p':
259 pflag = 1;
260 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000261 case 'r':
262 iamrecursive = 1;
263 break;
Damien Millerad833b32000-08-23 10:46:23 +1000264 case 'S':
Damien Miller874d77b2000-10-14 16:23:11 +1100265 ssh_program = xstrdup(optarg);
266 break;
267 case 'v':
Ben Lindstrom9cc94642001-06-09 01:15:11 +0000268 addargs(&args, "-v");
Damien Miller874d77b2000-10-14 16:23:11 +1100269 verbose_mode = 1;
270 break;
271 case 'q':
272 showprogress = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000273 break;
274
Damien Miller95def091999-11-25 00:26:21 +1100275 /* Server options. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000276 case 'd':
277 targetshouldbedirectory = 1;
278 break;
Damien Miller95def091999-11-25 00:26:21 +1100279 case 'f': /* "from" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000280 iamremote = 1;
281 fflag = 1;
282 break;
Damien Miller95def091999-11-25 00:26:21 +1100283 case 't': /* "to" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000284 iamremote = 1;
285 tflag = 1;
Damien Miller402b3312001-04-14 00:28:42 +1000286#ifdef HAVE_CYGWIN
287 setmode(0, O_BINARY);
288#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000289 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000290 default:
291 usage();
292 }
293 argc -= optind;
294 argv += optind;
295
296 if ((pwd = getpwuid(userid = getuid())) == NULL)
Damien Miller95def091999-11-25 00:26:21 +1100297 fatal("unknown user %d", (int) userid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298
Damien Miller95def091999-11-25 00:26:21 +1100299 if (!isatty(STDERR_FILENO))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000300 showprogress = 0;
301
302 remin = STDIN_FILENO;
303 remout = STDOUT_FILENO;
304
Kevin Stevesef4eea92001-02-05 12:42:17 +0000305 if (fflag) {
Damien Miller95def091999-11-25 00:26:21 +1100306 /* Follow "protocol", send data. */
307 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000308 source(argc, argv);
309 exit(errs != 0);
310 }
Damien Miller95def091999-11-25 00:26:21 +1100311 if (tflag) {
312 /* Receive data. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000313 sink(argc, argv);
314 exit(errs != 0);
315 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000316 if (argc < 2)
317 usage();
318 if (argc > 2)
319 targetshouldbedirectory = 1;
320
321 remin = remout = -1;
322 /* Command to be executed on remote system using "ssh". */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000323 (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
324 verbose_mode ? " -v" : "",
Damien Millerad833b32000-08-23 10:46:23 +1000325 iamrecursive ? " -r" : "", pflag ? " -p" : "",
326 targetshouldbedirectory ? " -d" : "");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000327
Damien Miller95def091999-11-25 00:26:21 +1100328 (void) signal(SIGPIPE, lostconn);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000329
330 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
331 toremote(targ, argc, argv);
332 else {
Damien Miller95def091999-11-25 00:26:21 +1100333 tolocal(argc, argv); /* Dest is local host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000334 if (targetshouldbedirectory)
335 verifydir(argv[argc - 1]);
336 }
337 exit(errs != 0);
338}
339
340void
341toremote(targ, argc, argv)
342 char *targ, *argv[];
343 int argc;
344{
345 int i, len;
346 char *bp, *host, *src, *suser, *thost, *tuser;
347
348 *targ++ = 0;
349 if (*targ == 0)
350 targ = ".";
351
352 if ((thost = strchr(argv[argc - 1], '@'))) {
353 /* user@host */
354 *thost++ = 0;
355 tuser = argv[argc - 1];
356 if (*tuser == '\0')
357 tuser = NULL;
358 else if (!okname(tuser))
359 exit(1);
360 } else {
361 thost = argv[argc - 1];
362 tuser = NULL;
363 }
364
365 for (i = 0; i < argc - 1; i++) {
366 src = colon(argv[i]);
Damien Miller95def091999-11-25 00:26:21 +1100367 if (src) { /* remote to remote */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000368 *src++ = 0;
369 if (*src == 0)
370 src = ".";
371 host = strchr(argv[i], '@');
Damien Millerad833b32000-08-23 10:46:23 +1000372 len = strlen(ssh_program) + strlen(argv[i]) +
373 strlen(src) + (tuser ? strlen(tuser) : 0) +
374 strlen(thost) + strlen(targ) + CMDNEEDS + 32;
Damien Miller95def091999-11-25 00:26:21 +1100375 bp = xmalloc(len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000376 if (host) {
377 *host++ = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100378 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000379 suser = argv[i];
380 if (*suser == '\0')
381 suser = pwd->pw_name;
382 else if (!okname(suser))
383 continue;
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000384 snprintf(bp, len,
385 "%s%s -x -o'FallBackToRsh no' -n "
386 "-l %s %s %s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000387 ssh_program, verbose_mode ? " -v" : "",
388 suser, host, cmd, src,
389 tuser ? tuser : "", tuser ? "@" : "",
390 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100391 } else {
392 host = cleanhostname(argv[i]);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000393 snprintf(bp, len,
394 "exec %s%s -x -o'FallBackToRsh no' -n %s "
395 "%s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000396 ssh_program, verbose_mode ? " -v" : "",
397 host, cmd, src,
398 tuser ? tuser : "", tuser ? "@" : "",
399 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100400 }
Damien Miller95def091999-11-25 00:26:21 +1100401 if (verbose_mode)
402 fprintf(stderr, "Executing: %s\n", bp);
403 (void) system(bp);
404 (void) xfree(bp);
405 } else { /* local to remote */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000406 if (remin == -1) {
407 len = strlen(targ) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100408 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000409 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100410 host = cleanhostname(thost);
Damien Millerad833b32000-08-23 10:46:23 +1000411 if (do_cmd(host, tuser, bp, &remin,
412 &remout, argc) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100413 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000414 if (response() < 0)
415 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100416 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000417 }
Damien Miller95def091999-11-25 00:26:21 +1100418 source(1, argv + i);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000419 }
420 }
421}
422
423void
424tolocal(argc, argv)
425 int argc;
426 char *argv[];
427{
428 int i, len;
429 char *bp, *host, *src, *suser;
430
431 for (i = 0; i < argc - 1; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100432 if (!(src = colon(argv[i]))) { /* Local to local. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000433 len = strlen(_PATH_CP) + strlen(argv[i]) +
Damien Millerad833b32000-08-23 10:46:23 +1000434 strlen(argv[argc - 1]) + 20;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000435 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000436 (void) snprintf(bp, len, "exec %s%s%s %s %s", _PATH_CP,
Damien Millerad833b32000-08-23 10:46:23 +1000437 iamrecursive ? " -r" : "", pflag ? " -p" : "",
438 argv[i], argv[argc - 1]);
Damien Miller95def091999-11-25 00:26:21 +1100439 if (verbose_mode)
440 fprintf(stderr, "Executing: %s\n", bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000441 if (system(bp))
442 ++errs;
Damien Miller95def091999-11-25 00:26:21 +1100443 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000444 continue;
445 }
446 *src++ = 0;
447 if (*src == 0)
448 src = ".";
449 if ((host = strchr(argv[i], '@')) == NULL) {
450 host = argv[i];
451 suser = NULL;
452 } else {
453 *host++ = 0;
454 suser = argv[i];
455 if (*suser == '\0')
456 suser = pwd->pw_name;
457 else if (!okname(suser))
458 continue;
459 }
Damien Miller34132e52000-01-14 15:45:46 +1100460 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461 len = strlen(src) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100462 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000463 (void) snprintf(bp, len, "%s -f %s", cmd, src);
Damien Millerad833b32000-08-23 10:46:23 +1000464 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100465 (void) xfree(bp);
466 ++errs;
467 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000468 }
Damien Miller95def091999-11-25 00:26:21 +1100469 xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000470 sink(1, argv + argc - 1);
Damien Miller95def091999-11-25 00:26:21 +1100471 (void) close(remin);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000472 remin = remout = -1;
473 }
474}
475
476void
477source(argc, argv)
478 int argc;
479 char *argv[];
480{
481 struct stat stb;
482 static BUF buffer;
483 BUF *bp;
Ben Lindstrom4eda71d2001-04-22 17:13:20 +0000484 off_t i, amt, result;
485 int fd, haderr, indx;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000486 char *last, *name, buf[2048];
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000487 int len;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488
489 for (indx = 0; indx < argc; ++indx) {
Damien Miller95def091999-11-25 00:26:21 +1100490 name = argv[indx];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000491 statbytes = 0;
Ben Lindstromd47cf4d2001-04-07 01:14:38 +0000492 len = strlen(name);
493 while (len > 1 && name[len-1] == '/')
494 name[--len] = '\0';
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000495 if ((fd = open(name, O_RDONLY, 0)) < 0)
496 goto syserr;
497 if (fstat(fd, &stb) < 0) {
498syserr: run_err("%s: %s", name, strerror(errno));
499 goto next;
500 }
501 switch (stb.st_mode & S_IFMT) {
502 case S_IFREG:
503 break;
504 case S_IFDIR:
505 if (iamrecursive) {
506 rsource(name, &stb);
507 goto next;
508 }
509 /* FALLTHROUGH */
510 default:
511 run_err("%s: not a regular file", name);
512 goto next;
513 }
514 if ((last = strrchr(name, '/')) == NULL)
515 last = name;
516 else
517 ++last;
518 curfile = last;
519 if (pflag) {
520 /*
521 * Make it compatible with possible future
522 * versions expecting microseconds.
523 */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000524 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000525 (u_long) stb.st_mtime,
526 (u_long) stb.st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000527 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000528 if (response() < 0)
529 goto next;
530 }
531#define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
Damien Miller753b1c02001-03-19 12:56:14 +1100532#ifdef HAVE_LONG_LONG_INT
Ben Lindstroma4c57662001-03-17 00:10:20 +0000533 snprintf(buf, sizeof buf, "C%04o %lld %s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000534 (u_int) (stb.st_mode & FILEMODEMASK),
Ben Lindstromfea72782001-03-17 18:07:46 +0000535 (long long) stb.st_size, last);
Damien Millerffd0e102001-03-19 12:45:02 +1100536#else
537 /* XXX: Handle integer overflow? */
Ben Lindstrom8feff452001-03-19 03:09:40 +0000538 snprintf(buf, sizeof buf, "C%04o %lu %s\n",
Damien Millerffd0e102001-03-19 12:45:02 +1100539 (u_int) (stb.st_mode & FILEMODEMASK),
Ben Lindstrom8feff452001-03-19 03:09:40 +0000540 (u_long) stb.st_size, last);
Damien Millerffd0e102001-03-19 12:45:02 +1100541#endif
542
Damien Miller95def091999-11-25 00:26:21 +1100543 if (verbose_mode) {
544 fprintf(stderr, "Sending file modes: %s", buf);
545 fflush(stderr);
546 }
Damien Miller35dabd02000-05-01 21:10:33 +1000547 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000548 if (response() < 0)
549 goto next;
550 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100551next: (void) close(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000552 continue;
553 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000554 if (showprogress) {
555 totalbytes = stb.st_size;
556 progressmeter(-1);
557 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000558 /* Keep writing after an error so that we stay sync'd up. */
559 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
560 amt = bp->cnt;
561 if (i + amt > stb.st_size)
562 amt = stb.st_size - i;
563 if (!haderr) {
Damien Millere247cc42000-05-07 12:03:14 +1000564 result = atomicio(read, fd, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000565 if (result != amt)
566 haderr = result >= 0 ? EIO : errno;
567 }
568 if (haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000569 (void) atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570 else {
Damien Miller864ea591999-12-15 11:04:25 +1100571 result = atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000572 if (result != amt)
573 haderr = result >= 0 ? EIO : errno;
574 statbytes += result;
575 }
576 }
Damien Miller95def091999-11-25 00:26:21 +1100577 if (showprogress)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000578 progressmeter(1);
579
580 if (close(fd) < 0 && !haderr)
581 haderr = errno;
582 if (!haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000583 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000584 else
585 run_err("%s: %s", name, strerror(haderr));
Damien Miller95def091999-11-25 00:26:21 +1100586 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000587 }
588}
589
590void
591rsource(name, statp)
592 char *name;
593 struct stat *statp;
594{
595 DIR *dirp;
596 struct dirent *dp;
597 char *last, *vect[1], path[1100];
598
599 if (!(dirp = opendir(name))) {
600 run_err("%s: %s", name, strerror(errno));
601 return;
602 }
603 last = strrchr(name, '/');
604 if (last == 0)
605 last = name;
606 else
607 last++;
608 if (pflag) {
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000609 (void) snprintf(path, sizeof(path), "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000610 (u_long) statp->st_mtime,
611 (u_long) statp->st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000612 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000613 if (response() < 0) {
614 closedir(dirp);
615 return;
616 }
617 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000618 (void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000619 (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
Damien Miller95def091999-11-25 00:26:21 +1100620 if (verbose_mode)
621 fprintf(stderr, "Entering directory: %s", path);
Damien Miller35dabd02000-05-01 21:10:33 +1000622 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000623 if (response() < 0) {
624 closedir(dirp);
625 return;
626 }
Ben Lindstrombd472262001-03-29 00:39:55 +0000627 while ((dp = readdir(dirp)) != NULL) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000628 if (dp->d_ino == 0)
629 continue;
630 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
631 continue;
632 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
633 run_err("%s/%s: name too long", name, dp->d_name);
634 continue;
635 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000636 (void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000637 vect[0] = path;
638 source(1, vect);
639 }
Damien Miller95def091999-11-25 00:26:21 +1100640 (void) closedir(dirp);
Damien Miller35dabd02000-05-01 21:10:33 +1000641 (void) atomicio(write, remout, "E\n", 2);
Damien Miller95def091999-11-25 00:26:21 +1100642 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000643}
644
645void
646sink(argc, argv)
647 int argc;
648 char *argv[];
649{
650 static BUF buffer;
651 struct stat stb;
Damien Miller95def091999-11-25 00:26:21 +1100652 enum {
653 YES, NO, DISPLAYED
654 } wrerr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000655 BUF *bp;
656 off_t i, j;
657 int amt, count, exists, first, mask, mode, ofd, omode;
Damien Millercaf6dd62000-08-29 11:33:50 +1100658 off_t size;
659 int setimes, targisdir, wrerrno = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000660 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
Damien Miller62cee002000-09-23 17:15:56 +1100661 struct timeval tv[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000662
Ben Lindstromf719a202001-04-14 23:14:22 +0000663#define atime tv[0]
664#define mtime tv[1]
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000665#define SCREWUP(str) { why = str; goto screwup; }
666
667 setimes = targisdir = 0;
668 mask = umask(0);
669 if (!pflag)
Damien Miller95def091999-11-25 00:26:21 +1100670 (void) umask(mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671 if (argc != 1) {
672 run_err("ambiguous target");
673 exit(1);
674 }
675 targ = *argv;
676 if (targetshouldbedirectory)
677 verifydir(targ);
Damien Miller95def091999-11-25 00:26:21 +1100678
Damien Miller35dabd02000-05-01 21:10:33 +1000679 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000680 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
681 targisdir = 1;
682 for (first = 1;; first = 0) {
683 cp = buf;
Damien Millere247cc42000-05-07 12:03:14 +1000684 if (atomicio(read, remin, cp, 1) <= 0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000685 return;
686 if (*cp++ == '\n')
687 SCREWUP("unexpected <newline>");
688 do {
Damien Millere247cc42000-05-07 12:03:14 +1000689 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000690 SCREWUP("lost connection");
691 *cp++ = ch;
692 } while (cp < &buf[sizeof(buf) - 1] && ch != '\n');
693 *cp = 0;
694
695 if (buf[0] == '\01' || buf[0] == '\02') {
696 if (iamremote == 0)
Damien Miller35dabd02000-05-01 21:10:33 +1000697 (void) atomicio(write, STDERR_FILENO,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000698 buf + 1, strlen(buf + 1));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000699 if (buf[0] == '\02')
700 exit(1);
701 ++errs;
702 continue;
703 }
704 if (buf[0] == 'E') {
Damien Miller35dabd02000-05-01 21:10:33 +1000705 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000706 return;
707 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000708 if (ch == '\n')
709 *--cp = 0;
710
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000711 cp = buf;
712 if (*cp == 'T') {
713 setimes++;
714 cp++;
Ben Lindstromf719a202001-04-14 23:14:22 +0000715 mtime.tv_sec = strtol(cp, &cp, 10);
716 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000717 SCREWUP("mtime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000718 mtime.tv_usec = strtol(cp, &cp, 10);
719 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000720 SCREWUP("mtime.usec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000721 atime.tv_sec = strtol(cp, &cp, 10);
722 if (!cp || *cp++ != ' ')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000723 SCREWUP("atime.sec not delimited");
Ben Lindstromf719a202001-04-14 23:14:22 +0000724 atime.tv_usec = strtol(cp, &cp, 10);
725 if (!cp || *cp++ != '\0')
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000726 SCREWUP("atime.usec not delimited");
Damien Miller35dabd02000-05-01 21:10:33 +1000727 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000728 continue;
729 }
730 if (*cp != 'C' && *cp != 'D') {
731 /*
732 * Check for the case "rcp remote:foo\* local:bar".
733 * In this case, the line "No match." can be returned
734 * by the shell before the rcp command on the remote is
735 * executed so the ^Aerror_message convention isn't
736 * followed.
737 */
738 if (first) {
739 run_err("%s", cp);
740 exit(1);
741 }
742 SCREWUP("expected control record");
743 }
744 mode = 0;
745 for (++cp; cp < buf + 5; cp++) {
746 if (*cp < '0' || *cp > '7')
747 SCREWUP("bad mode");
748 mode = (mode << 3) | (*cp - '0');
749 }
750 if (*cp++ != ' ')
751 SCREWUP("mode not delimited");
752
Ben Lindstrombd472262001-03-29 00:39:55 +0000753 for (size = 0; isdigit(*cp);)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000754 size = size * 10 + (*cp++ - '0');
755 if (*cp++ != ' ')
756 SCREWUP("size not delimited");
757 if (targisdir) {
758 static char *namebuf;
759 static int cursize;
760 size_t need;
761
762 need = strlen(targ) + strlen(cp) + 250;
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000763 if (need > cursize) {
764 if (namebuf)
765 xfree(namebuf);
Damien Miller95def091999-11-25 00:26:21 +1100766 namebuf = xmalloc(need);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000767 cursize = need;
768 }
769 (void) snprintf(namebuf, need, "%s%s%s", targ,
Damien Millerad833b32000-08-23 10:46:23 +1000770 *targ ? "/" : "", cp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000771 np = namebuf;
772 } else
773 np = targ;
774 curfile = cp;
775 exists = stat(np, &stb) == 0;
776 if (buf[0] == 'D') {
777 int mod_flag = pflag;
778 if (exists) {
779 if (!S_ISDIR(stb.st_mode)) {
780 errno = ENOTDIR;
781 goto bad;
782 }
783 if (pflag)
Damien Miller95def091999-11-25 00:26:21 +1100784 (void) chmod(np, mode);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000785 } else {
Damien Miller95def091999-11-25 00:26:21 +1100786 /* Handle copying from a read-only
787 directory */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000788 mod_flag = 1;
789 if (mkdir(np, mode | S_IRWXU) < 0)
790 goto bad;
791 }
Ben Lindstrom550bc542001-02-10 21:50:00 +0000792 vect[0] = xstrdup(np);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000793 sink(1, vect);
794 if (setimes) {
795 setimes = 0;
Damien Miller225736c2001-02-19 21:51:08 +1100796 if (utimes(vect[0], tv) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100797 run_err("%s: set times: %s",
Damien Miller225736c2001-02-19 21:51:08 +1100798 vect[0], strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000799 }
800 if (mod_flag)
Damien Miller225736c2001-02-19 21:51:08 +1100801 (void) chmod(vect[0], mode);
802 if (vect[0])
803 xfree(vect[0]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000804 continue;
805 }
806 omode = mode;
807 mode |= S_IWRITE;
Ben Lindstrom7bad55b2001-06-05 19:31:41 +0000808 if ((ofd = open(np, O_WRONLY|O_CREAT, mode)) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000809bad: run_err("%s: %s", np, strerror(errno));
810 continue;
811 }
Damien Miller35dabd02000-05-01 21:10:33 +1000812 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000813 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100814 (void) close(ofd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000815 continue;
816 }
817 cp = bp->buf;
818 wrerr = NO;
819
820 if (showprogress) {
821 totalbytes = size;
822 progressmeter(-1);
823 }
824 statbytes = 0;
825 for (count = i = 0; i < size; i += 4096) {
826 amt = 4096;
827 if (i + amt > size)
828 amt = size - i;
829 count += amt;
830 do {
Damien Miller69b69aa2000-10-28 14:19:58 +1100831 j = read(remin, cp, amt);
832 if (j == -1 && (errno == EINTR || errno == EAGAIN)) {
833 continue;
834 } else if (j <= 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000835 run_err("%s", j ? strerror(errno) :
Ben Lindstrombd472262001-03-29 00:39:55 +0000836 "dropped connection");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000837 exit(1);
838 }
839 amt -= j;
840 cp += j;
Damien Miller95def091999-11-25 00:26:21 +1100841 statbytes += j;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000842 } while (amt > 0);
843 if (count == bp->cnt) {
844 /* Keep reading so we stay sync'd up. */
845 if (wrerr == NO) {
Damien Millere247cc42000-05-07 12:03:14 +1000846 j = atomicio(write, ofd, bp->buf, count);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000847 if (j != count) {
848 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100849 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000850 }
851 }
852 count = 0;
853 cp = bp->buf;
854 }
855 }
856 if (showprogress)
857 progressmeter(1);
858 if (count != 0 && wrerr == NO &&
Damien Millere247cc42000-05-07 12:03:14 +1000859 (j = atomicio(write, ofd, bp->buf, count)) != count) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000860 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100861 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000862 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000863 if (ftruncate(ofd, size)) {
864 run_err("%s: truncate: %s", np, strerror(errno));
865 wrerr = DISPLAYED;
866 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000867 if (pflag) {
868 if (exists || omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100869#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000870 if (fchmod(ofd, omode))
Damien Miller78315eb2000-09-29 23:01:36 +1100871#else /* HAVE_FCHMOD */
872 if (chmod(np, omode))
873#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000874 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000875 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000876 } else {
877 if (!exists && omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100878#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000879 if (fchmod(ofd, omode & ~mask))
Damien Miller78315eb2000-09-29 23:01:36 +1100880#else /* HAVE_FCHMOD */
881 if (chmod(np, omode & ~mask))
882#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000883 run_err("%s: set mode: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000884 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000885 }
Damien Millerbe484b52000-07-15 14:14:16 +1000886 if (close(ofd) == -1) {
887 wrerr = YES;
888 wrerrno = errno;
889 }
Damien Miller95def091999-11-25 00:26:21 +1100890 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000891 if (setimes && wrerr == NO) {
892 setimes = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100893 if (utimes(np, tv) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000894 run_err("%s: set times: %s",
Ben Lindstrombd472262001-03-29 00:39:55 +0000895 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000896 wrerr = DISPLAYED;
897 }
898 }
Damien Miller95def091999-11-25 00:26:21 +1100899 switch (wrerr) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000900 case YES:
901 run_err("%s: %s", np, strerror(wrerrno));
902 break;
903 case NO:
Damien Miller35dabd02000-05-01 21:10:33 +1000904 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000905 break;
906 case DISPLAYED:
907 break;
908 }
909 }
910screwup:
911 run_err("protocol error: %s", why);
912 exit(1);
913}
914
915int
916response()
917{
918 char ch, *cp, resp, rbuf[2048];
919
Damien Millere247cc42000-05-07 12:03:14 +1000920 if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921 lostconn(0);
922
923 cp = rbuf;
Damien Miller95def091999-11-25 00:26:21 +1100924 switch (resp) {
925 case 0: /* ok */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926 return (0);
927 default:
928 *cp++ = resp;
929 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100930 case 1: /* error, followed by error msg */
931 case 2: /* fatal error, "" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000932 do {
Damien Millere247cc42000-05-07 12:03:14 +1000933 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000934 lostconn(0);
935 *cp++ = ch;
936 } while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
937
938 if (!iamremote)
Damien Miller35dabd02000-05-01 21:10:33 +1000939 (void) atomicio(write, STDERR_FILENO, rbuf, cp - rbuf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000940 ++errs;
941 if (resp == 1)
942 return (-1);
943 exit(1);
944 }
945 /* NOTREACHED */
946}
947
948void
949usage()
950{
Damien Millerad833b32000-08-23 10:46:23 +1000951 (void) fprintf(stderr, "usage: scp "
Ben Lindstromff2618c2001-03-29 00:43:54 +0000952 "[-pqrvBC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1 f2\n"
953 " or: scp [options] f1 ... fn directory\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000954 exit(1);
955}
956
957void
Damien Miller95def091999-11-25 00:26:21 +1100958run_err(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000959{
960 static FILE *fp;
961 va_list ap;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000962
963 ++errs;
964 if (fp == NULL && !(fp = fdopen(remout, "w")))
965 return;
Damien Miller95def091999-11-25 00:26:21 +1100966 (void) fprintf(fp, "%c", 0x01);
967 (void) fprintf(fp, "scp: ");
Damien Miller03783f01999-12-31 09:16:40 +1100968 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +1100969 (void) vfprintf(fp, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +1100970 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +1100971 (void) fprintf(fp, "\n");
972 (void) fflush(fp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000973
Damien Miller95def091999-11-25 00:26:21 +1100974 if (!iamremote) {
Damien Miller03783f01999-12-31 09:16:40 +1100975 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +1100976 vfprintf(stderr, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +1100977 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +1100978 fprintf(stderr, "\n");
979 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000980}
981
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000982void
983verifydir(cp)
984 char *cp;
985{
986 struct stat stb;
987
988 if (!stat(cp, &stb)) {
989 if (S_ISDIR(stb.st_mode))
990 return;
991 errno = ENOTDIR;
992 }
993 run_err("%s: %s", cp, strerror(errno));
994 exit(1);
995}
996
997int
998okname(cp0)
999 char *cp0;
1000{
1001 int c;
1002 char *cp;
1003
1004 cp = cp0;
1005 do {
1006 c = *cp;
1007 if (c & 0200)
1008 goto bad;
Kevin Steves8daed182000-12-16 19:21:03 +00001009 if (!isalpha(c) && !isdigit(c) &&
1010 c != '_' && c != '-' && c != '.' && c != '+')
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001011 goto bad;
1012 } while (*++cp);
1013 return (1);
1014
Damien Miller98c7ad62000-03-09 21:27:49 +11001015bad: fprintf(stderr, "%s: invalid user name\n", cp0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001016 return (0);
1017}
1018
1019BUF *
1020allocbuf(bp, fd, blksize)
1021 BUF *bp;
1022 int fd, blksize;
1023{
1024 size_t size;
Damien Miller78315eb2000-09-29 23:01:36 +11001025#ifdef HAVE_ST_BLKSIZE
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001026 struct stat stb;
1027
1028 if (fstat(fd, &stb) < 0) {
1029 run_err("fstat: %s", strerror(errno));
1030 return (0);
1031 }
Damien Miller95def091999-11-25 00:26:21 +11001032 if (stb.st_blksize == 0)
1033 size = blksize;
1034 else
1035 size = blksize + (stb.st_blksize - blksize % stb.st_blksize) %
Damien Millerad833b32000-08-23 10:46:23 +10001036 stb.st_blksize;
Damien Miller78315eb2000-09-29 23:01:36 +11001037#else /* HAVE_ST_BLKSIZE */
Kevin Stevesef4eea92001-02-05 12:42:17 +00001038 size = blksize;
Damien Miller78315eb2000-09-29 23:01:36 +11001039#endif /* HAVE_ST_BLKSIZE */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001040 if (bp->cnt >= size)
1041 return (bp);
Damien Miller95def091999-11-25 00:26:21 +11001042 if (bp->buf == NULL)
1043 bp->buf = xmalloc(size);
1044 else
1045 bp->buf = xrealloc(bp->buf, size);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001046 bp->cnt = size;
1047 return (bp);
1048}
1049
1050void
1051lostconn(signo)
1052 int signo;
1053{
1054 if (!iamremote)
1055 fprintf(stderr, "lost connection\n");
1056 exit(1);
1057}
1058
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001059
1060void
1061alarmtimer(int wait)
1062{
Damien Miller95def091999-11-25 00:26:21 +11001063 struct itimerval itv;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001064
Damien Miller95def091999-11-25 00:26:21 +11001065 itv.it_value.tv_sec = wait;
1066 itv.it_value.tv_usec = 0;
1067 itv.it_interval = itv.it_value;
1068 setitimer(ITIMER_REAL, &itv, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001069}
1070
1071void
Damien Miller7684ee12000-03-17 23:40:15 +11001072updateprogressmeter(int ignore)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001073{
1074 int save_errno = errno;
1075
1076 progressmeter(0);
1077 errno = save_errno;
1078}
1079
Damien Miller81428f91999-11-18 09:28:11 +11001080int
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001081foregroundproc(void)
Damien Miller81428f91999-11-18 09:28:11 +11001082{
1083 static pid_t pgrp = -1;
1084 int ctty_pgrp;
1085
1086 if (pgrp == -1)
1087 pgrp = getpgrp();
1088
Ben Lindstromdd5c5a32001-02-02 18:58:33 +00001089#ifdef HAVE_TCGETPGRP
Damien Millerbac2d8a2000-09-05 16:13:06 +11001090 return ((ctty_pgrp = tcgetpgrp(STDOUT_FILENO)) != -1 &&
1091 ctty_pgrp == pgrp);
1092#else
Damien Miller95def091999-11-25 00:26:21 +11001093 return ((ioctl(STDOUT_FILENO, TIOCGPGRP, &ctty_pgrp) != -1 &&
1094 ctty_pgrp == pgrp));
Damien Millerbac2d8a2000-09-05 16:13:06 +11001095#endif
Damien Miller81428f91999-11-18 09:28:11 +11001096}
1097
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001098void
1099progressmeter(int flag)
1100{
1101 static const char prefixes[] = " KMGTP";
1102 static struct timeval lastupdate;
1103 static off_t lastsize;
1104 struct timeval now, td, wait;
1105 off_t cursize, abbrevsize;
1106 double elapsed;
Damien Miller7c64ba31999-11-11 21:39:50 +11001107 int ratio, barlength, i, remaining;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001108 char buf[256];
1109
1110 if (flag == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001111 (void) gettimeofday(&start, (struct timezone *) 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001112 lastupdate = start;
1113 lastsize = 0;
Damien Miller95def091999-11-25 00:26:21 +11001114 }
Damien Miller81428f91999-11-18 09:28:11 +11001115 if (foregroundproc() == 0)
1116 return;
1117
Damien Miller95def091999-11-25 00:26:21 +11001118 (void) gettimeofday(&now, (struct timezone *) 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001119 cursize = statbytes;
Damien Millera2d6efe1999-11-13 13:22:46 +11001120 if (totalbytes != 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001121 ratio = 100.0 * cursize / totalbytes;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001122 ratio = MAX(ratio, 0);
1123 ratio = MIN(ratio, 100);
Damien Miller95def091999-11-25 00:26:21 +11001124 } else
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001125 ratio = 100;
1126
Damien Miller95def091999-11-25 00:26:21 +11001127 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001128
1129 barlength = getttywidth() - 51;
Damien Miller484118e2000-07-02 19:13:56 +10001130 barlength = (barlength <= MAX_BARLENGTH)?barlength:MAX_BARLENGTH;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001131 if (barlength > 0) {
1132 i = barlength * ratio / 100;
1133 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Damien Miller484118e2000-07-02 19:13:56 +10001134 "|%.*s%*s|", i, BAR, barlength - i, "");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001135 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001136 i = 0;
1137 abbrevsize = cursize;
1138 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
1139 i++;
1140 abbrevsize >>= 10;
1141 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +00001142 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5lu %c%c ",
Kevin Stevesd2e0d7d2001-02-11 14:19:40 +00001143 (unsigned long) abbrevsize, prefixes[i],
1144 prefixes[i] == ' ' ? ' ' : 'B');
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001145
1146 timersub(&now, &lastupdate, &wait);
1147 if (cursize > lastsize) {
1148 lastupdate = now;
1149 lastsize = cursize;
1150 if (wait.tv_sec >= STALLTIME) {
1151 start.tv_sec += wait.tv_sec;
1152 start.tv_usec += wait.tv_usec;
1153 }
1154 wait.tv_sec = 0;
1155 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001156 timersub(&now, &start, &td);
1157 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
1158
Kevin Steves7d00ba42000-12-15 23:03:10 +00001159 if (flag != 1 &&
1160 (statbytes <= 0 || elapsed <= 0.0 || cursize > totalbytes)) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001161 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Kevin Steves7d00ba42000-12-15 23:03:10 +00001162 " --:-- ETA");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001163 } else if (wait.tv_sec >= STALLTIME) {
1164 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Kevin Steves7d00ba42000-12-15 23:03:10 +00001165 " - stalled -");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001166 } else {
Damien Miller8bb73be2000-04-19 16:26:12 +10001167 if (flag != 1)
Kevin Steves7d00ba42000-12-15 23:03:10 +00001168 remaining = (int)(totalbytes / (statbytes / elapsed) -
1169 elapsed);
Damien Miller8bb73be2000-04-19 16:26:12 +10001170 else
1171 remaining = elapsed;
1172
Damien Miller01ab4a21999-10-28 15:23:30 +10001173 i = remaining / 3600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001174 if (i)
1175 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Damien Millerad833b32000-08-23 10:46:23 +10001176 "%2d:", i);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001177 else
1178 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Damien Millerad833b32000-08-23 10:46:23 +10001179 " ");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001180 i = remaining % 3600;
1181 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Damien Millerad833b32000-08-23 10:46:23 +10001182 "%02d:%02d%s", i / 60, i % 60,
1183 (flag != 1) ? " ETA" : " ");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001184 }
1185 atomicio(write, fileno(stdout), buf, strlen(buf));
1186
1187 if (flag == -1) {
Kevin Steves93c17d92001-02-18 03:55:16 +00001188 mysignal(SIGALRM, updateprogressmeter);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001189 alarmtimer(1);
1190 } else if (flag == 1) {
1191 alarmtimer(0);
Damien Miller35dabd02000-05-01 21:10:33 +10001192 atomicio(write, fileno(stdout), "\n", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001193 statbytes = 0;
1194 }
1195}
1196
1197int
1198getttywidth(void)
1199{
1200 struct winsize winsize;
1201
1202 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
Damien Miller95def091999-11-25 00:26:21 +11001203 return (winsize.ws_col ? winsize.ws_col : 80);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001204 else
Damien Miller95def091999-11-25 00:26:21 +11001205 return (80);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001206}