]> andersk Git - openssh.git/blob - sftp.c
- djm@cvs.openbsd.org 2002/02/05 00:00:46
[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.24 2002/02/05 00:00:46 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 size_t copy_buffer_len = 32768;
50
51 static void
52 connect_to_server(char *path, char **args, int *in, int *out, pid_t *sshpid)
53 {
54         int c_in, c_out;
55 #ifdef USE_PIPES
56         int pin[2], pout[2];
57         if ((pipe(pin) == -1) || (pipe(pout) == -1))
58                 fatal("pipe: %s", strerror(errno));
59         *in = pin[0];
60         *out = pout[1];
61         c_in = pout[0];
62         c_out = pin[1];
63 #else /* USE_PIPES */
64         int inout[2];
65         if (socketpair(AF_UNIX, SOCK_STREAM, 0, inout) == -1)
66                 fatal("socketpair: %s", strerror(errno));
67         *in = *out = inout[0];
68         c_in = c_out = inout[1];
69 #endif /* USE_PIPES */
70
71         if ((*sshpid = fork()) == -1)
72                 fatal("fork: %s", strerror(errno));
73         else if (*sshpid == 0) {
74                 if ((dup2(c_in, STDIN_FILENO) == -1) ||
75                     (dup2(c_out, STDOUT_FILENO) == -1)) {
76                         fprintf(stderr, "dup2: %s\n", strerror(errno));
77                         exit(1);
78                 }
79                 close(*in);
80                 close(*out);
81                 close(c_in);
82                 close(c_out);
83                 execv(path, args);
84                 fprintf(stderr, "exec: %s: %s\n", path, strerror(errno));
85                 exit(1);
86         }
87
88         close(c_in);
89         close(c_out);
90 }
91
92 static void
93 usage(void)
94 {
95         fprintf(stderr,
96             "usage: sftp [-1Cv] [-b batchfile] [-F config] [-o option] [-s subsystem|path]\n"
97             "            [-P direct server path] [-S program] \n"
98             "            [-B buffer_size] [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         char *ssh_program = _PATH_SSH_PROGRAM, *sftp_direct = NULL;
111         LogLevel ll = SYSLOG_LEVEL_INFO;
112         arglist args;
113         extern int optind;
114         extern char *optarg;
115
116         __progname = get_progname(argv[0]);
117         args.list = NULL;
118         addargs(&args, "ssh");          /* overwritten with ssh_program */
119         addargs(&args, "-oFallBackToRsh no");
120         addargs(&args, "-oForwardX11 no");
121         addargs(&args, "-oForwardAgent no");
122         addargs(&args, "-oClearAllForwardings yes");
123         ll = SYSLOG_LEVEL_INFO;
124         infile = stdin;         /* Read from STDIN unless changed by -b */
125
126         while ((ch = getopt(argc, argv, "1hvCo:s:S:b:B:F:P:")) != -1) {
127                 switch (ch) {
128                 case 'C':
129                         addargs(&args, "-C");
130                         break;
131                 case 'v':
132                         if (debug_level < 3) {
133                                 addargs(&args, "-v");
134                                 ll = SYSLOG_LEVEL_DEBUG1 + debug_level;
135                         }
136                         debug_level++;
137                         break;
138                 case 'F':
139                 case 'o':
140                         addargs(&args, "-%c%s", ch, optarg);
141                         break;
142                 case '1':
143                         sshver = 1;
144                         if (sftp_server == NULL)
145                                 sftp_server = _PATH_SFTP_SERVER;
146                         break;
147                 case 's':
148                         sftp_server = optarg;
149                         break;
150                 case 'S':
151                         ssh_program = optarg;
152                         break;
153                 case 'b':
154                         if (infile == stdin) {
155                                 infile = fopen(optarg, "r");
156                                 if (infile == NULL)
157                                         fatal("%s (%s).", strerror(errno), optarg);
158                         } else
159                                 fatal("Filename already specified.");
160                         break;
161                 case 'P':
162                         sftp_direct = optarg;
163                         break;
164                 case 'B':
165                         copy_buffer_len = strtol(optarg, &cp, 10);
166                         if (copy_buffer_len == 0 || *cp != '\0')
167                                 fatal("Invalid buffer size \"%s\"", optarg);
168                         break;
169                 case 'h':
170                 default:
171                         usage();
172                 }
173         }
174
175         if (sftp_direct == NULL) {
176                 if (optind == argc || argc > (optind + 2))
177                         usage();
178
179                 userhost = xstrdup(argv[optind]);
180                 file2 = argv[optind+1];
181
182                 if ((cp = colon(userhost)) != NULL) {
183                         *cp++ = '\0';
184                         file1 = cp;
185                 }
186
187                 if ((host = strchr(userhost, '@')) == NULL)
188                         host = userhost;
189                 else {
190                         *host++ = '\0';
191                         if (!userhost[0]) {
192                                 fprintf(stderr, "Missing username\n");
193                                 usage();
194                         }
195                         addargs(&args, "-l%s",userhost);
196                 }
197
198                 host = cleanhostname(host);
199                 if (!*host) {
200                         fprintf(stderr, "Missing hostname\n");
201                         usage();
202                 }
203
204                 log_init(argv[0], ll, SYSLOG_FACILITY_USER, 1);
205                 addargs(&args, "-oProtocol %d", sshver);
206
207                 /* no subsystem if the server-spec contains a '/' */
208                 if (sftp_server == NULL || strchr(sftp_server, '/') == NULL)
209                         addargs(&args, "-s");
210
211                 addargs(&args, "%s", host);
212                 addargs(&args, "%s", (sftp_server != NULL ? 
213                     sftp_server : "sftp"));
214                 args.list[0] = ssh_program;
215
216                 fprintf(stderr, "Connecting to %s...\n", host);
217                 connect_to_server(ssh_program, args.list, &in, &out, 
218                     &sshpid);
219         } else {
220                 args.list = NULL;
221                 addargs(&args, "sftp-server");
222
223                 fprintf(stderr, "Attaching to %s...\n", sftp_direct);
224                 connect_to_server(sftp_direct, args.list, &in, &out, 
225                     &sshpid);
226         }
227
228         interactive_loop(in, out, file1, file2);
229
230 #if !defined(USE_PIPES)
231         shutdown(in, SHUT_RDWR);
232         shutdown(out, SHUT_RDWR);
233 #endif
234
235         close(in);
236         close(out);
237         if (infile != stdin)
238                 fclose(infile);
239
240         if (waitpid(sshpid, NULL, 0) == -1)
241                 fatal("Couldn't wait for ssh process: %s", strerror(errno));
242
243         exit(0);
244 }
This page took 0.057231 seconds and 5 git commands to generate.