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