blob: 61bc45c4e3c919b7aa336aa6628f8537639f9162 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020013 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000014 */
15
Pere Orga5bc8c002011-04-11 03:29:49 +020016//usage:#define ftpget_trivial_usage
17//usage: "[OPTIONS] HOST [LOCAL_FILE] REMOTE_FILE"
18//usage:#define ftpget_full_usage "\n\n"
Denys Vlasenkocc1bb602012-03-19 12:22:57 +010019//usage: "Download a file via FTP\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020020//usage: IF_FEATURE_FTPGETPUT_LONG_OPTIONS(
Denys Vlasenkocc1bb602012-03-19 12:22:57 +010021//usage: "\n -c,--continue Continue previous transfer"
22//usage: "\n -v,--verbose Verbose"
23//usage: "\n -u,--username USER Username"
24//usage: "\n -p,--password PASS Password"
25//usage: "\n -P,--port NUM Port"
Pere Orga5bc8c002011-04-11 03:29:49 +020026//usage: )
27//usage: IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS(
28//usage: "\n -c Continue previous transfer"
29//usage: "\n -v Verbose"
Denys Vlasenkocc1bb602012-03-19 12:22:57 +010030//usage: "\n -u USER Username"
31//usage: "\n -p PASS Password"
32//usage: "\n -P NUM Port"
Pere Orga5bc8c002011-04-11 03:29:49 +020033//usage: )
34//usage:
35//usage:#define ftpput_trivial_usage
36//usage: "[OPTIONS] HOST [REMOTE_FILE] LOCAL_FILE"
37//usage:#define ftpput_full_usage "\n\n"
Denys Vlasenkocc1bb602012-03-19 12:22:57 +010038//usage: "Upload a file to a FTP server\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020039//usage: IF_FEATURE_FTPGETPUT_LONG_OPTIONS(
Denys Vlasenkocc1bb602012-03-19 12:22:57 +010040//usage: "\n -v,--verbose Verbose"
41//usage: "\n -u,--username USER Username"
42//usage: "\n -p,--password PASS Password"
43//usage: "\n -P,--port NUM Port"
Pere Orga5bc8c002011-04-11 03:29:49 +020044//usage: )
45//usage: IF_NOT_FEATURE_FTPGETPUT_LONG_OPTIONS(
46//usage: "\n -v Verbose"
Denys Vlasenkocc1bb602012-03-19 12:22:57 +010047//usage: "\n -u USER Username"
48//usage: "\n -p PASS Password"
49//usage: "\n -P NUM Port number"
Pere Orga5bc8c002011-04-11 03:29:49 +020050//usage: )
51
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000052#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020053#include "common_bufsiz.h"
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000054
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000055struct globals {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +000056 const char *user;
57 const char *password;
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +000058 struct len_and_sockaddr *lsa;
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000059 FILE *control_stream;
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000060 int verbose_flag;
61 int do_continue;
Denys Vlasenko60a94142011-05-13 20:57:01 +020062 char buf[4]; /* actually [BUFSZ] */
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010063} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020064#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000065enum { BUFSZ = COMMON_BUFSIZE - offsetof(struct globals, buf) };
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000066#define user (G.user )
67#define password (G.password )
68#define lsa (G.lsa )
69#define control_stream (G.control_stream)
70#define verbose_flag (G.verbose_flag )
71#define do_continue (G.do_continue )
72#define buf (G.buf )
Denys Vlasenkoab3964d2015-10-13 14:50:20 +020073#define INIT_G() do { \
74 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
75} while (0)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000076
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000077
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000078static void ftp_die(const char *msg) NORETURN;
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000079static void ftp_die(const char *msg)
Denis Vlasenko562dc242007-01-03 21:55:50 +000080{
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000081 char *cp = buf; /* buf holds peer's response */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000082
Denis Vlasenko562dc242007-01-03 21:55:50 +000083 /* Guard against garbage from remote server */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +000084 while (*cp >= ' ' && *cp < '\x7f')
85 cp++;
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000086 *cp = '\0';
87 bb_error_msg_and_die("unexpected server response%s%s: %s",
88 (msg ? " to " : ""), (msg ? msg : ""), buf);
Denis Vlasenko562dc242007-01-03 21:55:50 +000089}
90
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000091static int ftpcmd(const char *s1, const char *s2)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000092{
Denis Vlasenko562dc242007-01-03 21:55:50 +000093 unsigned n;
Denis Vlasenko7cb808e2008-03-29 07:40:35 +000094
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000095 if (verbose_flag) {
Denis Vlasenko3821fb12007-01-11 16:51:21 +000096 bb_error_msg("cmd %s %s", s1, s2);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +000097 }
98
99 if (s1) {
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000100 fprintf(control_stream, (s2 ? "%s %s\r\n" : "%s %s\r\n"+3),
101 s1, s2);
102 fflush(control_stream);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000103 }
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000104
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000105 do {
Denys Vlasenko60a94142011-05-13 20:57:01 +0200106 strcpy(buf, "EOF"); /* for ftp_die */
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000107 if (fgets(buf, BUFSZ - 2, control_stream) == NULL) {
108 ftp_die(NULL);
Glenn L McGrath5ec58282004-05-04 10:43:34 +0000109 }
Denis Vlasenko13858992006-10-08 12:49:22 +0000110 } while (!isdigit(buf[0]) || buf[3] != ' ');
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000111
Denis Vlasenko562dc242007-01-03 21:55:50 +0000112 buf[3] = '\0';
113 n = xatou(buf);
114 buf[3] = ' ';
115 return n;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000116}
117
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000118static void ftp_login(void)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000119{
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000120 /* Connect to the command socket */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000121 control_stream = fdopen(xconnect_stream(lsa), "r+");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000122 if (control_stream == NULL) {
Denis Vlasenko8e9ccba2007-01-11 16:50:23 +0000123 /* fdopen failed - extremely unlikely */
Denis Vlasenko562dc242007-01-03 21:55:50 +0000124 bb_perror_nomsg_and_die();
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000125 }
126
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000127 if (ftpcmd(NULL, NULL) != 220) {
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000128 ftp_die(NULL);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000129 }
130
131 /* Login to the server */
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000132 switch (ftpcmd("USER", user)) {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000133 case 230:
134 break;
135 case 331:
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000136 if (ftpcmd("PASS", password) != 230) {
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000137 ftp_die("PASS");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000138 }
139 break;
140 default:
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000141 ftp_die("USER");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000142 }
143
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000144 ftpcmd("TYPE I", NULL);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000145}
146
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000147static int xconnect_ftpdata(void)
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000148{
149 char *buf_ptr;
150 unsigned port_num;
151
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000152/*
153TODO: PASV command will not work for IPv6. RFC2428 describes
154IPv6-capable "extended PASV" - EPSV.
155
156"EPSV [protocol]" asks server to bind to and listen on a data port
157in specified protocol. Protocol is 1 for IPv4, 2 for IPv6.
158If not specified, defaults to "same as used for control connection".
159If server understood you, it should answer "229 <some text>(|||port|)"
160where "|" are literal pipe chars and "port" is ASCII decimal port#.
161
162There is also an IPv6-capable replacement for PORT (EPRT),
163but we don't need that.
164
165NB: PASV may still work for some servers even over IPv6.
166For example, vsftp happily answers
167"227 Entering Passive Mode (0,0,0,0,n,n)" and proceeds as usual.
168
169TODO2: need to stop ignoring IP address in PASV response.
170*/
171
172 if (ftpcmd("PASV", NULL) != 227) {
173 ftp_die("PASV");
174 }
175
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000176 /* Response is "NNN garbageN1,N2,N3,N4,P1,P2[)garbage]
177 * Server's IP is N1.N2.N3.N4 (we ignore it)
178 * Server's port for data connection is P1*256+P2 */
179 buf_ptr = strrchr(buf, ')');
180 if (buf_ptr) *buf_ptr = '\0';
181
182 buf_ptr = strrchr(buf, ',');
183 *buf_ptr = '\0';
184 port_num = xatoul_range(buf_ptr + 1, 0, 255);
185
186 buf_ptr = strrchr(buf, ',');
187 *buf_ptr = '\0';
188 port_num += xatoul_range(buf_ptr + 1, 0, 255) * 256;
189
Denys Vlasenkoca183112011-04-07 17:52:20 +0200190 set_nport(&lsa->u.sa, htons(port_num));
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000191 return xconnect_stream(lsa);
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000192}
193
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000194static int pump_data_and_QUIT(int from, int to)
195{
196 /* copy the file */
197 if (bb_copyfd_eof(from, to) == -1) {
198 /* error msg is already printed by bb_copyfd_eof */
199 return EXIT_FAILURE;
200 }
201
202 /* close data connection */
203 close(from); /* don't know which one is that, so we close both */
204 close(to);
205
206 /* does server confirm that transfer is finished? */
207 if (ftpcmd(NULL, NULL) != 226) {
208 ftp_die(NULL);
209 }
210 ftpcmd("QUIT", NULL);
211
212 return EXIT_SUCCESS;
213}
214
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000215#if !ENABLE_FTPGET
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000216int ftp_receive(const char *local_path, char *server_path);
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000217#else
Denis Vlasenko7039a662006-10-08 17:54:47 +0000218static
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000219int ftp_receive(const char *local_path, char *server_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000220{
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000221 int fd_data;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000222 int fd_local = -1;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000223 off_t beg_range = 0;
224
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000225 /* connect to the data socket */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000226 fd_data = xconnect_ftpdata();
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000227
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000228 if (ftpcmd("SIZE", server_path) != 213) {
Rob Landleybc059bc2006-01-10 06:36:00 +0000229 do_continue = 0;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000230 }
231
Denis Vlasenko9f739442006-12-16 23:49:13 +0000232 if (LONE_DASH(local_path)) {
Eric Andersen70060d22004-03-27 10:02:48 +0000233 fd_local = STDOUT_FILENO;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000234 do_continue = 0;
235 }
236
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000237 if (do_continue) {
238 struct stat sbuf;
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000239 /* lstat would be wrong here! */
240 if (stat(local_path, &sbuf) < 0) {
241 bb_perror_msg_and_die("stat");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000242 }
243 if (sbuf.st_size > 0) {
244 beg_range = sbuf.st_size;
245 } else {
246 do_continue = 0;
247 }
248 }
249
250 if (do_continue) {
Denys Vlasenkoa3aa3e32009-12-11 12:36:10 +0100251 sprintf(buf, "REST %"OFF_FMT"u", beg_range);
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000252 if (ftpcmd(buf, NULL) != 350) {
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000253 do_continue = 0;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000254 }
255 }
256
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000257 if (ftpcmd("RETR", server_path) > 150) {
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000258 ftp_die("RETR");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000259 }
260
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000261 /* create local file _after_ we know that remote file exists */
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000262 if (fd_local == -1) {
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000263 fd_local = xopen(local_path,
264 do_continue ? (O_APPEND | O_WRONLY)
265 : (O_CREAT | O_TRUNC | O_WRONLY)
266 );
Glenn L McGrath1643f412002-12-18 02:47:40 +0000267 }
268
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000269 return pump_data_and_QUIT(fd_data, fd_local);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000270}
271#endif
272
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000273#if !ENABLE_FTPPUT
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000274int ftp_send(const char *server_path, char *local_path);
Rob Landleyb1c3fbc2006-05-04 19:52:28 +0000275#else
Denis Vlasenko7039a662006-10-08 17:54:47 +0000276static
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000277int ftp_send(const char *server_path, char *local_path)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000278{
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000279 int fd_data;
280 int fd_local;
281 int response;
282
Denis Vlasenko6c615a62008-03-28 22:11:49 +0000283 /* connect to the data socket */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000284 fd_data = xconnect_ftpdata();
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000285
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000286 /* get the local file */
Denis Vlasenko9f739442006-12-16 23:49:13 +0000287 fd_local = STDIN_FILENO;
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000288 if (NOT_LONE_DASH(local_path))
Rob Landleyd921b2e2006-08-03 15:41:12 +0000289 fd_local = xopen(local_path, O_RDONLY);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000290
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000291 response = ftpcmd("STOR", server_path);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000292 switch (response) {
293 case 125:
294 case 150:
295 break;
296 default:
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000297 ftp_die("STOR");
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000298 }
299
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000300 return pump_data_and_QUIT(fd_local, fd_data);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000301}
302#endif
303
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000304#if ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000305static const char ftpgetput_longopts[] ALIGN1 =
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000306 "continue\0" Required_argument "c"
307 "verbose\0" No_argument "v"
308 "username\0" Required_argument "u"
309 "password\0" Required_argument "p"
310 "port\0" Required_argument "P"
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000311 ;
Bernhard Reutner-Fischer01d23ad2006-05-26 20:19:22 +0000312#endif
Glenn L McGrathb51eb262003-12-19 10:37:52 +0000313
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000314int ftpgetput_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000315int ftpgetput_main(int argc UNUSED_PARAM, char **argv)
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000316{
Denis Vlasenko562dc242007-01-03 21:55:50 +0000317 const char *port = "ftp";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000318 /* socket to ftp server */
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000319
Denis Vlasenko562dc242007-01-03 21:55:50 +0000320#if ENABLE_FTPPUT && !ENABLE_FTPGET
321# define ftp_action ftp_send
322#elif ENABLE_FTPGET && !ENABLE_FTPPUT
323# define ftp_action ftp_receive
324#else
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000325 int (*ftp_action)(const char *, char *) = ftp_send;
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000326
Glenn L McGrath266c1f52003-12-20 03:19:27 +0000327 /* Check to see if the command is ftpget or ftput */
Denis Vlasenko562dc242007-01-03 21:55:50 +0000328 if (applet_name[3] == 'g') {
Bernhard Reutner-Fischere0387a62006-06-07 13:31:59 +0000329 ftp_action = ftp_receive;
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000330 }
Denis Vlasenko562dc242007-01-03 21:55:50 +0000331#endif
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000332
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000333 INIT_G();
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000334 /* Set default values */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000335 user = "anonymous";
336 password = "busybox@";
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000337
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000338 /*
339 * Decipher the command line
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000340 */
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000341#if ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS
Denis Vlasenkobdc88fd2007-07-23 17:14:14 +0000342 applet_long_options = ftpgetput_longopts;
Denis Vlasenkoc61852a2006-11-29 11:09:43 +0000343#endif
Vladimir Dronnikov1dacfbb2009-10-23 23:34:43 +0200344 opt_complementary = "-2:vv:cc"; /* must have 2 to 3 params; -v and -c count */
Denys Vlasenko60a94142011-05-13 20:57:01 +0200345 getopt32(argv, "cvu:p:P:", &user, &password, &port,
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000346 &verbose_flag, &do_continue);
Denis Vlasenko562dc242007-01-03 21:55:50 +0000347 argv += optind;
Glenn L McGrath236e93d2003-12-20 05:43:34 +0000348
Eric Andersen04d055f2003-11-03 21:20:18 +0000349 /* We want to do exactly _one_ DNS lookup, since some
350 * sites (i.e. ftp.us.debian.org) use round-robin DNS
351 * and we want to connect to only one IP... */
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000352 lsa = xhost2sockaddr(argv[0], bb_lookup_port(port, "tcp", 21));
Eric Andersen04d055f2003-11-03 21:20:18 +0000353 if (verbose_flag) {
Denis Vlasenko85629f02007-01-22 09:36:41 +0000354 printf("Connecting to %s (%s)\n", argv[0],
Denis Vlasenko0e7940a2008-03-29 07:37:42 +0000355 xmalloc_sockaddr2dotted(&lsa->u.sa));
Eric Andersen04d055f2003-11-03 21:20:18 +0000356 }
357
Denis Vlasenko7cb808e2008-03-29 07:40:35 +0000358 ftp_login();
Vladimir Dronnikov1dacfbb2009-10-23 23:34:43 +0200359 return ftp_action(argv[1], argv[2] ? argv[2] : argv[1]);
Glenn L McGrath02d7cbf2002-12-13 02:43:50 +0000360}