blob: be3d5a673c32429d97bae841f2d89a17e5eb3481 [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>
Denis Vlasenko0beaff82007-09-21 13:16:32 +00008 * Copyright (C) 2002 Glenn McGrath
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
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000016#include "libbb.h"
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000017
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000018struct globals {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +000019 const char *user;
20 const char *password;
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000021 struct len_and_sockaddr *lsa;
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000022 FILE *control_stream;
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000023 int verbose_flag;
24 int do_continue;
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000025 char buf[1]; /* actually [BUFSZ] */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000026};
27#define G (*(struct globals*)&bb_common_bufsiz1)
28enum { BUFSZ = COMMON_BUFSIZE - offsetof(struct globals, buf) };
29struct BUG_G_too_big {
30 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
31};
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000032#define user (G.user )
33#define password (G.password )
34#define lsa (G.lsa )
35#define control_stream (G.control_stream)
36#define verbose_flag (G.verbose_flag )
37#define do_continue (G.do_continue )
38#define buf (G.buf )
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000039#define INIT_G() do { \
40} while (0)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000041
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000042
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000043static void ftp_die(const char *msg) ATTRIBUTE_NORETURN;
44static void ftp_die(const char *msg)
Denis Vlasenko562dc242007-01-03 21:55:50 +000045{
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000046 char *cp = buf; /* buf holds peer's response */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000047
Denis Vlasenko562dc242007-01-03 21:55:50 +000048 /* Guard against garbage from remote server */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000049 while (*cp >= ' ' && *cp < '\x7f')
50 cp++;
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000051 *cp = '\0';
52 bb_error_msg_and_die("unexpected server response%s%s: %s",
53 (msg ? " to " : ""), (msg ? msg : ""), buf);
Denis Vlasenko562dc242007-01-03 21:55:50 +000054}
55
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000056static int ftpcmd(const char *s1, const char *s2)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000057{
Denis Vlasenko562dc242007-01-03 21:55:50 +000058 unsigned n;
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000059
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000060 if (verbose_flag) {
Denis Vlasenko3821fb12007-01-11 16:51:21 +000061 bb_error_msg("cmd %s %s", s1, s2);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000062 }
63
64 if (s1) {
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000065 fprintf(control_stream, (s2 ? "%s %s\r\n" : "%s %s\r\n"+3),
66 s1, s2);
67 fflush(control_stream);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000068 }
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000069
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000070 do {
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000071 strcpy(buf, "EOF");
72 if (fgets(buf, BUFSZ - 2, control_stream) == NULL) {
73 ftp_die(NULL);
Glenn L McGrath5ec58282004-05-04 10:43:34 +000074 }
Denis Vlasenko13858992006-10-08 12:49:22 +000075 } while (!isdigit(buf[0]) || buf[3] != ' ');
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000076
Denis Vlasenko562dc242007-01-03 21:55:50 +000077 buf[3] = '\0';
78 n = xatou(buf);
79 buf[3] = ' ';
80 return n;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000081}
82
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000083static void ftp_login(void)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000084{
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000085 /* Connect to the command socket */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000086 control_stream = fdopen(xconnect_stream(lsa), "r+");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000087 if (control_stream == NULL) {
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000088 /* fdopen failed - extremely unlikely */
Denis Vlasenko562dc242007-01-03 21:55:50 +000089 bb_perror_nomsg_and_die();
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000090 }
91
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000092 if (ftpcmd(NULL, NULL) != 220) {
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000093 ftp_die(NULL);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000094 }
95
96 /* Login to the server */
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000097 switch (ftpcmd("USER", user)) {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000098 case 230:
99 break;
100 case 331:
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000101 if (ftpcmd("PASS", password) != 230) {
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000102 ftp_die("PASS");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000103 }
104 break;
105 default:
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000106 ftp_die("USER");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000107 }
108
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000109 ftpcmd("TYPE I", NULL);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000110}
111
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000112static int xconnect_ftpdata(void)
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000113{
114 char *buf_ptr;
115 unsigned port_num;
116
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000117/*
118TODO: PASV command will not work for IPv6. RFC2428 describes
119IPv6-capable "extended PASV" - EPSV.
120
121"EPSV [protocol]" asks server to bind to and listen on a data port
122in specified protocol. Protocol is 1 for IPv4, 2 for IPv6.
123If not specified, defaults to "same as used for control connection".
124If server understood you, it should answer "229 <some text>(|||port|)"
125where "|" are literal pipe chars and "port" is ASCII decimal port#.
126
127There is also an IPv6-capable replacement for PORT (EPRT),
128but we don't need that.
129
130NB: PASV may still work for some servers even over IPv6.
131For example, vsftp happily answers
132"227 Entering Passive Mode (0,0,0,0,n,n)" and proceeds as usual.
133
134TODO2: need to stop ignoring IP address in PASV response.
135*/
136
137 if (ftpcmd("PASV", NULL) != 227) {
138 ftp_die("PASV");
139 }
140
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000141 /* Response is "NNN garbageN1,N2,N3,N4,P1,P2[)garbage]
142 * Server's IP is N1.N2.N3.N4 (we ignore it)
143 * Server's port for data connection is P1*256+P2 */
144 buf_ptr = strrchr(buf, ')');
145 if (buf_ptr) *buf_ptr = '\0';
146
147 buf_ptr = strrchr(buf, ',');
148 *buf_ptr = '\0';
149 port_num = xatoul_range(buf_ptr + 1, 0, 255);
150
151 buf_ptr = strrchr(buf, ',');
152 *buf_ptr = '\0';
153 port_num += xatoul_range(buf_ptr + 1, 0, 255) * 256;
154
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000155 set_nport(lsa, htons(port_num));
156 return xconnect_stream(lsa);
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000157}
158
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000159static int pump_data_and_QUIT(int from, int to)
160{
161 /* copy the file */
162 if (bb_copyfd_eof(from, to) == -1) {
163 /* error msg is already printed by bb_copyfd_eof */
164 return EXIT_FAILURE;
165 }
166
167 /* close data connection */
168 close(from); /* don't know which one is that, so we close both */
169 close(to);
170
171 /* does server confirm that transfer is finished? */
172 if (ftpcmd(NULL, NULL) != 226) {
173 ftp_die(NULL);
174 }
175 ftpcmd("QUIT", NULL);
176
177 return EXIT_SUCCESS;
178}
179
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000180#if !ENABLE_FTPGET
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000181int ftp_receive(const char *local_path, char *server_path);
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000182#else
Denis Vlasenko7039a662006-10-08 17:54:47 +0000183static
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000184int ftp_receive(const char *local_path, char *server_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000185{
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000186 int fd_data;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000187 int fd_local = -1;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000188 off_t beg_range = 0;
189
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000190 /* connect to the data socket */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000191 fd_data = xconnect_ftpdata();
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000192
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000193 if (ftpcmd("SIZE", server_path) != 213) {
Rob Landleybc059bc2006-01-10 06:36:00 +0000194 do_continue = 0;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000195 }
196
Denis Vlasenko9f739442006-12-16 23:49:13 +0000197 if (LONE_DASH(local_path)) {
Eric Andersen70060d22004-03-27 10:02:48 +0000198 fd_local = STDOUT_FILENO;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000199 do_continue = 0;
200 }
201
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000202 if (do_continue) {
203 struct stat sbuf;
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000204 /* lstat would be wrong here! */
205 if (stat(local_path, &sbuf) < 0) {
206 bb_perror_msg_and_die("stat");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000207 }
208 if (sbuf.st_size > 0) {
209 beg_range = sbuf.st_size;
210 } else {
211 do_continue = 0;
212 }
213 }
214
215 if (do_continue) {
Denis Vlasenkocf30cc82006-11-24 14:53:18 +0000216 sprintf(buf, "REST %"OFF_FMT"d", beg_range);
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000217 if (ftpcmd(buf, NULL) != 350) {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000218 do_continue = 0;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000219 }
220 }
221
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000222 if (ftpcmd("RETR", server_path) > 150) {
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000223 ftp_die("RETR");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000224 }
225
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000226 /* create local file _after_ we know that remote file exists */
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000227 if (fd_local == -1) {
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000228 fd_local = xopen(local_path,
229 do_continue ? (O_APPEND | O_WRONLY)
230 : (O_CREAT | O_TRUNC | O_WRONLY)
231 );
Glenn L McGrath1643f412002-12-18 02:47:40 +0000232 }
233
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000234 return pump_data_and_QUIT(fd_data, fd_local);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000235}
236#endif
237
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000238#if !ENABLE_FTPPUT
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000239int ftp_send(const char *server_path, char *local_path);
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000240#else
Denis Vlasenko7039a662006-10-08 17:54:47 +0000241static
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000242int ftp_send(const char *server_path, char *local_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000243{
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000244 int fd_data;
245 int fd_local;
246 int response;
247
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000248 /* connect to the data socket */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000249 fd_data = xconnect_ftpdata();
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000250
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000251 /* get the local file */
Denis Vlasenko9f739442006-12-16 23:49:13 +0000252 fd_local = STDIN_FILENO;
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000253 if (NOT_LONE_DASH(local_path))
Rob Landleyd921b2e2006-08-03 15:41:12 +0000254 fd_local = xopen(local_path, O_RDONLY);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000255
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000256 response = ftpcmd("STOR", server_path);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000257 switch (response) {
258 case 125:
259 case 150:
260 break;
261 default:
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000262 ftp_die("STOR");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000263 }
264
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000265 return pump_data_and_QUIT(fd_local, fd_data);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000266}
267#endif
268
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000269#if ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000270static const char ftpgetput_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000271 "continue\0" Required_argument "c"
272 "verbose\0" No_argument "v"
273 "username\0" Required_argument "u"
274 "password\0" Required_argument "p"
275 "port\0" Required_argument "P"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000276 ;
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000277#endif
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000278
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000279int ftpgetput_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko68404f12008-03-17 09:00:54 +0000280int ftpgetput_main(int argc ATTRIBUTE_UNUSED, char **argv)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000281{
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000282 unsigned opt;
Denis Vlasenko562dc242007-01-03 21:55:50 +0000283 const char *port = "ftp";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000284 /* socket to ftp server */
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000285
Denis Vlasenko562dc242007-01-03 21:55:50 +0000286#if ENABLE_FTPPUT && !ENABLE_FTPGET
287# define ftp_action ftp_send
288#elif ENABLE_FTPGET && !ENABLE_FTPPUT
289# define ftp_action ftp_receive
290#else
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000291 int (*ftp_action)(const char *, char *) = ftp_send;
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000292
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000293 /* Check to see if the command is ftpget or ftput */
Denis Vlasenko562dc242007-01-03 21:55:50 +0000294 if (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 }
Denis Vlasenko562dc242007-01-03 21:55:50 +0000297#endif
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000298
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000299 INIT_G();
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000300 /* Set default values */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000301 user = "anonymous";
302 password = "busybox@";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000303
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000304 /*
305 * Decipher the command line
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000306 */
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000307#if ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000308 applet_long_options = ftpgetput_longopts;
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000309#endif
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000310 opt_complementary = "=3:vv:cc"; /* must have 3 params; -v and -c count */
311 opt = getopt32(argv, "cvu:p:P:", &user, &password, &port,
312 &verbose_flag, &do_continue);
Denis Vlasenko562dc242007-01-03 21:55:50 +0000313 argv += optind;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000314
Eric Andersen04d055f2003-11-03 21:20:18 +0000315 /* We want to do exactly _one_ DNS lookup, since some
316 * sites (i.e. ftp.us.debian.org) use round-robin DNS
317 * and we want to connect to only one IP... */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000318 lsa = xhost2sockaddr(argv[0], bb_lookup_port(port, "tcp", 21));
Eric Andersen04d055f2003-11-03 21:20:18 +0000319 if (verbose_flag) {
Denis Vlasenko85629f02007-01-22 09:36:41 +0000320 printf("Connecting to %s (%s)\n", argv[0],
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000321 xmalloc_sockaddr2dotted(&lsa->u.sa));
Eric Andersen04d055f2003-11-03 21:20:18 +0000322 }
323
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000324 ftp_login();
325 return ftp_action(argv[1], argv[2]);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000326}