]> andersk Git - openssh.git/blob - sftp.c
- stevesk@cvs.openbsd.org 2001/09/17 20:38:09
[openssh.git] / sftp.c
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
27 RCSID("$OpenBSD: sftp.c,v 1.20 2001/09/17 20:38:09 stevesk Exp $");
28
29 /* XXX: commandline mode */
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"
36 #include "misc.h"
37
38 #include "sftp.h"
39 #include "sftp-common.h"
40 #include "sftp-client.h"
41 #include "sftp-int.h"
42
43 #ifdef HAVE___PROGNAME
44 extern char *__progname;
45 #else
46 char *__progname;
47 #endif
48
49 char *ssh_program = _PATH_SSH_PROGRAM;
50 FILE* infile;
51
52 static void
53 connect_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);
84                 execv(ssh_program, args);
85                 fprintf(stderr, "exec: %s: %s\n", ssh_program, strerror(errno));
86                 exit(1);
87         }
88
89         close(c_in);
90         close(c_out);
91 }
92
93 static void
94 usage(void)
95 {
96         fprintf(stderr,
97             "usage: sftp [-1Cv] [-b batchfile] [-F config] [-o option] [-s subsystem|path]\n"
98             "            [-S program] [user@]host[:file [file]]\n");
99         exit(1);
100 }
101
102 int
103 main(int argc, char **argv)
104 {
105         int in, out, ch;
106         pid_t sshpid;
107         char *host, *userhost, *cp, *file2;
108         int debug_level = 0, sshver = 2;
109         char *file1 = NULL, *sftp_server = NULL;
110         LogLevel ll = SYSLOG_LEVEL_INFO;
111         arglist args;
112         extern int optind;
113         extern char *optarg;
114
115         __progname = get_progname(argv[0]);
116         args.list = NULL;
117         addargs(&args, "ssh");         /* overwritten with ssh_program */
118         addargs(&args, "-oFallBackToRsh no");
119         addargs(&args, "-oForwardX11 no");
120         addargs(&args, "-oForwardAgent no");
121         ll = SYSLOG_LEVEL_INFO;
122         infile = stdin;         /* Read from STDIN unless changed by -b */
123
124         while ((ch = getopt(argc, argv, "1hvCo:s:S:b:F:")) != -1) {
125                 switch (ch) {
126                 case 'C':
127                         addargs(&args, "-C");
128                         break;
129                 case 'v':
130                         if (debug_level < 3) {
131                                 addargs(&args, "-v");
132                                 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
133                         }
134                         debug_level++;
135                         break;
136                 case 'F':
137                 case 'o':
138                         addargs(&args, "-%c%s", ch, optarg);
139                         break;
140                 case '1':
141                         sshver = 1;
142                         if (sftp_server == NULL)
143                                 sftp_server = _PATH_SFTP_SERVER;
144                         break;
145                 case 's':
146                         sftp_server = optarg;
147                         break;
148                 case 'S':
149                         ssh_program = optarg;
150                         break;
151                 case 'b':
152                         if (infile == stdin) {
153                                 infile = fopen(optarg, "r");
154                                 if (infile == NULL)
155                                         fatal("%s (%s).", strerror(errno), optarg);
156                         } else
157                                 fatal("Filename already specified.");
158                         break;
159                 case 'h':
160                 default:
161                         usage();
162                 }
163         }
164
165         if (optind == argc || argc > (optind + 2))
166                 usage();
167
168         userhost = xstrdup(argv[optind]);
169         file2 = argv[optind+1];
170
171         if ((cp = colon(userhost)) != NULL) {
172                 *cp++ = '\0';
173                 file1 = cp;
174         }
175
176         if ((host = strchr(userhost, '@')) == NULL)
177                 host = userhost;
178         else {
179                 *host++ = '\0';
180                 if (!userhost[0]) {
181                         fprintf(stderr, "Missing username\n");
182                         usage();
183                 }
184                 addargs(&args, "-l%s",userhost);
185         }
186
187         host = cleanhostname(host);
188         if (!*host) {
189                 fprintf(stderr, "Missing hostname\n");
190                 usage();
191         }
192
193         log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
194         addargs(&args, "-oProtocol %d", sshver);
195
196         /* no subsystem if the server-spec contains a '/' */
197         if (sftp_server == NULL || strchr(sftp_server, '/') == NULL) 
198                 addargs(&args, "-s");
199
200         addargs(&args, "%s", host);
201         addargs(&args, "%s", (sftp_server != NULL ? sftp_server : "sftp"));
202         args.list[0] = ssh_program;
203
204         fprintf(stderr, "Connecting to %s...\n", host);
205
206         connect_to_server(args.list, &in, &out, &sshpid);
207
208         interactive_loop(in, out, file1, file2);
209
210 #if !defined(USE_PIPES)
211         shutdown(in, SHUT_RDWR);
212         shutdown(out, SHUT_RDWR);
213 #endif
214
215         close(in);
216         close(out);
217         if (infile != stdin)
218                 fclose(infile);
219
220         if (waitpid(sshpid, NULL, 0) == -1)
221                 fatal("Couldn't wait for ssh process: %s", strerror(errno));
222
223         exit(0);
224 }
This page took 0.05291 seconds and 5 git commands to generate.