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