blob: 9eb54d6f03f74b28d26f5b18a32147a70043dcf8 [file] [log] [blame]
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +00001/* 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>
Eric Andersen04d055f2003-11-03 21:20:18 +000046#include <sys/socket.h>
47#include <arpa/inet.h>
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000048
49#include "busybox.h"
50
51typedef struct ftp_host_info_s {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000052 char *user;
53 char *password;
Eric Andersen04d055f2003-11-03 21:20:18 +000054 struct sockaddr_in *s_in;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000055} ftp_host_info_t;
56
Glenn L McGrath266c1f52003-12-20 03:19:27 +000057static char verbose_flag = 0;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000058static char do_continue = 0;
59
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000060static int ftpcmd(const char *s1, const char *s2, FILE *stream, char *buf)
61{
62 if (verbose_flag) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000063 bb_error_msg("cmd %s%s", s1, s2);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000064 }
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) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000076 bb_perror_msg_and_die("fgets()");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000077 }
78 } while (! isdigit(buf[0]) || buf[3] != ' ');
79
80 return atoi(buf);
81}
82
Eric Andersen04d055f2003-11-03 21:20:18 +000083static int xconnect_ftpdata(ftp_host_info_t *server, const char *buf)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000084{
85 char *buf_ptr;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000086 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
Eric Andersen04d055f2003-11-03 21:20:18 +000096 server->s_in->sin_port=htons(port_num);
97 return(xconnect(server->s_in));
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000098}
99
100static FILE *ftp_login(ftp_host_info_t *server)
101{
102 FILE *control_stream;
103 char buf[512];
104 int control_fd;
105
106 /* Connect to the command socket */
Eric Andersen04d055f2003-11-03 21:20:18 +0000107 control_fd = xconnect(server->s_in);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000108 control_stream = fdopen(control_fd, "r+");
109 if (control_stream == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000110 bb_perror_msg_and_die("Couldnt open control stream");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000111 }
112
113 if (ftpcmd(NULL, NULL, control_stream, buf) != 220) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000114 bb_error_msg_and_die("%s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000115 }
116
117 /* Login to the server */
118 switch (ftpcmd("USER ", server->user, control_stream, buf)) {
119 case 230:
120 break;
121 case 331:
122 if (ftpcmd("PASS ", server->password, control_stream, buf) != 230) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000123 bb_error_msg_and_die("PASS error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000124 }
125 break;
126 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000127 bb_error_msg_and_die("USER error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000128 }
129
130 ftpcmd("TYPE I", NULL, control_stream, buf);
131
132 return(control_stream);
133}
134
135#ifdef CONFIG_FTPGET
Eric Andersen04d055f2003-11-03 21:20:18 +0000136static int ftp_recieve(ftp_host_info_t *server, FILE *control_stream,
137 const char *local_path, char *server_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000138{
139 char *filename;
140 char *local_file;
141 char buf[512];
142 off_t filesize = 0;
143 int fd_data;
144 int fd_local;
145 off_t beg_range = 0;
146
Manuel Novoa III cad53642003-03-19 09:13:01 +0000147 filename = bb_get_last_path_component(server_path);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000148 local_file = concat_path_file(local_path, filename);
149
150 /* Connect to the data socket */
151 if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000152 bb_error_msg_and_die("PASV error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000153 }
Eric Andersen04d055f2003-11-03 21:20:18 +0000154 fd_data = xconnect_ftpdata(server, buf);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000155
156 if (ftpcmd("SIZE ", server_path, control_stream, buf) == 213) {
157 filesize = atol(buf + 4);
158 }
159
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000160 if (do_continue) {
161 struct stat sbuf;
Glenn L McGrath1643f412002-12-18 02:47:40 +0000162 if (lstat(local_file, &sbuf) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000163 bb_perror_msg_and_die("fstat()");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000164 }
165 if (sbuf.st_size > 0) {
166 beg_range = sbuf.st_size;
167 } else {
168 do_continue = 0;
169 }
170 }
171
172 if (do_continue) {
Eric Andersen2a41ec62003-06-20 09:22:12 +0000173 sprintf(buf, "REST %ld", (long)beg_range);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000174 if (ftpcmd(buf, NULL, control_stream, buf) != 350) {
175 do_continue = 0;
176 } else {
177 filesize -= beg_range;
178 }
179 }
180
181 if (ftpcmd("RETR ", server_path, control_stream, buf) > 150) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000182 bb_error_msg_and_die("RETR error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000183 }
184
Glenn L McGrath1643f412002-12-18 02:47:40 +0000185 /* only make a local file if we know that one exists on the remote server */
186 if (do_continue) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000187 fd_local = bb_xopen(local_file, O_APPEND | O_WRONLY);
Glenn L McGrath1643f412002-12-18 02:47:40 +0000188 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000189 fd_local = bb_xopen(local_file, O_CREAT | O_TRUNC | O_WRONLY);
Glenn L McGrath1643f412002-12-18 02:47:40 +0000190 }
191
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000192 /* Copy the file */
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000193 if (bb_copyfd_size(fd_data, fd_local, filesize) == -1) {
Glenn L McGrath25fe94f2002-12-13 08:20:44 +0000194 exit(EXIT_FAILURE);
195 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000196
197 /* close it all down */
198 close(fd_data);
199 if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000200 bb_error_msg_and_die("ftp error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000201 }
202 ftpcmd("QUIT", NULL, control_stream, buf);
203
204 return(EXIT_SUCCESS);
205}
206#endif
207
208#ifdef CONFIG_FTPPUT
Eric Andersen04d055f2003-11-03 21:20:18 +0000209static int ftp_send(ftp_host_info_t *server, FILE *control_stream,
210 const char *server_path, char *local_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000211{
212 struct stat sbuf;
213 char buf[512];
214 int fd_data;
215 int fd_local;
216 int response;
217
218 /* Connect to the data socket */
219 if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000220 bb_error_msg_and_die("PASV error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000221 }
Eric Andersen04d055f2003-11-03 21:20:18 +0000222 fd_data = xconnect_ftpdata(server, buf);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000223
224 if (ftpcmd("CWD ", server_path, control_stream, buf) != 250) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000225 bb_error_msg_and_die("CWD error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000226 }
227
228 /* get the local file */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000229 fd_local = bb_xopen(local_path, O_RDONLY);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000230 fstat(fd_local, &sbuf);
231
Eric Andersen2a41ec62003-06-20 09:22:12 +0000232 sprintf(buf, "ALLO %lu", (unsigned long)sbuf.st_size);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000233 response = ftpcmd(buf, NULL, control_stream, buf);
234 switch (response) {
235 case 200:
236 case 202:
237 break;
238 default:
239 close(fd_local);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000240 bb_error_msg_and_die("ALLO error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000241 break;
242 }
243
244 response = ftpcmd("STOR ", local_path, control_stream, buf);
245 switch (response) {
246 case 125:
247 case 150:
248 break;
249 default:
250 close(fd_local);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000251 bb_error_msg_and_die("STOR error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000252 }
253
254 /* transfer the file */
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000255 if (bb_copyfd_eof(fd_local, fd_data) == -1) {
Glenn L McGrath25fe94f2002-12-13 08:20:44 +0000256 exit(EXIT_FAILURE);
257 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000258
259 /* close it all down */
260 close(fd_data);
261 if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000262 bb_error_msg_and_die("error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000263 }
264 ftpcmd("QUIT", NULL, control_stream, buf);
265
266 return(EXIT_SUCCESS);
267}
268#endif
269
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000270#define FTPGETPUT_OPT_CONTINUE 1
271#define FTPGETPUT_OPT_VERBOSE 2
272#define FTPGETPUT_OPT_USER 4
273#define FTPGETPUT_OPT_PASSWORD 8
274#define FTPGETPUT_OPT_PORT 16
275
276static const struct option ftpgetput_long_options[] = {
277 {"continue", 1, NULL, 'c'},
278 {"verbose", 0, NULL, 'v'},
279 {"username", 1, NULL, 'u'},
280 {"password", 1, NULL, 'p'},
281 {"port", 1, NULL, 'P'},
282 {0, 0, 0, 0}
283};
284
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000285int ftpgetput_main(int argc, char **argv)
286{
287 /* content-length of the file */
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000288 unsigned long opt;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000289 char *port = "ftp";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000290
291 /* socket to ftp server */
292 FILE *control_stream;
Eric Andersen04d055f2003-11-03 21:20:18 +0000293 struct sockaddr_in s_in;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000294
295 /* continue a prev transfer (-c) */
296 ftp_host_info_t *server;
297
Eric Andersen04d055f2003-11-03 21:20:18 +0000298 int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000299
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000300 /* Check to see if the command is ftpget or ftput */
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000301#ifdef CONFIG_FTPPUT
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000302# ifdef CONFIG_FTPGET
Manuel Novoa III cad53642003-03-19 09:13:01 +0000303 if (bb_applet_name[3] == 'p') {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000304 ftp_action = ftp_send;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000305 }
306# else
307 ftp_action = ftp_send;
308# endif
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000309#endif
310#ifdef CONFIG_FTPGET
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000311# ifdef CONFIG_FTPPUT
Manuel Novoa III cad53642003-03-19 09:13:01 +0000312 if (bb_applet_name[3] == 'g') {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000313 ftp_action = ftp_recieve;
314 }
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000315# else
316 ftp_action = ftp_recieve;
317# endif
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000318#endif
319
320 /* Set default values */
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000321 server = xmalloc(sizeof(ftp_host_info_t));
322 server->user = "anonymous";
323 server->password = "busybox@";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000324 verbose_flag = 0;
325
326 /*
327 * Decipher the command line
328 */
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000329 bb_applet_long_options = ftpgetput_long_options;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000330 opt = bb_getopt_ulflags(argc, argv, "cvu:p:P:", &server->user, &server->password, &port);
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000331 if (opt & FTPGETPUT_OPT_CONTINUE) {
332 do_continue = 1;
333 }
334 if (opt & FTPGETPUT_OPT_VERBOSE) {
335 verbose_flag = 1;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000336 }
337
338 /*
339 * Process the non-option command line arguments
340 */
341 if (argc - optind != 3) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000342 bb_show_usage();
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000343 }
344
Eric Andersen04d055f2003-11-03 21:20:18 +0000345 /* We want to do exactly _one_ DNS lookup, since some
346 * sites (i.e. ftp.us.debian.org) use round-robin DNS
347 * and we want to connect to only one IP... */
348 server->s_in = &s_in;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000349 bb_lookup_host(&s_in, argv[optind]);
350 s_in.sin_port = bb_lookup_port(port, 21);
Eric Andersen04d055f2003-11-03 21:20:18 +0000351 if (verbose_flag) {
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000352 printf("Connecting to %s[%s]:%d\n",
353 argv[optind], inet_ntoa(s_in.sin_addr), ntohs(s_in.sin_port));
Eric Andersen04d055f2003-11-03 21:20:18 +0000354 }
355
356 /* Connect/Setup/Configure the FTP session */
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000357 control_stream = ftp_login(server);
358
Eric Andersen04d055f2003-11-03 21:20:18 +0000359 return(ftp_action(server, control_stream, argv[optind + 1], argv[optind + 2]));
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000360}
361
362/*
363Local Variables:
364c-file-style: "linux"
365c-basic-offset: 4
366tab-width: 4
367End:
368*/