blob: 79f7e61cfc8c43bdd2683a50249b87c228f6d317 [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. */
Eric Andersen3e6ff902001-03-09 21:24:12 +000062static volatile unsigned long statbytes; /* 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 */
144 fname_out = (strcmp(optarg, "-") == 0 ? (char *)1 : 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 */
Randolph Chung02553a22000-12-07 03:53:47 +0000191 if (fname_out != (char *)1) {
Eric Andersen79e898a2001-01-31 17:49:47 +0000192 output = xfopen( fname_out, (do_continue ? "a" : "w") );
Randolph Chung02553a22000-12-07 03:53:47 +0000193 } else {
194 output = stdout;
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 }
393 do {
Eric Andersen370fb082001-01-20 20:07:00 +0000394#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +0000395 statbytes=0;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000396 if (quiet_flag==FALSE)
397 progressmeter(-1);
Eric Andersenb520e082000-10-03 00:21:45 +0000398#endif
Eric Andersen6d7fa432001-04-10 18:17:05 +0000399 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 +0000400 fwrite(buf, 1, n, output);
Eric Andersen370fb082001-01-20 20:07:00 +0000401#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +0000402 statbytes+=n;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000403 if (quiet_flag==FALSE)
404 progressmeter(1);
Eric Andersenb520e082000-10-03 00:21:45 +0000405#endif
Eric Andersen96700832000-09-04 15:15:55 +0000406 if (got_clen)
Eric Andersenb520e082000-10-03 00:21:45 +0000407 filesize -= n;
Eric Andersen96700832000-09-04 15:15:55 +0000408 }
Eric Andersen79757c92001-04-05 21:45:54 +0000409
Eric Andersen6d7fa432001-04-10 18:17:05 +0000410 if (chunked) {
411 fgets(buf, sizeof(buf), dfp); /* This is a newline */
412 fgets(buf, sizeof(buf), dfp);
413 filesize = strtol(buf, (char **) NULL, 16);
414 if (filesize==0) chunked = 0; /* all done! */
415 }
416
Eric Andersen79757c92001-04-05 21:45:54 +0000417 if (n == 0 && ferror(dfp))
Mark Whitleyf57c9442000-12-07 19:56:48 +0000418 perror_msg_and_die("network read error");
Eric Andersen6d7fa432001-04-10 18:17:05 +0000419 } while (chunked);
Eric Andersen96700832000-09-04 15:15:55 +0000420
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 Andersen6d7fa432001-04-10 18:17:05 +0000427 printf("\n");
Eric Andersen79757c92001-04-05 21:45:54 +0000428 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000429}
430
431
Eric Andersen79757c92001-04-05 21:45:54 +0000432void parse_url(char *url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000433{
Eric Andersen79757c92001-04-05 21:45:54 +0000434 char *cp, *sp, *up;
Eric Andersen96700832000-09-04 15:15:55 +0000435
Eric Andersen79757c92001-04-05 21:45:54 +0000436 if (strncmp(url, "http://", 7) == 0) {
437 h->port = 80;
438 h->host = url + 7;
439 h->is_ftp = 0;
440 } else if (strncmp(url, "ftp://", 6) == 0) {
441 h->port = 21;
442 h->host = url + 6;
443 h->is_ftp = 1;
444 } else
445 error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000446
Eric Andersen79757c92001-04-05 21:45:54 +0000447 sp = strchr(h->host, '/');
Matt Kraaia9711a52001-01-03 16:15:15 +0000448 if (sp != NULL) {
449 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000450 h->path = sp;
Matt Kraaia9711a52001-01-03 16:15:15 +0000451 } else
Eric Andersen79757c92001-04-05 21:45:54 +0000452 h->path = "";
453
454 up = strrchr(h->host, '@');
455 if (up != NULL) {
456 h->user = h->host;
457 *up++ = '\0';
458 h->host = up;
459 } else
460 h->user = NULL;
461
462 cp = strchr(h->host, ':');
463 if (cp != NULL) {
464 *cp++ = '\0';
465 h->port = atoi(cp);
466 }
467
Eric Andersen96700832000-09-04 15:15:55 +0000468}
469
470
471FILE *open_socket(char *host, int port)
472{
Eric Andersen1ca20a72001-03-21 07:34:27 +0000473 struct sockaddr_in s_in;
Eric Andersen96700832000-09-04 15:15:55 +0000474 struct hostent *hp;
475 int fd;
476 FILE *fp;
477
Eric Andersen1ca20a72001-03-21 07:34:27 +0000478 memset(&s_in, 0, sizeof(s_in));
479 s_in.sin_family = AF_INET;
Eric Andersen96700832000-09-04 15:15:55 +0000480 if ((hp = (struct hostent *) gethostbyname(host)) == NULL)
Matt Kraaidd19c692001-01-31 19:00:21 +0000481 error_msg_and_die("cannot resolve %s", host);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000482 memcpy(&s_in.sin_addr, hp->h_addr_list[0], hp->h_length);
483 s_in.sin_port = htons(port);
Eric Andersen96700832000-09-04 15:15:55 +0000484
485 /*
486 * Get the server onto a stdio stream.
487 */
488 if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000489 perror_msg_and_die("socket()");
Eric Andersen1ca20a72001-03-21 07:34:27 +0000490 if (connect(fd, (struct sockaddr *) &s_in, sizeof(s_in)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000491 perror_msg_and_die("connect(%s)", host);
Eric Andersen96700832000-09-04 15:15:55 +0000492 if ((fp = fdopen(fd, "r+")) == NULL)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000493 perror_msg_and_die("fdopen()");
Eric Andersen96700832000-09-04 15:15:55 +0000494
495 return fp;
496}
497
498
499char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
500{
501 char *s, *hdrval;
502 int c;
503
504 *istrunc = 0;
505
506 /* retrieve header line */
507 if (fgets(buf, bufsiz, fp) == NULL)
508 return NULL;
509
510 /* see if we are at the end of the headers */
511 for (s = buf ; *s == '\r' ; ++s)
512 ;
513 if (s[0] == '\n')
514 return NULL;
515
516 /* convert the header name to lower case */
517 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
518 *s = tolower(*s);
519
520 /* verify we are at the end of the header name */
521 if (*s != ':')
Matt Kraaidd19c692001-01-31 19:00:21 +0000522 error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000523
524 /* locate the start of the header value */
525 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
526 ;
527 hdrval = s;
528
529 /* locate the end of header */
530 while (*s != '\0' && *s != '\r' && *s != '\n')
531 ++s;
532
533 /* end of header found */
534 if (*s != '\0') {
535 *s = '\0';
536 return hdrval;
537 }
538
Eric Andersen5d638842000-09-14 21:46:30 +0000539 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000540 while (c = getc(fp), c != EOF && c != '\n')
541 ;
542 *istrunc = 1;
543 return hdrval;
544}
545
Eric Andersen79757c92001-04-05 21:45:54 +0000546static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
547{
548 char *p;
549
550 if (s1) {
551 if (!s2) s2="";
552 fprintf(fp, "%s%s\n", s1, s2);
553 fflush(fp);
554 }
555
556 do {
557 p = fgets(buf, 510, fp);
558 if (!p)
559 perror_msg_and_die("fgets()");
560 } while (! isdigit(buf[0]) || buf[3] != ' ');
561
562 return atoi(buf);
563}
564
Eric Andersen370fb082001-01-20 20:07:00 +0000565#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen4e573f42000-11-14 23:29:24 +0000566/* Stuff below is from BSD rcp util.c, as added to openshh.
567 * Original copyright notice is retained at the end of this file.
568 *
569 */
Eric Andersenb520e082000-10-03 00:21:45 +0000570
571
Eric Andersen3e6ff902001-03-09 21:24:12 +0000572static int
Eric Andersenb520e082000-10-03 00:21:45 +0000573getttywidth(void)
574{
575 struct winsize winsize;
576
577 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
578 return (winsize.ws_col ? winsize.ws_col : 80);
579 else
580 return (80);
581}
582
Eric Andersen3e6ff902001-03-09 21:24:12 +0000583static void
Eric Andersenb520e082000-10-03 00:21:45 +0000584updateprogressmeter(int ignore)
585{
586 int save_errno = errno;
587
588 progressmeter(0);
589 errno = save_errno;
590}
591
Eric Andersen3e6ff902001-03-09 21:24:12 +0000592static void
Eric Andersenb520e082000-10-03 00:21:45 +0000593alarmtimer(int wait)
594{
595 struct itimerval itv;
596
597 itv.it_value.tv_sec = wait;
598 itv.it_value.tv_usec = 0;
599 itv.it_interval = itv.it_value;
600 setitimer(ITIMER_REAL, &itv, NULL);
601}
602
603
Eric Andersen3e6ff902001-03-09 21:24:12 +0000604static void
Eric Andersenb520e082000-10-03 00:21:45 +0000605progressmeter(int flag)
606{
607 static const char prefixes[] = " KMGTP";
608 static struct timeval lastupdate;
609 static off_t lastsize;
610 struct timeval now, td, wait;
611 off_t cursize, abbrevsize;
612 double elapsed;
613 int ratio, barlength, i, remaining;
614 char buf[256];
615
616 if (flag == -1) {
617 (void) gettimeofday(&start, (struct timezone *) 0);
618 lastupdate = start;
619 lastsize = 0;
620 }
621
622 (void) gettimeofday(&now, (struct timezone *) 0);
623 cursize = statbytes;
Eric Andersen6d7fa432001-04-10 18:17:05 +0000624 if (filesize != 0 && !chunked) {
Eric Andersenb520e082000-10-03 00:21:45 +0000625 ratio = 100.0 * cursize / filesize;
626 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
665 if (statbytes <= 0 || elapsed <= 0.0 || cursize > filesize) {
666 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
667 " --:-- ETA");
668 } else if (wait.tv_sec >= STALLTIME) {
669 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
670 " - stalled -");
671 } else {
672 remaining = (int) (filesize / (statbytes / elapsed) - elapsed);
673 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;
696 }
697}
698#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000699
Eric Andersen370fb082001-01-20 20:07:00 +0000700/* Original copyright notice which applies to the BB_FEATURE_WGET_STATUSBAR stuff,
Eric Andersen4e573f42000-11-14 23:29:24 +0000701 * much of which was blatently stolen from openssh. */
702
703/*-
704 * Copyright (c) 1992, 1993
705 * The Regents of the University of California. All rights reserved.
706 *
707 * Redistribution and use in source and binary forms, with or without
708 * modification, are permitted provided that the following conditions
709 * are met:
710 * 1. Redistributions of source code must retain the above copyright
711 * notice, this list of conditions and the following disclaimer.
712 * 2. Redistributions in binary form must reproduce the above copyright
713 * notice, this list of conditions and the following disclaimer in the
714 * documentation and/or other materials provided with the distribution.
715 *
716 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
717 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
718 *
719 * 4. Neither the name of the University nor the names of its contributors
720 * may be used to endorse or promote products derived from this software
721 * without specific prior written permission.
722 *
723 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
724 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
725 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
726 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
727 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
728 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
729 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
730 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
731 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
732 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
733 * SUCH DAMAGE.
734 *
Eric Andersen6d7fa432001-04-10 18:17:05 +0000735 * $Id: wget.c,v 1.32 2001/04/10 18:17:05 andersen Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000736 */
737
738
739
Eric Andersen96700832000-09-04 15:15:55 +0000740/*
741Local Variables:
742c-file-style: "linux"
743c-basic-offset: 4
744tab-width: 4
745End:
746*/
Eric Andersenb520e082000-10-03 00:21:45 +0000747
Eric Andersen4e573f42000-11-14 23:29:24 +0000748
749