]> andersk Git - openssh.git/blame - sftp.c
- markus@cvs.openbsd.org 2001/06/23 06:41:10
[openssh.git] / sftp.c
CommitLineData
61e96248 1/*
2 * Copyright (c) 2001 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
8a624ebf 27RCSID("$OpenBSD: sftp.c,v 1.17 2001/05/08 19:45:25 mouring Exp $");
61e96248 28
29/* XXX: commandline mode */
61e96248 30/* XXX: short-form remote directory listings (like 'ls -C') */
31
32#include "buffer.h"
33#include "xmalloc.h"
34#include "log.h"
35#include "pathnames.h"
1fcde3fe 36#include "misc.h"
61e96248 37
38#include "sftp.h"
39#include "sftp-common.h"
40#include "sftp-client.h"
41#include "sftp-int.h"
42
5152d46f 43#ifdef HAVE___PROGNAME
44extern char *__progname;
45#else
46char *__progname;
47#endif
48
0426a3b4 49char *ssh_program = _PATH_SSH_PROGRAM;
a5ec8a3d 50FILE* infile;
0426a3b4 51
61e96248 52void
53connect_to_server(char **args, int *in, int *out, pid_t *sshpid)
54{
55 int c_in, c_out;
56#ifdef USE_PIPES
57 int pin[2], pout[2];
58 if ((pipe(pin) == -1) || (pipe(pout) == -1))
59 fatal("pipe: %s", strerror(errno));
60 *in = pin[0];
61 *out = pout[1];
62 c_in = pout[0];
63 c_out = pin[1];
64#else /* USE_PIPES */
65 int inout[2];
66 if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
67 fatal("socketpair: %s", strerror(errno));
68 *in = *out = inout[0];
69 c_in = c_out = inout[1];
70#endif /* USE_PIPES */
71
72 if ((*sshpid = fork()) == -1)
73 fatal("fork: %s", strerror(errno));
74 else if (*sshpid == 0) {
75 if ((dup2(c_in, STDIN_FILENO) == -1) ||
76 (dup2(c_out, STDOUT_FILENO) == -1)) {
77 fprintf(stderr, "dup2: %s\n", strerror(errno));
78 exit(1);
79 }
80 close(*in);
81 close(*out);
82 close(c_in);
83 close(c_out);
0426a3b4 84 execv(ssh_program, args);
85 fprintf(stderr, "exec: %s: %s\n", ssh_program, strerror(errno));
61e96248 86 exit(1);
87 }
88
89 close(c_in);
90 close(c_out);
91}
92
2b87da3b 93void
61e96248 94usage(void)
95{
edeeab1e 96 fprintf(stderr, "usage: sftp [-1vC] [-b batchfile] [-osshopt=value] [user@]host[:file [file]]\n");
61e96248 97 exit(1);
98}
99
2b87da3b 100int
61e96248 101main(int argc, char **argv)
102{
8a624ebf 103 int in, out, ch;
61e96248 104 pid_t sshpid;
edeeab1e 105 char *host, *userhost, *cp, *file2;
8a624ebf 106 int debug_level = 0, sshver = 2;
107 char *file1 = NULL, *sftp_server = NULL;
108 LogLevel ll = SYSLOG_LEVEL_INFO;
109 arglist args;
0426a3b4 110 extern int optind;
111 extern char *optarg;
61e96248 112
5152d46f 113 __progname = get_progname(argv[0]);
8a624ebf 114 args.list = NULL;
115 addargs(&args, "ssh"); /* overwritten with ssh_program */
116 addargs(&args, "-oFallBackToRsh no");
117 addargs(&args, "-oForwardX11 no");
118 addargs(&args, "-oForwardAgent no");
119 ll = SYSLOG_LEVEL_INFO;
120 infile = stdin; /* Read from STDIN unless changed by -b */
0426a3b4 121
a5ec8a3d 122 while ((ch = getopt(argc, argv, "1hvCo:s:S:b:")) != -1) {
0426a3b4 123 switch (ch) {
124 case 'C':
8a624ebf 125 addargs(&args, "-C");
0426a3b4 126 break;
127 case 'v':
8a624ebf 128 if (debug_level < 3) {
129 addargs(&args, "-v");
130 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
131 }
132 debug_level++;
0426a3b4 133 break;
134 case 'o':
8a624ebf 135 addargs(&args, "-o%s", optarg);
0426a3b4 136 break;
137 case '1':
8a624ebf 138 sshver = 1;
0426a3b4 139 if (sftp_server == NULL)
140 sftp_server = _PATH_SFTP_SERVER;
141 break;
142 case 's':
143 sftp_server = optarg;
144 break;
145 case 'S':
146 ssh_program = optarg;
147 break;
a5ec8a3d 148 case 'b':
149 if (infile == stdin) {
150 infile = fopen(optarg, "r");
cd332296 151 if (infile == NULL)
a5ec8a3d 152 fatal("%s (%s).", strerror(errno), optarg);
cd332296 153 } else
a5ec8a3d 154 fatal("Filename already specified.");
155 break;
0426a3b4 156 case 'h':
157 default:
61e96248 158 usage();
159 }
160 }
161
edeeab1e 162 if (optind == argc || argc > (optind + 2))
61e96248 163 usage();
164
0a85ab61 165 userhost = xstrdup(argv[optind]);
edeeab1e 166 file2 = argv[optind+1];
167
47b53518 168 if ((cp = colon(userhost)) != NULL) {
edeeab1e 169 *cp++ = '\0';
170 file1 = cp;
171 }
0426a3b4 172
173 if ((host = strchr(userhost, '@')) == NULL)
174 host = userhost;
61e96248 175 else {
edeeab1e 176 *host++ = '\0';
0426a3b4 177 if (!userhost[0]) {
61e96248 178 fprintf(stderr, "Missing username\n");
179 usage();
180 }
8a624ebf 181 addargs(&args, "-l%s",userhost);
61e96248 182 }
183
47b53518 184 host = cleanhostname(host);
0426a3b4 185 if (!*host) {
61e96248 186 fprintf(stderr, "Missing hostname\n");
187 usage();
188 }
189
61e96248 190 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
8a624ebf 191 addargs(&args, "-oProtocol %d", sshver);
192
193 /* no subsystem if the server-spec contains a '/' */
194 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
195 addargs(&args, "-s");
61e96248 196
8a624ebf 197 addargs(&args, "%s", host);
198 addargs(&args, "%s", (sftp_server != NULL ? sftp_server : "sftp"));
199 args.list[0] = ssh_program;
61e96248 200
0426a3b4 201 fprintf(stderr, "Connecting to %s...\n", host);
61e96248 202
8a624ebf 203 connect_to_server(args.list, &in, &out, &sshpid);
61e96248 204
edeeab1e 205 interactive_loop(in, out, file1, file2);
61e96248 206
51fb577a 207#if !defined(USE_PIPES)
208 shutdown(in, SHUT_RDWR);
209 shutdown(out, SHUT_RDWR);
210#endif
211
61e96248 212 close(in);
213 close(out);
a5ec8a3d 214 if (infile != stdin)
215 fclose(infile);
61e96248 216
0426a3b4 217 if (waitpid(sshpid, NULL, 0) == -1)
218 fatal("Couldn't wait for ssh process: %s", strerror(errno));
61e96248 219
220 exit(0);
221}
This page took 0.15334 seconds and 5 git commands to generate.