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