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