Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame^] | 3 | * ftpget |
| 4 | * |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 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@optushome.com.au> |
| 9 | * |
| 10 | * Based on wget.c by Chip Rosenthal Covad Communications |
| 11 | * <chip@laserlink.net> |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License as published by |
| 15 | * the Free Software Foundation; either version 2 of the License, or |
| 16 | * (at your option) any later version. |
| 17 | * |
| 18 | * This program is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 21 | * General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License |
| 24 | * along with this program; if not, write to the Free Software |
| 25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 26 | * |
| 27 | */ |
| 28 | |
| 29 | #include <sys/types.h> |
| 30 | #include <sys/ioctl.h> |
| 31 | #include <sys/time.h> |
| 32 | #include <sys/stat.h> |
| 33 | |
| 34 | #include <ctype.h> |
| 35 | #include <errno.h> |
| 36 | #include <fcntl.h> |
| 37 | #include <getopt.h> |
| 38 | #include <stdio.h> |
| 39 | #include <stdlib.h> |
| 40 | #include <signal.h> |
| 41 | #include <string.h> |
| 42 | #include <unistd.h> |
| 43 | |
| 44 | #include <netinet/in.h> |
| 45 | #include <netdb.h> |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 46 | #include <sys/socket.h> |
| 47 | #include <arpa/inet.h> |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 48 | |
| 49 | #include "busybox.h" |
| 50 | |
| 51 | typedef struct ftp_host_info_s { |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 52 | char *user; |
| 53 | char *password; |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 54 | struct sockaddr_in *s_in; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 55 | } ftp_host_info_t; |
| 56 | |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 57 | static char verbose_flag = 0; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 58 | static char do_continue = 0; |
| 59 | |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 60 | static int ftpcmd(const char *s1, const char *s2, FILE *stream, char *buf) |
| 61 | { |
| 62 | if (verbose_flag) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 63 | bb_error_msg("cmd %s%s", s1, s2); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | if (s1) { |
| 67 | if (s2) { |
| 68 | fprintf(stream, "%s%s\n", s1, s2); |
| 69 | } else { |
| 70 | fprintf(stream, "%s\n", s1); |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | do { |
| 75 | if (fgets(buf, 510, stream) == NULL) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 76 | bb_perror_msg_and_die("fgets()"); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 77 | } |
| 78 | } while (! isdigit(buf[0]) || buf[3] != ' '); |
| 79 | |
| 80 | return atoi(buf); |
| 81 | } |
| 82 | |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 83 | static int xconnect_ftpdata(ftp_host_info_t *server, const char *buf) |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 84 | { |
| 85 | char *buf_ptr; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 86 | unsigned short port_num; |
| 87 | |
| 88 | buf_ptr = strrchr(buf, ','); |
| 89 | *buf_ptr = '\0'; |
| 90 | port_num = atoi(buf_ptr + 1); |
| 91 | |
| 92 | buf_ptr = strrchr(buf, ','); |
| 93 | *buf_ptr = '\0'; |
| 94 | port_num += atoi(buf_ptr + 1) * 256; |
| 95 | |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 96 | server->s_in->sin_port=htons(port_num); |
| 97 | return(xconnect(server->s_in)); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | static FILE *ftp_login(ftp_host_info_t *server) |
| 101 | { |
| 102 | FILE *control_stream; |
| 103 | char buf[512]; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 104 | |
| 105 | /* Connect to the command socket */ |
Glenn L McGrath | 236e93d | 2003-12-20 05:43:34 +0000 | [diff] [blame] | 106 | control_stream = fdopen(xconnect(server->s_in), "r+"); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 107 | if (control_stream == NULL) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 108 | bb_perror_msg_and_die("Couldnt open control stream"); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | if (ftpcmd(NULL, NULL, control_stream, buf) != 220) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 112 | bb_error_msg_and_die("%s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | /* Login to the server */ |
| 116 | switch (ftpcmd("USER ", server->user, control_stream, buf)) { |
| 117 | case 230: |
| 118 | break; |
| 119 | case 331: |
| 120 | if (ftpcmd("PASS ", server->password, control_stream, buf) != 230) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 121 | bb_error_msg_and_die("PASS error: %s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 122 | } |
| 123 | break; |
| 124 | default: |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 125 | bb_error_msg_and_die("USER error: %s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | ftpcmd("TYPE I", NULL, control_stream, buf); |
| 129 | |
| 130 | return(control_stream); |
| 131 | } |
| 132 | |
| 133 | #ifdef CONFIG_FTPGET |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame^] | 134 | static int ftp_recieve(ftp_host_info_t *server, FILE *control_stream, |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 135 | const char *local_path, char *server_path) |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 136 | { |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 137 | char buf[512]; |
| 138 | off_t filesize = 0; |
| 139 | int fd_data; |
Glenn L McGrath | 236e93d | 2003-12-20 05:43:34 +0000 | [diff] [blame] | 140 | int fd_local = -1; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 141 | off_t beg_range = 0; |
| 142 | |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 143 | /* Connect to the data socket */ |
| 144 | if (ftpcmd("PASV", NULL, control_stream, buf) != 227) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 145 | bb_error_msg_and_die("PASV error: %s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 146 | } |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 147 | fd_data = xconnect_ftpdata(server, buf); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 148 | |
| 149 | if (ftpcmd("SIZE ", server_path, control_stream, buf) == 213) { |
Eric Andersen | 2479445 | 2004-03-06 22:11:45 +0000 | [diff] [blame] | 150 | unsigned long value=filesize; |
| 151 | if (safe_strtoul(buf + 4, &filesize)) |
| 152 | bb_error_msg_and_die("SIZE error: %s", buf + 4); |
| 153 | filesize = value; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 154 | } |
| 155 | |
Glenn L McGrath | 236e93d | 2003-12-20 05:43:34 +0000 | [diff] [blame] | 156 | if ((local_path[0] == '-') && (local_path[1] == '\0')) { |
| 157 | fd_local = fileno(stdout); |
| 158 | do_continue = 0; |
| 159 | } |
| 160 | |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 161 | if (do_continue) { |
| 162 | struct stat sbuf; |
Glenn L McGrath | 236e93d | 2003-12-20 05:43:34 +0000 | [diff] [blame] | 163 | if (lstat(local_path, &sbuf) < 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 164 | bb_perror_msg_and_die("fstat()"); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 165 | } |
| 166 | if (sbuf.st_size > 0) { |
| 167 | beg_range = sbuf.st_size; |
| 168 | } else { |
| 169 | do_continue = 0; |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | if (do_continue) { |
Eric Andersen | 2a41ec6 | 2003-06-20 09:22:12 +0000 | [diff] [blame] | 174 | sprintf(buf, "REST %ld", (long)beg_range); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 175 | if (ftpcmd(buf, NULL, control_stream, buf) != 350) { |
| 176 | do_continue = 0; |
| 177 | } else { |
| 178 | filesize -= beg_range; |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | if (ftpcmd("RETR ", server_path, control_stream, buf) > 150) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 183 | bb_error_msg_and_die("RETR error: %s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Glenn L McGrath | 1643f41 | 2002-12-18 02:47:40 +0000 | [diff] [blame] | 186 | /* only make a local file if we know that one exists on the remote server */ |
Glenn L McGrath | 236e93d | 2003-12-20 05:43:34 +0000 | [diff] [blame] | 187 | if (fd_local == -1) { |
| 188 | if (do_continue) { |
| 189 | fd_local = bb_xopen(local_path, O_APPEND | O_WRONLY); |
| 190 | } else { |
| 191 | fd_local = bb_xopen(local_path, O_CREAT | O_TRUNC | O_WRONLY); |
| 192 | } |
Glenn L McGrath | 1643f41 | 2002-12-18 02:47:40 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 195 | /* Copy the file */ |
Glenn L McGrath | 7ffe133 | 2003-11-21 22:24:57 +0000 | [diff] [blame] | 196 | if (bb_copyfd_size(fd_data, fd_local, filesize) == -1) { |
Glenn L McGrath | 25fe94f | 2002-12-13 08:20:44 +0000 | [diff] [blame] | 197 | exit(EXIT_FAILURE); |
| 198 | } |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 199 | |
| 200 | /* close it all down */ |
| 201 | close(fd_data); |
| 202 | if (ftpcmd(NULL, NULL, control_stream, buf) != 226) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 203 | bb_error_msg_and_die("ftp error: %s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 204 | } |
| 205 | ftpcmd("QUIT", NULL, control_stream, buf); |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame^] | 206 | |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 207 | return(EXIT_SUCCESS); |
| 208 | } |
| 209 | #endif |
| 210 | |
| 211 | #ifdef CONFIG_FTPPUT |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame^] | 212 | static int ftp_send(ftp_host_info_t *server, FILE *control_stream, |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 213 | const char *server_path, char *local_path) |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 214 | { |
| 215 | struct stat sbuf; |
| 216 | char buf[512]; |
| 217 | int fd_data; |
| 218 | int fd_local; |
| 219 | int response; |
| 220 | |
| 221 | /* Connect to the data socket */ |
| 222 | if (ftpcmd("PASV", NULL, control_stream, buf) != 227) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 223 | bb_error_msg_and_die("PASV error: %s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 224 | } |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 225 | fd_data = xconnect_ftpdata(server, buf); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 226 | |
| 227 | if (ftpcmd("CWD ", server_path, control_stream, buf) != 250) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 228 | bb_error_msg_and_die("CWD error: %s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | /* get the local file */ |
Glenn L McGrath | 236e93d | 2003-12-20 05:43:34 +0000 | [diff] [blame] | 232 | if ((local_path[0] == '-') && (local_path[1] == '\0')) { |
| 233 | fd_local = fileno(stdin); |
| 234 | } else { |
| 235 | fd_local = bb_xopen(local_path, O_RDONLY); |
| 236 | fstat(fd_local, &sbuf); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 237 | |
Glenn L McGrath | 236e93d | 2003-12-20 05:43:34 +0000 | [diff] [blame] | 238 | sprintf(buf, "ALLO %lu", (unsigned long)sbuf.st_size); |
| 239 | response = ftpcmd(buf, NULL, control_stream, buf); |
| 240 | switch (response) { |
| 241 | case 200: |
| 242 | case 202: |
| 243 | break; |
| 244 | default: |
| 245 | close(fd_local); |
| 246 | bb_error_msg_and_die("ALLO error: %s", buf + 4); |
| 247 | break; |
| 248 | } |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 249 | } |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 250 | response = ftpcmd("STOR ", local_path, control_stream, buf); |
| 251 | switch (response) { |
| 252 | case 125: |
| 253 | case 150: |
| 254 | break; |
| 255 | default: |
| 256 | close(fd_local); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 257 | bb_error_msg_and_die("STOR error: %s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | /* transfer the file */ |
Glenn L McGrath | 7ffe133 | 2003-11-21 22:24:57 +0000 | [diff] [blame] | 261 | if (bb_copyfd_eof(fd_local, fd_data) == -1) { |
Glenn L McGrath | 25fe94f | 2002-12-13 08:20:44 +0000 | [diff] [blame] | 262 | exit(EXIT_FAILURE); |
| 263 | } |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 264 | |
| 265 | /* close it all down */ |
| 266 | close(fd_data); |
| 267 | if (ftpcmd(NULL, NULL, control_stream, buf) != 226) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 268 | bb_error_msg_and_die("error: %s", buf + 4); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 269 | } |
| 270 | ftpcmd("QUIT", NULL, control_stream, buf); |
| 271 | |
| 272 | return(EXIT_SUCCESS); |
| 273 | } |
| 274 | #endif |
| 275 | |
Glenn L McGrath | b51eb26 | 2003-12-19 10:37:52 +0000 | [diff] [blame] | 276 | #define FTPGETPUT_OPT_CONTINUE 1 |
| 277 | #define FTPGETPUT_OPT_VERBOSE 2 |
| 278 | #define FTPGETPUT_OPT_USER 4 |
| 279 | #define FTPGETPUT_OPT_PASSWORD 8 |
| 280 | #define FTPGETPUT_OPT_PORT 16 |
| 281 | |
| 282 | static const struct option ftpgetput_long_options[] = { |
| 283 | {"continue", 1, NULL, 'c'}, |
| 284 | {"verbose", 0, NULL, 'v'}, |
| 285 | {"username", 1, NULL, 'u'}, |
| 286 | {"password", 1, NULL, 'p'}, |
| 287 | {"port", 1, NULL, 'P'}, |
| 288 | {0, 0, 0, 0} |
| 289 | }; |
| 290 | |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 291 | int ftpgetput_main(int argc, char **argv) |
| 292 | { |
| 293 | /* content-length of the file */ |
Glenn L McGrath | b51eb26 | 2003-12-19 10:37:52 +0000 | [diff] [blame] | 294 | unsigned long opt; |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 295 | char *port = "ftp"; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 296 | |
| 297 | /* socket to ftp server */ |
| 298 | FILE *control_stream; |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 299 | struct sockaddr_in s_in; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 300 | |
| 301 | /* continue a prev transfer (-c) */ |
| 302 | ftp_host_info_t *server; |
| 303 | |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 304 | int (*ftp_action)(ftp_host_info_t *, FILE *, const char *, char *) = NULL; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 305 | |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 306 | /* Check to see if the command is ftpget or ftput */ |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 307 | #ifdef CONFIG_FTPPUT |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 308 | # ifdef CONFIG_FTPGET |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 309 | if (bb_applet_name[3] == 'p') { |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 310 | ftp_action = ftp_send; |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 311 | } |
| 312 | # else |
| 313 | ftp_action = ftp_send; |
| 314 | # endif |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 315 | #endif |
| 316 | #ifdef CONFIG_FTPGET |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 317 | # ifdef CONFIG_FTPPUT |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 318 | if (bb_applet_name[3] == 'g') { |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 319 | ftp_action = ftp_recieve; |
| 320 | } |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 321 | # else |
| 322 | ftp_action = ftp_recieve; |
| 323 | # endif |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 324 | #endif |
| 325 | |
| 326 | /* Set default values */ |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 327 | server = xmalloc(sizeof(ftp_host_info_t)); |
| 328 | server->user = "anonymous"; |
| 329 | server->password = "busybox@"; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 330 | verbose_flag = 0; |
| 331 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame^] | 332 | /* |
| 333 | * Decipher the command line |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 334 | */ |
Glenn L McGrath | b51eb26 | 2003-12-19 10:37:52 +0000 | [diff] [blame] | 335 | bb_applet_long_options = ftpgetput_long_options; |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 336 | opt = bb_getopt_ulflags(argc, argv, "cvu:p:P:", &server->user, &server->password, &port); |
Glenn L McGrath | 236e93d | 2003-12-20 05:43:34 +0000 | [diff] [blame] | 337 | |
| 338 | /* Process the non-option command line arguments */ |
| 339 | if (argc - optind != 3) { |
| 340 | bb_show_usage(); |
| 341 | } |
| 342 | |
Glenn L McGrath | b51eb26 | 2003-12-19 10:37:52 +0000 | [diff] [blame] | 343 | if (opt & FTPGETPUT_OPT_CONTINUE) { |
| 344 | do_continue = 1; |
| 345 | } |
| 346 | if (opt & FTPGETPUT_OPT_VERBOSE) { |
| 347 | verbose_flag = 1; |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 348 | } |
| 349 | |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 350 | /* We want to do exactly _one_ DNS lookup, since some |
| 351 | * sites (i.e. ftp.us.debian.org) use round-robin DNS |
| 352 | * and we want to connect to only one IP... */ |
| 353 | server->s_in = &s_in; |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 354 | bb_lookup_host(&s_in, argv[optind]); |
Glenn L McGrath | 036dbaa | 2004-01-17 05:03:31 +0000 | [diff] [blame] | 355 | s_in.sin_port = bb_lookup_port(port, "tcp", 21); |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 356 | if (verbose_flag) { |
Glenn L McGrath | 266c1f5 | 2003-12-20 03:19:27 +0000 | [diff] [blame] | 357 | printf("Connecting to %s[%s]:%d\n", |
| 358 | argv[optind], inet_ntoa(s_in.sin_addr), ntohs(s_in.sin_port)); |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | /* Connect/Setup/Configure the FTP session */ |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 362 | control_stream = ftp_login(server); |
| 363 | |
Eric Andersen | 04d055f | 2003-11-03 21:20:18 +0000 | [diff] [blame] | 364 | return(ftp_action(server, control_stream, argv[optind + 1], argv[optind + 2])); |
Glenn L McGrath | 02d7cbf | 2002-12-13 02:43:50 +0000 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /* |
| 368 | Local Variables: |
| 369 | c-file-style: "linux" |
| 370 | c-basic-offset: 4 |
| 371 | tab-width: 4 |
| 372 | End: |
| 373 | */ |