xref: /freebsd/crypto/openssh/scp.c (revision 0fdf8fae8b569bf9fff3b5171e669dcd7cf9c79e)
1*0fdf8faeSEd Maste /* $OpenBSD: scp.c,v 1.261 2024/06/26 23:14:14 deraadt Exp $ */
2511b41d2SMark Murray /*
3b66f2d16SKris Kennaway  * scp - secure remote copy.  This is basically patched BSD rcp which
4b66f2d16SKris Kennaway  * uses ssh to do the data transfer (instead of using rcmd).
5511b41d2SMark Murray  *
6b66f2d16SKris Kennaway  * NOTE: This version should NOT be suid root.  (This uses ssh to
7b66f2d16SKris Kennaway  * do the transfer and ssh has the necessary privileges.)
8511b41d2SMark Murray  *
9511b41d2SMark Murray  * 1995 Timo Rinne <tri@iki.fi>, Tatu Ylonen <ylo@cs.hut.fi>
10511b41d2SMark Murray  *
11b66f2d16SKris Kennaway  * As far as I am concerned, the code I have written for this software
12b66f2d16SKris Kennaway  * can be used freely for any purpose.  Any derived versions of this
13b66f2d16SKris Kennaway  * software must be clearly marked as such, and if the derived work is
14b66f2d16SKris Kennaway  * incompatible with the protocol description in the RFC file, it must be
15b66f2d16SKris Kennaway  * called by a name other than "ssh" or "Secure Shell".
16b66f2d16SKris Kennaway  */
17b66f2d16SKris Kennaway /*
18b66f2d16SKris Kennaway  * Copyright (c) 1999 Theo de Raadt.  All rights reserved.
19b66f2d16SKris Kennaway  * Copyright (c) 1999 Aaron Campbell.  All rights reserved.
20b66f2d16SKris Kennaway  *
21b66f2d16SKris Kennaway  * Redistribution and use in source and binary forms, with or without
22b66f2d16SKris Kennaway  * modification, are permitted provided that the following conditions
23b66f2d16SKris Kennaway  * are met:
24b66f2d16SKris Kennaway  * 1. Redistributions of source code must retain the above copyright
25b66f2d16SKris Kennaway  *    notice, this list of conditions and the following disclaimer.
26b66f2d16SKris Kennaway  * 2. Redistributions in binary form must reproduce the above copyright
27b66f2d16SKris Kennaway  *    notice, this list of conditions and the following disclaimer in the
28b66f2d16SKris Kennaway  *    documentation and/or other materials provided with the distribution.
29b66f2d16SKris Kennaway  *
30b66f2d16SKris Kennaway  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
31b66f2d16SKris Kennaway  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32b66f2d16SKris Kennaway  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
33b66f2d16SKris Kennaway  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
34b66f2d16SKris Kennaway  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
35b66f2d16SKris Kennaway  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36b66f2d16SKris Kennaway  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37b66f2d16SKris Kennaway  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38b66f2d16SKris Kennaway  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
39b66f2d16SKris Kennaway  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40511b41d2SMark Murray  */
41511b41d2SMark Murray 
42511b41d2SMark Murray /*
43b66f2d16SKris Kennaway  * Parts from:
44b66f2d16SKris Kennaway  *
45511b41d2SMark Murray  * Copyright (c) 1983, 1990, 1992, 1993, 1995
46511b41d2SMark Murray  *	The Regents of the University of California.  All rights reserved.
47511b41d2SMark Murray  *
48511b41d2SMark Murray  * Redistribution and use in source and binary forms, with or without
49511b41d2SMark Murray  * modification, are permitted provided that the following conditions
50511b41d2SMark Murray  * are met:
51511b41d2SMark Murray  * 1. Redistributions of source code must retain the above copyright
52511b41d2SMark Murray  *    notice, this list of conditions and the following disclaimer.
53511b41d2SMark Murray  * 2. Redistributions in binary form must reproduce the above copyright
54511b41d2SMark Murray  *    notice, this list of conditions and the following disclaimer in the
55511b41d2SMark Murray  *    documentation and/or other materials provided with the distribution.
56cf2b5f3bSDag-Erling Smørgrav  * 3. Neither the name of the University nor the names of its contributors
57511b41d2SMark Murray  *    may be used to endorse or promote products derived from this software
58511b41d2SMark Murray  *    without specific prior written permission.
59511b41d2SMark Murray  *
60511b41d2SMark Murray  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
61511b41d2SMark Murray  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
62511b41d2SMark Murray  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
63511b41d2SMark Murray  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
64511b41d2SMark Murray  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
65511b41d2SMark Murray  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
66511b41d2SMark Murray  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
67511b41d2SMark Murray  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
68511b41d2SMark Murray  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
69511b41d2SMark Murray  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
70511b41d2SMark Murray  * SUCH DAMAGE.
71511b41d2SMark Murray  *
72511b41d2SMark Murray  */
73511b41d2SMark Murray 
74511b41d2SMark Murray #include "includes.h"
75333ee039SDag-Erling Smørgrav 
76333ee039SDag-Erling Smørgrav #include <sys/types.h>
77333ee039SDag-Erling Smørgrav #ifdef HAVE_SYS_STAT_H
78333ee039SDag-Erling Smørgrav # include <sys/stat.h>
79333ee039SDag-Erling Smørgrav #endif
80d4af9e69SDag-Erling Smørgrav #ifdef HAVE_POLL_H
81d4af9e69SDag-Erling Smørgrav #include <poll.h>
82d4af9e69SDag-Erling Smørgrav #else
83d4af9e69SDag-Erling Smørgrav # ifdef HAVE_SYS_POLL_H
84d4af9e69SDag-Erling Smørgrav #  include <sys/poll.h>
85d4af9e69SDag-Erling Smørgrav # endif
86d4af9e69SDag-Erling Smørgrav #endif
87333ee039SDag-Erling Smørgrav #ifdef HAVE_SYS_TIME_H
88333ee039SDag-Erling Smørgrav # include <sys/time.h>
89333ee039SDag-Erling Smørgrav #endif
90333ee039SDag-Erling Smørgrav #include <sys/wait.h>
91333ee039SDag-Erling Smørgrav #include <sys/uio.h>
92333ee039SDag-Erling Smørgrav 
93333ee039SDag-Erling Smørgrav #include <ctype.h>
94333ee039SDag-Erling Smørgrav #include <dirent.h>
95333ee039SDag-Erling Smørgrav #include <errno.h>
96333ee039SDag-Erling Smørgrav #include <fcntl.h>
9719261079SEd Maste #ifdef HAVE_FNMATCH_H
98afde5170SEd Maste #include <fnmatch.h>
9919261079SEd Maste #endif
10019261079SEd Maste #ifdef USE_SYSTEM_GLOB
10119261079SEd Maste # include <glob.h>
10219261079SEd Maste #else
10319261079SEd Maste # include "openbsd-compat/glob.h"
10419261079SEd Maste #endif
10519261079SEd Maste #ifdef HAVE_LIBGEN_H
10619261079SEd Maste #include <libgen.h>
10719261079SEd Maste #endif
108bc5531deSDag-Erling Smørgrav #include <limits.h>
109f374ba41SEd Maste #ifdef HAVE_UTIL_H
110f374ba41SEd Maste # include <util.h>
111f374ba41SEd Maste #endif
112076ad2f8SDag-Erling Smørgrav #include <locale.h>
113333ee039SDag-Erling Smørgrav #include <pwd.h>
114333ee039SDag-Erling Smørgrav #include <signal.h>
115333ee039SDag-Erling Smørgrav #include <stdarg.h>
1164f52dfbbSDag-Erling Smørgrav #ifdef HAVE_STDINT_H
1174f52dfbbSDag-Erling Smørgrav # include <stdint.h>
1184f52dfbbSDag-Erling Smørgrav #endif
119333ee039SDag-Erling Smørgrav #include <stdio.h>
120333ee039SDag-Erling Smørgrav #include <stdlib.h>
121333ee039SDag-Erling Smørgrav #include <string.h>
122333ee039SDag-Erling Smørgrav #include <time.h>
123333ee039SDag-Erling Smørgrav #include <unistd.h>
1246888a9beSDag-Erling Smørgrav #if defined(HAVE_STRNVIS) && defined(HAVE_VIS_H) && !defined(BROKEN_STRNVIS)
125d4af9e69SDag-Erling Smørgrav #include <vis.h>
126d4af9e69SDag-Erling Smørgrav #endif
127511b41d2SMark Murray 
128511b41d2SMark Murray #include "xmalloc.h"
12947dd1d1bSDag-Erling Smørgrav #include "ssh.h"
1301e8db6e2SBrian Feldman #include "atomicio.h"
1311e8db6e2SBrian Feldman #include "pathnames.h"
1321e8db6e2SBrian Feldman #include "log.h"
133ae1f160dSDag-Erling Smørgrav #include "misc.h"
134e73e9afaSDag-Erling Smørgrav #include "progressmeter.h"
135076ad2f8SDag-Erling Smørgrav #include "utf8.h"
1361323ec57SEd Maste #include "sftp.h"
137511b41d2SMark Murray 
13819261079SEd Maste #include "sftp-common.h"
13919261079SEd Maste #include "sftp-client.h"
14019261079SEd Maste 
14183d2307dSDag-Erling Smørgrav extern char *__progname;
14283d2307dSDag-Erling Smørgrav 
143d4af9e69SDag-Erling Smørgrav #define COPY_BUFLEN	16384
144d4af9e69SDag-Erling Smørgrav 
14519261079SEd Maste int do_cmd(char *, char *, char *, int, int, char *, int *, int *, pid_t *);
14619261079SEd Maste int do_cmd2(char *, char *, int, char *, int, int);
147511b41d2SMark Murray 
148ae1f160dSDag-Erling Smørgrav /* Struct for addargs */
149ae1f160dSDag-Erling Smørgrav arglist args;
1504a421b63SDag-Erling Smørgrav arglist remote_remote_args;
1515b9b2fafSBrian Feldman 
152e73e9afaSDag-Erling Smørgrav /* Bandwidth limit */
1534a421b63SDag-Erling Smørgrav long long limit_kbps = 0;
1544a421b63SDag-Erling Smørgrav struct bwlimit bwlimit;
155511b41d2SMark Murray 
156511b41d2SMark Murray /* Name of current file being transferred. */
157511b41d2SMark Murray char *curfile;
158511b41d2SMark Murray 
159511b41d2SMark Murray /* This is set to non-zero to enable verbose mode. */
160511b41d2SMark Murray int verbose_mode = 0;
16119261079SEd Maste LogLevel log_level = SYSLOG_LEVEL_INFO;
162511b41d2SMark Murray 
163511b41d2SMark Murray /* This is set to zero if the progressmeter is not desired. */
164511b41d2SMark Murray int showprogress = 1;
165511b41d2SMark Murray 
1664a421b63SDag-Erling Smørgrav /*
1674a421b63SDag-Erling Smørgrav  * This is set to non-zero if remote-remote copy should be piped
1684a421b63SDag-Erling Smørgrav  * through this process.
1694a421b63SDag-Erling Smørgrav  */
17019261079SEd Maste int throughlocal = 1;
1714a421b63SDag-Erling Smørgrav 
17247dd1d1bSDag-Erling Smørgrav /* Non-standard port to use for the ssh connection or -1. */
17347dd1d1bSDag-Erling Smørgrav int sshport = -1;
17447dd1d1bSDag-Erling Smørgrav 
175b66f2d16SKris Kennaway /* This is the program to execute for the secured connection. ("ssh" or -S) */
1761e8db6e2SBrian Feldman char *ssh_program = _PATH_SSH_PROGRAM;
177b66f2d16SKris Kennaway 
178e73e9afaSDag-Erling Smørgrav /* This is used to store the pid of ssh_program */
179cf2b5f3bSDag-Erling Smørgrav pid_t do_cmd_pid = -1;
18019261079SEd Maste pid_t do_cmd_pid2 = -1;
18119261079SEd Maste 
182f374ba41SEd Maste /* SFTP copy parameters */
183f374ba41SEd Maste size_t sftp_copy_buflen;
184f374ba41SEd Maste size_t sftp_nrequests;
185f374ba41SEd Maste 
18619261079SEd Maste /* Needed for sftp */
18719261079SEd Maste volatile sig_atomic_t interrupted = 0;
18819261079SEd Maste 
189edf85781SEd Maste int sftp_glob(struct sftp_conn *, const char *, int,
19019261079SEd Maste     int (*)(const char *, int), glob_t *); /* proto for sftp-glob.c */
191cf2b5f3bSDag-Erling Smørgrav 
192cf2b5f3bSDag-Erling Smørgrav static void
killchild(int signo)193cf2b5f3bSDag-Erling Smørgrav killchild(int signo)
194cf2b5f3bSDag-Erling Smørgrav {
195aa49c926SDag-Erling Smørgrav 	if (do_cmd_pid > 1) {
196d4ecd108SDag-Erling Smørgrav 		kill(do_cmd_pid, signo ? signo : SIGTERM);
197535af610SEd Maste 		(void)waitpid(do_cmd_pid, NULL, 0);
198aa49c926SDag-Erling Smørgrav 	}
19919261079SEd Maste 	if (do_cmd_pid2 > 1) {
20019261079SEd Maste 		kill(do_cmd_pid2, signo ? signo : SIGTERM);
201535af610SEd Maste 		(void)waitpid(do_cmd_pid2, NULL, 0);
20219261079SEd Maste 	}
203cf2b5f3bSDag-Erling Smørgrav 
204d4ecd108SDag-Erling Smørgrav 	if (signo)
205cf2b5f3bSDag-Erling Smørgrav 		_exit(1);
206d4ecd108SDag-Erling Smørgrav 	exit(1);
207cf2b5f3bSDag-Erling Smørgrav }
208e73e9afaSDag-Erling Smørgrav 
209e2f6069cSDag-Erling Smørgrav static void
suspone(int pid,int signo)21019261079SEd Maste suspone(int pid, int signo)
211e2f6069cSDag-Erling Smørgrav {
212e2f6069cSDag-Erling Smørgrav 	int status;
213e2f6069cSDag-Erling Smørgrav 
21419261079SEd Maste 	if (pid > 1) {
21519261079SEd Maste 		kill(pid, signo);
21619261079SEd Maste 		while (waitpid(pid, &status, WUNTRACED) == -1 &&
217e2f6069cSDag-Erling Smørgrav 		    errno == EINTR)
218e2f6069cSDag-Erling Smørgrav 			;
219e2f6069cSDag-Erling Smørgrav 	}
220e2f6069cSDag-Erling Smørgrav }
221e2f6069cSDag-Erling Smørgrav 
22219261079SEd Maste static void
suspchild(int signo)22319261079SEd Maste suspchild(int signo)
22419261079SEd Maste {
225*0fdf8faeSEd Maste 	int save_errno = errno;
22619261079SEd Maste 	suspone(do_cmd_pid, signo);
22719261079SEd Maste 	suspone(do_cmd_pid2, signo);
22819261079SEd Maste 	kill(getpid(), SIGSTOP);
229*0fdf8faeSEd Maste 	errno = save_errno;
23019261079SEd Maste }
23119261079SEd Maste 
232b74df5b2SDag-Erling Smørgrav static int
do_local_cmd(arglist * a)233b74df5b2SDag-Erling Smørgrav do_local_cmd(arglist *a)
234b74df5b2SDag-Erling Smørgrav {
235b74df5b2SDag-Erling Smørgrav 	u_int i;
236b74df5b2SDag-Erling Smørgrav 	int status;
237b74df5b2SDag-Erling Smørgrav 	pid_t pid;
238b74df5b2SDag-Erling Smørgrav 
239b74df5b2SDag-Erling Smørgrav 	if (a->num == 0)
240b74df5b2SDag-Erling Smørgrav 		fatal("do_local_cmd: no arguments");
241b74df5b2SDag-Erling Smørgrav 
242b74df5b2SDag-Erling Smørgrav 	if (verbose_mode) {
243b74df5b2SDag-Erling Smørgrav 		fprintf(stderr, "Executing:");
244b74df5b2SDag-Erling Smørgrav 		for (i = 0; i < a->num; i++)
245076ad2f8SDag-Erling Smørgrav 			fmprintf(stderr, " %s", a->list[i]);
246b74df5b2SDag-Erling Smørgrav 		fprintf(stderr, "\n");
247b74df5b2SDag-Erling Smørgrav 	}
248b74df5b2SDag-Erling Smørgrav 	if ((pid = fork()) == -1)
249b74df5b2SDag-Erling Smørgrav 		fatal("do_local_cmd: fork: %s", strerror(errno));
250b74df5b2SDag-Erling Smørgrav 
251b74df5b2SDag-Erling Smørgrav 	if (pid == 0) {
252b74df5b2SDag-Erling Smørgrav 		execvp(a->list[0], a->list);
253b74df5b2SDag-Erling Smørgrav 		perror(a->list[0]);
254b74df5b2SDag-Erling Smørgrav 		exit(1);
255b74df5b2SDag-Erling Smørgrav 	}
256b74df5b2SDag-Erling Smørgrav 
257b74df5b2SDag-Erling Smørgrav 	do_cmd_pid = pid;
25819261079SEd Maste 	ssh_signal(SIGTERM, killchild);
25919261079SEd Maste 	ssh_signal(SIGINT, killchild);
26019261079SEd Maste 	ssh_signal(SIGHUP, killchild);
261b74df5b2SDag-Erling Smørgrav 
262b74df5b2SDag-Erling Smørgrav 	while (waitpid(pid, &status, 0) == -1)
263b74df5b2SDag-Erling Smørgrav 		if (errno != EINTR)
264b74df5b2SDag-Erling Smørgrav 			fatal("do_local_cmd: waitpid: %s", strerror(errno));
265b74df5b2SDag-Erling Smørgrav 
266b74df5b2SDag-Erling Smørgrav 	do_cmd_pid = -1;
267b74df5b2SDag-Erling Smørgrav 
268b74df5b2SDag-Erling Smørgrav 	if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
269b74df5b2SDag-Erling Smørgrav 		return (-1);
270b74df5b2SDag-Erling Smørgrav 
271b74df5b2SDag-Erling Smørgrav 	return (0);
272b74df5b2SDag-Erling Smørgrav }
273b74df5b2SDag-Erling Smørgrav 
274511b41d2SMark Murray /*
275511b41d2SMark Murray  * This function executes the given command as the specified user on the
276511b41d2SMark Murray  * given host.  This returns < 0 if execution fails, and >= 0 otherwise. This
277511b41d2SMark Murray  * assigns the input and output file descriptors on success.
278511b41d2SMark Murray  */
279511b41d2SMark Murray 
280511b41d2SMark Murray int
do_cmd(char * program,char * host,char * remuser,int port,int subsystem,char * cmd,int * fdin,int * fdout,pid_t * pid)28119261079SEd Maste do_cmd(char *program, char *host, char *remuser, int port, int subsystem,
28219261079SEd Maste     char *cmd, int *fdin, int *fdout, pid_t *pid)
283511b41d2SMark Murray {
284f374ba41SEd Maste #ifdef USE_PIPES
285f374ba41SEd Maste 	int pin[2], pout[2];
286f374ba41SEd Maste #else
287f374ba41SEd Maste 	int sv[2];
288f374ba41SEd Maste #endif
289511b41d2SMark Murray 
290511b41d2SMark Murray 	if (verbose_mode)
291076ad2f8SDag-Erling Smørgrav 		fmprintf(stderr,
292ae1f160dSDag-Erling Smørgrav 		    "Executing: program %s host %s, user %s, command %s\n",
29319261079SEd Maste 		    program, host,
294ae1f160dSDag-Erling Smørgrav 		    remuser ? remuser : "(unspecified)", cmd);
295511b41d2SMark Murray 
29647dd1d1bSDag-Erling Smørgrav 	if (port == -1)
29747dd1d1bSDag-Erling Smørgrav 		port = sshport;
29847dd1d1bSDag-Erling Smørgrav 
299f374ba41SEd Maste #ifdef USE_PIPES
300f374ba41SEd Maste 	if (pipe(pin) == -1 || pipe(pout) == -1)
301333ee039SDag-Erling Smørgrav 		fatal("pipe: %s", strerror(errno));
302f374ba41SEd Maste #else
303511b41d2SMark Murray 	/* Create a socket pair for communicating with ssh. */
304f374ba41SEd Maste 	if (socketpair(AF_UNIX, SOCK_STREAM, 0, sv) == -1)
305f374ba41SEd Maste 		fatal("socketpair: %s", strerror(errno));
306f374ba41SEd Maste #endif
307511b41d2SMark Murray 
30819261079SEd Maste 	ssh_signal(SIGTSTP, suspchild);
30919261079SEd Maste 	ssh_signal(SIGTTIN, suspchild);
31019261079SEd Maste 	ssh_signal(SIGTTOU, suspchild);
311e2f6069cSDag-Erling Smørgrav 
312cf2b5f3bSDag-Erling Smørgrav 	/* Fork a child to execute the command on the remote host using ssh. */
31319261079SEd Maste 	*pid = fork();
314f374ba41SEd Maste 	switch (*pid) {
315f374ba41SEd Maste 	case -1:
316f374ba41SEd Maste 		fatal("fork: %s", strerror(errno));
317f374ba41SEd Maste 	case 0:
318511b41d2SMark Murray 		/* Child. */
319f374ba41SEd Maste #ifdef USE_PIPES
320f374ba41SEd Maste 		if (dup2(pin[0], STDIN_FILENO) == -1 ||
321f374ba41SEd Maste 		    dup2(pout[1], STDOUT_FILENO) == -1) {
322f374ba41SEd Maste 			error("dup2: %s", strerror(errno));
323f374ba41SEd Maste 			_exit(1);
324f374ba41SEd Maste 		}
325f374ba41SEd Maste 		close(pin[0]);
326511b41d2SMark Murray 		close(pin[1]);
327511b41d2SMark Murray 		close(pout[0]);
328511b41d2SMark Murray 		close(pout[1]);
329f374ba41SEd Maste #else
330f374ba41SEd Maste 		if (dup2(sv[0], STDIN_FILENO) == -1 ||
331f374ba41SEd Maste 		    dup2(sv[0], STDOUT_FILENO) == -1) {
332f374ba41SEd Maste 			error("dup2: %s", strerror(errno));
333f374ba41SEd Maste 			_exit(1);
334f374ba41SEd Maste 		}
335f374ba41SEd Maste 		close(sv[0]);
336f374ba41SEd Maste 		close(sv[1]);
337f374ba41SEd Maste #endif
33819261079SEd Maste 		replacearg(&args, 0, "%s", program);
33947dd1d1bSDag-Erling Smørgrav 		if (port != -1) {
34047dd1d1bSDag-Erling Smørgrav 			addargs(&args, "-p");
34147dd1d1bSDag-Erling Smørgrav 			addargs(&args, "%d", port);
34247dd1d1bSDag-Erling Smørgrav 		}
343b15c8340SDag-Erling Smørgrav 		if (remuser != NULL) {
344b15c8340SDag-Erling Smørgrav 			addargs(&args, "-l");
345b15c8340SDag-Erling Smørgrav 			addargs(&args, "%s", remuser);
346b15c8340SDag-Erling Smørgrav 		}
34719261079SEd Maste 		if (subsystem)
34819261079SEd Maste 			addargs(&args, "-s");
349b15c8340SDag-Erling Smørgrav 		addargs(&args, "--");
350ae1f160dSDag-Erling Smørgrav 		addargs(&args, "%s", host);
351ae1f160dSDag-Erling Smørgrav 		addargs(&args, "%s", cmd);
352511b41d2SMark Murray 
35319261079SEd Maste 		execvp(program, args.list);
35419261079SEd Maste 		perror(program);
355f374ba41SEd Maste 		_exit(1);
356f374ba41SEd Maste 	default:
357511b41d2SMark Murray 		/* Parent.  Close the other side, and return the local side. */
358f374ba41SEd Maste #ifdef USE_PIPES
359511b41d2SMark Murray 		close(pin[0]);
360511b41d2SMark Murray 		close(pout[1]);
361f374ba41SEd Maste 		*fdout = pin[1];
362511b41d2SMark Murray 		*fdin = pout[0];
363f374ba41SEd Maste #else
364f374ba41SEd Maste 		close(sv[0]);
365f374ba41SEd Maste 		*fdin = sv[1];
366f374ba41SEd Maste 		*fdout = sv[1];
367f374ba41SEd Maste #endif
36819261079SEd Maste 		ssh_signal(SIGTERM, killchild);
36919261079SEd Maste 		ssh_signal(SIGINT, killchild);
37019261079SEd Maste 		ssh_signal(SIGHUP, killchild);
371511b41d2SMark Murray 		return 0;
372511b41d2SMark Murray 	}
373f374ba41SEd Maste }
374511b41d2SMark Murray 
3754a421b63SDag-Erling Smørgrav /*
376190cef3dSDag-Erling Smørgrav  * This function executes a command similar to do_cmd(), but expects the
3774a421b63SDag-Erling Smørgrav  * input and output descriptors to be setup by a previous call to do_cmd().
3784a421b63SDag-Erling Smørgrav  * This way the input and output of two commands can be connected.
3794a421b63SDag-Erling Smørgrav  */
3804a421b63SDag-Erling Smørgrav int
do_cmd2(char * host,char * remuser,int port,char * cmd,int fdin,int fdout)38119261079SEd Maste do_cmd2(char *host, char *remuser, int port, char *cmd,
38219261079SEd Maste     int fdin, int fdout)
3834a421b63SDag-Erling Smørgrav {
3844a421b63SDag-Erling Smørgrav 	int status;
38519261079SEd Maste 	pid_t pid;
3864a421b63SDag-Erling Smørgrav 
3874a421b63SDag-Erling Smørgrav 	if (verbose_mode)
388076ad2f8SDag-Erling Smørgrav 		fmprintf(stderr,
3894a421b63SDag-Erling Smørgrav 		    "Executing: 2nd program %s host %s, user %s, command %s\n",
3904a421b63SDag-Erling Smørgrav 		    ssh_program, host,
3914a421b63SDag-Erling Smørgrav 		    remuser ? remuser : "(unspecified)", cmd);
3924a421b63SDag-Erling Smørgrav 
39347dd1d1bSDag-Erling Smørgrav 	if (port == -1)
39447dd1d1bSDag-Erling Smørgrav 		port = sshport;
39547dd1d1bSDag-Erling Smørgrav 
3964a421b63SDag-Erling Smørgrav 	/* Fork a child to execute the command on the remote host using ssh. */
3974a421b63SDag-Erling Smørgrav 	pid = fork();
3984a421b63SDag-Erling Smørgrav 	if (pid == 0) {
3994d3fc8b0SEd Maste 		if (dup2(fdin, 0) == -1)
4004d3fc8b0SEd Maste 			perror("dup2");
4014d3fc8b0SEd Maste 		if (dup2(fdout, 1) == -1)
4024d3fc8b0SEd Maste 			perror("dup2");
4034a421b63SDag-Erling Smørgrav 
4044a421b63SDag-Erling Smørgrav 		replacearg(&args, 0, "%s", ssh_program);
40547dd1d1bSDag-Erling Smørgrav 		if (port != -1) {
40647dd1d1bSDag-Erling Smørgrav 			addargs(&args, "-p");
40747dd1d1bSDag-Erling Smørgrav 			addargs(&args, "%d", port);
40847dd1d1bSDag-Erling Smørgrav 		}
4094a421b63SDag-Erling Smørgrav 		if (remuser != NULL) {
4104a421b63SDag-Erling Smørgrav 			addargs(&args, "-l");
4114a421b63SDag-Erling Smørgrav 			addargs(&args, "%s", remuser);
4124a421b63SDag-Erling Smørgrav 		}
41319261079SEd Maste 		addargs(&args, "-oBatchMode=yes");
4144a421b63SDag-Erling Smørgrav 		addargs(&args, "--");
4154a421b63SDag-Erling Smørgrav 		addargs(&args, "%s", host);
4164a421b63SDag-Erling Smørgrav 		addargs(&args, "%s", cmd);
4174a421b63SDag-Erling Smørgrav 
4184a421b63SDag-Erling Smørgrav 		execvp(ssh_program, args.list);
4194a421b63SDag-Erling Smørgrav 		perror(ssh_program);
4204a421b63SDag-Erling Smørgrav 		exit(1);
4214a421b63SDag-Erling Smørgrav 	} else if (pid == -1) {
4224a421b63SDag-Erling Smørgrav 		fatal("fork: %s", strerror(errno));
4234a421b63SDag-Erling Smørgrav 	}
4244a421b63SDag-Erling Smørgrav 	while (waitpid(pid, &status, 0) == -1)
4254a421b63SDag-Erling Smørgrav 		if (errno != EINTR)
4264a421b63SDag-Erling Smørgrav 			fatal("do_cmd2: waitpid: %s", strerror(errno));
4274a421b63SDag-Erling Smørgrav 	return 0;
4284a421b63SDag-Erling Smørgrav }
4294a421b63SDag-Erling Smørgrav 
430511b41d2SMark Murray typedef struct {
431d4ecd108SDag-Erling Smørgrav 	size_t cnt;
432511b41d2SMark Murray 	char *buf;
433511b41d2SMark Murray } BUF;
434511b41d2SMark Murray 
435511b41d2SMark Murray BUF *allocbuf(BUF *, int, int);
436511b41d2SMark Murray void lostconn(int);
437511b41d2SMark Murray int okname(char *);
43819261079SEd Maste void run_err(const char *,...)
43919261079SEd Maste     __attribute__((__format__ (printf, 1, 2)))
44019261079SEd Maste     __attribute__((__nonnull__ (1)));
44119261079SEd Maste int note_err(const char *,...)
44219261079SEd Maste     __attribute__((__format__ (printf, 1, 2)));
443511b41d2SMark Murray void verifydir(char *);
444511b41d2SMark Murray 
445511b41d2SMark Murray struct passwd *pwd;
446511b41d2SMark Murray uid_t userid;
44719261079SEd Maste int errs, remin, remout, remin2, remout2;
448afde5170SEd Maste int Tflag, pflag, iamremote, iamrecursive, targetshouldbedirectory;
449511b41d2SMark Murray 
450511b41d2SMark Murray #define	CMDNEEDS	64
451511b41d2SMark Murray char cmd[CMDNEEDS];		/* must hold "rcp -r -p -d\0" */
452511b41d2SMark Murray 
45319261079SEd Maste enum scp_mode_e {
45419261079SEd Maste 	MODE_SCP,
45519261079SEd Maste 	MODE_SFTP
45619261079SEd Maste };
45719261079SEd Maste 
458511b41d2SMark Murray int response(void);
459511b41d2SMark Murray void rsource(char *, struct stat *);
460afde5170SEd Maste void sink(int, char *[], const char *);
461511b41d2SMark Murray void source(int, char *[]);
46219261079SEd Maste void tolocal(int, char *[], enum scp_mode_e, char *sftp_direct);
46319261079SEd Maste void toremote(int, char *[], enum scp_mode_e, char *sftp_direct);
464511b41d2SMark Murray void usage(void);
465511b41d2SMark Murray 
46619261079SEd Maste void source_sftp(int, char *, char *, struct sftp_conn *);
46719261079SEd Maste void sink_sftp(int, char *, const char *, struct sftp_conn *);
46819261079SEd Maste void throughlocal_sftp(struct sftp_conn *, struct sftp_conn *,
46919261079SEd Maste     char *, char *);
47019261079SEd Maste 
471511b41d2SMark Murray int
main(int argc,char ** argv)472cf2b5f3bSDag-Erling Smørgrav main(int argc, char **argv)
473511b41d2SMark Murray {
474f374ba41SEd Maste 	int ch, fflag, tflag, status, r, n;
47519261079SEd Maste 	char **newargv, *argv0;
4764a421b63SDag-Erling Smørgrav 	const char *errstr;
477511b41d2SMark Murray 	extern char *optarg;
478511b41d2SMark Murray 	extern int optind;
479fb5aabcbSEd Maste 	enum scp_mode_e mode = MODE_SFTP;
48019261079SEd Maste 	char *sftp_direct = NULL;
481f374ba41SEd Maste 	long long llv;
482511b41d2SMark Murray 
483b74df5b2SDag-Erling Smørgrav 	/* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */
484b74df5b2SDag-Erling Smørgrav 	sanitise_stdfd();
485b74df5b2SDag-Erling Smørgrav 
486ca86bcf2SDag-Erling Smørgrav 	msetlocale();
487076ad2f8SDag-Erling Smørgrav 
488333ee039SDag-Erling Smørgrav 	/* Copy argv, because we modify it */
48919261079SEd Maste 	argv0 = argv[0];
490ca86bcf2SDag-Erling Smørgrav 	newargv = xcalloc(MAXIMUM(argc + 1, 1), sizeof(*newargv));
491333ee039SDag-Erling Smørgrav 	for (n = 0; n < argc; n++)
492333ee039SDag-Erling Smørgrav 		newargv[n] = xstrdup(argv[n]);
493333ee039SDag-Erling Smørgrav 	argv = newargv;
494333ee039SDag-Erling Smørgrav 
495cf2b5f3bSDag-Erling Smørgrav 	__progname = ssh_get_progname(argv[0]);
49683d2307dSDag-Erling Smørgrav 
497e9e8876aSEd Maste 	log_init(argv0, log_level, SYSLOG_FACILITY_USER, 2);
49819261079SEd Maste 
499b74df5b2SDag-Erling Smørgrav 	memset(&args, '\0', sizeof(args));
5004a421b63SDag-Erling Smørgrav 	memset(&remote_remote_args, '\0', sizeof(remote_remote_args));
5014a421b63SDag-Erling Smørgrav 	args.list = remote_remote_args.list = NULL;
502b74df5b2SDag-Erling Smørgrav 	addargs(&args, "%s", ssh_program);
503ae1f160dSDag-Erling Smørgrav 	addargs(&args, "-x");
5044a421b63SDag-Erling Smørgrav 	addargs(&args, "-oPermitLocalCommand=no");
5054a421b63SDag-Erling Smørgrav 	addargs(&args, "-oClearAllForwardings=yes");
50647dd1d1bSDag-Erling Smørgrav 	addargs(&args, "-oRemoteCommand=none");
50747dd1d1bSDag-Erling Smørgrav 	addargs(&args, "-oRequestTTY=no");
5085b9b2fafSBrian Feldman 
509afde5170SEd Maste 	fflag = Tflag = tflag = 0;
510afde5170SEd Maste 	while ((ch = getopt(argc, argv,
511f374ba41SEd Maste 	    "12346ABCTdfOpqRrstvD:F:J:M:P:S:c:i:l:o:X:")) != -1) {
512511b41d2SMark Murray 		switch (ch) {
513511b41d2SMark Murray 		/* User-visible flags. */
514e73e9afaSDag-Erling Smørgrav 		case '1':
5154f52dfbbSDag-Erling Smørgrav 			fatal("SSH protocol v.1 is no longer supported");
5164f52dfbbSDag-Erling Smørgrav 			break;
517e73e9afaSDag-Erling Smørgrav 		case '2':
5184f52dfbbSDag-Erling Smørgrav 			/* Ignored */
5194f52dfbbSDag-Erling Smørgrav 			break;
52019261079SEd Maste 		case 'A':
521511b41d2SMark Murray 		case '4':
522511b41d2SMark Murray 		case '6':
5235b9b2fafSBrian Feldman 		case 'C':
524ae1f160dSDag-Erling Smørgrav 			addargs(&args, "-%c", ch);
5254a421b63SDag-Erling Smørgrav 			addargs(&remote_remote_args, "-%c", ch);
5264a421b63SDag-Erling Smørgrav 			break;
52719261079SEd Maste 		case 'D':
52819261079SEd Maste 			sftp_direct = optarg;
52919261079SEd Maste 			break;
5304a421b63SDag-Erling Smørgrav 		case '3':
5314a421b63SDag-Erling Smørgrav 			throughlocal = 1;
5325b9b2fafSBrian Feldman 			break;
53319261079SEd Maste 		case 'R':
53419261079SEd Maste 			throughlocal = 0;
53519261079SEd Maste 			break;
5365b9b2fafSBrian Feldman 		case 'o':
5375b9b2fafSBrian Feldman 		case 'c':
5385b9b2fafSBrian Feldman 		case 'i':
539ae1f160dSDag-Erling Smørgrav 		case 'F':
54019261079SEd Maste 		case 'J':
5414a421b63SDag-Erling Smørgrav 			addargs(&remote_remote_args, "-%c", ch);
5424a421b63SDag-Erling Smørgrav 			addargs(&remote_remote_args, "%s", optarg);
543b15c8340SDag-Erling Smørgrav 			addargs(&args, "-%c", ch);
544b15c8340SDag-Erling Smørgrav 			addargs(&args, "%s", optarg);
5455b9b2fafSBrian Feldman 			break;
54619261079SEd Maste 		case 'O':
54719261079SEd Maste 			mode = MODE_SCP;
54819261079SEd Maste 			break;
54919261079SEd Maste 		case 's':
55019261079SEd Maste 			mode = MODE_SFTP;
55119261079SEd Maste 			break;
5525b9b2fafSBrian Feldman 		case 'P':
55347dd1d1bSDag-Erling Smørgrav 			sshport = a2port(optarg);
55447dd1d1bSDag-Erling Smørgrav 			if (sshport <= 0)
55547dd1d1bSDag-Erling Smørgrav 				fatal("bad port \"%s\"\n", optarg);
5565b9b2fafSBrian Feldman 			break;
5575b9b2fafSBrian Feldman 		case 'B':
5584a421b63SDag-Erling Smørgrav 			addargs(&remote_remote_args, "-oBatchmode=yes");
5594a421b63SDag-Erling Smørgrav 			addargs(&args, "-oBatchmode=yes");
560511b41d2SMark Murray 			break;
561e73e9afaSDag-Erling Smørgrav 		case 'l':
5624a421b63SDag-Erling Smørgrav 			limit_kbps = strtonum(optarg, 1, 100 * 1024 * 1024,
5634a421b63SDag-Erling Smørgrav 			    &errstr);
5644a421b63SDag-Erling Smørgrav 			if (errstr != NULL)
565e73e9afaSDag-Erling Smørgrav 				usage();
5664a421b63SDag-Erling Smørgrav 			limit_kbps *= 1024; /* kbps */
5674a421b63SDag-Erling Smørgrav 			bandwidth_limit_init(&bwlimit, limit_kbps, COPY_BUFLEN);
568e73e9afaSDag-Erling Smørgrav 			break;
569511b41d2SMark Murray 		case 'p':
570511b41d2SMark Murray 			pflag = 1;
571511b41d2SMark Murray 			break;
572511b41d2SMark Murray 		case 'r':
573511b41d2SMark Murray 			iamrecursive = 1;
574511b41d2SMark Murray 			break;
575b66f2d16SKris Kennaway 		case 'S':
5765b9b2fafSBrian Feldman 			ssh_program = xstrdup(optarg);
5775b9b2fafSBrian Feldman 			break;
5785b9b2fafSBrian Feldman 		case 'v':
579ae1f160dSDag-Erling Smørgrav 			addargs(&args, "-v");
5804a421b63SDag-Erling Smørgrav 			addargs(&remote_remote_args, "-v");
58119261079SEd Maste 			if (verbose_mode == 0)
58219261079SEd Maste 				log_level = SYSLOG_LEVEL_DEBUG1;
58319261079SEd Maste 			else if (log_level < SYSLOG_LEVEL_DEBUG3)
58419261079SEd Maste 				log_level++;
5855b9b2fafSBrian Feldman 			verbose_mode = 1;
5865b9b2fafSBrian Feldman 			break;
5875b9b2fafSBrian Feldman 		case 'q':
5881ec0d754SDag-Erling Smørgrav 			addargs(&args, "-q");
5894a421b63SDag-Erling Smørgrav 			addargs(&remote_remote_args, "-q");
5905b9b2fafSBrian Feldman 			showprogress = 0;
591b66f2d16SKris Kennaway 			break;
592f374ba41SEd Maste 		case 'X':
593f374ba41SEd Maste 			/* Please keep in sync with sftp.c -X */
594f374ba41SEd Maste 			if (strncmp(optarg, "buffer=", 7) == 0) {
595f374ba41SEd Maste 				r = scan_scaled(optarg + 7, &llv);
596f374ba41SEd Maste 				if (r == 0 && (llv <= 0 || llv > 256 * 1024)) {
597f374ba41SEd Maste 					r = -1;
598f374ba41SEd Maste 					errno = EINVAL;
599f374ba41SEd Maste 				}
600f374ba41SEd Maste 				if (r == -1) {
601f374ba41SEd Maste 					fatal("Invalid buffer size \"%s\": %s",
602f374ba41SEd Maste 					     optarg + 7, strerror(errno));
603f374ba41SEd Maste 				}
604f374ba41SEd Maste 				sftp_copy_buflen = (size_t)llv;
605f374ba41SEd Maste 			} else if (strncmp(optarg, "nrequests=", 10) == 0) {
606f374ba41SEd Maste 				llv = strtonum(optarg + 10, 1, 256 * 1024,
607f374ba41SEd Maste 				    &errstr);
608f374ba41SEd Maste 				if (errstr != NULL) {
609f374ba41SEd Maste 					fatal("Invalid number of requests "
610f374ba41SEd Maste 					    "\"%s\": %s", optarg + 10, errstr);
611f374ba41SEd Maste 				}
612f374ba41SEd Maste 				sftp_nrequests = (size_t)llv;
613f374ba41SEd Maste 			} else {
614f374ba41SEd Maste 				fatal("Invalid -X option");
615f374ba41SEd Maste 			}
616f374ba41SEd Maste 			break;
617b66f2d16SKris Kennaway 
618511b41d2SMark Murray 		/* Server options. */
619511b41d2SMark Murray 		case 'd':
620511b41d2SMark Murray 			targetshouldbedirectory = 1;
621511b41d2SMark Murray 			break;
622511b41d2SMark Murray 		case 'f':	/* "from" */
623511b41d2SMark Murray 			iamremote = 1;
624511b41d2SMark Murray 			fflag = 1;
625511b41d2SMark Murray 			break;
626511b41d2SMark Murray 		case 't':	/* "to" */
627511b41d2SMark Murray 			iamremote = 1;
628511b41d2SMark Murray 			tflag = 1;
62983d2307dSDag-Erling Smørgrav #ifdef HAVE_CYGWIN
63083d2307dSDag-Erling Smørgrav 			setmode(0, O_BINARY);
63183d2307dSDag-Erling Smørgrav #endif
632511b41d2SMark Murray 			break;
633afde5170SEd Maste 		case 'T':
634afde5170SEd Maste 			Tflag = 1;
635afde5170SEd Maste 			break;
636511b41d2SMark Murray 		default:
637511b41d2SMark Murray 			usage();
638511b41d2SMark Murray 		}
639afde5170SEd Maste 	}
640511b41d2SMark Murray 	argc -= optind;
641511b41d2SMark Murray 	argv += optind;
642511b41d2SMark Murray 
643e9e8876aSEd Maste 	log_init(argv0, log_level, SYSLOG_FACILITY_USER, 2);
64419261079SEd Maste 
64519261079SEd Maste 	/* Do this last because we want the user to be able to override it */
64619261079SEd Maste 	addargs(&args, "-oForwardAgent=no");
64719261079SEd Maste 
64819261079SEd Maste 	if (iamremote)
64919261079SEd Maste 		mode = MODE_SCP;
65019261079SEd Maste 
651511b41d2SMark Murray 	if ((pwd = getpwuid(userid = getuid())) == NULL)
652cf2b5f3bSDag-Erling Smørgrav 		fatal("unknown user %u", (u_int) userid);
653511b41d2SMark Murray 
654d4af9e69SDag-Erling Smørgrav 	if (!isatty(STDOUT_FILENO))
655511b41d2SMark Murray 		showprogress = 0;
656511b41d2SMark Murray 
657acc1a9efSDag-Erling Smørgrav 	if (pflag) {
658acc1a9efSDag-Erling Smørgrav 		/* Cannot pledge: -p allows setuid/setgid files... */
659acc1a9efSDag-Erling Smørgrav 	} else {
660acc1a9efSDag-Erling Smørgrav 		if (pledge("stdio rpath wpath cpath fattr tty proc exec",
661acc1a9efSDag-Erling Smørgrav 		    NULL) == -1) {
662acc1a9efSDag-Erling Smørgrav 			perror("pledge");
663acc1a9efSDag-Erling Smørgrav 			exit(1);
664acc1a9efSDag-Erling Smørgrav 		}
665acc1a9efSDag-Erling Smørgrav 	}
666acc1a9efSDag-Erling Smørgrav 
667511b41d2SMark Murray 	remin = STDIN_FILENO;
668511b41d2SMark Murray 	remout = STDOUT_FILENO;
669511b41d2SMark Murray 
670511b41d2SMark Murray 	if (fflag) {
671511b41d2SMark Murray 		/* Follow "protocol", send data. */
672511b41d2SMark Murray 		(void) response();
673511b41d2SMark Murray 		source(argc, argv);
674511b41d2SMark Murray 		exit(errs != 0);
675511b41d2SMark Murray 	}
676511b41d2SMark Murray 	if (tflag) {
677511b41d2SMark Murray 		/* Receive data. */
678afde5170SEd Maste 		sink(argc, argv, NULL);
679511b41d2SMark Murray 		exit(errs != 0);
680511b41d2SMark Murray 	}
681511b41d2SMark Murray 	if (argc < 2)
682511b41d2SMark Murray 		usage();
683511b41d2SMark Murray 	if (argc > 2)
684511b41d2SMark Murray 		targetshouldbedirectory = 1;
685511b41d2SMark Murray 
686511b41d2SMark Murray 	remin = remout = -1;
687e73e9afaSDag-Erling Smørgrav 	do_cmd_pid = -1;
688511b41d2SMark Murray 	/* Command to be executed on remote system using "ssh". */
6891e8db6e2SBrian Feldman 	(void) snprintf(cmd, sizeof cmd, "scp%s%s%s%s",
6901e8db6e2SBrian Feldman 	    verbose_mode ? " -v" : "",
691511b41d2SMark Murray 	    iamrecursive ? " -r" : "", pflag ? " -p" : "",
692511b41d2SMark Murray 	    targetshouldbedirectory ? " -d" : "");
693511b41d2SMark Murray 
69419261079SEd Maste 	(void) ssh_signal(SIGPIPE, lostconn);
695511b41d2SMark Murray 
69647dd1d1bSDag-Erling Smørgrav 	if (colon(argv[argc - 1]))	/* Dest is remote host. */
69719261079SEd Maste 		toremote(argc, argv, mode, sftp_direct);
698511b41d2SMark Murray 	else {
699511b41d2SMark Murray 		if (targetshouldbedirectory)
700511b41d2SMark Murray 			verifydir(argv[argc - 1]);
70119261079SEd Maste 		tolocal(argc, argv, mode, sftp_direct);	/* Dest is local host. */
702511b41d2SMark Murray 	}
703e73e9afaSDag-Erling Smørgrav 	/*
704e73e9afaSDag-Erling Smørgrav 	 * Finally check the exit status of the ssh process, if one was forked
705cce7d346SDag-Erling Smørgrav 	 * and no error has occurred yet
706e73e9afaSDag-Erling Smørgrav 	 */
707e9e8876aSEd Maste 	if (do_cmd_pid != -1 && (mode == MODE_SFTP || errs == 0)) {
708e73e9afaSDag-Erling Smørgrav 		if (remin != -1)
709e73e9afaSDag-Erling Smørgrav 		    (void) close(remin);
710e73e9afaSDag-Erling Smørgrav 		if (remout != -1)
711e73e9afaSDag-Erling Smørgrav 		    (void) close(remout);
712e73e9afaSDag-Erling Smørgrav 		if (waitpid(do_cmd_pid, &status, 0) == -1)
713e73e9afaSDag-Erling Smørgrav 			errs = 1;
714e73e9afaSDag-Erling Smørgrav 		else {
715e73e9afaSDag-Erling Smørgrav 			if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
716e73e9afaSDag-Erling Smørgrav 				errs = 1;
717e73e9afaSDag-Erling Smørgrav 		}
718e73e9afaSDag-Erling Smørgrav 	}
719511b41d2SMark Murray 	exit(errs != 0);
720511b41d2SMark Murray }
721511b41d2SMark Murray 
7224a421b63SDag-Erling Smørgrav /* Callback from atomicio6 to update progress meter and limit bandwidth */
7234a421b63SDag-Erling Smørgrav static int
scpio(void * _cnt,size_t s)7244a421b63SDag-Erling Smørgrav scpio(void *_cnt, size_t s)
725d4af9e69SDag-Erling Smørgrav {
7264a421b63SDag-Erling Smørgrav 	off_t *cnt = (off_t *)_cnt;
727d4af9e69SDag-Erling Smørgrav 
7284a421b63SDag-Erling Smørgrav 	*cnt += s;
72919261079SEd Maste 	refresh_progress_meter(0);
7304a421b63SDag-Erling Smørgrav 	if (limit_kbps > 0)
7314a421b63SDag-Erling Smørgrav 		bandwidth_limit(&bwlimit, s);
7324a421b63SDag-Erling Smørgrav 	return 0;
733d4af9e69SDag-Erling Smørgrav }
734d4af9e69SDag-Erling Smørgrav 
735e4a9863fSDag-Erling Smørgrav static int
do_times(int fd,int verb,const struct stat * sb)736e4a9863fSDag-Erling Smørgrav do_times(int fd, int verb, const struct stat *sb)
737e4a9863fSDag-Erling Smørgrav {
738e4a9863fSDag-Erling Smørgrav 	/* strlen(2^64) == 20; strlen(10^6) == 7 */
739e4a9863fSDag-Erling Smørgrav 	char buf[(20 + 7 + 2) * 2 + 2];
740e4a9863fSDag-Erling Smørgrav 
741e4a9863fSDag-Erling Smørgrav 	(void)snprintf(buf, sizeof(buf), "T%llu 0 %llu 0\n",
742e4a9863fSDag-Erling Smørgrav 	    (unsigned long long) (sb->st_mtime < 0 ? 0 : sb->st_mtime),
743e4a9863fSDag-Erling Smørgrav 	    (unsigned long long) (sb->st_atime < 0 ? 0 : sb->st_atime));
744e4a9863fSDag-Erling Smørgrav 	if (verb) {
745e4a9863fSDag-Erling Smørgrav 		fprintf(stderr, "File mtime %lld atime %lld\n",
746e4a9863fSDag-Erling Smørgrav 		    (long long)sb->st_mtime, (long long)sb->st_atime);
747e4a9863fSDag-Erling Smørgrav 		fprintf(stderr, "Sending file timestamps: %s", buf);
748e4a9863fSDag-Erling Smørgrav 	}
749e4a9863fSDag-Erling Smørgrav 	(void) atomicio(vwrite, fd, buf, strlen(buf));
750e4a9863fSDag-Erling Smørgrav 	return (response());
751e4a9863fSDag-Erling Smørgrav }
752e4a9863fSDag-Erling Smørgrav 
75347dd1d1bSDag-Erling Smørgrav static int
parse_scp_uri(const char * uri,char ** userp,char ** hostp,int * portp,char ** pathp)75447dd1d1bSDag-Erling Smørgrav parse_scp_uri(const char *uri, char **userp, char **hostp, int *portp,
75547dd1d1bSDag-Erling Smørgrav     char **pathp)
756511b41d2SMark Murray {
75747dd1d1bSDag-Erling Smørgrav 	int r;
75847dd1d1bSDag-Erling Smørgrav 
75947dd1d1bSDag-Erling Smørgrav 	r = parse_uri("scp", uri, userp, hostp, portp, pathp);
76047dd1d1bSDag-Erling Smørgrav 	if (r == 0 && *pathp == NULL)
76147dd1d1bSDag-Erling Smørgrav 		*pathp = xstrdup(".");
76247dd1d1bSDag-Erling Smørgrav 	return r;
76347dd1d1bSDag-Erling Smørgrav }
76447dd1d1bSDag-Erling Smørgrav 
7650967215dSEd Maste /* Appends a string to an array; returns 0 on success, -1 on alloc failure */
7660967215dSEd Maste static int
append(char * cp,char *** ap,size_t * np)7670967215dSEd Maste append(char *cp, char ***ap, size_t *np)
7680967215dSEd Maste {
7690967215dSEd Maste 	char **tmp;
7700967215dSEd Maste 
7710967215dSEd Maste 	if ((tmp = reallocarray(*ap, *np + 1, sizeof(*tmp))) == NULL)
7720967215dSEd Maste 		return -1;
7730967215dSEd Maste 	tmp[(*np)] = cp;
7740967215dSEd Maste 	(*np)++;
7750967215dSEd Maste 	*ap = tmp;
7760967215dSEd Maste 	return 0;
7770967215dSEd Maste }
7780967215dSEd Maste 
7790967215dSEd Maste /*
7800967215dSEd Maste  * Finds the start and end of the first brace pair in the pattern.
7810967215dSEd Maste  * returns 0 on success or -1 for invalid patterns.
7820967215dSEd Maste  */
7830967215dSEd Maste static int
find_brace(const char * pattern,int * startp,int * endp)7840967215dSEd Maste find_brace(const char *pattern, int *startp, int *endp)
7850967215dSEd Maste {
7860967215dSEd Maste 	int i;
7870967215dSEd Maste 	int in_bracket, brace_level;
7880967215dSEd Maste 
7890967215dSEd Maste 	*startp = *endp = -1;
7900967215dSEd Maste 	in_bracket = brace_level = 0;
7910967215dSEd Maste 	for (i = 0; i < INT_MAX && *endp < 0 && pattern[i] != '\0'; i++) {
7920967215dSEd Maste 		switch (pattern[i]) {
7930967215dSEd Maste 		case '\\':
7940967215dSEd Maste 			/* skip next character */
7950967215dSEd Maste 			if (pattern[i + 1] != '\0')
7960967215dSEd Maste 				i++;
7970967215dSEd Maste 			break;
7980967215dSEd Maste 		case '[':
7990967215dSEd Maste 			in_bracket = 1;
8000967215dSEd Maste 			break;
8010967215dSEd Maste 		case ']':
8020967215dSEd Maste 			in_bracket = 0;
8030967215dSEd Maste 			break;
8040967215dSEd Maste 		case '{':
8050967215dSEd Maste 			if (in_bracket)
8060967215dSEd Maste 				break;
8070967215dSEd Maste 			if (pattern[i + 1] == '}') {
8080967215dSEd Maste 				/* Protect a single {}, for find(1), like csh */
8090967215dSEd Maste 				i++; /* skip */
8100967215dSEd Maste 				break;
8110967215dSEd Maste 			}
8120967215dSEd Maste 			if (*startp == -1)
8130967215dSEd Maste 				*startp = i;
8140967215dSEd Maste 			brace_level++;
8150967215dSEd Maste 			break;
8160967215dSEd Maste 		case '}':
8170967215dSEd Maste 			if (in_bracket)
8180967215dSEd Maste 				break;
8190967215dSEd Maste 			if (*startp < 0) {
8200967215dSEd Maste 				/* Unbalanced brace */
8210967215dSEd Maste 				return -1;
8220967215dSEd Maste 			}
8230967215dSEd Maste 			if (--brace_level <= 0)
8240967215dSEd Maste 				*endp = i;
8250967215dSEd Maste 			break;
8260967215dSEd Maste 		}
8270967215dSEd Maste 	}
8280967215dSEd Maste 	/* unbalanced brackets/braces */
8290967215dSEd Maste 	if (*endp < 0 && (*startp >= 0 || in_bracket))
8300967215dSEd Maste 		return -1;
8310967215dSEd Maste 	return 0;
8320967215dSEd Maste }
8330967215dSEd Maste 
8340967215dSEd Maste /*
8350967215dSEd Maste  * Assembles and records a successfully-expanded pattern, returns -1 on
8360967215dSEd Maste  * alloc failure.
8370967215dSEd Maste  */
8380967215dSEd Maste static int
emit_expansion(const char * pattern,int brace_start,int brace_end,int sel_start,int sel_end,char *** patternsp,size_t * npatternsp)8390967215dSEd Maste emit_expansion(const char *pattern, int brace_start, int brace_end,
8400967215dSEd Maste     int sel_start, int sel_end, char ***patternsp, size_t *npatternsp)
8410967215dSEd Maste {
8420967215dSEd Maste 	char *cp;
843535af610SEd Maste 	size_t pattern_len;
844535af610SEd Maste 	int o = 0, tail_len;
8450967215dSEd Maste 
846535af610SEd Maste 	if ((pattern_len = strlen(pattern)) == 0 || pattern_len >= INT_MAX)
847535af610SEd Maste 		return -1;
848535af610SEd Maste 
849535af610SEd Maste 	tail_len = strlen(pattern + brace_end + 1);
8500967215dSEd Maste 	if ((cp = malloc(brace_start + (sel_end - sel_start) +
8510967215dSEd Maste 	    tail_len + 1)) == NULL)
8520967215dSEd Maste 		return -1;
8530967215dSEd Maste 
8540967215dSEd Maste 	/* Pattern before initial brace */
8550967215dSEd Maste 	if (brace_start > 0) {
8560967215dSEd Maste 		memcpy(cp, pattern, brace_start);
8570967215dSEd Maste 		o = brace_start;
8580967215dSEd Maste 	}
8590967215dSEd Maste 	/* Current braced selection */
8600967215dSEd Maste 	if (sel_end - sel_start > 0) {
8610967215dSEd Maste 		memcpy(cp + o, pattern + sel_start,
8620967215dSEd Maste 		    sel_end - sel_start);
8630967215dSEd Maste 		o += sel_end - sel_start;
8640967215dSEd Maste 	}
8650967215dSEd Maste 	/* Remainder of pattern after closing brace */
8660967215dSEd Maste 	if (tail_len > 0) {
8670967215dSEd Maste 		memcpy(cp + o, pattern + brace_end + 1, tail_len);
8680967215dSEd Maste 		o += tail_len;
8690967215dSEd Maste 	}
8700967215dSEd Maste 	cp[o] = '\0';
8710967215dSEd Maste 	if (append(cp, patternsp, npatternsp) != 0) {
8720967215dSEd Maste 		free(cp);
8730967215dSEd Maste 		return -1;
8740967215dSEd Maste 	}
8750967215dSEd Maste 	return 0;
8760967215dSEd Maste }
8770967215dSEd Maste 
8780967215dSEd Maste /*
8790967215dSEd Maste  * Expand the first encountered brace in pattern, appending the expanded
8800967215dSEd Maste  * patterns it yielded to the *patternsp array.
8810967215dSEd Maste  *
8820967215dSEd Maste  * Returns 0 on success or -1 on allocation failure.
8830967215dSEd Maste  *
8840967215dSEd Maste  * Signals whether expansion was performed via *expanded and whether
8850967215dSEd Maste  * pattern was invalid via *invalid.
8860967215dSEd Maste  */
8870967215dSEd Maste static int
brace_expand_one(const char * pattern,char *** patternsp,size_t * npatternsp,int * expanded,int * invalid)8880967215dSEd Maste brace_expand_one(const char *pattern, char ***patternsp, size_t *npatternsp,
8890967215dSEd Maste     int *expanded, int *invalid)
8900967215dSEd Maste {
8910967215dSEd Maste 	int i;
8920967215dSEd Maste 	int in_bracket, brace_start, brace_end, brace_level;
8930967215dSEd Maste 	int sel_start, sel_end;
8940967215dSEd Maste 
8950967215dSEd Maste 	*invalid = *expanded = 0;
8960967215dSEd Maste 
8970967215dSEd Maste 	if (find_brace(pattern, &brace_start, &brace_end) != 0) {
8980967215dSEd Maste 		*invalid = 1;
8990967215dSEd Maste 		return 0;
9000967215dSEd Maste 	} else if (brace_start == -1)
9010967215dSEd Maste 		return 0;
9020967215dSEd Maste 
9030967215dSEd Maste 	in_bracket = brace_level = 0;
9040967215dSEd Maste 	for (i = sel_start = brace_start + 1; i < brace_end; i++) {
9050967215dSEd Maste 		switch (pattern[i]) {
9060967215dSEd Maste 		case '{':
9070967215dSEd Maste 			if (in_bracket)
9080967215dSEd Maste 				break;
9090967215dSEd Maste 			brace_level++;
9100967215dSEd Maste 			break;
9110967215dSEd Maste 		case '}':
9120967215dSEd Maste 			if (in_bracket)
9130967215dSEd Maste 				break;
9140967215dSEd Maste 			brace_level--;
9150967215dSEd Maste 			break;
9160967215dSEd Maste 		case '[':
9170967215dSEd Maste 			in_bracket = 1;
9180967215dSEd Maste 			break;
9190967215dSEd Maste 		case ']':
9200967215dSEd Maste 			in_bracket = 0;
9210967215dSEd Maste 			break;
9220967215dSEd Maste 		case '\\':
9230967215dSEd Maste 			if (i < brace_end - 1)
9240967215dSEd Maste 				i++; /* skip */
9250967215dSEd Maste 			break;
9260967215dSEd Maste 		}
9270967215dSEd Maste 		if (pattern[i] == ',' || i == brace_end - 1) {
9280967215dSEd Maste 			if (in_bracket || brace_level > 0)
9290967215dSEd Maste 				continue;
9300967215dSEd Maste 			/* End of a selection, emit an expanded pattern */
9310967215dSEd Maste 
9320967215dSEd Maste 			/* Adjust end index for last selection */
9330967215dSEd Maste 			sel_end = (i == brace_end - 1) ? brace_end : i;
9340967215dSEd Maste 			if (emit_expansion(pattern, brace_start, brace_end,
9350967215dSEd Maste 			    sel_start, sel_end, patternsp, npatternsp) != 0)
9360967215dSEd Maste 				return -1;
9370967215dSEd Maste 			/* move on to the next selection */
9380967215dSEd Maste 			sel_start = i + 1;
9390967215dSEd Maste 			continue;
9400967215dSEd Maste 		}
9410967215dSEd Maste 	}
9420967215dSEd Maste 	if (in_bracket || brace_level > 0) {
9430967215dSEd Maste 		*invalid = 1;
9440967215dSEd Maste 		return 0;
9450967215dSEd Maste 	}
9460967215dSEd Maste 	/* success */
9470967215dSEd Maste 	*expanded = 1;
9480967215dSEd Maste 	return 0;
9490967215dSEd Maste }
9500967215dSEd Maste 
9510967215dSEd Maste /* Expand braces from pattern. Returns 0 on success, -1 on failure */
9520967215dSEd Maste static int
brace_expand(const char * pattern,char *** patternsp,size_t * npatternsp)9530967215dSEd Maste brace_expand(const char *pattern, char ***patternsp, size_t *npatternsp)
9540967215dSEd Maste {
9550967215dSEd Maste 	char *cp, *cp2, **active = NULL, **done = NULL;
9560967215dSEd Maste 	size_t i, nactive = 0, ndone = 0;
9570967215dSEd Maste 	int ret = -1, invalid = 0, expanded = 0;
9580967215dSEd Maste 
9590967215dSEd Maste 	*patternsp = NULL;
9600967215dSEd Maste 	*npatternsp = 0;
9610967215dSEd Maste 
9620967215dSEd Maste 	/* Start the worklist with the original pattern */
9630967215dSEd Maste 	if ((cp = strdup(pattern)) == NULL)
9640967215dSEd Maste 		return -1;
9650967215dSEd Maste 	if (append(cp, &active, &nactive) != 0) {
9660967215dSEd Maste 		free(cp);
9670967215dSEd Maste 		return -1;
9680967215dSEd Maste 	}
9690967215dSEd Maste 	while (nactive > 0) {
9700967215dSEd Maste 		cp = active[nactive - 1];
9710967215dSEd Maste 		nactive--;
9720967215dSEd Maste 		if (brace_expand_one(cp, &active, &nactive,
9730967215dSEd Maste 		    &expanded, &invalid) == -1) {
9740967215dSEd Maste 			free(cp);
9750967215dSEd Maste 			goto fail;
9760967215dSEd Maste 		}
9770967215dSEd Maste 		if (invalid)
97819261079SEd Maste 			fatal_f("invalid brace pattern \"%s\"", cp);
9790967215dSEd Maste 		if (expanded) {
9800967215dSEd Maste 			/*
9810967215dSEd Maste 			 * Current entry expanded to new entries on the
9820967215dSEd Maste 			 * active list; discard the progenitor pattern.
9830967215dSEd Maste 			 */
9840967215dSEd Maste 			free(cp);
9850967215dSEd Maste 			continue;
9860967215dSEd Maste 		}
9870967215dSEd Maste 		/*
9880967215dSEd Maste 		 * Pattern did not expand; append the finename component to
9890967215dSEd Maste 		 * the completed list
9900967215dSEd Maste 		 */
9910967215dSEd Maste 		if ((cp2 = strrchr(cp, '/')) != NULL)
9920967215dSEd Maste 			*cp2++ = '\0';
9930967215dSEd Maste 		else
9940967215dSEd Maste 			cp2 = cp;
9950967215dSEd Maste 		if (append(xstrdup(cp2), &done, &ndone) != 0) {
9960967215dSEd Maste 			free(cp);
9970967215dSEd Maste 			goto fail;
9980967215dSEd Maste 		}
9990967215dSEd Maste 		free(cp);
10000967215dSEd Maste 	}
10010967215dSEd Maste 	/* success */
10020967215dSEd Maste 	*patternsp = done;
10030967215dSEd Maste 	*npatternsp = ndone;
10040967215dSEd Maste 	done = NULL;
10050967215dSEd Maste 	ndone = 0;
10060967215dSEd Maste 	ret = 0;
10070967215dSEd Maste  fail:
10080967215dSEd Maste 	for (i = 0; i < nactive; i++)
10090967215dSEd Maste 		free(active[i]);
10100967215dSEd Maste 	free(active);
10110967215dSEd Maste 	for (i = 0; i < ndone; i++)
10120967215dSEd Maste 		free(done[i]);
10130967215dSEd Maste 	free(done);
10140967215dSEd Maste 	return ret;
10150967215dSEd Maste }
10160967215dSEd Maste 
101719261079SEd Maste static struct sftp_conn *
do_sftp_connect(char * host,char * user,int port,char * sftp_direct,int * reminp,int * remoutp,int * pidp)101819261079SEd Maste do_sftp_connect(char *host, char *user, int port, char *sftp_direct,
101919261079SEd Maste    int *reminp, int *remoutp, int *pidp)
102019261079SEd Maste {
102119261079SEd Maste 	if (sftp_direct == NULL) {
102219261079SEd Maste 		if (do_cmd(ssh_program, host, user, port, 1, "sftp",
102319261079SEd Maste 		    reminp, remoutp, pidp) < 0)
102419261079SEd Maste 			return NULL;
102519261079SEd Maste 
102619261079SEd Maste 	} else {
102787c1498dSEd Maste 		freeargs(&args);
102819261079SEd Maste 		addargs(&args, "sftp-server");
102919261079SEd Maste 		if (do_cmd(sftp_direct, host, NULL, -1, 0, "sftp",
103019261079SEd Maste 		    reminp, remoutp, pidp) < 0)
103119261079SEd Maste 			return NULL;
103219261079SEd Maste 	}
1033edf85781SEd Maste 	return sftp_init(*reminp, *remoutp,
1034f374ba41SEd Maste 	    sftp_copy_buflen, sftp_nrequests, limit_kbps);
103519261079SEd Maste }
103619261079SEd Maste 
103747dd1d1bSDag-Erling Smørgrav void
toremote(int argc,char ** argv,enum scp_mode_e mode,char * sftp_direct)103819261079SEd Maste toremote(int argc, char **argv, enum scp_mode_e mode, char *sftp_direct)
103947dd1d1bSDag-Erling Smørgrav {
104047dd1d1bSDag-Erling Smørgrav 	char *suser = NULL, *host = NULL, *src = NULL;
104147dd1d1bSDag-Erling Smørgrav 	char *bp, *tuser, *thost, *targ;
104247dd1d1bSDag-Erling Smørgrav 	int sport = -1, tport = -1;
104319261079SEd Maste 	struct sftp_conn *conn = NULL, *conn2 = NULL;
1044b74df5b2SDag-Erling Smørgrav 	arglist alist;
104519261079SEd Maste 	int i, r, status;
1046535af610SEd Maste 	struct stat sb;
10474a421b63SDag-Erling Smørgrav 	u_int j;
1048b74df5b2SDag-Erling Smørgrav 
1049b74df5b2SDag-Erling Smørgrav 	memset(&alist, '\0', sizeof(alist));
1050b74df5b2SDag-Erling Smørgrav 	alist.list = NULL;
1051511b41d2SMark Murray 
105247dd1d1bSDag-Erling Smørgrav 	/* Parse target */
105347dd1d1bSDag-Erling Smørgrav 	r = parse_scp_uri(argv[argc - 1], &tuser, &thost, &tport, &targ);
105447dd1d1bSDag-Erling Smørgrav 	if (r == -1) {
105547dd1d1bSDag-Erling Smørgrav 		fmprintf(stderr, "%s: invalid uri\n", argv[argc - 1]);
105647dd1d1bSDag-Erling Smørgrav 		++errs;
105747dd1d1bSDag-Erling Smørgrav 		goto out;
1058511b41d2SMark Murray 	}
105947dd1d1bSDag-Erling Smørgrav 	if (r != 0) {
106047dd1d1bSDag-Erling Smørgrav 		if (parse_user_host_path(argv[argc - 1], &tuser, &thost,
106147dd1d1bSDag-Erling Smørgrav 		    &targ) == -1) {
106247dd1d1bSDag-Erling Smørgrav 			fmprintf(stderr, "%s: invalid target\n", argv[argc - 1]);
106347dd1d1bSDag-Erling Smørgrav 			++errs;
106447dd1d1bSDag-Erling Smørgrav 			goto out;
106547dd1d1bSDag-Erling Smørgrav 		}
106647dd1d1bSDag-Erling Smørgrav 	}
1067b74df5b2SDag-Erling Smørgrav 
106847dd1d1bSDag-Erling Smørgrav 	/* Parse source files */
1069511b41d2SMark Murray 	for (i = 0; i < argc - 1; i++) {
107047dd1d1bSDag-Erling Smørgrav 		free(suser);
107147dd1d1bSDag-Erling Smørgrav 		free(host);
107247dd1d1bSDag-Erling Smørgrav 		free(src);
107347dd1d1bSDag-Erling Smørgrav 		r = parse_scp_uri(argv[i], &suser, &host, &sport, &src);
107447dd1d1bSDag-Erling Smørgrav 		if (r == -1) {
107547dd1d1bSDag-Erling Smørgrav 			fmprintf(stderr, "%s: invalid uri\n", argv[i]);
107647dd1d1bSDag-Erling Smørgrav 			++errs;
10774a421b63SDag-Erling Smørgrav 			continue;
10784a421b63SDag-Erling Smørgrav 		}
107947dd1d1bSDag-Erling Smørgrav 		if (r != 0) {
108047dd1d1bSDag-Erling Smørgrav 			parse_user_host_path(argv[i], &suser, &host, &src);
108147dd1d1bSDag-Erling Smørgrav 		}
108247dd1d1bSDag-Erling Smørgrav 		if (suser != NULL && !okname(suser)) {
108347dd1d1bSDag-Erling Smørgrav 			++errs;
108447dd1d1bSDag-Erling Smørgrav 			continue;
108547dd1d1bSDag-Erling Smørgrav 		}
108647dd1d1bSDag-Erling Smørgrav 		if (host && throughlocal) {	/* extended remote to remote */
108719261079SEd Maste 			if (mode == MODE_SFTP) {
108819261079SEd Maste 				if (remin == -1) {
108919261079SEd Maste 					/* Connect to dest now */
109019261079SEd Maste 					conn = do_sftp_connect(thost, tuser,
109119261079SEd Maste 					    tport, sftp_direct,
109219261079SEd Maste 					    &remin, &remout, &do_cmd_pid);
109319261079SEd Maste 					if (conn == NULL) {
109419261079SEd Maste 						fatal("Unable to open "
109519261079SEd Maste 						    "destination connection");
109619261079SEd Maste 					}
109719261079SEd Maste 					debug3_f("origin in %d out %d pid %ld",
109819261079SEd Maste 					    remin, remout, (long)do_cmd_pid);
109919261079SEd Maste 				}
110019261079SEd Maste 				/*
110119261079SEd Maste 				 * XXX remember suser/host/sport and only
110219261079SEd Maste 				 * reconnect if they change between arguments.
110319261079SEd Maste 				 * would save reconnections for cases like
110419261079SEd Maste 				 * scp -3 hosta:/foo hosta:/bar hostb:
110519261079SEd Maste 				 */
110619261079SEd Maste 				/* Connect to origin now */
110719261079SEd Maste 				conn2 = do_sftp_connect(host, suser,
110819261079SEd Maste 				    sport, sftp_direct,
110919261079SEd Maste 				    &remin2, &remout2, &do_cmd_pid2);
111019261079SEd Maste 				if (conn2 == NULL) {
111119261079SEd Maste 					fatal("Unable to open "
111219261079SEd Maste 					    "source connection");
111319261079SEd Maste 				}
111419261079SEd Maste 				debug3_f("destination in %d out %d pid %ld",
111519261079SEd Maste 				    remin2, remout2, (long)do_cmd_pid2);
111619261079SEd Maste 				throughlocal_sftp(conn2, conn, src, targ);
111719261079SEd Maste 				(void) close(remin2);
111819261079SEd Maste 				(void) close(remout2);
111919261079SEd Maste 				remin2 = remout2 = -1;
112019261079SEd Maste 				if (waitpid(do_cmd_pid2, &status, 0) == -1)
112119261079SEd Maste 					++errs;
112219261079SEd Maste 				else if (!WIFEXITED(status) ||
112319261079SEd Maste 				    WEXITSTATUS(status) != 0)
112419261079SEd Maste 					++errs;
112519261079SEd Maste 				do_cmd_pid2 = -1;
112619261079SEd Maste 				continue;
112719261079SEd Maste 			} else {
1128462c32cbSDag-Erling Smørgrav 				xasprintf(&bp, "%s -f %s%s", cmd,
1129462c32cbSDag-Erling Smørgrav 				    *src == '-' ? "-- " : "", src);
113019261079SEd Maste 				if (do_cmd(ssh_program, host, suser, sport, 0,
113119261079SEd Maste 				    bp, &remin, &remout, &do_cmd_pid) < 0)
11324a421b63SDag-Erling Smørgrav 					exit(1);
1133e4a9863fSDag-Erling Smørgrav 				free(bp);
1134462c32cbSDag-Erling Smørgrav 				xasprintf(&bp, "%s -t %s%s", cmd,
1135462c32cbSDag-Erling Smørgrav 				    *targ == '-' ? "-- " : "", targ);
113619261079SEd Maste 				if (do_cmd2(thost, tuser, tport, bp,
113719261079SEd Maste 				    remin, remout) < 0)
11384a421b63SDag-Erling Smørgrav 					exit(1);
1139e4a9863fSDag-Erling Smørgrav 				free(bp);
11404a421b63SDag-Erling Smørgrav 				(void) close(remin);
11414a421b63SDag-Erling Smørgrav 				(void) close(remout);
11424a421b63SDag-Erling Smørgrav 				remin = remout = -1;
114319261079SEd Maste 			}
114447dd1d1bSDag-Erling Smørgrav 		} else if (host) {	/* standard remote to remote */
114519261079SEd Maste 			/*
114619261079SEd Maste 			 * Second remote user is passed to first remote side
114719261079SEd Maste 			 * via scp command-line. Ensure it contains no obvious
114819261079SEd Maste 			 * shell characters.
114919261079SEd Maste 			 */
115019261079SEd Maste 			if (tuser != NULL && !okname(tuser)) {
115119261079SEd Maste 				++errs;
115219261079SEd Maste 				continue;
115319261079SEd Maste 			}
115447dd1d1bSDag-Erling Smørgrav 			if (tport != -1 && tport != SSH_DEFAULT_PORT) {
115547dd1d1bSDag-Erling Smørgrav 				/* This would require the remote support URIs */
115647dd1d1bSDag-Erling Smørgrav 				fatal("target port not supported with two "
115719261079SEd Maste 				    "remote hosts and the -R option");
115847dd1d1bSDag-Erling Smørgrav 			}
115947dd1d1bSDag-Erling Smørgrav 
1160b74df5b2SDag-Erling Smørgrav 			freeargs(&alist);
1161b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "%s", ssh_program);
1162b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "-x");
11634a421b63SDag-Erling Smørgrav 			addargs(&alist, "-oClearAllForwardings=yes");
1164b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "-n");
11654a421b63SDag-Erling Smørgrav 			for (j = 0; j < remote_remote_args.num; j++) {
11664a421b63SDag-Erling Smørgrav 				addargs(&alist, "%s",
11674a421b63SDag-Erling Smørgrav 				    remote_remote_args.list[j]);
11684a421b63SDag-Erling Smørgrav 			}
1169b74df5b2SDag-Erling Smørgrav 
117047dd1d1bSDag-Erling Smørgrav 			if (sport != -1) {
117147dd1d1bSDag-Erling Smørgrav 				addargs(&alist, "-p");
117247dd1d1bSDag-Erling Smørgrav 				addargs(&alist, "%d", sport);
117347dd1d1bSDag-Erling Smørgrav 			}
117447dd1d1bSDag-Erling Smørgrav 			if (suser) {
1175b74df5b2SDag-Erling Smørgrav 				addargs(&alist, "-l");
1176b74df5b2SDag-Erling Smørgrav 				addargs(&alist, "%s", suser);
1177b74df5b2SDag-Erling Smørgrav 			}
1178b15c8340SDag-Erling Smørgrav 			addargs(&alist, "--");
1179b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "%s", host);
1180b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "%s", cmd);
1181b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "%s", src);
1182b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "%s%s%s:%s",
1183511b41d2SMark Murray 			    tuser ? tuser : "", tuser ? "@" : "",
1184511b41d2SMark Murray 			    thost, targ);
1185b74df5b2SDag-Erling Smørgrav 			if (do_local_cmd(&alist) != 0)
11861ec0d754SDag-Erling Smørgrav 				errs = 1;
1187511b41d2SMark Murray 		} else {	/* local to remote */
118819261079SEd Maste 			if (mode == MODE_SFTP) {
1189535af610SEd Maste 				/* no need to glob: already done by shell */
1190535af610SEd Maste 				if (stat(argv[i], &sb) != 0) {
1191535af610SEd Maste 					fatal("stat local \"%s\": %s", argv[i],
1192535af610SEd Maste 					    strerror(errno));
1193535af610SEd Maste 				}
119419261079SEd Maste 				if (remin == -1) {
119519261079SEd Maste 					/* Connect to remote now */
119619261079SEd Maste 					conn = do_sftp_connect(thost, tuser,
119719261079SEd Maste 					    tport, sftp_direct,
119819261079SEd Maste 					    &remin, &remout, &do_cmd_pid);
119919261079SEd Maste 					if (conn == NULL) {
120019261079SEd Maste 						fatal("Unable to open sftp "
120119261079SEd Maste 						    "connection");
120219261079SEd Maste 					}
120319261079SEd Maste 				}
120419261079SEd Maste 
120519261079SEd Maste 				/* The protocol */
120619261079SEd Maste 				source_sftp(1, argv[i], targ, conn);
120719261079SEd Maste 				continue;
120819261079SEd Maste 			}
120919261079SEd Maste 			/* SCP */
1210511b41d2SMark Murray 			if (remin == -1) {
1211462c32cbSDag-Erling Smørgrav 				xasprintf(&bp, "%s -t %s%s", cmd,
1212462c32cbSDag-Erling Smørgrav 				    *targ == '-' ? "-- " : "", targ);
121319261079SEd Maste 				if (do_cmd(ssh_program, thost, tuser, tport, 0,
121419261079SEd Maste 				    bp, &remin, &remout, &do_cmd_pid) < 0)
1215511b41d2SMark Murray 					exit(1);
1216511b41d2SMark Murray 				if (response() < 0)
1217511b41d2SMark Murray 					exit(1);
1218e4a9863fSDag-Erling Smørgrav 				free(bp);
1219511b41d2SMark Murray 			}
1220511b41d2SMark Murray 			source(1, argv + i);
1221511b41d2SMark Murray 		}
1222511b41d2SMark Murray 	}
122347dd1d1bSDag-Erling Smørgrav out:
122419261079SEd Maste 	if (mode == MODE_SFTP)
122519261079SEd Maste 		free(conn);
122647dd1d1bSDag-Erling Smørgrav 	free(tuser);
122747dd1d1bSDag-Erling Smørgrav 	free(thost);
122847dd1d1bSDag-Erling Smørgrav 	free(targ);
122947dd1d1bSDag-Erling Smørgrav 	free(suser);
123047dd1d1bSDag-Erling Smørgrav 	free(host);
123147dd1d1bSDag-Erling Smørgrav 	free(src);
1232511b41d2SMark Murray }
1233511b41d2SMark Murray 
1234511b41d2SMark Murray void
tolocal(int argc,char ** argv,enum scp_mode_e mode,char * sftp_direct)123519261079SEd Maste tolocal(int argc, char **argv, enum scp_mode_e mode, char *sftp_direct)
1236511b41d2SMark Murray {
123747dd1d1bSDag-Erling Smørgrav 	char *bp, *host = NULL, *src = NULL, *suser = NULL;
1238b74df5b2SDag-Erling Smørgrav 	arglist alist;
123919261079SEd Maste 	struct sftp_conn *conn = NULL;
124047dd1d1bSDag-Erling Smørgrav 	int i, r, sport = -1;
1241b74df5b2SDag-Erling Smørgrav 
1242b74df5b2SDag-Erling Smørgrav 	memset(&alist, '\0', sizeof(alist));
1243b74df5b2SDag-Erling Smørgrav 	alist.list = NULL;
1244511b41d2SMark Murray 
1245511b41d2SMark Murray 	for (i = 0; i < argc - 1; i++) {
124647dd1d1bSDag-Erling Smørgrav 		free(suser);
124747dd1d1bSDag-Erling Smørgrav 		free(host);
124847dd1d1bSDag-Erling Smørgrav 		free(src);
124947dd1d1bSDag-Erling Smørgrav 		r = parse_scp_uri(argv[i], &suser, &host, &sport, &src);
125047dd1d1bSDag-Erling Smørgrav 		if (r == -1) {
125147dd1d1bSDag-Erling Smørgrav 			fmprintf(stderr, "%s: invalid uri\n", argv[i]);
125247dd1d1bSDag-Erling Smørgrav 			++errs;
125347dd1d1bSDag-Erling Smørgrav 			continue;
125447dd1d1bSDag-Erling Smørgrav 		}
125547dd1d1bSDag-Erling Smørgrav 		if (r != 0)
125647dd1d1bSDag-Erling Smørgrav 			parse_user_host_path(argv[i], &suser, &host, &src);
125747dd1d1bSDag-Erling Smørgrav 		if (suser != NULL && !okname(suser)) {
125847dd1d1bSDag-Erling Smørgrav 			++errs;
125947dd1d1bSDag-Erling Smørgrav 			continue;
126047dd1d1bSDag-Erling Smørgrav 		}
126147dd1d1bSDag-Erling Smørgrav 		if (!host) {	/* Local to local. */
1262b74df5b2SDag-Erling Smørgrav 			freeargs(&alist);
1263b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "%s", _PATH_CP);
1264b74df5b2SDag-Erling Smørgrav 			if (iamrecursive)
1265b74df5b2SDag-Erling Smørgrav 				addargs(&alist, "-r");
1266b74df5b2SDag-Erling Smørgrav 			if (pflag)
1267b74df5b2SDag-Erling Smørgrav 				addargs(&alist, "-p");
1268b15c8340SDag-Erling Smørgrav 			addargs(&alist, "--");
1269b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "%s", argv[i]);
1270b74df5b2SDag-Erling Smørgrav 			addargs(&alist, "%s", argv[argc-1]);
1271b74df5b2SDag-Erling Smørgrav 			if (do_local_cmd(&alist))
1272511b41d2SMark Murray 				++errs;
1273511b41d2SMark Murray 			continue;
1274511b41d2SMark Murray 		}
127547dd1d1bSDag-Erling Smørgrav 		/* Remote to local. */
127619261079SEd Maste 		if (mode == MODE_SFTP) {
127719261079SEd Maste 			conn = do_sftp_connect(host, suser, sport,
127819261079SEd Maste 			    sftp_direct, &remin, &remout, &do_cmd_pid);
127919261079SEd Maste 			if (conn == NULL) {
1280e9e8876aSEd Maste 				error("sftp connection failed");
128119261079SEd Maste 				++errs;
128219261079SEd Maste 				continue;
128319261079SEd Maste 			}
128419261079SEd Maste 
128519261079SEd Maste 			/* The protocol */
128619261079SEd Maste 			sink_sftp(1, argv[argc - 1], src, conn);
128719261079SEd Maste 
128819261079SEd Maste 			free(conn);
128919261079SEd Maste 			(void) close(remin);
129019261079SEd Maste 			(void) close(remout);
129119261079SEd Maste 			remin = remout = -1;
129219261079SEd Maste 			continue;
129319261079SEd Maste 		}
129419261079SEd Maste 		/* SCP */
1295462c32cbSDag-Erling Smørgrav 		xasprintf(&bp, "%s -f %s%s",
1296462c32cbSDag-Erling Smørgrav 		    cmd, *src == '-' ? "-- " : "", src);
129719261079SEd Maste 		if (do_cmd(ssh_program, host, suser, sport, 0, bp,
129819261079SEd Maste 		    &remin, &remout, &do_cmd_pid) < 0) {
1299e4a9863fSDag-Erling Smørgrav 			free(bp);
1300511b41d2SMark Murray 			++errs;
1301511b41d2SMark Murray 			continue;
1302511b41d2SMark Murray 		}
1303e4a9863fSDag-Erling Smørgrav 		free(bp);
1304afde5170SEd Maste 		sink(1, argv + argc - 1, src);
1305511b41d2SMark Murray 		(void) close(remin);
1306511b41d2SMark Murray 		remin = remout = -1;
1307511b41d2SMark Murray 	}
130847dd1d1bSDag-Erling Smørgrav 	free(suser);
130947dd1d1bSDag-Erling Smørgrav 	free(host);
131047dd1d1bSDag-Erling Smørgrav 	free(src);
1311511b41d2SMark Murray }
1312511b41d2SMark Murray 
131319261079SEd Maste /* Prepare remote path, handling ~ by assuming cwd is the homedir */
131419261079SEd Maste static char *
prepare_remote_path(struct sftp_conn * conn,const char * path)131519261079SEd Maste prepare_remote_path(struct sftp_conn *conn, const char *path)
131619261079SEd Maste {
13171323ec57SEd Maste 	size_t nslash;
13181323ec57SEd Maste 
131919261079SEd Maste 	/* Handle ~ prefixed paths */
132019261079SEd Maste 	if (*path == '\0' || strcmp(path, "~") == 0)
132119261079SEd Maste 		return xstrdup(".");
13221323ec57SEd Maste 	if (*path != '~')
13231323ec57SEd Maste 		return xstrdup(path);
13241323ec57SEd Maste 	if (strncmp(path, "~/", 2) == 0) {
13251323ec57SEd Maste 		if ((nslash = strspn(path + 2, "/")) == strlen(path + 2))
13261323ec57SEd Maste 			return xstrdup(".");
13271323ec57SEd Maste 		return xstrdup(path + 2 + nslash);
13281323ec57SEd Maste 	}
1329edf85781SEd Maste 	if (sftp_can_expand_path(conn))
1330edf85781SEd Maste 		return sftp_expand_path(conn, path);
133119261079SEd Maste 	/* No protocol extension */
1332e9e8876aSEd Maste 	error("server expand-path extension is required "
1333e9e8876aSEd Maste 	    "for ~user paths in SFTP mode");
133419261079SEd Maste 	return NULL;
133519261079SEd Maste }
133619261079SEd Maste 
133719261079SEd Maste void
source_sftp(int argc,char * src,char * targ,struct sftp_conn * conn)133819261079SEd Maste source_sftp(int argc, char *src, char *targ, struct sftp_conn *conn)
133919261079SEd Maste {
134019261079SEd Maste 	char *target = NULL, *filename = NULL, *abs_dst = NULL;
13411323ec57SEd Maste 	int src_is_dir, target_is_dir;
13421323ec57SEd Maste 	Attrib a;
13431323ec57SEd Maste 	struct stat st;
134419261079SEd Maste 
13451323ec57SEd Maste 	memset(&a, '\0', sizeof(a));
13461323ec57SEd Maste 	if (stat(src, &st) != 0)
13471323ec57SEd Maste 		fatal("stat local \"%s\": %s", src, strerror(errno));
13481323ec57SEd Maste 	src_is_dir = S_ISDIR(st.st_mode);
134919261079SEd Maste 	if ((filename = basename(src)) == NULL)
13501323ec57SEd Maste 		fatal("basename \"%s\": %s", src, strerror(errno));
135119261079SEd Maste 
135219261079SEd Maste 	/*
135319261079SEd Maste 	 * No need to glob here - the local shell already took care of
135419261079SEd Maste 	 * the expansions
135519261079SEd Maste 	 */
135619261079SEd Maste 	if ((target = prepare_remote_path(conn, targ)) == NULL)
135719261079SEd Maste 		cleanup_exit(255);
1358edf85781SEd Maste 	target_is_dir = sftp_remote_is_dir(conn, target);
135919261079SEd Maste 	if (targetshouldbedirectory && !target_is_dir) {
13601323ec57SEd Maste 		debug("target directory \"%s\" does not exist", target);
13611323ec57SEd Maste 		a.flags = SSH2_FILEXFER_ATTR_PERMISSIONS;
13621323ec57SEd Maste 		a.perm = st.st_mode | 0700; /* ensure writable */
1363edf85781SEd Maste 		if (sftp_mkdir(conn, target, &a, 1) != 0)
13641323ec57SEd Maste 			cleanup_exit(255); /* error already logged */
13651323ec57SEd Maste 		target_is_dir = 1;
136619261079SEd Maste 	}
136719261079SEd Maste 	if (target_is_dir)
1368edf85781SEd Maste 		abs_dst = sftp_path_append(target, filename);
136919261079SEd Maste 	else {
137019261079SEd Maste 		abs_dst = target;
137119261079SEd Maste 		target = NULL;
137219261079SEd Maste 	}
137319261079SEd Maste 	debug3_f("copying local %s to remote %s", src, abs_dst);
137419261079SEd Maste 
13751323ec57SEd Maste 	if (src_is_dir && iamrecursive) {
1376edf85781SEd Maste 		if (sftp_upload_dir(conn, src, abs_dst, pflag,
137738a52bd3SEd Maste 		    SFTP_PROGRESS_ONLY, 0, 0, 1, 1) != 0) {
13781323ec57SEd Maste 			error("failed to upload directory %s to %s", src, targ);
1379e9e8876aSEd Maste 			errs = 1;
138019261079SEd Maste 		}
1381edf85781SEd Maste 	} else if (sftp_upload(conn, src, abs_dst, pflag, 0, 0, 1) != 0) {
13821323ec57SEd Maste 		error("failed to upload file %s to %s", src, targ);
1383e9e8876aSEd Maste 		errs = 1;
1384e9e8876aSEd Maste 	}
138519261079SEd Maste 
138619261079SEd Maste 	free(abs_dst);
138719261079SEd Maste 	free(target);
138819261079SEd Maste }
138919261079SEd Maste 
1390511b41d2SMark Murray void
source(int argc,char ** argv)1391cf2b5f3bSDag-Erling Smørgrav source(int argc, char **argv)
1392511b41d2SMark Murray {
1393511b41d2SMark Murray 	struct stat stb;
1394511b41d2SMark Murray 	static BUF buffer;
1395511b41d2SMark Murray 	BUF *bp;
1396d4af9e69SDag-Erling Smørgrav 	off_t i, statbytes;
1397a0ee8cc6SDag-Erling Smørgrav 	size_t amt, nr;
1398d4ecd108SDag-Erling Smørgrav 	int fd = -1, haderr, indx;
139919261079SEd Maste 	char *last, *name, buf[PATH_MAX + 128], encname[PATH_MAX];
14001e8db6e2SBrian Feldman 	int len;
1401511b41d2SMark Murray 
1402511b41d2SMark Murray 	for (indx = 0; indx < argc; ++indx) {
1403511b41d2SMark Murray 		name = argv[indx];
1404511b41d2SMark Murray 		statbytes = 0;
14051e8db6e2SBrian Feldman 		len = strlen(name);
14061e8db6e2SBrian Feldman 		while (len > 1 && name[len-1] == '/')
14071e8db6e2SBrian Feldman 			name[--len] = '\0';
14081323ec57SEd Maste 		if ((fd = open(name, O_RDONLY|O_NONBLOCK)) == -1)
1409511b41d2SMark Murray 			goto syserr;
1410d4af9e69SDag-Erling Smørgrav 		if (strchr(name, '\n') != NULL) {
1411d4af9e69SDag-Erling Smørgrav 			strnvis(encname, name, sizeof(encname), VIS_NL);
1412d4af9e69SDag-Erling Smørgrav 			name = encname;
1413d4af9e69SDag-Erling Smørgrav 		}
141419261079SEd Maste 		if (fstat(fd, &stb) == -1) {
1415511b41d2SMark Murray syserr:			run_err("%s: %s", name, strerror(errno));
1416511b41d2SMark Murray 			goto next;
1417511b41d2SMark Murray 		}
1418d4af9e69SDag-Erling Smørgrav 		if (stb.st_size < 0) {
1419d4af9e69SDag-Erling Smørgrav 			run_err("%s: %s", name, "Negative file size");
1420d4af9e69SDag-Erling Smørgrav 			goto next;
1421d4af9e69SDag-Erling Smørgrav 		}
1422d4af9e69SDag-Erling Smørgrav 		unset_nonblock(fd);
1423511b41d2SMark Murray 		switch (stb.st_mode & S_IFMT) {
1424511b41d2SMark Murray 		case S_IFREG:
1425511b41d2SMark Murray 			break;
1426511b41d2SMark Murray 		case S_IFDIR:
1427511b41d2SMark Murray 			if (iamrecursive) {
1428511b41d2SMark Murray 				rsource(name, &stb);
1429511b41d2SMark Murray 				goto next;
1430511b41d2SMark Murray 			}
1431511b41d2SMark Murray 			/* FALLTHROUGH */
1432511b41d2SMark Murray 		default:
1433511b41d2SMark Murray 			run_err("%s: not a regular file", name);
1434511b41d2SMark Murray 			goto next;
1435511b41d2SMark Murray 		}
1436511b41d2SMark Murray 		if ((last = strrchr(name, '/')) == NULL)
1437511b41d2SMark Murray 			last = name;
1438511b41d2SMark Murray 		else
1439511b41d2SMark Murray 			++last;
1440511b41d2SMark Murray 		curfile = last;
1441511b41d2SMark Murray 		if (pflag) {
1442e4a9863fSDag-Erling Smørgrav 			if (do_times(remout, verbose_mode, &stb) < 0)
1443511b41d2SMark Murray 				goto next;
1444511b41d2SMark Murray 		}
1445511b41d2SMark Murray #define	FILEMODEMASK	(S_ISUID|S_ISGID|S_IRWXU|S_IRWXG|S_IRWXO)
14461e8db6e2SBrian Feldman 		snprintf(buf, sizeof buf, "C%04o %lld %s\n",
14471e8db6e2SBrian Feldman 		    (u_int) (stb.st_mode & FILEMODEMASK),
1448b74df5b2SDag-Erling Smørgrav 		    (long long)stb.st_size, last);
1449076ad2f8SDag-Erling Smørgrav 		if (verbose_mode)
1450076ad2f8SDag-Erling Smørgrav 			fmprintf(stderr, "Sending file modes: %s", buf);
1451cf2b5f3bSDag-Erling Smørgrav 		(void) atomicio(vwrite, remout, buf, strlen(buf));
1452511b41d2SMark Murray 		if (response() < 0)
1453511b41d2SMark Murray 			goto next;
1454d4af9e69SDag-Erling Smørgrav 		if ((bp = allocbuf(&buffer, fd, COPY_BUFLEN)) == NULL) {
1455b74df5b2SDag-Erling Smørgrav next:			if (fd != -1) {
1456b74df5b2SDag-Erling Smørgrav 				(void) close(fd);
1457b74df5b2SDag-Erling Smørgrav 				fd = -1;
1458b74df5b2SDag-Erling Smørgrav 			}
1459511b41d2SMark Murray 			continue;
1460511b41d2SMark Murray 		}
1461e73e9afaSDag-Erling Smørgrav 		if (showprogress)
1462e73e9afaSDag-Erling Smørgrav 			start_progress_meter(curfile, stb.st_size, &statbytes);
1463d4af9e69SDag-Erling Smørgrav 		set_nonblock(remout);
1464511b41d2SMark Murray 		for (haderr = i = 0; i < stb.st_size; i += bp->cnt) {
1465511b41d2SMark Murray 			amt = bp->cnt;
1466d4af9e69SDag-Erling Smørgrav 			if (i + (off_t)amt > stb.st_size)
1467511b41d2SMark Murray 				amt = stb.st_size - i;
1468511b41d2SMark Murray 			if (!haderr) {
1469a0ee8cc6SDag-Erling Smørgrav 				if ((nr = atomicio(read, fd,
1470a0ee8cc6SDag-Erling Smørgrav 				    bp->buf, amt)) != amt) {
1471d4ecd108SDag-Erling Smørgrav 					haderr = errno;
1472a0ee8cc6SDag-Erling Smørgrav 					memset(bp->buf + nr, 0, amt - nr);
1473a0ee8cc6SDag-Erling Smørgrav 				}
1474511b41d2SMark Murray 			}
1475d4af9e69SDag-Erling Smørgrav 			/* Keep writing after error to retain sync */
1476d4af9e69SDag-Erling Smørgrav 			if (haderr) {
1477cf2b5f3bSDag-Erling Smørgrav 				(void)atomicio(vwrite, remout, bp->buf, amt);
1478a0ee8cc6SDag-Erling Smørgrav 				memset(bp->buf, 0, amt);
1479d4af9e69SDag-Erling Smørgrav 				continue;
1480d4af9e69SDag-Erling Smørgrav 			}
14814a421b63SDag-Erling Smørgrav 			if (atomicio6(vwrite, remout, bp->buf, amt, scpio,
1482d4af9e69SDag-Erling Smørgrav 			    &statbytes) != amt)
1483d4ecd108SDag-Erling Smørgrav 				haderr = errno;
1484511b41d2SMark Murray 		}
1485d4af9e69SDag-Erling Smørgrav 		unset_nonblock(remout);
1486511b41d2SMark Murray 
1487b74df5b2SDag-Erling Smørgrav 		if (fd != -1) {
148819261079SEd Maste 			if (close(fd) == -1 && !haderr)
1489511b41d2SMark Murray 				haderr = errno;
1490b74df5b2SDag-Erling Smørgrav 			fd = -1;
1491b74df5b2SDag-Erling Smørgrav 		}
1492511b41d2SMark Murray 		if (!haderr)
1493cf2b5f3bSDag-Erling Smørgrav 			(void) atomicio(vwrite, remout, "", 1);
1494511b41d2SMark Murray 		else
1495511b41d2SMark Murray 			run_err("%s: %s", name, strerror(haderr));
1496511b41d2SMark Murray 		(void) response();
1497076ad2f8SDag-Erling Smørgrav 		if (showprogress)
1498076ad2f8SDag-Erling Smørgrav 			stop_progress_meter();
1499511b41d2SMark Murray 	}
1500511b41d2SMark Murray }
1501511b41d2SMark Murray 
1502511b41d2SMark Murray void
rsource(char * name,struct stat * statp)1503cf2b5f3bSDag-Erling Smørgrav rsource(char *name, struct stat *statp)
1504511b41d2SMark Murray {
1505511b41d2SMark Murray 	DIR *dirp;
1506511b41d2SMark Murray 	struct dirent *dp;
1507bc5531deSDag-Erling Smørgrav 	char *last, *vect[1], path[PATH_MAX];
1508511b41d2SMark Murray 
1509511b41d2SMark Murray 	if (!(dirp = opendir(name))) {
1510511b41d2SMark Murray 		run_err("%s: %s", name, strerror(errno));
1511511b41d2SMark Murray 		return;
1512511b41d2SMark Murray 	}
1513511b41d2SMark Murray 	last = strrchr(name, '/');
1514acc1a9efSDag-Erling Smørgrav 	if (last == NULL)
1515511b41d2SMark Murray 		last = name;
1516511b41d2SMark Murray 	else
1517511b41d2SMark Murray 		last++;
1518511b41d2SMark Murray 	if (pflag) {
1519e4a9863fSDag-Erling Smørgrav 		if (do_times(remout, verbose_mode, statp) < 0) {
1520511b41d2SMark Murray 			closedir(dirp);
1521511b41d2SMark Murray 			return;
1522511b41d2SMark Murray 		}
1523511b41d2SMark Murray 	}
15241e8db6e2SBrian Feldman 	(void) snprintf(path, sizeof path, "D%04o %d %.1024s\n",
15251e8db6e2SBrian Feldman 	    (u_int) (statp->st_mode & FILEMODEMASK), 0, last);
1526511b41d2SMark Murray 	if (verbose_mode)
1527076ad2f8SDag-Erling Smørgrav 		fmprintf(stderr, "Entering directory: %s", path);
1528cf2b5f3bSDag-Erling Smørgrav 	(void) atomicio(vwrite, remout, path, strlen(path));
1529511b41d2SMark Murray 	if (response() < 0) {
1530511b41d2SMark Murray 		closedir(dirp);
1531511b41d2SMark Murray 		return;
1532511b41d2SMark Murray 	}
15331e8db6e2SBrian Feldman 	while ((dp = readdir(dirp)) != NULL) {
1534511b41d2SMark Murray 		if (dp->d_ino == 0)
1535511b41d2SMark Murray 			continue;
1536511b41d2SMark Murray 		if (!strcmp(dp->d_name, ".") || !strcmp(dp->d_name, ".."))
1537511b41d2SMark Murray 			continue;
1538511b41d2SMark Murray 		if (strlen(name) + 1 + strlen(dp->d_name) >= sizeof(path) - 1) {
1539511b41d2SMark Murray 			run_err("%s/%s: name too long", name, dp->d_name);
1540511b41d2SMark Murray 			continue;
1541511b41d2SMark Murray 		}
15421e8db6e2SBrian Feldman 		(void) snprintf(path, sizeof path, "%s/%s", name, dp->d_name);
1543511b41d2SMark Murray 		vect[0] = path;
1544511b41d2SMark Murray 		source(1, vect);
1545511b41d2SMark Murray 	}
1546511b41d2SMark Murray 	(void) closedir(dirp);
1547cf2b5f3bSDag-Erling Smørgrav 	(void) atomicio(vwrite, remout, "E\n", 2);
1548511b41d2SMark Murray 	(void) response();
1549511b41d2SMark Murray }
1550511b41d2SMark Murray 
155119261079SEd Maste void
sink_sftp(int argc,char * dst,const char * src,struct sftp_conn * conn)155219261079SEd Maste sink_sftp(int argc, char *dst, const char *src, struct sftp_conn *conn)
155319261079SEd Maste {
155419261079SEd Maste 	char *abs_src = NULL;
155519261079SEd Maste 	char *abs_dst = NULL;
155619261079SEd Maste 	glob_t g;
155719261079SEd Maste 	char *filename, *tmp = NULL;
15581323ec57SEd Maste 	int i, r, err = 0, dst_is_dir;
15591323ec57SEd Maste 	struct stat st;
156019261079SEd Maste 
156119261079SEd Maste 	memset(&g, 0, sizeof(g));
15621323ec57SEd Maste 
156319261079SEd Maste 	/*
156419261079SEd Maste 	 * Here, we need remote glob as SFTP can not depend on remote shell
156519261079SEd Maste 	 * expansions
156619261079SEd Maste 	 */
156719261079SEd Maste 	if ((abs_src = prepare_remote_path(conn, src)) == NULL) {
156819261079SEd Maste 		err = -1;
156919261079SEd Maste 		goto out;
157019261079SEd Maste 	}
157119261079SEd Maste 
157219261079SEd Maste 	debug3_f("copying remote %s to local %s", abs_src, dst);
1573edf85781SEd Maste 	if ((r = sftp_glob(conn, abs_src, GLOB_NOCHECK|GLOB_MARK,
1574f374ba41SEd Maste 	    NULL, &g)) != 0) {
157519261079SEd Maste 		if (r == GLOB_NOSPACE)
15761323ec57SEd Maste 			error("%s: too many glob matches", src);
157719261079SEd Maste 		else
15781323ec57SEd Maste 			error("%s: %s", src, strerror(ENOENT));
157919261079SEd Maste 		err = -1;
158019261079SEd Maste 		goto out;
158119261079SEd Maste 	}
158219261079SEd Maste 
1583f374ba41SEd Maste 	/* Did we actually get any matches back from the glob? */
1584f374ba41SEd Maste 	if (g.gl_matchc == 0 && g.gl_pathc == 1 && g.gl_pathv[0] != 0) {
1585f374ba41SEd Maste 		/*
1586f374ba41SEd Maste 		 * If nothing matched but a path returned, then it's probably
1587f374ba41SEd Maste 		 * a GLOB_NOCHECK result. Check whether the unglobbed path
1588f374ba41SEd Maste 		 * exists so we can give a nice error message early.
1589f374ba41SEd Maste 		 */
1590edf85781SEd Maste 		if (sftp_stat(conn, g.gl_pathv[0], 1, NULL) != 0) {
1591f374ba41SEd Maste 			error("%s: %s", src, strerror(ENOENT));
1592f374ba41SEd Maste 			err = -1;
1593f374ba41SEd Maste 			goto out;
1594f374ba41SEd Maste 		}
1595f374ba41SEd Maste 	}
1596f374ba41SEd Maste 
15971323ec57SEd Maste 	if ((r = stat(dst, &st)) != 0)
15981323ec57SEd Maste 		debug2_f("stat local \"%s\": %s", dst, strerror(errno));
15991323ec57SEd Maste 	dst_is_dir = r == 0 && S_ISDIR(st.st_mode);
16001323ec57SEd Maste 
16011323ec57SEd Maste 	if (g.gl_matchc > 1 && !dst_is_dir) {
16021323ec57SEd Maste 		if (r == 0) {
160319261079SEd Maste 			error("Multiple files match pattern, but destination "
160419261079SEd Maste 			    "\"%s\" is not a directory", dst);
160519261079SEd Maste 			err = -1;
160619261079SEd Maste 			goto out;
160719261079SEd Maste 		}
16081323ec57SEd Maste 		debug2_f("creating destination \"%s\"", dst);
16091323ec57SEd Maste 		if (mkdir(dst, 0777) != 0) {
16101323ec57SEd Maste 			error("local mkdir \"%s\": %s", dst, strerror(errno));
16111323ec57SEd Maste 			err = -1;
16121323ec57SEd Maste 			goto out;
16131323ec57SEd Maste 		}
16141323ec57SEd Maste 		dst_is_dir = 1;
16151323ec57SEd Maste 	}
161619261079SEd Maste 
161719261079SEd Maste 	for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
161819261079SEd Maste 		tmp = xstrdup(g.gl_pathv[i]);
161919261079SEd Maste 		if ((filename = basename(tmp)) == NULL) {
162019261079SEd Maste 			error("basename %s: %s", tmp, strerror(errno));
162119261079SEd Maste 			err = -1;
162219261079SEd Maste 			goto out;
162319261079SEd Maste 		}
162419261079SEd Maste 
16251323ec57SEd Maste 		if (dst_is_dir)
1626edf85781SEd Maste 			abs_dst = sftp_path_append(dst, filename);
162719261079SEd Maste 		else
162819261079SEd Maste 			abs_dst = xstrdup(dst);
162919261079SEd Maste 
163019261079SEd Maste 		debug("Fetching %s to %s\n", g.gl_pathv[i], abs_dst);
1631edf85781SEd Maste 		if (sftp_globpath_is_dir(g.gl_pathv[i]) && iamrecursive) {
1632edf85781SEd Maste 			if (sftp_download_dir(conn, g.gl_pathv[i], abs_dst,
1633edf85781SEd Maste 			    NULL, pflag, SFTP_PROGRESS_ONLY, 0, 0, 1, 1) == -1)
163419261079SEd Maste 				err = -1;
163519261079SEd Maste 		} else {
1636edf85781SEd Maste 			if (sftp_download(conn, g.gl_pathv[i], abs_dst, NULL,
163738a52bd3SEd Maste 			    pflag, 0, 0, 1) == -1)
163819261079SEd Maste 				err = -1;
163919261079SEd Maste 		}
164019261079SEd Maste 		free(abs_dst);
164119261079SEd Maste 		abs_dst = NULL;
164219261079SEd Maste 		free(tmp);
164319261079SEd Maste 		tmp = NULL;
164419261079SEd Maste 	}
164519261079SEd Maste 
164619261079SEd Maste out:
164719261079SEd Maste 	free(abs_src);
164819261079SEd Maste 	free(tmp);
164919261079SEd Maste 	globfree(&g);
1650e9e8876aSEd Maste 	if (err == -1)
1651e9e8876aSEd Maste 		errs = 1;
165219261079SEd Maste }
165319261079SEd Maste 
165419261079SEd Maste 
16554f52dfbbSDag-Erling Smørgrav #define TYPE_OVERFLOW(type, val) \
16564f52dfbbSDag-Erling Smørgrav 	((sizeof(type) == 4 && (val) > INT32_MAX) || \
16574f52dfbbSDag-Erling Smørgrav 	 (sizeof(type) == 8 && (val) > INT64_MAX) || \
16584f52dfbbSDag-Erling Smørgrav 	 (sizeof(type) != 4 && sizeof(type) != 8))
16594f52dfbbSDag-Erling Smørgrav 
1660511b41d2SMark Murray void
sink(int argc,char ** argv,const char * src)1661afde5170SEd Maste sink(int argc, char **argv, const char *src)
1662511b41d2SMark Murray {
1663511b41d2SMark Murray 	static BUF buffer;
1664511b41d2SMark Murray 	struct stat stb;
1665511b41d2SMark Murray 	BUF *bp;
1666d4ecd108SDag-Erling Smørgrav 	off_t i;
1667d4ecd108SDag-Erling Smørgrav 	size_t j, count;
1668333ee039SDag-Erling Smørgrav 	int amt, exists, first, ofd;
1669333ee039SDag-Erling Smørgrav 	mode_t mode, omode, mask;
1670e73e9afaSDag-Erling Smørgrav 	off_t size, statbytes;
1671e4a9863fSDag-Erling Smørgrav 	unsigned long long ull;
167219261079SEd Maste 	int setimes, targisdir, wrerr;
1673076ad2f8SDag-Erling Smørgrav 	char ch, *cp, *np, *targ, *why, *vect[1], buf[2048], visbuf[2048];
16740967215dSEd Maste 	char **patterns = NULL;
16750967215dSEd Maste 	size_t n, npatterns = 0;
16765b9b2fafSBrian Feldman 	struct timeval tv[2];
1677511b41d2SMark Murray 
16781e8db6e2SBrian Feldman #define	atime	tv[0]
16791e8db6e2SBrian Feldman #define	mtime	tv[1]
1680aa49c926SDag-Erling Smørgrav #define	SCREWUP(str)	{ why = str; goto screwup; }
1681511b41d2SMark Murray 
16824f52dfbbSDag-Erling Smørgrav 	if (TYPE_OVERFLOW(time_t, 0) || TYPE_OVERFLOW(off_t, 0))
16834f52dfbbSDag-Erling Smørgrav 		SCREWUP("Unexpected off_t/time_t size");
16844f52dfbbSDag-Erling Smørgrav 
1685511b41d2SMark Murray 	setimes = targisdir = 0;
1686511b41d2SMark Murray 	mask = umask(0);
1687511b41d2SMark Murray 	if (!pflag)
1688511b41d2SMark Murray 		(void) umask(mask);
1689511b41d2SMark Murray 	if (argc != 1) {
1690511b41d2SMark Murray 		run_err("ambiguous target");
1691511b41d2SMark Murray 		exit(1);
1692511b41d2SMark Murray 	}
1693511b41d2SMark Murray 	targ = *argv;
1694511b41d2SMark Murray 	if (targetshouldbedirectory)
1695511b41d2SMark Murray 		verifydir(targ);
1696511b41d2SMark Murray 
1697cf2b5f3bSDag-Erling Smørgrav 	(void) atomicio(vwrite, remout, "", 1);
1698511b41d2SMark Murray 	if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
1699511b41d2SMark Murray 		targisdir = 1;
1700afde5170SEd Maste 	if (src != NULL && !iamrecursive && !Tflag) {
1701afde5170SEd Maste 		/*
1702afde5170SEd Maste 		 * Prepare to try to restrict incoming filenames to match
1703afde5170SEd Maste 		 * the requested destination file glob.
1704afde5170SEd Maste 		 */
17050967215dSEd Maste 		if (brace_expand(src, &patterns, &npatterns) != 0)
170619261079SEd Maste 			fatal_f("could not expand pattern");
1707afde5170SEd Maste 	}
1708511b41d2SMark Murray 	for (first = 1;; first = 0) {
1709511b41d2SMark Murray 		cp = buf;
1710d4ecd108SDag-Erling Smørgrav 		if (atomicio(read, remin, cp, 1) != 1)
17110967215dSEd Maste 			goto done;
1712511b41d2SMark Murray 		if (*cp++ == '\n')
1713511b41d2SMark Murray 			SCREWUP("unexpected <newline>");
1714511b41d2SMark Murray 		do {
1715a04a10f8SKris Kennaway 			if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
1716511b41d2SMark Murray 				SCREWUP("lost connection");
1717511b41d2SMark Murray 			*cp++ = ch;
1718511b41d2SMark Murray 		} while (cp < &buf[sizeof(buf) - 1] && ch != '\n');
1719511b41d2SMark Murray 		*cp = 0;
172021e764dfSDag-Erling Smørgrav 		if (verbose_mode)
1721076ad2f8SDag-Erling Smørgrav 			fmprintf(stderr, "Sink: %s", buf);
1722511b41d2SMark Murray 
1723511b41d2SMark Murray 		if (buf[0] == '\01' || buf[0] == '\02') {
1724076ad2f8SDag-Erling Smørgrav 			if (iamremote == 0) {
1725076ad2f8SDag-Erling Smørgrav 				(void) snmprintf(visbuf, sizeof(visbuf),
1726076ad2f8SDag-Erling Smørgrav 				    NULL, "%s", buf + 1);
1727cf2b5f3bSDag-Erling Smørgrav 				(void) atomicio(vwrite, STDERR_FILENO,
1728076ad2f8SDag-Erling Smørgrav 				    visbuf, strlen(visbuf));
1729076ad2f8SDag-Erling Smørgrav 			}
1730511b41d2SMark Murray 			if (buf[0] == '\02')
1731511b41d2SMark Murray 				exit(1);
1732511b41d2SMark Murray 			++errs;
1733511b41d2SMark Murray 			continue;
1734511b41d2SMark Murray 		}
1735511b41d2SMark Murray 		if (buf[0] == 'E') {
1736cf2b5f3bSDag-Erling Smørgrav 			(void) atomicio(vwrite, remout, "", 1);
17370967215dSEd Maste 			goto done;
1738511b41d2SMark Murray 		}
1739511b41d2SMark Murray 		if (ch == '\n')
1740511b41d2SMark Murray 			*--cp = 0;
1741511b41d2SMark Murray 
1742511b41d2SMark Murray 		cp = buf;
1743511b41d2SMark Murray 		if (*cp == 'T') {
1744511b41d2SMark Murray 			setimes++;
1745511b41d2SMark Murray 			cp++;
1746e4a9863fSDag-Erling Smørgrav 			if (!isdigit((unsigned char)*cp))
1747e4a9863fSDag-Erling Smørgrav 				SCREWUP("mtime.sec not present");
1748e4a9863fSDag-Erling Smørgrav 			ull = strtoull(cp, &cp, 10);
17491e8db6e2SBrian Feldman 			if (!cp || *cp++ != ' ')
1750511b41d2SMark Murray 				SCREWUP("mtime.sec not delimited");
17514f52dfbbSDag-Erling Smørgrav 			if (TYPE_OVERFLOW(time_t, ull))
1752e4a9863fSDag-Erling Smørgrav 				setimes = 0;	/* out of range */
1753e4a9863fSDag-Erling Smørgrav 			mtime.tv_sec = ull;
17541e8db6e2SBrian Feldman 			mtime.tv_usec = strtol(cp, &cp, 10);
1755e4a9863fSDag-Erling Smørgrav 			if (!cp || *cp++ != ' ' || mtime.tv_usec < 0 ||
1756e4a9863fSDag-Erling Smørgrav 			    mtime.tv_usec > 999999)
1757511b41d2SMark Murray 				SCREWUP("mtime.usec not delimited");
1758e4a9863fSDag-Erling Smørgrav 			if (!isdigit((unsigned char)*cp))
1759e4a9863fSDag-Erling Smørgrav 				SCREWUP("atime.sec not present");
1760e4a9863fSDag-Erling Smørgrav 			ull = strtoull(cp, &cp, 10);
17611e8db6e2SBrian Feldman 			if (!cp || *cp++ != ' ')
1762511b41d2SMark Murray 				SCREWUP("atime.sec not delimited");
17634f52dfbbSDag-Erling Smørgrav 			if (TYPE_OVERFLOW(time_t, ull))
1764e4a9863fSDag-Erling Smørgrav 				setimes = 0;	/* out of range */
1765e4a9863fSDag-Erling Smørgrav 			atime.tv_sec = ull;
17661e8db6e2SBrian Feldman 			atime.tv_usec = strtol(cp, &cp, 10);
1767e4a9863fSDag-Erling Smørgrav 			if (!cp || *cp++ != '\0' || atime.tv_usec < 0 ||
1768e4a9863fSDag-Erling Smørgrav 			    atime.tv_usec > 999999)
1769511b41d2SMark Murray 				SCREWUP("atime.usec not delimited");
1770cf2b5f3bSDag-Erling Smørgrav 			(void) atomicio(vwrite, remout, "", 1);
1771511b41d2SMark Murray 			continue;
1772511b41d2SMark Murray 		}
1773511b41d2SMark Murray 		if (*cp != 'C' && *cp != 'D') {
1774511b41d2SMark Murray 			/*
1775511b41d2SMark Murray 			 * Check for the case "rcp remote:foo\* local:bar".
1776511b41d2SMark Murray 			 * In this case, the line "No match." can be returned
1777511b41d2SMark Murray 			 * by the shell before the rcp command on the remote is
1778511b41d2SMark Murray 			 * executed so the ^Aerror_message convention isn't
1779511b41d2SMark Murray 			 * followed.
1780511b41d2SMark Murray 			 */
1781511b41d2SMark Murray 			if (first) {
1782511b41d2SMark Murray 				run_err("%s", cp);
1783511b41d2SMark Murray 				exit(1);
1784511b41d2SMark Murray 			}
1785511b41d2SMark Murray 			SCREWUP("expected control record");
1786511b41d2SMark Murray 		}
1787511b41d2SMark Murray 		mode = 0;
1788511b41d2SMark Murray 		for (++cp; cp < buf + 5; cp++) {
1789511b41d2SMark Murray 			if (*cp < '0' || *cp > '7')
1790511b41d2SMark Murray 				SCREWUP("bad mode");
1791511b41d2SMark Murray 			mode = (mode << 3) | (*cp - '0');
1792511b41d2SMark Murray 		}
1793190cef3dSDag-Erling Smørgrav 		if (!pflag)
1794190cef3dSDag-Erling Smørgrav 			mode &= ~mask;
1795511b41d2SMark Murray 		if (*cp++ != ' ')
1796511b41d2SMark Murray 			SCREWUP("mode not delimited");
1797511b41d2SMark Murray 
17984f52dfbbSDag-Erling Smørgrav 		if (!isdigit((unsigned char)*cp))
17994f52dfbbSDag-Erling Smørgrav 			SCREWUP("size not present");
18004f52dfbbSDag-Erling Smørgrav 		ull = strtoull(cp, &cp, 10);
18014f52dfbbSDag-Erling Smørgrav 		if (!cp || *cp++ != ' ')
1802511b41d2SMark Murray 			SCREWUP("size not delimited");
18034f52dfbbSDag-Erling Smørgrav 		if (TYPE_OVERFLOW(off_t, ull))
18044f52dfbbSDag-Erling Smørgrav 			SCREWUP("size out of range");
18054f52dfbbSDag-Erling Smørgrav 		size = (off_t)ull;
18064f52dfbbSDag-Erling Smørgrav 
1807d366f891SEd Maste 		if (*cp == '\0' || strchr(cp, '/') != NULL ||
1808d366f891SEd Maste 		    strcmp(cp, ".") == 0 || strcmp(cp, "..") == 0) {
180921e764dfSDag-Erling Smørgrav 			run_err("error: unexpected filename: %s", cp);
181021e764dfSDag-Erling Smørgrav 			exit(1);
181121e764dfSDag-Erling Smørgrav 		}
18120967215dSEd Maste 		if (npatterns > 0) {
18130967215dSEd Maste 			for (n = 0; n < npatterns; n++) {
1814f374ba41SEd Maste 				if (strcmp(patterns[n], cp) == 0 ||
1815f374ba41SEd Maste 				    fnmatch(patterns[n], cp, 0) == 0)
18160967215dSEd Maste 					break;
18170967215dSEd Maste 			}
1818069ac184SEd Maste 			if (n >= npatterns) {
1819069ac184SEd Maste 				debug2_f("incoming filename \"%s\" does not "
1820069ac184SEd Maste 				    "match any of %zu expected patterns", cp,
1821069ac184SEd Maste 				    npatterns);
1822069ac184SEd Maste 				for (n = 0; n < npatterns; n++) {
1823069ac184SEd Maste 					debug3_f("expected pattern %zu: \"%s\"",
1824069ac184SEd Maste 					    n, patterns[n]);
1825069ac184SEd Maste 				}
1826afde5170SEd Maste 				SCREWUP("filename does not match request");
18270967215dSEd Maste 			}
1828069ac184SEd Maste 		}
1829511b41d2SMark Murray 		if (targisdir) {
1830511b41d2SMark Murray 			static char *namebuf;
1831d4ecd108SDag-Erling Smørgrav 			static size_t cursize;
1832511b41d2SMark Murray 			size_t need;
1833511b41d2SMark Murray 
1834511b41d2SMark Murray 			need = strlen(targ) + strlen(cp) + 250;
18351e8db6e2SBrian Feldman 			if (need > cursize) {
1836e4a9863fSDag-Erling Smørgrav 				free(namebuf);
1837511b41d2SMark Murray 				namebuf = xmalloc(need);
18381e8db6e2SBrian Feldman 				cursize = need;
18391e8db6e2SBrian Feldman 			}
18401e8db6e2SBrian Feldman 			(void) snprintf(namebuf, need, "%s%s%s", targ,
1841545d5ecaSDag-Erling Smørgrav 			    strcmp(targ, "/") ? "/" : "", cp);
1842511b41d2SMark Murray 			np = namebuf;
1843511b41d2SMark Murray 		} else
1844511b41d2SMark Murray 			np = targ;
1845511b41d2SMark Murray 		curfile = cp;
1846511b41d2SMark Murray 		exists = stat(np, &stb) == 0;
1847511b41d2SMark Murray 		if (buf[0] == 'D') {
1848511b41d2SMark Murray 			int mod_flag = pflag;
184921e764dfSDag-Erling Smørgrav 			if (!iamrecursive)
185021e764dfSDag-Erling Smørgrav 				SCREWUP("received directory without -r");
1851511b41d2SMark Murray 			if (exists) {
1852511b41d2SMark Murray 				if (!S_ISDIR(stb.st_mode)) {
1853511b41d2SMark Murray 					errno = ENOTDIR;
1854511b41d2SMark Murray 					goto bad;
1855511b41d2SMark Murray 				}
1856511b41d2SMark Murray 				if (pflag)
1857511b41d2SMark Murray 					(void) chmod(np, mode);
1858511b41d2SMark Murray 			} else {
185919261079SEd Maste 				/* Handle copying from a read-only directory */
1860511b41d2SMark Murray 				mod_flag = 1;
186119261079SEd Maste 				if (mkdir(np, mode | S_IRWXU) == -1)
1862511b41d2SMark Murray 					goto bad;
1863511b41d2SMark Murray 			}
18641e8db6e2SBrian Feldman 			vect[0] = xstrdup(np);
1865afde5170SEd Maste 			sink(1, vect, src);
1866511b41d2SMark Murray 			if (setimes) {
1867511b41d2SMark Murray 				setimes = 0;
186819261079SEd Maste 				(void) utimes(vect[0], tv);
1869511b41d2SMark Murray 			}
1870511b41d2SMark Murray 			if (mod_flag)
18711e8db6e2SBrian Feldman 				(void) chmod(vect[0], mode);
1872e4a9863fSDag-Erling Smørgrav 			free(vect[0]);
1873511b41d2SMark Murray 			continue;
1874511b41d2SMark Murray 		}
1875511b41d2SMark Murray 		omode = mode;
1876e4a9863fSDag-Erling Smørgrav 		mode |= S_IWUSR;
187719261079SEd Maste 		if ((ofd = open(np, O_WRONLY|O_CREAT, mode)) == -1) {
1878511b41d2SMark Murray bad:			run_err("%s: %s", np, strerror(errno));
1879511b41d2SMark Murray 			continue;
1880511b41d2SMark Murray 		}
1881cf2b5f3bSDag-Erling Smørgrav 		(void) atomicio(vwrite, remout, "", 1);
1882d4af9e69SDag-Erling Smørgrav 		if ((bp = allocbuf(&buffer, ofd, COPY_BUFLEN)) == NULL) {
1883511b41d2SMark Murray 			(void) close(ofd);
1884511b41d2SMark Murray 			continue;
1885511b41d2SMark Murray 		}
1886511b41d2SMark Murray 		cp = bp->buf;
188719261079SEd Maste 		wrerr = 0;
1888511b41d2SMark Murray 
188919261079SEd Maste 		/*
189019261079SEd Maste 		 * NB. do not use run_err() unless immediately followed by
189119261079SEd Maste 		 * exit() below as it may send a spurious reply that might
189219261079SEd Maste 		 * desyncronise us from the peer. Use note_err() instead.
189319261079SEd Maste 		 */
1894511b41d2SMark Murray 		statbytes = 0;
1895e73e9afaSDag-Erling Smørgrav 		if (showprogress)
1896e73e9afaSDag-Erling Smørgrav 			start_progress_meter(curfile, size, &statbytes);
1897d4af9e69SDag-Erling Smørgrav 		set_nonblock(remin);
1898d4af9e69SDag-Erling Smørgrav 		for (count = i = 0; i < size; i += bp->cnt) {
1899d4af9e69SDag-Erling Smørgrav 			amt = bp->cnt;
1900511b41d2SMark Murray 			if (i + amt > size)
1901511b41d2SMark Murray 				amt = size - i;
1902511b41d2SMark Murray 			count += amt;
1903511b41d2SMark Murray 			do {
19044a421b63SDag-Erling Smørgrav 				j = atomicio6(read, remin, cp, amt,
19054a421b63SDag-Erling Smørgrav 				    scpio, &statbytes);
1906d4ecd108SDag-Erling Smørgrav 				if (j == 0) {
1907d4af9e69SDag-Erling Smørgrav 					run_err("%s", j != EPIPE ?
1908d4af9e69SDag-Erling Smørgrav 					    strerror(errno) :
1909511b41d2SMark Murray 					    "dropped connection");
1910511b41d2SMark Murray 					exit(1);
1911511b41d2SMark Murray 				}
1912511b41d2SMark Murray 				amt -= j;
1913511b41d2SMark Murray 				cp += j;
1914511b41d2SMark Murray 			} while (amt > 0);
1915e73e9afaSDag-Erling Smørgrav 
1916511b41d2SMark Murray 			if (count == bp->cnt) {
1917511b41d2SMark Murray 				/* Keep reading so we stay sync'd up. */
191819261079SEd Maste 				if (!wrerr) {
1919d4ecd108SDag-Erling Smørgrav 					if (atomicio(vwrite, ofd, bp->buf,
1920d4ecd108SDag-Erling Smørgrav 					    count) != count) {
192119261079SEd Maste 						note_err("%s: %s", np,
192219261079SEd Maste 						    strerror(errno));
192319261079SEd Maste 						wrerr = 1;
1924511b41d2SMark Murray 					}
1925511b41d2SMark Murray 				}
1926511b41d2SMark Murray 				count = 0;
1927511b41d2SMark Murray 				cp = bp->buf;
1928511b41d2SMark Murray 			}
1929511b41d2SMark Murray 		}
1930d4af9e69SDag-Erling Smørgrav 		unset_nonblock(remin);
193119261079SEd Maste 		if (count != 0 && !wrerr &&
1932d4ecd108SDag-Erling Smørgrav 		    atomicio(vwrite, ofd, bp->buf, count) != count) {
193319261079SEd Maste 			note_err("%s: %s", np, strerror(errno));
193419261079SEd Maste 			wrerr = 1;
1935511b41d2SMark Murray 		}
193619261079SEd Maste 		if (!wrerr && (!exists || S_ISREG(stb.st_mode)) &&
193719261079SEd Maste 		    ftruncate(ofd, size) != 0)
193819261079SEd Maste 			note_err("%s: truncate: %s", np, strerror(errno));
1939511b41d2SMark Murray 		if (pflag) {
1940511b41d2SMark Murray 			if (exists || omode != mode)
194183d2307dSDag-Erling Smørgrav #ifdef HAVE_FCHMOD
194221e764dfSDag-Erling Smørgrav 				if (fchmod(ofd, omode)) {
194383d2307dSDag-Erling Smørgrav #else /* HAVE_FCHMOD */
194421e764dfSDag-Erling Smørgrav 				if (chmod(np, omode)) {
194583d2307dSDag-Erling Smørgrav #endif /* HAVE_FCHMOD */
194619261079SEd Maste 					note_err("%s: set mode: %s",
1947511b41d2SMark Murray 					    np, strerror(errno));
194821e764dfSDag-Erling Smørgrav 				}
1949511b41d2SMark Murray 		} else {
1950511b41d2SMark Murray 			if (!exists && omode != mode)
195183d2307dSDag-Erling Smørgrav #ifdef HAVE_FCHMOD
195221e764dfSDag-Erling Smørgrav 				if (fchmod(ofd, omode & ~mask)) {
195383d2307dSDag-Erling Smørgrav #else /* HAVE_FCHMOD */
195421e764dfSDag-Erling Smørgrav 				if (chmod(np, omode & ~mask)) {
195583d2307dSDag-Erling Smørgrav #endif /* HAVE_FCHMOD */
195619261079SEd Maste 					note_err("%s: set mode: %s",
1957511b41d2SMark Murray 					    np, strerror(errno));
195821e764dfSDag-Erling Smørgrav 				}
1959511b41d2SMark Murray 		}
196019261079SEd Maste 		if (close(ofd) == -1)
196119261079SEd Maste 			note_err("%s: close: %s", np, strerror(errno));
1962511b41d2SMark Murray 		(void) response();
1963076ad2f8SDag-Erling Smørgrav 		if (showprogress)
1964076ad2f8SDag-Erling Smørgrav 			stop_progress_meter();
196519261079SEd Maste 		if (setimes && !wrerr) {
1966511b41d2SMark Murray 			setimes = 0;
196719261079SEd Maste 			if (utimes(np, tv) == -1) {
196819261079SEd Maste 				note_err("%s: set times: %s",
1969511b41d2SMark Murray 				    np, strerror(errno));
1970511b41d2SMark Murray 			}
1971511b41d2SMark Murray 		}
197219261079SEd Maste 		/* If no error was noted then signal success for this file */
197319261079SEd Maste 		if (note_err(NULL) == 0)
1974cf2b5f3bSDag-Erling Smørgrav 			(void) atomicio(vwrite, remout, "", 1);
1975511b41d2SMark Murray 	}
19760967215dSEd Maste done:
19770967215dSEd Maste 	for (n = 0; n < npatterns; n++)
19780967215dSEd Maste 		free(patterns[n]);
19790967215dSEd Maste 	free(patterns);
19800967215dSEd Maste 	return;
1981511b41d2SMark Murray screwup:
19820967215dSEd Maste 	for (n = 0; n < npatterns; n++)
19830967215dSEd Maste 		free(patterns[n]);
19840967215dSEd Maste 	free(patterns);
1985511b41d2SMark Murray 	run_err("protocol error: %s", why);
1986511b41d2SMark Murray 	exit(1);
1987511b41d2SMark Murray }
1988511b41d2SMark Murray 
198919261079SEd Maste void
199019261079SEd Maste throughlocal_sftp(struct sftp_conn *from, struct sftp_conn *to,
199119261079SEd Maste     char *src, char *targ)
199219261079SEd Maste {
199319261079SEd Maste 	char *target = NULL, *filename = NULL, *abs_dst = NULL;
199419261079SEd Maste 	char *abs_src = NULL, *tmp = NULL;
199519261079SEd Maste 	glob_t g;
199619261079SEd Maste 	int i, r, targetisdir, err = 0;
199719261079SEd Maste 
199819261079SEd Maste 	if ((filename = basename(src)) == NULL)
199919261079SEd Maste 		fatal("basename %s: %s", src, strerror(errno));
200019261079SEd Maste 
200119261079SEd Maste 	if ((abs_src = prepare_remote_path(from, src)) == NULL ||
200219261079SEd Maste 	    (target = prepare_remote_path(to, targ)) == NULL)
200319261079SEd Maste 		cleanup_exit(255);
200419261079SEd Maste 	memset(&g, 0, sizeof(g));
200519261079SEd Maste 
2006edf85781SEd Maste 	targetisdir = sftp_remote_is_dir(to, target);
200719261079SEd Maste 	if (!targetisdir && targetshouldbedirectory) {
20081323ec57SEd Maste 		error("%s: destination is not a directory", targ);
200919261079SEd Maste 		err = -1;
201019261079SEd Maste 		goto out;
201119261079SEd Maste 	}
201219261079SEd Maste 
201319261079SEd Maste 	debug3_f("copying remote %s to remote %s", abs_src, target);
2014edf85781SEd Maste 	if ((r = sftp_glob(from, abs_src, GLOB_NOCHECK|GLOB_MARK,
2015f374ba41SEd Maste 	    NULL, &g)) != 0) {
201619261079SEd Maste 		if (r == GLOB_NOSPACE)
20171323ec57SEd Maste 			error("%s: too many glob matches", src);
201819261079SEd Maste 		else
20191323ec57SEd Maste 			error("%s: %s", src, strerror(ENOENT));
202019261079SEd Maste 		err = -1;
202119261079SEd Maste 		goto out;
202219261079SEd Maste 	}
202319261079SEd Maste 
2024f374ba41SEd Maste 	/* Did we actually get any matches back from the glob? */
2025f374ba41SEd Maste 	if (g.gl_matchc == 0 && g.gl_pathc == 1 && g.gl_pathv[0] != 0) {
2026f374ba41SEd Maste 		/*
2027f374ba41SEd Maste 		 * If nothing matched but a path returned, then it's probably
2028f374ba41SEd Maste 		 * a GLOB_NOCHECK result. Check whether the unglobbed path
2029f374ba41SEd Maste 		 * exists so we can give a nice error message early.
2030f374ba41SEd Maste 		 */
2031edf85781SEd Maste 		if (sftp_stat(from, g.gl_pathv[0], 1, NULL) != 0) {
2032f374ba41SEd Maste 			error("%s: %s", src, strerror(ENOENT));
2033f374ba41SEd Maste 			err = -1;
2034f374ba41SEd Maste 			goto out;
2035f374ba41SEd Maste 		}
2036f374ba41SEd Maste 	}
2037f374ba41SEd Maste 
203819261079SEd Maste 	for (i = 0; g.gl_pathv[i] && !interrupted; i++) {
203919261079SEd Maste 		tmp = xstrdup(g.gl_pathv[i]);
204019261079SEd Maste 		if ((filename = basename(tmp)) == NULL) {
204119261079SEd Maste 			error("basename %s: %s", tmp, strerror(errno));
204219261079SEd Maste 			err = -1;
204319261079SEd Maste 			goto out;
204419261079SEd Maste 		}
204519261079SEd Maste 
204619261079SEd Maste 		if (targetisdir)
2047edf85781SEd Maste 			abs_dst = sftp_path_append(target, filename);
204819261079SEd Maste 		else
204919261079SEd Maste 			abs_dst = xstrdup(target);
205019261079SEd Maste 
205119261079SEd Maste 		debug("Fetching %s to %s\n", g.gl_pathv[i], abs_dst);
2052edf85781SEd Maste 		if (sftp_globpath_is_dir(g.gl_pathv[i]) && iamrecursive) {
2053edf85781SEd Maste 			if (sftp_crossload_dir(from, to, g.gl_pathv[i], abs_dst,
205419261079SEd Maste 			    NULL, pflag, SFTP_PROGRESS_ONLY, 1) == -1)
205519261079SEd Maste 				err = -1;
205619261079SEd Maste 		} else {
2057edf85781SEd Maste 			if (sftp_crossload(from, to, g.gl_pathv[i], abs_dst,
2058edf85781SEd Maste 			    NULL, pflag) == -1)
205919261079SEd Maste 				err = -1;
206019261079SEd Maste 		}
206119261079SEd Maste 		free(abs_dst);
206219261079SEd Maste 		abs_dst = NULL;
206319261079SEd Maste 		free(tmp);
206419261079SEd Maste 		tmp = NULL;
206519261079SEd Maste 	}
206619261079SEd Maste 
206719261079SEd Maste out:
206819261079SEd Maste 	free(abs_src);
206919261079SEd Maste 	free(abs_dst);
207019261079SEd Maste 	free(target);
207119261079SEd Maste 	free(tmp);
207219261079SEd Maste 	globfree(&g);
207319261079SEd Maste 	if (err == -1)
2074e9e8876aSEd Maste 		errs = 1;
207519261079SEd Maste }
207619261079SEd Maste 
2077511b41d2SMark Murray int
2078ae1f160dSDag-Erling Smørgrav response(void)
2079511b41d2SMark Murray {
2080076ad2f8SDag-Erling Smørgrav 	char ch, *cp, resp, rbuf[2048], visbuf[2048];
2081511b41d2SMark Murray 
2082a04a10f8SKris Kennaway 	if (atomicio(read, remin, &resp, sizeof(resp)) != sizeof(resp))
2083511b41d2SMark Murray 		lostconn(0);
2084511b41d2SMark Murray 
2085511b41d2SMark Murray 	cp = rbuf;
2086511b41d2SMark Murray 	switch (resp) {
2087511b41d2SMark Murray 	case 0:		/* ok */
2088511b41d2SMark Murray 		return (0);
2089511b41d2SMark Murray 	default:
2090511b41d2SMark Murray 		*cp++ = resp;
2091511b41d2SMark Murray 		/* FALLTHROUGH */
2092511b41d2SMark Murray 	case 1:		/* error, followed by error msg */
2093511b41d2SMark Murray 	case 2:		/* fatal error, "" */
2094511b41d2SMark Murray 		do {
2095a04a10f8SKris Kennaway 			if (atomicio(read, remin, &ch, sizeof(ch)) != sizeof(ch))
2096511b41d2SMark Murray 				lostconn(0);
2097511b41d2SMark Murray 			*cp++ = ch;
2098511b41d2SMark Murray 		} while (cp < &rbuf[sizeof(rbuf) - 1] && ch != '\n');
2099511b41d2SMark Murray 
2100076ad2f8SDag-Erling Smørgrav 		if (!iamremote) {
2101076ad2f8SDag-Erling Smørgrav 			cp[-1] = '\0';
2102076ad2f8SDag-Erling Smørgrav 			(void) snmprintf(visbuf, sizeof(visbuf),
2103076ad2f8SDag-Erling Smørgrav 			    NULL, "%s\n", rbuf);
2104076ad2f8SDag-Erling Smørgrav 			(void) atomicio(vwrite, STDERR_FILENO,
2105076ad2f8SDag-Erling Smørgrav 			    visbuf, strlen(visbuf));
2106076ad2f8SDag-Erling Smørgrav 		}
2107511b41d2SMark Murray 		++errs;
2108511b41d2SMark Murray 		if (resp == 1)
2109511b41d2SMark Murray 			return (-1);
2110511b41d2SMark Murray 		exit(1);
2111511b41d2SMark Murray 	}
2112511b41d2SMark Murray 	/* NOTREACHED */
2113511b41d2SMark Murray }
2114511b41d2SMark Murray 
2115511b41d2SMark Murray void
2116ae1f160dSDag-Erling Smørgrav usage(void)
2117511b41d2SMark Murray {
2118ae1f160dSDag-Erling Smørgrav 	(void) fprintf(stderr,
211919261079SEd Maste 	    "usage: scp [-346ABCOpqRrsTv] [-c cipher] [-D sftp_server_path] [-F ssh_config]\n"
2120f374ba41SEd Maste 	    "           [-i identity_file] [-J destination] [-l limit] [-o ssh_option]\n"
2121f374ba41SEd Maste 	    "           [-P port] [-S program] [-X sftp_option] source ... target\n");
2122511b41d2SMark Murray 	exit(1);
2123511b41d2SMark Murray }
2124511b41d2SMark Murray 
2125511b41d2SMark Murray void
2126511b41d2SMark Murray run_err(const char *fmt,...)
2127511b41d2SMark Murray {
2128511b41d2SMark Murray 	static FILE *fp;
2129511b41d2SMark Murray 	va_list ap;
2130511b41d2SMark Murray 
2131511b41d2SMark Murray 	++errs;
2132333ee039SDag-Erling Smørgrav 	if (fp != NULL || (remout != -1 && (fp = fdopen(remout, "w")))) {
2133511b41d2SMark Murray 		(void) fprintf(fp, "%c", 0x01);
2134511b41d2SMark Murray 		(void) fprintf(fp, "scp: ");
2135ae1f160dSDag-Erling Smørgrav 		va_start(ap, fmt);
2136511b41d2SMark Murray 		(void) vfprintf(fp, fmt, ap);
2137ae1f160dSDag-Erling Smørgrav 		va_end(ap);
2138511b41d2SMark Murray 		(void) fprintf(fp, "\n");
2139511b41d2SMark Murray 		(void) fflush(fp);
2140333ee039SDag-Erling Smørgrav 	}
2141511b41d2SMark Murray 
2142511b41d2SMark Murray 	if (!iamremote) {
2143ae1f160dSDag-Erling Smørgrav 		va_start(ap, fmt);
2144076ad2f8SDag-Erling Smørgrav 		vfmprintf(stderr, fmt, ap);
2145ae1f160dSDag-Erling Smørgrav 		va_end(ap);
2146511b41d2SMark Murray 		fprintf(stderr, "\n");
2147511b41d2SMark Murray 	}
2148511b41d2SMark Murray }
2149511b41d2SMark Murray 
215019261079SEd Maste /*
215119261079SEd Maste  * Notes a sink error for sending at the end of a file transfer. Returns 0 if
215219261079SEd Maste  * no error has been noted or -1 otherwise. Use note_err(NULL) to flush
215319261079SEd Maste  * any active error at the end of the transfer.
215419261079SEd Maste  */
215519261079SEd Maste int
215619261079SEd Maste note_err(const char *fmt, ...)
215719261079SEd Maste {
215819261079SEd Maste 	static char *emsg;
215919261079SEd Maste 	va_list ap;
216019261079SEd Maste 
216119261079SEd Maste 	/* Replay any previously-noted error */
216219261079SEd Maste 	if (fmt == NULL) {
216319261079SEd Maste 		if (emsg == NULL)
216419261079SEd Maste 			return 0;
216519261079SEd Maste 		run_err("%s", emsg);
216619261079SEd Maste 		free(emsg);
216719261079SEd Maste 		emsg = NULL;
216819261079SEd Maste 		return -1;
216919261079SEd Maste 	}
217019261079SEd Maste 
217119261079SEd Maste 	errs++;
217219261079SEd Maste 	/* Prefer first-noted error */
217319261079SEd Maste 	if (emsg != NULL)
217419261079SEd Maste 		return -1;
217519261079SEd Maste 
217619261079SEd Maste 	va_start(ap, fmt);
217719261079SEd Maste 	vasnmprintf(&emsg, INT_MAX, NULL, fmt, ap);
217819261079SEd Maste 	va_end(ap);
217919261079SEd Maste 	return -1;
218019261079SEd Maste }
218119261079SEd Maste 
2182511b41d2SMark Murray void
2183cf2b5f3bSDag-Erling Smørgrav verifydir(char *cp)
2184511b41d2SMark Murray {
2185511b41d2SMark Murray 	struct stat stb;
2186511b41d2SMark Murray 
2187511b41d2SMark Murray 	if (!stat(cp, &stb)) {
2188511b41d2SMark Murray 		if (S_ISDIR(stb.st_mode))
2189511b41d2SMark Murray 			return;
2190511b41d2SMark Murray 		errno = ENOTDIR;
2191511b41d2SMark Murray 	}
2192511b41d2SMark Murray 	run_err("%s: %s", cp, strerror(errno));
2193d4ecd108SDag-Erling Smørgrav 	killchild(0);
2194511b41d2SMark Murray }
2195511b41d2SMark Murray 
2196511b41d2SMark Murray int
2197cf2b5f3bSDag-Erling Smørgrav okname(char *cp0)
2198511b41d2SMark Murray {
2199511b41d2SMark Murray 	int c;
2200511b41d2SMark Murray 	char *cp;
2201511b41d2SMark Murray 
2202511b41d2SMark Murray 	cp = cp0;
2203511b41d2SMark Murray 	do {
2204ae1f160dSDag-Erling Smørgrav 		c = (int)*cp;
2205511b41d2SMark Murray 		if (c & 0200)
2206511b41d2SMark Murray 			goto bad;
2207f7167e0eSDag-Erling Smørgrav 		if (!isalpha(c) && !isdigit((unsigned char)c)) {
2208e73e9afaSDag-Erling Smørgrav 			switch (c) {
2209e73e9afaSDag-Erling Smørgrav 			case '\'':
2210e73e9afaSDag-Erling Smørgrav 			case '"':
2211e73e9afaSDag-Erling Smørgrav 			case '`':
2212e73e9afaSDag-Erling Smørgrav 			case ' ':
2213e73e9afaSDag-Erling Smørgrav 			case '#':
2214511b41d2SMark Murray 				goto bad;
2215e73e9afaSDag-Erling Smørgrav 			default:
2216e73e9afaSDag-Erling Smørgrav 				break;
2217e73e9afaSDag-Erling Smørgrav 			}
2218e73e9afaSDag-Erling Smørgrav 		}
2219511b41d2SMark Murray 	} while (*++cp);
2220511b41d2SMark Murray 	return (1);
2221511b41d2SMark Murray 
2222076ad2f8SDag-Erling Smørgrav bad:	fmprintf(stderr, "%s: invalid user name\n", cp0);
2223511b41d2SMark Murray 	return (0);
2224511b41d2SMark Murray }
2225511b41d2SMark Murray 
2226511b41d2SMark Murray BUF *
2227cf2b5f3bSDag-Erling Smørgrav allocbuf(BUF *bp, int fd, int blksize)
2228511b41d2SMark Murray {
2229511b41d2SMark Murray 	size_t size;
223083d2307dSDag-Erling Smørgrav #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
2231511b41d2SMark Murray 	struct stat stb;
2232511b41d2SMark Murray 
223319261079SEd Maste 	if (fstat(fd, &stb) == -1) {
2234511b41d2SMark Murray 		run_err("fstat: %s", strerror(errno));
2235511b41d2SMark Murray 		return (0);
2236511b41d2SMark Murray 	}
2237ca86bcf2SDag-Erling Smørgrav 	size = ROUNDUP(stb.st_blksize, blksize);
2238e73e9afaSDag-Erling Smørgrav 	if (size == 0)
2239e73e9afaSDag-Erling Smørgrav 		size = blksize;
224083d2307dSDag-Erling Smørgrav #else /* HAVE_STRUCT_STAT_ST_BLKSIZE */
224183d2307dSDag-Erling Smørgrav 	size = blksize;
224283d2307dSDag-Erling Smørgrav #endif /* HAVE_STRUCT_STAT_ST_BLKSIZE */
2243511b41d2SMark Murray 	if (bp->cnt >= size)
2244511b41d2SMark Murray 		return (bp);
22454f52dfbbSDag-Erling Smørgrav 	bp->buf = xrecallocarray(bp->buf, bp->cnt, size, 1);
2246511b41d2SMark Murray 	bp->cnt = size;
2247511b41d2SMark Murray 	return (bp);
2248511b41d2SMark Murray }
2249511b41d2SMark Murray 
2250511b41d2SMark Murray void
2251cf2b5f3bSDag-Erling Smørgrav lostconn(int signo)
2252511b41d2SMark Murray {
2253511b41d2SMark Murray 	if (!iamremote)
2254e4a9863fSDag-Erling Smørgrav 		(void)write(STDERR_FILENO, "lost connection\n", 16);
2255ae1f160dSDag-Erling Smørgrav 	if (signo)
2256ae1f160dSDag-Erling Smørgrav 		_exit(1);
2257ae1f160dSDag-Erling Smørgrav 	else
2258511b41d2SMark Murray 		exit(1);
2259511b41d2SMark Murray }
226019261079SEd Maste 
226119261079SEd Maste void
226219261079SEd Maste cleanup_exit(int i)
226319261079SEd Maste {
226419261079SEd Maste 	if (remin > 0)
226519261079SEd Maste 		close(remin);
226619261079SEd Maste 	if (remout > 0)
226719261079SEd Maste 		close(remout);
226819261079SEd Maste 	if (remin2 > 0)
226919261079SEd Maste 		close(remin2);
227019261079SEd Maste 	if (remout2 > 0)
227119261079SEd Maste 		close(remout2);
227219261079SEd Maste 	if (do_cmd_pid > 0)
2273535af610SEd Maste 		(void)waitpid(do_cmd_pid, NULL, 0);
227419261079SEd Maste 	if (do_cmd_pid2 > 0)
2275535af610SEd Maste 		(void)waitpid(do_cmd_pid2, NULL, 0);
227619261079SEd Maste 	exit(i);
227719261079SEd Maste }
2278