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