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