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