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