blob: 3dcd194ea1df6e3859cb2fda01c09af0ea45f63c [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 Lindstroma4c57662001-03-17 00:10:20 +000078RCSID("$OpenBSD: scp.c,v 1.61 2001/03/15 15:05:59 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
Damien Miller874d77b2000-10-14 16:23:11 +1100110/* setup arguments for the call to ssh */
111void addargs(char *fmt, ...) __attribute__((format(printf, 1, 2)));
112
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 Lindstrom46c16222000-12-22 01:43:59 +0000117volatile u_long 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 Miller874d77b2000-10-14 16:23:11 +1100134/* This is the list of arguments that scp passes to ssh */
135struct {
136 char **list;
137 int num;
138 int nalloc;
139} args;
140
Damien Miller5428f641999-11-25 11:54:57 +1100141/*
142 * This function executes the given command as the specified user on the
143 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
144 * assigns the input and output file descriptors on success.
145 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000146
Damien Miller4af51302000-04-16 11:18:38 +1000147int
Damien Millerad833b32000-08-23 10:46:23 +1000148do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000149{
Damien Miller95def091999-11-25 00:26:21 +1100150 int pin[2], pout[2], reserved[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000151
Damien Miller95def091999-11-25 00:26:21 +1100152 if (verbose_mode)
Damien Miller874d77b2000-10-14 16:23:11 +1100153 fprintf(stderr, "Executing: program %s host %s, user %s, command %s\n",
154 ssh_program, host, remuser ? remuser : "(unspecified)", cmd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000155
Damien Miller5428f641999-11-25 11:54:57 +1100156 /*
157 * Reserve two descriptors so that the real pipes won't get
158 * descriptors 0 and 1 because that will screw up dup2 below.
159 */
Damien Miller95def091999-11-25 00:26:21 +1100160 pipe(reserved);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000161
Damien Miller95def091999-11-25 00:26:21 +1100162 /* Create a socket pair for communicating with ssh. */
163 if (pipe(pin) < 0)
164 fatal("pipe: %s", strerror(errno));
165 if (pipe(pout) < 0)
166 fatal("pipe: %s", strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000167
Damien Miller95def091999-11-25 00:26:21 +1100168 /* Free the reserved descriptors. */
169 close(reserved[0]);
170 close(reserved[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000171
Damien Miller95def091999-11-25 00:26:21 +1100172 /* For a child to execute the command on the remote host using ssh. */
Damien Miller874d77b2000-10-14 16:23:11 +1100173 if (fork() == 0) {
Damien Miller95def091999-11-25 00:26:21 +1100174 /* Child. */
175 close(pin[1]);
176 close(pout[0]);
177 dup2(pin[0], 0);
178 dup2(pout[1], 1);
179 close(pin[0]);
180 close(pout[1]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000181
Damien Miller874d77b2000-10-14 16:23:11 +1100182 args.list[0] = ssh_program;
183 if (remuser != NULL)
Damien Millere4041c92000-10-14 17:45:58 +1100184 addargs("-l%s", remuser);
Damien Miller874d77b2000-10-14 16:23:11 +1100185 addargs("%s", host);
186 addargs("%s", cmd);
Damien Miller95def091999-11-25 00:26:21 +1100187
Damien Miller874d77b2000-10-14 16:23:11 +1100188 execvp(ssh_program, args.list);
Damien Millerad833b32000-08-23 10:46:23 +1000189 perror(ssh_program);
Damien Miller95def091999-11-25 00:26:21 +1100190 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000191 }
Damien Miller95def091999-11-25 00:26:21 +1100192 /* Parent. Close the other side, and return the local side. */
193 close(pin[0]);
194 *fdout = pin[1];
195 close(pout[1]);
196 *fdin = pout[0];
197 return 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000198}
199
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000200typedef struct {
201 int cnt;
202 char *buf;
203} BUF;
204
205extern int iamremote;
206
Damien Miller95def091999-11-25 00:26:21 +1100207BUF *allocbuf(BUF *, int, int);
208char *colon(char *);
209void lostconn(int);
210void nospace(void);
211int okname(char *);
212void run_err(const char *,...);
213void verifydir(char *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000214
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000215struct passwd *pwd;
Damien Miller95def091999-11-25 00:26:21 +1100216uid_t userid;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000217int errs, remin, remout;
218int pflag, iamremote, iamrecursive, targetshouldbedirectory;
219
220#define CMDNEEDS 64
221char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
222
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000223int main(int, char *[]);
Damien Miller95def091999-11-25 00:26:21 +1100224int response(void);
225void rsource(char *, struct stat *);
226void sink(int, char *[]);
227void source(int, char *[]);
228void tolocal(int, char *[]);
Ben Lindstrom31ca54a2001-02-09 02:11:24 +0000229char *cleanhostname(char *);
Damien Miller95def091999-11-25 00:26:21 +1100230void toremote(char *, int, char *[]);
231void usage(void);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000232
233int
234main(argc, argv)
235 int argc;
236 char *argv[];
237{
238 int ch, fflag, tflag;
239 char *targ;
240 extern char *optarg;
241 extern int optind;
242
Ben Lindstrom49a79c02000-11-17 03:47:20 +0000243 __progname = get_progname(argv[0]);
244
Damien Miller874d77b2000-10-14 16:23:11 +1100245 args.list = NULL;
246 addargs("ssh"); /* overwritten with ssh_program */
247 addargs("-x");
248 addargs("-oFallBackToRsh no");
249
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000250 fflag = tflag = 0;
Ben Lindstrombf555ba2001-01-18 02:04:35 +0000251 while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:o:")) != -1)
Damien Miller95def091999-11-25 00:26:21 +1100252 switch (ch) {
253 /* User-visible flags. */
Damien Miller34132e52000-01-14 15:45:46 +1100254 case '4':
Damien Miller34132e52000-01-14 15:45:46 +1100255 case '6':
Damien Miller874d77b2000-10-14 16:23:11 +1100256 case 'C':
257 addargs("-%c", ch);
258 break;
259 case 'o':
260 case 'c':
261 case 'i':
Damien Miller50a41ed2000-10-16 12:14:42 +1100262 addargs("-%c%s", ch, optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100263 break;
264 case 'P':
Damien Miller50a41ed2000-10-16 12:14:42 +1100265 addargs("-p%s", optarg);
Damien Miller874d77b2000-10-14 16:23:11 +1100266 break;
267 case 'B':
Damien Miller50a41ed2000-10-16 12:14:42 +1100268 addargs("-oBatchmode yes");
Damien Miller34132e52000-01-14 15:45:46 +1100269 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000270 case 'p':
271 pflag = 1;
272 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000273 case 'r':
274 iamrecursive = 1;
275 break;
Damien Millerad833b32000-08-23 10:46:23 +1000276 case 'S':
Damien Miller874d77b2000-10-14 16:23:11 +1100277 ssh_program = xstrdup(optarg);
278 break;
279 case 'v':
280 verbose_mode = 1;
281 break;
282 case 'q':
283 showprogress = 0;
Damien Millerad833b32000-08-23 10:46:23 +1000284 break;
285
Damien Miller95def091999-11-25 00:26:21 +1100286 /* Server options. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000287 case 'd':
288 targetshouldbedirectory = 1;
289 break;
Damien Miller95def091999-11-25 00:26:21 +1100290 case 'f': /* "from" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000291 iamremote = 1;
292 fflag = 1;
293 break;
Damien Miller95def091999-11-25 00:26:21 +1100294 case 't': /* "to" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000295 iamremote = 1;
296 tflag = 1;
297 break;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000298 case '?':
299 default:
300 usage();
301 }
302 argc -= optind;
303 argv += optind;
304
305 if ((pwd = getpwuid(userid = getuid())) == NULL)
Damien Miller95def091999-11-25 00:26:21 +1100306 fatal("unknown user %d", (int) userid);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000307
Damien Miller95def091999-11-25 00:26:21 +1100308 if (!isatty(STDERR_FILENO))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000309 showprogress = 0;
310
311 remin = STDIN_FILENO;
312 remout = STDOUT_FILENO;
313
Kevin Stevesef4eea92001-02-05 12:42:17 +0000314 if (fflag) {
Damien Miller95def091999-11-25 00:26:21 +1100315 /* Follow "protocol", send data. */
316 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000317 source(argc, argv);
318 exit(errs != 0);
319 }
Damien Miller95def091999-11-25 00:26:21 +1100320 if (tflag) {
321 /* Receive data. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000322 sink(argc, argv);
323 exit(errs != 0);
324 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000325 if (argc < 2)
326 usage();
327 if (argc > 2)
328 targetshouldbedirectory = 1;
329
330 remin = remout = -1;
331 /* Command to be executed on remote system using "ssh". */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000332 (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
333 verbose_mode ? " -v" : "",
Damien Millerad833b32000-08-23 10:46:23 +1000334 iamrecursive ? " -r" : "", pflag ? " -p" : "",
335 targetshouldbedirectory ? " -d" : "");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000336
Damien Miller95def091999-11-25 00:26:21 +1100337 (void) signal(SIGPIPE, lostconn);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000338
339 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
340 toremote(targ, argc, argv);
341 else {
Damien Miller95def091999-11-25 00:26:21 +1100342 tolocal(argc, argv); /* Dest is local host. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000343 if (targetshouldbedirectory)
344 verifydir(argv[argc - 1]);
345 }
346 exit(errs != 0);
347}
348
Damien Miller34132e52000-01-14 15:45:46 +1100349char *
350cleanhostname(host)
351 char *host;
352{
353 if (*host == '[' && host[strlen(host) - 1] == ']') {
354 host[strlen(host) - 1] = '\0';
355 return (host + 1);
356 } else
357 return host;
358}
359
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000360void
361toremote(targ, argc, argv)
362 char *targ, *argv[];
363 int argc;
364{
365 int i, len;
366 char *bp, *host, *src, *suser, *thost, *tuser;
367
368 *targ++ = 0;
369 if (*targ == 0)
370 targ = ".";
371
372 if ((thost = strchr(argv[argc - 1], '@'))) {
373 /* user@host */
374 *thost++ = 0;
375 tuser = argv[argc - 1];
376 if (*tuser == '\0')
377 tuser = NULL;
378 else if (!okname(tuser))
379 exit(1);
380 } else {
381 thost = argv[argc - 1];
382 tuser = NULL;
383 }
384
385 for (i = 0; i < argc - 1; i++) {
386 src = colon(argv[i]);
Damien Miller95def091999-11-25 00:26:21 +1100387 if (src) { /* remote to remote */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000388 *src++ = 0;
389 if (*src == 0)
390 src = ".";
391 host = strchr(argv[i], '@');
Damien Millerad833b32000-08-23 10:46:23 +1000392 len = strlen(ssh_program) + strlen(argv[i]) +
393 strlen(src) + (tuser ? strlen(tuser) : 0) +
394 strlen(thost) + strlen(targ) + CMDNEEDS + 32;
Damien Miller95def091999-11-25 00:26:21 +1100395 bp = xmalloc(len);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000396 if (host) {
397 *host++ = 0;
Damien Miller34132e52000-01-14 15:45:46 +1100398 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000399 suser = argv[i];
400 if (*suser == '\0')
401 suser = pwd->pw_name;
402 else if (!okname(suser))
403 continue;
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000404 snprintf(bp, len,
405 "%s%s -x -o'FallBackToRsh no' -n "
406 "-l %s %s %s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000407 ssh_program, verbose_mode ? " -v" : "",
408 suser, host, cmd, src,
409 tuser ? tuser : "", tuser ? "@" : "",
410 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100411 } else {
412 host = cleanhostname(argv[i]);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000413 snprintf(bp, len,
414 "exec %s%s -x -o'FallBackToRsh no' -n %s "
415 "%s %s '%s%s%s:%s'",
Kevin Steves7d00ba42000-12-15 23:03:10 +0000416 ssh_program, verbose_mode ? " -v" : "",
417 host, cmd, src,
418 tuser ? tuser : "", tuser ? "@" : "",
419 thost, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100420 }
Damien Miller95def091999-11-25 00:26:21 +1100421 if (verbose_mode)
422 fprintf(stderr, "Executing: %s\n", bp);
423 (void) system(bp);
424 (void) xfree(bp);
425 } else { /* local to remote */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000426 if (remin == -1) {
427 len = strlen(targ) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100428 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000429 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
Damien Miller34132e52000-01-14 15:45:46 +1100430 host = cleanhostname(thost);
Damien Millerad833b32000-08-23 10:46:23 +1000431 if (do_cmd(host, tuser, bp, &remin,
432 &remout, argc) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100433 exit(1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000434 if (response() < 0)
435 exit(1);
Damien Miller95def091999-11-25 00:26:21 +1100436 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000437 }
Damien Miller95def091999-11-25 00:26:21 +1100438 source(1, argv + i);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000439 }
440 }
441}
442
443void
444tolocal(argc, argv)
445 int argc;
446 char *argv[];
447{
448 int i, len;
449 char *bp, *host, *src, *suser;
450
451 for (i = 0; i < argc - 1; i++) {
Damien Miller95def091999-11-25 00:26:21 +1100452 if (!(src = colon(argv[i]))) { /* Local to local. */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000453 len = strlen(_PATH_CP) + strlen(argv[i]) +
Damien Millerad833b32000-08-23 10:46:23 +1000454 strlen(argv[argc - 1]) + 20;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000455 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000456 (void) snprintf(bp, len, "exec %s%s%s %s %s", _PATH_CP,
Damien Millerad833b32000-08-23 10:46:23 +1000457 iamrecursive ? " -r" : "", pflag ? " -p" : "",
458 argv[i], argv[argc - 1]);
Damien Miller95def091999-11-25 00:26:21 +1100459 if (verbose_mode)
460 fprintf(stderr, "Executing: %s\n", bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000461 if (system(bp))
462 ++errs;
Damien Miller95def091999-11-25 00:26:21 +1100463 (void) xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000464 continue;
465 }
466 *src++ = 0;
467 if (*src == 0)
468 src = ".";
469 if ((host = strchr(argv[i], '@')) == NULL) {
470 host = argv[i];
471 suser = NULL;
472 } else {
473 *host++ = 0;
474 suser = argv[i];
475 if (*suser == '\0')
476 suser = pwd->pw_name;
477 else if (!okname(suser))
478 continue;
479 }
Damien Miller34132e52000-01-14 15:45:46 +1100480 host = cleanhostname(host);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000481 len = strlen(src) + CMDNEEDS + 20;
Damien Miller95def091999-11-25 00:26:21 +1100482 bp = xmalloc(len);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000483 (void) snprintf(bp, len, "%s -f %s", cmd, src);
Damien Millerad833b32000-08-23 10:46:23 +1000484 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) {
Damien Miller95def091999-11-25 00:26:21 +1100485 (void) xfree(bp);
486 ++errs;
487 continue;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000488 }
Damien Miller95def091999-11-25 00:26:21 +1100489 xfree(bp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000490 sink(1, argv + argc - 1);
Damien Miller95def091999-11-25 00:26:21 +1100491 (void) close(remin);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000492 remin = remout = -1;
493 }
494}
495
496void
497source(argc, argv)
498 int argc;
499 char *argv[];
500{
501 struct stat stb;
502 static BUF buffer;
503 BUF *bp;
504 off_t i;
505 int amt, fd, haderr, indx, result;
506 char *last, *name, buf[2048];
507
508 for (indx = 0; indx < argc; ++indx) {
Damien Miller95def091999-11-25 00:26:21 +1100509 name = argv[indx];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000510 statbytes = 0;
511 if ((fd = open(name, O_RDONLY, 0)) < 0)
512 goto syserr;
513 if (fstat(fd, &stb) < 0) {
514syserr: run_err("%s: %s", name, strerror(errno));
515 goto next;
516 }
517 switch (stb.st_mode & S_IFMT) {
518 case S_IFREG:
519 break;
520 case S_IFDIR:
521 if (iamrecursive) {
522 rsource(name, &stb);
523 goto next;
524 }
525 /* FALLTHROUGH */
526 default:
527 run_err("%s: not a regular file", name);
528 goto next;
529 }
530 if ((last = strrchr(name, '/')) == NULL)
531 last = name;
532 else
533 ++last;
534 curfile = last;
535 if (pflag) {
536 /*
537 * Make it compatible with possible future
538 * versions expecting microseconds.
539 */
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000540 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000541 (u_long) stb.st_mtime,
542 (u_long) stb.st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000543 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000544 if (response() < 0)
545 goto next;
546 }
547#define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
Damien Millerffd0e102001-03-19 12:45:02 +1100548#ifdef HAVE_INT64_T
Ben Lindstroma4c57662001-03-17 00:10:20 +0000549 snprintf(buf, sizeof buf, "C%04o %lld %s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000550 (u_int) (stb.st_mode & FILEMODEMASK),
Ben Lindstromfea72782001-03-17 18:07:46 +0000551 (long long) stb.st_size, last);
Damien Millerffd0e102001-03-19 12:45:02 +1100552#else
553 /* XXX: Handle integer overflow? */
554 snprintf(buf, sizeof buf, "C%04o %ld %s\n",
555 (u_int) (stb.st_mode & FILEMODEMASK),
556 (long) stb.st_size, last);
557#endif
558
Damien Miller95def091999-11-25 00:26:21 +1100559 if (verbose_mode) {
560 fprintf(stderr, "Sending file modes: %s", buf);
561 fflush(stderr);
562 }
Damien Miller35dabd02000-05-01 21:10:33 +1000563 (void) atomicio(write, remout, buf, strlen(buf));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000564 if (response() < 0)
565 goto next;
566 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100567next: (void) close(fd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000568 continue;
569 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000570 if (showprogress) {
571 totalbytes = stb.st_size;
572 progressmeter(-1);
573 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000574 /* Keep writing after an error so that we stay sync'd up. */
575 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
576 amt = bp->cnt;
577 if (i + amt > stb.st_size)
578 amt = stb.st_size - i;
579 if (!haderr) {
Damien Millere247cc42000-05-07 12:03:14 +1000580 result = atomicio(read, fd, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000581 if (result != amt)
582 haderr = result >= 0 ? EIO : errno;
583 }
584 if (haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000585 (void) atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000586 else {
Damien Miller864ea591999-12-15 11:04:25 +1100587 result = atomicio(write, remout, bp->buf, amt);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000588 if (result != amt)
589 haderr = result >= 0 ? EIO : errno;
590 statbytes += result;
591 }
592 }
Damien Miller95def091999-11-25 00:26:21 +1100593 if (showprogress)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000594 progressmeter(1);
595
596 if (close(fd) < 0 && !haderr)
597 haderr = errno;
598 if (!haderr)
Damien Miller35dabd02000-05-01 21:10:33 +1000599 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000600 else
601 run_err("%s: %s", name, strerror(haderr));
Damien Miller95def091999-11-25 00:26:21 +1100602 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000603 }
604}
605
606void
607rsource(name, statp)
608 char *name;
609 struct stat *statp;
610{
611 DIR *dirp;
612 struct dirent *dp;
613 char *last, *vect[1], path[1100];
614
615 if (!(dirp = opendir(name))) {
616 run_err("%s: %s", name, strerror(errno));
617 return;
618 }
619 last = strrchr(name, '/');
620 if (last == 0)
621 last = name;
622 else
623 last++;
624 if (pflag) {
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000625 (void) snprintf(path, sizeof(path), "T%lu 0 %lu 0\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000626 (u_long) statp->st_mtime,
627 (u_long) statp->st_atime);
Damien Miller35dabd02000-05-01 21:10:33 +1000628 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000629 if (response() < 0) {
630 closedir(dirp);
631 return;
632 }
633 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000634 (void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
Ben Lindstrom46c16222000-12-22 01:43:59 +0000635 (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
Damien Miller95def091999-11-25 00:26:21 +1100636 if (verbose_mode)
637 fprintf(stderr, "Entering directory: %s", path);
Damien Miller35dabd02000-05-01 21:10:33 +1000638 (void) atomicio(write, remout, path, strlen(path));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000639 if (response() < 0) {
640 closedir(dirp);
641 return;
642 }
643 while ((dp = readdir(dirp))) {
644 if (dp->d_ino == 0)
645 continue;
646 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
647 continue;
648 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
649 run_err("%s/%s: name too long", name, dp->d_name);
650 continue;
651 }
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000652 (void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000653 vect[0] = path;
654 source(1, vect);
655 }
Damien Miller95def091999-11-25 00:26:21 +1100656 (void) closedir(dirp);
Damien Miller35dabd02000-05-01 21:10:33 +1000657 (void) atomicio(write, remout, "E\n", 2);
Damien Miller95def091999-11-25 00:26:21 +1100658 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000659}
660
661void
662sink(argc, argv)
663 int argc;
664 char *argv[];
665{
666 static BUF buffer;
667 struct stat stb;
Damien Miller95def091999-11-25 00:26:21 +1100668 enum {
669 YES, NO, DISPLAYED
670 } wrerr;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000671 BUF *bp;
672 off_t i, j;
673 int amt, count, exists, first, mask, mode, ofd, omode;
Damien Millercaf6dd62000-08-29 11:33:50 +1100674 off_t size;
675 int setimes, targisdir, wrerrno = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000676 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
Damien Miller95def091999-11-25 00:26:21 +1100677 int dummy_usec;
Damien Miller62cee002000-09-23 17:15:56 +1100678 struct timeval tv[2];
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000679
680#define SCREWUP(str) { why = str; goto screwup; }
681
682 setimes = targisdir = 0;
683 mask = umask(0);
684 if (!pflag)
Damien Miller95def091999-11-25 00:26:21 +1100685 (void) umask(mask);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000686 if (argc != 1) {
687 run_err("ambiguous target");
688 exit(1);
689 }
690 targ = *argv;
691 if (targetshouldbedirectory)
692 verifydir(targ);
Damien Miller95def091999-11-25 00:26:21 +1100693
Damien Miller35dabd02000-05-01 21:10:33 +1000694 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000695 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
696 targisdir = 1;
697 for (first = 1;; first = 0) {
698 cp = buf;
Damien Millere247cc42000-05-07 12:03:14 +1000699 if (atomicio(read, remin, cp, 1) <= 0)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000700 return;
701 if (*cp++ == '\n')
702 SCREWUP("unexpected <newline>");
703 do {
Damien Millere247cc42000-05-07 12:03:14 +1000704 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000705 SCREWUP("lost connection");
706 *cp++ = ch;
707 } while (cp < &buf[sizeof(buf) - 1] && ch != '\n');
708 *cp = 0;
709
710 if (buf[0] == '\01' || buf[0] == '\02') {
711 if (iamremote == 0)
Damien Miller35dabd02000-05-01 21:10:33 +1000712 (void) atomicio(write, STDERR_FILENO,
Kevin Steves7d00ba42000-12-15 23:03:10 +0000713 buf + 1, strlen(buf + 1));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000714 if (buf[0] == '\02')
715 exit(1);
716 ++errs;
717 continue;
718 }
719 if (buf[0] == 'E') {
Damien Miller35dabd02000-05-01 21:10:33 +1000720 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000721 return;
722 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000723 if (ch == '\n')
724 *--cp = 0;
725
726#define getnum(t) (t) = 0; \
727 while (*cp >= '0' && *cp <= '9') (t) = (t) * 10 + (*cp++ - '0');
728 cp = buf;
729 if (*cp == 'T') {
730 setimes++;
731 cp++;
Damien Miller62cee002000-09-23 17:15:56 +1100732 getnum(tv[1].tv_sec);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000733 if (*cp++ != ' ')
734 SCREWUP("mtime.sec not delimited");
735 getnum(dummy_usec);
Damien Miller62cee002000-09-23 17:15:56 +1100736 tv[1].tv_usec = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000737 if (*cp++ != ' ')
738 SCREWUP("mtime.usec not delimited");
Damien Miller62cee002000-09-23 17:15:56 +1100739 getnum(tv[0].tv_sec);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000740 if (*cp++ != ' ')
741 SCREWUP("atime.sec not delimited");
742 getnum(dummy_usec);
Damien Miller62cee002000-09-23 17:15:56 +1100743 tv[0].tv_usec = 0;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000744 if (*cp++ != '\0')
745 SCREWUP("atime.usec not delimited");
Damien Miller35dabd02000-05-01 21:10:33 +1000746 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000747 continue;
748 }
749 if (*cp != 'C' && *cp != 'D') {
750 /*
751 * Check for the case "rcp remote:foo\* local:bar".
752 * In this case, the line "No match." can be returned
753 * by the shell before the rcp command on the remote is
754 * executed so the ^Aerror_message convention isn't
755 * followed.
756 */
757 if (first) {
758 run_err("%s", cp);
759 exit(1);
760 }
761 SCREWUP("expected control record");
762 }
763 mode = 0;
764 for (++cp; cp < buf + 5; cp++) {
765 if (*cp < '0' || *cp > '7')
766 SCREWUP("bad mode");
767 mode = (mode << 3) | (*cp - '0');
768 }
769 if (*cp++ != ' ')
770 SCREWUP("mode not delimited");
771
Damien Miller95def091999-11-25 00:26:21 +1100772 for (size = 0; *cp >= '0' && *cp <= '9';)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000773 size = size * 10 + (*cp++ - '0');
774 if (*cp++ != ' ')
775 SCREWUP("size not delimited");
776 if (targisdir) {
777 static char *namebuf;
778 static int cursize;
779 size_t need;
780
781 need = strlen(targ) + strlen(cp) + 250;
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000782 if (need > cursize) {
783 if (namebuf)
784 xfree(namebuf);
Damien Miller95def091999-11-25 00:26:21 +1100785 namebuf = xmalloc(need);
Ben Lindstromf6b7b092001-02-09 01:23:39 +0000786 cursize = need;
787 }
788 (void) snprintf(namebuf, need, "%s%s%s", targ,
Damien Millerad833b32000-08-23 10:46:23 +1000789 *targ ? "/" : "", cp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000790 np = namebuf;
791 } else
792 np = targ;
793 curfile = cp;
794 exists = stat(np, &stb) == 0;
795 if (buf[0] == 'D') {
796 int mod_flag = pflag;
797 if (exists) {
798 if (!S_ISDIR(stb.st_mode)) {
799 errno = ENOTDIR;
800 goto bad;
801 }
802 if (pflag)
Damien Miller95def091999-11-25 00:26:21 +1100803 (void) chmod(np, mode);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000804 } else {
Damien Miller95def091999-11-25 00:26:21 +1100805 /* Handle copying from a read-only
806 directory */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000807 mod_flag = 1;
808 if (mkdir(np, mode | S_IRWXU) < 0)
809 goto bad;
810 }
Ben Lindstrom550bc542001-02-10 21:50:00 +0000811 vect[0] = xstrdup(np);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000812 sink(1, vect);
813 if (setimes) {
814 setimes = 0;
Damien Miller225736c2001-02-19 21:51:08 +1100815 if (utimes(vect[0], tv) < 0)
Damien Miller95def091999-11-25 00:26:21 +1100816 run_err("%s: set times: %s",
Damien Miller225736c2001-02-19 21:51:08 +1100817 vect[0], strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000818 }
819 if (mod_flag)
Damien Miller225736c2001-02-19 21:51:08 +1100820 (void) chmod(vect[0], mode);
821 if (vect[0])
822 xfree(vect[0]);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000823 continue;
824 }
825 omode = mode;
826 mode |= S_IWRITE;
Damien Miller95def091999-11-25 00:26:21 +1100827 if ((ofd = open(np, O_WRONLY | O_CREAT | O_TRUNC, mode)) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000828bad: run_err("%s: %s", np, strerror(errno));
829 continue;
830 }
Damien Miller35dabd02000-05-01 21:10:33 +1000831 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000832 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
Damien Miller95def091999-11-25 00:26:21 +1100833 (void) close(ofd);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000834 continue;
835 }
836 cp = bp->buf;
837 wrerr = NO;
838
839 if (showprogress) {
840 totalbytes = size;
841 progressmeter(-1);
842 }
843 statbytes = 0;
844 for (count = i = 0; i < size; i += 4096) {
845 amt = 4096;
846 if (i + amt > size)
847 amt = size - i;
848 count += amt;
849 do {
Damien Miller69b69aa2000-10-28 14:19:58 +1100850 j = read(remin, cp, amt);
851 if (j == -1 && (errno == EINTR || errno == EAGAIN)) {
852 continue;
853 } else if (j <= 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000854 run_err("%s", j ? strerror(errno) :
Damien Miller95def091999-11-25 00:26:21 +1100855 "dropped connection");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000856 exit(1);
857 }
858 amt -= j;
859 cp += j;
Damien Miller95def091999-11-25 00:26:21 +1100860 statbytes += j;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000861 } while (amt > 0);
862 if (count == bp->cnt) {
863 /* Keep reading so we stay sync'd up. */
864 if (wrerr == NO) {
Damien Millere247cc42000-05-07 12:03:14 +1000865 j = atomicio(write, ofd, bp->buf, count);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000866 if (j != count) {
867 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100868 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000869 }
870 }
871 count = 0;
872 cp = bp->buf;
873 }
874 }
875 if (showprogress)
876 progressmeter(1);
877 if (count != 0 && wrerr == NO &&
Damien Millere247cc42000-05-07 12:03:14 +1000878 (j = atomicio(write, ofd, bp->buf, count)) != count) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000879 wrerr = YES;
Damien Miller95def091999-11-25 00:26:21 +1100880 wrerrno = j >= 0 ? EIO : errno;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000881 }
882#if 0
883 if (ftruncate(ofd, size)) {
884 run_err("%s: truncate: %s", np, strerror(errno));
885 wrerr = DISPLAYED;
886 }
887#endif
888 if (pflag) {
889 if (exists || omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100890#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000891 if (fchmod(ofd, omode))
Damien Miller78315eb2000-09-29 23:01:36 +1100892#else /* HAVE_FCHMOD */
893 if (chmod(np, omode))
894#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000895 run_err("%s: set mode: %s",
Damien Miller95def091999-11-25 00:26:21 +1100896 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000897 } else {
898 if (!exists && omode != mode)
Damien Miller78315eb2000-09-29 23:01:36 +1100899#ifdef HAVE_FCHMOD
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000900 if (fchmod(ofd, omode & ~mask))
Damien Miller78315eb2000-09-29 23:01:36 +1100901#else /* HAVE_FCHMOD */
902 if (chmod(np, omode & ~mask))
903#endif /* HAVE_FCHMOD */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000904 run_err("%s: set mode: %s",
Damien Miller95def091999-11-25 00:26:21 +1100905 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000906 }
Damien Millerbe484b52000-07-15 14:14:16 +1000907 if (close(ofd) == -1) {
908 wrerr = YES;
909 wrerrno = errno;
910 }
Damien Miller95def091999-11-25 00:26:21 +1100911 (void) response();
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000912 if (setimes && wrerr == NO) {
913 setimes = 0;
Damien Miller62cee002000-09-23 17:15:56 +1100914 if (utimes(np, tv) < 0) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000915 run_err("%s: set times: %s",
Damien Miller95def091999-11-25 00:26:21 +1100916 np, strerror(errno));
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000917 wrerr = DISPLAYED;
918 }
919 }
Damien Miller95def091999-11-25 00:26:21 +1100920 switch (wrerr) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000921 case YES:
922 run_err("%s: %s", np, strerror(wrerrno));
923 break;
924 case NO:
Damien Miller35dabd02000-05-01 21:10:33 +1000925 (void) atomicio(write, remout, "", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000926 break;
927 case DISPLAYED:
928 break;
929 }
930 }
931screwup:
932 run_err("protocol error: %s", why);
933 exit(1);
934}
935
936int
937response()
938{
939 char ch, *cp, resp, rbuf[2048];
940
Damien Millere247cc42000-05-07 12:03:14 +1000941 if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000942 lostconn(0);
943
944 cp = rbuf;
Damien Miller95def091999-11-25 00:26:21 +1100945 switch (resp) {
946 case 0: /* ok */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000947 return (0);
948 default:
949 *cp++ = resp;
950 /* FALLTHROUGH */
Damien Miller95def091999-11-25 00:26:21 +1100951 case 1: /* error, followed by error msg */
952 case 2: /* fatal error, "" */
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000953 do {
Damien Millere247cc42000-05-07 12:03:14 +1000954 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000955 lostconn(0);
956 *cp++ = ch;
957 } while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
958
959 if (!iamremote)
Damien Miller35dabd02000-05-01 21:10:33 +1000960 (void) atomicio(write, STDERR_FILENO, rbuf, cp - rbuf);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000961 ++errs;
962 if (resp == 1)
963 return (-1);
964 exit(1);
965 }
966 /* NOTREACHED */
967}
968
969void
970usage()
971{
Damien Millerad833b32000-08-23 10:46:23 +1000972 (void) fprintf(stderr, "usage: scp "
973 "[-pqrvC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1 f2; or:\n"
974 " scp [options] f1 ... fn directory\n");
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000975 exit(1);
976}
977
978void
Damien Miller95def091999-11-25 00:26:21 +1100979run_err(const char *fmt,...)
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000980{
981 static FILE *fp;
982 va_list ap;
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000983
984 ++errs;
985 if (fp == NULL && !(fp = fdopen(remout, "w")))
986 return;
Damien Miller95def091999-11-25 00:26:21 +1100987 (void) fprintf(fp, "%c", 0x01);
988 (void) fprintf(fp, "scp: ");
Damien Miller03783f01999-12-31 09:16:40 +1100989 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +1100990 (void) vfprintf(fp, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +1100991 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +1100992 (void) fprintf(fp, "\n");
993 (void) fflush(fp);
Damien Millerd4a8b7e1999-10-27 13:42:43 +1000994
Damien Miller95def091999-11-25 00:26:21 +1100995 if (!iamremote) {
Damien Miller03783f01999-12-31 09:16:40 +1100996 va_start(ap, fmt);
Damien Miller95def091999-11-25 00:26:21 +1100997 vfprintf(stderr, fmt, ap);
Damien Miller03783f01999-12-31 09:16:40 +1100998 va_end(ap);
Damien Miller95def091999-11-25 00:26:21 +1100999 fprintf(stderr, "\n");
1000 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001001}
1002
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001003char *
1004colon(cp)
1005 char *cp;
1006{
Damien Miller34132e52000-01-14 15:45:46 +11001007 int flag = 0;
1008
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001009 if (*cp == ':') /* Leading colon is part of file name. */
1010 return (0);
Damien Miller34132e52000-01-14 15:45:46 +11001011 if (*cp == '[')
1012 flag = 1;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001013
1014 for (; *cp; ++cp) {
Damien Miller34132e52000-01-14 15:45:46 +11001015 if (*cp == '@' && *(cp+1) == '[')
1016 flag = 1;
1017 if (*cp == ']' && *(cp+1) == ':' && flag)
1018 return (cp+1);
1019 if (*cp == ':' && !flag)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001020 return (cp);
1021 if (*cp == '/')
1022 return (0);
1023 }
1024 return (0);
1025}
1026
1027void
1028verifydir(cp)
1029 char *cp;
1030{
1031 struct stat stb;
1032
1033 if (!stat(cp, &stb)) {
1034 if (S_ISDIR(stb.st_mode))
1035 return;
1036 errno = ENOTDIR;
1037 }
1038 run_err("%s: %s", cp, strerror(errno));
1039 exit(1);
1040}
1041
1042int
1043okname(cp0)
1044 char *cp0;
1045{
1046 int c;
1047 char *cp;
1048
1049 cp = cp0;
1050 do {
1051 c = *cp;
1052 if (c & 0200)
1053 goto bad;
Kevin Steves8daed182000-12-16 19:21:03 +00001054 if (!isalpha(c) && !isdigit(c) &&
1055 c != '_' && c != '-' && c != '.' && c != '+')
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001056 goto bad;
1057 } while (*++cp);
1058 return (1);
1059
Damien Miller98c7ad62000-03-09 21:27:49 +11001060bad: fprintf(stderr, "%s: invalid user name\n", cp0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001061 return (0);
1062}
1063
1064BUF *
1065allocbuf(bp, fd, blksize)
1066 BUF *bp;
1067 int fd, blksize;
1068{
1069 size_t size;
Damien Miller78315eb2000-09-29 23:01:36 +11001070#ifdef HAVE_ST_BLKSIZE
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001071 struct stat stb;
1072
1073 if (fstat(fd, &stb) < 0) {
1074 run_err("fstat: %s", strerror(errno));
1075 return (0);
1076 }
Damien Miller95def091999-11-25 00:26:21 +11001077 if (stb.st_blksize == 0)
1078 size = blksize;
1079 else
1080 size = blksize + (stb.st_blksize - blksize % stb.st_blksize) %
Damien Millerad833b32000-08-23 10:46:23 +10001081 stb.st_blksize;
Damien Miller78315eb2000-09-29 23:01:36 +11001082#else /* HAVE_ST_BLKSIZE */
Kevin Stevesef4eea92001-02-05 12:42:17 +00001083 size = blksize;
Damien Miller78315eb2000-09-29 23:01:36 +11001084#endif /* HAVE_ST_BLKSIZE */
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001085 if (bp->cnt >= size)
1086 return (bp);
Damien Miller95def091999-11-25 00:26:21 +11001087 if (bp->buf == NULL)
1088 bp->buf = xmalloc(size);
1089 else
1090 bp->buf = xrealloc(bp->buf, size);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001091 bp->cnt = size;
1092 return (bp);
1093}
1094
1095void
1096lostconn(signo)
1097 int signo;
1098{
1099 if (!iamremote)
1100 fprintf(stderr, "lost connection\n");
1101 exit(1);
1102}
1103
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001104
1105void
1106alarmtimer(int wait)
1107{
Damien Miller95def091999-11-25 00:26:21 +11001108 struct itimerval itv;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001109
Damien Miller95def091999-11-25 00:26:21 +11001110 itv.it_value.tv_sec = wait;
1111 itv.it_value.tv_usec = 0;
1112 itv.it_interval = itv.it_value;
1113 setitimer(ITIMER_REAL, &itv, NULL);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001114}
1115
1116void
Damien Miller7684ee12000-03-17 23:40:15 +11001117updateprogressmeter(int ignore)
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001118{
1119 int save_errno = errno;
1120
1121 progressmeter(0);
1122 errno = save_errno;
1123}
1124
Damien Miller81428f91999-11-18 09:28:11 +11001125int
Ben Lindstrom31ca54a2001-02-09 02:11:24 +00001126foregroundproc(void)
Damien Miller81428f91999-11-18 09:28:11 +11001127{
1128 static pid_t pgrp = -1;
1129 int ctty_pgrp;
1130
1131 if (pgrp == -1)
1132 pgrp = getpgrp();
1133
Ben Lindstromdd5c5a32001-02-02 18:58:33 +00001134#ifdef HAVE_TCGETPGRP
Damien Millerbac2d8a2000-09-05 16:13:06 +11001135 return ((ctty_pgrp = tcgetpgrp(STDOUT_FILENO)) != -1 &&
1136 ctty_pgrp == pgrp);
1137#else
Damien Miller95def091999-11-25 00:26:21 +11001138 return ((ioctl(STDOUT_FILENO, TIOCGPGRP, &ctty_pgrp) != -1 &&
1139 ctty_pgrp == pgrp));
Damien Millerbac2d8a2000-09-05 16:13:06 +11001140#endif
Damien Miller81428f91999-11-18 09:28:11 +11001141}
1142
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001143void
1144progressmeter(int flag)
1145{
1146 static const char prefixes[] = " KMGTP";
1147 static struct timeval lastupdate;
1148 static off_t lastsize;
1149 struct timeval now, td, wait;
1150 off_t cursize, abbrevsize;
1151 double elapsed;
Damien Miller7c64ba31999-11-11 21:39:50 +11001152 int ratio, barlength, i, remaining;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001153 char buf[256];
1154
1155 if (flag == -1) {
Damien Miller95def091999-11-25 00:26:21 +11001156 (void) gettimeofday(&start, (struct timezone *) 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001157 lastupdate = start;
1158 lastsize = 0;
Damien Miller95def091999-11-25 00:26:21 +11001159 }
Damien Miller81428f91999-11-18 09:28:11 +11001160 if (foregroundproc() == 0)
1161 return;
1162
Damien Miller95def091999-11-25 00:26:21 +11001163 (void) gettimeofday(&now, (struct timezone *) 0);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001164 cursize = statbytes;
Damien Millera2d6efe1999-11-13 13:22:46 +11001165 if (totalbytes != 0) {
Damien Miller5428f641999-11-25 11:54:57 +11001166 ratio = 100.0 * cursize / totalbytes;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001167 ratio = MAX(ratio, 0);
1168 ratio = MIN(ratio, 100);
Damien Miller95def091999-11-25 00:26:21 +11001169 } else
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001170 ratio = 100;
1171
Damien Miller95def091999-11-25 00:26:21 +11001172 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001173
1174 barlength = getttywidth() - 51;
Damien Miller484118e2000-07-02 19:13:56 +10001175 barlength = (barlength <= MAX_BARLENGTH)?barlength:MAX_BARLENGTH;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001176 if (barlength > 0) {
1177 i = barlength * ratio / 100;
1178 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Damien Miller484118e2000-07-02 19:13:56 +10001179 "|%.*s%*s|", i, BAR, barlength - i, "");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001180 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001181 i = 0;
1182 abbrevsize = cursize;
1183 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
1184 i++;
1185 abbrevsize >>= 10;
1186 }
Kevin Stevesadf74cd2001-02-05 14:22:50 +00001187 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5lu %c%c ",
Kevin Stevesd2e0d7d2001-02-11 14:19:40 +00001188 (unsigned long) abbrevsize, prefixes[i],
1189 prefixes[i] == ' ' ? ' ' : 'B');
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001190
1191 timersub(&now, &lastupdate, &wait);
1192 if (cursize > lastsize) {
1193 lastupdate = now;
1194 lastsize = cursize;
1195 if (wait.tv_sec >= STALLTIME) {
1196 start.tv_sec += wait.tv_sec;
1197 start.tv_usec += wait.tv_usec;
1198 }
1199 wait.tv_sec = 0;
1200 }
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001201 timersub(&now, &start, &td);
1202 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
1203
Kevin Steves7d00ba42000-12-15 23:03:10 +00001204 if (flag != 1 &&
1205 (statbytes <= 0 || elapsed <= 0.0 || cursize > totalbytes)) {
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001206 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Kevin Steves7d00ba42000-12-15 23:03:10 +00001207 " --:-- ETA");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001208 } else if (wait.tv_sec >= STALLTIME) {
1209 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Kevin Steves7d00ba42000-12-15 23:03:10 +00001210 " - stalled -");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001211 } else {
Damien Miller8bb73be2000-04-19 16:26:12 +10001212 if (flag != 1)
Kevin Steves7d00ba42000-12-15 23:03:10 +00001213 remaining = (int)(totalbytes / (statbytes / elapsed) -
1214 elapsed);
Damien Miller8bb73be2000-04-19 16:26:12 +10001215 else
1216 remaining = elapsed;
1217
Damien Miller01ab4a21999-10-28 15:23:30 +10001218 i = remaining / 3600;
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001219 if (i)
1220 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Damien Millerad833b32000-08-23 10:46:23 +10001221 "%2d:", i);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001222 else
1223 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Damien Millerad833b32000-08-23 10:46:23 +10001224 " ");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001225 i = remaining % 3600;
1226 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
Damien Millerad833b32000-08-23 10:46:23 +10001227 "%02d:%02d%s", i / 60, i % 60,
1228 (flag != 1) ? " ETA" : " ");
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001229 }
1230 atomicio(write, fileno(stdout), buf, strlen(buf));
1231
1232 if (flag == -1) {
Kevin Steves93c17d92001-02-18 03:55:16 +00001233 mysignal(SIGALRM, updateprogressmeter);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001234 alarmtimer(1);
1235 } else if (flag == 1) {
1236 alarmtimer(0);
Damien Miller35dabd02000-05-01 21:10:33 +10001237 atomicio(write, fileno(stdout), "\n", 1);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001238 statbytes = 0;
1239 }
1240}
1241
1242int
1243getttywidth(void)
1244{
1245 struct winsize winsize;
1246
1247 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
Damien Miller95def091999-11-25 00:26:21 +11001248 return (winsize.ws_col ? winsize.ws_col : 80);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001249 else
Damien Miller95def091999-11-25 00:26:21 +11001250 return (80);
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001251}
Damien Miller874d77b2000-10-14 16:23:11 +11001252
1253void
1254addargs(char *fmt, ...)
1255{
1256 va_list ap;
1257 char buf[1024];
1258
1259 va_start(ap, fmt);
1260 vsnprintf(buf, sizeof(buf), fmt, ap);
1261 va_end(ap);
1262
1263 if (args.list == NULL) {
1264 args.nalloc = 32;
1265 args.num = 0;
1266 args.list = xmalloc(args.nalloc * sizeof(char *));
1267 } else if (args.num+2 >= args.nalloc) {
1268 args.nalloc *= 2;
1269 args.list = xrealloc(args.list, args.nalloc * sizeof(char *));
1270 }
1271 args.list[args.num++] = xstrdup(buf);
1272 args.list[args.num] = NULL;
1273}