blob: fe65b972cca843d0278ff77e82ebf1840522a904 [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 Millercc685c12003-06-04 22:51:38 +100027RCSID("$OpenBSD: sftp.c,v 1.36 2003/06/04 12:41:22 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
Ben Lindstrom562c26b2001-03-07 01:26:48 +000046FILE* infile;
Damien Miller8829d362002-02-08 22:04:05 +110047size_t copy_buffer_len = 32768;
Damien Miller16a13332002-02-13 14:03:56 +110048size_t num_requests = 16;
Damien Millercc685c12003-06-04 22:51:38 +100049static pid_t sshpid = -1;
Damien Millerd7686fd2001-02-10 00:40:03 +110050
Damien Miller62d57f62003-01-10 21:43:24 +110051extern int showprogress;
52
Ben Lindstrombba81212001-06-25 05:01:22 +000053static void
Damien Millercc685c12003-06-04 22:51:38 +100054killchild(int signo)
55{
56 if (sshpid > 1)
57 kill(sshpid, signo);
58
59 _exit(1);
60}
61
62static void
63connect_to_server(char *path, char **args, int *in, int *out)
Damien Miller33804262001-02-04 23:20:18 +110064{
65 int c_in, c_out;
Ben Lindstromb1f483f2002-06-23 21:27:18 +000066
Damien Miller33804262001-02-04 23:20:18 +110067#ifdef USE_PIPES
68 int pin[2], pout[2];
Ben Lindstromb1f483f2002-06-23 21:27:18 +000069
Damien Miller33804262001-02-04 23:20:18 +110070 if ((pipe(pin) == -1) || (pipe(pout) == -1))
71 fatal("pipe: %s", strerror(errno));
72 *in = pin[0];
73 *out = pout[1];
74 c_in = pout[0];
75 c_out = pin[1];
76#else /* USE_PIPES */
77 int inout[2];
Ben Lindstromb1f483f2002-06-23 21:27:18 +000078
Damien Miller33804262001-02-04 23:20:18 +110079 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
80 fatal("socketpair: %s", strerror(errno));
81 *in = *out = inout[0];
82 c_in = c_out = inout[1];
83#endif /* USE_PIPES */
84
Damien Millercc685c12003-06-04 22:51:38 +100085 if ((sshpid = fork()) == -1)
Damien Miller33804262001-02-04 23:20:18 +110086 fatal("fork: %s", strerror(errno));
Damien Millercc685c12003-06-04 22:51:38 +100087 else if (sshpid == 0) {
Damien Miller33804262001-02-04 23:20:18 +110088 if ((dup2(c_in, STDIN_FILENO) == -1) ||
89 (dup2(c_out, STDOUT_FILENO) == -1)) {
90 fprintf(stderr, "dup2: %s\n", strerror(errno));
91 exit(1);
92 }
93 close(*in);
94 close(*out);
95 close(c_in);
96 close(c_out);
Damien Millerd14ee1e2002-02-05 12:27:31 +110097 execv(path, args);
98 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +110099 exit(1);
100 }
101
Damien Millercc685c12003-06-04 22:51:38 +1000102 signal(SIGTERM, killchild);
103 signal(SIGINT, killchild);
104 signal(SIGHUP, killchild);
Damien Miller33804262001-02-04 23:20:18 +1100105 close(c_in);
106 close(c_out);
107}
108
Ben Lindstrombba81212001-06-25 05:01:22 +0000109static void
Damien Miller33804262001-02-04 23:20:18 +1100110usage(void)
111{
Damien Miller025e01c2002-02-08 22:06:29 +1100112 extern char *__progname;
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000113
Ben Lindstrom1e243242001-09-18 05:38:44 +0000114 fprintf(stderr,
Damien Miller025e01c2002-02-08 22:06:29 +1100115 "usage: %s [-vC1] [-b batchfile] [-o option] [-s subsystem|path] [-B buffer_size]\n"
116 " [-F config] [-P direct server path] [-S program]\n"
117 " [user@]host[:file [file]]\n", __progname);
Damien Miller33804262001-02-04 23:20:18 +1100118 exit(1);
119}
120
Kevin Stevesef4eea92001-02-05 12:42:17 +0000121int
Damien Miller33804262001-02-04 23:20:18 +1100122main(int argc, char **argv)
123{
Damien Miller956f3fb2003-01-10 21:40:00 +1100124 int in, out, ch, err;
Ben Lindstrom63667f62001-04-13 00:00:14 +0000125 char *host, *userhost, *cp, *file2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000126 int debug_level = 0, sshver = 2;
127 char *file1 = NULL, *sftp_server = NULL;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100128 char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000129 LogLevel ll = SYSLOG_LEVEL_INFO;
130 arglist args;
Damien Millerd7686fd2001-02-10 00:40:03 +1100131 extern int optind;
132 extern char *optarg;
Damien Miller33804262001-02-04 23:20:18 +1100133
Kevin Steves12888d12001-03-05 19:50:57 +0000134 __progname = get_progname(argv[0]);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000135 args.list = NULL;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100136 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000137 addargs(&args, "-oForwardX11 no");
138 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000139 addargs(&args, "-oClearAllForwardings yes");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000140 ll = SYSLOG_LEVEL_INFO;
141 infile = stdin; /* Read from STDIN unless changed by -b */
Damien Millerd7686fd2001-02-10 00:40:03 +1100142
Damien Miller16a13332002-02-13 14:03:56 +1100143 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:R:")) != -1) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100144 switch (ch) {
145 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000146 addargs(&args, "-C");
Damien Millerd7686fd2001-02-10 00:40:03 +1100147 break;
148 case 'v':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000149 if (debug_level < 3) {
150 addargs(&args, "-v");
151 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
152 }
153 debug_level++;
Damien Millerd7686fd2001-02-10 00:40:03 +1100154 break;
Ben Lindstrom1e243242001-09-18 05:38:44 +0000155 case 'F':
Damien Millerd7686fd2001-02-10 00:40:03 +1100156 case 'o':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000157 addargs(&args, "-%c%s", ch, optarg);
Damien Millerd7686fd2001-02-10 00:40:03 +1100158 break;
159 case '1':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000160 sshver = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100161 if (sftp_server == NULL)
162 sftp_server = _PATH_SFTP_SERVER;
163 break;
164 case 's':
165 sftp_server = optarg;
166 break;
167 case 'S':
168 ssh_program = optarg;
169 break;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000170 case 'b':
171 if (infile == stdin) {
172 infile = fopen(optarg, "r");
Ben Lindstroma3700052001-04-05 23:26:32 +0000173 if (infile == NULL)
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000174 fatal("%s (%s).", strerror(errno), optarg);
Ben Lindstroma3700052001-04-05 23:26:32 +0000175 } else
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000176 fatal("Filename already specified.");
Damien Miller62d57f62003-01-10 21:43:24 +1100177 showprogress = 0;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000178 break;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100179 case 'P':
180 sftp_direct = optarg;
181 break;
Damien Miller8829d362002-02-08 22:04:05 +1100182 case 'B':
183 copy_buffer_len = strtol(optarg, &cp, 10);
184 if (copy_buffer_len == 0 || *cp != '\0')
185 fatal("Invalid buffer size \"%s\"", optarg);
186 break;
Damien Miller16a13332002-02-13 14:03:56 +1100187 case 'R':
188 num_requests = strtol(optarg, &cp, 10);
189 if (num_requests == 0 || *cp != '\0')
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000190 fatal("Invalid number of requests \"%s\"",
Damien Miller16a13332002-02-13 14:03:56 +1100191 optarg);
192 break;
Damien Millerd7686fd2001-02-10 00:40:03 +1100193 case 'h':
194 default:
Damien Miller33804262001-02-04 23:20:18 +1100195 usage();
196 }
197 }
198
Ben Lindstrom2f3d52a2002-04-02 21:06:18 +0000199 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
200
Damien Millerd14ee1e2002-02-05 12:27:31 +1100201 if (sftp_direct == NULL) {
202 if (optind == argc || argc > (optind + 2))
203 usage();
Damien Miller33804262001-02-04 23:20:18 +1100204
Damien Millerd14ee1e2002-02-05 12:27:31 +1100205 userhost = xstrdup(argv[optind]);
206 file2 = argv[optind+1];
Ben Lindstrom63667f62001-04-13 00:00:14 +0000207
Damien Millerd14ee1e2002-02-05 12:27:31 +1100208 if ((cp = colon(userhost)) != NULL) {
209 *cp++ = '\0';
210 file1 = cp;
211 }
Damien Millerd7686fd2001-02-10 00:40:03 +1100212
Ben Lindstromc276c122002-12-23 02:14:51 +0000213 if ((host = strrchr(userhost, '@')) == NULL)
Damien Millerd14ee1e2002-02-05 12:27:31 +1100214 host = userhost;
215 else {
216 *host++ = '\0';
217 if (!userhost[0]) {
218 fprintf(stderr, "Missing username\n");
219 usage();
220 }
221 addargs(&args, "-l%s",userhost);
222 }
223
224 host = cleanhostname(host);
225 if (!*host) {
226 fprintf(stderr, "Missing hostname\n");
Damien Miller33804262001-02-04 23:20:18 +1100227 usage();
228 }
Damien Millerd14ee1e2002-02-05 12:27:31 +1100229
Damien Millerd14ee1e2002-02-05 12:27:31 +1100230 addargs(&args, "-oProtocol %d", sshver);
231
232 /* no subsystem if the server-spec contains a '/' */
233 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
234 addargs(&args, "-s");
235
236 addargs(&args, "%s", host);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000237 addargs(&args, "%s", (sftp_server != NULL ?
Damien Millerd14ee1e2002-02-05 12:27:31 +1100238 sftp_server : "sftp"));
239 args.list[0] = ssh_program;
240
241 fprintf(stderr, "Connecting to %s...\n", host);
Damien Millercc685c12003-06-04 22:51:38 +1000242 connect_to_server(ssh_program, args.list, &in, &out);
Damien Millerd14ee1e2002-02-05 12:27:31 +1100243 } else {
244 args.list = NULL;
245 addargs(&args, "sftp-server");
246
247 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
Damien Millercc685c12003-06-04 22:51:38 +1000248 connect_to_server(sftp_direct, args.list, &in, &out);
Damien Miller33804262001-02-04 23:20:18 +1100249 }
250
Damien Miller956f3fb2003-01-10 21:40:00 +1100251 err = interactive_loop(in, out, file1, file2);
Damien Miller33804262001-02-04 23:20:18 +1100252
Ben Lindstrom10b9bf92001-02-26 20:04:45 +0000253#if !defined(USE_PIPES)
Ben Lindstrom5a6abda2002-06-09 19:41:48 +0000254 shutdown(in, SHUT_RDWR);
255 shutdown(out, SHUT_RDWR);
Ben Lindstrom10b9bf92001-02-26 20:04:45 +0000256#endif
257
Damien Miller33804262001-02-04 23:20:18 +1100258 close(in);
259 close(out);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000260 if (infile != stdin)
261 fclose(infile);
Damien Miller33804262001-02-04 23:20:18 +1100262
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000263 while (waitpid(sshpid, NULL, 0) == -1)
264 if (errno != EINTR)
265 fatal("Couldn't wait for ssh process: %s",
266 strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +1100267
Damien Miller956f3fb2003-01-10 21:40:00 +1100268 exit(err == 0 ? 0 : 1);
Damien Miller33804262001-02-04 23:20:18 +1100269}