blob: dfe97f5c58402be12ae389f86c15b01af8acb52d [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
Matt Kraai854125f2001-05-09 19:15:46 +000075/* Read NMEMB elements of SIZE bytes into PTR from STREAM. Returns the
76 * number of elements read, and a short count if an eof or non-interrupt
77 * error is encountered. */
78static size_t safe_fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
79{
80 size_t ret = 0;
81
82 do {
83 clearerr(stream);
84 ret += fread((char *)ptr + (ret * size), size, nmemb - ret, stream);
85 } while (ret < nmemb && ferror(stream) && errno == EINTR);
86
87 return ret;
88}
89
90/* Write NMEMB elements of SIZE bytes from PTR to STREAM. Returns the
91 * number of elements written, and a short count if an eof or non-interrupt
92 * error is encountered. */
93static size_t safe_fwrite(void *ptr, size_t size, size_t nmemb, FILE *stream)
94{
95 size_t ret = 0;
96
97 do {
98 clearerr(stream);
99 ret += fwrite((char *)ptr + (ret * size), size, nmemb - ret, stream);
100 } while (ret < nmemb && ferror(stream) && errno == EINTR);
101
102 return ret;
103}
104
105/* Read a line or SIZE - 1 bytes into S, whichever is less, from STREAM.
106 * Returns S, or NULL if an eof or non-interrupt error is encountered. */
107static char *safe_fgets(char *s, int size, FILE *stream)
108{
109 char *ret;
110
111 do {
112 clearerr(stream);
113 ret = fgets(s, size, stream);
114 } while (ret == NULL && ferror(stream) && errno == EINTR);
115
116 return ret;
117}
118
Eric Andersen79757c92001-04-05 21:45:54 +0000119#define close_delete_and_die(s...) { \
120 close_and_delete_outfile(output, fname_out, do_continue); \
121 error_msg_and_die(s); }
122
123
124#ifdef BB_FEATURE_WGET_AUTHENTICATION
125/*
126 * Base64-encode character string
127 * oops... isn't something similar in uuencode.c?
128 * It would be better to use already existing code
129 */
130char *base64enc(char *p, char *buf, int len) {
131
132 char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
133 "0123456789+/";
134 char *s = buf;
135
136 while(*p) {
137 if (s >= buf+len-4)
138 error_msg_and_die("buffer overflow");
139 *(s++) = al[(*p >> 2) & 0x3F];
140 *(s++) = al[((*p << 4) & 0x30) | ((*(p+1) >> 4) & 0x0F)];
141 *s = *(s+1) = '=';
142 *(s+2) = 0;
143 if (! *(++p)) break;
144 *(s++) = al[((*p << 2) & 0x3C) | ((*(p+1) >> 6) & 0x03)];
145 if (! *(++p)) break;
146 *(s++) = al[*(p++) & 0x3F];
147 }
148
149 return buf;
150}
151#endif
152
Eric Andersen96700832000-09-04 15:15:55 +0000153int wget_main(int argc, char **argv)
154{
Eric Andersen79757c92001-04-05 21:45:54 +0000155 int n, try=5, status;
156 int port;
157 char *proxy;
Eric Andersen29edd002000-12-09 16:55:35 +0000158 char *s, buf[512];
159 struct stat sbuf;
160
Eric Andersen79757c92001-04-05 21:45:54 +0000161 struct host_info server, target;
162
163 FILE *sfp = NULL; /* socket to web/ftp server */
164 FILE *dfp = NULL; /* socket to ftp server (data) */
Eric Andersen96700832000-09-04 15:15:55 +0000165 char *fname_out = NULL; /* where to direct output (-O) */
166 int do_continue = 0; /* continue a prev transfer (-c) */
167 long beg_range = 0L; /* range at which continue begins */
168 int got_clen = 0; /* got content-length: from server */
Eric Andersen29edd002000-12-09 16:55:35 +0000169 FILE *output; /* socket to web server */
170 int quiet_flag = FALSE; /* Be verry, verry quiet... */
171
Eric Andersen96700832000-09-04 15:15:55 +0000172 /*
173 * Crack command line.
174 */
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000175 while ((n = getopt(argc, argv, "cqO:")) != EOF) {
Eric Andersen96700832000-09-04 15:15:55 +0000176 switch (n) {
177 case 'c':
178 ++do_continue;
179 break;
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000180 case 'q':
181 quiet_flag = TRUE;
182 break;
Eric Andersen96700832000-09-04 15:15:55 +0000183 case 'O':
Randolph Chung02553a22000-12-07 03:53:47 +0000184 /* can't set fname_out to NULL if outputting to stdout, because
185 * this gets interpreted as the auto-gen output filename
186 * case below - tausq@debian.org
187 */
Matt Kraai65317ea2001-04-11 20:03:01 +0000188 fname_out = optarg;
Eric Andersen96700832000-09-04 15:15:55 +0000189 break;
190 default:
Eric Andersen67991cf2001-02-14 21:23:06 +0000191 show_usage();
Eric Andersen96700832000-09-04 15:15:55 +0000192 }
193 }
Eric Andersen25b669c2000-10-02 23:19:38 +0000194
Eric Andersen96700832000-09-04 15:15:55 +0000195 if (argc - optind != 1)
Eric Andersen67991cf2001-02-14 21:23:06 +0000196 show_usage();
Eric Andersen25b669c2000-10-02 23:19:38 +0000197
Eric Andersen79757c92001-04-05 21:45:54 +0000198 parse_url(argv[optind], &target);
199 server.host = target.host;
200 server.port = target.port;
201
Eric Andersen96700832000-09-04 15:15:55 +0000202 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000203 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000204 */
Eric Andersen79757c92001-04-05 21:45:54 +0000205 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
206 if (proxy)
207 parse_url(xstrdup(proxy), &server);
Eric Andersen29edd002000-12-09 16:55:35 +0000208
209 /* Guess an output filename */
210 if (!fname_out) {
211 fname_out =
Eric Andersen370fb082001-01-20 20:07:00 +0000212#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000213 curfile =
214#endif
Eric Andersen79757c92001-04-05 21:45:54 +0000215 get_last_path_component(target.path);
Eric Andersen29edd002000-12-09 16:55:35 +0000216 if (fname_out==NULL || strlen(fname_out)<1) {
217 fname_out =
Eric Andersen370fb082001-01-20 20:07:00 +0000218#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000219 curfile =
220#endif
221 "index.html";
222 }
Eric Andersen370fb082001-01-20 20:07:00 +0000223#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000224 } else {
Eric Andersen79757c92001-04-05 21:45:54 +0000225 curfile = get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000226#endif
227 }
Eric Andersen7d697012001-01-24 20:28:35 +0000228 if (do_continue && !fname_out)
Matt Kraaidd19c692001-01-31 19:00:21 +0000229 error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000230
Eric Andersen96700832000-09-04 15:15:55 +0000231
232 /*
Eric Andersen29edd002000-12-09 16:55:35 +0000233 * Open the output file stream.
Eric Andersen96700832000-09-04 15:15:55 +0000234 */
Matt Kraai65317ea2001-04-11 20:03:01 +0000235 if (strcmp(fname_out, "-") == 0) {
Randolph Chung02553a22000-12-07 03:53:47 +0000236 output = stdout;
Eric Andersen95a349f2001-05-13 00:55:54 +0000237 quiet_flag = TRUE;
Matt Kraai65317ea2001-04-11 20:03:01 +0000238 } else {
239 output = xfopen(fname_out, (do_continue ? "a" : "w"));
Eric Andersen96700832000-09-04 15:15:55 +0000240 }
241
242 /*
243 * Determine where to start transfer.
244 */
245 if (do_continue) {
Eric Andersenb520e082000-10-03 00:21:45 +0000246 if (fstat(fileno(output), &sbuf) < 0)
Matt Kraai0dab8292000-12-18 03:08:29 +0000247 perror_msg_and_die("fstat()");
Eric Andersen96700832000-09-04 15:15:55 +0000248 if (sbuf.st_size > 0)
249 beg_range = sbuf.st_size;
250 else
251 do_continue = 0;
252 }
253
Eric Andersen79757c92001-04-05 21:45:54 +0000254 if (proxy || !target.is_ftp) {
255 /*
256 * HTTP session
257 */
258 do {
259 if (! --try)
260 close_delete_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000261
Eric Andersen79757c92001-04-05 21:45:54 +0000262 /*
263 * Open socket to http server
264 */
265 if (sfp) fclose(sfp);
266 sfp = open_socket(server.host, server.port);
267
268 /*
269 * Send HTTP request.
270 */
271 if (proxy) {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000272 fprintf(sfp, "GET %stp://%s:%d/%s HTTP/1.1\r\n",
Eric Andersen79757c92001-04-05 21:45:54 +0000273 target.is_ftp ? "f" : "ht", target.host,
274 target.port, target.path);
275 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000276 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000277 }
Eric Andersen96700832000-09-04 15:15:55 +0000278
Eric Andersen79757c92001-04-05 21:45:54 +0000279 fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
280
281#ifdef BB_FEATURE_WGET_AUTHENTICATION
282 if (target.user) {
283 fprintf(sfp, "Authorization: Basic %s\r\n",
284 base64enc(target.user, buf, sizeof(buf)));
285 }
286 if (proxy && server.user) {
287 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
288 base64enc(server.user, buf, sizeof(buf)));
289 }
290#endif
291
Eric Andersenb520e082000-10-03 00:21:45 +0000292 if (do_continue)
Eric Andersen79757c92001-04-05 21:45:54 +0000293 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
294 fprintf(sfp,"Connection: close\r\n\r\n");
295
296 /*
297 * Retrieve HTTP response line and check for "200" status code.
298 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000299read_response: if (fgets(buf, sizeof(buf), sfp) == NULL)
Eric Andersen79757c92001-04-05 21:45:54 +0000300 close_delete_and_die("no response from server");
301
302 for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
303 ;
304 for ( ; isspace(*s) ; ++s)
305 ;
306 switch (status = atoi(s)) {
307 case 0:
Eric Andersen6d7fa432001-04-10 18:17:05 +0000308 case 100:
309 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL);
310 goto read_response;
Eric Andersen79757c92001-04-05 21:45:54 +0000311 case 200:
312 if (do_continue && output != stdout)
313 output = freopen(fname_out, "w", output);
314 do_continue = 0;
315 break;
316 case 300: /* redirection */
317 case 301:
318 case 302:
319 case 303:
320 break;
321 case 206:
322 if (do_continue)
323 break;
324 /*FALLTHRU*/
325 default:
326 chomp(buf);
327 close_delete_and_die("server returned error %d: %s", atoi(s), buf);
328 }
329
330 /*
331 * Retrieve HTTP headers.
332 */
333 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
334 if (strcasecmp(buf, "content-length") == 0) {
335 filesize = atol(s);
336 got_clen = 1;
337 continue;
338 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000339 if (strcasecmp(buf, "transfer-encoding") == 0) {
340 if (strcasecmp(s, "chunked") == 0) {
341 chunked = got_clen = 1;
342 } else {
Eric Andersen79757c92001-04-05 21:45:54 +0000343 close_delete_and_die("server wants to do %s transfer encoding", s);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000344 }
345 }
Eric Andersen79757c92001-04-05 21:45:54 +0000346 if (strcasecmp(buf, "location") == 0) {
347 if (s[0] == '/')
348 target.path = xstrdup(s+1);
349 else {
350 parse_url(xstrdup(s), &target);
351 if (!proxy) {
352 server.host = target.host;
353 server.port = target.port;
354 }
355 }
356 }
357 }
358 } while(status >= 300);
359
360 dfp = sfp;
361 }
362 else
363 {
364 /*
365 * FTP session
366 */
367 if (! target.user)
368 target.user = xstrdup("anonymous:busybox@");
369
370 sfp = open_socket(server.host, server.port);
371 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
372 close_delete_and_die("%s", buf+4);
373
374 /*
375 * Splitting username:password pair,
376 * trying to log in
377 */
378 s = strchr(target.user, ':');
379 if (s)
380 *(s++) = '\0';
381 switch(ftpcmd("USER ", target.user, sfp, buf)) {
382 case 230:
Eric Andersenb520e082000-10-03 00:21:45 +0000383 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000384 case 331:
385 if (ftpcmd("PASS ", s, sfp, buf) == 230)
386 break;
387 /* FALLTHRU (failed login) */
388 default:
389 close_delete_and_die("ftp login: %s", buf+4);
390 }
391
392 ftpcmd("CDUP", NULL, sfp, buf);
393 ftpcmd("TYPE I", NULL, sfp, buf);
394
395 /*
396 * Querying file size
397 */
398 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
399 filesize = atol(buf+4);
Eric Andersen96700832000-09-04 15:15:55 +0000400 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000401 }
Eric Andersen79757c92001-04-05 21:45:54 +0000402
403 /*
404 * Entering passive mode
405 */
406 if (ftpcmd("PASV", NULL, sfp, buf) != 227)
407 close_delete_and_die("PASV: %s", buf+4);
408 s = strrchr(buf, ',');
409 *s = 0;
410 port = atoi(s+1);
411 s = strrchr(buf, ',');
412 port += atoi(s+1) * 256;
413 dfp = open_socket(server.host, port);
414
415 if (do_continue) {
416 sprintf(buf, "REST %ld", beg_range);
417 if (ftpcmd(buf, NULL, sfp, buf) != 350) {
418 if (output != stdout)
419 output = freopen(fname_out, "w", output);
420 do_continue = 0;
421 } else
422 filesize -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000423 }
Eric Andersen79757c92001-04-05 21:45:54 +0000424
425 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
426 close_delete_and_die("RETR: %s", buf+4);
427
Eric Andersen96700832000-09-04 15:15:55 +0000428 }
429
Eric Andersen79757c92001-04-05 21:45:54 +0000430
Eric Andersen96700832000-09-04 15:15:55 +0000431 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000432 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000433 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000434 if (chunked) {
435 fgets(buf, sizeof(buf), dfp);
436 filesize = strtol(buf, (char **) NULL, 16);
437 }
Eric Andersen370fb082001-01-20 20:07:00 +0000438#ifdef BB_FEATURE_WGET_STATUSBAR
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000439 if (quiet_flag==FALSE)
440 progressmeter(-1);
Eric Andersenb520e082000-10-03 00:21:45 +0000441#endif
Mark Whitley30ac01c2001-04-17 18:13:16 +0000442 do {
Matt Kraai854125f2001-05-09 19:15:46 +0000443 while ((filesize > 0 || !got_clen) && (n = safe_fread(buf, 1, chunked ? (filesize > sizeof(buf) ? sizeof(buf) : filesize) : sizeof(buf), dfp)) > 0) {
444 safe_fwrite(buf, 1, n, output);
Eric Andersen370fb082001-01-20 20:07:00 +0000445#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersenb520e082000-10-03 00:21:45 +0000446 statbytes+=n;
Eric Andersenb520e082000-10-03 00:21:45 +0000447#endif
Eric Andersen96700832000-09-04 15:15:55 +0000448 if (got_clen)
Eric Andersenb520e082000-10-03 00:21:45 +0000449 filesize -= n;
Eric Andersen96700832000-09-04 15:15:55 +0000450 }
Eric Andersen79757c92001-04-05 21:45:54 +0000451
Eric Andersen6d7fa432001-04-10 18:17:05 +0000452 if (chunked) {
Matt Kraai854125f2001-05-09 19:15:46 +0000453 safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
454 safe_fgets(buf, sizeof(buf), dfp);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000455 filesize = strtol(buf, (char **) NULL, 16);
456 if (filesize==0) chunked = 0; /* all done! */
457 }
458
Eric Andersen79757c92001-04-05 21:45:54 +0000459 if (n == 0 && ferror(dfp))
Mark Whitleyf57c9442000-12-07 19:56:48 +0000460 perror_msg_and_die("network read error");
Eric Andersen6d7fa432001-04-10 18:17:05 +0000461 } while (chunked);
Mark Whitley30ac01c2001-04-17 18:13:16 +0000462#ifdef BB_FEATURE_WGET_STATUSBAR
463 if (quiet_flag==FALSE)
464 progressmeter(1);
465#endif
Eric Andersen79757c92001-04-05 21:45:54 +0000466 if (!proxy && target.is_ftp) {
467 fclose(dfp);
468 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
469 error_msg_and_die("ftp error: %s", buf+4);
470 ftpcmd("QUIT", NULL, sfp, buf);
471 }
Eric Andersen79757c92001-04-05 21:45:54 +0000472 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000473}
474
475
Eric Andersen79757c92001-04-05 21:45:54 +0000476void parse_url(char *url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000477{
Eric Andersen79757c92001-04-05 21:45:54 +0000478 char *cp, *sp, *up;
Eric Andersen96700832000-09-04 15:15:55 +0000479
Eric Andersen79757c92001-04-05 21:45:54 +0000480 if (strncmp(url, "http://", 7) == 0) {
481 h->port = 80;
482 h->host = url + 7;
483 h->is_ftp = 0;
484 } else if (strncmp(url, "ftp://", 6) == 0) {
485 h->port = 21;
486 h->host = url + 6;
487 h->is_ftp = 1;
488 } else
489 error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000490
Eric Andersen79757c92001-04-05 21:45:54 +0000491 sp = strchr(h->host, '/');
Matt Kraaia9711a52001-01-03 16:15:15 +0000492 if (sp != NULL) {
493 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000494 h->path = sp;
Matt Kraaia9711a52001-01-03 16:15:15 +0000495 } else
Eric Andersen79757c92001-04-05 21:45:54 +0000496 h->path = "";
497
498 up = strrchr(h->host, '@');
499 if (up != NULL) {
500 h->user = h->host;
501 *up++ = '\0';
502 h->host = up;
503 } else
504 h->user = NULL;
505
506 cp = strchr(h->host, ':');
507 if (cp != NULL) {
508 *cp++ = '\0';
509 h->port = atoi(cp);
510 }
511
Eric Andersen96700832000-09-04 15:15:55 +0000512}
513
514
515FILE *open_socket(char *host, int port)
516{
Eric Andersen1ca20a72001-03-21 07:34:27 +0000517 struct sockaddr_in s_in;
Eric Andersen96700832000-09-04 15:15:55 +0000518 struct hostent *hp;
519 int fd;
520 FILE *fp;
521
Eric Andersen1ca20a72001-03-21 07:34:27 +0000522 memset(&s_in, 0, sizeof(s_in));
523 s_in.sin_family = AF_INET;
Eric Andersen96700832000-09-04 15:15:55 +0000524 if ((hp = (struct hostent *) gethostbyname(host)) == NULL)
Matt Kraaidd19c692001-01-31 19:00:21 +0000525 error_msg_and_die("cannot resolve %s", host);
Eric Andersen1ca20a72001-03-21 07:34:27 +0000526 memcpy(&s_in.sin_addr, hp->h_addr_list[0], hp->h_length);
527 s_in.sin_port = htons(port);
Eric Andersen96700832000-09-04 15:15:55 +0000528
529 /*
530 * Get the server onto a stdio stream.
531 */
532 if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000533 perror_msg_and_die("socket()");
Eric Andersen1ca20a72001-03-21 07:34:27 +0000534 if (connect(fd, (struct sockaddr *) &s_in, sizeof(s_in)) < 0)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000535 perror_msg_and_die("connect(%s)", host);
Eric Andersen96700832000-09-04 15:15:55 +0000536 if ((fp = fdopen(fd, "r+")) == NULL)
Mark Whitleyf57c9442000-12-07 19:56:48 +0000537 perror_msg_and_die("fdopen()");
Eric Andersen96700832000-09-04 15:15:55 +0000538
539 return fp;
540}
541
542
543char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
544{
545 char *s, *hdrval;
546 int c;
547
548 *istrunc = 0;
549
550 /* retrieve header line */
551 if (fgets(buf, bufsiz, fp) == NULL)
552 return NULL;
553
554 /* see if we are at the end of the headers */
555 for (s = buf ; *s == '\r' ; ++s)
556 ;
557 if (s[0] == '\n')
558 return NULL;
559
560 /* convert the header name to lower case */
561 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
562 *s = tolower(*s);
563
564 /* verify we are at the end of the header name */
565 if (*s != ':')
Matt Kraaidd19c692001-01-31 19:00:21 +0000566 error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000567
568 /* locate the start of the header value */
569 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
570 ;
571 hdrval = s;
572
573 /* locate the end of header */
574 while (*s != '\0' && *s != '\r' && *s != '\n')
575 ++s;
576
577 /* end of header found */
578 if (*s != '\0') {
579 *s = '\0';
580 return hdrval;
581 }
582
Eric Andersen5d638842000-09-14 21:46:30 +0000583 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000584 while (c = getc(fp), c != EOF && c != '\n')
585 ;
586 *istrunc = 1;
587 return hdrval;
588}
589
Eric Andersen79757c92001-04-05 21:45:54 +0000590static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
591{
592 char *p;
593
594 if (s1) {
595 if (!s2) s2="";
596 fprintf(fp, "%s%s\n", s1, s2);
597 fflush(fp);
598 }
599
600 do {
601 p = fgets(buf, 510, fp);
602 if (!p)
603 perror_msg_and_die("fgets()");
604 } while (! isdigit(buf[0]) || buf[3] != ' ');
605
606 return atoi(buf);
607}
608
Eric Andersen370fb082001-01-20 20:07:00 +0000609#ifdef BB_FEATURE_WGET_STATUSBAR
Eric Andersen4e573f42000-11-14 23:29:24 +0000610/* Stuff below is from BSD rcp util.c, as added to openshh.
611 * Original copyright notice is retained at the end of this file.
612 *
613 */
Eric Andersenb520e082000-10-03 00:21:45 +0000614
615
Eric Andersen3e6ff902001-03-09 21:24:12 +0000616static int
Eric Andersenb520e082000-10-03 00:21:45 +0000617getttywidth(void)
618{
619 struct winsize winsize;
620
621 if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1)
622 return (winsize.ws_col ? winsize.ws_col : 80);
623 else
624 return (80);
625}
626
Eric Andersen3e6ff902001-03-09 21:24:12 +0000627static void
Eric Andersenb520e082000-10-03 00:21:45 +0000628updateprogressmeter(int ignore)
629{
630 int save_errno = errno;
631
632 progressmeter(0);
633 errno = save_errno;
634}
635
Eric Andersen3e6ff902001-03-09 21:24:12 +0000636static void
Eric Andersenb520e082000-10-03 00:21:45 +0000637alarmtimer(int wait)
638{
639 struct itimerval itv;
640
641 itv.it_value.tv_sec = wait;
642 itv.it_value.tv_usec = 0;
643 itv.it_interval = itv.it_value;
644 setitimer(ITIMER_REAL, &itv, NULL);
645}
646
647
Eric Andersen3e6ff902001-03-09 21:24:12 +0000648static void
Eric Andersenb520e082000-10-03 00:21:45 +0000649progressmeter(int flag)
650{
651 static const char prefixes[] = " KMGTP";
652 static struct timeval lastupdate;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000653 static off_t lastsize, totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000654 struct timeval now, td, wait;
655 off_t cursize, abbrevsize;
656 double elapsed;
657 int ratio, barlength, i, remaining;
658 char buf[256];
659
660 if (flag == -1) {
661 (void) gettimeofday(&start, (struct timezone *) 0);
662 lastupdate = start;
663 lastsize = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000664 totalsize = filesize; /* as filesize changes.. */
Eric Andersenb520e082000-10-03 00:21:45 +0000665 }
666
667 (void) gettimeofday(&now, (struct timezone *) 0);
668 cursize = statbytes;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000669 if (totalsize != 0 && !chunked) {
670 ratio = 100.0 * cursize / totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000671 ratio = MAX(ratio, 0);
672 ratio = MIN(ratio, 100);
673 } else
674 ratio = 100;
675
676 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
677
678 barlength = getttywidth() - 51;
679 if (barlength > 0) {
680 i = barlength * ratio / 100;
681 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
682 "|%.*s%*s|", i,
683 "*****************************************************************************"
684 "*****************************************************************************",
685 barlength - i, "");
686 }
687 i = 0;
688 abbrevsize = cursize;
689 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
690 i++;
691 abbrevsize >>= 10;
692 }
693 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
694 (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
695 'B');
696
697 timersub(&now, &lastupdate, &wait);
698 if (cursize > lastsize) {
699 lastupdate = now;
700 lastsize = cursize;
701 if (wait.tv_sec >= STALLTIME) {
702 start.tv_sec += wait.tv_sec;
703 start.tv_usec += wait.tv_usec;
704 }
705 wait.tv_sec = 0;
706 }
707 timersub(&now, &start, &td);
708 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
709
Mark Whitley30ac01c2001-04-17 18:13:16 +0000710 if (wait.tv_sec >= STALLTIME) {
Eric Andersenb520e082000-10-03 00:21:45 +0000711 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
712 " - stalled -");
Mark Whitley30ac01c2001-04-17 18:13:16 +0000713 } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) {
714 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
715 " --:-- ETA");
Eric Andersenb520e082000-10-03 00:21:45 +0000716 } else {
Mark Whitley30ac01c2001-04-17 18:13:16 +0000717 remaining = (int) (totalsize / (statbytes / elapsed) - elapsed);
Eric Andersenb520e082000-10-03 00:21:45 +0000718 i = remaining / 3600;
719 if (i)
720 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
721 "%2d:", i);
722 else
723 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
724 " ");
725 i = remaining % 3600;
726 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
727 "%02d:%02d ETA", i / 60, i % 60);
728 }
Randolph Chungda7b8292000-12-07 03:55:35 +0000729 write(fileno(stderr), buf, strlen(buf));
Eric Andersenb520e082000-10-03 00:21:45 +0000730
731 if (flag == -1) {
732 struct sigaction sa;
733 sa.sa_handler = updateprogressmeter;
734 sigemptyset(&sa.sa_mask);
735 sa.sa_flags = SA_RESTART;
736 sigaction(SIGALRM, &sa, NULL);
737 alarmtimer(1);
738 } else if (flag == 1) {
739 alarmtimer(0);
740 statbytes = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000741 putc('\n', stderr);
Eric Andersenb520e082000-10-03 00:21:45 +0000742 }
743}
744#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000745
Eric Andersen370fb082001-01-20 20:07:00 +0000746/* Original copyright notice which applies to the BB_FEATURE_WGET_STATUSBAR stuff,
Eric Andersen4e573f42000-11-14 23:29:24 +0000747 * much of which was blatently stolen from openssh. */
748
749/*-
750 * Copyright (c) 1992, 1993
751 * The Regents of the University of California. All rights reserved.
752 *
753 * Redistribution and use in source and binary forms, with or without
754 * modification, are permitted provided that the following conditions
755 * are met:
756 * 1. Redistributions of source code must retain the above copyright
757 * notice, this list of conditions and the following disclaimer.
758 * 2. Redistributions in binary form must reproduce the above copyright
759 * notice, this list of conditions and the following disclaimer in the
760 * documentation and/or other materials provided with the distribution.
761 *
762 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
763 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
764 *
765 * 4. Neither the name of the University nor the names of its contributors
766 * may be used to endorse or promote products derived from this software
767 * without specific prior written permission.
768 *
769 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
770 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
771 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
772 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
773 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
774 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
775 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
776 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
777 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
778 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
779 * SUCH DAMAGE.
780 *
Eric Andersen95a349f2001-05-13 00:55:54 +0000781 * $Id: wget.c,v 1.38 2001/05/13 00:55:54 andersen Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000782 */
783
784
785
Eric Andersen96700832000-09-04 15:15:55 +0000786/*
787Local Variables:
788c-file-style: "linux"
789c-basic-offset: 4
790tab-width: 4
791End:
792*/
Eric Andersenb520e082000-10-03 00:21:45 +0000793
Eric Andersen4e573f42000-11-14 23:29:24 +0000794
795