]> andersk Git - openssh.git/blame - scp.c
whitespace sync
[openssh.git] / scp.c
CommitLineData
8efc0c15 1/*
bcbf86ec 2 * scp - secure remote copy. This is basically patched BSD rcp which
3 * uses ssh to do the data transfer (instead of using rcmd).
6ae2364d 4 *
bcbf86ec 5 * NOTE: This version should NOT be suid root. (This uses ssh to
6 * do the transfer and ssh has the necessary privileges.)
6ae2364d 7 *
5260325f 8 * 1995 Timo Rinne <tri@iki.fi>, Tatu Ylonen <ylo@cs.hut.fi>
6ae2364d 9 *
bcbf86ec 10 * 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/*
f3c7c613 17 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
18 * Copyright (c) 1999 Aaron Campbell. All rights reserved.
bcbf86ec 19 *
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 */
8efc0c15 40
41/*
2e73a022 42 * Parts from:
43 *
8efc0c15 44 * 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 *
8efc0c15 75 */
76
77#include "includes.h"
d5bb9418 78RCSID("$OpenBSD: scp.c,v 1.86 2001/12/05 03:56:39 itojun Exp $");
8efc0c15 79
8efc0c15 80#include "xmalloc.h"
42f11eb2 81#include "atomicio.h"
82#include "pathnames.h"
83#include "log.h"
36a358ca 84#include "misc.h"
8efc0c15 85
260d427b 86#ifdef HAVE___PROGNAME
87extern char *__progname;
88#else
89char *__progname;
90#endif
91
8efc0c15 92/* For progressmeter() -- number of seconds before xfer considered "stalled" */
93#define STALLTIME 5
cddb9003 94/* alarm() interval for updating progress meter */
95#define PROGRESSTIME 1
8efc0c15 96
a4070484 97/* Progress meter bar */
98#define BAR \
99 "************************************************************"\
100 "************************************************************"\
101 "************************************************************"\
102 "************************************************************"
103#define MAX_BARLENGTH (sizeof(BAR) - 1)
104
8efc0c15 105/* Visual statistics about files as they are transferred. */
106void progressmeter(int);
107
108/* Returns width of the terminal (for progress meter calculations). */
109int getttywidth(void);
2e73a022 110int do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc);
8efc0c15 111
8a624ebf 112/* Struct for addargs */
113arglist args;
94ec8c6b 114
8efc0c15 115/* Time a transfer started. */
116static struct timeval start;
117
118/* Number of bytes of current file transferred so far. */
ba917921 119volatile off_t statbytes;
8efc0c15 120
121/* Total size of current file. */
b4ad3727 122off_t totalbytes = 0;
8efc0c15 123
124/* Name of current file being transferred. */
125char *curfile;
126
127/* This is set to non-zero to enable verbose mode. */
5260325f 128int verbose_mode = 0;
8efc0c15 129
8efc0c15 130/* This is set to zero if the progressmeter is not desired. */
131int showprogress = 1;
132
2e73a022 133/* This is the program to execute for the secured connection. ("ssh" or -S) */
42f11eb2 134char *ssh_program = _PATH_SSH_PROGRAM;
2e73a022 135
aa3378df 136/*
137 * This function executes the given command as the specified user on the
138 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
139 * assigns the input and output file descriptors on success.
140 */
8efc0c15 141
6ae2364d 142int
2e73a022 143do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
8efc0c15 144{
5260325f 145 int pin[2], pout[2], reserved[2];
146
147 if (verbose_mode)
0b2988ca 148 fprintf(stderr,
149 "Executing: program %s host %s, user %s, command %s\n",
150 ssh_program, host,
151 remuser ? remuser : "(unspecified)", cmd);
5260325f 152
aa3378df 153 /*
154 * Reserve two descriptors so that the real pipes won't get
155 * descriptors 0 and 1 because that will screw up dup2 below.
156 */
5260325f 157 pipe(reserved);
158
159 /* Create a socket pair for communicating with ssh. */
160 if (pipe(pin) < 0)
161 fatal("pipe: %s", strerror(errno));
162 if (pipe(pout) < 0)
163 fatal("pipe: %s", strerror(errno));
164
165 /* Free the reserved descriptors. */
166 close(reserved[0]);
167 close(reserved[1]);
168
169 /* For a child to execute the command on the remote host using ssh. */
94ec8c6b 170 if (fork() == 0) {
5260325f 171 /* Child. */
172 close(pin[1]);
173 close(pout[0]);
174 dup2(pin[0], 0);
175 dup2(pout[1], 1);
176 close(pin[0]);
177 close(pout[1]);
178
94ec8c6b 179 args.list[0] = ssh_program;
180 if (remuser != NULL)
8a624ebf 181 addargs(&args, "-l%s", remuser);
182 addargs(&args, "%s", host);
183 addargs(&args, "%s", cmd);
5260325f 184
94ec8c6b 185 execvp(ssh_program, args.list);
2e73a022 186 perror(ssh_program);
5260325f 187 exit(1);
8efc0c15 188 }
5260325f 189 /* Parent. Close the other side, and return the local side. */
190 close(pin[0]);
191 *fdout = pin[1];
192 close(pout[1]);
193 *fdin = pout[0];
194 return 0;
8efc0c15 195}
196
8efc0c15 197typedef struct {
198 int cnt;
199 char *buf;
200} BUF;
201
5260325f 202BUF *allocbuf(BUF *, int, int);
5260325f 203void lostconn(int);
204void nospace(void);
205int okname(char *);
206void run_err(const char *,...);
207void verifydir(char *);
8efc0c15 208
8efc0c15 209struct passwd *pwd;
5260325f 210uid_t userid;
8efc0c15 211int errs, remin, remout;
212int pflag, iamremote, iamrecursive, targetshouldbedirectory;
213
214#define CMDNEEDS 64
215char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
216
5260325f 217int response(void);
218void rsource(char *, struct stat *);
219void sink(int, char *[]);
220void source(int, char *[]);
221void tolocal(int, char *[]);
222void toremote(char *, int, char *[]);
223void usage(void);
8efc0c15 224
225int
226main(argc, argv)
227 int argc;
228 char *argv[];
229{
230 int ch, fflag, tflag;
231 char *targ;
232 extern char *optarg;
233 extern int optind;
234
260d427b 235 __progname = get_progname(argv[0]);
236
94ec8c6b 237 args.list = NULL;
8a624ebf 238 addargs(&args, "ssh"); /* overwritten with ssh_program */
239 addargs(&args, "-x");
3a222388 240 addargs(&args, "-oForwardAgent no");
8a624ebf 241 addargs(&args, "-oFallBackToRsh no");
e1c5bfaf 242 addargs(&args, "-oClearAllForwardings yes");
94ec8c6b 243
8efc0c15 244 fflag = tflag = 0;
f1278af7 245 while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:o:F:")) != -1)
5260325f 246 switch (ch) {
247 /* User-visible flags. */
48e671d5 248 case '4':
48e671d5 249 case '6':
94ec8c6b 250 case 'C':
8a624ebf 251 addargs(&args, "-%c", ch);
48e671d5 252 break;
94ec8c6b 253 case 'o':
254 case 'c':
255 case 'i':
f1278af7 256 case 'F':
8a624ebf 257 addargs(&args, "-%c%s", ch, optarg);
8efc0c15 258 break;
259 case 'P':
8a624ebf 260 addargs(&args, "-p%s", optarg);
94ec8c6b 261 break;
262 case 'B':
8a624ebf 263 addargs(&args, "-oBatchmode yes");
94ec8c6b 264 break;
265 case 'p':
266 pflag = 1;
5260325f 267 break;
8efc0c15 268 case 'r':
269 iamrecursive = 1;
270 break;
2e73a022 271 case 'S':
94ec8c6b 272 ssh_program = xstrdup(optarg);
273 break;
274 case 'v':
4fc334a2 275 addargs(&args, "-v");
94ec8c6b 276 verbose_mode = 1;
277 break;
278 case 'q':
279 showprogress = 0;
2e73a022 280 break;
281
5260325f 282 /* Server options. */
8efc0c15 283 case 'd':
284 targetshouldbedirectory = 1;
285 break;
5260325f 286 case 'f': /* "from" */
8efc0c15 287 iamremote = 1;
288 fflag = 1;
289 break;
5260325f 290 case 't': /* "to" */
8efc0c15 291 iamremote = 1;
292 tflag = 1;
fe56c12b 293#ifdef HAVE_CYGWIN
294 setmode(0, O_BINARY);
295#endif
8efc0c15 296 break;
8efc0c15 297 default:
298 usage();
299 }
300 argc -= optind;
301 argv += optind;
302
303 if ((pwd = getpwuid(userid = getuid())) == NULL)
5260325f 304 fatal("unknown user %d", (int) userid);
8efc0c15 305
5260325f 306 if (!isatty(STDERR_FILENO))
8efc0c15 307 showprogress = 0;
308
309 remin = STDIN_FILENO;
310 remout = STDOUT_FILENO;
311
2b87da3b 312 if (fflag) {
5260325f 313 /* Follow "protocol", send data. */
314 (void) response();
8efc0c15 315 source(argc, argv);
316 exit(errs != 0);
317 }
5260325f 318 if (tflag) {
319 /* Receive data. */
8efc0c15 320 sink(argc, argv);
321 exit(errs != 0);
322 }
8efc0c15 323 if (argc < 2)
324 usage();
325 if (argc > 2)
326 targetshouldbedirectory = 1;
327
328 remin = remout = -1;
329 /* Command to be executed on remote system using "ssh". */
0ed28836 330 (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
331 verbose_mode ? " -v" : "",
2e73a022 332 iamrecursive ? " -r" : "", pflag ? " -p" : "",
333 targetshouldbedirectory ? " -d" : "");
8efc0c15 334
5260325f 335 (void) signal(SIGPIPE, lostconn);
8efc0c15 336
337 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
338 toremote(targ, argc, argv);
339 else {
5260325f 340 tolocal(argc, argv); /* Dest is local host. */
8efc0c15 341 if (targetshouldbedirectory)
342 verifydir(argv[argc - 1]);
343 }
344 exit(errs != 0);
345}
346
347void
348toremote(targ, argc, argv)
349 char *targ, *argv[];
350 int argc;
351{
352 int i, len;
353 char *bp, *host, *src, *suser, *thost, *tuser;
354
355 *targ++ = 0;
356 if (*targ == 0)
357 targ = ".";
358
359 if ((thost = strchr(argv[argc - 1], '@'))) {
360 /* user@host */
361 *thost++ = 0;
362 tuser = argv[argc - 1];
363 if (*tuser == '\0')
364 tuser = NULL;
365 else if (!okname(tuser))
366 exit(1);
367 } else {
368 thost = argv[argc - 1];
369 tuser = NULL;
370 }
371
372 for (i = 0; i < argc - 1; i++) {
373 src = colon(argv[i]);
5260325f 374 if (src) { /* remote to remote */
e1c5bfaf 375 static char *ssh_options =
376 "-x -o'FallBackToRsh no' "
377 "-o'ClearAllForwardings yes'";
8efc0c15 378 *src++ = 0;
379 if (*src == 0)
380 src = ".";
381 host = strchr(argv[i], '@');
2e73a022 382 len = strlen(ssh_program) + strlen(argv[i]) +
383 strlen(src) + (tuser ? strlen(tuser) : 0) +
e1c5bfaf 384 strlen(thost) + strlen(targ) +
385 strlen(ssh_options) + CMDNEEDS + 20;
5260325f 386 bp = xmalloc(len);
8efc0c15 387 if (host) {
388 *host++ = 0;
48e671d5 389 host = cleanhostname(host);
8efc0c15 390 suser = argv[i];
391 if (*suser == '\0')
392 suser = pwd->pw_name;
393 else if (!okname(suser))
394 continue;
0ed28836 395 snprintf(bp, len,
e1c5bfaf 396 "%s%s %s -n "
0ed28836 397 "-l %s %s %s %s '%s%s%s:%s'",
71c0d06a 398 ssh_program, verbose_mode ? " -v" : "",
e1c5bfaf 399 ssh_options, suser, host, cmd, src,
71c0d06a 400 tuser ? tuser : "", tuser ? "@" : "",
401 thost, targ);
48e671d5 402 } else {
403 host = cleanhostname(argv[i]);
0ed28836 404 snprintf(bp, len,
e1c5bfaf 405 "exec %s%s %s -n %s "
0ed28836 406 "%s %s '%s%s%s:%s'",
71c0d06a 407 ssh_program, verbose_mode ? " -v" : "",
e1c5bfaf 408 ssh_options, host, cmd, src,
71c0d06a 409 tuser ? tuser : "", tuser ? "@" : "",
410 thost, targ);
48e671d5 411 }
5260325f 412 if (verbose_mode)
413 fprintf(stderr, "Executing: %s\n", bp);
414 (void) system(bp);
415 (void) xfree(bp);
416 } else { /* local to remote */
8efc0c15 417 if (remin == -1) {
418 len = strlen(targ) + CMDNEEDS + 20;
5260325f 419 bp = xmalloc(len);
0ed28836 420 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
48e671d5 421 host = cleanhostname(thost);
2e73a022 422 if (do_cmd(host, tuser, bp, &remin,
423 &remout, argc) < 0)
5260325f 424 exit(1);
8efc0c15 425 if (response() < 0)
426 exit(1);
5260325f 427 (void) xfree(bp);
8efc0c15 428 }
5260325f 429 source(1, argv + i);
8efc0c15 430 }
431 }
432}
433
434void
435tolocal(argc, argv)
436 int argc;
437 char *argv[];
438{
439 int i, len;
440 char *bp, *host, *src, *suser;
441
442 for (i = 0; i < argc - 1; i++) {
5260325f 443 if (!(src = colon(argv[i]))) { /* Local to local. */
8efc0c15 444 len = strlen(_PATH_CP) + strlen(argv[i]) +
2e73a022 445 strlen(argv[argc - 1]) + 20;
8efc0c15 446 bp = xmalloc(len);
0ed28836 447 (void) snprintf(bp, len, "exec %s%s%s %s %s", _PATH_CP,
2e73a022 448 iamrecursive ? " -r" : "", pflag ? " -p" : "",
449 argv[i], argv[argc - 1]);
5260325f 450 if (verbose_mode)
451 fprintf(stderr, "Executing: %s\n", bp);
8efc0c15 452 if (system(bp))
453 ++errs;
5260325f 454 (void) xfree(bp);
8efc0c15 455 continue;
456 }
457 *src++ = 0;
458 if (*src == 0)
459 src = ".";
460 if ((host = strchr(argv[i], '@')) == NULL) {
461 host = argv[i];
462 suser = NULL;
463 } else {
464 *host++ = 0;
465 suser = argv[i];
466 if (*suser == '\0')
467 suser = pwd->pw_name;
468 else if (!okname(suser))
469 continue;
470 }
48e671d5 471 host = cleanhostname(host);
8efc0c15 472 len = strlen(src) + CMDNEEDS + 20;
5260325f 473 bp = xmalloc(len);
0ed28836 474 (void) snprintf(bp, len, "%s -f %s", cmd, src);
2e73a022 475 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) {
5260325f 476 (void) xfree(bp);
477 ++errs;
478 continue;
8efc0c15 479 }
5260325f 480 xfree(bp);
8efc0c15 481 sink(1, argv + argc - 1);
5260325f 482 (void) close(remin);
8efc0c15 483 remin = remout = -1;
484 }
485}
486
487void
488source(argc, argv)
489 int argc;
490 char *argv[];
491{
492 struct stat stb;
493 static BUF buffer;
494 BUF *bp;
ba917921 495 off_t i, amt, result;
496 int fd, haderr, indx;
8efc0c15 497 char *last, *name, buf[2048];
0fc791ba 498 int len;
8efc0c15 499
500 for (indx = 0; indx < argc; ++indx) {
5260325f 501 name = argv[indx];
8efc0c15 502 statbytes = 0;
0fc791ba 503 len = strlen(name);
504 while (len > 1 && name[len-1] == '/')
505 name[--len] = '\0';
5720c10e 506 if (strchr(name, '\n') != NULL) {
507 run_err("%s: skipping, filename contains a newline",
508 name);
509 goto next;
510 }
8efc0c15 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 */
0ed28836 540 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
1e3b8b07 541 (u_long) stb.st_mtime,
542 (u_long) stb.st_atime);
3189621b 543 (void) atomicio(write, remout, buf, strlen(buf));
8efc0c15 544 if (response() < 0)
545 goto next;
546 }
547#define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
30eac028 548#ifdef HAVE_LONG_LONG_INT
bf1d27bd 549 snprintf(buf, sizeof buf, "C%04o %lld %s\n",
1e3b8b07 550 (u_int) (stb.st_mode & FILEMODEMASK),
20a11d35 551 (long long)stb.st_size, last);
f8f230bf 552#else
553 /* XXX: Handle integer overflow? */
d1581d5f 554 snprintf(buf, sizeof buf, "C%04o %lu %s\n",
f8f230bf 555 (u_int) (stb.st_mode & FILEMODEMASK),
d1581d5f 556 (u_long) stb.st_size, last);
f8f230bf 557#endif
5260325f 558 if (verbose_mode) {
559 fprintf(stderr, "Sending file modes: %s", buf);
560 fflush(stderr);
561 }
3189621b 562 (void) atomicio(write, remout, buf, strlen(buf));
8efc0c15 563 if (response() < 0)
564 goto next;
565 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
5260325f 566next: (void) close(fd);
8efc0c15 567 continue;
568 }
8efc0c15 569 if (showprogress) {
570 totalbytes = stb.st_size;
571 progressmeter(-1);
572 }
8efc0c15 573 /* Keep writing after an error so that we stay sync'd up. */
574 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
575 amt = bp->cnt;
576 if (i + amt > stb.st_size)
577 amt = stb.st_size - i;
578 if (!haderr) {
1d1ffb87 579 result = atomicio(read, fd, bp->buf, amt);
8efc0c15 580 if (result != amt)
581 haderr = result >= 0 ? EIO : errno;
582 }
583 if (haderr)
3189621b 584 (void) atomicio(write, remout, bp->buf, amt);
8efc0c15 585 else {
68227e6d 586 result = atomicio(write, remout, bp->buf, amt);
8efc0c15 587 if (result != amt)
588 haderr = result >= 0 ? EIO : errno;
589 statbytes += result;
590 }
591 }
5260325f 592 if (showprogress)
8efc0c15 593 progressmeter(1);
594
595 if (close(fd) < 0 && !haderr)
596 haderr = errno;
597 if (!haderr)
3189621b 598 (void) atomicio(write, remout, "", 1);
8efc0c15 599 else
600 run_err("%s: %s", name, strerror(haderr));
5260325f 601 (void) response();
8efc0c15 602 }
603}
604
605void
606rsource(name, statp)
607 char *name;
608 struct stat *statp;
609{
610 DIR *dirp;
611 struct dirent *dp;
612 char *last, *vect[1], path[1100];
613
614 if (!(dirp = opendir(name))) {
615 run_err("%s: %s", name, strerror(errno));
616 return;
617 }
618 last = strrchr(name, '/');
619 if (last == 0)
620 last = name;
621 else
622 last++;
623 if (pflag) {
0ed28836 624 (void) snprintf(path, sizeof(path), "T%lu 0 %lu 0\n",
1e3b8b07 625 (u_long) statp->st_mtime,
626 (u_long) statp->st_atime);
3189621b 627 (void) atomicio(write, remout, path, strlen(path));
8efc0c15 628 if (response() < 0) {
629 closedir(dirp);
630 return;
631 }
632 }
0ed28836 633 (void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
1e3b8b07 634 (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
5260325f 635 if (verbose_mode)
636 fprintf(stderr, "Entering directory: %s", path);
3189621b 637 (void) atomicio(write, remout, path, strlen(path));
8efc0c15 638 if (response() < 0) {
639 closedir(dirp);
640 return;
641 }
e5ff6ecf 642 while ((dp = readdir(dirp)) != NULL) {
8efc0c15 643 if (dp->d_ino == 0)
644 continue;
645 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
646 continue;
647 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
648 run_err("%s/%s: name too long", name, dp->d_name);
649 continue;
650 }
0ed28836 651 (void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
8efc0c15 652 vect[0] = path;
653 source(1, vect);
654 }
5260325f 655 (void) closedir(dirp);
3189621b 656 (void) atomicio(write, remout, "E\n", 2);
5260325f 657 (void) response();
8efc0c15 658}
659
660void
661sink(argc, argv)
662 int argc;
663 char *argv[];
664{
665 static BUF buffer;
666 struct stat stb;
5260325f 667 enum {
668 YES, NO, DISPLAYED
669 } wrerr;
8efc0c15 670 BUF *bp;
671 off_t i, j;
672 int amt, count, exists, first, mask, mode, ofd, omode;
14a9a859 673 off_t size;
674 int setimes, targisdir, wrerrno = 0;
8efc0c15 675 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
188adeb2 676 struct timeval tv[2];
8efc0c15 677
36967a16 678#define atime tv[0]
679#define mtime tv[1]
cb220a93 680#define SCREWUP(str) do { why = str; goto screwup; } while (0)
8efc0c15 681
682 setimes = targisdir = 0;
683 mask = umask(0);
684 if (!pflag)
5260325f 685 (void) umask(mask);
8efc0c15 686 if (argc != 1) {
687 run_err("ambiguous target");
688 exit(1);
689 }
690 targ = *argv;
691 if (targetshouldbedirectory)
692 verifydir(targ);
5260325f 693
3189621b 694 (void) atomicio(write, remout, "", 1);
8efc0c15 695 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
696 targisdir = 1;
697 for (first = 1;; first = 0) {
698 cp = buf;
1d1ffb87 699 if (atomicio(read, remin, cp, 1) <= 0)
8efc0c15 700 return;
701 if (*cp++ == '\n')
702 SCREWUP("unexpected <newline>");
703 do {
1d1ffb87 704 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
8efc0c15 705 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)
3189621b 712 (void) atomicio(write, STDERR_FILENO,
71c0d06a 713 buf + 1, strlen(buf + 1));
8efc0c15 714 if (buf[0] == '\02')
715 exit(1);
716 ++errs;
717 continue;
718 }
719 if (buf[0] == 'E') {
3189621b 720 (void) atomicio(write, remout, "", 1);
8efc0c15 721 return;
722 }
8efc0c15 723 if (ch == '\n')
724 *--cp = 0;
725
8efc0c15 726 cp = buf;
727 if (*cp == 'T') {
728 setimes++;
729 cp++;
36967a16 730 mtime.tv_sec = strtol(cp, &cp, 10);
731 if (!cp || *cp++ != ' ')
8efc0c15 732 SCREWUP("mtime.sec not delimited");
36967a16 733 mtime.tv_usec = strtol(cp, &cp, 10);
734 if (!cp || *cp++ != ' ')
8efc0c15 735 SCREWUP("mtime.usec not delimited");
36967a16 736 atime.tv_sec = strtol(cp, &cp, 10);
737 if (!cp || *cp++ != ' ')
8efc0c15 738 SCREWUP("atime.sec not delimited");
36967a16 739 atime.tv_usec = strtol(cp, &cp, 10);
740 if (!cp || *cp++ != '\0')
8efc0c15 741 SCREWUP("atime.usec not delimited");
3189621b 742 (void) atomicio(write, remout, "", 1);
8efc0c15 743 continue;
744 }
745 if (*cp != 'C' && *cp != 'D') {
746 /*
747 * Check for the case "rcp remote:foo\* local:bar".
748 * In this case, the line "No match." can be returned
749 * by the shell before the rcp command on the remote is
750 * executed so the ^Aerror_message convention isn't
751 * followed.
752 */
753 if (first) {
754 run_err("%s", cp);
755 exit(1);
756 }
757 SCREWUP("expected control record");
758 }
759 mode = 0;
760 for (++cp; cp < buf + 5; cp++) {
761 if (*cp < '0' || *cp > '7')
762 SCREWUP("bad mode");
763 mode = (mode << 3) | (*cp - '0');
764 }
765 if (*cp++ != ' ')
766 SCREWUP("mode not delimited");
767
e5ff6ecf 768 for (size = 0; isdigit(*cp);)
8efc0c15 769 size = size * 10 + (*cp++ - '0');
770 if (*cp++ != ' ')
771 SCREWUP("size not delimited");
772 if (targisdir) {
773 static char *namebuf;
774 static int cursize;
775 size_t need;
776
777 need = strlen(targ) + strlen(cp) + 250;
0ed28836 778 if (need > cursize) {
779 if (namebuf)
780 xfree(namebuf);
5260325f 781 namebuf = xmalloc(need);
0ed28836 782 cursize = need;
783 }
784 (void) snprintf(namebuf, need, "%s%s%s", targ,
2e73a022 785 *targ ? "/" : "", cp);
8efc0c15 786 np = namebuf;
787 } else
788 np = targ;
789 curfile = cp;
790 exists = stat(np, &stb) == 0;
791 if (buf[0] == 'D') {
792 int mod_flag = pflag;
793 if (exists) {
794 if (!S_ISDIR(stb.st_mode)) {
795 errno = ENOTDIR;
796 goto bad;
797 }
798 if (pflag)
5260325f 799 (void) chmod(np, mode);
8efc0c15 800 } else {
5260325f 801 /* Handle copying from a read-only
802 directory */
8efc0c15 803 mod_flag = 1;
804 if (mkdir(np, mode | S_IRWXU) < 0)
805 goto bad;
806 }
5c470997 807 vect[0] = xstrdup(np);
8efc0c15 808 sink(1, vect);
809 if (setimes) {
810 setimes = 0;
e68225b2 811 if (utimes(vect[0], tv) < 0)
5260325f 812 run_err("%s: set times: %s",
e68225b2 813 vect[0], strerror(errno));
8efc0c15 814 }
815 if (mod_flag)
e68225b2 816 (void) chmod(vect[0], mode);
817 if (vect[0])
818 xfree(vect[0]);
8efc0c15 819 continue;
820 }
821 omode = mode;
822 mode |= S_IWRITE;
3e4fc5f9 823 if ((ofd = open(np, O_WRONLY|O_CREAT, mode)) < 0) {
8efc0c15 824bad: run_err("%s: %s", np, strerror(errno));
825 continue;
826 }
3189621b 827 (void) atomicio(write, remout, "", 1);
8efc0c15 828 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
5260325f 829 (void) close(ofd);
8efc0c15 830 continue;
831 }
832 cp = bp->buf;
833 wrerr = NO;
834
835 if (showprogress) {
836 totalbytes = size;
837 progressmeter(-1);
838 }
839 statbytes = 0;
840 for (count = i = 0; i < size; i += 4096) {
841 amt = 4096;
842 if (i + amt > size)
843 amt = size - i;
844 count += amt;
845 do {
a22aff1f 846 j = read(remin, cp, amt);
0b2988ca 847 if (j == -1 && (errno == EINTR ||
848 errno == EAGAIN)) {
a22aff1f 849 continue;
850 } else if (j <= 0) {
8efc0c15 851 run_err("%s", j ? strerror(errno) :
e5ff6ecf 852 "dropped connection");
8efc0c15 853 exit(1);
854 }
855 amt -= j;
856 cp += j;
5260325f 857 statbytes += j;
8efc0c15 858 } while (amt > 0);
859 if (count == bp->cnt) {
860 /* Keep reading so we stay sync'd up. */
861 if (wrerr == NO) {
1d1ffb87 862 j = atomicio(write, ofd, bp->buf, count);
8efc0c15 863 if (j != count) {
864 wrerr = YES;
5260325f 865 wrerrno = j >= 0 ? EIO : errno;
8efc0c15 866 }
867 }
868 count = 0;
869 cp = bp->buf;
870 }
871 }
872 if (showprogress)
873 progressmeter(1);
874 if (count != 0 && wrerr == NO &&
1d1ffb87 875 (j = atomicio(write, ofd, bp->buf, count)) != count) {
8efc0c15 876 wrerr = YES;
5260325f 877 wrerrno = j >= 0 ? EIO : errno;
8efc0c15 878 }
8efc0c15 879 if (ftruncate(ofd, size)) {
880 run_err("%s: truncate: %s", np, strerror(errno));
881 wrerr = DISPLAYED;
882 }
8efc0c15 883 if (pflag) {
884 if (exists || omode != mode)
77bb0bca 885#ifdef HAVE_FCHMOD
8efc0c15 886 if (fchmod(ofd, omode))
77bb0bca 887#else /* HAVE_FCHMOD */
888 if (chmod(np, omode))
889#endif /* HAVE_FCHMOD */
8efc0c15 890 run_err("%s: set mode: %s",
e5ff6ecf 891 np, strerror(errno));
8efc0c15 892 } else {
893 if (!exists && omode != mode)
77bb0bca 894#ifdef HAVE_FCHMOD
8efc0c15 895 if (fchmod(ofd, omode & ~mask))
77bb0bca 896#else /* HAVE_FCHMOD */
897 if (chmod(np, omode & ~mask))
898#endif /* HAVE_FCHMOD */
8efc0c15 899 run_err("%s: set mode: %s",
e5ff6ecf 900 np, strerror(errno));
8efc0c15 901 }
704b1659 902 if (close(ofd) == -1) {
903 wrerr = YES;
904 wrerrno = errno;
905 }
5260325f 906 (void) response();
8efc0c15 907 if (setimes && wrerr == NO) {
908 setimes = 0;
188adeb2 909 if (utimes(np, tv) < 0) {
8efc0c15 910 run_err("%s: set times: %s",
e5ff6ecf 911 np, strerror(errno));
8efc0c15 912 wrerr = DISPLAYED;
913 }
914 }
5260325f 915 switch (wrerr) {
8efc0c15 916 case YES:
917 run_err("%s: %s", np, strerror(wrerrno));
918 break;
919 case NO:
3189621b 920 (void) atomicio(write, remout, "", 1);
8efc0c15 921 break;
922 case DISPLAYED:
923 break;
924 }
925 }
926screwup:
927 run_err("protocol error: %s", why);
928 exit(1);
929}
930
931int
d5bb9418 932response(void)
8efc0c15 933{
934 char ch, *cp, resp, rbuf[2048];
935
1d1ffb87 936 if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
8efc0c15 937 lostconn(0);
938
939 cp = rbuf;
5260325f 940 switch (resp) {
941 case 0: /* ok */
8efc0c15 942 return (0);
943 default:
944 *cp++ = resp;
945 /* FALLTHROUGH */
5260325f 946 case 1: /* error, followed by error msg */
947 case 2: /* fatal error, "" */
8efc0c15 948 do {
1d1ffb87 949 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
8efc0c15 950 lostconn(0);
951 *cp++ = ch;
952 } while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
953
954 if (!iamremote)
3189621b 955 (void) atomicio(write, STDERR_FILENO, rbuf, cp - rbuf);
8efc0c15 956 ++errs;
957 if (resp == 1)
958 return (-1);
959 exit(1);
960 }
961 /* NOTREACHED */
962}
963
964void
d5bb9418 965usage(void)
8efc0c15 966{
f1278af7 967 (void) fprintf(stderr,
968 "usage: scp [-pqrvBC46] [-F config] [-S ssh] [-P port] [-c cipher] [-i identity]\n"
969 " [-o option] f1 f2\n"
03cb2621 970 " or: scp [options] f1 ... fn directory\n");
8efc0c15 971 exit(1);
972}
973
974void
5260325f 975run_err(const char *fmt,...)
8efc0c15 976{
977 static FILE *fp;
978 va_list ap;
8efc0c15 979
980 ++errs;
981 if (fp == NULL && !(fp = fdopen(remout, "w")))
982 return;
5260325f 983 (void) fprintf(fp, "%c", 0x01);
984 (void) fprintf(fp, "scp: ");
b92964b7 985 va_start(ap, fmt);
5260325f 986 (void) vfprintf(fp, fmt, ap);
b92964b7 987 va_end(ap);
5260325f 988 (void) fprintf(fp, "\n");
989 (void) fflush(fp);
990
991 if (!iamremote) {
b92964b7 992 va_start(ap, fmt);
5260325f 993 vfprintf(stderr, fmt, ap);
b92964b7 994 va_end(ap);
5260325f 995 fprintf(stderr, "\n");
996 }
8efc0c15 997}
998
8efc0c15 999void
1000verifydir(cp)
1001 char *cp;
1002{
1003 struct stat stb;
1004
1005 if (!stat(cp, &stb)) {
1006 if (S_ISDIR(stb.st_mode))
1007 return;
1008 errno = ENOTDIR;
1009 }
1010 run_err("%s: %s", cp, strerror(errno));
1011 exit(1);
1012}
1013
1014int
1015okname(cp0)
1016 char *cp0;
1017{
1018 int c;
1019 char *cp;
1020
1021 cp = cp0;
1022 do {
cb220a93 1023 c = (int)*cp;
8efc0c15 1024 if (c & 0200)
1025 goto bad;
731c1541 1026 if (!isalpha(c) && !isdigit(c) &&
1027 c != '_' && c != '-' && c != '.' && c != '+')
8efc0c15 1028 goto bad;
1029 } while (*++cp);
1030 return (1);
1031
c8d54615 1032bad: fprintf(stderr, "%s: invalid user name\n", cp0);
8efc0c15 1033 return (0);
1034}
1035
1036BUF *
1037allocbuf(bp, fd, blksize)
1038 BUF *bp;
1039 int fd, blksize;
1040{
1041 size_t size;
98a7c37b 1042#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
8efc0c15 1043 struct stat stb;
1044
1045 if (fstat(fd, &stb) < 0) {
1046 run_err("fstat: %s", strerror(errno));
1047 return (0);
1048 }
5260325f 1049 if (stb.st_blksize == 0)
1050 size = blksize;
1051 else
1052 size = blksize + (stb.st_blksize - blksize % stb.st_blksize) %
2e73a022 1053 stb.st_blksize;
98a7c37b 1054#else /* HAVE_STRUCT_STAT_ST_BLKSIZE */
2b87da3b 1055 size = blksize;
98a7c37b 1056#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
8efc0c15 1057 if (bp->cnt >= size)
1058 return (bp);
5260325f 1059 if (bp->buf == NULL)
1060 bp->buf = xmalloc(size);
1061 else
1062 bp->buf = xrealloc(bp->buf, size);
46660a9e 1063 memset(bp->buf, 0, size);
8efc0c15 1064 bp->cnt = size;
1065 return (bp);
1066}
1067
1068void
1069lostconn(signo)
1070 int signo;
1071{
1072 if (!iamremote)
08c260ea 1073 write(STDERR_FILENO, "lost connection\n", 16);
1074 if (signo)
1075 _exit(1);
1076 else
1077 exit(1);
8efc0c15 1078}
1079
396c147e 1080static void
610cd5c6 1081updateprogressmeter(int ignore)
8efc0c15 1082{
1083 int save_errno = errno;
1084
1085 progressmeter(0);
cddb9003 1086 signal(SIGALRM, updateprogressmeter);
1087 alarm(PROGRESSTIME);
8efc0c15 1088 errno = save_errno;
1089}
1090
396c147e 1091static int
5ca51e19 1092foregroundproc(void)
2bd61362 1093{
1094 static pid_t pgrp = -1;
1095 int ctty_pgrp;
1096
1097 if (pgrp == -1)
1098 pgrp = getpgrp();
1099
63fe0529 1100#ifdef HAVE_TCGETPGRP
3c62e7eb 1101 return ((ctty_pgrp = tcgetpgrp(STDOUT_FILENO)) != -1 &&
1102 ctty_pgrp == pgrp);
1103#else
5260325f 1104 return ((ioctl(STDOUT_FILENO, TIOCGPGRP, &ctty_pgrp) != -1 &&
1105 ctty_pgrp == pgrp));
3c62e7eb 1106#endif
2bd61362 1107}
1108
8efc0c15 1109void
1110progressmeter(int flag)
1111{
1112 static const char prefixes[] = " KMGTP";
1113 static struct timeval lastupdate;
1114 static off_t lastsize;
1115 struct timeval now, td, wait;
1116 off_t cursize, abbrevsize;
1117 double elapsed;
b6573a35 1118 int ratio, barlength, i, remaining;
8efc0c15 1119 char buf[256];
1120
1121 if (flag == -1) {
5260325f 1122 (void) gettimeofday(&start, (struct timezone *) 0);
8efc0c15 1123 lastupdate = start;
1124 lastsize = 0;
5260325f 1125 }
2bd61362 1126 if (foregroundproc() == 0)
1127 return;
1128
5260325f 1129 (void) gettimeofday(&now, (struct timezone *) 0);
8efc0c15 1130 cursize = statbytes;
b4ad3727 1131 if (totalbytes != 0) {
aa3378df 1132 ratio = 100.0 * cursize / totalbytes;
8efc0c15 1133 ratio = MAX(ratio, 0);
1134 ratio = MIN(ratio, 100);
5260325f 1135 } else
8efc0c15 1136 ratio = 100;
1137
5260325f 1138 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
8efc0c15 1139
1140 barlength = getttywidth() - 51;
a4070484 1141 barlength = (barlength <= MAX_BARLENGTH)?barlength:MAX_BARLENGTH;
8efc0c15 1142 if (barlength > 0) {
1143 i = barlength * ratio / 100;
1144 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
a4070484 1145 "|%.*s%*s|", i, BAR, barlength - i, "");
8efc0c15 1146 }
8efc0c15 1147 i = 0;
1148 abbrevsize = cursize;
1149 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
1150 i++;
1151 abbrevsize >>= 10;
1152 }
6a416424 1153 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5lu %c%c ",
2c92c680 1154 (unsigned long) abbrevsize, prefixes[i],
1155 prefixes[i] == ' ' ? ' ' : 'B');
8efc0c15 1156
1157 timersub(&now, &lastupdate, &wait);
1158 if (cursize > lastsize) {
1159 lastupdate = now;
1160 lastsize = cursize;
1161 if (wait.tv_sec >= STALLTIME) {
1162 start.tv_sec += wait.tv_sec;
1163 start.tv_usec += wait.tv_usec;
1164 }
1165 wait.tv_sec = 0;
1166 }
8efc0c15 1167 timersub(&now, &start, &td);
1168 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
1169
71c0d06a 1170 if (flag != 1 &&
1171 (statbytes <= 0 || elapsed <= 0.0 || cursize > totalbytes)) {
8efc0c15 1172 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
71c0d06a 1173 " --:-- ETA");
8efc0c15 1174 } else if (wait.tv_sec >= STALLTIME) {
1175 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
71c0d06a 1176 " - stalled -");
8efc0c15 1177 } else {
d6f24e45 1178 if (flag != 1)
71c0d06a 1179 remaining = (int)(totalbytes / (statbytes / elapsed) -
1180 elapsed);
d6f24e45 1181 else
1182 remaining = elapsed;
1183
5068f573 1184 i = remaining / 3600;
8efc0c15 1185 if (i)
1186 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
2e73a022 1187 "%2d:", i);
8efc0c15 1188 else
1189 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
2e73a022 1190 " ");
8efc0c15 1191 i = remaining % 3600;
1192 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
2e73a022 1193 "%02d:%02d%s", i / 60, i % 60,
1194 (flag != 1) ? " ETA" : " ");
8efc0c15 1195 }
1196 atomicio(write, fileno(stdout), buf, strlen(buf));
1197
1198 if (flag == -1) {
36a358ca 1199 mysignal(SIGALRM, updateprogressmeter);
cddb9003 1200 alarm(PROGRESSTIME);
8efc0c15 1201 } else if (flag == 1) {
cddb9003 1202 alarm(0);
3189621b 1203 atomicio(write, fileno(stdout), "\n", 1);
8efc0c15 1204 statbytes = 0;
1205 }
1206}
1207
1208int
1209getttywidth(void)
1210{
1211 struct winsize winsize;
1212
1213 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
5260325f 1214 return (winsize.ws_col ? winsize.ws_col : 80);
8efc0c15 1215 else
5260325f 1216 return (80);
8efc0c15 1217}
This page took 0.345838 seconds and 5 git commands to generate.