udhcp,ipcalc: simple code shrink (Nico Erfurth <masta AT perlgolf.de>)
[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 tarball for details.
14  */
15
16 #include "libbb.h"
17
18 struct globals {
19         const char *user;
20         const char *password;
21         struct len_and_sockaddr *lsa;
22         FILE *control_stream;
23         int verbose_flag;
24         int do_continue;
25         char buf[1]; /* actually [BUFSZ] */
26 };
27 #define G (*(struct globals*)&bb_common_bufsiz1)
28 enum { BUFSZ = COMMON_BUFSIZE - offsetof(struct globals, buf) };
29 struct BUG_G_too_big {
30         char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
31 };
32 #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           )
39 #define INIT_G() do { \
40 } while (0)
41
42
43 static void ftp_die(const char *msg) ATTRIBUTE_NORETURN;
44 static void ftp_die(const char *msg)
45 {
46         char *cp = buf; /* buf holds peer's response */
47
48         /* Guard against garbage from remote server */
49         while (*cp >= ' ' && *cp < '\x7f')
50                 cp++;
51         *cp = '\0';
52         bb_error_msg_and_die("unexpected server response%s%s: %s",
53                         (msg ? " to " : ""), (msg ? msg : ""), buf);
54 }
55
56 static int ftpcmd(const char *s1, const char *s2)
57 {
58         unsigned n;
59
60         if (verbose_flag) {
61                 bb_error_msg("cmd %s %s", s1, s2);
62         }
63
64         if (s1) {
65                 fprintf(control_stream, (s2 ? "%s %s\r\n" : "%s %s\r\n"+3),
66                                                 s1, s2);
67                 fflush(control_stream);
68         }
69
70         do {
71                 strcpy(buf, "EOF");
72                 if (fgets(buf, BUFSZ - 2, control_stream) == NULL) {
73                         ftp_die(NULL);
74                 }
75         } while (!isdigit(buf[0]) || buf[3] != ' ');
76
77         buf[3] = '\0';
78         n = xatou(buf);
79         buf[3] = ' ';
80         return n;
81 }
82
83 static void ftp_login(void)
84 {
85         /* Connect to the command socket */
86         control_stream = fdopen(xconnect_stream(lsa), "r+");
87         if (control_stream == NULL) {
88                 /* fdopen failed - extremely unlikely */
89                 bb_perror_nomsg_and_die();
90         }
91
92         if (ftpcmd(NULL, NULL) != 220) {
93                 ftp_die(NULL);
94         }
95
96         /*  Login to the server */
97         switch (ftpcmd("USER", user)) {
98         case 230:
99                 break;
100         case 331:
101                 if (ftpcmd("PASS", password) != 230) {
102                         ftp_die("PASS");
103                 }
104                 break;
105         default:
106                 ftp_die("USER");
107         }
108
109         ftpcmd("TYPE I", NULL);
110 }
111
112 static int xconnect_ftpdata(void)
113 {
114         char *buf_ptr;
115         unsigned port_num;
116
117 /*
118 TODO: PASV command will not work for IPv6. RFC2428 describes
119 IPv6-capable "extended PASV" - EPSV.
120
121 "EPSV [protocol]" asks server to bind to and listen on a data port
122 in specified protocol. Protocol is 1 for IPv4, 2 for IPv6.
123 If not specified, defaults to "same as used for control connection".
124 If server understood you, it should answer "229 <some text>(|||port|)"
125 where "|" are literal pipe chars and "port" is ASCII decimal port#.
126
127 There is also an IPv6-capable replacement for PORT (EPRT),
128 but we don't need that.
129
130 NB: PASV may still work for some servers even over IPv6.
131 For example, vsftp happily answers
132 "227 Entering Passive Mode (0,0,0,0,n,n)" and proceeds as usual.
133
134 TODO2: need to stop ignoring IP address in PASV response.
135 */
136
137         if (ftpcmd("PASV", NULL) != 227) {
138                 ftp_die("PASV");
139         }
140
141         /* 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
155         set_nport(lsa, htons(port_num));
156         return xconnect_stream(lsa);
157 }
158
159 static 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
180 #if !ENABLE_FTPGET
181 int ftp_receive(const char *local_path, char *server_path);
182 #else
183 static
184 int ftp_receive(const char *local_path, char *server_path)
185 {
186         int fd_data;
187         int fd_local = -1;
188         off_t beg_range = 0;
189
190         /* connect to the data socket */
191         fd_data = xconnect_ftpdata();
192
193         if (ftpcmd("SIZE", server_path) != 213) {
194                 do_continue = 0;
195         }
196
197         if (LONE_DASH(local_path)) {
198                 fd_local = STDOUT_FILENO;
199                 do_continue = 0;
200         }
201
202         if (do_continue) {
203                 struct stat sbuf;
204                 /* lstat would be wrong here! */
205                 if (stat(local_path, &sbuf) < 0) {
206                         bb_perror_msg_and_die("stat");
207                 }
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) {
216                 sprintf(buf, "REST %"OFF_FMT"d", beg_range);
217                 if (ftpcmd(buf, NULL) != 350) {
218                         do_continue = 0;
219                 }
220         }
221
222         if (ftpcmd("RETR", server_path) > 150) {
223                 ftp_die("RETR");
224         }
225
226         /* create local file _after_ we know that remote file exists */
227         if (fd_local == -1) {
228                 fd_local = xopen(local_path,
229                         do_continue ? (O_APPEND | O_WRONLY)
230                                     : (O_CREAT | O_TRUNC | O_WRONLY)
231                 );
232         }
233
234         return pump_data_and_QUIT(fd_data, fd_local);
235 }
236 #endif
237
238 #if !ENABLE_FTPPUT
239 int ftp_send(const char *server_path, char *local_path);
240 #else
241 static
242 int ftp_send(const char *server_path, char *local_path)
243 {
244         int fd_data;
245         int fd_local;
246         int response;
247
248         /* connect to the data socket */
249         fd_data = xconnect_ftpdata();
250
251         /* get the local file */
252         fd_local = STDIN_FILENO;
253         if (NOT_LONE_DASH(local_path))
254                 fd_local = xopen(local_path, O_RDONLY);
255
256         response = ftpcmd("STOR", server_path);
257         switch (response) {
258         case 125:
259         case 150:
260                 break;
261         default:
262                 ftp_die("STOR");
263         }
264
265         return pump_data_and_QUIT(fd_local, fd_data);
266 }
267 #endif
268
269 #if ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS
270 static const char ftpgetput_longopts[] ALIGN1 =
271         "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"
276         ;
277 #endif
278
279 int ftpgetput_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
280 int ftpgetput_main(int argc ATTRIBUTE_UNUSED, char **argv)
281 {
282         unsigned opt;
283         const char *port = "ftp";
284         /* socket to ftp server */
285
286 #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
291         int (*ftp_action)(const char *, char *) = ftp_send;
292
293         /* Check to see if the command is ftpget or ftput */
294         if (applet_name[3] == 'g') {
295                 ftp_action = ftp_receive;
296         }
297 #endif
298
299         INIT_G();
300         /* Set default values */
301         user = "anonymous";
302         password = "busybox@";
303
304         /*
305          * Decipher the command line
306          */
307 #if ENABLE_FEATURE_FTPGETPUT_LONG_OPTIONS
308         applet_long_options = ftpgetput_longopts;
309 #endif
310         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);
313         argv += optind;
314
315         /* 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... */
318         lsa = xhost2sockaddr(argv[0], bb_lookup_port(port, "tcp", 21));
319         if (verbose_flag) {
320                 printf("Connecting to %s (%s)\n", argv[0],
321                         xmalloc_sockaddr2dotted(&lsa->u.sa));
322         }
323
324         ftp_login();
325         return ftp_action(argv[1], argv[2]);
326 }