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