blob: e8adcba18f656d1adb060c2486d78df11c58ae79 [file] [log] [blame]
Damien Miller33804262001-02-04 23:20:18 +11001/*
Damien Millerd14ee1e2002-02-05 12:27:31 +11002 * Copyright (c) 2001,2002 Damien Miller. All rights reserved.
Damien Miller33804262001-02-04 23:20:18 +11003 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include "includes.h"
26
Damien Miller62d57f62003-01-10 21:43:24 +110027RCSID("$OpenBSD: sftp.c,v 1.34 2003/01/10 08:19:07 fgsch Exp $");
Damien Miller33804262001-02-04 23:20:18 +110028
Damien Miller33804262001-02-04 23:20:18 +110029/* XXX: short-form remote directory listings (like 'ls -C') */
30
31#include "buffer.h"
32#include "xmalloc.h"
33#include "log.h"
34#include "pathnames.h"
Ben Lindstrom4529b702001-05-03 23:39:53 +000035#include "misc.h"
Damien Miller33804262001-02-04 23:20:18 +110036
37#include "sftp.h"
38#include "sftp-common.h"
39#include "sftp-client.h"
40#include "sftp-int.h"
41
Kevin Steves12888d12001-03-05 19:50:57 +000042#ifdef HAVE___PROGNAME
43extern char *__progname;
44#else
45char *__progname;
46#endif
47
Ben Lindstrom562c26b2001-03-07 01:26:48 +000048FILE* infile;
Damien Miller8829d362002-02-08 22:04:05 +110049size_t copy_buffer_len = 32768;
Damien Miller16a13332002-02-13 14:03:56 +110050size_t num_requests = 16;
Damien Millerd7686fd2001-02-10 00:40:03 +110051
Damien Miller62d57f62003-01-10 21:43:24 +110052extern int showprogress;
53
Ben Lindstrombba81212001-06-25 05:01:22 +000054static void
Damien Millerd14ee1e2002-02-05 12:27:31 +110055connect_to_server(char *path, char **args, int *in, int *out, pid_t *sshpid)
Damien Miller33804262001-02-04 23:20:18 +110056{
57 int c_in, c_out;
Ben Lindstromb1f483f2002-06-23 21:27:18 +000058
Damien Miller33804262001-02-04 23:20:18 +110059#ifdef USE_PIPES
60 int pin[2], pout[2];
Ben Lindstromb1f483f2002-06-23 21:27:18 +000061
Damien Miller33804262001-02-04 23:20:18 +110062 if ((pipe(pin) == -1) || (pipe(pout) == -1))
63 fatal("pipe: %s", strerror(errno));
64 *in = pin[0];
65 *out = pout[1];
66 c_in = pout[0];
67 c_out = pin[1];
68#else /* USE_PIPES */
69 int inout[2];
Ben Lindstromb1f483f2002-06-23 21:27:18 +000070
Damien Miller33804262001-02-04 23:20:18 +110071 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
72 fatal("socketpair: %s", strerror(errno));
73 *in = *out = inout[0];
74 c_in = c_out = inout[1];
75#endif /* USE_PIPES */
76
77 if ((*sshpid = fork()) == -1)
78 fatal("fork: %s", strerror(errno));
79 else if (*sshpid == 0) {
80 if ((dup2(c_in, STDIN_FILENO) == -1) ||
81 (dup2(c_out, STDOUT_FILENO) == -1)) {
82 fprintf(stderr, "dup2: %s\n", strerror(errno));
83 exit(1);
84 }
85 close(*in);
86 close(*out);
87 close(c_in);
88 close(c_out);
Damien Millerd14ee1e2002-02-05 12:27:31 +110089 execv(path, args);
90 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +110091 exit(1);
92 }
93
94 close(c_in);
95 close(c_out);
96}
97
Ben Lindstrombba81212001-06-25 05:01:22 +000098static void
Damien Miller33804262001-02-04 23:20:18 +110099usage(void)
100{
Damien Miller025e01c2002-02-08 22:06:29 +1100101 extern char *__progname;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000102
Ben Lindstrom1e243242001-09-18 05:38:44 +0000103 fprintf(stderr,
Damien Miller025e01c2002-02-08 22:06:29 +1100104 "usage: %s [-vC1] [-b batchfile] [-o option] [-s subsystem|path] [-B buffer_size]\n"
105 " [-F config] [-P direct server path] [-S program]\n"
106 " [user@]host[:file [file]]\n", __progname);
Damien Miller33804262001-02-04 23:20:18 +1100107 exit(1);
108}
109
Kevin Stevesef4eea92001-02-05 12:42:17 +0000110int
Damien Miller33804262001-02-04 23:20:18 +1100111main(int argc, char **argv)
112{
Damien Miller956f3fb2003-01-10 21:40:00 +1100113 int in, out, ch, err;
Damien Miller33804262001-02-04 23:20:18 +1100114 pid_t sshpid;
Ben Lindstrom63667f62001-04-13 00:00:14 +0000115 char *host, *userhost, *cp, *file2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000116 int debug_level = 0, sshver = 2;
117 char *file1 = NULL, *sftp_server = NULL;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100118 char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000119 LogLevel ll = SYSLOG_LEVEL_INFO;
120 arglist args;
Damien Millerd7686fd2001-02-10 00:40:03 +1100121 extern int optind;
122 extern char *optarg;
Damien Miller33804262001-02-04 23:20:18 +1100123
Kevin Steves12888d12001-03-05 19:50:57 +0000124 __progname = get_progname(argv[0]);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000125 args.list = NULL;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100126 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000127 addargs(&args, "-oForwardX11 no");
128 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000129 addargs(&args, "-oClearAllForwardings yes");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000130 ll = SYSLOG_LEVEL_INFO;
131 infile = stdin; /* Read from STDIN unless changed by -b */
Damien Millerd7686fd2001-02-10 00:40:03 +1100132
Damien Miller16a13332002-02-13 14:03:56 +1100133 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:R:")) != -1) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100134 switch (ch) {
135 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000136 addargs(&args, "-C");
Damien Millerd7686fd2001-02-10 00:40:03 +1100137 break;
138 case 'v':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000139 if (debug_level < 3) {
140 addargs(&args, "-v");
141 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
142 }
143 debug_level++;
Damien Millerd7686fd2001-02-10 00:40:03 +1100144 break;
Ben Lindstrom1e243242001-09-18 05:38:44 +0000145 case 'F':
Damien Millerd7686fd2001-02-10 00:40:03 +1100146 case 'o':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000147 addargs(&args, "-%c%s", ch, optarg);
Damien Millerd7686fd2001-02-10 00:40:03 +1100148 break;
149 case '1':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000150 sshver = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100151 if (sftp_server == NULL)
152 sftp_server = _PATH_SFTP_SERVER;
153 break;
154 case 's':
155 sftp_server = optarg;
156 break;
157 case 'S':
158 ssh_program = optarg;
159 break;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000160 case 'b':
161 if (infile == stdin) {
162 infile = fopen(optarg, "r");
Ben Lindstroma3700052001-04-05 23:26:32 +0000163 if (infile == NULL)
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000164 fatal("%s (%s).", strerror(errno), optarg);
Ben Lindstroma3700052001-04-05 23:26:32 +0000165 } else
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000166 fatal("Filename already specified.");
Damien Miller62d57f62003-01-10 21:43:24 +1100167 showprogress = 0;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000168 break;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100169 case 'P':
170 sftp_direct = optarg;
171 break;
Damien Miller8829d362002-02-08 22:04:05 +1100172 case 'B':
173 copy_buffer_len = strtol(optarg, &cp, 10);
174 if (copy_buffer_len == 0 || *cp != '\0')
175 fatal("Invalid buffer size \"%s\"", optarg);
176 break;
Damien Miller16a13332002-02-13 14:03:56 +1100177 case 'R':
178 num_requests = strtol(optarg, &cp, 10);
179 if (num_requests == 0 || *cp != '\0')
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000180 fatal("Invalid number of requests \"%s\"",
Damien Miller16a13332002-02-13 14:03:56 +1100181 optarg);
182 break;
Damien Millerd7686fd2001-02-10 00:40:03 +1100183 case 'h':
184 default:
Damien Miller33804262001-02-04 23:20:18 +1100185 usage();
186 }
187 }
188
Ben Lindstrom2f3d52a2002-04-02 21:06:18 +0000189 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
190
Damien Millerd14ee1e2002-02-05 12:27:31 +1100191 if (sftp_direct == NULL) {
192 if (optind == argc || argc > (optind + 2))
193 usage();
Damien Miller33804262001-02-04 23:20:18 +1100194
Damien Millerd14ee1e2002-02-05 12:27:31 +1100195 userhost = xstrdup(argv[optind]);
196 file2 = argv[optind+1];
Ben Lindstrom63667f62001-04-13 00:00:14 +0000197
Damien Millerd14ee1e2002-02-05 12:27:31 +1100198 if ((cp = colon(userhost)) != NULL) {
199 *cp++ = '\0';
200 file1 = cp;
201 }
Damien Millerd7686fd2001-02-10 00:40:03 +1100202
Ben Lindstromc276c122002-12-23 02:14:51 +0000203 if ((host = strrchr(userhost, '@')) == NULL)
Damien Millerd14ee1e2002-02-05 12:27:31 +1100204 host = userhost;
205 else {
206 *host++ = '\0';
207 if (!userhost[0]) {
208 fprintf(stderr, "Missing username\n");
209 usage();
210 }
211 addargs(&args, "-l%s",userhost);
212 }
213
214 host = cleanhostname(host);
215 if (!*host) {
216 fprintf(stderr, "Missing hostname\n");
Damien Miller33804262001-02-04 23:20:18 +1100217 usage();
218 }
Damien Millerd14ee1e2002-02-05 12:27:31 +1100219
Damien Millerd14ee1e2002-02-05 12:27:31 +1100220 addargs(&args, "-oProtocol %d", sshver);
221
222 /* no subsystem if the server-spec contains a '/' */
223 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
224 addargs(&args, "-s");
225
226 addargs(&args, "%s", host);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000227 addargs(&args, "%s", (sftp_server != NULL ?
Damien Millerd14ee1e2002-02-05 12:27:31 +1100228 sftp_server : "sftp"));
229 args.list[0] = ssh_program;
230
231 fprintf(stderr, "Connecting to %s...\n", host);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000232 connect_to_server(ssh_program, args.list, &in, &out,
Damien Millerd14ee1e2002-02-05 12:27:31 +1100233 &sshpid);
234 } else {
235 args.list = NULL;
236 addargs(&args, "sftp-server");
237
238 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000239 connect_to_server(sftp_direct, args.list, &in, &out,
Damien Millerd14ee1e2002-02-05 12:27:31 +1100240 &sshpid);
Damien Miller33804262001-02-04 23:20:18 +1100241 }
242
Damien Miller956f3fb2003-01-10 21:40:00 +1100243 err = interactive_loop(in, out, file1, file2);
Damien Miller33804262001-02-04 23:20:18 +1100244
Ben Lindstrom10b9bf92001-02-26 20:04:45 +0000245#if !defined(USE_PIPES)
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000246 shutdown(in, SHUT_RDWR);
247 shutdown(out, SHUT_RDWR);
Ben Lindstrom10b9bf92001-02-26 20:04:45 +0000248#endif
249
Damien Miller33804262001-02-04 23:20:18 +1100250 close(in);
251 close(out);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000252 if (infile != stdin)
253 fclose(infile);
Damien Miller33804262001-02-04 23:20:18 +1100254
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000255 while (waitpid(sshpid, NULL, 0) == -1)
256 if (errno != EINTR)
257 fatal("Couldn't wait for ssh process: %s",
258 strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +1100259
Damien Miller956f3fb2003-01-10 21:40:00 +1100260 exit(err == 0 ? 0 : 1);
Damien Miller33804262001-02-04 23:20:18 +1100261}