]> andersk Git - openssh.git/blame - scp.c
- (djm) Merge cygwin support from Corinna Vinschen <vinschen@cygnus.com>
[openssh.git] / scp.c
CommitLineData
8efc0c15 1/*
6ae2364d 2 *
5260325f 3 * scp - secure remote copy. This is basically patched BSD rcp which uses ssh
4 * to do the data transfer (instead of using rcmd).
6ae2364d 5 *
5260325f 6 * NOTE: This version should NOT be suid root. (This uses ssh to do the transfer
7 * and ssh has the necessary privileges.)
6ae2364d 8 *
5260325f 9 * 1995 Timo Rinne <tri@iki.fi>, Tatu Ylonen <ylo@cs.hut.fi>
6ae2364d 10 *
8efc0c15 11*/
12
13/*
2e73a022 14 * Parts from:
15 *
8efc0c15 16 * Copyright (c) 1983, 1990, 1992, 1993, 1995
17 * The Regents of the University of California. All rights reserved.
18 *
19 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions
21 * are met:
22 * 1. Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * 2. Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
27 * 3. All advertising materials mentioning features or use of this software
28 * must display the following acknowledgement:
29 * This product includes software developed by the University of
30 * California, Berkeley and its contributors.
31 * 4. Neither the name of the University nor the names of its contributors
32 * may be used to endorse or promote products derived from this software
33 * without specific prior written permission.
34 *
35 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
36 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
37 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
38 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
39 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
40 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
41 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
42 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
43 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
44 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
45 * SUCH DAMAGE.
46 *
8efc0c15 47 */
48
49#include "includes.h"
b5e300c2 50RCSID("$OpenBSD: scp.c,v 1.37 2000/09/01 15:25:13 deraadt Exp $");
8efc0c15 51
52#include "ssh.h"
53#include "xmalloc.h"
54#include <utime.h>
55
56#define _PATH_CP "cp"
57
58/* For progressmeter() -- number of seconds before xfer considered "stalled" */
59#define STALLTIME 5
60
a4070484 61/* Progress meter bar */
62#define BAR \
63 "************************************************************"\
64 "************************************************************"\
65 "************************************************************"\
66 "************************************************************"
67#define MAX_BARLENGTH (sizeof(BAR) - 1)
68
8efc0c15 69/* Visual statistics about files as they are transferred. */
70void progressmeter(int);
71
72/* Returns width of the terminal (for progress meter calculations). */
73int getttywidth(void);
2e73a022 74int do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc);
8efc0c15 75
76/* Time a transfer started. */
77static struct timeval start;
78
79/* Number of bytes of current file transferred so far. */
80volatile unsigned long statbytes;
81
82/* Total size of current file. */
b4ad3727 83off_t totalbytes = 0;
8efc0c15 84
85/* Name of current file being transferred. */
86char *curfile;
87
48e671d5 88/* This is set to non-zero if IPv4 is desired. */
89int IPv4 = 0;
90
91/* This is set to non-zero if IPv6 is desired. */
92int IPv6 = 0;
93
8efc0c15 94/* This is set to non-zero to enable verbose mode. */
5260325f 95int verbose_mode = 0;
8efc0c15 96
97/* This is set to non-zero if compression is desired. */
cf8dd513 98int compress_flag = 0;
8efc0c15 99
100/* This is set to zero if the progressmeter is not desired. */
101int showprogress = 1;
102
103/* This is set to non-zero if running in batch mode (that is, password
104 and passphrase queries are not allowed). */
105int batchmode = 0;
106
107/* This is set to the cipher type string if given on the command line. */
108char *cipher = NULL;
109
5260325f 110/* This is set to the RSA authentication identity file name if given on
8efc0c15 111 the command line. */
112char *identity = NULL;
113
114/* This is the port to use in contacting the remote site (is non-NULL). */
115char *port = NULL;
116
2e73a022 117/* This is the program to execute for the secured connection. ("ssh" or -S) */
118char *ssh_program = SSH_PROGRAM;
119
aa3378df 120/*
121 * This function executes the given command as the specified user on the
122 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
123 * assigns the input and output file descriptors on success.
124 */
8efc0c15 125
6ae2364d 126int
2e73a022 127do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
8efc0c15 128{
5260325f 129 int pin[2], pout[2], reserved[2];
130
131 if (verbose_mode)
132 fprintf(stderr, "Executing: host %s, user %s, command %s\n",
2e73a022 133 host, remuser ? remuser : "(unspecified)", cmd);
5260325f 134
aa3378df 135 /*
136 * Reserve two descriptors so that the real pipes won't get
137 * descriptors 0 and 1 because that will screw up dup2 below.
138 */
5260325f 139 pipe(reserved);
140
141 /* Create a socket pair for communicating with ssh. */
142 if (pipe(pin) < 0)
143 fatal("pipe: %s", strerror(errno));
144 if (pipe(pout) < 0)
145 fatal("pipe: %s", strerror(errno));
146
147 /* Free the reserved descriptors. */
148 close(reserved[0]);
149 close(reserved[1]);
150
151 /* For a child to execute the command on the remote host using ssh. */
152 if (fork() == 0) {
2e73a022 153 char *args[100]; /* XXX careful */
5260325f 154 unsigned int i;
155
156 /* Child. */
157 close(pin[1]);
158 close(pout[0]);
159 dup2(pin[0], 0);
160 dup2(pout[1], 1);
161 close(pin[0]);
162 close(pout[1]);
163
164 i = 0;
2e73a022 165 args[i++] = ssh_program;
5260325f 166 args[i++] = "-x";
167 args[i++] = "-oFallBackToRsh no";
48e671d5 168 if (IPv4)
169 args[i++] = "-4";
170 if (IPv6)
171 args[i++] = "-6";
5260325f 172 if (verbose_mode)
173 args[i++] = "-v";
cf8dd513 174 if (compress_flag)
5260325f 175 args[i++] = "-C";
176 if (batchmode)
177 args[i++] = "-oBatchMode yes";
178 if (cipher != NULL) {
179 args[i++] = "-c";
180 args[i++] = cipher;
181 }
182 if (identity != NULL) {
183 args[i++] = "-i";
184 args[i++] = identity;
185 }
186 if (port != NULL) {
187 args[i++] = "-p";
188 args[i++] = port;
189 }
190 if (remuser != NULL) {
191 args[i++] = "-l";
192 args[i++] = remuser;
193 }
194 args[i++] = host;
195 args[i++] = cmd;
196 args[i++] = NULL;
197
2e73a022 198 execvp(ssh_program, args);
199 perror(ssh_program);
5260325f 200 exit(1);
8efc0c15 201 }
5260325f 202 /* Parent. Close the other side, and return the local side. */
203 close(pin[0]);
204 *fdout = pin[1];
205 close(pout[1]);
206 *fdin = pout[0];
207 return 0;
8efc0c15 208}
209
6ae2364d 210void
5260325f 211fatal(const char *fmt,...)
8efc0c15 212{
5260325f 213 va_list ap;
214 char buf[1024];
215
216 va_start(ap, fmt);
217 vsnprintf(buf, sizeof(buf), fmt, ap);
218 va_end(ap);
219 fprintf(stderr, "%s\n", buf);
220 exit(255);
8efc0c15 221}
222
8efc0c15 223typedef struct {
224 int cnt;
225 char *buf;
226} BUF;
227
228extern int iamremote;
229
5260325f 230BUF *allocbuf(BUF *, int, int);
231char *colon(char *);
232void lostconn(int);
233void nospace(void);
234int okname(char *);
235void run_err(const char *,...);
236void verifydir(char *);
8efc0c15 237
8efc0c15 238struct passwd *pwd;
5260325f 239uid_t userid;
8efc0c15 240int errs, remin, remout;
241int pflag, iamremote, iamrecursive, targetshouldbedirectory;
242
243#define CMDNEEDS 64
244char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
245
5260325f 246int response(void);
247void rsource(char *, struct stat *);
248void sink(int, char *[]);
249void source(int, char *[]);
250void tolocal(int, char *[]);
251void toremote(char *, int, char *[]);
252void usage(void);
8efc0c15 253
254int
255main(argc, argv)
256 int argc;
257 char *argv[];
258{
259 int ch, fflag, tflag;
260 char *targ;
261 extern char *optarg;
262 extern int optind;
263
264 fflag = tflag = 0;
b5e300c2 265 while ((ch = getopt(argc, argv, "dfprtvBCc:i:P:q46S:")) != EOF)
5260325f 266 switch (ch) {
267 /* User-visible flags. */
48e671d5 268 case '4':
6ae2364d 269 IPv4 = 1;
48e671d5 270 break;
271 case '6':
6ae2364d 272 IPv6 = 1;
48e671d5 273 break;
8efc0c15 274 case 'p':
275 pflag = 1;
276 break;
277 case 'P':
5260325f 278 port = optarg;
279 break;
8efc0c15 280 case 'r':
281 iamrecursive = 1;
282 break;
2e73a022 283 case 'S':
284 ssh_program = optarg;
285 break;
286
5260325f 287 /* Server options. */
8efc0c15 288 case 'd':
289 targetshouldbedirectory = 1;
290 break;
5260325f 291 case 'f': /* "from" */
8efc0c15 292 iamremote = 1;
293 fflag = 1;
294 break;
5260325f 295 case 't': /* "to" */
8efc0c15 296 iamremote = 1;
297 tflag = 1;
298 break;
299 case 'c':
300 cipher = optarg;
5260325f 301 break;
8efc0c15 302 case 'i':
5260325f 303 identity = optarg;
8efc0c15 304 break;
305 case 'v':
5260325f 306 verbose_mode = 1;
307 break;
8efc0c15 308 case 'B':
5260325f 309 batchmode = 1;
310 break;
8efc0c15 311 case 'C':
cf8dd513 312 compress_flag = 1;
5260325f 313 break;
8efc0c15 314 case 'q':
5260325f 315 showprogress = 0;
316 break;
8efc0c15 317 case '?':
318 default:
319 usage();
320 }
321 argc -= optind;
322 argv += optind;
323
324 if ((pwd = getpwuid(userid = getuid())) == NULL)
5260325f 325 fatal("unknown user %d", (int) userid);
8efc0c15 326
5260325f 327 if (!isatty(STDERR_FILENO))
8efc0c15 328 showprogress = 0;
329
330 remin = STDIN_FILENO;
331 remout = STDOUT_FILENO;
332
5260325f 333 if (fflag) {
334 /* Follow "protocol", send data. */
335 (void) response();
8efc0c15 336 source(argc, argv);
337 exit(errs != 0);
338 }
5260325f 339 if (tflag) {
340 /* Receive data. */
8efc0c15 341 sink(argc, argv);
342 exit(errs != 0);
343 }
8efc0c15 344 if (argc < 2)
345 usage();
346 if (argc > 2)
347 targetshouldbedirectory = 1;
348
349 remin = remout = -1;
350 /* Command to be executed on remote system using "ssh". */
5260325f 351 (void) sprintf(cmd, "scp%s%s%s%s", verbose_mode ? " -v" : "",
2e73a022 352 iamrecursive ? " -r" : "", pflag ? " -p" : "",
353 targetshouldbedirectory ? " -d" : "");
8efc0c15 354
5260325f 355 (void) signal(SIGPIPE, lostconn);
8efc0c15 356
357 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
358 toremote(targ, argc, argv);
359 else {
5260325f 360 tolocal(argc, argv); /* Dest is local host. */
8efc0c15 361 if (targetshouldbedirectory)
362 verifydir(argv[argc - 1]);
363 }
364 exit(errs != 0);
365}
366
48e671d5 367char *
368cleanhostname(host)
369 char *host;
370{
371 if (*host == '[' && host[strlen(host) - 1] == ']') {
372 host[strlen(host) - 1] = '\0';
373 return (host + 1);
374 } else
375 return host;
376}
377
8efc0c15 378void
379toremote(targ, argc, argv)
380 char *targ, *argv[];
381 int argc;
382{
383 int i, len;
384 char *bp, *host, *src, *suser, *thost, *tuser;
385
386 *targ++ = 0;
387 if (*targ == 0)
388 targ = ".";
389
390 if ((thost = strchr(argv[argc - 1], '@'))) {
391 /* user@host */
392 *thost++ = 0;
393 tuser = argv[argc - 1];
394 if (*tuser == '\0')
395 tuser = NULL;
396 else if (!okname(tuser))
397 exit(1);
398 } else {
399 thost = argv[argc - 1];
400 tuser = NULL;
401 }
402
403 for (i = 0; i < argc - 1; i++) {
404 src = colon(argv[i]);
5260325f 405 if (src) { /* remote to remote */
8efc0c15 406 *src++ = 0;
407 if (*src == 0)
408 src = ".";
409 host = strchr(argv[i], '@');
2e73a022 410 len = strlen(ssh_program) + strlen(argv[i]) +
411 strlen(src) + (tuser ? strlen(tuser) : 0) +
412 strlen(thost) + strlen(targ) + CMDNEEDS + 32;
5260325f 413 bp = xmalloc(len);
8efc0c15 414 if (host) {
415 *host++ = 0;
48e671d5 416 host = cleanhostname(host);
8efc0c15 417 suser = argv[i];
418 if (*suser == '\0')
419 suser = pwd->pw_name;
420 else if (!okname(suser))
421 continue;
5260325f 422 (void) sprintf(bp,
2e73a022 423 "%s%s -x -o'FallBackToRsh no' -n -l %s %s %s %s '%s%s%s:%s'",
424 ssh_program, verbose_mode ? " -v" : "",
425 suser, host, cmd, src,
426 tuser ? tuser : "", tuser ? "@" : "",
427 thost, targ);
48e671d5 428 } else {
429 host = cleanhostname(argv[i]);
5260325f 430 (void) sprintf(bp,
2e73a022 431 "exec %s%s -x -o'FallBackToRsh no' -n %s %s %s '%s%s%s:%s'",
432 ssh_program, verbose_mode ? " -v" : "",
433 host, cmd, src,
434 tuser ? tuser : "", tuser ? "@" : "",
435 thost, targ);
48e671d5 436 }
5260325f 437 if (verbose_mode)
438 fprintf(stderr, "Executing: %s\n", bp);
439 (void) system(bp);
440 (void) xfree(bp);
441 } else { /* local to remote */
8efc0c15 442 if (remin == -1) {
443 len = strlen(targ) + CMDNEEDS + 20;
5260325f 444 bp = xmalloc(len);
445 (void) sprintf(bp, "%s -t %s", cmd, targ);
48e671d5 446 host = cleanhostname(thost);
2e73a022 447 if (do_cmd(host, tuser, bp, &remin,
448 &remout, argc) < 0)
5260325f 449 exit(1);
8efc0c15 450 if (response() < 0)
451 exit(1);
5260325f 452 (void) xfree(bp);
8efc0c15 453 }
5260325f 454 source(1, argv + i);
8efc0c15 455 }
456 }
457}
458
459void
460tolocal(argc, argv)
461 int argc;
462 char *argv[];
463{
464 int i, len;
465 char *bp, *host, *src, *suser;
466
467 for (i = 0; i < argc - 1; i++) {
5260325f 468 if (!(src = colon(argv[i]))) { /* Local to local. */
8efc0c15 469 len = strlen(_PATH_CP) + strlen(argv[i]) +
2e73a022 470 strlen(argv[argc - 1]) + 20;
8efc0c15 471 bp = xmalloc(len);
5260325f 472 (void) sprintf(bp, "exec %s%s%s %s %s", _PATH_CP,
2e73a022 473 iamrecursive ? " -r" : "", pflag ? " -p" : "",
474 argv[i], argv[argc - 1]);
5260325f 475 if (verbose_mode)
476 fprintf(stderr, "Executing: %s\n", bp);
8efc0c15 477 if (system(bp))
478 ++errs;
5260325f 479 (void) xfree(bp);
8efc0c15 480 continue;
481 }
482 *src++ = 0;
483 if (*src == 0)
484 src = ".";
485 if ((host = strchr(argv[i], '@')) == NULL) {
486 host = argv[i];
487 suser = NULL;
488 } else {
489 *host++ = 0;
490 suser = argv[i];
491 if (*suser == '\0')
492 suser = pwd->pw_name;
493 else if (!okname(suser))
494 continue;
495 }
48e671d5 496 host = cleanhostname(host);
8efc0c15 497 len = strlen(src) + CMDNEEDS + 20;
5260325f 498 bp = xmalloc(len);
499 (void) sprintf(bp, "%s -f %s", cmd, src);
2e73a022 500 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) {
5260325f 501 (void) xfree(bp);
502 ++errs;
503 continue;
8efc0c15 504 }
5260325f 505 xfree(bp);
8efc0c15 506 sink(1, argv + argc - 1);
5260325f 507 (void) close(remin);
8efc0c15 508 remin = remout = -1;
509 }
510}
511
512void
513source(argc, argv)
514 int argc;
515 char *argv[];
516{
517 struct stat stb;
518 static BUF buffer;
519 BUF *bp;
520 off_t i;
521 int amt, fd, haderr, indx, result;
522 char *last, *name, buf[2048];
523
524 for (indx = 0; indx < argc; ++indx) {
5260325f 525 name = argv[indx];
8efc0c15 526 statbytes = 0;
527 if ((fd = open(name, O_RDONLY, 0)) < 0)
528 goto syserr;
529 if (fstat(fd, &stb) < 0) {
530syserr: run_err("%s: %s", name, strerror(errno));
531 goto next;
532 }
533 switch (stb.st_mode & S_IFMT) {
534 case S_IFREG:
535 break;
536 case S_IFDIR:
537 if (iamrecursive) {
538 rsource(name, &stb);
539 goto next;
540 }
541 /* FALLTHROUGH */
542 default:
543 run_err("%s: not a regular file", name);
544 goto next;
545 }
546 if ((last = strrchr(name, '/')) == NULL)
547 last = name;
548 else
549 ++last;
550 curfile = last;
551 if (pflag) {
552 /*
553 * Make it compatible with possible future
554 * versions expecting microseconds.
555 */
5260325f 556 (void) sprintf(buf, "T%lu 0 %lu 0\n",
2e73a022 557 (unsigned long) stb.st_mtime,
558 (unsigned long) stb.st_atime);
3189621b 559 (void) atomicio(write, remout, buf, strlen(buf));
8efc0c15 560 if (response() < 0)
561 goto next;
562 }
563#define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
5260325f 564 (void) sprintf(buf, "C%04o %lu %s\n",
565 (unsigned int) (stb.st_mode & FILEMODEMASK),
566 (unsigned long) stb.st_size,
567 last);
568 if (verbose_mode) {
569 fprintf(stderr, "Sending file modes: %s", buf);
570 fflush(stderr);
571 }
3189621b 572 (void) atomicio(write, remout, buf, strlen(buf));
8efc0c15 573 if (response() < 0)
574 goto next;
575 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
5260325f 576next: (void) close(fd);
8efc0c15 577 continue;
578 }
8efc0c15 579 if (showprogress) {
580 totalbytes = stb.st_size;
581 progressmeter(-1);
582 }
8efc0c15 583 /* Keep writing after an error so that we stay sync'd up. */
584 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
585 amt = bp->cnt;
586 if (i + amt > stb.st_size)
587 amt = stb.st_size - i;
588 if (!haderr) {
1d1ffb87 589 result = atomicio(read, fd, bp->buf, amt);
8efc0c15 590 if (result != amt)
591 haderr = result >= 0 ? EIO : errno;
592 }
593 if (haderr)
3189621b 594 (void) atomicio(write, remout, bp->buf, amt);
8efc0c15 595 else {
68227e6d 596 result = atomicio(write, remout, bp->buf, amt);
8efc0c15 597 if (result != amt)
598 haderr = result >= 0 ? EIO : errno;
599 statbytes += result;
600 }
601 }
5260325f 602 if (showprogress)
8efc0c15 603 progressmeter(1);
604
605 if (close(fd) < 0 && !haderr)
606 haderr = errno;
607 if (!haderr)
3189621b 608 (void) atomicio(write, remout, "", 1);
8efc0c15 609 else
610 run_err("%s: %s", name, strerror(haderr));
5260325f 611 (void) response();
8efc0c15 612 }
613}
614
615void
616rsource(name, statp)
617 char *name;
618 struct stat *statp;
619{
620 DIR *dirp;
621 struct dirent *dp;
622 char *last, *vect[1], path[1100];
623
624 if (!(dirp = opendir(name))) {
625 run_err("%s: %s", name, strerror(errno));
626 return;
627 }
628 last = strrchr(name, '/');
629 if (last == 0)
630 last = name;
631 else
632 last++;
633 if (pflag) {
5260325f 634 (void) sprintf(path, "T%lu 0 %lu 0\n",
2e73a022 635 (unsigned long) statp->st_mtime,
636 (unsigned long) statp->st_atime);
3189621b 637 (void) atomicio(write, remout, path, strlen(path));
8efc0c15 638 if (response() < 0) {
639 closedir(dirp);
640 return;
641 }
642 }
5260325f 643 (void) sprintf(path, "D%04o %d %.1024s\n",
2e73a022 644 (unsigned int) (statp->st_mode & FILEMODEMASK), 0, last);
5260325f 645 if (verbose_mode)
646 fprintf(stderr, "Entering directory: %s", path);
3189621b 647 (void) atomicio(write, remout, path, strlen(path));
8efc0c15 648 if (response() < 0) {
649 closedir(dirp);
650 return;
651 }
652 while ((dp = readdir(dirp))) {
653 if (dp->d_ino == 0)
654 continue;
655 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
656 continue;
657 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
658 run_err("%s/%s: name too long", name, dp->d_name);
659 continue;
660 }
5260325f 661 (void) sprintf(path, "%s/%s", name, dp->d_name);
8efc0c15 662 vect[0] = path;
663 source(1, vect);
664 }
5260325f 665 (void) closedir(dirp);
3189621b 666 (void) atomicio(write, remout, "E\n", 2);
5260325f 667 (void) response();
8efc0c15 668}
669
670void
671sink(argc, argv)
672 int argc;
673 char *argv[];
674{
675 static BUF buffer;
676 struct stat stb;
5260325f 677 enum {
678 YES, NO, DISPLAYED
679 } wrerr;
8efc0c15 680 BUF *bp;
681 off_t i, j;
682 int amt, count, exists, first, mask, mode, ofd, omode;
14a9a859 683 off_t size;
684 int setimes, targisdir, wrerrno = 0;
8efc0c15 685 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
5260325f 686 struct utimbuf ut;
687 int dummy_usec;
8efc0c15 688
689#define SCREWUP(str) { why = str; goto screwup; }
690
691 setimes = targisdir = 0;
692 mask = umask(0);
693 if (!pflag)
5260325f 694 (void) umask(mask);
8efc0c15 695 if (argc != 1) {
696 run_err("ambiguous target");
697 exit(1);
698 }
699 targ = *argv;
700 if (targetshouldbedirectory)
701 verifydir(targ);
5260325f 702
3189621b 703 (void) atomicio(write, remout, "", 1);
8efc0c15 704 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
705 targisdir = 1;
706 for (first = 1;; first = 0) {
707 cp = buf;
1d1ffb87 708 if (atomicio(read, remin, cp, 1) <= 0)
8efc0c15 709 return;
710 if (*cp++ == '\n')
711 SCREWUP("unexpected <newline>");
712 do {
1d1ffb87 713 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
8efc0c15 714 SCREWUP("lost connection");
715 *cp++ = ch;
716 } while (cp < &buf[sizeof(buf) - 1] && ch != '\n');
717 *cp = 0;
718
719 if (buf[0] == '\01' || buf[0] == '\02') {
720 if (iamremote == 0)
3189621b 721 (void) atomicio(write, STDERR_FILENO,
5260325f 722 buf + 1, strlen(buf + 1));
8efc0c15 723 if (buf[0] == '\02')
724 exit(1);
725 ++errs;
726 continue;
727 }
728 if (buf[0] == 'E') {
3189621b 729 (void) atomicio(write, remout, "", 1);
8efc0c15 730 return;
731 }
8efc0c15 732 if (ch == '\n')
733 *--cp = 0;
734
735#define getnum(t) (t) = 0; \
736 while (*cp >= '0' && *cp <= '9') (t) = (t) * 10 + (*cp++ - '0');
737 cp = buf;
738 if (*cp == 'T') {
739 setimes++;
740 cp++;
741 getnum(ut.modtime);
742 if (*cp++ != ' ')
743 SCREWUP("mtime.sec not delimited");
744 getnum(dummy_usec);
745 if (*cp++ != ' ')
746 SCREWUP("mtime.usec not delimited");
747 getnum(ut.actime);
748 if (*cp++ != ' ')
749 SCREWUP("atime.sec not delimited");
750 getnum(dummy_usec);
751 if (*cp++ != '\0')
752 SCREWUP("atime.usec not delimited");
3189621b 753 (void) atomicio(write, remout, "", 1);
8efc0c15 754 continue;
755 }
756 if (*cp != 'C' && *cp != 'D') {
757 /*
758 * Check for the case "rcp remote:foo\* local:bar".
759 * In this case, the line "No match." can be returned
760 * by the shell before the rcp command on the remote is
761 * executed so the ^Aerror_message convention isn't
762 * followed.
763 */
764 if (first) {
765 run_err("%s", cp);
766 exit(1);
767 }
768 SCREWUP("expected control record");
769 }
770 mode = 0;
771 for (++cp; cp < buf + 5; cp++) {
772 if (*cp < '0' || *cp > '7')
773 SCREWUP("bad mode");
774 mode = (mode << 3) | (*cp - '0');
775 }
776 if (*cp++ != ' ')
777 SCREWUP("mode not delimited");
778
5260325f 779 for (size = 0; *cp >= '0' && *cp <= '9';)
8efc0c15 780 size = size * 10 + (*cp++ - '0');
781 if (*cp++ != ' ')
782 SCREWUP("size not delimited");
783 if (targisdir) {
784 static char *namebuf;
785 static int cursize;
786 size_t need;
787
788 need = strlen(targ) + strlen(cp) + 250;
789 if (need > cursize)
5260325f 790 namebuf = xmalloc(need);
791 (void) sprintf(namebuf, "%s%s%s", targ,
2e73a022 792 *targ ? "/" : "", cp);
8efc0c15 793 np = namebuf;
794 } else
795 np = targ;
796 curfile = cp;
797 exists = stat(np, &stb) == 0;
798 if (buf[0] == 'D') {
799 int mod_flag = pflag;
800 if (exists) {
801 if (!S_ISDIR(stb.st_mode)) {
802 errno = ENOTDIR;
803 goto bad;
804 }
805 if (pflag)
5260325f 806 (void) chmod(np, mode);
8efc0c15 807 } else {
5260325f 808 /* Handle copying from a read-only
809 directory */
8efc0c15 810 mod_flag = 1;
811 if (mkdir(np, mode | S_IRWXU) < 0)
812 goto bad;
813 }
814 vect[0] = np;
815 sink(1, vect);
816 if (setimes) {
817 setimes = 0;
818 if (utime(np, &ut) < 0)
5260325f 819 run_err("%s: set times: %s",
820 np, strerror(errno));
8efc0c15 821 }
822 if (mod_flag)
5260325f 823 (void) chmod(np, mode);
8efc0c15 824 continue;
825 }
826 omode = mode;
827 mode |= S_IWRITE;
5260325f 828 if ((ofd = open(np, O_WRONLY | O_CREAT | O_TRUNC, mode)) < 0) {
8efc0c15 829bad: run_err("%s: %s", np, strerror(errno));
830 continue;
831 }
3189621b 832 (void) atomicio(write, remout, "", 1);
8efc0c15 833 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
5260325f 834 (void) close(ofd);
8efc0c15 835 continue;
836 }
837 cp = bp->buf;
838 wrerr = NO;
839
840 if (showprogress) {
841 totalbytes = size;
842 progressmeter(-1);
843 }
844 statbytes = 0;
845 for (count = i = 0; i < size; i += 4096) {
846 amt = 4096;
847 if (i + amt > size)
848 amt = size - i;
849 count += amt;
850 do {
1d1ffb87 851 j = atomicio(read, remin, cp, amt);
8efc0c15 852 if (j <= 0) {
853 run_err("%s", j ? strerror(errno) :
5260325f 854 "dropped connection");
8efc0c15 855 exit(1);
856 }
857 amt -= j;
858 cp += j;
5260325f 859 statbytes += j;
8efc0c15 860 } while (amt > 0);
861 if (count == bp->cnt) {
862 /* Keep reading so we stay sync'd up. */
863 if (wrerr == NO) {
1d1ffb87 864 j = atomicio(write, ofd, bp->buf, count);
8efc0c15 865 if (j != count) {
866 wrerr = YES;
5260325f 867 wrerrno = j >= 0 ? EIO : errno;
8efc0c15 868 }
869 }
870 count = 0;
871 cp = bp->buf;
872 }
873 }
874 if (showprogress)
875 progressmeter(1);
876 if (count != 0 && wrerr == NO &&
1d1ffb87 877 (j = atomicio(write, ofd, bp->buf, count)) != count) {
8efc0c15 878 wrerr = YES;
5260325f 879 wrerrno = j >= 0 ? EIO : errno;
8efc0c15 880 }
881#if 0
882 if (ftruncate(ofd, size)) {
883 run_err("%s: truncate: %s", np, strerror(errno));
884 wrerr = DISPLAYED;
885 }
886#endif
887 if (pflag) {
888 if (exists || omode != mode)
889 if (fchmod(ofd, omode))
890 run_err("%s: set mode: %s",
5260325f 891 np, strerror(errno));
8efc0c15 892 } else {
893 if (!exists && omode != mode)
894 if (fchmod(ofd, omode & ~mask))
895 run_err("%s: set mode: %s",
5260325f 896 np, strerror(errno));
8efc0c15 897 }
704b1659 898 if (close(ofd) == -1) {
899 wrerr = YES;
900 wrerrno = errno;
901 }
5260325f 902 (void) response();
8efc0c15 903 if (setimes && wrerr == NO) {
904 setimes = 0;
905 if (utime(np, &ut) < 0) {
906 run_err("%s: set times: %s",
5260325f 907 np, strerror(errno));
8efc0c15 908 wrerr = DISPLAYED;
909 }
910 }
5260325f 911 switch (wrerr) {
8efc0c15 912 case YES:
913 run_err("%s: %s", np, strerror(wrerrno));
914 break;
915 case NO:
3189621b 916 (void) atomicio(write, remout, "", 1);
8efc0c15 917 break;
918 case DISPLAYED:
919 break;
920 }
921 }
922screwup:
923 run_err("protocol error: %s", why);
924 exit(1);
925}
926
927int
928response()
929{
930 char ch, *cp, resp, rbuf[2048];
931
1d1ffb87 932 if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
8efc0c15 933 lostconn(0);
934
935 cp = rbuf;
5260325f 936 switch (resp) {
937 case 0: /* ok */
8efc0c15 938 return (0);
939 default:
940 *cp++ = resp;
941 /* FALLTHROUGH */
5260325f 942 case 1: /* error, followed by error msg */
943 case 2: /* fatal error, "" */
8efc0c15 944 do {
1d1ffb87 945 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
8efc0c15 946 lostconn(0);
947 *cp++ = ch;
948 } while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
949
950 if (!iamremote)
3189621b 951 (void) atomicio(write, STDERR_FILENO, rbuf, cp - rbuf);
8efc0c15 952 ++errs;
953 if (resp == 1)
954 return (-1);
955 exit(1);
956 }
957 /* NOTREACHED */
958}
959
960void
961usage()
962{
2e73a022 963 (void) fprintf(stderr, "usage: scp "
964 "[-pqrvC46] [-S ssh] [-P port] [-c cipher] [-i identity] f1 f2; or:\n"
965 " scp [options] f1 ... fn directory\n");
8efc0c15 966 exit(1);
967}
968
969void
5260325f 970run_err(const char *fmt,...)
8efc0c15 971{
972 static FILE *fp;
973 va_list ap;
8efc0c15 974
975 ++errs;
976 if (fp == NULL && !(fp = fdopen(remout, "w")))
977 return;
5260325f 978 (void) fprintf(fp, "%c", 0x01);
979 (void) fprintf(fp, "scp: ");
b92964b7 980 va_start(ap, fmt);
5260325f 981 (void) vfprintf(fp, fmt, ap);
b92964b7 982 va_end(ap);
5260325f 983 (void) fprintf(fp, "\n");
984 (void) fflush(fp);
985
986 if (!iamremote) {
b92964b7 987 va_start(ap, fmt);
5260325f 988 vfprintf(stderr, fmt, ap);
b92964b7 989 va_end(ap);
5260325f 990 fprintf(stderr, "\n");
991 }
8efc0c15 992}
993
8efc0c15 994char *
995colon(cp)
996 char *cp;
997{
48e671d5 998 int flag = 0;
999
8efc0c15 1000 if (*cp == ':') /* Leading colon is part of file name. */
1001 return (0);
48e671d5 1002 if (*cp == '[')
1003 flag = 1;
8efc0c15 1004
1005 for (; *cp; ++cp) {
48e671d5 1006 if (*cp == '@' && *(cp+1) == '[')
1007 flag = 1;
1008 if (*cp == ']' && *(cp+1) == ':' && flag)
1009 return (cp+1);
1010 if (*cp == ':' && !flag)
8efc0c15 1011 return (cp);
1012 if (*cp == '/')
1013 return (0);
1014 }
1015 return (0);
1016}
1017
1018void
1019verifydir(cp)
1020 char *cp;
1021{
1022 struct stat stb;
1023
1024 if (!stat(cp, &stb)) {
1025 if (S_ISDIR(stb.st_mode))
1026 return;
1027 errno = ENOTDIR;
1028 }
1029 run_err("%s: %s", cp, strerror(errno));
1030 exit(1);
1031}
1032
1033int
1034okname(cp0)
1035 char *cp0;
1036{
1037 int c;
1038 char *cp;
1039
1040 cp = cp0;
1041 do {
1042 c = *cp;
1043 if (c & 0200)
1044 goto bad;
1045 if (!isalpha(c) && !isdigit(c) && c != '_' && c != '-')
1046 goto bad;
1047 } while (*++cp);
1048 return (1);
1049
c8d54615 1050bad: fprintf(stderr, "%s: invalid user name\n", cp0);
8efc0c15 1051 return (0);
1052}
1053
1054BUF *
1055allocbuf(bp, fd, blksize)
1056 BUF *bp;
1057 int fd, blksize;
1058{
1059 size_t size;
1060 struct stat stb;
1061
1062 if (fstat(fd, &stb) < 0) {
1063 run_err("fstat: %s", strerror(errno));
1064 return (0);
1065 }
5260325f 1066 if (stb.st_blksize == 0)
1067 size = blksize;
1068 else
1069 size = blksize + (stb.st_blksize - blksize % stb.st_blksize) %
2e73a022 1070 stb.st_blksize;
8efc0c15 1071 if (bp->cnt >= size)
1072 return (bp);
5260325f 1073 if (bp->buf == NULL)
1074 bp->buf = xmalloc(size);
1075 else
1076 bp->buf = xrealloc(bp->buf, size);
8efc0c15 1077 bp->cnt = size;
1078 return (bp);
1079}
1080
1081void
1082lostconn(signo)
1083 int signo;
1084{
1085 if (!iamremote)
1086 fprintf(stderr, "lost connection\n");
1087 exit(1);
1088}
1089
8efc0c15 1090
1091void
1092alarmtimer(int wait)
1093{
5260325f 1094 struct itimerval itv;
8efc0c15 1095
5260325f 1096 itv.it_value.tv_sec = wait;
1097 itv.it_value.tv_usec = 0;
1098 itv.it_interval = itv.it_value;
1099 setitimer(ITIMER_REAL, &itv, NULL);
8efc0c15 1100}
1101
1102void
610cd5c6 1103updateprogressmeter(int ignore)
8efc0c15 1104{
1105 int save_errno = errno;
1106
1107 progressmeter(0);
1108 errno = save_errno;
1109}
1110
2bd61362 1111int
1112foregroundproc()
1113{
1114 static pid_t pgrp = -1;
1115 int ctty_pgrp;
1116
1117 if (pgrp == -1)
1118 pgrp = getpgrp();
1119
3c62e7eb 1120#ifdef HAVE_CYGWIN
1121 /*
1122 * Cygwin only supports tcgetpgrp() for getting the controlling tty
1123 * currently.
1124 */
1125 return ((ctty_pgrp = tcgetpgrp(STDOUT_FILENO)) != -1 &&
1126 ctty_pgrp == pgrp);
1127#else
5260325f 1128 return ((ioctl(STDOUT_FILENO, TIOCGPGRP, &ctty_pgrp) != -1 &&
1129 ctty_pgrp == pgrp));
3c62e7eb 1130#endif
2bd61362 1131}
1132
8efc0c15 1133void
1134progressmeter(int flag)
1135{
1136 static const char prefixes[] = " KMGTP";
1137 static struct timeval lastupdate;
1138 static off_t lastsize;
1139 struct timeval now, td, wait;
1140 off_t cursize, abbrevsize;
1141 double elapsed;
b6573a35 1142 int ratio, barlength, i, remaining;
8efc0c15 1143 char buf[256];
1144
1145 if (flag == -1) {
5260325f 1146 (void) gettimeofday(&start, (struct timezone *) 0);
8efc0c15 1147 lastupdate = start;
1148 lastsize = 0;
5260325f 1149 }
2bd61362 1150 if (foregroundproc() == 0)
1151 return;
1152
5260325f 1153 (void) gettimeofday(&now, (struct timezone *) 0);
8efc0c15 1154 cursize = statbytes;
b4ad3727 1155 if (totalbytes != 0) {
aa3378df 1156 ratio = 100.0 * cursize / totalbytes;
8efc0c15 1157 ratio = MAX(ratio, 0);
1158 ratio = MIN(ratio, 100);
5260325f 1159 } else
8efc0c15 1160 ratio = 100;
1161
5260325f 1162 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
8efc0c15 1163
1164 barlength = getttywidth() - 51;
a4070484 1165 barlength = (barlength <= MAX_BARLENGTH)?barlength:MAX_BARLENGTH;
8efc0c15 1166 if (barlength > 0) {
1167 i = barlength * ratio / 100;
1168 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
a4070484 1169 "|%.*s%*s|", i, BAR, barlength - i, "");
8efc0c15 1170 }
8efc0c15 1171 i = 0;
1172 abbrevsize = cursize;
1173 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
1174 i++;
1175 abbrevsize >>= 10;
1176 }
68227e6d 1177 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
1178 (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
5260325f 1179 'B');
8efc0c15 1180
1181 timersub(&now, &lastupdate, &wait);
1182 if (cursize > lastsize) {
1183 lastupdate = now;
1184 lastsize = cursize;
1185 if (wait.tv_sec >= STALLTIME) {
1186 start.tv_sec += wait.tv_sec;
1187 start.tv_usec += wait.tv_usec;
1188 }
1189 wait.tv_sec = 0;
1190 }
8efc0c15 1191 timersub(&now, &start, &td);
1192 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
1193
1194 if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalbytes) {
1195 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
5260325f 1196 " --:-- ETA");
8efc0c15 1197 } else if (wait.tv_sec >= STALLTIME) {
1198 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
5260325f 1199 " - stalled -");
8efc0c15 1200 } else {
d6f24e45 1201 if (flag != 1)
1202 remaining =
1203 (int)(totalbytes / (statbytes / elapsed) - elapsed);
1204 else
1205 remaining = elapsed;
1206
5068f573 1207 i = remaining / 3600;
8efc0c15 1208 if (i)
1209 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
2e73a022 1210 "%2d:", i);
8efc0c15 1211 else
1212 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
2e73a022 1213 " ");
8efc0c15 1214 i = remaining % 3600;
1215 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
2e73a022 1216 "%02d:%02d%s", i / 60, i % 60,
1217 (flag != 1) ? " ETA" : " ");
8efc0c15 1218 }
1219 atomicio(write, fileno(stdout), buf, strlen(buf));
1220
1221 if (flag == -1) {
68227e6d 1222 struct sigaction sa;
1223 sa.sa_handler = updateprogressmeter;
84a770d1 1224 sigemptyset((sigset_t *)&sa.sa_mask);
c04f75f1 1225#ifdef SA_RESTART
68227e6d 1226 sa.sa_flags = SA_RESTART;
c04f75f1 1227#endif
68227e6d 1228 sigaction(SIGALRM, &sa, NULL);
8efc0c15 1229 alarmtimer(1);
1230 } else if (flag == 1) {
1231 alarmtimer(0);
3189621b 1232 atomicio(write, fileno(stdout), "\n", 1);
8efc0c15 1233 statbytes = 0;
1234 }
1235}
1236
1237int
1238getttywidth(void)
1239{
1240 struct winsize winsize;
1241
1242 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
5260325f 1243 return (winsize.ws_col ? winsize.ws_col : 80);
8efc0c15 1244 else
5260325f 1245 return (80);
8efc0c15 1246}
This page took 0.288716 seconds and 5 git commands to generate.