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