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