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