]> andersk Git - openssh.git/blame_incremental - scp.c
- stevesk@cvs.openbsd.org 2006/02/20 17:02:44
[openssh.git] / scp.c
... / ...
CommitLineData
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. Neither the name of the University nor the names of its contributors
56 * may be used to endorse or promote products derived from this software
57 * without specific prior written permission.
58 *
59 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
69 * SUCH DAMAGE.
70 *
71 */
72
73#include "includes.h"
74RCSID("$OpenBSD: scp.c,v 1.134 2006/02/20 17:19:54 stevesk Exp $");
75
76#include <sys/types.h>
77#ifdef HAVE_SYS_STAT_H
78# include <sys/stat.h>
79#endif
80#include <sys/wait.h>
81
82#include <dirent.h>
83
84#include "xmalloc.h"
85#include "atomicio.h"
86#include "pathnames.h"
87#include "log.h"
88#include "misc.h"
89#include "progressmeter.h"
90
91extern char *__progname;
92
93void bwlimit(int);
94
95/* Struct for addargs */
96arglist args;
97
98/* Bandwidth limit */
99off_t limit_rate = 0;
100
101/* Name of current file being transferred. */
102char *curfile;
103
104/* This is set to non-zero to enable verbose mode. */
105int verbose_mode = 0;
106
107/* This is set to zero if the progressmeter is not desired. */
108int showprogress = 1;
109
110/* This is the program to execute for the secured connection. ("ssh" or -S) */
111char *ssh_program = _PATH_SSH_PROGRAM;
112
113/* This is used to store the pid of ssh_program */
114pid_t do_cmd_pid = -1;
115
116static void
117killchild(int signo)
118{
119 if (do_cmd_pid > 1) {
120 kill(do_cmd_pid, signo ? signo : SIGTERM);
121 waitpid(do_cmd_pid, NULL, 0);
122 }
123
124 if (signo)
125 _exit(1);
126 exit(1);
127}
128
129static int
130do_local_cmd(arglist *a)
131{
132 u_int i;
133 int status;
134 pid_t pid;
135
136 if (a->num == 0)
137 fatal("do_local_cmd: no arguments");
138
139 if (verbose_mode) {
140 fprintf(stderr, "Executing:");
141 for (i = 0; i < a->num; i++)
142 fprintf(stderr, " %s", a->list[i]);
143 fprintf(stderr, "\n");
144 }
145 if ((pid = fork()) == -1)
146 fatal("do_local_cmd: fork: %s", strerror(errno));
147
148 if (pid == 0) {
149 execvp(a->list[0], a->list);
150 perror(a->list[0]);
151 exit(1);
152 }
153
154 do_cmd_pid = pid;
155 signal(SIGTERM, killchild);
156 signal(SIGINT, killchild);
157 signal(SIGHUP, killchild);
158
159 while (waitpid(pid, &status, 0) == -1)
160 if (errno != EINTR)
161 fatal("do_local_cmd: waitpid: %s", strerror(errno));
162
163 do_cmd_pid = -1;
164
165 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
166 return (-1);
167
168 return (0);
169}
170
171/*
172 * This function executes the given command as the specified user on the
173 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
174 * assigns the input and output file descriptors on success.
175 */
176
177int
178do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout, int argc)
179{
180 int pin[2], pout[2], reserved[2];
181
182 if (verbose_mode)
183 fprintf(stderr,
184 "Executing: program %s host %s, user %s, command %s\n",
185 ssh_program, host,
186 remuser ? remuser : "(unspecified)", cmd);
187
188 /*
189 * Reserve two descriptors so that the real pipes won't get
190 * descriptors 0 and 1 because that will screw up dup2 below.
191 */
192 pipe(reserved);
193
194 /* Create a socket pair for communicating with ssh. */
195 if (pipe(pin) < 0)
196 fatal("pipe: %s", strerror(errno));
197 if (pipe(pout) < 0)
198 fatal("pipe: %s", strerror(errno));
199
200 /* Free the reserved descriptors. */
201 close(reserved[0]);
202 close(reserved[1]);
203
204 /* Fork a child to execute the command on the remote host using ssh. */
205 do_cmd_pid = fork();
206 if (do_cmd_pid == 0) {
207 /* Child. */
208 close(pin[1]);
209 close(pout[0]);
210 dup2(pin[0], 0);
211 dup2(pout[1], 1);
212 close(pin[0]);
213 close(pout[1]);
214
215 replacearg(&args, 0, "%s", ssh_program);
216 if (remuser != NULL)
217 addargs(&args, "-l%s", remuser);
218 addargs(&args, "%s", host);
219 addargs(&args, "%s", cmd);
220
221 execvp(ssh_program, args.list);
222 perror(ssh_program);
223 exit(1);
224 } else if (do_cmd_pid == -1) {
225 fatal("fork: %s", strerror(errno));
226 }
227 /* Parent. Close the other side, and return the local side. */
228 close(pin[0]);
229 *fdout = pin[1];
230 close(pout[1]);
231 *fdin = pout[0];
232 signal(SIGTERM, killchild);
233 signal(SIGINT, killchild);
234 signal(SIGHUP, killchild);
235 return 0;
236}
237
238typedef struct {
239 size_t cnt;
240 char *buf;
241} BUF;
242
243BUF *allocbuf(BUF *, int, int);
244void lostconn(int);
245void nospace(void);
246int okname(char *);
247void run_err(const char *,...);
248void verifydir(char *);
249
250struct passwd *pwd;
251uid_t userid;
252int errs, remin, remout;
253int pflag, iamremote, iamrecursive, targetshouldbedirectory;
254
255#define CMDNEEDS 64
256char cmd[CMDNEEDS]; /* must hold "rcp -r -p -d\0" */
257
258int response(void);
259void rsource(char *, struct stat *);
260void sink(int, char *[]);
261void source(int, char *[]);
262void tolocal(int, char *[]);
263void toremote(char *, int, char *[]);
264void usage(void);
265
266int
267main(int argc, char **argv)
268{
269 int ch, fflag, tflag, status;
270 double speed;
271 char *targ, *endp;
272 extern char *optarg;
273 extern int optind;
274
275 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
276 sanitise_stdfd();
277
278 __progname = ssh_get_progname(argv[0]);
279
280 memset(&args, '\0', sizeof(args));
281 args.list = NULL;
282 addargs(&args, "%s", ssh_program);
283 addargs(&args, "-x");
284 addargs(&args, "-oForwardAgent no");
285 addargs(&args, "-oPermitLocalCommand no");
286 addargs(&args, "-oClearAllForwardings yes");
287
288 fflag = tflag = 0;
289 while ((ch = getopt(argc, argv, "dfl:prtvBCc:i:P:q1246S:o:F:")) != -1)
290 switch (ch) {
291 /* User-visible flags. */
292 case '1':
293 case '2':
294 case '4':
295 case '6':
296 case 'C':
297 addargs(&args, "-%c", ch);
298 break;
299 case 'o':
300 case 'c':
301 case 'i':
302 case 'F':
303 addargs(&args, "-%c%s", ch, optarg);
304 break;
305 case 'P':
306 addargs(&args, "-p%s", optarg);
307 break;
308 case 'B':
309 addargs(&args, "-oBatchmode yes");
310 break;
311 case 'l':
312 speed = strtod(optarg, &endp);
313 if (speed <= 0 || *endp != '\0')
314 usage();
315 limit_rate = speed * 1024;
316 break;
317 case 'p':
318 pflag = 1;
319 break;
320 case 'r':
321 iamrecursive = 1;
322 break;
323 case 'S':
324 ssh_program = xstrdup(optarg);
325 break;
326 case 'v':
327 addargs(&args, "-v");
328 verbose_mode = 1;
329 break;
330 case 'q':
331 addargs(&args, "-q");
332 showprogress = 0;
333 break;
334
335 /* Server options. */
336 case 'd':
337 targetshouldbedirectory = 1;
338 break;
339 case 'f': /* "from" */
340 iamremote = 1;
341 fflag = 1;
342 break;
343 case 't': /* "to" */
344 iamremote = 1;
345 tflag = 1;
346#ifdef HAVE_CYGWIN
347 setmode(0, O_BINARY);
348#endif
349 break;
350 default:
351 usage();
352 }
353 argc -= optind;
354 argv += optind;
355
356 if ((pwd = getpwuid(userid = getuid())) == NULL)
357 fatal("unknown user %u", (u_int) userid);
358
359 if (!isatty(STDERR_FILENO))
360 showprogress = 0;
361
362 remin = STDIN_FILENO;
363 remout = STDOUT_FILENO;
364
365 if (fflag) {
366 /* Follow "protocol", send data. */
367 (void) response();
368 source(argc, argv);
369 exit(errs != 0);
370 }
371 if (tflag) {
372 /* Receive data. */
373 sink(argc, argv);
374 exit(errs != 0);
375 }
376 if (argc < 2)
377 usage();
378 if (argc > 2)
379 targetshouldbedirectory = 1;
380
381 remin = remout = -1;
382 do_cmd_pid = -1;
383 /* Command to be executed on remote system using "ssh". */
384 (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
385 verbose_mode ? " -v" : "",
386 iamrecursive ? " -r" : "", pflag ? " -p" : "",
387 targetshouldbedirectory ? " -d" : "");
388
389 (void) signal(SIGPIPE, lostconn);
390
391 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
392 toremote(targ, argc, argv);
393 else {
394 if (targetshouldbedirectory)
395 verifydir(argv[argc - 1]);
396 tolocal(argc, argv); /* Dest is local host. */
397 }
398 /*
399 * Finally check the exit status of the ssh process, if one was forked
400 * and no error has occured yet
401 */
402 if (do_cmd_pid != -1 && errs == 0) {
403 if (remin != -1)
404 (void) close(remin);
405 if (remout != -1)
406 (void) close(remout);
407 if (waitpid(do_cmd_pid, &status, 0) == -1)
408 errs = 1;
409 else {
410 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
411 errs = 1;
412 }
413 }
414 exit(errs != 0);
415}
416
417void
418toremote(char *targ, int argc, char **argv)
419{
420 int i, len;
421 char *bp, *host, *src, *suser, *thost, *tuser, *arg;
422 arglist alist;
423
424 memset(&alist, '\0', sizeof(alist));
425 alist.list = NULL;
426
427 *targ++ = 0;
428 if (*targ == 0)
429 targ = ".";
430
431 arg = xstrdup(argv[argc - 1]);
432 if ((thost = strrchr(arg, '@'))) {
433 /* user@host */
434 *thost++ = 0;
435 tuser = arg;
436 if (*tuser == '\0')
437 tuser = NULL;
438 } else {
439 thost = arg;
440 tuser = NULL;
441 }
442
443 if (tuser != NULL && !okname(tuser)) {
444 xfree(arg);
445 return;
446 }
447
448 for (i = 0; i < argc - 1; i++) {
449 src = colon(argv[i]);
450 if (src) { /* remote to remote */
451 freeargs(&alist);
452 addargs(&alist, "%s", ssh_program);
453 if (verbose_mode)
454 addargs(&alist, "-v");
455 addargs(&alist, "-x");
456 addargs(&alist, "-oClearAllForwardings yes");
457 addargs(&alist, "-n");
458
459 *src++ = 0;
460 if (*src == 0)
461 src = ".";
462 host = strrchr(argv[i], '@');
463
464 if (host) {
465 *host++ = 0;
466 host = cleanhostname(host);
467 suser = argv[i];
468 if (*suser == '\0')
469 suser = pwd->pw_name;
470 else if (!okname(suser))
471 continue;
472 addargs(&alist, "-l");
473 addargs(&alist, "%s", suser);
474 } else {
475 host = cleanhostname(argv[i]);
476 }
477 addargs(&alist, "%s", host);
478 addargs(&alist, "%s", cmd);
479 addargs(&alist, "%s", src);
480 addargs(&alist, "%s%s%s:%s",
481 tuser ? tuser : "", tuser ? "@" : "",
482 thost, targ);
483 if (do_local_cmd(&alist) != 0)
484 errs = 1;
485 } else { /* local to remote */
486 if (remin == -1) {
487 len = strlen(targ) + CMDNEEDS + 20;
488 bp = xmalloc(len);
489 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
490 host = cleanhostname(thost);
491 if (do_cmd(host, tuser, bp, &remin,
492 &remout, argc) < 0)
493 exit(1);
494 if (response() < 0)
495 exit(1);
496 (void) xfree(bp);
497 }
498 source(1, argv + i);
499 }
500 }
501}
502
503void
504tolocal(int argc, char **argv)
505{
506 int i, len;
507 char *bp, *host, *src, *suser;
508 arglist alist;
509
510 memset(&alist, '\0', sizeof(alist));
511 alist.list = NULL;
512
513 for (i = 0; i < argc - 1; i++) {
514 if (!(src = colon(argv[i]))) { /* Local to local. */
515 freeargs(&alist);
516 addargs(&alist, "%s", _PATH_CP);
517 if (iamrecursive)
518 addargs(&alist, "-r");
519 if (pflag)
520 addargs(&alist, "-p");
521 addargs(&alist, "%s", argv[i]);
522 addargs(&alist, "%s", argv[argc-1]);
523 if (do_local_cmd(&alist))
524 ++errs;
525 continue;
526 }
527 *src++ = 0;
528 if (*src == 0)
529 src = ".";
530 if ((host = strrchr(argv[i], '@')) == NULL) {
531 host = argv[i];
532 suser = NULL;
533 } else {
534 *host++ = 0;
535 suser = argv[i];
536 if (*suser == '\0')
537 suser = pwd->pw_name;
538 }
539 host = cleanhostname(host);
540 len = strlen(src) + CMDNEEDS + 20;
541 bp = xmalloc(len);
542 (void) snprintf(bp, len, "%s -f %s", cmd, src);
543 if (do_cmd(host, suser, bp, &remin, &remout, argc) < 0) {
544 (void) xfree(bp);
545 ++errs;
546 continue;
547 }
548 xfree(bp);
549 sink(1, argv + argc - 1);
550 (void) close(remin);
551 remin = remout = -1;
552 }
553}
554
555void
556source(int argc, char **argv)
557{
558 struct stat stb;
559 static BUF buffer;
560 BUF *bp;
561 off_t i, amt, statbytes;
562 size_t result;
563 int fd = -1, haderr, indx;
564 char *last, *name, buf[2048];
565 int len;
566
567 for (indx = 0; indx < argc; ++indx) {
568 name = argv[indx];
569 statbytes = 0;
570 len = strlen(name);
571 while (len > 1 && name[len-1] == '/')
572 name[--len] = '\0';
573 if (strchr(name, '\n') != NULL) {
574 run_err("%s: skipping, filename contains a newline",
575 name);
576 goto next;
577 }
578 if ((fd = open(name, O_RDONLY, 0)) < 0)
579 goto syserr;
580 if (fstat(fd, &stb) < 0) {
581syserr: run_err("%s: %s", name, strerror(errno));
582 goto next;
583 }
584 switch (stb.st_mode & S_IFMT) {
585 case S_IFREG:
586 break;
587 case S_IFDIR:
588 if (iamrecursive) {
589 rsource(name, &stb);
590 goto next;
591 }
592 /* FALLTHROUGH */
593 default:
594 run_err("%s: not a regular file", name);
595 goto next;
596 }
597 if ((last = strrchr(name, '/')) == NULL)
598 last = name;
599 else
600 ++last;
601 curfile = last;
602 if (pflag) {
603 /*
604 * Make it compatible with possible future
605 * versions expecting microseconds.
606 */
607 (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
608 (u_long) stb.st_mtime,
609 (u_long) stb.st_atime);
610 (void) atomicio(vwrite, remout, buf, strlen(buf));
611 if (response() < 0)
612 goto next;
613 }
614#define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
615 snprintf(buf, sizeof buf, "C%04o %lld %s\n",
616 (u_int) (stb.st_mode & FILEMODEMASK),
617 (long long)stb.st_size, last);
618 if (verbose_mode) {
619 fprintf(stderr, "Sending file modes: %s", buf);
620 }
621 (void) atomicio(vwrite, remout, buf, strlen(buf));
622 if (response() < 0)
623 goto next;
624 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
625next: if (fd != -1) {
626 (void) close(fd);
627 fd = -1;
628 }
629 continue;
630 }
631 if (showprogress)
632 start_progress_meter(curfile, stb.st_size, &statbytes);
633 /* Keep writing after an error so that we stay sync'd up. */
634 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
635 amt = bp->cnt;
636 if (i + amt > stb.st_size)
637 amt = stb.st_size - i;
638 if (!haderr) {
639 result = atomicio(read, fd, bp->buf, amt);
640 if (result != amt)
641 haderr = errno;
642 }
643 if (haderr)
644 (void) atomicio(vwrite, remout, bp->buf, amt);
645 else {
646 result = atomicio(vwrite, remout, bp->buf, amt);
647 if (result != amt)
648 haderr = errno;
649 statbytes += result;
650 }
651 if (limit_rate)
652 bwlimit(amt);
653 }
654 if (showprogress)
655 stop_progress_meter();
656
657 if (fd != -1) {
658 if (close(fd) < 0 && !haderr)
659 haderr = errno;
660 fd = -1;
661 }
662 if (!haderr)
663 (void) atomicio(vwrite, remout, "", 1);
664 else
665 run_err("%s: %s", name, strerror(haderr));
666 (void) response();
667 }
668}
669
670void
671rsource(char *name, struct stat *statp)
672{
673 DIR *dirp;
674 struct dirent *dp;
675 char *last, *vect[1], path[1100];
676
677 if (!(dirp = opendir(name))) {
678 run_err("%s: %s", name, strerror(errno));
679 return;
680 }
681 last = strrchr(name, '/');
682 if (last == 0)
683 last = name;
684 else
685 last++;
686 if (pflag) {
687 (void) snprintf(path, sizeof(path), "T%lu 0 %lu 0\n",
688 (u_long) statp->st_mtime,
689 (u_long) statp->st_atime);
690 (void) atomicio(vwrite, remout, path, strlen(path));
691 if (response() < 0) {
692 closedir(dirp);
693 return;
694 }
695 }
696 (void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
697 (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
698 if (verbose_mode)
699 fprintf(stderr, "Entering directory: %s", path);
700 (void) atomicio(vwrite, remout, path, strlen(path));
701 if (response() < 0) {
702 closedir(dirp);
703 return;
704 }
705 while ((dp = readdir(dirp)) != NULL) {
706 if (dp->d_ino == 0)
707 continue;
708 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
709 continue;
710 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
711 run_err("%s/%s: name too long", name, dp->d_name);
712 continue;
713 }
714 (void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
715 vect[0] = path;
716 source(1, vect);
717 }
718 (void) closedir(dirp);
719 (void) atomicio(vwrite, remout, "E\n", 2);
720 (void) response();
721}
722
723void
724bwlimit(int amount)
725{
726 static struct timeval bwstart, bwend;
727 static int lamt, thresh = 16384;
728 u_int64_t waitlen;
729 struct timespec ts, rm;
730
731 if (!timerisset(&bwstart)) {
732 gettimeofday(&bwstart, NULL);
733 return;
734 }
735
736 lamt += amount;
737 if (lamt < thresh)
738 return;
739
740 gettimeofday(&bwend, NULL);
741 timersub(&bwend, &bwstart, &bwend);
742 if (!timerisset(&bwend))
743 return;
744
745 lamt *= 8;
746 waitlen = (double)1000000L * lamt / limit_rate;
747
748 bwstart.tv_sec = waitlen / 1000000L;
749 bwstart.tv_usec = waitlen % 1000000L;
750
751 if (timercmp(&bwstart, &bwend, >)) {
752 timersub(&bwstart, &bwend, &bwend);
753
754 /* Adjust the wait time */
755 if (bwend.tv_sec) {
756 thresh /= 2;
757 if (thresh < 2048)
758 thresh = 2048;
759 } else if (bwend.tv_usec < 100) {
760 thresh *= 2;
761 if (thresh > 32768)
762 thresh = 32768;
763 }
764
765 TIMEVAL_TO_TIMESPEC(&bwend, &ts);
766 while (nanosleep(&ts, &rm) == -1) {
767 if (errno != EINTR)
768 break;
769 ts = rm;
770 }
771 }
772
773 lamt = 0;
774 gettimeofday(&bwstart, NULL);
775}
776
777void
778sink(int argc, char **argv)
779{
780 static BUF buffer;
781 struct stat stb;
782 enum {
783 YES, NO, DISPLAYED
784 } wrerr;
785 BUF *bp;
786 off_t i;
787 size_t j, count;
788 int amt, exists, first, mask, mode, ofd, omode;
789 off_t size, statbytes;
790 int setimes, targisdir, wrerrno = 0;
791 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
792 struct timeval tv[2];
793
794#define atime tv[0]
795#define mtime tv[1]
796#define SCREWUP(str) { why = str; goto screwup; }
797
798 setimes = targisdir = 0;
799 mask = umask(0);
800 if (!pflag)
801 (void) umask(mask);
802 if (argc != 1) {
803 run_err("ambiguous target");
804 exit(1);
805 }
806 targ = *argv;
807 if (targetshouldbedirectory)
808 verifydir(targ);
809
810 (void) atomicio(vwrite, remout, "", 1);
811 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
812 targisdir = 1;
813 for (first = 1;; first = 0) {
814 cp = buf;
815 if (atomicio(read, remin, cp, 1) != 1)
816 return;
817 if (*cp++ == '\n')
818 SCREWUP("unexpected <newline>");
819 do {
820 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
821 SCREWUP("lost connection");
822 *cp++ = ch;
823 } while (cp < &buf[sizeof(buf) - 1] && ch != '\n');
824 *cp = 0;
825 if (verbose_mode)
826 fprintf(stderr, "Sink: %s", buf);
827
828 if (buf[0] == '\01' || buf[0] == '\02') {
829 if (iamremote == 0)
830 (void) atomicio(vwrite, STDERR_FILENO,
831 buf + 1, strlen(buf + 1));
832 if (buf[0] == '\02')
833 exit(1);
834 ++errs;
835 continue;
836 }
837 if (buf[0] == 'E') {
838 (void) atomicio(vwrite, remout, "", 1);
839 return;
840 }
841 if (ch == '\n')
842 *--cp = 0;
843
844 cp = buf;
845 if (*cp == 'T') {
846 setimes++;
847 cp++;
848 mtime.tv_sec = strtol(cp, &cp, 10);
849 if (!cp || *cp++ != ' ')
850 SCREWUP("mtime.sec not delimited");
851 mtime.tv_usec = strtol(cp, &cp, 10);
852 if (!cp || *cp++ != ' ')
853 SCREWUP("mtime.usec not delimited");
854 atime.tv_sec = strtol(cp, &cp, 10);
855 if (!cp || *cp++ != ' ')
856 SCREWUP("atime.sec not delimited");
857 atime.tv_usec = strtol(cp, &cp, 10);
858 if (!cp || *cp++ != '\0')
859 SCREWUP("atime.usec not delimited");
860 (void) atomicio(vwrite, remout, "", 1);
861 continue;
862 }
863 if (*cp != 'C' && *cp != 'D') {
864 /*
865 * Check for the case "rcp remote:foo\* local:bar".
866 * In this case, the line "No match." can be returned
867 * by the shell before the rcp command on the remote is
868 * executed so the ^Aerror_message convention isn't
869 * followed.
870 */
871 if (first) {
872 run_err("%s", cp);
873 exit(1);
874 }
875 SCREWUP("expected control record");
876 }
877 mode = 0;
878 for (++cp; cp < buf + 5; cp++) {
879 if (*cp < '0' || *cp > '7')
880 SCREWUP("bad mode");
881 mode = (mode << 3) | (*cp - '0');
882 }
883 if (*cp++ != ' ')
884 SCREWUP("mode not delimited");
885
886 for (size = 0; isdigit(*cp);)
887 size = size * 10 + (*cp++ - '0');
888 if (*cp++ != ' ')
889 SCREWUP("size not delimited");
890 if ((strchr(cp, '/') != NULL) || (strcmp(cp, "..") == 0)) {
891 run_err("error: unexpected filename: %s", cp);
892 exit(1);
893 }
894 if (targisdir) {
895 static char *namebuf;
896 static size_t cursize;
897 size_t need;
898
899 need = strlen(targ) + strlen(cp) + 250;
900 if (need > cursize) {
901 if (namebuf)
902 xfree(namebuf);
903 namebuf = xmalloc(need);
904 cursize = need;
905 }
906 (void) snprintf(namebuf, need, "%s%s%s", targ,
907 strcmp(targ, "/") ? "/" : "", cp);
908 np = namebuf;
909 } else
910 np = targ;
911 curfile = cp;
912 exists = stat(np, &stb) == 0;
913 if (buf[0] == 'D') {
914 int mod_flag = pflag;
915 if (!iamrecursive)
916 SCREWUP("received directory without -r");
917 if (exists) {
918 if (!S_ISDIR(stb.st_mode)) {
919 errno = ENOTDIR;
920 goto bad;
921 }
922 if (pflag)
923 (void) chmod(np, mode);
924 } else {
925 /* Handle copying from a read-only
926 directory */
927 mod_flag = 1;
928 if (mkdir(np, mode | S_IRWXU) < 0)
929 goto bad;
930 }
931 vect[0] = xstrdup(np);
932 sink(1, vect);
933 if (setimes) {
934 setimes = 0;
935 if (utimes(vect[0], tv) < 0)
936 run_err("%s: set times: %s",
937 vect[0], strerror(errno));
938 }
939 if (mod_flag)
940 (void) chmod(vect[0], mode);
941 if (vect[0])
942 xfree(vect[0]);
943 continue;
944 }
945 omode = mode;
946 mode |= S_IWRITE;
947 if ((ofd = open(np, O_WRONLY|O_CREAT, mode)) < 0) {
948bad: run_err("%s: %s", np, strerror(errno));
949 continue;
950 }
951 (void) atomicio(vwrite, remout, "", 1);
952 if ((bp = allocbuf(&buffer, ofd, 4096)) == NULL) {
953 (void) close(ofd);
954 continue;
955 }
956 cp = bp->buf;
957 wrerr = NO;
958
959 statbytes = 0;
960 if (showprogress)
961 start_progress_meter(curfile, size, &statbytes);
962 for (count = i = 0; i < size; i += 4096) {
963 amt = 4096;
964 if (i + amt > size)
965 amt = size - i;
966 count += amt;
967 do {
968 j = atomicio(read, remin, cp, amt);
969 if (j == 0) {
970 run_err("%s", j ? strerror(errno) :
971 "dropped connection");
972 exit(1);
973 }
974 amt -= j;
975 cp += j;
976 statbytes += j;
977 } while (amt > 0);
978
979 if (limit_rate)
980 bwlimit(4096);
981
982 if (count == bp->cnt) {
983 /* Keep reading so we stay sync'd up. */
984 if (wrerr == NO) {
985 if (atomicio(vwrite, ofd, bp->buf,
986 count) != count) {
987 wrerr = YES;
988 wrerrno = errno;
989 }
990 }
991 count = 0;
992 cp = bp->buf;
993 }
994 }
995 if (showprogress)
996 stop_progress_meter();
997 if (count != 0 && wrerr == NO &&
998 atomicio(vwrite, ofd, bp->buf, count) != count) {
999 wrerr = YES;
1000 wrerrno = errno;
1001 }
1002 if (wrerr == NO && ftruncate(ofd, size) != 0) {
1003 run_err("%s: truncate: %s", np, strerror(errno));
1004 wrerr = DISPLAYED;
1005 }
1006 if (pflag) {
1007 if (exists || omode != mode)
1008#ifdef HAVE_FCHMOD
1009 if (fchmod(ofd, omode)) {
1010#else /* HAVE_FCHMOD */
1011 if (chmod(np, omode)) {
1012#endif /* HAVE_FCHMOD */
1013 run_err("%s: set mode: %s",
1014 np, strerror(errno));
1015 wrerr = DISPLAYED;
1016 }
1017 } else {
1018 if (!exists && omode != mode)
1019#ifdef HAVE_FCHMOD
1020 if (fchmod(ofd, omode & ~mask)) {
1021#else /* HAVE_FCHMOD */
1022 if (chmod(np, omode & ~mask)) {
1023#endif /* HAVE_FCHMOD */
1024 run_err("%s: set mode: %s",
1025 np, strerror(errno));
1026 wrerr = DISPLAYED;
1027 }
1028 }
1029 if (close(ofd) == -1) {
1030 wrerr = YES;
1031 wrerrno = errno;
1032 }
1033 (void) response();
1034 if (setimes && wrerr == NO) {
1035 setimes = 0;
1036 if (utimes(np, tv) < 0) {
1037 run_err("%s: set times: %s",
1038 np, strerror(errno));
1039 wrerr = DISPLAYED;
1040 }
1041 }
1042 switch (wrerr) {
1043 case YES:
1044 run_err("%s: %s", np, strerror(wrerrno));
1045 break;
1046 case NO:
1047 (void) atomicio(vwrite, remout, "", 1);
1048 break;
1049 case DISPLAYED:
1050 break;
1051 }
1052 }
1053screwup:
1054 run_err("protocol error: %s", why);
1055 exit(1);
1056}
1057
1058int
1059response(void)
1060{
1061 char ch, *cp, resp, rbuf[2048];
1062
1063 if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
1064 lostconn(0);
1065
1066 cp = rbuf;
1067 switch (resp) {
1068 case 0: /* ok */
1069 return (0);
1070 default:
1071 *cp++ = resp;
1072 /* FALLTHROUGH */
1073 case 1: /* error, followed by error msg */
1074 case 2: /* fatal error, "" */
1075 do {
1076 if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
1077 lostconn(0);
1078 *cp++ = ch;
1079 } while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
1080
1081 if (!iamremote)
1082 (void) atomicio(vwrite, STDERR_FILENO, rbuf, cp - rbuf);
1083 ++errs;
1084 if (resp == 1)
1085 return (-1);
1086 exit(1);
1087 }
1088 /* NOTREACHED */
1089}
1090
1091void
1092usage(void)
1093{
1094 (void) fprintf(stderr,
1095 "usage: scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]\n"
1096 " [-l limit] [-o ssh_option] [-P port] [-S program]\n"
1097 " [[user@]host1:]file1 [...] [[user@]host2:]file2\n");
1098 exit(1);
1099}
1100
1101void
1102run_err(const char *fmt,...)
1103{
1104 static FILE *fp;
1105 va_list ap;
1106
1107 ++errs;
1108 if (fp == NULL && !(fp = fdopen(remout, "w")))
1109 return;
1110 (void) fprintf(fp, "%c", 0x01);
1111 (void) fprintf(fp, "scp: ");
1112 va_start(ap, fmt);
1113 (void) vfprintf(fp, fmt, ap);
1114 va_end(ap);
1115 (void) fprintf(fp, "\n");
1116 (void) fflush(fp);
1117
1118 if (!iamremote) {
1119 va_start(ap, fmt);
1120 vfprintf(stderr, fmt, ap);
1121 va_end(ap);
1122 fprintf(stderr, "\n");
1123 }
1124}
1125
1126void
1127verifydir(char *cp)
1128{
1129 struct stat stb;
1130
1131 if (!stat(cp, &stb)) {
1132 if (S_ISDIR(stb.st_mode))
1133 return;
1134 errno = ENOTDIR;
1135 }
1136 run_err("%s: %s", cp, strerror(errno));
1137 killchild(0);
1138}
1139
1140int
1141okname(char *cp0)
1142{
1143 int c;
1144 char *cp;
1145
1146 cp = cp0;
1147 do {
1148 c = (int)*cp;
1149 if (c & 0200)
1150 goto bad;
1151 if (!isalpha(c) && !isdigit(c)) {
1152 switch (c) {
1153 case '\'':
1154 case '"':
1155 case '`':
1156 case ' ':
1157 case '#':
1158 goto bad;
1159 default:
1160 break;
1161 }
1162 }
1163 } while (*++cp);
1164 return (1);
1165
1166bad: fprintf(stderr, "%s: invalid user name\n", cp0);
1167 return (0);
1168}
1169
1170BUF *
1171allocbuf(BUF *bp, int fd, int blksize)
1172{
1173 size_t size;
1174#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1175 struct stat stb;
1176
1177 if (fstat(fd, &stb) < 0) {
1178 run_err("fstat: %s", strerror(errno));
1179 return (0);
1180 }
1181 size = roundup(stb.st_blksize, blksize);
1182 if (size == 0)
1183 size = blksize;
1184#else /* HAVE_STRUCT_STAT_ST_BLKSIZE */
1185 size = blksize;
1186#endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
1187 if (bp->cnt >= size)
1188 return (bp);
1189 if (bp->buf == NULL)
1190 bp->buf = xmalloc(size);
1191 else
1192 bp->buf = xrealloc(bp->buf, size);
1193 memset(bp->buf, 0, size);
1194 bp->cnt = size;
1195 return (bp);
1196}
1197
1198void
1199lostconn(int signo)
1200{
1201 if (!iamremote)
1202 write(STDERR_FILENO, "lost connection\n", 16);
1203 if (signo)
1204 _exit(1);
1205 else
1206 exit(1);
1207}
This page took 0.051999 seconds and 5 git commands to generate.