Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * wget - retrieve a file using HTTP |
| 4 | * |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 5 | * Chip Rosenthal Covad Communications <chip@laserlink.net> |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 6 | * |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 7 | * Note: According to RFC2616 section 3.6.1, "All HTTP/1.1 applications MUST be |
| 8 | * able to receive and decode the "chunked" transfer-coding, and MUST ignore |
| 9 | * chunk-extension extensions they do not understand." |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 10 | * |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 11 | * This prevents this particular wget app from completely RFC compliant, and as |
| 12 | * such, prevents it from being used as a general purpose web browser... This |
| 13 | * is a design decision, since it makes the code smaller. |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 14 | * |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 17 | #include <stdio.h> |
Eric Andersen | dff9d54 | 2001-01-26 02:04:49 +0000 | [diff] [blame] | 18 | #include <errno.h> |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 19 | #include <stdlib.h> |
| 20 | #include <unistd.h> |
| 21 | #include <ctype.h> |
| 22 | #include <string.h> |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 23 | #include <unistd.h> |
| 24 | #include <signal.h> |
| 25 | #include <sys/ioctl.h> |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 26 | |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 27 | #include <sys/time.h> |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 28 | #include <sys/types.h> |
| 29 | #include <sys/stat.h> |
| 30 | #include <sys/socket.h> |
| 31 | #include <netinet/in.h> |
| 32 | #include <arpa/inet.h> |
| 33 | #include <netdb.h> |
| 34 | |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 35 | #include "busybox.h" |
| 36 | |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 37 | /* Stupid libc5 doesn't define this... */ |
| 38 | #ifndef timersub |
| 39 | #define timersub(a, b, result) \ |
| 40 | do { \ |
| 41 | (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ |
| 42 | (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ |
| 43 | if ((result)->tv_usec < 0) { \ |
| 44 | --(result)->tv_sec; \ |
| 45 | (result)->tv_usec += 1000000; \ |
| 46 | } \ |
| 47 | } while (0) |
| 48 | #endif |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 49 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 50 | static void parse_url(char *url, char **uri_host, int *uri_port, char **uri_path); |
| 51 | static FILE *open_socket(char *host, int port); |
| 52 | static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc); |
| 53 | static void progressmeter(int flag); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 54 | |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 55 | /* Globals (can be accessed from signal handlers */ |
| 56 | static off_t filesize = 0; /* content-length of the file */ |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 57 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 58 | static char *curfile; /* Name of current file being transferred. */ |
| 59 | static struct timeval start; /* Time a transfer started. */ |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 60 | static volatile unsigned long statbytes; /* Number of bytes transferred so far. */ |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 61 | /* For progressmeter() -- number of seconds before xfer considered "stalled" */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 62 | static const int STALLTIME = 5; |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 63 | #endif |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 64 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 65 | static void close_and_delete_outfile(FILE* output, char *fname_out, int do_continue) |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 66 | { |
| 67 | if (output != stdout && do_continue==0) { |
| 68 | fclose(output); |
| 69 | unlink(fname_out); |
| 70 | } |
| 71 | } |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 72 | |
| 73 | int wget_main(int argc, char **argv) |
| 74 | { |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 75 | int n; |
| 76 | char *proxy, *proxy_host; |
| 77 | int uri_port, proxy_port; |
| 78 | char *s, buf[512]; |
| 79 | struct stat sbuf; |
| 80 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 81 | FILE *sfp; /* socket to web server */ |
| 82 | char *uri_host, *uri_path; /* parsed from command line url */ |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 83 | char *fname_out = NULL; /* where to direct output (-O) */ |
| 84 | int do_continue = 0; /* continue a prev transfer (-c) */ |
| 85 | long beg_range = 0L; /* range at which continue begins */ |
| 86 | int got_clen = 0; /* got content-length: from server */ |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 87 | FILE *output; /* socket to web server */ |
| 88 | int quiet_flag = FALSE; /* Be verry, verry quiet... */ |
| 89 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 90 | /* |
| 91 | * Crack command line. |
| 92 | */ |
Glenn L McGrath | 1bca5ed | 2000-12-09 08:12:06 +0000 | [diff] [blame] | 93 | while ((n = getopt(argc, argv, "cqO:")) != EOF) { |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 94 | switch (n) { |
| 95 | case 'c': |
| 96 | ++do_continue; |
| 97 | break; |
Glenn L McGrath | 1bca5ed | 2000-12-09 08:12:06 +0000 | [diff] [blame] | 98 | case 'q': |
| 99 | quiet_flag = TRUE; |
| 100 | break; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 101 | case 'O': |
Randolph Chung | 02553a2 | 2000-12-07 03:53:47 +0000 | [diff] [blame] | 102 | /* can't set fname_out to NULL if outputting to stdout, because |
| 103 | * this gets interpreted as the auto-gen output filename |
| 104 | * case below - tausq@debian.org |
| 105 | */ |
| 106 | fname_out = (strcmp(optarg, "-") == 0 ? (char *)1 : optarg); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 107 | break; |
| 108 | default: |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 109 | show_usage(); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 110 | } |
| 111 | } |
Eric Andersen | 25b669c | 2000-10-02 23:19:38 +0000 | [diff] [blame] | 112 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 113 | if (argc - optind != 1) |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 114 | show_usage(); |
Eric Andersen | 25b669c | 2000-10-02 23:19:38 +0000 | [diff] [blame] | 115 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 116 | /* |
Eric Andersen | f3b2b52 | 2000-12-07 22:42:11 +0000 | [diff] [blame] | 117 | * Use the proxy if necessary. |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 118 | */ |
Eric Andersen | f3b2b52 | 2000-12-07 22:42:11 +0000 | [diff] [blame] | 119 | if ((proxy = getenv("http_proxy")) != NULL) { |
| 120 | proxy = xstrdup(proxy); |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 121 | parse_url(proxy, &proxy_host, &proxy_port, &uri_path); |
| 122 | parse_url(argv[optind], &uri_host, &uri_port, &uri_path); |
Eric Andersen | f3b2b52 | 2000-12-07 22:42:11 +0000 | [diff] [blame] | 123 | } else { |
| 124 | /* |
| 125 | * Parse url into components. |
| 126 | */ |
| 127 | parse_url(argv[optind], &uri_host, &uri_port, &uri_path); |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 128 | proxy_host=uri_host; |
| 129 | proxy_port=uri_port; |
Eric Andersen | f3b2b52 | 2000-12-07 22:42:11 +0000 | [diff] [blame] | 130 | } |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 131 | |
| 132 | /* Guess an output filename */ |
| 133 | if (!fname_out) { |
| 134 | fname_out = |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 135 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 136 | curfile = |
| 137 | #endif |
| 138 | get_last_path_component(uri_path); |
| 139 | if (fname_out==NULL || strlen(fname_out)<1) { |
| 140 | fname_out = |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 141 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 142 | curfile = |
| 143 | #endif |
| 144 | "index.html"; |
| 145 | } |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 146 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 147 | } else { |
| 148 | curfile=argv[optind]; |
| 149 | #endif |
| 150 | } |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 151 | if (do_continue && !fname_out) |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 152 | error_msg_and_die("cannot specify continue (-c) without a filename (-O)"); |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 153 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 154 | |
| 155 | /* |
| 156 | * Open socket to server. |
| 157 | */ |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 158 | sfp = open_socket(proxy_host, proxy_port); |
| 159 | |
| 160 | /* Make the assumption that if the file already exists |
| 161 | * on disk that the intention is to continue downloading |
| 162 | * a previously aborted download -Erik */ |
| 163 | if (stat(fname_out, &sbuf) == 0) { |
| 164 | ++do_continue; |
| 165 | } |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 166 | |
| 167 | /* |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 168 | * Open the output file stream. |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 169 | */ |
Randolph Chung | 02553a2 | 2000-12-07 03:53:47 +0000 | [diff] [blame] | 170 | if (fname_out != (char *)1) { |
Eric Andersen | 79e898a | 2001-01-31 17:49:47 +0000 | [diff] [blame] | 171 | output = xfopen( fname_out, (do_continue ? "a" : "w") ); |
Randolph Chung | 02553a2 | 2000-12-07 03:53:47 +0000 | [diff] [blame] | 172 | } else { |
| 173 | output = stdout; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | /* |
| 177 | * Determine where to start transfer. |
| 178 | */ |
| 179 | if (do_continue) { |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 180 | if (fstat(fileno(output), &sbuf) < 0) |
Matt Kraai | 0dab829 | 2000-12-18 03:08:29 +0000 | [diff] [blame] | 181 | perror_msg_and_die("fstat()"); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 182 | if (sbuf.st_size > 0) |
| 183 | beg_range = sbuf.st_size; |
| 184 | else |
| 185 | do_continue = 0; |
| 186 | } |
| 187 | |
| 188 | /* |
| 189 | * Send HTTP request. |
| 190 | */ |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 191 | fprintf(sfp, "GET http://%s:%d/%s HTTP/1.1\r\n", |
| 192 | uri_host, uri_port, uri_path); |
| 193 | fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", uri_host); |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 194 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 195 | if (do_continue) |
| 196 | fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range); |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 197 | fprintf(sfp,"Connection: close\r\n\r\n"); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 198 | |
| 199 | /* |
| 200 | * Retrieve HTTP response line and check for "200" status code. |
| 201 | */ |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 202 | if (fgets(buf, sizeof(buf), sfp) == NULL) { |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 203 | close_and_delete_outfile(output, fname_out, do_continue); |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 204 | error_msg_and_die("no response from server"); |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 205 | } |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 206 | for (s = buf ; *s != '\0' && !isspace(*s) ; ++s) |
| 207 | ; |
| 208 | for ( ; isspace(*s) ; ++s) |
| 209 | ; |
| 210 | switch (atoi(s)) { |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 211 | case 0: |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 212 | case 200: |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 213 | break; |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 214 | case 206: |
| 215 | if (do_continue) |
| 216 | break; |
| 217 | /*FALLTHRU*/ |
| 218 | default: |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 219 | close_and_delete_outfile(output, fname_out, do_continue); |
Matt Kraai | 05e782d | 2001-02-01 16:49:30 +0000 | [diff] [blame] | 220 | chomp(buf); |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 221 | error_msg_and_die("server returned error %d: %s", atoi(s), buf); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | /* |
| 225 | * Retrieve HTTP headers. |
| 226 | */ |
| 227 | while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) { |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 228 | if (strcasecmp(buf, "content-length") == 0) { |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 229 | filesize = atol(s); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 230 | got_clen = 1; |
| 231 | continue; |
| 232 | } |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 233 | if (strcasecmp(buf, "transfer-encoding") == 0) { |
| 234 | close_and_delete_outfile(output, fname_out, do_continue); |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 235 | error_msg_and_die("server wants to do %s transfer encoding", s); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 236 | continue; |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | /* |
| 241 | * Retrieve HTTP body. |
| 242 | */ |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 243 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 244 | statbytes=0; |
Glenn L McGrath | 1bca5ed | 2000-12-09 08:12:06 +0000 | [diff] [blame] | 245 | if (quiet_flag==FALSE) |
| 246 | progressmeter(-1); |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 247 | #endif |
| 248 | while (filesize > 0 && (n = fread(buf, 1, sizeof(buf), sfp)) > 0) { |
| 249 | fwrite(buf, 1, n, output); |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 250 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 251 | statbytes+=n; |
Glenn L McGrath | 1bca5ed | 2000-12-09 08:12:06 +0000 | [diff] [blame] | 252 | if (quiet_flag==FALSE) |
| 253 | progressmeter(1); |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 254 | #endif |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 255 | if (got_clen) |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 256 | filesize -= n; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 257 | } |
| 258 | if (n == 0 && ferror(sfp)) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 259 | perror_msg_and_die("network read error"); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 260 | |
| 261 | exit(0); |
| 262 | } |
| 263 | |
| 264 | |
| 265 | void parse_url(char *url, char **uri_host, int *uri_port, char **uri_path) |
| 266 | { |
Matt Kraai | a9711a5 | 2001-01-03 16:15:15 +0000 | [diff] [blame] | 267 | char *cp, *sp; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 268 | |
| 269 | *uri_port = 80; |
| 270 | |
| 271 | if (strncmp(url, "http://", 7) != 0) |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 272 | error_msg_and_die("not an http url: %s", url); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 273 | |
Matt Kraai | a9711a5 | 2001-01-03 16:15:15 +0000 | [diff] [blame] | 274 | *uri_host = url + 7; |
| 275 | |
| 276 | cp = strchr(*uri_host, ':'); |
| 277 | sp = strchr(*uri_host, '/'); |
| 278 | |
| 279 | if (cp != NULL && (sp == NULL || cp < sp)) { |
| 280 | *cp++ = '\0'; |
| 281 | *uri_port = atoi(cp); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 282 | } |
Randolph Chung | 02553a2 | 2000-12-07 03:53:47 +0000 | [diff] [blame] | 283 | |
Matt Kraai | a9711a5 | 2001-01-03 16:15:15 +0000 | [diff] [blame] | 284 | if (sp != NULL) { |
| 285 | *sp++ = '\0'; |
| 286 | *uri_path = sp; |
| 287 | } else |
| 288 | *uri_path = ""; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | |
| 292 | FILE *open_socket(char *host, int port) |
| 293 | { |
| 294 | struct sockaddr_in sin; |
| 295 | struct hostent *hp; |
| 296 | int fd; |
| 297 | FILE *fp; |
| 298 | |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 299 | memset(&sin, 0, sizeof(sin)); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 300 | sin.sin_family = AF_INET; |
| 301 | if ((hp = (struct hostent *) gethostbyname(host)) == NULL) |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 302 | error_msg_and_die("cannot resolve %s", host); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 303 | memcpy(&sin.sin_addr, hp->h_addr_list[0], hp->h_length); |
| 304 | sin.sin_port = htons(port); |
| 305 | |
| 306 | /* |
| 307 | * Get the server onto a stdio stream. |
| 308 | */ |
| 309 | if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 310 | perror_msg_and_die("socket()"); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 311 | if (connect(fd, (struct sockaddr *) &sin, sizeof(sin)) < 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 312 | perror_msg_and_die("connect(%s)", host); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 313 | if ((fp = fdopen(fd, "r+")) == NULL) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 314 | perror_msg_and_die("fdopen()"); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 315 | |
| 316 | return fp; |
| 317 | } |
| 318 | |
| 319 | |
| 320 | char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc) |
| 321 | { |
| 322 | char *s, *hdrval; |
| 323 | int c; |
| 324 | |
| 325 | *istrunc = 0; |
| 326 | |
| 327 | /* retrieve header line */ |
| 328 | if (fgets(buf, bufsiz, fp) == NULL) |
| 329 | return NULL; |
| 330 | |
| 331 | /* see if we are at the end of the headers */ |
| 332 | for (s = buf ; *s == '\r' ; ++s) |
| 333 | ; |
| 334 | if (s[0] == '\n') |
| 335 | return NULL; |
| 336 | |
| 337 | /* convert the header name to lower case */ |
| 338 | for (s = buf ; isalnum(*s) || *s == '-' ; ++s) |
| 339 | *s = tolower(*s); |
| 340 | |
| 341 | /* verify we are at the end of the header name */ |
| 342 | if (*s != ':') |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 343 | error_msg_and_die("bad header line: %s", buf); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 344 | |
| 345 | /* locate the start of the header value */ |
| 346 | for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s) |
| 347 | ; |
| 348 | hdrval = s; |
| 349 | |
| 350 | /* locate the end of header */ |
| 351 | while (*s != '\0' && *s != '\r' && *s != '\n') |
| 352 | ++s; |
| 353 | |
| 354 | /* end of header found */ |
| 355 | if (*s != '\0') { |
| 356 | *s = '\0'; |
| 357 | return hdrval; |
| 358 | } |
| 359 | |
Eric Andersen | 5d63884 | 2000-09-14 21:46:30 +0000 | [diff] [blame] | 360 | /* Rats! The buffer isn't big enough to hold the entire header value. */ |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 361 | while (c = getc(fp), c != EOF && c != '\n') |
| 362 | ; |
| 363 | *istrunc = 1; |
| 364 | return hdrval; |
| 365 | } |
| 366 | |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 367 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 368 | /* Stuff below is from BSD rcp util.c, as added to openshh. |
| 369 | * Original copyright notice is retained at the end of this file. |
| 370 | * |
| 371 | */ |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 372 | |
| 373 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 374 | static int |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 375 | getttywidth(void) |
| 376 | { |
| 377 | struct winsize winsize; |
| 378 | |
| 379 | if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1) |
| 380 | return (winsize.ws_col ? winsize.ws_col : 80); |
| 381 | else |
| 382 | return (80); |
| 383 | } |
| 384 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 385 | static void |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 386 | updateprogressmeter(int ignore) |
| 387 | { |
| 388 | int save_errno = errno; |
| 389 | |
| 390 | progressmeter(0); |
| 391 | errno = save_errno; |
| 392 | } |
| 393 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 394 | static void |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 395 | alarmtimer(int wait) |
| 396 | { |
| 397 | struct itimerval itv; |
| 398 | |
| 399 | itv.it_value.tv_sec = wait; |
| 400 | itv.it_value.tv_usec = 0; |
| 401 | itv.it_interval = itv.it_value; |
| 402 | setitimer(ITIMER_REAL, &itv, NULL); |
| 403 | } |
| 404 | |
| 405 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 406 | static void |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 407 | progressmeter(int flag) |
| 408 | { |
| 409 | static const char prefixes[] = " KMGTP"; |
| 410 | static struct timeval lastupdate; |
| 411 | static off_t lastsize; |
| 412 | struct timeval now, td, wait; |
| 413 | off_t cursize, abbrevsize; |
| 414 | double elapsed; |
| 415 | int ratio, barlength, i, remaining; |
| 416 | char buf[256]; |
| 417 | |
| 418 | if (flag == -1) { |
| 419 | (void) gettimeofday(&start, (struct timezone *) 0); |
| 420 | lastupdate = start; |
| 421 | lastsize = 0; |
| 422 | } |
| 423 | |
| 424 | (void) gettimeofday(&now, (struct timezone *) 0); |
| 425 | cursize = statbytes; |
| 426 | if (filesize != 0) { |
| 427 | ratio = 100.0 * cursize / filesize; |
| 428 | ratio = MAX(ratio, 0); |
| 429 | ratio = MIN(ratio, 100); |
| 430 | } else |
| 431 | ratio = 100; |
| 432 | |
| 433 | snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio); |
| 434 | |
| 435 | barlength = getttywidth() - 51; |
| 436 | if (barlength > 0) { |
| 437 | i = barlength * ratio / 100; |
| 438 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 439 | "|%.*s%*s|", i, |
| 440 | "*****************************************************************************" |
| 441 | "*****************************************************************************", |
| 442 | barlength - i, ""); |
| 443 | } |
| 444 | i = 0; |
| 445 | abbrevsize = cursize; |
| 446 | while (abbrevsize >= 100000 && i < sizeof(prefixes)) { |
| 447 | i++; |
| 448 | abbrevsize >>= 10; |
| 449 | } |
| 450 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ", |
| 451 | (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' : |
| 452 | 'B'); |
| 453 | |
| 454 | timersub(&now, &lastupdate, &wait); |
| 455 | if (cursize > lastsize) { |
| 456 | lastupdate = now; |
| 457 | lastsize = cursize; |
| 458 | if (wait.tv_sec >= STALLTIME) { |
| 459 | start.tv_sec += wait.tv_sec; |
| 460 | start.tv_usec += wait.tv_usec; |
| 461 | } |
| 462 | wait.tv_sec = 0; |
| 463 | } |
| 464 | timersub(&now, &start, &td); |
| 465 | elapsed = td.tv_sec + (td.tv_usec / 1000000.0); |
| 466 | |
| 467 | if (statbytes <= 0 || elapsed <= 0.0 || cursize > filesize) { |
| 468 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 469 | " --:-- ETA"); |
| 470 | } else if (wait.tv_sec >= STALLTIME) { |
| 471 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 472 | " - stalled -"); |
| 473 | } else { |
| 474 | remaining = (int) (filesize / (statbytes / elapsed) - elapsed); |
| 475 | i = remaining / 3600; |
| 476 | if (i) |
| 477 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 478 | "%2d:", i); |
| 479 | else |
| 480 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 481 | " "); |
| 482 | i = remaining % 3600; |
| 483 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 484 | "%02d:%02d ETA", i / 60, i % 60); |
| 485 | } |
Randolph Chung | da7b829 | 2000-12-07 03:55:35 +0000 | [diff] [blame] | 486 | write(fileno(stderr), buf, strlen(buf)); |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 487 | |
| 488 | if (flag == -1) { |
| 489 | struct sigaction sa; |
| 490 | sa.sa_handler = updateprogressmeter; |
| 491 | sigemptyset(&sa.sa_mask); |
| 492 | sa.sa_flags = SA_RESTART; |
| 493 | sigaction(SIGALRM, &sa, NULL); |
| 494 | alarmtimer(1); |
| 495 | } else if (flag == 1) { |
| 496 | alarmtimer(0); |
| 497 | statbytes = 0; |
| 498 | } |
| 499 | } |
| 500 | #endif |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 501 | |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 502 | /* Original copyright notice which applies to the BB_FEATURE_WGET_STATUSBAR stuff, |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 503 | * much of which was blatently stolen from openssh. */ |
| 504 | |
| 505 | /*- |
| 506 | * Copyright (c) 1992, 1993 |
| 507 | * The Regents of the University of California. All rights reserved. |
| 508 | * |
| 509 | * Redistribution and use in source and binary forms, with or without |
| 510 | * modification, are permitted provided that the following conditions |
| 511 | * are met: |
| 512 | * 1. Redistributions of source code must retain the above copyright |
| 513 | * notice, this list of conditions and the following disclaimer. |
| 514 | * 2. Redistributions in binary form must reproduce the above copyright |
| 515 | * notice, this list of conditions and the following disclaimer in the |
| 516 | * documentation and/or other materials provided with the distribution. |
| 517 | * |
| 518 | * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change |
| 519 | * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> |
| 520 | * |
| 521 | * 4. Neither the name of the University nor the names of its contributors |
| 522 | * may be used to endorse or promote products derived from this software |
| 523 | * without specific prior written permission. |
| 524 | * |
| 525 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 526 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 527 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 528 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 529 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 530 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 531 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 532 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 533 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 534 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 535 | * SUCH DAMAGE. |
| 536 | * |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 537 | * $Id: wget.c,v 1.29 2001/03/09 21:24:12 andersen Exp $ |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 538 | */ |
| 539 | |
| 540 | |
| 541 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 542 | /* |
| 543 | Local Variables: |
| 544 | c-file-style: "linux" |
| 545 | c-basic-offset: 4 |
| 546 | tab-width: 4 |
| 547 | End: |
| 548 | */ |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 549 | |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 550 | |
| 551 | |