1 /* $OpenBSD: scp.c,v 1.163 2008/06/13 18:55:22 dtucker Exp $ */
3 * scp - secure remote copy. This is basically patched BSD rcp which
4 * uses ssh to do the data transfer (instead of using rcmd).
6 * NOTE: This version should NOT be suid root. (This uses ssh to
7 * do the transfer and ssh has the necessary privileges.)
9 * 1995 Timo Rinne <tri@iki.fi>, Tatu Ylonen <ylo@cs.hut.fi>
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".
18 * Copyright (c) 1999 Theo de Raadt. All rights reserved.
19 * Copyright (c) 1999 Aaron Campbell. All rights reserved.
21 * Redistribution and use in source and binary forms, with or without
22 * modification, are permitted provided that the following conditions
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.
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.
45 * Copyright (c) 1983, 1990, 1992, 1993, 1995
46 * The Regents of the University of California. All rights reserved.
48 * Redistribution and use in source and binary forms, with or without
49 * modification, are permitted provided that the following conditions
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.
56 * 3. Neither the name of the University nor the names of its contributors
57 * may be used to endorse or promote products derived from this software
58 * without specific prior written permission.
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
76 #include <sys/types.h>
77 #include <sys/param.h>
78 #ifdef HAVE_SYS_STAT_H
79 # include <sys/stat.h>
84 # ifdef HAVE_SYS_POLL_H
85 # include <sys/poll.h>
88 #ifdef HAVE_SYS_TIME_H
89 # include <sys/time.h>
106 #if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H)
111 #include "atomicio.h"
112 #include "pathnames.h"
115 #include "progressmeter.h"
117 extern char *__progname
;
119 #define COPY_BUFLEN 16384
121 int do_cmd(char *host
, char *remuser
, char *cmd
, int *fdin
, int *fdout
);
125 /* Struct for addargs */
128 /* Bandwidth limit */
129 off_t limit_rate
= 0;
131 /* Name of current file being transferred. */
134 /* This is set to non-zero to enable verbose mode. */
135 int verbose_mode
= 0;
137 /* This is set to zero if the progressmeter is not desired. */
138 int showprogress
= 1;
140 /* This is the program to execute for the secured connection. ("ssh" or -S) */
141 char *ssh_program
= _PATH_SSH_PROGRAM
;
143 /* This is used to store the pid of ssh_program */
144 pid_t do_cmd_pid
= -1;
149 if (do_cmd_pid
> 1) {
150 kill(do_cmd_pid
, signo
? signo
: SIGTERM
);
151 waitpid(do_cmd_pid
, NULL
, 0);
160 do_local_cmd(arglist
*a
)
167 fatal("do_local_cmd: no arguments");
170 fprintf(stderr
, "Executing:");
171 for (i
= 0; i
< a
->num
; i
++)
172 fprintf(stderr
, " %s", a
->list
[i
]);
173 fprintf(stderr
, "\n");
175 if ((pid
= fork()) == -1)
176 fatal("do_local_cmd: fork: %s", strerror(errno
));
179 execvp(a
->list
[0], a
->list
);
185 signal(SIGTERM
, killchild
);
186 signal(SIGINT
, killchild
);
187 signal(SIGHUP
, killchild
);
189 while (waitpid(pid
, &status
, 0) == -1)
191 fatal("do_local_cmd: waitpid: %s", strerror(errno
));
195 if (!WIFEXITED(status
) || WEXITSTATUS(status
) != 0)
202 * This function executes the given command as the specified user on the
203 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
204 * assigns the input and output file descriptors on success.
208 do_cmd(char *host
, char *remuser
, char *cmd
, int *fdin
, int *fdout
)
210 int pin
[2], pout
[2], reserved
[2];
214 "Executing: program %s host %s, user %s, command %s\n",
216 remuser
? remuser
: "(unspecified)", cmd
);
219 * Reserve two descriptors so that the real pipes won't get
220 * descriptors 0 and 1 because that will screw up dup2 below.
222 if (pipe(reserved
) < 0)
223 fatal("pipe: %s", strerror(errno
));
225 /* Create a socket pair for communicating with ssh. */
227 fatal("pipe: %s", strerror(errno
));
229 fatal("pipe: %s", strerror(errno
));
231 /* Free the reserved descriptors. */
235 /* Fork a child to execute the command on the remote host using ssh. */
237 if (do_cmd_pid
== 0) {
246 replacearg(&args
, 0, "%s", ssh_program
);
248 addargs(&args
, "-l%s", remuser
);
249 addargs(&args
, "%s", host
);
250 addargs(&args
, "%s", cmd
);
252 execvp(ssh_program
, args
.list
);
255 } else if (do_cmd_pid
== -1) {
256 fatal("fork: %s", strerror(errno
));
258 /* Parent. Close the other side, and return the local side. */
263 signal(SIGTERM
, killchild
);
264 signal(SIGINT
, killchild
);
265 signal(SIGHUP
, killchild
);
274 BUF
*allocbuf(BUF
*, int, int);
277 void run_err(const char *,...);
278 void verifydir(char *);
282 int errs
, remin
, remout
;
283 int pflag
, iamremote
, iamrecursive
, targetshouldbedirectory
;
286 char cmd
[CMDNEEDS
]; /* must hold "rcp -r -p -d\0" */
289 void rsource(char *, struct stat
*);
290 void sink(int, char *[]);
291 void source(int, char *[]);
292 void tolocal(int, char *[]);
293 void toremote(char *, int, char *[]);
294 size_t scpio(ssize_t (*)(int, void *, size_t), int, void *, size_t, off_t
*);
298 main(int argc
, char **argv
)
300 int ch
, fflag
, tflag
, status
, n
;
302 char *targ
, *endp
, **newargv
;
306 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
309 /* Copy argv, because we modify it */
310 newargv
= xcalloc(MAX(argc
+ 1, 1), sizeof(*newargv
));
311 for (n
= 0; n
< argc
; n
++)
312 newargv
[n
] = xstrdup(argv
[n
]);
315 __progname
= ssh_get_progname(argv
[0]);
317 memset(&args
, '\0', sizeof(args
));
319 addargs(&args
, "%s", ssh_program
);
320 addargs(&args
, "-x");
321 addargs(&args
, "-oForwardAgent no");
322 addargs(&args
, "-oPermitLocalCommand no");
323 addargs(&args
, "-oClearAllForwardings yes");
326 while ((ch
= getopt(argc
, argv
, "dfl:prtvBCc:i:P:q1246S:o:F:")) != -1)
328 /* User-visible flags. */
334 addargs(&args
, "-%c", ch
);
340 addargs(&args
, "-%c%s", ch
, optarg
);
343 addargs(&args
, "-p%s", optarg
);
346 addargs(&args
, "-oBatchmode yes");
349 speed
= strtod(optarg
, &endp
);
350 if (speed
<= 0 || *endp
!= '\0')
352 limit_rate
= speed
* 1024;
361 ssh_program
= xstrdup(optarg
);
364 addargs(&args
, "-v");
368 addargs(&args
, "-q");
372 /* Server options. */
374 targetshouldbedirectory
= 1;
376 case 'f': /* "from" */
384 setmode(0, O_BINARY
);
393 if ((pwd
= getpwuid(userid
= getuid())) == NULL
)
394 fatal("unknown user %u", (u_int
) userid
);
396 if (!isatty(STDOUT_FILENO
))
399 remin
= STDIN_FILENO
;
400 remout
= STDOUT_FILENO
;
403 /* Follow "protocol", send data. */
416 targetshouldbedirectory
= 1;
420 /* Command to be executed on remote system using "ssh". */
421 (void) snprintf(cmd
, sizeof cmd
, "scp%s%s%s%s",
422 verbose_mode
? " -v" : "",
423 iamrecursive
? " -r" : "", pflag
? " -p" : "",
424 targetshouldbedirectory
? " -d" : "");
426 (void) signal(SIGPIPE
, lostconn
);
428 if ((targ
= colon(argv
[argc
- 1]))) /* Dest is remote host. */
429 toremote(targ
, argc
, argv
);
431 if (targetshouldbedirectory
)
432 verifydir(argv
[argc
- 1]);
433 tolocal(argc
, argv
); /* Dest is local host. */
436 * Finally check the exit status of the ssh process, if one was forked
437 * and no error has occured yet
439 if (do_cmd_pid
!= -1 && errs
== 0) {
443 (void) close(remout
);
444 if (waitpid(do_cmd_pid
, &status
, 0) == -1)
447 if (!WIFEXITED(status
) || WEXITSTATUS(status
) != 0)
455 * atomicio-like wrapper that also applies bandwidth limits and updates
456 * the progressmeter counter.
459 scpio(ssize_t (*f
)(int, void *, size_t), int fd
, void *_p
, size_t l
, off_t
*c
)
461 u_char
*p
= (u_char
*)_p
;
467 pfd
.events
= f
== read
? POLLIN
: POLLOUT
;
468 for (offset
= 0; offset
< l
;) {
469 r
= f(fd
, p
+ offset
, l
- offset
);
477 if (errno
== EAGAIN
|| errno
== EWOULDBLOCK
) {
478 (void)poll(&pfd
, 1, -1); /* Ignore errors */
492 toremote(char *targ
, int argc
, char **argv
)
494 char *bp
, *host
, *src
, *suser
, *thost
, *tuser
, *arg
;
498 memset(&alist
, '\0', sizeof(alist
));
505 arg
= xstrdup(argv
[argc
- 1]);
506 if ((thost
= strrchr(arg
, '@'))) {
517 if (tuser
!= NULL
&& !okname(tuser
)) {
522 for (i
= 0; i
< argc
- 1; i
++) {
523 src
= colon(argv
[i
]);
524 if (src
) { /* remote to remote */
526 addargs(&alist
, "%s", ssh_program
);
528 addargs(&alist
, "-v");
529 addargs(&alist
, "-x");
530 addargs(&alist
, "-oClearAllForwardings yes");
531 addargs(&alist
, "-n");
536 host
= strrchr(argv
[i
], '@');
540 host
= cleanhostname(host
);
543 suser
= pwd
->pw_name
;
544 else if (!okname(suser
))
546 addargs(&alist
, "-l");
547 addargs(&alist
, "%s", suser
);
549 host
= cleanhostname(argv
[i
]);
551 addargs(&alist
, "%s", host
);
552 addargs(&alist
, "%s", cmd
);
553 addargs(&alist
, "%s", src
);
554 addargs(&alist
, "%s%s%s:%s",
555 tuser
? tuser
: "", tuser
? "@" : "",
557 if (do_local_cmd(&alist
) != 0)
559 } else { /* local to remote */
561 xasprintf(&bp
, "%s -t %s", cmd
, targ
);
562 host
= cleanhostname(thost
);
563 if (do_cmd(host
, tuser
, bp
, &remin
,
577 tolocal(int argc
, char **argv
)
579 char *bp
, *host
, *src
, *suser
;
583 memset(&alist
, '\0', sizeof(alist
));
586 for (i
= 0; i
< argc
- 1; i
++) {
587 if (!(src
= colon(argv
[i
]))) { /* Local to local. */
589 addargs(&alist
, "%s", _PATH_CP
);
591 addargs(&alist
, "-r");
593 addargs(&alist
, "-p");
594 addargs(&alist
, "%s", argv
[i
]);
595 addargs(&alist
, "%s", argv
[argc
-1]);
596 if (do_local_cmd(&alist
))
603 if ((host
= strrchr(argv
[i
], '@')) == NULL
) {
610 suser
= pwd
->pw_name
;
612 host
= cleanhostname(host
);
613 xasprintf(&bp
, "%s -f %s", cmd
, src
);
614 if (do_cmd(host
, suser
, bp
, &remin
, &remout
) < 0) {
620 sink(1, argv
+ argc
- 1);
627 source(int argc
, char **argv
)
634 int fd
= -1, haderr
, indx
;
635 char *last
, *name
, buf
[2048], encname
[MAXPATHLEN
];
638 for (indx
= 0; indx
< argc
; ++indx
) {
642 while (len
> 1 && name
[len
-1] == '/')
644 if ((fd
= open(name
, O_RDONLY
|O_NONBLOCK
, 0)) < 0)
646 if (strchr(name
, '\n') != NULL
) {
647 strnvis(encname
, name
, sizeof(encname
), VIS_NL
);
650 if (fstat(fd
, &stb
) < 0) {
651 syserr
: run_err("%s: %s", name
, strerror(errno
));
654 if (stb
.st_size
< 0) {
655 run_err("%s: %s", name
, "Negative file size");
659 switch (stb
.st_mode
& S_IFMT
) {
669 run_err("%s: not a regular file", name
);
672 if ((last
= strrchr(name
, '/')) == NULL
)
679 * Make it compatible with possible future
680 * versions expecting microseconds.
682 (void) snprintf(buf
, sizeof buf
, "T%lu 0 %lu 0\n",
683 (u_long
) (stb
.st_mtime
< 0 ? 0 : stb
.st_mtime
),
684 (u_long
) (stb
.st_atime
< 0 ? 0 : stb
.st_atime
));
686 fprintf(stderr
, "File mtime %ld atime %ld\n",
687 (long)stb
.st_mtime
, (long)stb
.st_atime
);
688 fprintf(stderr
, "Sending file timestamps: %s",
691 (void) atomicio(vwrite
, remout
, buf
, strlen(buf
));
695 #define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
696 snprintf(buf
, sizeof buf
, "C%04o %lld %s\n",
697 (u_int
) (stb
.st_mode
& FILEMODEMASK
),
698 (long long)stb
.st_size
, last
);
700 fprintf(stderr
, "Sending file modes: %s", buf
);
702 (void) atomicio(vwrite
, remout
, buf
, strlen(buf
));
705 if ((bp
= allocbuf(&buffer
, fd
, COPY_BUFLEN
)) == NULL
) {
706 next
: if (fd
!= -1) {
713 start_progress_meter(curfile
, stb
.st_size
, &statbytes
);
714 set_nonblock(remout
);
715 for (haderr
= i
= 0; i
< stb
.st_size
; i
+= bp
->cnt
) {
717 if (i
+ (off_t
)amt
> stb
.st_size
)
718 amt
= stb
.st_size
- i
;
720 if (atomicio(read
, fd
, bp
->buf
, amt
) != amt
)
723 /* Keep writing after error to retain sync */
725 (void)atomicio(vwrite
, remout
, bp
->buf
, amt
);
728 if (scpio(vwrite
, remout
, bp
->buf
, amt
,
732 unset_nonblock(remout
);
734 stop_progress_meter();
737 if (close(fd
) < 0 && !haderr
)
742 (void) atomicio(vwrite
, remout
, "", 1);
744 run_err("%s: %s", name
, strerror(haderr
));
750 rsource(char *name
, struct stat
*statp
)
754 char *last
, *vect
[1], path
[1100];
756 if (!(dirp
= opendir(name
))) {
757 run_err("%s: %s", name
, strerror(errno
));
760 last
= strrchr(name
, '/');
766 (void) snprintf(path
, sizeof(path
), "T%lu 0 %lu 0\n",
767 (u_long
) statp
->st_mtime
,
768 (u_long
) statp
->st_atime
);
769 (void) atomicio(vwrite
, remout
, path
, strlen(path
));
770 if (response() < 0) {
775 (void) snprintf(path
, sizeof path
, "D%04o %d %.1024s\n",
776 (u_int
) (statp
->st_mode
& FILEMODEMASK
), 0, last
);
778 fprintf(stderr
, "Entering directory: %s", path
);
779 (void) atomicio(vwrite
, remout
, path
, strlen(path
));
780 if (response() < 0) {
784 while ((dp
= readdir(dirp
)) != NULL
) {
787 if (!strcmp(dp
->d_name
, ".") || !strcmp(dp
->d_name
, ".."))
789 if (strlen(name
) + 1 + strlen(dp
->d_name
) >= sizeof(path
) - 1) {
790 run_err("%s/%s: name too long", name
, dp
->d_name
);
793 (void) snprintf(path
, sizeof path
, "%s/%s", name
, dp
->d_name
);
797 (void) closedir(dirp
);
798 (void) atomicio(vwrite
, remout
, "E\n", 2);
805 static struct timeval bwstart
, bwend
;
806 static int lamt
, thresh
= 16384;
808 struct timespec ts
, rm
;
810 if (!timerisset(&bwstart
)) {
811 gettimeofday(&bwstart
, NULL
);
819 gettimeofday(&bwend
, NULL
);
820 timersub(&bwend
, &bwstart
, &bwend
);
821 if (!timerisset(&bwend
))
825 waitlen
= (double)1000000L * lamt
/ limit_rate
;
827 bwstart
.tv_sec
= waitlen
/ 1000000L;
828 bwstart
.tv_usec
= waitlen
% 1000000L;
830 if (timercmp(&bwstart
, &bwend
, >)) {
831 timersub(&bwstart
, &bwend
, &bwend
);
833 /* Adjust the wait time */
838 } else if (bwend
.tv_usec
< 10000) {
840 if (thresh
> COPY_BUFLEN
* 4)
841 thresh
= COPY_BUFLEN
* 4;
844 TIMEVAL_TO_TIMESPEC(&bwend
, &ts
);
845 while (nanosleep(&ts
, &rm
) == -1) {
853 gettimeofday(&bwstart
, NULL
);
857 sink(int argc
, char **argv
)
867 int amt
, exists
, first
, ofd
;
868 mode_t mode
, omode
, mask
;
869 off_t size
, statbytes
;
870 int setimes
, targisdir
, wrerrno
= 0;
871 char ch
, *cp
, *np
, *targ
, *why
, *vect
[1], buf
[2048];
872 struct timeval tv
[2];
876 #define SCREWUP(str) { why = str; goto screwup; }
878 setimes
= targisdir
= 0;
883 run_err("ambiguous target");
887 if (targetshouldbedirectory
)
890 (void) atomicio(vwrite
, remout
, "", 1);
891 if (stat(targ
, &stb
) == 0 && S_ISDIR(stb
.st_mode
))
893 for (first
= 1;; first
= 0) {
895 if (atomicio(read
, remin
, cp
, 1) != 1)
898 SCREWUP("unexpected <newline>");
900 if (atomicio(read
, remin
, &ch
, sizeof(ch
)) != sizeof(ch
))
901 SCREWUP("lost connection");
903 } while (cp
< &buf
[sizeof(buf
) - 1] && ch
!= '\n');
906 fprintf(stderr
, "Sink: %s", buf
);
908 if (buf
[0] == '\01' || buf
[0] == '\02') {
910 (void) atomicio(vwrite
, STDERR_FILENO
,
911 buf
+ 1, strlen(buf
+ 1));
918 (void) atomicio(vwrite
, remout
, "", 1);
928 mtime
.tv_sec
= strtol(cp
, &cp
, 10);
929 if (!cp
|| *cp
++ != ' ')
930 SCREWUP("mtime.sec not delimited");
931 mtime
.tv_usec
= strtol(cp
, &cp
, 10);
932 if (!cp
|| *cp
++ != ' ')
933 SCREWUP("mtime.usec not delimited");
934 atime
.tv_sec
= strtol(cp
, &cp
, 10);
935 if (!cp
|| *cp
++ != ' ')
936 SCREWUP("atime.sec not delimited");
937 atime
.tv_usec
= strtol(cp
, &cp
, 10);
938 if (!cp
|| *cp
++ != '\0')
939 SCREWUP("atime.usec not delimited");
940 (void) atomicio(vwrite
, remout
, "", 1);
943 if (*cp
!= 'C' && *cp
!= 'D') {
945 * Check for the case "rcp remote:foo\* local:bar".
946 * In this case, the line "No match." can be returned
947 * by the shell before the rcp command on the remote is
948 * executed so the ^Aerror_message convention isn't
955 SCREWUP("expected control record");
958 for (++cp
; cp
< buf
+ 5; cp
++) {
959 if (*cp
< '0' || *cp
> '7')
961 mode
= (mode
<< 3) | (*cp
- '0');
964 SCREWUP("mode not delimited");
966 for (size
= 0; isdigit(*cp
);)
967 size
= size
* 10 + (*cp
++ - '0');
969 SCREWUP("size not delimited");
970 if ((strchr(cp
, '/') != NULL
) || (strcmp(cp
, "..") == 0)) {
971 run_err("error: unexpected filename: %s", cp
);
975 static char *namebuf
;
976 static size_t cursize
;
979 need
= strlen(targ
) + strlen(cp
) + 250;
980 if (need
> cursize
) {
983 namebuf
= xmalloc(need
);
986 (void) snprintf(namebuf
, need
, "%s%s%s", targ
,
987 strcmp(targ
, "/") ? "/" : "", cp
);
992 exists
= stat(np
, &stb
) == 0;
994 int mod_flag
= pflag
;
996 SCREWUP("received directory without -r");
998 if (!S_ISDIR(stb
.st_mode
)) {
1003 (void) chmod(np
, mode
);
1005 /* Handle copying from a read-only
1008 if (mkdir(np
, mode
| S_IRWXU
) < 0)
1011 vect
[0] = xstrdup(np
);
1015 if (utimes(vect
[0], tv
) < 0)
1016 run_err("%s: set times: %s",
1017 vect
[0], strerror(errno
));
1020 (void) chmod(vect
[0], mode
);
1027 if ((ofd
= open(np
, O_WRONLY
|O_CREAT
, mode
)) < 0) {
1028 bad
: run_err("%s: %s", np
, strerror(errno
));
1031 (void) atomicio(vwrite
, remout
, "", 1);
1032 if ((bp
= allocbuf(&buffer
, ofd
, COPY_BUFLEN
)) == NULL
) {
1041 start_progress_meter(curfile
, size
, &statbytes
);
1042 set_nonblock(remin
);
1043 for (count
= i
= 0; i
< size
; i
+= bp
->cnt
) {
1049 j
= scpio(read
, remin
, cp
, amt
, &statbytes
);
1051 run_err("%s", j
!= EPIPE
?
1053 "dropped connection");
1060 if (count
== bp
->cnt
) {
1061 /* Keep reading so we stay sync'd up. */
1063 if (atomicio(vwrite
, ofd
, bp
->buf
,
1073 unset_nonblock(remin
);
1075 stop_progress_meter();
1076 if (count
!= 0 && wrerr
== NO
&&
1077 atomicio(vwrite
, ofd
, bp
->buf
, count
) != count
) {
1081 if (wrerr
== NO
&& (!exists
|| S_ISREG(stb
.st_mode
)) &&
1082 ftruncate(ofd
, size
) != 0) {
1083 run_err("%s: truncate: %s", np
, strerror(errno
));
1087 if (exists
|| omode
!= mode
)
1089 if (fchmod(ofd
, omode
)) {
1090 #else /* HAVE_FCHMOD */
1091 if (chmod(np
, omode
)) {
1092 #endif /* HAVE_FCHMOD */
1093 run_err("%s: set mode: %s",
1094 np
, strerror(errno
));
1098 if (!exists
&& omode
!= mode
)
1100 if (fchmod(ofd
, omode
& ~mask
)) {
1101 #else /* HAVE_FCHMOD */
1102 if (chmod(np
, omode
& ~mask
)) {
1103 #endif /* HAVE_FCHMOD */
1104 run_err("%s: set mode: %s",
1105 np
, strerror(errno
));
1109 if (close(ofd
) == -1) {
1114 if (setimes
&& wrerr
== NO
) {
1116 if (utimes(np
, tv
) < 0) {
1117 run_err("%s: set times: %s",
1118 np
, strerror(errno
));
1124 run_err("%s: %s", np
, strerror(wrerrno
));
1127 (void) atomicio(vwrite
, remout
, "", 1);
1134 run_err("protocol error: %s", why
);
1141 char ch
, *cp
, resp
, rbuf
[2048];
1143 if (atomicio(read
, remin
, &resp
, sizeof(resp
)) != sizeof(resp
))
1153 case 1: /* error, followed by error msg */
1154 case 2: /* fatal error, "" */
1156 if (atomicio(read
, remin
, &ch
, sizeof(ch
)) != sizeof(ch
))
1159 } while (cp
< &rbuf
[sizeof(rbuf
) - 1] && ch
!= '\n');
1162 (void) atomicio(vwrite
, STDERR_FILENO
, rbuf
, cp
- rbuf
);
1174 (void) fprintf(stderr
,
1175 "usage: scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]\n"
1176 " [-l limit] [-o ssh_option] [-P port] [-S program]\n"
1177 " [[user@]host1:]file1 ... [[user@]host2:]file2\n");
1182 run_err(const char *fmt
,...)
1188 if (fp
!= NULL
|| (remout
!= -1 && (fp
= fdopen(remout
, "w")))) {
1189 (void) fprintf(fp
, "%c", 0x01);
1190 (void) fprintf(fp
, "scp: ");
1192 (void) vfprintf(fp
, fmt
, ap
);
1194 (void) fprintf(fp
, "\n");
1200 vfprintf(stderr
, fmt
, ap
);
1202 fprintf(stderr
, "\n");
1211 if (!stat(cp
, &stb
)) {
1212 if (S_ISDIR(stb
.st_mode
))
1216 run_err("%s: %s", cp
, strerror(errno
));
1231 if (!isalpha(c
) && !isdigit(c
)) {
1246 bad
: fprintf(stderr
, "%s: invalid user name\n", cp0
);
1251 allocbuf(BUF
*bp
, int fd
, int blksize
)
1254 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1257 if (fstat(fd
, &stb
) < 0) {
1258 run_err("fstat: %s", strerror(errno
));
1261 size
= roundup(stb
.st_blksize
, blksize
);
1264 #else /* HAVE_STRUCT_STAT_ST_BLKSIZE */
1266 #endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
1267 if (bp
->cnt
>= size
)
1269 if (bp
->buf
== NULL
)
1270 bp
->buf
= xmalloc(size
);
1272 bp
->buf
= xrealloc(bp
->buf
, 1, size
);
1273 memset(bp
->buf
, 0, size
);
1282 write(STDERR_FILENO
, "lost connection\n", 16);