blob: 8261d9cb626c4a1f0718499cf631ecc7bf233e38 [file] [log] [blame]
Eric Andersen96700832000-09-04 15:15:55 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersen79757c92001-04-05 21:45:54 +00003 * wget - retrieve a file using HTTP or FTP
Eric Andersen96700832000-09-04 15:15:55 +00004 *
Eric Andersen4e573f42000-11-14 23:29:24 +00005 * Chip Rosenthal Covad Communications <chip@laserlink.net>
Eric Andersenb520e082000-10-03 00:21:45 +00006 *
Eric Andersen96700832000-09-04 15:15:55 +00007 */
8
Eric Andersen96700832000-09-04 15:15:55 +00009#include <stdio.h>
Eric Andersendff9d542001-01-26 02:04:49 +000010#include <errno.h>
Eric Andersen96700832000-09-04 15:15:55 +000011#include <stdlib.h>
12#include <unistd.h>
13#include <ctype.h>
14#include <string.h>
Eric Andersenb520e082000-10-03 00:21:45 +000015#include <unistd.h>
16#include <signal.h>
17#include <sys/ioctl.h>
Eric Andersen96700832000-09-04 15:15:55 +000018
Eric Andersenb520e082000-10-03 00:21:45 +000019#include <sys/time.h>
Eric Andersen96700832000-09-04 15:15:55 +000020#include <sys/types.h>
21#include <sys/stat.h>
22#include <sys/socket.h>
23#include <netinet/in.h>
24#include <arpa/inet.h>
25#include <netdb.h>
26
Eric Andersencbe31da2001-02-20 06:14:08 +000027#include "busybox.h"
28
Eric Andersened3ef502001-01-27 08:24:39 +000029/* Stupid libc5 doesn't define this... */
30#ifndef timersub
31#define timersub(a, b, result) \
32 do { \
33 (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \
34 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
35 if ((result)->tv_usec < 0) { \
36 --(result)->tv_sec; \
37 (result)->tv_usec += 1000000; \
38 } \
39 } while (0)
40#endif
Eric Andersen96700832000-09-04 15:15:55 +000041
Eric Andersen79757c92001-04-05 21:45:54 +000042struct host_info {
43 char *host;
44 int port;
45 char *path;
46 int is_ftp;
47 char *user;
48};
49
50static void parse_url(char *url, struct host_info *h);
Eric Andersen3e6ff902001-03-09 21:24:12 +000051static FILE *open_socket(char *host, int port);
52static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
Eric Andersen79757c92001-04-05 21:45:54 +000053static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf);
Eric Andersen3e6ff902001-03-09 21:24:12 +000054static void progressmeter(int flag);
Eric Andersen96700832000-09-04 15:15:55 +000055
Eric Andersenb520e082000-10-03 00:21:45 +000056/* Globals (can be accessed from signal handlers */
57static off_t filesize = 0; /* content-length of the file */
Eric Andersen6d7fa432001-04-10 18:17:05 +000058static int chunked = 0; /* chunked transfer encoding */
Eric Andersen370fb082001-01-20 20:07:00 +000059#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +000060static char *curfile; /* Name of current file being transferred. */
61static struct timeval start; /* Time a transfer started. */
Mark Whitley30ac01c2001-04-17 18:13:16 +000062static volatile unsigned long statbytes = 0; /* Number of bytes transferred so far. */
Eric Andersenb520e082000-10-03 00:21:45 +000063/* For progressmeter() -- number of seconds before xfer considered "stalled" */
Mark Whitley59ab0252001-01-23 22:30:04 +000064static const int STALLTIME = 5;
Eric Andersenb520e082000-10-03 00:21:45 +000065#endif
Eric Andersen7d697012001-01-24 20:28:35 +000066
Eric Andersen3e6ff902001-03-09 21:24:12 +000067static void close_and_delete_outfile(FILE* output, char *fname_out, int do_continue)
Eric Andersen7d697012001-01-24 20:28:35 +000068{
69 if (output != stdout && do_continue==0) {
70 fclose(output);
71 unlink(fname_out);
72 }
73}
Eric Andersen96700832000-09-04 15:15:55 +000074
Eric Andersen79757c92001-04-05 21:45:54 +000075#define close_delete_and_die(s...) { \
76 close_and_delete_outfile(output, fname_out, do_continue); \
77 error_msg_and_die(s); }
78
79
80#ifdef BB_FEATURE_WGET_AUTHENTICATION
81/*
82 * Base64-encode character string
83 * oops... isn't something similar in uuencode.c?
84 * It would be better to use already existing code
85 */
86char *base64enc(char *p, char *buf, int len) {
87
88 char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
89 "0123456789+/";
90 char *s = buf;
91
92 while(*p) {
93 if (s >= buf+len-4)
94 error_msg_and_die("buffer overflow");
95 *(s++) = al[(*p >> 2) & 0x3F];
96 *(s++) = al[((*p << 4) & 0x30) | ((*(p+1) >> 4) & 0x0F)];
97 *s = *(s+1) = '=';
98 *(s+2) = 0;
99 if (! *(++p)) break;
100 *(s++) = al[((*p << 2) & 0x3C) | ((*(p+1) >> 6) & 0x03)];
101 if (! *(++p)) break;
102 *(s++) = al[*(p++) & 0x3F];
103 }
104
105 return buf;
106}
107#endif
108
Eric Andersen96700832000-09-04 15:15:55 +0000109int wget_main(int argc, char **argv)
110{
Eric Andersen79757c92001-04-05 21:45:54 +0000111 int n, try=5, status;
112 int port;
113 char *proxy;
Eric Andersen29edd002000-12-09 16:55:35 +0000114 char *s, buf[512];
115 struct stat sbuf;
116
Eric Andersen79757c92001-04-05 21:45:54 +0000117 struct host_info server, target;
118
119 FILE *sfp = NULL; /* socket to web/ftp server */
120 FILE *dfp = NULL; /* socket to ftp server (data) */
Eric Andersen96700832000-09-04 15:15:55 +0000121 char *fname_out = NULL; /* where to direct output (-O) */
122 int do_continue = 0; /* continue a prev transfer (-c) */
123 long beg_range = 0L; /* range at which continue begins */
124 int got_clen = 0; /* got content-length: from server */
Eric Andersen29edd002000-12-09 16:55:35 +0000125 FILE *output; /* socket to web server */
126 int quiet_flag = FALSE; /* Be verry, verry quiet... */
127
Eric Andersen96700832000-09-04 15:15:55 +0000128 /*
129 * Crack command line.
130 */
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000131 while ((n = getopt(argc, argv, "cqO:")) != EOF) {
Eric Andersen96700832000-09-04 15:15:55 +0000132 switch (n) {
133 case 'c':
134 ++do_continue;
135 break;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000136 case 'q':
137 quiet_flag = TRUE;
138 break;
Eric Andersen96700832000-09-04 15:15:55 +0000139 case 'O':
Randolph Chung02553a22000-12-07 03:53:47 +0000140 /* can't set fname_out to NULL if outputting to stdout, because
141 * this gets interpreted as the auto-gen output filename
142 * case below - tausq@debian.org
143 */
Matt Kraai65317ea2001-04-11 20:03:01 +0000144 fname_out = optarg;
Eric Andersen96700832000-09-04 15:15:55 +0000145 break;
146 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000147 show_usage();
Eric Andersen96700832000-09-04 15:15:55 +0000148 }
149 }
Eric Andersen25b669c2000-10-02 23:19:38 +0000150
Eric Andersen96700832000-09-04 15:15:55 +0000151 if (argc - optind != 1)
Eric Andersen67991cf2001-02-14 21:23:06 +0000152 show_usage();
Eric Andersen25b669c2000-10-02 23:19:38 +0000153
Eric Andersen79757c92001-04-05 21:45:54 +0000154 parse_url(argv[optind], &target);
155 server.host = target.host;
156 server.port = target.port;
157
Eric Andersen96700832000-09-04 15:15:55 +0000158 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000159 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000160 */
Eric Andersen79757c92001-04-05 21:45:54 +0000161 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
162 if (proxy)
163 parse_url(xstrdup(proxy), &server);
Eric Andersen29edd002000-12-09 16:55:35 +0000164
165 /* Guess an output filename */
166 if (!fname_out) {
167 fname_out =
Eric Andersen370fb082001-01-20 20:07:00 +0000168#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000169 curfile =
170#endif
Eric Andersen79757c92001-04-05 21:45:54 +0000171 get_last_path_component(target.path);
Eric Andersen29edd002000-12-09 16:55:35 +0000172 if (fname_out==NULL || strlen(fname_out)<1) {
173 fname_out =
Eric Andersen370fb082001-01-20 20:07:00 +0000174#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000175 curfile =
176#endif
177 "index.html";
178 }
Eric Andersen370fb082001-01-20 20:07:00 +0000179#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000180 } else {
Eric Andersen79757c92001-04-05 21:45:54 +0000181 curfile = get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000182#endif
183 }
Eric Andersen7d697012001-01-24 20:28:35 +0000184 if (do_continue && !fname_out)
Matt Kraaidd19c692001-01-31 19:00:21 +0000185 error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000186
Eric Andersen96700832000-09-04 15:15:55 +0000187
188 /*
Eric Andersen29edd002000-12-09 16:55:35 +0000189 * Open the output file stream.
Eric Andersen96700832000-09-04 15:15:55 +0000190 */
Matt Kraai65317ea2001-04-11 20:03:01 +0000191 if (strcmp(fname_out, "-") == 0) {
Randolph Chung02553a22000-12-07 03:53:47 +0000192 output = stdout;
Matt Kraai65317ea2001-04-11 20:03:01 +0000193 } else {
194 output = xfopen(fname_out, (do_continue ? "a" : "w"));
Eric Andersen96700832000-09-04 15:15:55 +0000195 }
196
197 /*
198 * Determine where to start transfer.
199 */
200 if (do_continue) {
Eric Andersenb520e082000-10-03 00:21:45 +0000201 if (fstat(fileno(output), &sbuf) < 0)
Matt Kraai0dab8292000-12-18 03:08:29 +0000202 perror_msg_and_die("fstat()");
Eric Andersen96700832000-09-04 15:15:55 +0000203 if (sbuf.st_size > 0)
204 beg_range = sbuf.st_size;
205 else
206 do_continue = 0;
207 }
208
Eric Andersen79757c92001-04-05 21:45:54 +0000209 if (proxy || !target.is_ftp) {
210 /*
211 * HTTP session
212 */
213 do {
214 if (! --try)
215 close_delete_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000216
Eric Andersen79757c92001-04-05 21:45:54 +0000217 /*
218 * Open socket to http server
219 */
220 if (sfp) fclose(sfp);
221 sfp = open_socket(server.host, server.port);
222
223 /*
224 * Send HTTP request.
225 */
226 if (proxy) {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000227 fprintf(sfp, "GET %stp://%s:%d/%s HTTP/1.1\r\n",
Eric Andersen79757c92001-04-05 21:45:54 +0000228 target.is_ftp ? "f" : "ht", target.host,
229 target.port, target.path);
230 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000231 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000232 }
Eric Andersen96700832000-09-04 15:15:55 +0000233
Eric Andersen79757c92001-04-05 21:45:54 +0000234 fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
235
236#ifdef BB_FEATURE_WGET_AUTHENTICATION
237 if (target.user) {
238 fprintf(sfp, "Authorization: Basic %s\r\n",
239 base64enc(target.user, buf, sizeof(buf)));
240 }
241 if (proxy && server.user) {
242 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
243 base64enc(server.user, buf, sizeof(buf)));
244 }
245#endif
246
Eric Andersenb520e082000-10-03 00:21:45 +0000247 if (do_continue)
Eric Andersen79757c92001-04-05 21:45:54 +0000248 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
249 fprintf(sfp,"Connection: close\r\n\r\n");
250
251 /*
252 * Retrieve HTTP response line and check for "200" status code.
253 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000254read_response: if (fgets(buf, sizeof(buf), sfp) == NULL)
Eric Andersen79757c92001-04-05 21:45:54 +0000255 close_delete_and_die("no response from server");
256
257 for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
258 ;
259 for ( ; isspace(*s) ; ++s)
260 ;
261 switch (status = atoi(s)) {
262 case 0:
Eric Andersen6d7fa432001-04-10 18:17:05 +0000263 case 100:
264 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL);
265 goto read_response;
Eric Andersen79757c92001-04-05 21:45:54 +0000266 case 200:
267 if (do_continue && output != stdout)
268 output = freopen(fname_out, "w", output);
269 do_continue = 0;
270 break;
271 case 300: /* redirection */
272 case 301:
273 case 302:
274 case 303:
275 break;
276 case 206:
277 if (do_continue)
278 break;
279 /*FALLTHRU*/
280 default:
281 chomp(buf);
282 close_delete_and_die("server returned error %d: %s", atoi(s), buf);
283 }
284
285 /*
286 * Retrieve HTTP headers.
287 */
288 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
289 if (strcasecmp(buf, "content-length") == 0) {
290 filesize = atol(s);
291 got_clen = 1;
292 continue;
293 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000294 if (strcasecmp(buf, "transfer-encoding") == 0) {
295 if (strcasecmp(s, "chunked") == 0) {
296 chunked = got_clen = 1;
297 } else {
Eric Andersen79757c92001-04-05 21:45:54 +0000298 close_delete_and_die("server wants to do %s transfer encoding", s);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000299 }
300 }
Eric Andersen79757c92001-04-05 21:45:54 +0000301 if (strcasecmp(buf, "location") == 0) {
302 if (s[0] == '/')
303 target.path = xstrdup(s+1);
304 else {
305 parse_url(xstrdup(s), &target);
306 if (!proxy) {
307 server.host = target.host;
308 server.port = target.port;
309 }
310 }
311 }
312 }
313 } while(status >= 300);
314
315 dfp = sfp;
316 }
317 else
318 {
319 /*
320 * FTP session
321 */
322 if (! target.user)
323 target.user = xstrdup("anonymous:busybox@");
324
325 sfp = open_socket(server.host, server.port);
326 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
327 close_delete_and_die("%s", buf+4);
328
329 /*
330 * Splitting username:password pair,
331 * trying to log in
332 */
333 s = strchr(target.user, ':');
334 if (s)
335 *(s++) = '\0';
336 switch(ftpcmd("USER ", target.user, sfp, buf)) {
337 case 230:
Eric Andersenb520e082000-10-03 00:21:45 +0000338 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000339 case 331:
340 if (ftpcmd("PASS ", s, sfp, buf) == 230)
341 break;
342 /* FALLTHRU (failed login) */
343 default:
344 close_delete_and_die("ftp login: %s", buf+4);
345 }
346
347 ftpcmd("CDUP", NULL, sfp, buf);
348 ftpcmd("TYPE I", NULL, sfp, buf);
349
350 /*
351 * Querying file size
352 */
353 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
354 filesize = atol(buf+4);
Eric Andersen96700832000-09-04 15:15:55 +0000355 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000356 }
Eric Andersen79757c92001-04-05 21:45:54 +0000357
358 /*
359 * Entering passive mode
360 */
361 if (ftpcmd("PASV", NULL, sfp, buf) != 227)
362 close_delete_and_die("PASV: %s", buf+4);
363 s = strrchr(buf, ',');
364 *s = 0;
365 port = atoi(s+1);
366 s = strrchr(buf, ',');
367 port += atoi(s+1) * 256;
368 dfp = open_socket(server.host, port);
369
370 if (do_continue) {
371 sprintf(buf, "REST %ld", beg_range);
372 if (ftpcmd(buf, NULL, sfp, buf) != 350) {
373 if (output != stdout)
374 output = freopen(fname_out, "w", output);
375 do_continue = 0;
376 } else
377 filesize -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000378 }
Eric Andersen79757c92001-04-05 21:45:54 +0000379
380 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
381 close_delete_and_die("RETR: %s", buf+4);
382
Eric Andersen96700832000-09-04 15:15:55 +0000383 }
384
Eric Andersen79757c92001-04-05 21:45:54 +0000385
Eric Andersen96700832000-09-04 15:15:55 +0000386 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000387 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000388 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000389 if (chunked) {
390 fgets(buf, sizeof(buf), dfp);
391 filesize = strtol(buf, (char **) NULL, 16);
392 }
Eric Andersen370fb082001-01-20 20:07:00 +0000393#ifdef BB_FEATURE_WGET_STATUSBAR
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000394 if (quiet_flag==FALSE)
395 progressmeter(-1);
Eric Andersenb520e082000-10-03 00:21:45 +0000396#endif
Mark Whitley30ac01c2001-04-17 18:13:16 +0000397 do {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000398 while ((filesize > 0 || !got_clen) && (n = fread(buf, 1, chunked ? (filesize > sizeof(buf) ? sizeof(buf) : filesize) : sizeof(buf), dfp)) > 0) {
Eric Andersenb520e082000-10-03 00:21:45 +0000399 fwrite(buf, 1, n, output);
Eric Andersen370fb082001-01-20 20:07:00 +0000400#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +0000401 statbytes+=n;
Eric Andersenb520e082000-10-03 00:21:45 +0000402#endif
Eric Andersen96700832000-09-04 15:15:55 +0000403 if (got_clen)
Eric Andersenb520e082000-10-03 00:21:45 +0000404 filesize -= n;
Eric Andersen96700832000-09-04 15:15:55 +0000405 }
Eric Andersen79757c92001-04-05 21:45:54 +0000406
Eric Andersen6d7fa432001-04-10 18:17:05 +0000407 if (chunked) {
408 fgets(buf, sizeof(buf), dfp); /* This is a newline */
409 fgets(buf, sizeof(buf), dfp);
410 filesize = strtol(buf, (char **) NULL, 16);
411 if (filesize==0) chunked = 0; /* all done! */
412 }
413
Eric Andersen79757c92001-04-05 21:45:54 +0000414 if (n == 0 && ferror(dfp))
Mark Whitleyf57c9442000-12-07 19:56:48 +0000415 perror_msg_and_die("network read error");
Eric Andersen6d7fa432001-04-10 18:17:05 +0000416 } while (chunked);
Mark Whitley30ac01c2001-04-17 18:13:16 +0000417#ifdef BB_FEATURE_WGET_STATUSBAR
418 if (quiet_flag==FALSE)
419 progressmeter(1);
420#endif
Eric Andersen79757c92001-04-05 21:45:54 +0000421 if (!proxy && target.is_ftp) {
422 fclose(dfp);
423 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
424 error_msg_and_die("ftp error: %s", buf+4);
425 ftpcmd("QUIT", NULL, sfp, buf);
426 }
Eric Andersen79757c92001-04-05 21:45:54 +0000427 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000428}
429
430
Eric Andersen79757c92001-04-05 21:45:54 +0000431void parse_url(char *url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000432{
Eric Andersen79757c92001-04-05 21:45:54 +0000433 char *cp, *sp, *up;
Eric Andersen96700832000-09-04 15:15:55 +0000434
Eric Andersen79757c92001-04-05 21:45:54 +0000435 if (strncmp(url, "http://", 7) == 0) {
436 h->port = 80;
437 h->host = url + 7;
438 h->is_ftp = 0;
439 } else if (strncmp(url, "ftp://", 6) == 0) {
440 h->port = 21;
441 h->host = url + 6;
442 h->is_ftp = 1;
443 } else
444 error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000445
Eric Andersen79757c92001-04-05 21:45:54 +0000446 sp = strchr(h->host, '/');
Matt Kraaia9711a52001-01-03 16:15:15 +0000447 if (sp != NULL) {
448 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000449 h->path = sp;
Matt Kraaia9711a52001-01-03 16:15:15 +0000450 } else
Eric Andersen79757c92001-04-05 21:45:54 +0000451 h->path = "";
452
453 up = strrchr(h->host, '@');
454 if (up != NULL) {
455 h->user = h->host;
456 *up++ = '\0';
457 h->host = up;
458 } else
459 h->user = NULL;
460
461 cp = strchr(h->host, ':');
462 if (cp != NULL) {
463 *cp++ = '\0';
464 h->port = atoi(cp);
465 }
466
Eric Andersen96700832000-09-04 15:15:55 +0000467}
468
469
470FILE *open_socket(char *host, int port)
471{
Eric Andersen1ca20a72001-03-21 07:34:27 +0000472 struct sockaddr_in s_in;
Eric Andersen96700832000-09-04 15:15:55 +0000473 struct hostent *hp;
474 int fd;
475 FILE *fp;
476
Eric Andersen1ca20a72001-03-21 07:34:27 +0000477 memset(&s_in, 0, sizeof(s_in));
478 s_in.sin_family = AF_INET;
Eric Andersen96700832000-09-04 15:15:55 +0000479 if ((hp = (struct hostent *) gethostbyname(host)) == NULL)
Matt Kraaidd19c692001-01-31 19:00:21 +0000480 error_msg_and_die("cannot resolve %s", host);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000481 memcpy(&s_in.sin_addr, hp->h_addr_list[0], hp->h_length);
482 s_in.sin_port = htons(port);
Eric Andersen96700832000-09-04 15:15:55 +0000483
484 /*
485 * Get the server onto a stdio stream.
486 */
487 if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000488 perror_msg_and_die("socket()");
Eric Andersen1ca20a72001-03-21 07:34:27 +0000489 if (connect(fd, (struct sockaddr *) &s_in, sizeof(s_in)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000490 perror_msg_and_die("connect(%s)", host);
Eric Andersen96700832000-09-04 15:15:55 +0000491 if ((fp = fdopen(fd, "r+")) == NULL)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000492 perror_msg_and_die("fdopen()");
Eric Andersen96700832000-09-04 15:15:55 +0000493
494 return fp;
495}
496
497
498char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
499{
500 char *s, *hdrval;
501 int c;
502
503 *istrunc = 0;
504
505 /* retrieve header line */
506 if (fgets(buf, bufsiz, fp) == NULL)
507 return NULL;
508
509 /* see if we are at the end of the headers */
510 for (s = buf ; *s == '\r' ; ++s)
511 ;
512 if (s[0] == '\n')
513 return NULL;
514
515 /* convert the header name to lower case */
516 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
517 *s = tolower(*s);
518
519 /* verify we are at the end of the header name */
520 if (*s != ':')
Matt Kraaidd19c692001-01-31 19:00:21 +0000521 error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000522
523 /* locate the start of the header value */
524 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
525 ;
526 hdrval = s;
527
528 /* locate the end of header */
529 while (*s != '\0' && *s != '\r' && *s != '\n')
530 ++s;
531
532 /* end of header found */
533 if (*s != '\0') {
534 *s = '\0';
535 return hdrval;
536 }
537
Eric Andersen5d638842000-09-14 21:46:30 +0000538 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000539 while (c = getc(fp), c != EOF && c != '\n')
540 ;
541 *istrunc = 1;
542 return hdrval;
543}
544
Eric Andersen79757c92001-04-05 21:45:54 +0000545static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
546{
547 char *p;
548
549 if (s1) {
550 if (!s2) s2="";
551 fprintf(fp, "%s%s\n", s1, s2);
552 fflush(fp);
553 }
554
555 do {
556 p = fgets(buf, 510, fp);
557 if (!p)
558 perror_msg_and_die("fgets()");
559 } while (! isdigit(buf[0]) || buf[3] != ' ');
560
561 return atoi(buf);
562}
563
Eric Andersen370fb082001-01-20 20:07:00 +0000564#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen4e573f42000-11-14 23:29:24 +0000565/* Stuff below is from BSD rcp util.c, as added to openshh.
566 * Original copyright notice is retained at the end of this file.
567 *
568 */
Eric Andersenb520e082000-10-03 00:21:45 +0000569
570
Eric Andersen3e6ff902001-03-09 21:24:12 +0000571static int
Eric Andersenb520e082000-10-03 00:21:45 +0000572getttywidth(void)
573{
574 struct winsize winsize;
575
576 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
577 return (winsize.ws_col ? winsize.ws_col : 80);
578 else
579 return (80);
580}
581
Eric Andersen3e6ff902001-03-09 21:24:12 +0000582static void
Eric Andersenb520e082000-10-03 00:21:45 +0000583updateprogressmeter(int ignore)
584{
585 int save_errno = errno;
586
587 progressmeter(0);
588 errno = save_errno;
589}
590
Eric Andersen3e6ff902001-03-09 21:24:12 +0000591static void
Eric Andersenb520e082000-10-03 00:21:45 +0000592alarmtimer(int wait)
593{
594 struct itimerval itv;
595
596 itv.it_value.tv_sec = wait;
597 itv.it_value.tv_usec = 0;
598 itv.it_interval = itv.it_value;
599 setitimer(ITIMER_REAL, &itv, NULL);
600}
601
602
Eric Andersen3e6ff902001-03-09 21:24:12 +0000603static void
Eric Andersenb520e082000-10-03 00:21:45 +0000604progressmeter(int flag)
605{
606 static const char prefixes[] = " KMGTP";
607 static struct timeval lastupdate;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000608 static off_t lastsize, totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000609 struct timeval now, td, wait;
610 off_t cursize, abbrevsize;
611 double elapsed;
612 int ratio, barlength, i, remaining;
613 char buf[256];
614
615 if (flag == -1) {
616 (void) gettimeofday(&start, (struct timezone *) 0);
617 lastupdate = start;
618 lastsize = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000619 totalsize = filesize; /* as filesize changes.. */
Eric Andersenb520e082000-10-03 00:21:45 +0000620 }
621
622 (void) gettimeofday(&now, (struct timezone *) 0);
623 cursize = statbytes;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000624 if (totalsize != 0 && !chunked) {
625 ratio = 100.0 * cursize / totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000626 ratio = MAX(ratio, 0);
627 ratio = MIN(ratio, 100);
628 } else
629 ratio = 100;
630
631 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
632
633 barlength = getttywidth() - 51;
634 if (barlength > 0) {
635 i = barlength * ratio / 100;
636 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
637 "|%.*s%*s|", i,
638 "*****************************************************************************"
639 "*****************************************************************************",
640 barlength - i, "");
641 }
642 i = 0;
643 abbrevsize = cursize;
644 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
645 i++;
646 abbrevsize >>= 10;
647 }
648 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
649 (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
650 'B');
651
652 timersub(&now, &lastupdate, &wait);
653 if (cursize > lastsize) {
654 lastupdate = now;
655 lastsize = cursize;
656 if (wait.tv_sec >= STALLTIME) {
657 start.tv_sec += wait.tv_sec;
658 start.tv_usec += wait.tv_usec;
659 }
660 wait.tv_sec = 0;
661 }
662 timersub(&now, &start, &td);
663 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
664
Mark Whitley30ac01c2001-04-17 18:13:16 +0000665 if (wait.tv_sec >= STALLTIME) {
Eric Andersenb520e082000-10-03 00:21:45 +0000666 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
667 " - stalled -");
Mark Whitley30ac01c2001-04-17 18:13:16 +0000668 } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) {
669 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
670 " --:-- ETA");
Eric Andersenb520e082000-10-03 00:21:45 +0000671 } else {
Mark Whitley30ac01c2001-04-17 18:13:16 +0000672 remaining = (int) (totalsize / (statbytes / elapsed) - elapsed);
Eric Andersenb520e082000-10-03 00:21:45 +0000673 i = remaining / 3600;
674 if (i)
675 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
676 "%2d:", i);
677 else
678 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
679 " ");
680 i = remaining % 3600;
681 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
682 "%02d:%02d ETA", i / 60, i % 60);
683 }
Randolph Chungda7b8292000-12-07 03:55:35 +0000684 write(fileno(stderr), buf, strlen(buf));
Eric Andersenb520e082000-10-03 00:21:45 +0000685
686 if (flag == -1) {
687 struct sigaction sa;
688 sa.sa_handler = updateprogressmeter;
689 sigemptyset(&sa.sa_mask);
690 sa.sa_flags = SA_RESTART;
691 sigaction(SIGALRM, &sa, NULL);
692 alarmtimer(1);
693 } else if (flag == 1) {
694 alarmtimer(0);
695 statbytes = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000696 putc('\n', stderr);
Eric Andersenb520e082000-10-03 00:21:45 +0000697 }
698}
699#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000700
Eric Andersen370fb082001-01-20 20:07:00 +0000701/* Original copyright notice which applies to the BB_FEATURE_WGET_STATUSBAR stuff,
Eric Andersen4e573f42000-11-14 23:29:24 +0000702 * much of which was blatently stolen from openssh. */
703
704/*-
705 * Copyright (c) 1992, 1993
706 * The Regents of the University of California. All rights reserved.
707 *
708 * Redistribution and use in source and binary forms, with or without
709 * modification, are permitted provided that the following conditions
710 * are met:
711 * 1. Redistributions of source code must retain the above copyright
712 * notice, this list of conditions and the following disclaimer.
713 * 2. Redistributions in binary form must reproduce the above copyright
714 * notice, this list of conditions and the following disclaimer in the
715 * documentation and/or other materials provided with the distribution.
716 *
717 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
718 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
719 *
720 * 4. Neither the name of the University nor the names of its contributors
721 * may be used to endorse or promote products derived from this software
722 * without specific prior written permission.
723 *
724 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
725 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
726 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
727 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
728 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
729 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
730 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
731 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
732 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
733 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
734 * SUCH DAMAGE.
735 *
Mark Whitley30ac01c2001-04-17 18:13:16 +0000736 * $Id: wget.c,v 1.36 2001/04/17 18:13:16 markw Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000737 */
738
739
740
Eric Andersen96700832000-09-04 15:15:55 +0000741/*
742Local Variables:
743c-file-style: "linux"
744c-basic-offset: 4
745tab-width: 4
746End:
747*/
Eric Andersenb520e082000-10-03 00:21:45 +0000748
Eric Andersen4e573f42000-11-14 23:29:24 +0000749
750