]> andersk Git - openssh.git/blame_incremental - sftp.c
- markus@cvs.openbsd.org 2002/02/11 16:21:42
[openssh.git] / sftp.c
... / ...
CommitLineData
1/*
2 * Copyright (c) 2001,2002 Damien Miller. All rights reserved.
3 *
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
27RCSID("$OpenBSD: sftp.c,v 1.25 2002/02/06 14:27:23 mpech Exp $");
28
29/* 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"
35#include "misc.h"
36
37#include "sftp.h"
38#include "sftp-common.h"
39#include "sftp-client.h"
40#include "sftp-int.h"
41
42#ifdef HAVE___PROGNAME
43extern char *__progname;
44#else
45char *__progname;
46#endif
47
48FILE* infile;
49size_t copy_buffer_len = 32768;
50
51static void
52connect_to_server(char *path, char **args, int *in, int *out, pid_t *sshpid)
53{
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);
83 execv(path, args);
84 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
85 exit(1);
86 }
87
88 close(c_in);
89 close(c_out);
90}
91
92static void
93usage(void)
94{
95 extern char *__progname;
96
97 fprintf(stderr,
98 "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);
101 exit(1);
102}
103
104int
105main(int argc, char **argv)
106{
107 int in, out, ch;
108 pid_t sshpid;
109 char *host, *userhost, *cp, *file2;
110 int debug_level = 0, sshver = 2;
111 char *file1 = NULL, *sftp_server = NULL;
112 char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
113 LogLevel ll = SYSLOG_LEVEL_INFO;
114 arglist args;
115 extern int optind;
116 extern char *optarg;
117
118 __progname = get_progname(argv[0]);
119 args.list = NULL;
120 addargs(&args, "ssh"); /* overwritten with ssh_program */
121 addargs(&args, "-oFallBackToRsh no");
122 addargs(&args, "-oForwardX11 no");
123 addargs(&args, "-oForwardAgent no");
124 addargs(&args, "-oClearAllForwardings yes");
125 ll = SYSLOG_LEVEL_INFO;
126 infile = stdin; /* Read from STDIN unless changed by -b */
127
128 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:")) != -1) {
129 switch (ch) {
130 case 'C':
131 addargs(&args, "-C");
132 break;
133 case 'v':
134 if (debug_level < 3) {
135 addargs(&args, "-v");
136 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
137 }
138 debug_level++;
139 break;
140 case 'F':
141 case 'o':
142 addargs(&args, "-%c%s", ch, optarg);
143 break;
144 case '1':
145 sshver = 1;
146 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;
155 case 'b':
156 if (infile == stdin) {
157 infile = fopen(optarg, "r");
158 if (infile == NULL)
159 fatal("%s (%s).", strerror(errno), optarg);
160 } else
161 fatal("Filename already specified.");
162 break;
163 case 'P':
164 sftp_direct = optarg;
165 break;
166 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;
171 case 'h':
172 default:
173 usage();
174 }
175 }
176
177 if (sftp_direct == NULL) {
178 if (optind == argc || argc > (optind + 2))
179 usage();
180
181 userhost = xstrdup(argv[optind]);
182 file2 = argv[optind+1];
183
184 if ((cp = colon(userhost)) != NULL) {
185 *cp++ = '\0';
186 file1 = cp;
187 }
188
189 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");
203 usage();
204 }
205
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);
228 }
229
230 interactive_loop(in, out, file1, file2);
231
232#if !defined(USE_PIPES)
233 shutdown(in, SHUT_RDWR);
234 shutdown(out, SHUT_RDWR);
235#endif
236
237 close(in);
238 close(out);
239 if (infile != stdin)
240 fclose(infile);
241
242 if (waitpid(sshpid, NULL, 0) == -1)
243 fatal("Couldn't wait for ssh process: %s", strerror(errno));
244
245 exit(0);
246}
This page took 0.037145 seconds and 5 git commands to generate.