- single KERNEL_VERSION(a,b,c) macro in platform.h
[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 <bug1@iinet.net.au>
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 <sys/types.h>
17 #include <sys/ioctl.h>
18 #include <sys/time.h>
19 #include <sys/stat.h>
20
21 #include <ctype.h>
22 #include <errno.h>
23 #include <fcntl.h>
24 #include <getopt.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <signal.h>
28 #include <string.h>
29 #include <unistd.h>
30
31 #include <netinet/in.h>
32 #include <netdb.h>
33 #include <sys/socket.h>
34 #include <arpa/inet.h>
35
36 #include "busybox.h"
37
38 typedef struct ftp_host_info_s {
39         char *user;
40         char *password;
41         struct sockaddr_in *s_in;
42 } ftp_host_info_t;
43
44 static char verbose_flag = 0;
45 static char do_continue = 0;
46
47 static int ftpcmd(const char *s1, const char *s2, FILE *stream, char *buf)
48 {
49         if (verbose_flag) {
50                 bb_error_msg("cmd %s%s", s1, s2);
51         }
52
53         if (s1) {
54                 if (s2) {
55                         fprintf(stream, "%s%s\r\n", s1, s2);
56                 } else {
57                         fprintf(stream, "%s\r\n", s1);
58                 }
59         }
60         do {
61                 char *buf_ptr;
62
63                 if (fgets(buf, 510, stream) == NULL) {
64                         bb_perror_msg_and_die("fgets()");
65                 }
66                 buf_ptr = strstr(buf, "\r\n");
67                 if (buf_ptr) {
68                         *buf_ptr = '\0';
69                 }
70         } while (! isdigit(buf[0]) || buf[3] != ' ');
71
72         return atoi(buf);
73 }
74
75 static int xconnect_ftpdata(ftp_host_info_t *server, const char *buf)
76 {
77         char *buf_ptr;
78         unsigned short port_num;
79
80         buf_ptr = strrchr(buf, ',');
81         *buf_ptr = '\0';
82         port_num = atoi(buf_ptr + 1);
83
84         buf_ptr = strrchr(buf, ',');
85         *buf_ptr = '\0';
86         port_num += atoi(buf_ptr + 1) * 256;
87
88         server->s_in->sin_port=htons(port_num);
89         return(xconnect(server->s_in));
90 }
91
92 static FILE *ftp_login(ftp_host_info_t *server)
93 {
94         FILE *control_stream;
95         char buf[512];
96
97         /* Connect to the command socket */
98         control_stream = fdopen(xconnect(server->s_in), "r+");
99         if (control_stream == NULL) {
100                 bb_perror_msg_and_die("Couldnt open control stream");
101         }
102
103         if (ftpcmd(NULL, NULL, control_stream, buf) != 220) {
104                 bb_error_msg_and_die("%s", buf + 4);
105         }
106
107         /*  Login to the server */
108         switch (ftpcmd("USER ", server->user, control_stream, buf)) {
109         case 230:
110                 break;
111         case 331:
112                 if (ftpcmd("PASS ", server->password, control_stream, buf) != 230) {
113                         bb_error_msg_and_die("PASS error: %s", buf + 4);
114                 }
115                 break;
116         default:
117                 bb_error_msg_and_die("USER error: %s", buf + 4);
118         }
119
120         ftpcmd("TYPE I", NULL, control_stream, buf);
121
122         return(control_stream);
123 }
124
125 #if !ENABLE_FTPGET
126 #define ftp_receive 0
127 #else
128 static int ftp_recieve(ftp_host_info_t *server, FILE *control_stream,
129                 const char *local_path, char *server_path)
130 {
131         char buf[512];
132         off_t filesize = 0;
133         int fd_data;
134         int fd_local = -1;
135         off_t beg_range = 0;
136
137         /* Connect to the data socket */
138         if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
139                 bb_error_msg_and_die("PASV error: %s", buf + 4);
140         }
141         fd_data = xconnect_ftpdata(server, buf);
142
143         if (ftpcmd("SIZE ", server_path, control_stream, buf) == 213) {
144                 unsigned long value=filesize;
145                 if (safe_strtoul(buf + 4, &value))
146                         bb_error_msg_and_die("SIZE error: %s", buf + 4);
147                 filesize = value;
148         } else {
149                 filesize = -1;
150                 do_continue = 0;
151         }
152
153         if ((local_path[0] == '-') && (local_path[1] == '\0')) {
154                 fd_local = STDOUT_FILENO;
155                 do_continue = 0;
156         }
157
158         if (do_continue) {
159                 struct stat sbuf;
160                 if (lstat(local_path, &sbuf) < 0) {
161                         bb_perror_msg_and_die("fstat()");
162                 }
163                 if (sbuf.st_size > 0) {
164                         beg_range = sbuf.st_size;
165                 } else {
166                         do_continue = 0;
167                 }
168         }
169
170         if (do_continue) {
171                 sprintf(buf, "REST %ld", (long)beg_range);
172                 if (ftpcmd(buf, NULL, control_stream, buf) != 350) {
173                         do_continue = 0;
174                 } else {
175                         filesize -= beg_range;
176                 }
177         }
178
179         if (ftpcmd("RETR ", server_path, control_stream, buf) > 150) {
180                 bb_error_msg_and_die("RETR error: %s", buf + 4);
181         }
182
183         /* only make a local file if we know that one exists on the remote server */
184         if (fd_local == -1) {
185                 if (do_continue) {
186                         fd_local = bb_xopen(local_path, O_APPEND | O_WRONLY);
187                 } else {
188                         fd_local = bb_xopen(local_path, O_CREAT | O_TRUNC | O_WRONLY);
189                 }
190         }
191
192         /* Copy the file */
193         if (filesize != -1) {
194                 if (-1 == bb_copyfd_size(fd_data, fd_local, filesize))
195                         exit(EXIT_FAILURE);
196         } else {
197                 if (-1 == bb_copyfd_eof(fd_data, fd_local))
198                         exit(EXIT_FAILURE);
199         }
200
201         /* close it all down */
202         close(fd_data);
203         if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
204                 bb_error_msg_and_die("ftp error: %s", buf + 4);
205         }
206         ftpcmd("QUIT", NULL, control_stream, buf);
207
208         return(EXIT_SUCCESS);
209 }
210 #endif
211
212 #if !ENABLE_FTPPUT
213 #define ftp_send 0
214 #else
215 static int ftp_send(ftp_host_info_t *server, FILE *control_stream,
216                 const char *server_path, char *local_path)
217 {
218         struct stat sbuf;
219         char buf[512];
220         int fd_data;
221         int fd_local;
222         int response;
223
224         /*  Connect to the data socket */
225         if (ftpcmd("PASV", NULL, control_stream, buf) != 227) {
226                 bb_error_msg_and_die("PASV error: %s", buf + 4);
227         }
228         fd_data = xconnect_ftpdata(server, buf);
229
230         /* get the local file */
231         if ((local_path[0] == '-') && (local_path[1] == '\0')) {
232                 fd_local = STDIN_FILENO;
233         } else {
234                 fd_local = bb_xopen(local_path, O_RDONLY);
235                 fstat(fd_local, &sbuf);
236
237                 sprintf(buf, "ALLO %lu", (unsigned long)sbuf.st_size);
238                 response = ftpcmd(buf, NULL, control_stream, buf);
239                 switch (response) {
240                 case 200:
241                 case 202:
242                         break;
243                 default:
244                         close(fd_local);
245                         bb_error_msg_and_die("ALLO error: %s", buf + 4);
246                         break;
247                 }
248         }
249         response = ftpcmd("STOR ", server_path, control_stream, buf);
250         switch (response) {
251         case 125:
252         case 150:
253                 break;
254         default:
255                 close(fd_local);
256                 bb_error_msg_and_die("STOR error: %s", buf + 4);
257         }
258
259         /* transfer the file  */
260         if (bb_copyfd_eof(fd_local, fd_data) == -1) {
261                 exit(EXIT_FAILURE);
262         }
263
264         /* close it all down */
265         close(fd_data);
266         if (ftpcmd(NULL, NULL, control_stream, buf) != 226) {
267                 bb_error_msg_and_die("error: %s", buf + 4);
268         }
269         ftpcmd("QUIT", NULL, control_stream, buf);
270
271         return(EXIT_SUCCESS);
272 }
273 #endif
274
275 #define FTPGETPUT_OPT_CONTINUE  1
276 #define FTPGETPUT_OPT_VERBOSE   2
277 #define FTPGETPUT_OPT_USER      4
278 #define FTPGETPUT_OPT_PASSWORD  8
279 #define FTPGETPUT_OPT_PORT      16
280
281 static const struct option ftpgetput_long_options[] = {
282         {"continue", 1, NULL, 'c'},
283         {"verbose", 0, NULL, 'v'},
284         {"username", 1, NULL, 'u'},
285         {"password", 1, NULL, 'p'},
286         {"port", 1, NULL, 'P'},
287         {0, 0, 0, 0}
288 };
289
290 int ftpgetput_main(int argc, char **argv)
291 {
292         /* content-length of the file */
293         unsigned long opt;
294         char *port = "ftp";
295
296         /* socket to ftp server */
297         FILE *control_stream;
298         struct sockaddr_in s_in;
299
300         /* continue a prev transfer (-c) */
301         ftp_host_info_t *server;
302
303         int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL;
304
305         /* Check to see if the command is ftpget or ftput */
306         if (ENABLE_FTPPUT && (!ENABLE_FTPGET || bb_applet_name[3] == 'p')) {
307                 ftp_action = ftp_send;
308         }
309         if (ENABLE_FTPGET && (!ENABLE_FTPPUT || bb_applet_name[3] == 'g')) {
310                 ftp_action = ftp_recieve;
311         }
312
313         /* Set default values */
314         server = xmalloc(sizeof(ftp_host_info_t));
315         server->user = "anonymous";
316         server->password = "busybox@";
317         verbose_flag = 0;
318
319         /*
320          * Decipher the command line
321          */
322         bb_applet_long_options = ftpgetput_long_options;
323         opt = bb_getopt_ulflags(argc, argv, "cvu:p:P:", &server->user, &server->password, &port);
324
325         /* Process the non-option command line arguments */
326         if (argc - optind != 3) {
327                 bb_show_usage();
328         }
329
330         if (opt & FTPGETPUT_OPT_CONTINUE) {
331                 do_continue = 1;
332         }
333         if (opt & FTPGETPUT_OPT_VERBOSE) {
334                 verbose_flag = 1;
335         }
336
337         /* We want to do exactly _one_ DNS lookup, since some
338          * sites (i.e. ftp.us.debian.org) use round-robin DNS
339          * and we want to connect to only one IP... */
340         server->s_in = &s_in;
341         bb_lookup_host(&s_in, argv[optind]);
342         s_in.sin_port = bb_lookup_port(port, "tcp", 21);
343         if (verbose_flag) {
344                 printf("Connecting to %s[%s]:%d\n",
345                                 argv[optind], inet_ntoa(s_in.sin_addr), ntohs(s_in.sin_port));
346         }
347
348         /*  Connect/Setup/Configure the FTP session */
349         control_stream = ftp_login(server);
350
351         return(ftp_action(server, control_stream, argv[optind + 1], argv[optind + 2]));
352 }
353
354 /*
355 Local Variables:
356 c-file-style: "linux"
357 c-basic-offset: 4
358 tab-width: 4
359 End:
360 */