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