814253b5395f45e83d4bdfb312e4363ea22538dc
[oweals/busybox.git] / networking / ftpgetput.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * ftpget
4  *
5  * Mini implementation of FTP to retrieve a remote file.
6  *
7  * Copyright (C) 2002 Jeff Angielski, The PTR Group <jeff@theptrgroup.com>
8  * Copyright (C) 2002 Glenn McGrath <bug1@optushome.com.au>
9  *
10  * Based on wget.c by Chip Rosenthal Covad Communications
11  * <chip@laserlink.net>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21  * General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26  *
27  */
28
29 #include <sys/types.h>
30 #include <sys/ioctl.h>
31 #include <sys/time.h>
32 #include <sys/stat.h>
33
34 #include <ctype.h>
35 #include <errno.h>
36 #include <fcntl.h>
37 #include <getopt.h>
38 #include <stdio.h>
39 #include <stdlib.h>
40 #include <signal.h>
41 #include <string.h>
42 #include <unistd.h>
43
44 #include <netinet/in.h>
45 #include <netdb.h>
46 #include <sys/socket.h>
47 #include <arpa/inet.h>
48
49 #include "busybox.h"
50
51 typedef struct ftp_host_info_s {
52         char *user;
53         char *password;
54         struct sockaddr_in *s_in;
55 } ftp_host_info_t;
56
57 static char verbose_flag = 0;
58 static char do_continue = 0;
59
60 static int ftpcmd(const char *s1, const char *s2, FILE *stream, char *buf)
61 {
62         if (verbose_flag) {
63                 bb_error_msg("cmd %s%s", s1, s2);
64         }
65
66         if (s1) {
67                 if (s2) {
68                         fprintf(stream, "%s%s\n", s1, s2);
69                 } else {
70                         fprintf(stream, "%s\n", s1);
71                 }
72         }
73
74         do {
75                 if (fgets(buf, 510, stream) == NULL) {
76                         bb_perror_msg_and_die("fgets()");
77                 }
78         } while (! isdigit(buf[0]) || buf[3] != ' ');
79
80         return atoi(buf);
81 }
82
83 static int xconnect_ftpdata(ftp_host_info_t *server, const char *buf)
84 {
85         char *buf_ptr;
86         unsigned short port_num;
87
88         buf_ptr = strrchr(buf, ',');
89         *buf_ptr = '\0';
90         port_num = atoi(buf_ptr + 1);
91
92         buf_ptr = strrchr(buf, ',');
93         *buf_ptr = '\0';
94         port_num += atoi(buf_ptr + 1) * 256;
95
96         server->s_in->sin_port=htons(port_num);
97         return(xconnect(server->s_in));
98 }
99
100 static FILE *ftp_login(ftp_host_info_t *server)
101 {
102         FILE *control_stream;
103         char buf[512];
104
105         /* Connect to the command socket */
106         control_stream = fdopen(xconnect(server->s_in), "r+");
107         if (control_stream == NULL) {
108                 bb_perror_msg_and_die("Couldnt open control stream");
109         }
110
111         if (ftpcmd(NULL, NULL, control_stream, buf) != 220) {
112                 bb_error_msg_and_die("%s", buf + 4);
113         }
114
115         /*  Login to the server */
116         switch (ftpcmd("USER ", server->user, control_stream, buf)) {
117         case 230:
118                 break;
119         case 331:
120                 if (ftpcmd("PASS ", server->password, control_stream, buf) != 230) {
121                         bb_error_msg_and_die("PASS error: %s", buf + 4);
122                 }
123                 break;
124         default:
125                 bb_error_msg_and_die("USER error: %s", buf + 4);
126         }
127
128         ftpcmd("TYPE I", NULL, control_stream, buf);
129
130         return(control_stream);
131 }
132
133 #ifdef CONFIG_FTPGET
134 static int ftp_recieve(ftp_host_info_t *server, FILE *control_stream,
135                 const char *local_path, char *server_path)
136 {
137         char buf[512];
138         off_t filesize = 0;
139         int fd_data;
140         int fd_local = -1;
141         off_t beg_range = 0;
142
143         /* Connect to the data socket */
144         if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
145                 bb_error_msg_and_die("PASV error: %s", buf + 4);
146         }
147         fd_data = xconnect_ftpdata(server, buf);
148
149         if (ftpcmd("SIZE ", server_path, control_stream, buf) == 213) {
150                 unsigned long value=filesize;
151                 if (safe_strtoul(buf + 4, &filesize))
152                         bb_error_msg_and_die("SIZE error: %s", buf + 4);
153                 filesize = value;
154         }
155
156         if ((local_path[0] == '-') && (local_path[1] == '\0')) {
157                 fd_local = fileno(stdout);
158                 do_continue = 0;
159         }
160
161         if (do_continue) {
162                 struct stat sbuf;
163                 if (lstat(local_path, &sbuf) < 0) {
164                         bb_perror_msg_and_die("fstat()");
165                 }
166                 if (sbuf.st_size > 0) {
167                         beg_range = sbuf.st_size;
168                 } else {
169                         do_continue = 0;
170                 }
171         }
172
173         if (do_continue) {
174                 sprintf(buf, "REST %ld", (long)beg_range);
175                 if (ftpcmd(buf, NULL, control_stream, buf) != 350) {
176                         do_continue = 0;
177                 } else {
178                         filesize -= beg_range;
179                 }
180         }
181
182         if (ftpcmd("RETR ", server_path, control_stream, buf) > 150) {
183                 bb_error_msg_and_die("RETR error: %s", buf + 4);
184         }
185
186         /* only make a local file if we know that one exists on the remote server */
187         if (fd_local == -1) {
188                 if (do_continue) {
189                         fd_local = bb_xopen(local_path, O_APPEND | O_WRONLY);
190                 } else {
191                         fd_local = bb_xopen(local_path, O_CREAT | O_TRUNC | O_WRONLY);
192                 }
193         }
194
195         /* Copy the file */
196         if (bb_copyfd_size(fd_data, fd_local, filesize) == -1) {
197                 exit(EXIT_FAILURE);
198         }
199
200         /* close it all down */
201         close(fd_data);
202         if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
203                 bb_error_msg_and_die("ftp error: %s", buf + 4);
204         }
205         ftpcmd("QUIT", NULL, control_stream, buf);
206
207         return(EXIT_SUCCESS);
208 }
209 #endif
210
211 #ifdef CONFIG_FTPPUT
212 static int ftp_send(ftp_host_info_t *server, FILE *control_stream,
213                 const char *server_path, char *local_path)
214 {
215         struct stat sbuf;
216         char buf[512];
217         int fd_data;
218         int fd_local;
219         int response;
220
221         /*  Connect to the data socket */
222         if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
223                 bb_error_msg_and_die("PASV error: %s", buf + 4);
224         }
225         fd_data = xconnect_ftpdata(server, buf);
226
227         if (ftpcmd("CWD ", server_path, control_stream, buf) != 250) {
228                 bb_error_msg_and_die("CWD error: %s", buf + 4);
229         }
230
231         /* get the local file */
232         if ((local_path[0] == '-') && (local_path[1] == '\0')) {
233                 fd_local = fileno(stdin);
234         } else {
235                 fd_local = bb_xopen(local_path, O_RDONLY);
236                 fstat(fd_local, &sbuf);
237
238                 sprintf(buf, "ALLO %lu", (unsigned long)sbuf.st_size);
239                 response = ftpcmd(buf, NULL, control_stream, buf);
240                 switch (response) {
241                 case 200:
242                 case 202:
243                         break;
244                 default:
245                         close(fd_local);
246                         bb_error_msg_and_die("ALLO error: %s", buf + 4);
247                         break;
248                 }
249         }
250         response = ftpcmd("STOR ", local_path, control_stream, buf);
251         switch (response) {
252         case 125:
253         case 150:
254                 break;
255         default:
256                 close(fd_local);
257                 bb_error_msg_and_die("STOR error: %s", buf + 4);
258         }
259
260         /* transfer the file  */
261         if (bb_copyfd_eof(fd_local, fd_data) == -1) {
262                 exit(EXIT_FAILURE);
263         }
264
265         /* close it all down */
266         close(fd_data);
267         if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
268                 bb_error_msg_and_die("error: %s", buf + 4);
269         }
270         ftpcmd("QUIT", NULL, control_stream, buf);
271
272         return(EXIT_SUCCESS);
273 }
274 #endif
275
276 #define FTPGETPUT_OPT_CONTINUE  1
277 #define FTPGETPUT_OPT_VERBOSE   2
278 #define FTPGETPUT_OPT_USER      4
279 #define FTPGETPUT_OPT_PASSWORD  8
280 #define FTPGETPUT_OPT_PORT      16
281
282 static const struct option ftpgetput_long_options[] = {
283         {"continue", 1, NULL, 'c'},
284         {"verbose", 0, NULL, 'v'},
285         {"username", 1, NULL, 'u'},
286         {"password", 1, NULL, 'p'},
287         {"port", 1, NULL, 'P'},
288         {0, 0, 0, 0}
289 };
290
291 int ftpgetput_main(int argc, char **argv)
292 {
293         /* content-length of the file */
294         unsigned long opt;
295         char *port = "ftp";
296
297         /* socket to ftp server */
298         FILE *control_stream;
299         struct sockaddr_in s_in;
300
301         /* continue a prev transfer (-c) */
302         ftp_host_info_t *server;
303
304         int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL;
305
306         /* Check to see if the command is ftpget or ftput */
307 #ifdef CONFIG_FTPPUT
308 # ifdef CONFIG_FTPGET
309         if (bb_applet_name[3] == 'p') {
310                 ftp_action = ftp_send;
311         }
312 # else
313         ftp_action = ftp_send;
314 # endif
315 #endif
316 #ifdef CONFIG_FTPGET
317 # ifdef CONFIG_FTPPUT
318         if (bb_applet_name[3] == 'g') {
319                 ftp_action = ftp_recieve;
320         }
321 # else
322         ftp_action = ftp_recieve;
323 # endif
324 #endif
325
326         /* Set default values */
327         server = xmalloc(sizeof(ftp_host_info_t));
328         server->user = "anonymous";
329         server->password = "busybox@";
330         verbose_flag = 0;
331
332         /*
333          * Decipher the command line
334          */
335         bb_applet_long_options = ftpgetput_long_options;
336         opt = bb_getopt_ulflags(argc, argv, "cvu:p:P:", &server->user, &server->password, &port);
337
338         /* Process the non-option command line arguments */
339         if (argc - optind != 3) {
340                 bb_show_usage();
341         }
342
343         if (opt & FTPGETPUT_OPT_CONTINUE) {
344                 do_continue = 1;
345         }
346         if (opt & FTPGETPUT_OPT_VERBOSE) {
347                 verbose_flag = 1;
348         }
349
350         /* We want to do exactly _one_ DNS lookup, since some
351          * sites (i.e. ftp.us.debian.org) use round-robin DNS
352          * and we want to connect to only one IP... */
353         server->s_in = &s_in;
354         bb_lookup_host(&s_in, argv[optind]);
355         s_in.sin_port = bb_lookup_port(port, "tcp", 21);
356         if (verbose_flag) {
357                 printf("Connecting to %s[%s]:%d\n",
358                                 argv[optind], inet_ntoa(s_in.sin_addr), ntohs(s_in.sin_port));
359         }
360
361         /*  Connect/Setup/Configure the FTP session */
362         control_stream = ftp_login(server);
363
364         return(ftp_action(server, control_stream, argv[optind + 1], argv[optind + 2]));
365 }
366
367 /*
368 Local Variables:
369 c-file-style: "linux"
370 c-basic-offset: 4
371 tab-width: 4
372 End:
373 */