blob: 3748d055deb1157cb6fd7421a7d7f2f08945d00d [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 Millerd14ee1e2002-02-05 12:27:31 +110027RCSID("$OpenBSD: sftp.c,v 1.23 2002/02/04 21:53:12 djm 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 Millerd7686fd2001-02-10 00:40:03 +110049
Ben Lindstrombba81212001-06-25 05:01:22 +000050static void
Damien Millerd14ee1e2002-02-05 12:27:31 +110051connect_to_server(char *path, char **args, int *in, int *out, pid_t *sshpid)
Damien Miller33804262001-02-04 23:20:18 +110052{
53 int c_in, c_out;
54#ifdef USE_PIPES
55 int pin[2], pout[2];
56 if ((pipe(pin) == -1) || (pipe(pout) == -1))
57 fatal("pipe: %s", strerror(errno));
58 *in = pin[0];
59 *out = pout[1];
60 c_in = pout[0];
61 c_out = pin[1];
62#else /* USE_PIPES */
63 int inout[2];
64 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
65 fatal("socketpair: %s", strerror(errno));
66 *in = *out = inout[0];
67 c_in = c_out = inout[1];
68#endif /* USE_PIPES */
69
70 if ((*sshpid = fork()) == -1)
71 fatal("fork: %s", strerror(errno));
72 else if (*sshpid == 0) {
73 if ((dup2(c_in, STDIN_FILENO) == -1) ||
74 (dup2(c_out, STDOUT_FILENO) == -1)) {
75 fprintf(stderr, "dup2: %s\n", strerror(errno));
76 exit(1);
77 }
78 close(*in);
79 close(*out);
80 close(c_in);
81 close(c_out);
Damien Millerd14ee1e2002-02-05 12:27:31 +110082 execv(path, args);
83 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +110084 exit(1);
85 }
86
87 close(c_in);
88 close(c_out);
89}
90
Ben Lindstrombba81212001-06-25 05:01:22 +000091static void
Damien Miller33804262001-02-04 23:20:18 +110092usage(void)
93{
Ben Lindstrom1e243242001-09-18 05:38:44 +000094 fprintf(stderr,
Ben Lindstrom6a337632001-09-18 05:47:32 +000095 "usage: sftp [-1Cv] [-b batchfile] [-F config] [-o option] [-s subsystem|path]\n"
96 " [-S program] [user@]host[:file [file]]\n");
Damien Miller33804262001-02-04 23:20:18 +110097 exit(1);
98}
99
Kevin Stevesef4eea92001-02-05 12:42:17 +0000100int
Damien Miller33804262001-02-04 23:20:18 +1100101main(int argc, char **argv)
102{
Ben Lindstrom387c4722001-05-08 20:27:25 +0000103 int in, out, ch;
Damien Miller33804262001-02-04 23:20:18 +1100104 pid_t sshpid;
Ben Lindstrom63667f62001-04-13 00:00:14 +0000105 char *host, *userhost, *cp, *file2;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000106 int debug_level = 0, sshver = 2;
107 char *file1 = NULL, *sftp_server = NULL;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100108 char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
Ben Lindstrom387c4722001-05-08 20:27:25 +0000109 LogLevel ll = SYSLOG_LEVEL_INFO;
110 arglist args;
Damien Millerd7686fd2001-02-10 00:40:03 +1100111 extern int optind;
112 extern char *optarg;
Damien Miller33804262001-02-04 23:20:18 +1100113
Kevin Steves12888d12001-03-05 19:50:57 +0000114 __progname = get_progname(argv[0]);
Ben Lindstrom387c4722001-05-08 20:27:25 +0000115 args.list = NULL;
Damien Miller9f0f5c62001-12-21 14:45:46 +1100116 addargs(&args, "ssh"); /* overwritten with ssh_program */
Ben Lindstrom387c4722001-05-08 20:27:25 +0000117 addargs(&args, "-oFallBackToRsh no");
118 addargs(&args, "-oForwardX11 no");
119 addargs(&args, "-oForwardAgent no");
Ben Lindstrom2b7a0e92001-09-20 00:57:55 +0000120 addargs(&args, "-oClearAllForwardings yes");
Ben Lindstrom387c4722001-05-08 20:27:25 +0000121 ll = SYSLOG_LEVEL_INFO;
122 infile = stdin; /* Read from STDIN unless changed by -b */
Damien Millerd7686fd2001-02-10 00:40:03 +1100123
Damien Millerd14ee1e2002-02-05 12:27:31 +1100124 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:F:P:")) != -1) {
Damien Millerd7686fd2001-02-10 00:40:03 +1100125 switch (ch) {
126 case 'C':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000127 addargs(&args, "-C");
Damien Millerd7686fd2001-02-10 00:40:03 +1100128 break;
129 case 'v':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000130 if (debug_level < 3) {
131 addargs(&args, "-v");
132 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
133 }
134 debug_level++;
Damien Millerd7686fd2001-02-10 00:40:03 +1100135 break;
Ben Lindstrom1e243242001-09-18 05:38:44 +0000136 case 'F':
Damien Millerd7686fd2001-02-10 00:40:03 +1100137 case 'o':
Ben Lindstrom1e243242001-09-18 05:38:44 +0000138 addargs(&args, "-%c%s", ch, optarg);
Damien Millerd7686fd2001-02-10 00:40:03 +1100139 break;
140 case '1':
Ben Lindstrom387c4722001-05-08 20:27:25 +0000141 sshver = 1;
Damien Millerd7686fd2001-02-10 00:40:03 +1100142 if (sftp_server == NULL)
143 sftp_server = _PATH_SFTP_SERVER;
144 break;
145 case 's':
146 sftp_server = optarg;
147 break;
148 case 'S':
149 ssh_program = optarg;
150 break;
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000151 case 'b':
152 if (infile == stdin) {
153 infile = fopen(optarg, "r");
Ben Lindstroma3700052001-04-05 23:26:32 +0000154 if (infile == NULL)
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000155 fatal("%s (%s).", strerror(errno), optarg);
Ben Lindstroma3700052001-04-05 23:26:32 +0000156 } else
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000157 fatal("Filename already specified.");
158 break;
Damien Millerd14ee1e2002-02-05 12:27:31 +1100159 case 'P':
160 sftp_direct = optarg;
161 break;
Damien Millerd7686fd2001-02-10 00:40:03 +1100162 case 'h':
163 default:
Damien Miller33804262001-02-04 23:20:18 +1100164 usage();
165 }
166 }
167
Damien Millerd14ee1e2002-02-05 12:27:31 +1100168 if (sftp_direct == NULL) {
169 if (optind == argc || argc > (optind + 2))
170 usage();
Damien Miller33804262001-02-04 23:20:18 +1100171
Damien Millerd14ee1e2002-02-05 12:27:31 +1100172 userhost = xstrdup(argv[optind]);
173 file2 = argv[optind+1];
Ben Lindstrom63667f62001-04-13 00:00:14 +0000174
Damien Millerd14ee1e2002-02-05 12:27:31 +1100175 if ((cp = colon(userhost)) != NULL) {
176 *cp++ = '\0';
177 file1 = cp;
178 }
Damien Millerd7686fd2001-02-10 00:40:03 +1100179
Damien Millerd14ee1e2002-02-05 12:27:31 +1100180 if ((host = strchr(userhost, '@')) == NULL)
181 host = userhost;
182 else {
183 *host++ = '\0';
184 if (!userhost[0]) {
185 fprintf(stderr, "Missing username\n");
186 usage();
187 }
188 addargs(&args, "-l%s",userhost);
189 }
190
191 host = cleanhostname(host);
192 if (!*host) {
193 fprintf(stderr, "Missing hostname\n");
Damien Miller33804262001-02-04 23:20:18 +1100194 usage();
195 }
Damien Millerd14ee1e2002-02-05 12:27:31 +1100196
197 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
198 addargs(&args, "-oProtocol %d", sshver);
199
200 /* no subsystem if the server-spec contains a '/' */
201 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
202 addargs(&args, "-s");
203
204 addargs(&args, "%s", host);
205 addargs(&args, "%s", (sftp_server != NULL ?
206 sftp_server : "sftp"));
207 args.list[0] = ssh_program;
208
209 fprintf(stderr, "Connecting to %s...\n", host);
210 connect_to_server(ssh_program, args.list, &in, &out,
211 &sshpid);
212 } else {
213 args.list = NULL;
214 addargs(&args, "sftp-server");
215
216 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
217 connect_to_server(sftp_direct, args.list, &in, &out,
218 &sshpid);
Damien Miller33804262001-02-04 23:20:18 +1100219 }
220
Ben Lindstrom63667f62001-04-13 00:00:14 +0000221 interactive_loop(in, out, file1, file2);
Damien Miller33804262001-02-04 23:20:18 +1100222
Ben Lindstrom10b9bf92001-02-26 20:04:45 +0000223#if !defined(USE_PIPES)
224 shutdown(in, SHUT_RDWR);
225 shutdown(out, SHUT_RDWR);
226#endif
227
Damien Miller33804262001-02-04 23:20:18 +1100228 close(in);
229 close(out);
Ben Lindstrom562c26b2001-03-07 01:26:48 +0000230 if (infile != stdin)
231 fclose(infile);
Damien Miller33804262001-02-04 23:20:18 +1100232
Damien Millerd7686fd2001-02-10 00:40:03 +1100233 if (waitpid(sshpid, NULL, 0) == -1)
234 fatal("Couldn't wait for ssh process: %s", strerror(errno));
Damien Miller33804262001-02-04 23:20:18 +1100235
236 exit(0);
237}