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