udhcpc: paranoia when using kernel UDP mode for sending renew: server ID may be bogus
[oweals/busybox.git] / networking / ftpgetput.c
1 /* 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
9  *
10  * Based on wget.c by Chip Rosenthal Covad Communications
11  * <chip@laserlink.net>
12  *
13  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
14  */
15 //config:config FTPGET
16 //config:       bool "ftpget (8 kb)"
17 //config:       default y
18 //config:       help
19 //config:       Retrieve a remote file via FTP.
20 //config:
21 //config:config FTPPUT
22 //config:       bool "ftpput (7.7 kb)"
23 //config:       default y
24 //config:       help
25 //config:       Store a remote file via FTP.
26 //config:
27 //config:config FEATURE_FTPGETPUT_LONG_OPTIONS
28 //config:       bool "Enable long options in ftpget/ftpput"
29 //config:       default y
30 //config:       depends on LONG_OPTS && (FTPGET || FTPPUT)
31
32 //applet:IF_FTPGET(APPLET_ODDNAME(ftpget, ftpgetput, BB_DIR_USR_BIN, BB_SUID_DROP, ftpget))
33 //applet:IF_FTPPUT(APPLET_ODDNAME(ftpput, ftpgetput, BB_DIR_USR_BIN, BB_SUID_DROP, ftpput))
34
35 //kbuild:lib-$(CONFIG_FTPGET) += ftpgetput.o
36 //kbuild:lib-$(CONFIG_FTPPUT) += ftpgetput.o
37
38 //usage:#define ftpget_trivial_usage
39 //usage:       "[OPTIONS] HOST [LOCAL_FILE] REMOTE_FILE"
40 //usage:#define ftpget_full_usage "\n\n"
41 //usage:       "Download a file via FTP\n"
42 //usage:     "\n        -c      Continue previous transfer"
43 //usage:     "\n        -v      Verbose"
44 //usage:     "\n        -u USER Username"
45 //usage:     "\n        -p PASS Password"
46 //usage:     "\n        -P NUM  Port"
47 //usage:
48 //usage:#define ftpput_trivial_usage
49 //usage:       "[OPTIONS] HOST [REMOTE_FILE] LOCAL_FILE"
50 //usage:#define ftpput_full_usage "\n\n"
51 //usage:       "Upload a file to a FTP server\n"
52 //usage:     "\n        -v      Verbose"
53 //usage:     "\n        -u USER Username"
54 //usage:     "\n        -p PASS Password"
55 //usage:     "\n        -P NUM  Port number"
56
57 #include "libbb.h"
58 #include "common_bufsiz.h"
59
60 struct globals {
61         const char *user;
62         const char *password;
63         struct len_and_sockaddr *lsa;
64         FILE *control_stream;
65         int verbose_flag;
66         int do_continue;
67         char buf[4]; /* actually [BUFSZ] */
68 } FIX_ALIASING;
69 #define G (*(struct globals*)bb_common_bufsiz1)
70 enum { BUFSZ = COMMON_BUFSIZE - offsetof(struct globals, buf) };
71 #define user           (G.user          )
72 #define password       (G.password      )
73 #define lsa            (G.lsa           )
74 #define control_stream (G.control_stream)
75 #define verbose_flag   (G.verbose_flag  )
76 #define do_continue    (G.do_continue   )
77 #define buf            (G.buf           )
78 #define INIT_G() do { \
79         setup_common_bufsiz(); \
80         BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
81 } while (0)
82
83
84 static void ftp_die(const char *msg) NORETURN;
85 static void ftp_die(const char *msg)
86 {
87         char *cp = buf; /* buf holds peer's response */
88
89         /* Guard against garbage from remote server */
90         while (*cp >= ' ' && *cp < '\x7f')
91                 cp++;
92         *cp = '\0';
93         bb_error_msg_and_die("unexpected server response%s%s: %s",
94                         (msg ? " to " : ""), (msg ? msg : ""), buf);
95 }
96
97 static int ftpcmd(const char *s1, const char *s2)
98 {
99         unsigned n;
100
101         if (verbose_flag) {
102                 bb_error_msg("cmd %s %s", s1, s2);
103         }
104
105         if (s1) {
106                 fprintf(control_stream, (s2 ? "%s %s\r\n" : "%s %s\r\n"+3),
107                                                 s1, s2);
108                 fflush(control_stream);
109         }
110
111         do {
112                 strcpy(buf, "EOF"); /* for ftp_die */
113                 if (fgets(buf, BUFSZ - 2, control_stream) == NULL) {
114                         ftp_die(NULL);
115                 }
116         } while (!isdigit(buf[0]) || buf[3] != ' ');
117
118         buf[3] = '\0';
119         n = xatou(buf);
120         buf[3] = ' ';
121         return n;
122 }
123
124 static void ftp_login(void)
125 {
126         /* Connect to the command socket */
127         control_stream = fdopen(xconnect_stream(lsa), "r+");
128         if (control_stream == NULL) {
129                 /* fdopen failed - extremely unlikely */
130                 bb_perror_nomsg_and_die();
131         }
132
133         if (ftpcmd(NULL, NULL) != 220) {
134                 ftp_die(NULL);
135         }
136
137         /*  Login to the server */
138         switch (ftpcmd("USER", user)) {
139         case 230:
140                 break;
141         case 331:
142                 if (ftpcmd("PASS", password) != 230) {
143                         ftp_die("PASS");
144                 }
145                 break;
146         default:
147                 ftp_die("USER");
148         }
149
150         ftpcmd("TYPE I", NULL);
151 }
152
153 static int xconnect_ftpdata(void)
154 {
155         char *buf_ptr;
156         unsigned port_num;
157
158 /*
159 TODO: PASV command will not work for IPv6. RFC2428 describes
160 IPv6-capable "extended PASV" - EPSV.
161
162 "EPSV [protocol]" asks server to bind to and listen on a data port
163 in specified protocol. Protocol is 1 for IPv4, 2 for IPv6.
164 If not specified, defaults to "same as used for control connection".
165 If server understood you, it should answer "229 <some text>(|||port|)"
166 where "|" are literal pipe chars and "port" is ASCII decimal port#.
167
168 There is also an IPv6-capable replacement for PORT (EPRT),
169 but we don't need that.
170
171 NB: PASV may still work for some servers even over IPv6.
172 For example, vsftp happily answers
173 "227 Entering Passive Mode (0,0,0,0,n,n)" and proceeds as usual.
174
175 TODO2: need to stop ignoring IP address in PASV response.
176 */
177
178         if (ftpcmd("PASV", NULL) != 227) {
179                 ftp_die("PASV");
180         }
181
182         /* Response is "NNN garbageN1,N2,N3,N4,P1,P2[)garbage]
183          * Server's IP is N1.N2.N3.N4 (we ignore it)
184          * Server's port for data connection is P1*256+P2 */
185         buf_ptr = strrchr(buf, ')');
186         if (buf_ptr) *buf_ptr = '\0';
187
188         buf_ptr = strrchr(buf, ',');
189         *buf_ptr = '\0';
190         port_num = xatoul_range(buf_ptr + 1, 0, 255);
191
192         buf_ptr = strrchr(buf, ',');
193         *buf_ptr = '\0';
194         port_num += xatoul_range(buf_ptr + 1, 0, 255) * 256;
195
196         set_nport(&lsa->u.sa, htons(port_num));
197         return xconnect_stream(lsa);
198 }
199
200 static int pump_data_and_QUIT(int from, int to)
201 {
202         /* copy the file */
203         if (bb_copyfd_eof(from, to) == -1) {
204                 /* error msg is already printed by bb_copyfd_eof */
205                 return EXIT_FAILURE;
206         }
207
208         /* close data connection */
209         close(from); /* don't know which one is that, so we close both */
210         close(to);
211
212         /* does server confirm that transfer is finished? */
213         if (ftpcmd(NULL, NULL) != 226) {
214                 ftp_die(NULL);
215         }
216         ftpcmd("QUIT", NULL);
217
218         return EXIT_SUCCESS;
219 }
220
221 #if !ENABLE_FTPGET
222 int ftp_receive(const char *local_path, char *server_path);
223 #else
224 static
225 int ftp_receive(const char *local_path, char *server_path)
226 {
227         int fd_data;
228         int fd_local = -1;
229         off_t beg_range = 0;
230
231         /* connect to the data socket */
232         fd_data = xconnect_ftpdata();
233
234         if (ftpcmd("SIZE", server_path) != 213) {
235                 do_continue = 0;
236         }
237
238         if (LONE_DASH(local_path)) {
239                 fd_local = STDOUT_FILENO;
240                 do_continue = 0;
241         }
242
243         if (do_continue) {
244                 struct stat sbuf;
245                 /* lstat would be wrong here! */
246                 if (stat(local_path, &sbuf) < 0) {
247                         bb_perror_msg_and_die("stat");
248                 }
249                 if (sbuf.st_size > 0) {
250                         beg_range = sbuf.st_size;
251                 } else {
252                         do_continue = 0;
253                 }
254         }
255
256         if (do_continue) {
257                 sprintf(buf, "REST %"OFF_FMT"u", beg_range);
258                 if (ftpcmd(buf, NULL) != 350) {
259                         do_continue = 0;
260                 }
261         }
262
263         if (ftpcmd("RETR", server_path) > 150) {
264                 ftp_die("RETR");
265         }
266
267         /* create local file _after_ we know that remote file exists */
268         if (fd_local == -1) {
269                 fd_local = xopen(local_path,
270                         do_continue ? (O_APPEND | O_WRONLY)
271                                     : (O_CREAT | O_TRUNC | O_WRONLY)
272                 );
273         }
274
275         return pump_data_and_QUIT(fd_data, fd_local);
276 }
277 #endif
278
279 #if !ENABLE_FTPPUT
280 int ftp_send(const char *server_path, char *local_path);
281 #else
282 static
283 int ftp_send(const char *server_path, char *local_path)
284 {
285         int fd_data;
286         int fd_local;
287         int response;
288
289         /* connect to the data socket */
290         fd_data = xconnect_ftpdata();
291
292         /* get the local file */
293         fd_local = STDIN_FILENO;
294         if (NOT_LONE_DASH(local_path))
295                 fd_local = xopen(local_path, O_RDONLY);
296
297         response = ftpcmd("STOR", server_path);
298         switch (response) {
299         case 125:
300         case 150:
301                 break;
302         default:
303                 ftp_die("STOR");
304         }
305
306         return pump_data_and_QUIT(fd_local, fd_data);
307 }
308 #endif
309
310 #if ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS
311 static const char ftpgetput_longopts[] ALIGN1 =
312         "continue\0" Required_argument "c"
313         "verbose\0"  No_argument       "v"
314         "username\0" Required_argument "u"
315         "password\0" Required_argument "p"
316         "port\0"     Required_argument "P"
317         ;
318 #endif
319
320 int ftpgetput_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
321 int ftpgetput_main(int argc UNUSED_PARAM, char **argv)
322 {
323         const char *port = "ftp";
324         /* socket to ftp server */
325
326 #if ENABLE_FTPPUT && !ENABLE_FTPGET
327 # define ftp_action ftp_send
328 #elif ENABLE_FTPGET && !ENABLE_FTPPUT
329 # define ftp_action ftp_receive
330 #else
331         int (*ftp_action)(const char *, char *) = ftp_send;
332
333         /* Check to see if the command is ftpget or ftput */
334         if (applet_name[3] == 'g') {
335                 ftp_action = ftp_receive;
336         }
337 #endif
338
339         INIT_G();
340         /* Set default values */
341         user = "anonymous";
342         password = "busybox@";
343
344         /*
345          * Decipher the command line
346          */
347         /* must have 2 to 3 params; -v and -c count */
348 #define OPTSTRING "^cvu:p:P:" "\0" "-2:?3:vv:cc"
349 #if ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS
350         getopt32long(argv, OPTSTRING, ftpgetput_longopts,
351 #else
352         getopt32(argv, OPTSTRING,
353 #endif
354                         &user, &password, &port, &verbose_flag, &do_continue
355         );
356         argv += optind;
357
358         /* We want to do exactly _one_ DNS lookup, since some
359          * sites (i.e. ftp.us.debian.org) use round-robin DNS
360          * and we want to connect to only one IP... */
361         lsa = xhost2sockaddr(argv[0], bb_lookup_port(port, "tcp", 21));
362         if (verbose_flag) {
363                 printf("Connecting to %s (%s)\n", argv[0],
364                         xmalloc_sockaddr2dotted(&lsa->u.sa));
365         }
366
367         ftp_login();
368         return ftp_action(argv[1], argv[2] ? argv[2] : argv[1]);
369 }