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