blob: 25b7f142754197ca371184a46b7adcdc929e2e96 [file] [log] [blame]
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003 * ftpget
4 *
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +00005 * Mini implementation of FTP to retrieve a remote file.
6 *
7 * Copyright (C) 2002 Jeff Angielski, The PTR Group <jeff@theptrgroup.com>
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00008 * Copyright (C) 2002 Glenn McGrath <bug1@iinet.net.au>
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +00009 *
10 * Based on wget.c by Chip Rosenthal Covad Communications
11 * <chip@laserlink.net>
12 *
Rob Landley6f037222005-11-08 00:52:31 +000013 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000014 */
15
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000016#include "busybox.h"
Rob Landleyd921b2e2006-08-03 15:41:12 +000017#include <getopt.h>
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000018
19typedef struct ftp_host_info_s {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000020 char *user;
21 char *password;
Eric Andersen04d055f2003-11-03 21:20:18 +000022 struct sockaddr_in *s_in;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000023} ftp_host_info_t;
24
Glenn L McGrath266c1f52003-12-20 03:19:27 +000025static char verbose_flag = 0;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000026static char do_continue = 0;
27
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000028static int ftpcmd(const char *s1, const char *s2, FILE *stream, char *buf)
29{
30 if (verbose_flag) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000031 bb_error_msg("cmd %s%s", s1, s2);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000032 }
33
34 if (s1) {
35 if (s2) {
Paul Fox146e83a2005-07-19 21:26:57 +000036 fprintf(stream, "%s%s\r\n", s1, s2);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000037 } else {
Paul Fox146e83a2005-07-19 21:26:57 +000038 fprintf(stream, "%s\r\n", s1);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000039 }
40 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000041 do {
Glenn L McGrath5ec58282004-05-04 10:43:34 +000042 char *buf_ptr;
43
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000044 if (fgets(buf, 510, stream) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000045 bb_perror_msg_and_die("fgets()");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000046 }
Glenn L McGrath5ec58282004-05-04 10:43:34 +000047 buf_ptr = strstr(buf, "\r\n");
48 if (buf_ptr) {
49 *buf_ptr = '\0';
50 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000051 } while (! isdigit(buf[0]) || buf[3] != ' ');
52
53 return atoi(buf);
54}
55
Eric Andersen04d055f2003-11-03 21:20:18 +000056static int xconnect_ftpdata(ftp_host_info_t *server, const char *buf)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000057{
58 char *buf_ptr;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000059 unsigned short port_num;
60
61 buf_ptr = strrchr(buf, ',');
62 *buf_ptr = '\0';
63 port_num = atoi(buf_ptr + 1);
64
65 buf_ptr = strrchr(buf, ',');
66 *buf_ptr = '\0';
67 port_num += atoi(buf_ptr + 1) * 256;
68
Eric Andersen04d055f2003-11-03 21:20:18 +000069 server->s_in->sin_port=htons(port_num);
70 return(xconnect(server->s_in));
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000071}
72
73static FILE *ftp_login(ftp_host_info_t *server)
74{
75 FILE *control_stream;
76 char buf[512];
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000077
78 /* Connect to the command socket */
Glenn L McGrath236e93d2003-12-20 05:43:34 +000079 control_stream = fdopen(xconnect(server->s_in), "r+");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000080 if (control_stream == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000081 bb_perror_msg_and_die("Couldnt open control stream");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000082 }
83
84 if (ftpcmd(NULL, NULL, control_stream, buf) != 220) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000085 bb_error_msg_and_die("%s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000086 }
87
88 /* Login to the server */
89 switch (ftpcmd("USER ", server->user, control_stream, buf)) {
90 case 230:
91 break;
92 case 331:
93 if (ftpcmd("PASS ", server->password, control_stream, buf) != 230) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000094 bb_error_msg_and_die("PASS error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000095 }
96 break;
97 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +000098 bb_error_msg_and_die("USER error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000099 }
100
101 ftpcmd("TYPE I", NULL, control_stream, buf);
102
103 return(control_stream);
104}
105
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000106#if !ENABLE_FTPGET
107#define ftp_receive 0
108#else
Bernhard Reutner-Fischere0387a62006-06-07 13:31:59 +0000109static int ftp_receive(ftp_host_info_t *server, FILE *control_stream,
Eric Andersen04d055f2003-11-03 21:20:18 +0000110 const char *local_path, char *server_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000111{
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000112 char buf[512];
113 off_t filesize = 0;
114 int fd_data;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000115 int fd_local = -1;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000116 off_t beg_range = 0;
117
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000118 /* Connect to the data socket */
119 if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000120 bb_error_msg_and_die("PASV error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000121 }
Eric Andersen04d055f2003-11-03 21:20:18 +0000122 fd_data = xconnect_ftpdata(server, buf);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000123
124 if (ftpcmd("SIZE ", server_path, control_stream, buf) == 213) {
Eric Andersen24794452004-03-06 22:11:45 +0000125 unsigned long value=filesize;
Eric Andersenca65ca72004-03-15 08:46:37 +0000126 if (safe_strtoul(buf + 4, &value))
Eric Andersen24794452004-03-06 22:11:45 +0000127 bb_error_msg_and_die("SIZE error: %s", buf + 4);
128 filesize = value;
Rob Landleybc059bc2006-01-10 06:36:00 +0000129 } else {
130 filesize = -1;
131 do_continue = 0;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000132 }
133
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000134 if ((local_path[0] == '-') && (local_path[1] == '\0')) {
Eric Andersen70060d22004-03-27 10:02:48 +0000135 fd_local = STDOUT_FILENO;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000136 do_continue = 0;
137 }
138
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000139 if (do_continue) {
140 struct stat sbuf;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000141 if (lstat(local_path, &sbuf) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000142 bb_perror_msg_and_die("fstat()");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000143 }
144 if (sbuf.st_size > 0) {
145 beg_range = sbuf.st_size;
146 } else {
147 do_continue = 0;
148 }
149 }
150
151 if (do_continue) {
Eric Andersen2a41ec62003-06-20 09:22:12 +0000152 sprintf(buf, "REST %ld", (long)beg_range);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000153 if (ftpcmd(buf, NULL, control_stream, buf) != 350) {
154 do_continue = 0;
155 } else {
156 filesize -= beg_range;
157 }
158 }
159
160 if (ftpcmd("RETR ", server_path, control_stream, buf) > 150) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000161 bb_error_msg_and_die("RETR error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000162 }
163
Glenn L McGrath1643f412002-12-18 02:47:40 +0000164 /* only make a local file if we know that one exists on the remote server */
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000165 if (fd_local == -1) {
166 if (do_continue) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000167 fd_local = xopen(local_path, O_APPEND | O_WRONLY);
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000168 } else {
Rob Landley74bb70c2006-08-04 20:19:01 +0000169 fd_local = xopen3(local_path, O_CREAT | O_TRUNC | O_WRONLY, 0777);
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000170 }
Glenn L McGrath1643f412002-12-18 02:47:40 +0000171 }
172
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000173 /* Copy the file */
Rob Landleybc059bc2006-01-10 06:36:00 +0000174 if (filesize != -1) {
175 if (-1 == bb_copyfd_size(fd_data, fd_local, filesize))
176 exit(EXIT_FAILURE);
177 } else {
178 if (-1 == bb_copyfd_eof(fd_data, fd_local))
179 exit(EXIT_FAILURE);
Glenn L McGrath25fe94f2002-12-13 08:20:44 +0000180 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000181
182 /* close it all down */
183 close(fd_data);
184 if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000185 bb_error_msg_and_die("ftp error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000186 }
187 ftpcmd("QUIT", NULL, control_stream, buf);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000188
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000189 return(EXIT_SUCCESS);
190}
191#endif
192
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000193#if !ENABLE_FTPPUT
194#define ftp_send 0
195#else
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000196static int ftp_send(ftp_host_info_t *server, FILE *control_stream,
Eric Andersen04d055f2003-11-03 21:20:18 +0000197 const char *server_path, char *local_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000198{
199 struct stat sbuf;
200 char buf[512];
201 int fd_data;
202 int fd_local;
203 int response;
204
205 /* Connect to the data socket */
206 if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000207 bb_error_msg_and_die("PASV error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000208 }
Eric Andersen04d055f2003-11-03 21:20:18 +0000209 fd_data = xconnect_ftpdata(server, buf);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000210
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000211 /* get the local file */
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000212 if ((local_path[0] == '-') && (local_path[1] == '\0')) {
Eric Andersen70060d22004-03-27 10:02:48 +0000213 fd_local = STDIN_FILENO;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000214 } else {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000215 fd_local = xopen(local_path, O_RDONLY);
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000216 fstat(fd_local, &sbuf);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000217
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000218 sprintf(buf, "ALLO %lu", (unsigned long)sbuf.st_size);
219 response = ftpcmd(buf, NULL, control_stream, buf);
220 switch (response) {
221 case 200:
222 case 202:
223 break;
224 default:
225 close(fd_local);
226 bb_error_msg_and_die("ALLO error: %s", buf + 4);
227 break;
228 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000229 }
Rob Landley6f037222005-11-08 00:52:31 +0000230 response = ftpcmd("STOR ", server_path, control_stream, buf);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000231 switch (response) {
232 case 125:
233 case 150:
234 break;
235 default:
236 close(fd_local);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000237 bb_error_msg_and_die("STOR error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000238 }
239
240 /* transfer the file */
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000241 if (bb_copyfd_eof(fd_local, fd_data) == -1) {
Glenn L McGrath25fe94f2002-12-13 08:20:44 +0000242 exit(EXIT_FAILURE);
243 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000244
245 /* close it all down */
246 close(fd_data);
247 if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000248 bb_error_msg_and_die("error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000249 }
250 ftpcmd("QUIT", NULL, control_stream, buf);
251
252 return(EXIT_SUCCESS);
253}
254#endif
255
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000256#define FTPGETPUT_OPT_CONTINUE 1
257#define FTPGETPUT_OPT_VERBOSE 2
258#define FTPGETPUT_OPT_USER 4
259#define FTPGETPUT_OPT_PASSWORD 8
260#define FTPGETPUT_OPT_PORT 16
261
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000262#if ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000263static const struct option ftpgetput_long_options[] = {
264 {"continue", 1, NULL, 'c'},
265 {"verbose", 0, NULL, 'v'},
266 {"username", 1, NULL, 'u'},
267 {"password", 1, NULL, 'p'},
268 {"port", 1, NULL, 'P'},
269 {0, 0, 0, 0}
270};
Rob Landleyff97ee92006-06-02 19:03:01 +0000271#else
272#define ftpgetput_long_options 0
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000273#endif
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000274
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000275int ftpgetput_main(int argc, char **argv)
276{
277 /* content-length of the file */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000278 unsigned opt;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000279 char *port = "ftp";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000280
281 /* socket to ftp server */
282 FILE *control_stream;
Eric Andersen04d055f2003-11-03 21:20:18 +0000283 struct sockaddr_in s_in;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000284
285 /* continue a prev transfer (-c) */
286 ftp_host_info_t *server;
287
Eric Andersen04d055f2003-11-03 21:20:18 +0000288 int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000289
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000290 /* Check to see if the command is ftpget or ftput */
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000291 if (ENABLE_FTPPUT && (!ENABLE_FTPGET || bb_applet_name[3] == 'p')) {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000292 ftp_action = ftp_send;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000293 }
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000294 if (ENABLE_FTPGET && (!ENABLE_FTPPUT || bb_applet_name[3] == 'g')) {
Bernhard Reutner-Fischere0387a62006-06-07 13:31:59 +0000295 ftp_action = ftp_receive;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000296 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000297
298 /* Set default values */
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000299 server = xmalloc(sizeof(ftp_host_info_t));
300 server->user = "anonymous";
301 server->password = "busybox@";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000302 verbose_flag = 0;
303
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000304 /*
305 * Decipher the command line
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000306 */
Rob Landleyff97ee92006-06-02 19:03:01 +0000307 if (ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS)
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000308 applet_long_options = ftpgetput_long_options;
Rob Landleyff97ee92006-06-02 19:03:01 +0000309
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000310 opt = getopt32(argc, argv, "cvu:p:P:", &server->user, &server->password, &port);
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000311
312 /* Process the non-option command line arguments */
313 if (argc - optind != 3) {
314 bb_show_usage();
315 }
316
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000317 if (opt & FTPGETPUT_OPT_CONTINUE) {
318 do_continue = 1;
319 }
320 if (opt & FTPGETPUT_OPT_VERBOSE) {
321 verbose_flag = 1;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000322 }
323
Eric Andersen04d055f2003-11-03 21:20:18 +0000324 /* We want to do exactly _one_ DNS lookup, since some
325 * sites (i.e. ftp.us.debian.org) use round-robin DNS
326 * and we want to connect to only one IP... */
327 server->s_in = &s_in;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000328 bb_lookup_host(&s_in, argv[optind]);
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000329 s_in.sin_port = bb_lookup_port(port, "tcp", 21);
Eric Andersen04d055f2003-11-03 21:20:18 +0000330 if (verbose_flag) {
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000331 printf("Connecting to %s[%s]:%d\n",
332 argv[optind], inet_ntoa(s_in.sin_addr), ntohs(s_in.sin_port));
Eric Andersen04d055f2003-11-03 21:20:18 +0000333 }
334
335 /* Connect/Setup/Configure the FTP session */
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000336 control_stream = ftp_login(server);
337
Eric Andersen04d055f2003-11-03 21:20:18 +0000338 return(ftp_action(server, control_stream, argv[optind + 1], argv[optind + 2]));
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000339}