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