blob: f6bd82bc85ea68e38742c40e394a977993045efb [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 *
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 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000073 do {
Glenn L McGrath5ec58282004-05-04 10:43:34 +000074 char *buf_ptr;
75
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000076 if (fgets(buf, 510, stream) == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000077 bb_perror_msg_and_die("fgets()");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000078 }
Glenn L McGrath5ec58282004-05-04 10:43:34 +000079 buf_ptr = strstr(buf, "\r\n");
80 if (buf_ptr) {
81 *buf_ptr = '\0';
82 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000083 } while (! isdigit(buf[0]) || buf[3] != ' ');
84
85 return atoi(buf);
86}
87
Eric Andersen04d055f2003-11-03 21:20:18 +000088static int xconnect_ftpdata(ftp_host_info_t *server, const char *buf)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000089{
90 char *buf_ptr;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000091 unsigned short port_num;
92
93 buf_ptr = strrchr(buf, ',');
94 *buf_ptr = '\0';
95 port_num = atoi(buf_ptr + 1);
96
97 buf_ptr = strrchr(buf, ',');
98 *buf_ptr = '\0';
99 port_num += atoi(buf_ptr + 1) * 256;
100
Eric Andersen04d055f2003-11-03 21:20:18 +0000101 server->s_in->sin_port=htons(port_num);
102 return(xconnect(server->s_in));
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000103}
104
105static FILE *ftp_login(ftp_host_info_t *server)
106{
107 FILE *control_stream;
108 char buf[512];
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000109
110 /* Connect to the command socket */
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000111 control_stream = fdopen(xconnect(server->s_in), "r+");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000112 if (control_stream == NULL) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113 bb_perror_msg_and_die("Couldnt open control stream");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000114 }
115
116 if (ftpcmd(NULL, NULL, control_stream, buf) != 220) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000117 bb_error_msg_and_die("%s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000118 }
119
120 /* Login to the server */
121 switch (ftpcmd("USER ", server->user, control_stream, buf)) {
122 case 230:
123 break;
124 case 331:
125 if (ftpcmd("PASS ", server->password, control_stream, buf) != 230) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000126 bb_error_msg_and_die("PASS error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000127 }
128 break;
129 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000130 bb_error_msg_and_die("USER error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000131 }
132
133 ftpcmd("TYPE I", NULL, control_stream, buf);
134
135 return(control_stream);
136}
137
138#ifdef CONFIG_FTPGET
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000139static int ftp_recieve(ftp_host_info_t *server, FILE *control_stream,
Eric Andersen04d055f2003-11-03 21:20:18 +0000140 const char *local_path, char *server_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000141{
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000142 char buf[512];
143 off_t filesize = 0;
144 int fd_data;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000145 int fd_local = -1;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000146 off_t beg_range = 0;
147
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000148 /* Connect to the data socket */
149 if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000150 bb_error_msg_and_die("PASV error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000151 }
Eric Andersen04d055f2003-11-03 21:20:18 +0000152 fd_data = xconnect_ftpdata(server, buf);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000153
154 if (ftpcmd("SIZE ", server_path, control_stream, buf) == 213) {
Eric Andersen24794452004-03-06 22:11:45 +0000155 unsigned long value=filesize;
Eric Andersenca65ca72004-03-15 08:46:37 +0000156 if (safe_strtoul(buf + 4, &value))
Eric Andersen24794452004-03-06 22:11:45 +0000157 bb_error_msg_and_die("SIZE error: %s", buf + 4);
158 filesize = value;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000159 }
160
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000161 if ((local_path[0] == '-') && (local_path[1] == '\0')) {
Eric Andersen70060d22004-03-27 10:02:48 +0000162 fd_local = STDOUT_FILENO;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000163 do_continue = 0;
164 }
165
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000166 if (do_continue) {
167 struct stat sbuf;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000168 if (lstat(local_path, &sbuf) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000169 bb_perror_msg_and_die("fstat()");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000170 }
171 if (sbuf.st_size > 0) {
172 beg_range = sbuf.st_size;
173 } else {
174 do_continue = 0;
175 }
176 }
177
178 if (do_continue) {
Eric Andersen2a41ec62003-06-20 09:22:12 +0000179 sprintf(buf, "REST %ld", (long)beg_range);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000180 if (ftpcmd(buf, NULL, control_stream, buf) != 350) {
181 do_continue = 0;
182 } else {
183 filesize -= beg_range;
184 }
185 }
186
187 if (ftpcmd("RETR ", server_path, control_stream, buf) > 150) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000188 bb_error_msg_and_die("RETR error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000189 }
190
Glenn L McGrath1643f412002-12-18 02:47:40 +0000191 /* only make a local file if we know that one exists on the remote server */
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000192 if (fd_local == -1) {
193 if (do_continue) {
194 fd_local = bb_xopen(local_path, O_APPEND | O_WRONLY);
195 } else {
196 fd_local = bb_xopen(local_path, O_CREAT | O_TRUNC | O_WRONLY);
197 }
Glenn L McGrath1643f412002-12-18 02:47:40 +0000198 }
199
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000200 /* Copy the file */
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000201 if (bb_copyfd_size(fd_data, fd_local, filesize) == -1) {
Glenn L McGrath25fe94f2002-12-13 08:20:44 +0000202 exit(EXIT_FAILURE);
203 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000204
205 /* close it all down */
206 close(fd_data);
207 if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000208 bb_error_msg_and_die("ftp error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000209 }
210 ftpcmd("QUIT", NULL, control_stream, buf);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000211
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000212 return(EXIT_SUCCESS);
213}
214#endif
215
216#ifdef CONFIG_FTPPUT
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000217static int ftp_send(ftp_host_info_t *server, FILE *control_stream,
Eric Andersen04d055f2003-11-03 21:20:18 +0000218 const char *server_path, char *local_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000219{
220 struct stat sbuf;
221 char buf[512];
222 int fd_data;
223 int fd_local;
224 int response;
225
226 /* Connect to the data socket */
227 if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000228 bb_error_msg_and_die("PASV error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000229 }
Eric Andersen04d055f2003-11-03 21:20:18 +0000230 fd_data = xconnect_ftpdata(server, buf);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000231
232 if (ftpcmd("CWD ", server_path, control_stream, buf) != 250) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000233 bb_error_msg_and_die("CWD error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000234 }
235
236 /* get the local file */
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000237 if ((local_path[0] == '-') && (local_path[1] == '\0')) {
Eric Andersen70060d22004-03-27 10:02:48 +0000238 fd_local = STDIN_FILENO;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000239 } else {
240 fd_local = bb_xopen(local_path, O_RDONLY);
241 fstat(fd_local, &sbuf);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000242
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000243 sprintf(buf, "ALLO %lu", (unsigned long)sbuf.st_size);
244 response = ftpcmd(buf, NULL, control_stream, buf);
245 switch (response) {
246 case 200:
247 case 202:
248 break;
249 default:
250 close(fd_local);
251 bb_error_msg_and_die("ALLO error: %s", buf + 4);
252 break;
253 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000254 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000255 response = ftpcmd("STOR ", local_path, control_stream, buf);
256 switch (response) {
257 case 125:
258 case 150:
259 break;
260 default:
261 close(fd_local);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000262 bb_error_msg_and_die("STOR error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000263 }
264
265 /* transfer the file */
Glenn L McGrath7ffe1332003-11-21 22:24:57 +0000266 if (bb_copyfd_eof(fd_local, fd_data) == -1) {
Glenn L McGrath25fe94f2002-12-13 08:20:44 +0000267 exit(EXIT_FAILURE);
268 }
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000269
270 /* close it all down */
271 close(fd_data);
272 if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000273 bb_error_msg_and_die("error: %s", buf + 4);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000274 }
275 ftpcmd("QUIT", NULL, control_stream, buf);
276
277 return(EXIT_SUCCESS);
278}
279#endif
280
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000281#define FTPGETPUT_OPT_CONTINUE 1
282#define FTPGETPUT_OPT_VERBOSE 2
283#define FTPGETPUT_OPT_USER 4
284#define FTPGETPUT_OPT_PASSWORD 8
285#define FTPGETPUT_OPT_PORT 16
286
287static const struct option ftpgetput_long_options[] = {
288 {"continue", 1, NULL, 'c'},
289 {"verbose", 0, NULL, 'v'},
290 {"username", 1, NULL, 'u'},
291 {"password", 1, NULL, 'p'},
292 {"port", 1, NULL, 'P'},
293 {0, 0, 0, 0}
294};
295
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000296int ftpgetput_main(int argc, char **argv)
297{
298 /* content-length of the file */
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000299 unsigned long opt;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000300 char *port = "ftp";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000301
302 /* socket to ftp server */
303 FILE *control_stream;
Eric Andersen04d055f2003-11-03 21:20:18 +0000304 struct sockaddr_in s_in;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000305
306 /* continue a prev transfer (-c) */
307 ftp_host_info_t *server;
308
Eric Andersen04d055f2003-11-03 21:20:18 +0000309 int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000310
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000311 /* Check to see if the command is ftpget or ftput */
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000312#ifdef CONFIG_FTPPUT
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000313# ifdef CONFIG_FTPGET
Manuel Novoa III cad53642003-03-19 09:13:01 +0000314 if (bb_applet_name[3] == 'p') {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000315 ftp_action = ftp_send;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000316 }
317# else
318 ftp_action = ftp_send;
319# endif
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000320#endif
321#ifdef CONFIG_FTPGET
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000322# ifdef CONFIG_FTPPUT
Manuel Novoa III cad53642003-03-19 09:13:01 +0000323 if (bb_applet_name[3] == 'g') {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000324 ftp_action = ftp_recieve;
325 }
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000326# else
327 ftp_action = ftp_recieve;
328# endif
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000329#endif
330
331 /* Set default values */
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000332 server = xmalloc(sizeof(ftp_host_info_t));
333 server->user = "anonymous";
334 server->password = "busybox@";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000335 verbose_flag = 0;
336
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000337 /*
338 * Decipher the command line
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000339 */
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000340 bb_applet_long_options = ftpgetput_long_options;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000341 opt = bb_getopt_ulflags(argc, argv, "cvu:p:P:", &server->user, &server->password, &port);
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000342
343 /* Process the non-option command line arguments */
344 if (argc - optind != 3) {
345 bb_show_usage();
346 }
347
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000348 if (opt & FTPGETPUT_OPT_CONTINUE) {
349 do_continue = 1;
350 }
351 if (opt & FTPGETPUT_OPT_VERBOSE) {
352 verbose_flag = 1;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000353 }
354
Eric Andersen04d055f2003-11-03 21:20:18 +0000355 /* We want to do exactly _one_ DNS lookup, since some
356 * sites (i.e. ftp.us.debian.org) use round-robin DNS
357 * and we want to connect to only one IP... */
358 server->s_in = &s_in;
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000359 bb_lookup_host(&s_in, argv[optind]);
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000360 s_in.sin_port = bb_lookup_port(port, "tcp", 21);
Eric Andersen04d055f2003-11-03 21:20:18 +0000361 if (verbose_flag) {
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000362 printf("Connecting to %s[%s]:%d\n",
363 argv[optind], inet_ntoa(s_in.sin_addr), ntohs(s_in.sin_port));
Eric Andersen04d055f2003-11-03 21:20:18 +0000364 }
365
366 /* Connect/Setup/Configure the FTP session */
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000367 control_stream = ftp_login(server);
368
Eric Andersen04d055f2003-11-03 21:20:18 +0000369 return(ftp_action(server, control_stream, argv[optind + 1], argv[optind + 2]));
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000370}
371
372/*
373Local Variables:
374c-file-style: "linux"
375c-basic-offset: 4
376tab-width: 4
377End:
378*/