blob: fef28c3b7cbf4b5120449379fe692283cc386400 [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 Millerec692032004-01-27 21:22:00 +110027RCSID("$OpenBSD: sftp.c,v 1.41 2004/01/27 10:08:10 djm Exp $");
Damien Miller33804262001-02-04 23:20:18 +110028
29#include "buffer.h"
30#include "xmalloc.h"
31#include "log.h"
32#include "pathnames.h"
Ben Lindstrom4529b702001-05-03 23:39:53 +000033#include "misc.h"
Damien Miller33804262001-02-04 23:20:18 +110034
35#include "sftp.h"
36#include "sftp-common.h"
37#include "sftp-client.h"
38#include "sftp-int.h"
39
Kevin Steves12888d12001-03-05 19:50:57 +000040#ifdef HAVE___PROGNAME
41extern char *__progname;
42#else
43char *__progname;
44#endif
45
Damien Millere4f5a822004-01-21 14:11:05 +110046FILE* infile;
Damien Miller44f75c12004-01-21 10:58:47 +110047int batchmode = 0;
Damien Miller8829d362002-02-08 22:04:05 +110048size_t copy_buffer_len = 32768;
Damien Miller16a13332002-02-13 14:03:56 +110049size_t num_requests = 16;
Damien Millercc685c12003-06-04 22:51:38 +100050static pid_t sshpid = -1;
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 Millercc685c12003-06-04 22:51:38 +100055killchild(int signo)
56{
57 if (sshpid > 1)
58 kill(sshpid, signo);
59
60 _exit(1);
61}
62
63static void
64connect_to_server(char *path, char **args, int *in, int *out)
Damien Miller33804262001-02-04 23:20:18 +110065{
66 int c_in, c_out;
Ben Lindstromb1f483f2002-06-23 21:27:18 +000067
Damien Miller33804262001-02-04 23:20:18 +110068#ifdef USE_PIPES
69 int pin[2], pout[2];
Ben Lindstromb1f483f2002-06-23 21:27:18 +000070
Damien Miller33804262001-02-04 23:20:18 +110071 if ((pipe(pin) == -1) || (pipe(pout) == -1))
72 fatal("pipe: %s", strerror(errno));
73 *in = pin[0];
74 *out = pout[1];
75 c_in = pout[0];
76 c_out = pin[1];
77#else /* USE_PIPES */
78 int inout[2];
Ben Lindstromb1f483f2002-06-23 21:27:18 +000079
Damien Miller33804262001-02-04 23:20:18 +110080 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
81 fatal("socketpair: %s", strerror(errno));
82 *in = *out = inout[0];
83 c_in = c_out = inout[1];
84#endif /* USE_PIPES */
85
Damien Millercc685c12003-06-04 22:51:38 +100086 if ((sshpid = fork()) == -1)
Damien Miller33804262001-02-04 23:20:18 +110087 fatal("fork: %s", strerror(errno));
Damien Millercc685c12003-06-04 22:51:38 +100088 else if (sshpid == 0) {
Damien Miller33804262001-02-04 23:20:18 +110089 if ((dup2(c_in, STDIN_FILENO) == -1) ||
90 (dup2(c_out, STDOUT_FILENO) == -1)) {
91 fprintf(stderr, "dup2: %s\n", strerror(errno));
92 exit(1);
93 }
94 close(*in);
95 close(*out);
96 close(c_in);
97 close(c_out);
Damien Millerd14ee1e2002-02-05 12:27:31 +110098 execv(path, args);
99 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +1100100 exit(1);
101 }
102
Damien Millercc685c12003-06-04 22:51:38 +1000103 signal(SIGTERM, killchild);
104 signal(SIGINT, killchild);
105 signal(SIGHUP, killchild);
Damien Miller33804262001-02-04 23:20:18 +1100106 close(c_in);
107 close(c_out);
108}
109
Ben Lindstrombba81212001-06-25 05:01:22 +0000110static void
Damien Miller33804262001-02-04 23:20:18 +1100111usage(void)
112{
Damien Miller025e01c2002-02-08 22:06:29 +1100113 extern char *__progname;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000114
Ben Lindstrom1e243242001-09-18 05:38:44 +0000115 fprintf(stderr,
Darren Tucker1f203942003-10-15 15:50:42 +1000116 "usage: %s [-1Cv] [-B buffer_size] [-b batchfile] [-F ssh_config]\n"
117 " [-o ssh_option] [-P sftp_server_path] [-R num_requests]\n"
118 " [-S program] [-s subsystem | sftp_server] host\n"
119 " %s [[user@]host[:file [file]]]\n"
120 " %s [[user@]host[:dir[/]]]\n"
121 " %s -b batchfile [user@]host\n", __progname, __progname, __progname, __progname);
Damien Miller33804262001-02-04 23:20:18 +1100122 exit(1);
123}
124
Kevin Stevesef4eea92001-02-05 12:42:17 +0000125int
Damien Miller33804262001-02-04 23:20:18 +1100126main(int argc, char **argv)
127{
Damien Miller956f3fb2003-01-10 21:40:00 +1100128 int in, out, ch, err;
Ben Lindstrom63667f62001-04-13 00:00:14 +0000129 char *host, *userhost, *cp, *file2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000130 int debug_level = 0, sshver = 2;
131 char *file1 = NULL, *sftp_server = NULL;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100132 char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000133 LogLevel ll = SYSLOG_LEVEL_INFO;
134 arglist args;
Damien Millerd7686fd2001-02-10 00:40:03 +1100135 extern int optind;
136 extern char *optarg;
Damien Miller33804262001-02-04 23:20:18 +1100137
Damien Miller59d3d5b2003-08-22 09:34:41 +1000138 __progname = ssh_get_progname(argv[0]);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000139 args.list = NULL;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100140 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000141 addargs(&args, "-oForwardX11 no");
142 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000143 addargs(&args, "-oClearAllForwardings yes");
Damien Millere4f5a822004-01-21 14:11:05 +1100144
Ben Lindstrom387c4722001-05-08 20:27:25 +0000145 ll = SYSLOG_LEVEL_INFO;
Damien Millere4f5a822004-01-21 14:11:05 +1100146 infile = stdin;
Damien Millerd7686fd2001-02-10 00:40:03 +1100147
Damien Miller16a13332002-02-13 14:03:56 +1100148 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:R:")) != -1) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100149 switch (ch) {
150 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000151 addargs(&args, "-C");
Damien Millerd7686fd2001-02-10 00:40:03 +1100152 break;
153 case 'v':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000154 if (debug_level < 3) {
155 addargs(&args, "-v");
156 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
157 }
158 debug_level++;
Damien Millerd7686fd2001-02-10 00:40:03 +1100159 break;
Ben Lindstrom1e243242001-09-18 05:38:44 +0000160 case 'F':
Damien Millerd7686fd2001-02-10 00:40:03 +1100161 case 'o':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000162 addargs(&args, "-%c%s", ch, optarg);
Damien Millerd7686fd2001-02-10 00:40:03 +1100163 break;
164 case '1':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000165 sshver = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100166 if (sftp_server == NULL)
167 sftp_server = _PATH_SFTP_SERVER;
168 break;
169 case 's':
170 sftp_server = optarg;
171 break;
172 case 'S':
173 ssh_program = optarg;
174 break;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000175 case 'b':
Damien Miller44f75c12004-01-21 10:58:47 +1100176 if (batchmode)
177 fatal("Batch file already specified.");
178
179 /* Allow "-" as stdin */
180 if (strcmp(optarg, "-") != 0 &&
181 (infile = fopen(optarg, "r")) == NULL)
182 fatal("%s (%s).", strerror(errno), optarg);
Damien Miller62d57f62003-01-10 21:43:24 +1100183 showprogress = 0;
Damien Miller44f75c12004-01-21 10:58:47 +1100184 batchmode = 1;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000185 break;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100186 case 'P':
187 sftp_direct = optarg;
188 break;
Damien Miller8829d362002-02-08 22:04:05 +1100189 case 'B':
190 copy_buffer_len = strtol(optarg, &cp, 10);
191 if (copy_buffer_len == 0 || *cp != '\0')
192 fatal("Invalid buffer size \"%s\"", optarg);
193 break;
Damien Miller16a13332002-02-13 14:03:56 +1100194 case 'R':
195 num_requests = strtol(optarg, &cp, 10);
196 if (num_requests == 0 || *cp != '\0')
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000197 fatal("Invalid number of requests \"%s\"",
Damien Miller16a13332002-02-13 14:03:56 +1100198 optarg);
199 break;
Damien Millerd7686fd2001-02-10 00:40:03 +1100200 case 'h':
201 default:
Damien Miller33804262001-02-04 23:20:18 +1100202 usage();
203 }
204 }
205
Ben Lindstrom2f3d52a2002-04-02 21:06:18 +0000206 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
207
Damien Millerd14ee1e2002-02-05 12:27:31 +1100208 if (sftp_direct == NULL) {
209 if (optind == argc || argc > (optind + 2))
210 usage();
Damien Miller33804262001-02-04 23:20:18 +1100211
Damien Millerd14ee1e2002-02-05 12:27:31 +1100212 userhost = xstrdup(argv[optind]);
213 file2 = argv[optind+1];
Ben Lindstrom63667f62001-04-13 00:00:14 +0000214
Ben Lindstromc276c122002-12-23 02:14:51 +0000215 if ((host = strrchr(userhost, '@')) == NULL)
Damien Millerd14ee1e2002-02-05 12:27:31 +1100216 host = userhost;
217 else {
218 *host++ = '\0';
219 if (!userhost[0]) {
220 fprintf(stderr, "Missing username\n");
221 usage();
222 }
223 addargs(&args, "-l%s",userhost);
224 }
225
Damien Millerec692032004-01-27 21:22:00 +1100226 if ((cp = colon(host)) != NULL) {
227 *cp++ = '\0';
228 file1 = cp;
229 }
230
Damien Millerd14ee1e2002-02-05 12:27:31 +1100231 host = cleanhostname(host);
232 if (!*host) {
233 fprintf(stderr, "Missing hostname\n");
Damien Miller33804262001-02-04 23:20:18 +1100234 usage();
235 }
Damien Millerd14ee1e2002-02-05 12:27:31 +1100236
Damien Millerd14ee1e2002-02-05 12:27:31 +1100237 addargs(&args, "-oProtocol %d", sshver);
238
239 /* no subsystem if the server-spec contains a '/' */
240 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
241 addargs(&args, "-s");
242
243 addargs(&args, "%s", host);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000244 addargs(&args, "%s", (sftp_server != NULL ?
Damien Millerd14ee1e2002-02-05 12:27:31 +1100245 sftp_server : "sftp"));
246 args.list[0] = ssh_program;
247
Damien Miller44f75c12004-01-21 10:58:47 +1100248 if (!batchmode)
249 fprintf(stderr, "Connecting to %s...\n", host);
Damien Millercc685c12003-06-04 22:51:38 +1000250 connect_to_server(ssh_program, args.list, &in, &out);
Damien Millerd14ee1e2002-02-05 12:27:31 +1100251 } else {
252 args.list = NULL;
253 addargs(&args, "sftp-server");
254
Damien Miller44f75c12004-01-21 10:58:47 +1100255 if (!batchmode)
256 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
Damien Millercc685c12003-06-04 22:51:38 +1000257 connect_to_server(sftp_direct, args.list, &in, &out);
Damien Miller33804262001-02-04 23:20:18 +1100258 }
259
Damien Miller956f3fb2003-01-10 21:40:00 +1100260 err = interactive_loop(in, out, file1, file2);
Damien Miller33804262001-02-04 23:20:18 +1100261
Ben Lindstrom10b9bf92001-02-26 20:04:45 +0000262#if !defined(USE_PIPES)
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000263 shutdown(in, SHUT_RDWR);
264 shutdown(out, SHUT_RDWR);
Ben Lindstrom10b9bf92001-02-26 20:04:45 +0000265#endif
266
Damien Miller33804262001-02-04 23:20:18 +1100267 close(in);
268 close(out);
Damien Miller44f75c12004-01-21 10:58:47 +1100269 if (batchmode)
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000270 fclose(infile);
Damien Miller33804262001-02-04 23:20:18 +1100271
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000272 while (waitpid(sshpid, NULL, 0) == -1)
273 if (errno != EINTR)
274 fatal("Couldn't wait for ssh process: %s",
275 strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +1100276
Damien Miller956f3fb2003-01-10 21:40:00 +1100277 exit(err == 0 ? 0 : 1);
Damien Miller33804262001-02-04 23:20:18 +1100278}