[BACK]Return to scp.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Annotation of src/usr.bin/ssh/scp.c, Revision 1.177

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