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