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