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