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