blob: e4086549cf75728993c8652aba9b4602c04049e6 [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
Ben Lindstrom47fd8112002-04-02 20:48:19 +000027RCSID("$OpenBSD: sftp.c,v 1.28 2002/03/30 18:51:15 markus 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
Ben Lindstrombba81212001-06-25 05:01:22 +000052static void
Damien Millerd14ee1e2002-02-05 12:27:31 +110053connect_to_server(char *path, char **args, int *in, int *out, pid_t *sshpid)
Damien Miller33804262001-02-04 23:20:18 +110054{
55 int c_in, c_out;
56#ifdef USE_PIPES
57 int pin[2], pout[2];
58 if ((pipe(pin) == -1) || (pipe(pout) == -1))
59 fatal("pipe: %s", strerror(errno));
60 *in = pin[0];
61 *out = pout[1];
62 c_in = pout[0];
63 c_out = pin[1];
64#else /* USE_PIPES */
65 int inout[2];
66 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
67 fatal("socketpair: %s", strerror(errno));
68 *in = *out = inout[0];
69 c_in = c_out = inout[1];
70#endif /* USE_PIPES */
71
72 if ((*sshpid = fork()) == -1)
73 fatal("fork: %s", strerror(errno));
74 else if (*sshpid == 0) {
75 if ((dup2(c_in, STDIN_FILENO) == -1) ||
76 (dup2(c_out, STDOUT_FILENO) == -1)) {
77 fprintf(stderr, "dup2: %s\n", strerror(errno));
78 exit(1);
79 }
80 close(*in);
81 close(*out);
82 close(c_in);
83 close(c_out);
Damien Millerd14ee1e2002-02-05 12:27:31 +110084 execv(path, args);
85 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +110086 exit(1);
87 }
88
89 close(c_in);
90 close(c_out);
91}
92
Ben Lindstrombba81212001-06-25 05:01:22 +000093static void
Damien Miller33804262001-02-04 23:20:18 +110094usage(void)
95{
Damien Miller025e01c2002-02-08 22:06:29 +110096 extern char *__progname;
Ben Lindstrom6328ab32002-03-22 02:54:23 +000097
Ben Lindstrom1e243242001-09-18 05:38:44 +000098 fprintf(stderr,
Damien Miller025e01c2002-02-08 22:06:29 +110099 "usage: %s [-vC1] [-b batchfile] [-o option] [-s subsystem|path] [-B buffer_size]\n"
100 " [-F config] [-P direct server path] [-S program]\n"
101 " [user@]host[:file [file]]\n", __progname);
Damien Miller33804262001-02-04 23:20:18 +1100102 exit(1);
103}
104
Kevin Stevesef4eea92001-02-05 12:42:17 +0000105int
Damien Miller33804262001-02-04 23:20:18 +1100106main(int argc, char **argv)
107{
Ben Lindstrom387c4722001-05-08 20:27:25 +0000108 int in, out, ch;
Damien Miller33804262001-02-04 23:20:18 +1100109 pid_t sshpid;
Ben Lindstrom63667f62001-04-13 00:00:14 +0000110 char *host, *userhost, *cp, *file2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000111 int debug_level = 0, sshver = 2;
112 char *file1 = NULL, *sftp_server = NULL;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100113 char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000114 LogLevel ll = SYSLOG_LEVEL_INFO;
115 arglist args;
Damien Millerd7686fd2001-02-10 00:40:03 +1100116 extern int optind;
117 extern char *optarg;
Damien Miller33804262001-02-04 23:20:18 +1100118
Kevin Steves12888d12001-03-05 19:50:57 +0000119 __progname = get_progname(argv[0]);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000120 args.list = NULL;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100121 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000122 addargs(&args, "-oFallBackToRsh no");
123 addargs(&args, "-oForwardX11 no");
124 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000125 addargs(&args, "-oClearAllForwardings yes");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000126 ll = SYSLOG_LEVEL_INFO;
127 infile = stdin; /* Read from STDIN unless changed by -b */
Damien Millerd7686fd2001-02-10 00:40:03 +1100128
Damien Miller16a13332002-02-13 14:03:56 +1100129 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:R:")) != -1) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100130 switch (ch) {
131 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000132 addargs(&args, "-C");
Damien Millerd7686fd2001-02-10 00:40:03 +1100133 break;
134 case 'v':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000135 if (debug_level < 3) {
136 addargs(&args, "-v");
137 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
138 }
139 debug_level++;
Damien Millerd7686fd2001-02-10 00:40:03 +1100140 break;
Ben Lindstrom1e243242001-09-18 05:38:44 +0000141 case 'F':
Damien Millerd7686fd2001-02-10 00:40:03 +1100142 case 'o':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000143 addargs(&args, "-%c%s", ch, optarg);
Damien Millerd7686fd2001-02-10 00:40:03 +1100144 break;
145 case '1':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000146 sshver = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100147 if (sftp_server == NULL)
148 sftp_server = _PATH_SFTP_SERVER;
149 break;
150 case 's':
151 sftp_server = optarg;
152 break;
153 case 'S':
154 ssh_program = optarg;
155 break;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000156 case 'b':
157 if (infile == stdin) {
158 infile = fopen(optarg, "r");
Ben Lindstroma3700052001-04-05 23:26:32 +0000159 if (infile == NULL)
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000160 fatal("%s (%s).", strerror(errno), optarg);
Ben Lindstroma3700052001-04-05 23:26:32 +0000161 } else
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000162 fatal("Filename already specified.");
163 break;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100164 case 'P':
165 sftp_direct = optarg;
166 break;
Damien Miller8829d362002-02-08 22:04:05 +1100167 case 'B':
168 copy_buffer_len = strtol(optarg, &cp, 10);
169 if (copy_buffer_len == 0 || *cp != '\0')
170 fatal("Invalid buffer size \"%s\"", optarg);
171 break;
Damien Miller16a13332002-02-13 14:03:56 +1100172 case 'R':
173 num_requests = strtol(optarg, &cp, 10);
174 if (num_requests == 0 || *cp != '\0')
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000175 fatal("Invalid number of requests \"%s\"",
Damien Miller16a13332002-02-13 14:03:56 +1100176 optarg);
177 break;
Damien Millerd7686fd2001-02-10 00:40:03 +1100178 case 'h':
179 default:
Damien Miller33804262001-02-04 23:20:18 +1100180 usage();
181 }
182 }
183
Damien Millerd14ee1e2002-02-05 12:27:31 +1100184 if (sftp_direct == NULL) {
185 if (optind == argc || argc > (optind + 2))
186 usage();
Damien Miller33804262001-02-04 23:20:18 +1100187
Damien Millerd14ee1e2002-02-05 12:27:31 +1100188 userhost = xstrdup(argv[optind]);
189 file2 = argv[optind+1];
Ben Lindstrom63667f62001-04-13 00:00:14 +0000190
Damien Millerd14ee1e2002-02-05 12:27:31 +1100191 if ((cp = colon(userhost)) != NULL) {
192 *cp++ = '\0';
193 file1 = cp;
194 }
Damien Millerd7686fd2001-02-10 00:40:03 +1100195
Damien Millerd14ee1e2002-02-05 12:27:31 +1100196 if ((host = strchr(userhost, '@')) == NULL)
197 host = userhost;
198 else {
199 *host++ = '\0';
200 if (!userhost[0]) {
201 fprintf(stderr, "Missing username\n");
202 usage();
203 }
204 addargs(&args, "-l%s",userhost);
205 }
206
207 host = cleanhostname(host);
208 if (!*host) {
209 fprintf(stderr, "Missing hostname\n");
Damien Miller33804262001-02-04 23:20:18 +1100210 usage();
211 }
Damien Millerd14ee1e2002-02-05 12:27:31 +1100212
213 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
214 addargs(&args, "-oProtocol %d", sshver);
215
216 /* no subsystem if the server-spec contains a '/' */
217 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
218 addargs(&args, "-s");
219
220 addargs(&args, "%s", host);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000221 addargs(&args, "%s", (sftp_server != NULL ?
Damien Millerd14ee1e2002-02-05 12:27:31 +1100222 sftp_server : "sftp"));
223 args.list[0] = ssh_program;
224
225 fprintf(stderr, "Connecting to %s...\n", host);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000226 connect_to_server(ssh_program, args.list, &in, &out,
Damien Millerd14ee1e2002-02-05 12:27:31 +1100227 &sshpid);
228 } else {
229 args.list = NULL;
230 addargs(&args, "sftp-server");
231
232 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
Ben Lindstrom6328ab32002-03-22 02:54:23 +0000233 connect_to_server(sftp_direct, args.list, &in, &out,
Damien Millerd14ee1e2002-02-05 12:27:31 +1100234 &sshpid);
Damien Miller33804262001-02-04 23:20:18 +1100235 }
236
Ben Lindstrom63667f62001-04-13 00:00:14 +0000237 interactive_loop(in, out, file1, file2);
Damien Miller33804262001-02-04 23:20:18 +1100238
Ben Lindstrom10b9bf92001-02-26 20:04:45 +0000239#if !defined(USE_PIPES)
240 shutdown(in, SHUT_RDWR);
241 shutdown(out, SHUT_RDWR);
242#endif
243
Damien Miller33804262001-02-04 23:20:18 +1100244 close(in);
245 close(out);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000246 if (infile != stdin)
247 fclose(infile);
Damien Miller33804262001-02-04 23:20:18 +1100248
Ben Lindstrom47fd8112002-04-02 20:48:19 +0000249 while (waitpid(sshpid, NULL, 0) == -1)
250 if (errno != EINTR)
251 fatal("Couldn't wait for ssh process: %s",
252 strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +1100253
254 exit(0);
255}