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