]> andersk Git - openssh.git/blame - sftp.c
- fgsch@cvs.openbsd.org 2003/01/10 08:19:07
[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
b65c3807 27RCSID("$OpenBSD: sftp.c,v 1.34 2003/01/10 08:19:07 fgsch 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;
c25d3df7 50size_t num_requests = 16;
0426a3b4 51
b65c3807 52extern int showprogress;
53
396c147e 54static void
a96fd7c2 55connect_to_server(char *path, char **args, int *in, int *out, pid_t *sshpid)
61e96248 56{
57 int c_in, c_out;
9906a836 58
61e96248 59#ifdef USE_PIPES
60 int pin[2], pout[2];
9906a836 61
61e96248 62 if ((pipe(pin) == -1) || (pipe(pout) == -1))
63 fatal("pipe: %s", strerror(errno));
64 *in = pin[0];
65 *out = pout[1];
66 c_in = pout[0];
67 c_out = pin[1];
68#else /* USE_PIPES */
69 int inout[2];
9906a836 70
61e96248 71 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
72 fatal("socketpair: %s", strerror(errno));
73 *in = *out = inout[0];
74 c_in = c_out = inout[1];
75#endif /* USE_PIPES */
76
77 if ((*sshpid = fork()) == -1)
78 fatal("fork: %s", strerror(errno));
79 else if (*sshpid == 0) {
80 if ((dup2(c_in, STDIN_FILENO) == -1) ||
81 (dup2(c_out, STDOUT_FILENO) == -1)) {
82 fprintf(stderr, "dup2: %s\n", strerror(errno));
83 exit(1);
84 }
85 close(*in);
86 close(*out);
87 close(c_in);
88 close(c_out);
a96fd7c2 89 execv(path, args);
90 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
61e96248 91 exit(1);
92 }
93
94 close(c_in);
95 close(c_out);
96}
97
396c147e 98static void
61e96248 99usage(void)
100{
22be05a5 101 extern char *__progname;
762715ce 102
f1278af7 103 fprintf(stderr,
22be05a5 104 "usage: %s [-vC1] [-b batchfile] [-o option] [-s subsystem|path] [-B buffer_size]\n"
105 " [-F config] [-P direct server path] [-S program]\n"
106 " [user@]host[:file [file]]\n", __progname);
61e96248 107 exit(1);
108}
109
2b87da3b 110int
61e96248 111main(int argc, char **argv)
112{
9a36208d 113 int in, out, ch, err;
61e96248 114 pid_t sshpid;
edeeab1e 115 char *host, *userhost, *cp, *file2;
8a624ebf 116 int debug_level = 0, sshver = 2;
117 char *file1 = NULL, *sftp_server = NULL;
a96fd7c2 118 char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
8a624ebf 119 LogLevel ll = SYSLOG_LEVEL_INFO;
120 arglist args;
0426a3b4 121 extern int optind;
122 extern char *optarg;
61e96248 123
5152d46f 124 __progname = get_progname(argv[0]);
8a624ebf 125 args.list = NULL;
184eed6a 126 addargs(&args, "ssh"); /* overwritten with ssh_program */
8a624ebf 127 addargs(&args, "-oForwardX11 no");
128 addargs(&args, "-oForwardAgent no");
e1c5bfaf 129 addargs(&args, "-oClearAllForwardings yes");
8a624ebf 130 ll = SYSLOG_LEVEL_INFO;
131 infile = stdin; /* Read from STDIN unless changed by -b */
0426a3b4 132
c25d3df7 133 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:R:")) != -1) {
0426a3b4 134 switch (ch) {
135 case 'C':
8a624ebf 136 addargs(&args, "-C");
0426a3b4 137 break;
138 case 'v':
8a624ebf 139 if (debug_level < 3) {
140 addargs(&args, "-v");
141 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
142 }
143 debug_level++;
0426a3b4 144 break;
f1278af7 145 case 'F':
0426a3b4 146 case 'o':
f1278af7 147 addargs(&args, "-%c%s", ch, optarg);
0426a3b4 148 break;
149 case '1':
8a624ebf 150 sshver = 1;
0426a3b4 151 if (sftp_server == NULL)
152 sftp_server = _PATH_SFTP_SERVER;
153 break;
154 case 's':
155 sftp_server = optarg;
156 break;
157 case 'S':
158 ssh_program = optarg;
159 break;
a5ec8a3d 160 case 'b':
161 if (infile == stdin) {
162 infile = fopen(optarg, "r");
cd332296 163 if (infile == NULL)
a5ec8a3d 164 fatal("%s (%s).", strerror(errno), optarg);
cd332296 165 } else
a5ec8a3d 166 fatal("Filename already specified.");
b65c3807 167 showprogress = 0;
a5ec8a3d 168 break;
a96fd7c2 169 case 'P':
170 sftp_direct = optarg;
171 break;
375f867e 172 case 'B':
173 copy_buffer_len = strtol(optarg, &cp, 10);
174 if (copy_buffer_len == 0 || *cp != '\0')
175 fatal("Invalid buffer size \"%s\"", optarg);
176 break;
c25d3df7 177 case 'R':
178 num_requests = strtol(optarg, &cp, 10);
179 if (num_requests == 0 || *cp != '\0')
762715ce 180 fatal("Invalid number of requests \"%s\"",
c25d3df7 181 optarg);
182 break;
0426a3b4 183 case 'h':
184 default:
61e96248 185 usage();
186 }
187 }
188
b69145c2 189 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
190
a96fd7c2 191 if (sftp_direct == NULL) {
192 if (optind == argc || argc > (optind + 2))
193 usage();
61e96248 194
a96fd7c2 195 userhost = xstrdup(argv[optind]);
196 file2 = argv[optind+1];
edeeab1e 197
a96fd7c2 198 if ((cp = colon(userhost)) != NULL) {
199 *cp++ = '\0';
200 file1 = cp;
201 }
0426a3b4 202
15748b4d 203 if ((host = strrchr(userhost, '@')) == NULL)
a96fd7c2 204 host = userhost;
205 else {
206 *host++ = '\0';
207 if (!userhost[0]) {
208 fprintf(stderr, "Missing username\n");
209 usage();
210 }
211 addargs(&args, "-l%s",userhost);
61e96248 212 }
61e96248 213
a96fd7c2 214 host = cleanhostname(host);
215 if (!*host) {
216 fprintf(stderr, "Missing hostname\n");
217 usage();
218 }
61e96248 219
a96fd7c2 220 addargs(&args, "-oProtocol %d", sshver);
8a624ebf 221
a96fd7c2 222 /* no subsystem if the server-spec contains a '/' */
223 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
224 addargs(&args, "-s");
61e96248 225
a96fd7c2 226 addargs(&args, "%s", host);
762715ce 227 addargs(&args, "%s", (sftp_server != NULL ?
a96fd7c2 228 sftp_server : "sftp"));
229 args.list[0] = ssh_program;
61e96248 230
a96fd7c2 231 fprintf(stderr, "Connecting to %s...\n", host);
762715ce 232 connect_to_server(ssh_program, args.list, &in, &out,
a96fd7c2 233 &sshpid);
234 } else {
235 args.list = NULL;
236 addargs(&args, "sftp-server");
61e96248 237
a96fd7c2 238 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
762715ce 239 connect_to_server(sftp_direct, args.list, &in, &out,
a96fd7c2 240 &sshpid);
241 }
61e96248 242
9a36208d 243 err = interactive_loop(in, out, file1, file2);
61e96248 244
51fb577a 245#if !defined(USE_PIPES)
875ec275 246 shutdown(in, SHUT_RDWR);
247 shutdown(out, SHUT_RDWR);
51fb577a 248#endif
249
61e96248 250 close(in);
251 close(out);
a5ec8a3d 252 if (infile != stdin)
253 fclose(infile);
61e96248 254
8c38e88b 255 while (waitpid(sshpid, NULL, 0) == -1)
256 if (errno != EINTR)
257 fatal("Couldn't wait for ssh process: %s",
258 strerror(errno));
61e96248 259
9a36208d 260 exit(err == 0 ? 0 : 1);
61e96248 261}
This page took 0.165923 seconds and 5 git commands to generate.