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