]> andersk Git - openssh.git/blob - sftp.c
- djm@cvs.openbsd.org 2002/02/04 21:53:12
[openssh.git] / sftp.c
1 /*
2  * Copyright (c) 2001,2002 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.23 2002/02/04 21:53:12 djm Exp $");
28
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"
35 #include "misc.h"
36
37 #include "sftp.h"
38 #include "sftp-common.h"
39 #include "sftp-client.h"
40 #include "sftp-int.h"
41
42 #ifdef HAVE___PROGNAME
43 extern char *__progname;
44 #else
45 char *__progname;
46 #endif
47
48 FILE* infile;
49
50 static void
51 connect_to_server(char *path, char **args, int *in, int *out, pid_t *sshpid)
52 {
53         int c_in, c_out;
54 #ifdef USE_PIPES
55         int pin[2], pout[2];
56         if ((pipe(pin) == -1) || (pipe(pout) == -1))
57                 fatal("pipe: %s", strerror(errno));
58         *in = pin[0];
59         *out = pout[1];
60         c_in = pout[0];
61         c_out = pin[1];
62 #else /* USE_PIPES */
63         int inout[2];
64         if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
65                 fatal("socketpair: %s", strerror(errno));
66         *in = *out = inout[0];
67         c_in = c_out = inout[1];
68 #endif /* USE_PIPES */
69
70         if ((*sshpid = fork()) == -1)
71                 fatal("fork: %s", strerror(errno));
72         else if (*sshpid == 0) {
73                 if ((dup2(c_in, STDIN_FILENO) == -1) ||
74                     (dup2(c_out, STDOUT_FILENO) == -1)) {
75                         fprintf(stderr, "dup2: %s\n", strerror(errno));
76                         exit(1);
77                 }
78                 close(*in);
79                 close(*out);
80                 close(c_in);
81                 close(c_out);
82                 execv(path, args);
83                 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
84                 exit(1);
85         }
86
87         close(c_in);
88         close(c_out);
89 }
90
91 static void
92 usage(void)
93 {
94         fprintf(stderr,
95             "usage: sftp [-1Cv] [-b batchfile] [-F config] [-o option] [-s subsystem|path]\n"
96             "            [-S program] [user@]host[:file [file]]\n");
97         exit(1);
98 }
99
100 int
101 main(int argc, char **argv)
102 {
103         int in, out, ch;
104         pid_t sshpid;
105         char *host, *userhost, *cp, *file2;
106         int debug_level = 0, sshver = 2;
107         char *file1 = NULL, *sftp_server = NULL;
108         char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
109         LogLevel ll = SYSLOG_LEVEL_INFO;
110         arglist args;
111         extern int optind;
112         extern char *optarg;
113
114         __progname = get_progname(argv[0]);
115         args.list = NULL;
116         addargs(&args, "ssh");          /* overwritten with ssh_program */
117         addargs(&args, "-oFallBackToRsh no");
118         addargs(&args, "-oForwardX11 no");
119         addargs(&args, "-oForwardAgent no");
120         addargs(&args, "-oClearAllForwardings yes");
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:P:")) != -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 'P':
160                         sftp_direct = optarg;
161                         break;
162                 case 'h':
163                 default:
164                         usage();
165                 }
166         }
167
168         if (sftp_direct == NULL) {
169                 if (optind == argc || argc > (optind + 2))
170                         usage();
171
172                 userhost = xstrdup(argv[optind]);
173                 file2 = argv[optind+1];
174
175                 if ((cp = colon(userhost)) != NULL) {
176                         *cp++ = '\0';
177                         file1 = cp;
178                 }
179
180                 if ((host = strchr(userhost, '@')) == NULL)
181                         host = userhost;
182                 else {
183                         *host++ = '\0';
184                         if (!userhost[0]) {
185                                 fprintf(stderr, "Missing username\n");
186                                 usage();
187                         }
188                         addargs(&args, "-l%s",userhost);
189                 }
190
191                 host = cleanhostname(host);
192                 if (!*host) {
193                         fprintf(stderr, "Missing hostname\n");
194                         usage();
195                 }
196
197                 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
198                 addargs(&args, "-oProtocol %d", sshver);
199
200                 /* no subsystem if the server-spec contains a '/' */
201                 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
202                         addargs(&args, "-s");
203
204                 addargs(&args, "%s", host);
205                 addargs(&args, "%s", (sftp_server != NULL ? 
206                     sftp_server : "sftp"));
207                 args.list[0] = ssh_program;
208
209                 fprintf(stderr, "Connecting to %s...\n", host);
210                 connect_to_server(ssh_program, args.list, &in, &out, 
211                     &sshpid);
212         } else {
213                 args.list = NULL;
214                 addargs(&args, "sftp-server");
215
216                 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
217                 connect_to_server(sftp_direct, args.list, &in, &out, 
218                     &sshpid);
219         }
220
221         interactive_loop(in, out, file1, file2);
222
223 #if !defined(USE_PIPES)
224         shutdown(in, SHUT_RDWR);
225         shutdown(out, SHUT_RDWR);
226 #endif
227
228         close(in);
229         close(out);
230         if (infile != stdin)
231                 fclose(infile);
232
233         if (waitpid(sshpid, NULL, 0) == -1)
234                 fatal("Couldn't wait for ssh process: %s", strerror(errno));
235
236         exit(0);
237 }
This page took 0.08258 seconds and 5 git commands to generate.