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