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