blob: 160851d7ff01c330fffd848f89a521121b103372 [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 Miller025e01c2002-02-08 22:06:29 +110027RCSID("$OpenBSD: sftp.c,v 1.25 2002/02/06 14:27:23 mpech 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 Millerd7686fd2001-02-10 00:40:03 +110050
Ben Lindstrombba81212001-06-25 05:01:22 +000051static void
Damien Millerd14ee1e2002-02-05 12:27:31 +110052connect_to_server(char *path, char **args, int *in, int *out, pid_t *sshpid)
Damien Miller33804262001-02-04 23:20:18 +110053{
54 int c_in, c_out;
55#ifdef USE_PIPES
56 int pin[2], pout[2];
57 if ((pipe(pin) == -1) || (pipe(pout) == -1))
58 fatal("pipe: %s", strerror(errno));
59 *in = pin[0];
60 *out = pout[1];
61 c_in = pout[0];
62 c_out = pin[1];
63#else /* USE_PIPES */
64 int inout[2];
65 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
66 fatal("socketpair: %s", strerror(errno));
67 *in = *out = inout[0];
68 c_in = c_out = inout[1];
69#endif /* USE_PIPES */
70
71 if ((*sshpid = fork()) == -1)
72 fatal("fork: %s", strerror(errno));
73 else if (*sshpid == 0) {
74 if ((dup2(c_in, STDIN_FILENO) == -1) ||
75 (dup2(c_out, STDOUT_FILENO) == -1)) {
76 fprintf(stderr, "dup2: %s\n", strerror(errno));
77 exit(1);
78 }
79 close(*in);
80 close(*out);
81 close(c_in);
82 close(c_out);
Damien Millerd14ee1e2002-02-05 12:27:31 +110083 execv(path, args);
84 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +110085 exit(1);
86 }
87
88 close(c_in);
89 close(c_out);
90}
91
Ben Lindstrombba81212001-06-25 05:01:22 +000092static void
Damien Miller33804262001-02-04 23:20:18 +110093usage(void)
94{
Damien Miller025e01c2002-02-08 22:06:29 +110095 extern char *__progname;
96
Ben Lindstrom1e243242001-09-18 05:38:44 +000097 fprintf(stderr,
Damien Miller025e01c2002-02-08 22:06:29 +110098 "usage: %s [-vC1] [-b batchfile] [-o option] [-s subsystem|path] [-B buffer_size]\n"
99 " [-F config] [-P direct server path] [-S program]\n"
100 " [user@]host[:file [file]]\n", __progname);
Damien Miller33804262001-02-04 23:20:18 +1100101 exit(1);
102}
103
Kevin Stevesef4eea92001-02-05 12:42:17 +0000104int
Damien Miller33804262001-02-04 23:20:18 +1100105main(int argc, char **argv)
106{
Ben Lindstrom387c4722001-05-08 20:27:25 +0000107 int in, out, ch;
Damien Miller33804262001-02-04 23:20:18 +1100108 pid_t sshpid;
Ben Lindstrom63667f62001-04-13 00:00:14 +0000109 char *host, *userhost, *cp, *file2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000110 int debug_level = 0, sshver = 2;
111 char *file1 = NULL, *sftp_server = NULL;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100112 char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000113 LogLevel ll = SYSLOG_LEVEL_INFO;
114 arglist args;
Damien Millerd7686fd2001-02-10 00:40:03 +1100115 extern int optind;
116 extern char *optarg;
Damien Miller33804262001-02-04 23:20:18 +1100117
Kevin Steves12888d12001-03-05 19:50:57 +0000118 __progname = get_progname(argv[0]);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000119 args.list = NULL;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100120 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000121 addargs(&args, "-oFallBackToRsh no");
122 addargs(&args, "-oForwardX11 no");
123 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000124 addargs(&args, "-oClearAllForwardings yes");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000125 ll = SYSLOG_LEVEL_INFO;
126 infile = stdin; /* Read from STDIN unless changed by -b */
Damien Millerd7686fd2001-02-10 00:40:03 +1100127
Damien Miller8829d362002-02-08 22:04:05 +1100128 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:")) != -1) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100129 switch (ch) {
130 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000131 addargs(&args, "-C");
Damien Millerd7686fd2001-02-10 00:40:03 +1100132 break;
133 case 'v':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000134 if (debug_level < 3) {
135 addargs(&args, "-v");
136 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
137 }
138 debug_level++;
Damien Millerd7686fd2001-02-10 00:40:03 +1100139 break;
Ben Lindstrom1e243242001-09-18 05:38:44 +0000140 case 'F':
Damien Millerd7686fd2001-02-10 00:40:03 +1100141 case 'o':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000142 addargs(&args, "-%c%s", ch, optarg);
Damien Millerd7686fd2001-02-10 00:40:03 +1100143 break;
144 case '1':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000145 sshver = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100146 if (sftp_server == NULL)
147 sftp_server = _PATH_SFTP_SERVER;
148 break;
149 case 's':
150 sftp_server = optarg;
151 break;
152 case 'S':
153 ssh_program = optarg;
154 break;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000155 case 'b':
156 if (infile == stdin) {
157 infile = fopen(optarg, "r");
Ben Lindstroma3700052001-04-05 23:26:32 +0000158 if (infile == NULL)
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000159 fatal("%s (%s).", strerror(errno), optarg);
Ben Lindstroma3700052001-04-05 23:26:32 +0000160 } else
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000161 fatal("Filename already specified.");
162 break;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100163 case 'P':
164 sftp_direct = optarg;
165 break;
Damien Miller8829d362002-02-08 22:04:05 +1100166 case 'B':
167 copy_buffer_len = strtol(optarg, &cp, 10);
168 if (copy_buffer_len == 0 || *cp != '\0')
169 fatal("Invalid buffer size \"%s\"", optarg);
170 break;
Damien Millerd7686fd2001-02-10 00:40:03 +1100171 case 'h':
172 default:
Damien Miller33804262001-02-04 23:20:18 +1100173 usage();
174 }
175 }
176
Damien Millerd14ee1e2002-02-05 12:27:31 +1100177 if (sftp_direct == NULL) {
178 if (optind == argc || argc > (optind + 2))
179 usage();
Damien Miller33804262001-02-04 23:20:18 +1100180
Damien Millerd14ee1e2002-02-05 12:27:31 +1100181 userhost = xstrdup(argv[optind]);
182 file2 = argv[optind+1];
Ben Lindstrom63667f62001-04-13 00:00:14 +0000183
Damien Millerd14ee1e2002-02-05 12:27:31 +1100184 if ((cp = colon(userhost)) != NULL) {
185 *cp++ = '\0';
186 file1 = cp;
187 }
Damien Millerd7686fd2001-02-10 00:40:03 +1100188
Damien Millerd14ee1e2002-02-05 12:27:31 +1100189 if ((host = strchr(userhost, '@')) == NULL)
190 host = userhost;
191 else {
192 *host++ = '\0';
193 if (!userhost[0]) {
194 fprintf(stderr, "Missing username\n");
195 usage();
196 }
197 addargs(&args, "-l%s",userhost);
198 }
199
200 host = cleanhostname(host);
201 if (!*host) {
202 fprintf(stderr, "Missing hostname\n");
Damien Miller33804262001-02-04 23:20:18 +1100203 usage();
204 }
Damien Millerd14ee1e2002-02-05 12:27:31 +1100205
206 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
207 addargs(&args, "-oProtocol %d", sshver);
208
209 /* no subsystem if the server-spec contains a '/' */
210 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
211 addargs(&args, "-s");
212
213 addargs(&args, "%s", host);
214 addargs(&args, "%s", (sftp_server != NULL ?
215 sftp_server : "sftp"));
216 args.list[0] = ssh_program;
217
218 fprintf(stderr, "Connecting to %s...\n", host);
219 connect_to_server(ssh_program, args.list, &in, &out,
220 &sshpid);
221 } else {
222 args.list = NULL;
223 addargs(&args, "sftp-server");
224
225 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
226 connect_to_server(sftp_direct, args.list, &in, &out,
227 &sshpid);
Damien Miller33804262001-02-04 23:20:18 +1100228 }
229
Ben Lindstrom63667f62001-04-13 00:00:14 +0000230 interactive_loop(in, out, file1, file2);
Damien Miller33804262001-02-04 23:20:18 +1100231
Ben Lindstrom10b9bf92001-02-26 20:04:45 +0000232#if !defined(USE_PIPES)
233 shutdown(in, SHUT_RDWR);
234 shutdown(out, SHUT_RDWR);
235#endif
236
Damien Miller33804262001-02-04 23:20:18 +1100237 close(in);
238 close(out);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000239 if (infile != stdin)
240 fclose(infile);
Damien Miller33804262001-02-04 23:20:18 +1100241
Damien Millerd7686fd2001-02-10 00:40:03 +1100242 if (waitpid(sshpid, NULL, 0) == -1)
243 fatal("Couldn't wait for ssh process: %s", strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +1100244
245 exit(0);
246}