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