]> andersk Git - openssh.git/blob - scp.c
- djm@cvs.openbsd.org 2006/04/01 05:50:29
[openssh.git] / scp.c
1 /* $OpenBSD: scp.c,v 1.141 2006/04/01 05:50:29 djm 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 <signal.h>
85
86 #include "xmalloc.h"
87 #include "atomicio.h"
88 #include "pathnames.h"
89 #include "log.h"
90 #include "misc.h"
91 #include "progressmeter.h"
92
93 extern char *__progname;
94
95 int do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout);
96
97 void bwlimit(int);
98
99 /* Struct for addargs */
100 arglist args;
101
102 /* Bandwidth limit */
103 off_t limit_rate = 0;
104
105 /* Name of current file being transferred. */
106 char *curfile;
107
108 /* This is set to non-zero to enable verbose mode. */
109 int verbose_mode = 0;
110
111 /* This is set to zero if the progressmeter is not desired. */
112 int showprogress = 1;
113
114 /* This is the program to execute for the secured connection. ("ssh" or -S) */
115 char *ssh_program = _PATH_SSH_PROGRAM;
116
117 /* This is used to store the pid of ssh_program */
118 pid_t do_cmd_pid = -1;
119
120 static void
121 killchild(int signo)
122 {
123         if (do_cmd_pid > 1) {
124                 kill(do_cmd_pid, signo ? signo : SIGTERM);
125                 waitpid(do_cmd_pid, NULL, 0);
126         }
127
128         if (signo)
129                 _exit(1);
130         exit(1);
131 }
132
133 static int
134 do_local_cmd(arglist *a)
135 {
136         u_int i;
137         int status;
138         pid_t pid;
139
140         if (a->num == 0)
141                 fatal("do_local_cmd: no arguments");
142
143         if (verbose_mode) {
144                 fprintf(stderr, "Executing:");
145                 for (i = 0; i < a->num; i++)
146                         fprintf(stderr, " %s", a->list[i]);
147                 fprintf(stderr, "\n");
148         }
149         if ((pid = fork()) == -1)
150                 fatal("do_local_cmd: fork: %s", strerror(errno));
151
152         if (pid == 0) {
153                 execvp(a->list[0], a->list);
154                 perror(a->list[0]);
155                 exit(1);
156         }
157
158         do_cmd_pid = pid;
159         signal(SIGTERM, killchild);
160         signal(SIGINT, killchild);
161         signal(SIGHUP, killchild);
162
163         while (waitpid(pid, &status, 0) == -1)
164                 if (errno != EINTR)
165                         fatal("do_local_cmd: waitpid: %s", strerror(errno));
166
167         do_cmd_pid = -1;
168
169         if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
170                 return (-1);
171
172         return (0);
173 }
174
175 /*
176  * This function executes the given command as the specified user on the
177  * given host.  This returns < 0 if execution fails, and >= 0 otherwise. This
178  * assigns the input and output file descriptors on success.
179  */
180
181 int
182 do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout)
183 {
184         int pin[2], pout[2], reserved[2];
185
186         if (verbose_mode)
187                 fprintf(stderr,
188                     "Executing: program %s host %s, user %s, command %s\n",
189                     ssh_program, host,
190                     remuser ? remuser : "(unspecified)", cmd);
191
192         /*
193          * Reserve two descriptors so that the real pipes won't get
194          * descriptors 0 and 1 because that will screw up dup2 below.
195          */
196         pipe(reserved);
197
198         /* Create a socket pair for communicating with ssh. */
199         if (pipe(pin) < 0)
200                 fatal("pipe: %s", strerror(errno));
201         if (pipe(pout) < 0)
202                 fatal("pipe: %s", strerror(errno));
203
204         /* Free the reserved descriptors. */
205         close(reserved[0]);
206         close(reserved[1]);
207
208         /* Fork a child to execute the command on the remote host using ssh. */
209         do_cmd_pid = fork();
210         if (do_cmd_pid == 0) {
211                 /* Child. */
212                 close(pin[1]);
213                 close(pout[0]);
214                 dup2(pin[0], 0);
215                 dup2(pout[1], 1);
216                 close(pin[0]);
217                 close(pout[1]);
218
219                 replacearg(&args, 0, "%s", ssh_program);
220                 if (remuser != NULL)
221                         addargs(&args, "-l%s", remuser);
222                 addargs(&args, "%s", host);
223                 addargs(&args, "%s", cmd);
224
225                 execvp(ssh_program, args.list);
226                 perror(ssh_program);
227                 exit(1);
228         } else if (do_cmd_pid == -1) {
229                 fatal("fork: %s", strerror(errno));
230         }
231         /* Parent.  Close the other side, and return the local side. */
232         close(pin[0]);
233         *fdout = pin[1];
234         close(pout[1]);
235         *fdin = pout[0];
236         signal(SIGTERM, killchild);
237         signal(SIGINT, killchild);
238         signal(SIGHUP, killchild);
239         return 0;
240 }
241
242 typedef struct {
243         size_t cnt;
244         char *buf;
245 } BUF;
246
247 BUF *allocbuf(BUF *, int, int);
248 void lostconn(int);
249 int okname(char *);
250 void run_err(const char *,...);
251 void verifydir(char *);
252
253 struct passwd *pwd;
254 uid_t userid;
255 int errs, remin, remout;
256 int pflag, iamremote, iamrecursive, targetshouldbedirectory;
257
258 #define CMDNEEDS        64
259 char cmd[CMDNEEDS];             /* must hold "rcp -r -p -d\0" */
260
261 int response(void);
262 void rsource(char *, struct stat *);
263 void sink(int, char *[]);
264 void source(int, char *[]);
265 void tolocal(int, char *[]);
266 void toremote(char *, int, char *[]);
267 void usage(void);
268
269 int
270 main(int argc, char **argv)
271 {
272         int ch, fflag, tflag, status;
273         double speed;
274         char *targ, *endp;
275         extern char *optarg;
276         extern int optind;
277
278         /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
279         sanitise_stdfd();
280
281         __progname = ssh_get_progname(argv[0]);
282
283         memset(&args, '\0', sizeof(args));
284         args.list = NULL;
285         addargs(&args, "%s", ssh_program);
286         addargs(&args, "-x");
287         addargs(&args, "-oForwardAgent no");
288         addargs(&args, "-oPermitLocalCommand no");
289         addargs(&args, "-oClearAllForwardings yes");
290
291         fflag = tflag = 0;
292         while ((ch = getopt(argc, argv, "dfl:prtvBCc:i:P:q1246S:o:F:")) != -1)
293                 switch (ch) {
294                 /* User-visible flags. */
295                 case '1':
296                 case '2':
297                 case '4':
298                 case '6':
299                 case 'C':
300                         addargs(&args, "-%c", ch);
301                         break;
302                 case 'o':
303                 case 'c':
304                 case 'i':
305                 case 'F':
306                         addargs(&args, "-%c%s", ch, optarg);
307                         break;
308                 case 'P':
309                         addargs(&args, "-p%s", optarg);
310                         break;
311                 case 'B':
312                         addargs(&args, "-oBatchmode yes");
313                         break;
314                 case 'l':
315                         speed = strtod(optarg, &endp);
316                         if (speed <= 0 || *endp != '\0')
317                                 usage();
318                         limit_rate = speed * 1024;
319                         break;
320                 case 'p':
321                         pflag = 1;
322                         break;
323                 case 'r':
324                         iamrecursive = 1;
325                         break;
326                 case 'S':
327                         ssh_program = xstrdup(optarg);
328                         break;
329                 case 'v':
330                         addargs(&args, "-v");
331                         verbose_mode = 1;
332                         break;
333                 case 'q':
334                         addargs(&args, "-q");
335                         showprogress = 0;
336                         break;
337
338                 /* Server options. */
339                 case 'd':
340                         targetshouldbedirectory = 1;
341                         break;
342                 case 'f':       /* "from" */
343                         iamremote = 1;
344                         fflag = 1;
345                         break;
346                 case 't':       /* "to" */
347                         iamremote = 1;
348                         tflag = 1;
349 #ifdef HAVE_CYGWIN
350                         setmode(0, O_BINARY);
351 #endif
352                         break;
353                 default:
354                         usage();
355                 }
356         argc -= optind;
357         argv += optind;
358
359         if ((pwd = getpwuid(userid = getuid())) == NULL)
360                 fatal("unknown user %u", (u_int) userid);
361
362         if (!isatty(STDERR_FILENO))
363                 showprogress = 0;
364
365         remin = STDIN_FILENO;
366         remout = STDOUT_FILENO;
367
368         if (fflag) {
369                 /* Follow "protocol", send data. */
370                 (void) response();
371                 source(argc, argv);
372                 exit(errs != 0);
373         }
374         if (tflag) {
375                 /* Receive data. */
376                 sink(argc, argv);
377                 exit(errs != 0);
378         }
379         if (argc < 2)
380                 usage();
381         if (argc > 2)
382                 targetshouldbedirectory = 1;
383
384         remin = remout = -1;
385         do_cmd_pid = -1;
386         /* Command to be executed on remote system using "ssh". */
387         (void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
388             verbose_mode ? " -v" : "",
389             iamrecursive ? " -r" : "", pflag ? " -p" : "",
390             targetshouldbedirectory ? " -d" : "");
391
392         (void) signal(SIGPIPE, lostconn);
393
394         if ((targ = colon(argv[argc - 1])))     /* Dest is remote host. */
395                 toremote(targ, argc, argv);
396         else {
397                 if (targetshouldbedirectory)
398                         verifydir(argv[argc - 1]);
399                 tolocal(argc, argv);    /* Dest is local host. */
400         }
401         /*
402          * Finally check the exit status of the ssh process, if one was forked
403          * and no error has occured yet
404          */
405         if (do_cmd_pid != -1 && errs == 0) {
406                 if (remin != -1)
407                     (void) close(remin);
408                 if (remout != -1)
409                     (void) close(remout);
410                 if (waitpid(do_cmd_pid, &status, 0) == -1)
411                         errs = 1;
412                 else {
413                         if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
414                                 errs = 1;
415                 }
416         }
417         exit(errs != 0);
418 }
419
420 void
421 toremote(char *targ, int argc, char **argv)
422 {
423         char *bp, *host, *src, *suser, *thost, *tuser, *arg;
424         arglist alist;
425         int i;
426
427         memset(&alist, '\0', sizeof(alist));
428         alist.list = NULL;
429
430         *targ++ = 0;
431         if (*targ == 0)
432                 targ = ".";
433
434         arg = xstrdup(argv[argc - 1]);
435         if ((thost = strrchr(arg, '@'))) {
436                 /* user@host */
437                 *thost++ = 0;
438                 tuser = arg;
439                 if (*tuser == '\0')
440                         tuser = NULL;
441         } else {
442                 thost = arg;
443                 tuser = NULL;
444         }
445
446         if (tuser != NULL && !okname(tuser)) {
447                 xfree(arg);
448                 return;
449         }
450
451         for (i = 0; i < argc - 1; i++) {
452                 src = colon(argv[i]);
453                 if (src) {      /* remote to remote */
454                         freeargs(&alist);
455                         addargs(&alist, "%s", ssh_program);
456                         if (verbose_mode)
457                                 addargs(&alist, "-v");
458                         addargs(&alist, "-x");
459                         addargs(&alist, "-oClearAllForwardings yes");
460                         addargs(&alist, "-n");
461
462                         *src++ = 0;
463                         if (*src == 0)
464                                 src = ".";
465                         host = strrchr(argv[i], '@');
466
467                         if (host) {
468                                 *host++ = 0;
469                                 host = cleanhostname(host);
470                                 suser = argv[i];
471                                 if (*suser == '\0')
472                                         suser = pwd->pw_name;
473                                 else if (!okname(suser))
474                                         continue;
475                                 addargs(&alist, "-l");
476                                 addargs(&alist, "%s", suser);
477                         } else {
478                                 host = cleanhostname(argv[i]);
479                         }
480                         addargs(&alist, "%s", host);
481                         addargs(&alist, "%s", cmd);
482                         addargs(&alist, "%s", src);
483                         addargs(&alist, "%s%s%s:%s",
484                             tuser ? tuser : "", tuser ? "@" : "",
485                             thost, targ);
486                         if (do_local_cmd(&alist) != 0)
487                                 errs = 1;
488                 } else {        /* local to remote */
489                         if (remin == -1) {
490                                 xasprintf(&bp, "%s -t %s", cmd, targ);
491                                 host = cleanhostname(thost);
492                                 if (do_cmd(host, tuser, bp, &remin,
493                                     &remout) < 0)
494                                         exit(1);
495                                 if (response() < 0)
496                                         exit(1);
497                                 (void) xfree(bp);
498                         }
499                         source(1, argv + i);
500                 }
501         }
502 }
503
504 void
505 tolocal(int argc, char **argv)
506 {
507         char *bp, *host, *src, *suser;
508         arglist alist;
509         int i;
510
511         memset(&alist, '\0', sizeof(alist));
512         alist.list = NULL;
513
514         for (i = 0; i < argc - 1; i++) {
515                 if (!(src = colon(argv[i]))) {  /* Local to local. */
516                         freeargs(&alist);
517                         addargs(&alist, "%s", _PATH_CP);
518                         if (iamrecursive)
519                                 addargs(&alist, "-r");
520                         if (pflag)
521                                 addargs(&alist, "-p");
522                         addargs(&alist, "%s", argv[i]);
523                         addargs(&alist, "%s", argv[argc-1]);
524                         if (do_local_cmd(&alist))
525                                 ++errs;
526                         continue;
527                 }
528                 *src++ = 0;
529                 if (*src == 0)
530                         src = ".";
531                 if ((host = strrchr(argv[i], '@')) == NULL) {
532                         host = argv[i];
533                         suser = NULL;
534                 } else {
535                         *host++ = 0;
536                         suser = argv[i];
537                         if (*suser == '\0')
538                                 suser = pwd->pw_name;
539                 }
540                 host = cleanhostname(host);
541                 xasprintf(&bp, "%s -f %s", cmd, src);
542                 if (do_cmd(host, suser, bp, &remin, &remout) < 0) {
543                         (void) xfree(bp);
544                         ++errs;
545                         continue;
546                 }
547                 xfree(bp);
548                 sink(1, argv + argc - 1);
549                 (void) close(remin);
550                 remin = remout = -1;
551         }
552 }
553
554 void
555 source(int argc, char **argv)
556 {
557         struct stat stb;
558         static BUF buffer;
559         BUF *bp;
560         off_t i, amt, statbytes;
561         size_t result;
562         int fd = -1, haderr, indx;
563         char *last, *name, buf[2048];
564         int len;
565
566         for (indx = 0; indx < argc; ++indx) {
567                 name = argv[indx];
568                 statbytes = 0;
569                 len = strlen(name);
570                 while (len > 1 && name[len-1] == '/')
571                         name[--len] = '\0';
572                 if (strchr(name, '\n') != NULL) {
573                         run_err("%s: skipping, filename contains a newline",
574                             name);
575                         goto next;
576                 }
577                 if ((fd = open(name, O_RDONLY, 0)) < 0)
578                         goto syserr;
579                 if (fstat(fd, &stb) < 0) {
580 syserr:                 run_err("%s: %s", name, strerror(errno));
581                         goto next;
582                 }
583                 switch (stb.st_mode & S_IFMT) {
584                 case S_IFREG:
585                         break;
586                 case S_IFDIR:
587                         if (iamrecursive) {
588                                 rsource(name, &stb);
589                                 goto next;
590                         }
591                         /* FALLTHROUGH */
592                 default:
593                         run_err("%s: not a regular file", name);
594                         goto next;
595                 }
596                 if ((last = strrchr(name, '/')) == NULL)
597                         last = name;
598                 else
599                         ++last;
600                 curfile = last;
601                 if (pflag) {
602                         /*
603                          * Make it compatible with possible future
604                          * versions expecting microseconds.
605                          */
606                         (void) snprintf(buf, sizeof buf, "T%lu 0 %lu 0\n",
607                             (u_long) stb.st_mtime,
608                             (u_long) stb.st_atime);
609                         (void) atomicio(vwrite, remout, buf, strlen(buf));
610                         if (response() < 0)
611                                 goto next;
612                 }
613 #define FILEMODEMASK    (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
614                 snprintf(buf, sizeof buf, "C%04o %lld %s\n",
615                     (u_int) (stb.st_mode & FILEMODEMASK),
616                     (long long)stb.st_size, last);
617                 if (verbose_mode) {
618                         fprintf(stderr, "Sending file modes: %s", buf);
619                 }
620                 (void) atomicio(vwrite, remout, buf, strlen(buf));
621                 if (response() < 0)
622                         goto next;
623                 if ((bp = allocbuf(&buffer, fd, 2048)) == NULL) {
624 next:                   if (fd != -1) {
625                                 (void) close(fd);
626                                 fd = -1;
627                         }
628                         continue;
629                 }
630                 if (showprogress)
631                         start_progress_meter(curfile, stb.st_size, &statbytes);
632                 /* Keep writing after an error so that we stay sync'd up. */
633                 for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
634                         amt = bp->cnt;
635                         if (i + amt > stb.st_size)
636                                 amt = stb.st_size - i;
637                         if (!haderr) {
638                                 result = atomicio(read, fd, bp->buf, amt);
639                                 if (result != amt)
640                                         haderr = errno;
641                         }
642                         if (haderr)
643                                 (void) atomicio(vwrite, remout, bp->buf, amt);
644                         else {
645                                 result = atomicio(vwrite, remout, bp->buf, amt);
646                                 if (result != amt)
647                                         haderr = errno;
648                                 statbytes += result;
649                         }
650                         if (limit_rate)
651                                 bwlimit(amt);
652                 }
653                 if (showprogress)
654                         stop_progress_meter();
655
656                 if (fd != -1) {
657                         if (close(fd) < 0 && !haderr)
658                                 haderr = errno;
659                         fd = -1;
660                 }
661                 if (!haderr)
662                         (void) atomicio(vwrite, remout, "", 1);
663                 else
664                         run_err("%s: %s", name, strerror(haderr));
665                 (void) response();
666         }
667 }
668
669 void
670 rsource(char *name, struct stat *statp)
671 {
672         DIR *dirp;
673         struct dirent *dp;
674         char *last, *vect[1], path[1100];
675
676         if (!(dirp = opendir(name))) {
677                 run_err("%s: %s", name, strerror(errno));
678                 return;
679         }
680         last = strrchr(name, '/');
681         if (last == 0)
682                 last = name;
683         else
684                 last++;
685         if (pflag) {
686                 (void) snprintf(path, sizeof(path), "T%lu 0 %lu 0\n",
687                     (u_long) statp->st_mtime,
688                     (u_long) statp->st_atime);
689                 (void) atomicio(vwrite, remout, path, strlen(path));
690                 if (response() < 0) {
691                         closedir(dirp);
692                         return;
693                 }
694         }
695         (void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
696             (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
697         if (verbose_mode)
698                 fprintf(stderr, "Entering directory: %s", path);
699         (void) atomicio(vwrite, remout, path, strlen(path));
700         if (response() < 0) {
701                 closedir(dirp);
702                 return;
703         }
704         while ((dp = readdir(dirp)) != NULL) {
705                 if (dp->d_ino == 0)
706                         continue;
707                 if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
708                         continue;
709                 if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
710                         run_err("%s/%s: name too long", name, dp->d_name);
711                         continue;
712                 }
713                 (void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
714                 vect[0] = path;
715                 source(1, vect);
716         }
717         (void) closedir(dirp);
718         (void) atomicio(vwrite, remout, "E\n", 2);
719         (void) response();
720 }
721
722 void
723 bwlimit(int amount)
724 {
725         static struct timeval bwstart, bwend;
726         static int lamt, thresh = 16384;
727         u_int64_t waitlen;
728         struct timespec ts, rm;
729
730         if (!timerisset(&bwstart)) {
731                 gettimeofday(&bwstart, NULL);
732                 return;
733         }
734
735         lamt += amount;
736         if (lamt < thresh)
737                 return;
738
739         gettimeofday(&bwend, NULL);
740         timersub(&bwend, &bwstart, &bwend);
741         if (!timerisset(&bwend))
742                 return;
743
744         lamt *= 8;
745         waitlen = (double)1000000L * lamt / limit_rate;
746
747         bwstart.tv_sec = waitlen / 1000000L;
748         bwstart.tv_usec = waitlen % 1000000L;
749
750         if (timercmp(&bwstart, &bwend, >)) {
751                 timersub(&bwstart, &bwend, &bwend);
752
753                 /* Adjust the wait time */
754                 if (bwend.tv_sec) {
755                         thresh /= 2;
756                         if (thresh < 2048)
757                                 thresh = 2048;
758                 } else if (bwend.tv_usec < 100) {
759                         thresh *= 2;
760                         if (thresh > 32768)
761                                 thresh = 32768;
762                 }
763
764                 TIMEVAL_TO_TIMESPEC(&bwend, &ts);
765                 while (nanosleep(&ts, &rm) == -1) {
766                         if (errno != EINTR)
767                                 break;
768                         ts = rm;
769                 }
770         }
771
772         lamt = 0;
773         gettimeofday(&bwstart, NULL);
774 }
775
776 void
777 sink(int argc, char **argv)
778 {
779         static BUF buffer;
780         struct stat stb;
781         enum {
782                 YES, NO, DISPLAYED
783         } wrerr;
784         BUF *bp;
785         off_t i;
786         size_t j, count;
787         int amt, exists, first, ofd;
788         mode_t mode, omode, mask;
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) {
948 bad:                    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         }
1053 screwup:
1054         run_err("protocol error: %s", why);
1055         exit(1);
1056 }
1057
1058 int
1059 response(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
1091 void
1092 usage(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
1101 void
1102 run_err(const char *fmt,...)
1103 {
1104         static FILE *fp;
1105         va_list ap;
1106
1107         ++errs;
1108         if (fp != NULL || (remout != -1 && (fp = fdopen(remout, "w")))) {
1109                 (void) fprintf(fp, "%c", 0x01);
1110                 (void) fprintf(fp, "scp: ");
1111                 va_start(ap, fmt);
1112                 (void) vfprintf(fp, fmt, ap);
1113                 va_end(ap);
1114                 (void) fprintf(fp, "\n");
1115                 (void) fflush(fp);
1116         }
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
1126 void
1127 verifydir(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
1140 int
1141 okname(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
1166 bad:    fprintf(stderr, "%s: invalid user name\n", cp0);
1167         return (0);
1168 }
1169
1170 BUF *
1171 allocbuf(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, 1, size);
1193         memset(bp->buf, 0, size);
1194         bp->cnt = size;
1195         return (bp);
1196 }
1197
1198 void
1199 lostconn(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 6.87353 seconds and 5 git commands to generate.