1 /* $OpenBSD: scp.c,v 1.149 2006/07/22 19:08:54 stevesk 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 #ifdef HAVE_SYS_STAT_H
78 # include <sys/stat.h>
94 #include "pathnames.h"
97 #include "progressmeter.h"
99 extern char *__progname
;
101 int do_cmd(char *host
, char *remuser
, char *cmd
, int *fdin
, int *fdout
);
105 /* Struct for addargs */
108 /* Bandwidth limit */
109 off_t limit_rate
= 0;
111 /* Name of current file being transferred. */
114 /* This is set to non-zero to enable verbose mode. */
115 int verbose_mode
= 0;
117 /* This is set to zero if the progressmeter is not desired. */
118 int showprogress
= 1;
120 /* This is the program to execute for the secured connection. ("ssh" or -S) */
121 char *ssh_program
= _PATH_SSH_PROGRAM
;
123 /* This is used to store the pid of ssh_program */
124 pid_t do_cmd_pid
= -1;
129 if (do_cmd_pid
> 1) {
130 kill(do_cmd_pid
, signo
? signo
: SIGTERM
);
131 waitpid(do_cmd_pid
, NULL
, 0);
140 do_local_cmd(arglist
*a
)
147 fatal("do_local_cmd: no arguments");
150 fprintf(stderr
, "Executing:");
151 for (i
= 0; i
< a
->num
; i
++)
152 fprintf(stderr
, " %s", a
->list
[i
]);
153 fprintf(stderr
, "\n");
155 if ((pid
= fork()) == -1)
156 fatal("do_local_cmd: fork: %s", strerror(errno
));
159 execvp(a
->list
[0], a
->list
);
165 signal(SIGTERM
, killchild
);
166 signal(SIGINT
, killchild
);
167 signal(SIGHUP
, killchild
);
169 while (waitpid(pid
, &status
, 0) == -1)
171 fatal("do_local_cmd: waitpid: %s", strerror(errno
));
175 if (!WIFEXITED(status
) || WEXITSTATUS(status
) != 0)
182 * This function executes the given command as the specified user on the
183 * given host. This returns < 0 if execution fails, and >= 0 otherwise. This
184 * assigns the input and output file descriptors on success.
188 do_cmd(char *host
, char *remuser
, char *cmd
, int *fdin
, int *fdout
)
190 int pin
[2], pout
[2], reserved
[2];
194 "Executing: program %s host %s, user %s, command %s\n",
196 remuser
? remuser
: "(unspecified)", cmd
);
199 * Reserve two descriptors so that the real pipes won't get
200 * descriptors 0 and 1 because that will screw up dup2 below.
202 if (pipe(reserved
) < 0)
203 fatal("pipe: %s", strerror(errno
));
205 /* Create a socket pair for communicating with ssh. */
207 fatal("pipe: %s", strerror(errno
));
209 fatal("pipe: %s", strerror(errno
));
211 /* Free the reserved descriptors. */
215 /* Fork a child to execute the command on the remote host using ssh. */
217 if (do_cmd_pid
== 0) {
226 replacearg(&args
, 0, "%s", ssh_program
);
228 addargs(&args
, "-l%s", remuser
);
229 addargs(&args
, "%s", host
);
230 addargs(&args
, "%s", cmd
);
232 execvp(ssh_program
, args
.list
);
235 } else if (do_cmd_pid
== -1) {
236 fatal("fork: %s", strerror(errno
));
238 /* Parent. Close the other side, and return the local side. */
243 signal(SIGTERM
, killchild
);
244 signal(SIGINT
, killchild
);
245 signal(SIGHUP
, killchild
);
254 BUF
*allocbuf(BUF
*, int, int);
257 void run_err(const char *,...);
258 void verifydir(char *);
262 int errs
, remin
, remout
;
263 int pflag
, iamremote
, iamrecursive
, targetshouldbedirectory
;
266 char cmd
[CMDNEEDS
]; /* must hold "rcp -r -p -d\0" */
269 void rsource(char *, struct stat
*);
270 void sink(int, char *[]);
271 void source(int, char *[]);
272 void tolocal(int, char *[]);
273 void toremote(char *, int, char *[]);
277 main(int argc
, char **argv
)
279 int ch
, fflag
, tflag
, status
, n
;
281 char *targ
, *endp
, **newargv
;
285 /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
288 /* Copy argv, because we modify it */
289 newargv
= xcalloc(MAX(argc
+ 1, 1), sizeof(*newargv
));
290 for (n
= 0; n
< argc
; n
++)
291 newargv
[n
] = xstrdup(argv
[n
]);
294 __progname
= ssh_get_progname(argv
[0]);
296 memset(&args
, '\0', sizeof(args
));
298 addargs(&args
, "%s", ssh_program
);
299 addargs(&args
, "-x");
300 addargs(&args
, "-oForwardAgent no");
301 addargs(&args
, "-oPermitLocalCommand no");
302 addargs(&args
, "-oClearAllForwardings yes");
305 while ((ch
= getopt(argc
, argv
, "dfl:prtvBCc:i:P:q1246S:o:F:")) != -1)
307 /* User-visible flags. */
313 addargs(&args
, "-%c", ch
);
319 addargs(&args
, "-%c%s", ch
, optarg
);
322 addargs(&args
, "-p%s", optarg
);
325 addargs(&args
, "-oBatchmode yes");
328 speed
= strtod(optarg
, &endp
);
329 if (speed
<= 0 || *endp
!= '\0')
331 limit_rate
= speed
* 1024;
340 ssh_program
= xstrdup(optarg
);
343 addargs(&args
, "-v");
347 addargs(&args
, "-q");
351 /* Server options. */
353 targetshouldbedirectory
= 1;
355 case 'f': /* "from" */
363 setmode(0, O_BINARY
);
372 if ((pwd
= getpwuid(userid
= getuid())) == NULL
)
373 fatal("unknown user %u", (u_int
) userid
);
375 if (!isatty(STDERR_FILENO
))
378 remin
= STDIN_FILENO
;
379 remout
= STDOUT_FILENO
;
382 /* Follow "protocol", send data. */
395 targetshouldbedirectory
= 1;
399 /* Command to be executed on remote system using "ssh". */
400 (void) snprintf(cmd
, sizeof cmd
, "scp%s%s%s%s",
401 verbose_mode
? " -v" : "",
402 iamrecursive
? " -r" : "", pflag
? " -p" : "",
403 targetshouldbedirectory
? " -d" : "");
405 (void) signal(SIGPIPE
, lostconn
);
407 if ((targ
= colon(argv
[argc
- 1]))) /* Dest is remote host. */
408 toremote(targ
, argc
, argv
);
410 if (targetshouldbedirectory
)
411 verifydir(argv
[argc
- 1]);
412 tolocal(argc
, argv
); /* Dest is local host. */
415 * Finally check the exit status of the ssh process, if one was forked
416 * and no error has occured yet
418 if (do_cmd_pid
!= -1 && errs
== 0) {
422 (void) close(remout
);
423 if (waitpid(do_cmd_pid
, &status
, 0) == -1)
426 if (!WIFEXITED(status
) || WEXITSTATUS(status
) != 0)
434 toremote(char *targ
, int argc
, char **argv
)
436 char *bp
, *host
, *src
, *suser
, *thost
, *tuser
, *arg
;
440 memset(&alist
, '\0', sizeof(alist
));
447 arg
= xstrdup(argv
[argc
- 1]);
448 if ((thost
= strrchr(arg
, '@'))) {
459 if (tuser
!= NULL
&& !okname(tuser
)) {
464 for (i
= 0; i
< argc
- 1; i
++) {
465 src
= colon(argv
[i
]);
466 if (src
) { /* remote to remote */
468 addargs(&alist
, "%s", ssh_program
);
470 addargs(&alist
, "-v");
471 addargs(&alist
, "-x");
472 addargs(&alist
, "-oClearAllForwardings yes");
473 addargs(&alist
, "-n");
478 host
= strrchr(argv
[i
], '@');
482 host
= cleanhostname(host
);
485 suser
= pwd
->pw_name
;
486 else if (!okname(suser
))
488 addargs(&alist
, "-l");
489 addargs(&alist
, "%s", suser
);
491 host
= cleanhostname(argv
[i
]);
493 addargs(&alist
, "%s", host
);
494 addargs(&alist
, "%s", cmd
);
495 addargs(&alist
, "%s", src
);
496 addargs(&alist
, "%s%s%s:%s",
497 tuser
? tuser
: "", tuser
? "@" : "",
499 if (do_local_cmd(&alist
) != 0)
501 } else { /* local to remote */
503 xasprintf(&bp
, "%s -t %s", cmd
, targ
);
504 host
= cleanhostname(thost
);
505 if (do_cmd(host
, tuser
, bp
, &remin
,
519 tolocal(int argc
, char **argv
)
521 char *bp
, *host
, *src
, *suser
;
525 memset(&alist
, '\0', sizeof(alist
));
528 for (i
= 0; i
< argc
- 1; i
++) {
529 if (!(src
= colon(argv
[i
]))) { /* Local to local. */
531 addargs(&alist
, "%s", _PATH_CP
);
533 addargs(&alist
, "-r");
535 addargs(&alist
, "-p");
536 addargs(&alist
, "%s", argv
[i
]);
537 addargs(&alist
, "%s", argv
[argc
-1]);
538 if (do_local_cmd(&alist
))
545 if ((host
= strrchr(argv
[i
], '@')) == NULL
) {
552 suser
= pwd
->pw_name
;
554 host
= cleanhostname(host
);
555 xasprintf(&bp
, "%s -f %s", cmd
, src
);
556 if (do_cmd(host
, suser
, bp
, &remin
, &remout
) < 0) {
562 sink(1, argv
+ argc
- 1);
569 source(int argc
, char **argv
)
574 off_t i
, amt
, statbytes
;
576 int fd
= -1, haderr
, indx
;
577 char *last
, *name
, buf
[2048];
580 for (indx
= 0; indx
< argc
; ++indx
) {
584 while (len
> 1 && name
[len
-1] == '/')
586 if (strchr(name
, '\n') != NULL
) {
587 run_err("%s: skipping, filename contains a newline",
591 if ((fd
= open(name
, O_RDONLY
, 0)) < 0)
593 if (fstat(fd
, &stb
) < 0) {
594 syserr
: run_err("%s: %s", name
, strerror(errno
));
597 switch (stb
.st_mode
& S_IFMT
) {
607 run_err("%s: not a regular file", name
);
610 if ((last
= strrchr(name
, '/')) == NULL
)
617 * Make it compatible with possible future
618 * versions expecting microseconds.
620 (void) snprintf(buf
, sizeof buf
, "T%lu 0 %lu 0\n",
621 (u_long
) stb
.st_mtime
,
622 (u_long
) stb
.st_atime
);
623 (void) atomicio(vwrite
, remout
, buf
, strlen(buf
));
627 #define FILEMODEMASK (S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
628 snprintf(buf
, sizeof buf
, "C%04o %lld %s\n",
629 (u_int
) (stb
.st_mode
& FILEMODEMASK
),
630 (long long)stb
.st_size
, last
);
632 fprintf(stderr
, "Sending file modes: %s", buf
);
634 (void) atomicio(vwrite
, remout
, buf
, strlen(buf
));
637 if ((bp
= allocbuf(&buffer
, fd
, 2048)) == NULL
) {
638 next
: if (fd
!= -1) {
645 start_progress_meter(curfile
, stb
.st_size
, &statbytes
);
646 /* Keep writing after an error so that we stay sync'd up. */
647 for (haderr
= i
= 0; i
< stb
.st_size
; i
+= bp
->cnt
) {
649 if (i
+ amt
> stb
.st_size
)
650 amt
= stb
.st_size
- i
;
652 result
= atomicio(read
, fd
, bp
->buf
, amt
);
657 (void) atomicio(vwrite
, remout
, bp
->buf
, amt
);
659 result
= atomicio(vwrite
, remout
, bp
->buf
, amt
);
668 stop_progress_meter();
671 if (close(fd
) < 0 && !haderr
)
676 (void) atomicio(vwrite
, remout
, "", 1);
678 run_err("%s: %s", name
, strerror(haderr
));
684 rsource(char *name
, struct stat
*statp
)
688 char *last
, *vect
[1], path
[1100];
690 if (!(dirp
= opendir(name
))) {
691 run_err("%s: %s", name
, strerror(errno
));
694 last
= strrchr(name
, '/');
700 (void) snprintf(path
, sizeof(path
), "T%lu 0 %lu 0\n",
701 (u_long
) statp
->st_mtime
,
702 (u_long
) statp
->st_atime
);
703 (void) atomicio(vwrite
, remout
, path
, strlen(path
));
704 if (response() < 0) {
709 (void) snprintf(path
, sizeof path
, "D%04o %d %.1024s\n",
710 (u_int
) (statp
->st_mode
& FILEMODEMASK
), 0, last
);
712 fprintf(stderr
, "Entering directory: %s", path
);
713 (void) atomicio(vwrite
, remout
, path
, strlen(path
));
714 if (response() < 0) {
718 while ((dp
= readdir(dirp
)) != NULL
) {
721 if (!strcmp(dp
->d_name
, ".") || !strcmp(dp
->d_name
, ".."))
723 if (strlen(name
) + 1 + strlen(dp
->d_name
) >= sizeof(path
) - 1) {
724 run_err("%s/%s: name too long", name
, dp
->d_name
);
727 (void) snprintf(path
, sizeof path
, "%s/%s", name
, dp
->d_name
);
731 (void) closedir(dirp
);
732 (void) atomicio(vwrite
, remout
, "E\n", 2);
739 static struct timeval bwstart
, bwend
;
740 static int lamt
, thresh
= 16384;
742 struct timespec ts
, rm
;
744 if (!timerisset(&bwstart
)) {
745 gettimeofday(&bwstart
, NULL
);
753 gettimeofday(&bwend
, NULL
);
754 timersub(&bwend
, &bwstart
, &bwend
);
755 if (!timerisset(&bwend
))
759 waitlen
= (double)1000000L * lamt
/ limit_rate
;
761 bwstart
.tv_sec
= waitlen
/ 1000000L;
762 bwstart
.tv_usec
= waitlen
% 1000000L;
764 if (timercmp(&bwstart
, &bwend
, >)) {
765 timersub(&bwstart
, &bwend
, &bwend
);
767 /* Adjust the wait time */
772 } else if (bwend
.tv_usec
< 100) {
778 TIMEVAL_TO_TIMESPEC(&bwend
, &ts
);
779 while (nanosleep(&ts
, &rm
) == -1) {
787 gettimeofday(&bwstart
, NULL
);
791 sink(int argc
, char **argv
)
801 int amt
, exists
, first
, ofd
;
802 mode_t mode
, omode
, mask
;
803 off_t size
, statbytes
;
804 int setimes
, targisdir
, wrerrno
= 0;
805 char ch
, *cp
, *np
, *targ
, *why
, *vect
[1], buf
[2048];
806 struct timeval tv
[2];
810 #define SCREWUP(str) { why = str; goto screwup; }
812 setimes
= targisdir
= 0;
817 run_err("ambiguous target");
821 if (targetshouldbedirectory
)
824 (void) atomicio(vwrite
, remout
, "", 1);
825 if (stat(targ
, &stb
) == 0 && S_ISDIR(stb
.st_mode
))
827 for (first
= 1;; first
= 0) {
829 if (atomicio(read
, remin
, cp
, 1) != 1)
832 SCREWUP("unexpected <newline>");
834 if (atomicio(read
, remin
, &ch
, sizeof(ch
)) != sizeof(ch
))
835 SCREWUP("lost connection");
837 } while (cp
< &buf
[sizeof(buf
) - 1] && ch
!= '\n');
840 fprintf(stderr
, "Sink: %s", buf
);
842 if (buf
[0] == '\01' || buf
[0] == '\02') {
844 (void) atomicio(vwrite
, STDERR_FILENO
,
845 buf
+ 1, strlen(buf
+ 1));
852 (void) atomicio(vwrite
, remout
, "", 1);
862 mtime
.tv_sec
= strtol(cp
, &cp
, 10);
863 if (!cp
|| *cp
++ != ' ')
864 SCREWUP("mtime.sec not delimited");
865 mtime
.tv_usec
= strtol(cp
, &cp
, 10);
866 if (!cp
|| *cp
++ != ' ')
867 SCREWUP("mtime.usec not delimited");
868 atime
.tv_sec
= strtol(cp
, &cp
, 10);
869 if (!cp
|| *cp
++ != ' ')
870 SCREWUP("atime.sec not delimited");
871 atime
.tv_usec
= strtol(cp
, &cp
, 10);
872 if (!cp
|| *cp
++ != '\0')
873 SCREWUP("atime.usec not delimited");
874 (void) atomicio(vwrite
, remout
, "", 1);
877 if (*cp
!= 'C' && *cp
!= 'D') {
879 * Check for the case "rcp remote:foo\* local:bar".
880 * In this case, the line "No match." can be returned
881 * by the shell before the rcp command on the remote is
882 * executed so the ^Aerror_message convention isn't
889 SCREWUP("expected control record");
892 for (++cp
; cp
< buf
+ 5; cp
++) {
893 if (*cp
< '0' || *cp
> '7')
895 mode
= (mode
<< 3) | (*cp
- '0');
898 SCREWUP("mode not delimited");
900 for (size
= 0; isdigit(*cp
);)
901 size
= size
* 10 + (*cp
++ - '0');
903 SCREWUP("size not delimited");
904 if ((strchr(cp
, '/') != NULL
) || (strcmp(cp
, "..") == 0)) {
905 run_err("error: unexpected filename: %s", cp
);
909 static char *namebuf
;
910 static size_t cursize
;
913 need
= strlen(targ
) + strlen(cp
) + 250;
914 if (need
> cursize
) {
917 namebuf
= xmalloc(need
);
920 (void) snprintf(namebuf
, need
, "%s%s%s", targ
,
921 strcmp(targ
, "/") ? "/" : "", cp
);
926 exists
= stat(np
, &stb
) == 0;
928 int mod_flag
= pflag
;
930 SCREWUP("received directory without -r");
932 if (!S_ISDIR(stb
.st_mode
)) {
937 (void) chmod(np
, mode
);
939 /* Handle copying from a read-only
942 if (mkdir(np
, mode
| S_IRWXU
) < 0)
945 vect
[0] = xstrdup(np
);
949 if (utimes(vect
[0], tv
) < 0)
950 run_err("%s: set times: %s",
951 vect
[0], strerror(errno
));
954 (void) chmod(vect
[0], mode
);
961 if ((ofd
= open(np
, O_WRONLY
|O_CREAT
, mode
)) < 0) {
962 bad
: run_err("%s: %s", np
, strerror(errno
));
965 (void) atomicio(vwrite
, remout
, "", 1);
966 if ((bp
= allocbuf(&buffer
, ofd
, 4096)) == NULL
) {
975 start_progress_meter(curfile
, size
, &statbytes
);
976 for (count
= i
= 0; i
< size
; i
+= 4096) {
982 j
= atomicio(read
, remin
, cp
, amt
);
984 run_err("%s", j
? strerror(errno
) :
985 "dropped connection");
996 if (count
== bp
->cnt
) {
997 /* Keep reading so we stay sync'd up. */
999 if (atomicio(vwrite
, ofd
, bp
->buf
,
1010 stop_progress_meter();
1011 if (count
!= 0 && wrerr
== NO
&&
1012 atomicio(vwrite
, ofd
, bp
->buf
, count
) != count
) {
1016 if (wrerr
== NO
&& ftruncate(ofd
, size
) != 0) {
1017 run_err("%s: truncate: %s", np
, strerror(errno
));
1021 if (exists
|| omode
!= mode
)
1023 if (fchmod(ofd
, omode
)) {
1024 #else /* HAVE_FCHMOD */
1025 if (chmod(np
, omode
)) {
1026 #endif /* HAVE_FCHMOD */
1027 run_err("%s: set mode: %s",
1028 np
, strerror(errno
));
1032 if (!exists
&& omode
!= mode
)
1034 if (fchmod(ofd
, omode
& ~mask
)) {
1035 #else /* HAVE_FCHMOD */
1036 if (chmod(np
, omode
& ~mask
)) {
1037 #endif /* HAVE_FCHMOD */
1038 run_err("%s: set mode: %s",
1039 np
, strerror(errno
));
1043 if (close(ofd
) == -1) {
1048 if (setimes
&& wrerr
== NO
) {
1050 if (utimes(np
, tv
) < 0) {
1051 run_err("%s: set times: %s",
1052 np
, strerror(errno
));
1058 run_err("%s: %s", np
, strerror(wrerrno
));
1061 (void) atomicio(vwrite
, remout
, "", 1);
1068 run_err("protocol error: %s", why
);
1075 char ch
, *cp
, resp
, rbuf
[2048];
1077 if (atomicio(read
, remin
, &resp
, sizeof(resp
)) != sizeof(resp
))
1087 case 1: /* error, followed by error msg */
1088 case 2: /* fatal error, "" */
1090 if (atomicio(read
, remin
, &ch
, sizeof(ch
)) != sizeof(ch
))
1093 } while (cp
< &rbuf
[sizeof(rbuf
) - 1] && ch
!= '\n');
1096 (void) atomicio(vwrite
, STDERR_FILENO
, rbuf
, cp
- rbuf
);
1108 (void) fprintf(stderr
,
1109 "usage: scp [-1246BCpqrv] [-c cipher] [-F ssh_config] [-i identity_file]\n"
1110 " [-l limit] [-o ssh_option] [-P port] [-S program]\n"
1111 " [[user@]host1:]file1 [...] [[user@]host2:]file2\n");
1116 run_err(const char *fmt
,...)
1122 if (fp
!= NULL
|| (remout
!= -1 && (fp
= fdopen(remout
, "w")))) {
1123 (void) fprintf(fp
, "%c", 0x01);
1124 (void) fprintf(fp
, "scp: ");
1126 (void) vfprintf(fp
, fmt
, ap
);
1128 (void) fprintf(fp
, "\n");
1134 vfprintf(stderr
, fmt
, ap
);
1136 fprintf(stderr
, "\n");
1145 if (!stat(cp
, &stb
)) {
1146 if (S_ISDIR(stb
.st_mode
))
1150 run_err("%s: %s", cp
, strerror(errno
));
1165 if (!isalpha(c
) && !isdigit(c
)) {
1180 bad
: fprintf(stderr
, "%s: invalid user name\n", cp0
);
1185 allocbuf(BUF
*bp
, int fd
, int blksize
)
1188 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1191 if (fstat(fd
, &stb
) < 0) {
1192 run_err("fstat: %s", strerror(errno
));
1195 size
= roundup(stb
.st_blksize
, blksize
);
1198 #else /* HAVE_STRUCT_STAT_ST_BLKSIZE */
1200 #endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
1201 if (bp
->cnt
>= size
)
1203 if (bp
->buf
== NULL
)
1204 bp
->buf
= xmalloc(size
);
1206 bp
->buf
= xrealloc(bp
->buf
, 1, size
);
1207 memset(bp
->buf
, 0, size
);
1216 write(STDERR_FILENO
, "lost connection\n", 16);