Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 3 | * wget - retrieve a file using HTTP or FTP |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 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 | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 9 | #include <stdio.h> |
Eric Andersen | dff9d54 | 2001-01-26 02:04:49 +0000 | [diff] [blame] | 10 | #include <errno.h> |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 11 | #include <stdlib.h> |
| 12 | #include <unistd.h> |
| 13 | #include <ctype.h> |
| 14 | #include <string.h> |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 15 | #include <unistd.h> |
| 16 | #include <signal.h> |
| 17 | #include <sys/ioctl.h> |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 18 | |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 19 | #include <sys/time.h> |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 20 | #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 Andersen | 50ae310 | 2001-05-15 17:51:37 +0000 | [diff] [blame] | 27 | #ifndef _GNU_SOURCE |
| 28 | #define _GNU_SOURCE |
| 29 | #endif |
| 30 | #include <getopt.h> |
| 31 | |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 32 | #include "busybox.h" |
| 33 | |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 34 | /* Stupid libc5 doesn't define this... */ |
| 35 | #ifndef timersub |
| 36 | #define timersub(a, b, result) \ |
| 37 | do { \ |
| 38 | (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ |
| 39 | (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ |
| 40 | if ((result)->tv_usec < 0) { \ |
| 41 | --(result)->tv_sec; \ |
| 42 | (result)->tv_usec += 1000000; \ |
| 43 | } \ |
| 44 | } while (0) |
| 45 | #endif |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 46 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 47 | struct host_info { |
| 48 | char *host; |
| 49 | int port; |
| 50 | char *path; |
| 51 | int is_ftp; |
| 52 | char *user; |
| 53 | }; |
| 54 | |
| 55 | static void parse_url(char *url, struct host_info *h); |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 56 | static FILE *open_socket(char *host, int port); |
| 57 | static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc); |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 58 | static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 59 | |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 60 | /* Globals (can be accessed from signal handlers */ |
| 61 | static off_t filesize = 0; /* content-length of the file */ |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 62 | static int chunked = 0; /* chunked transfer encoding */ |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 63 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | 20aab26 | 2001-07-19 22:28:02 +0000 | [diff] [blame] | 64 | static void progressmeter(int flag); |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 65 | static char *curfile; /* Name of current file being transferred. */ |
| 66 | static struct timeval start; /* Time a transfer started. */ |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 67 | static volatile unsigned long statbytes = 0; /* Number of bytes transferred so far. */ |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 68 | /* For progressmeter() -- number of seconds before xfer considered "stalled" */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 69 | static const int STALLTIME = 5; |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 70 | #endif |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 71 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 72 | 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] | 73 | { |
| 74 | if (output != stdout && do_continue==0) { |
| 75 | fclose(output); |
| 76 | unlink(fname_out); |
| 77 | } |
| 78 | } |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 79 | |
Matt Kraai | 854125f | 2001-05-09 19:15:46 +0000 | [diff] [blame] | 80 | /* Read NMEMB elements of SIZE bytes into PTR from STREAM. Returns the |
| 81 | * number of elements read, and a short count if an eof or non-interrupt |
| 82 | * error is encountered. */ |
| 83 | static size_t safe_fread(void *ptr, size_t size, size_t nmemb, FILE *stream) |
| 84 | { |
| 85 | size_t ret = 0; |
| 86 | |
| 87 | do { |
| 88 | clearerr(stream); |
| 89 | ret += fread((char *)ptr + (ret * size), size, nmemb - ret, stream); |
| 90 | } while (ret < nmemb && ferror(stream) && errno == EINTR); |
| 91 | |
| 92 | return ret; |
| 93 | } |
| 94 | |
| 95 | /* Write NMEMB elements of SIZE bytes from PTR to STREAM. Returns the |
| 96 | * number of elements written, and a short count if an eof or non-interrupt |
| 97 | * error is encountered. */ |
| 98 | static size_t safe_fwrite(void *ptr, size_t size, size_t nmemb, FILE *stream) |
| 99 | { |
| 100 | size_t ret = 0; |
| 101 | |
| 102 | do { |
| 103 | clearerr(stream); |
| 104 | ret += fwrite((char *)ptr + (ret * size), size, nmemb - ret, stream); |
| 105 | } while (ret < nmemb && ferror(stream) && errno == EINTR); |
| 106 | |
| 107 | return ret; |
| 108 | } |
| 109 | |
| 110 | /* Read a line or SIZE - 1 bytes into S, whichever is less, from STREAM. |
| 111 | * Returns S, or NULL if an eof or non-interrupt error is encountered. */ |
| 112 | static char *safe_fgets(char *s, int size, FILE *stream) |
| 113 | { |
| 114 | char *ret; |
| 115 | |
| 116 | do { |
| 117 | clearerr(stream); |
| 118 | ret = fgets(s, size, stream); |
| 119 | } while (ret == NULL && ferror(stream) && errno == EINTR); |
| 120 | |
| 121 | return ret; |
| 122 | } |
| 123 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 124 | #define close_delete_and_die(s...) { \ |
| 125 | close_and_delete_outfile(output, fname_out, do_continue); \ |
| 126 | error_msg_and_die(s); } |
| 127 | |
| 128 | |
| 129 | #ifdef BB_FEATURE_WGET_AUTHENTICATION |
| 130 | /* |
| 131 | * Base64-encode character string |
| 132 | * oops... isn't something similar in uuencode.c? |
| 133 | * It would be better to use already existing code |
| 134 | */ |
| 135 | char *base64enc(char *p, char *buf, int len) { |
| 136 | |
| 137 | char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" |
| 138 | "0123456789+/"; |
| 139 | char *s = buf; |
| 140 | |
| 141 | while(*p) { |
| 142 | if (s >= buf+len-4) |
| 143 | error_msg_and_die("buffer overflow"); |
| 144 | *(s++) = al[(*p >> 2) & 0x3F]; |
| 145 | *(s++) = al[((*p << 4) & 0x30) | ((*(p+1) >> 4) & 0x0F)]; |
| 146 | *s = *(s+1) = '='; |
| 147 | *(s+2) = 0; |
| 148 | if (! *(++p)) break; |
| 149 | *(s++) = al[((*p << 2) & 0x3C) | ((*(p+1) >> 6) & 0x03)]; |
| 150 | if (! *(++p)) break; |
| 151 | *(s++) = al[*(p++) & 0x3F]; |
| 152 | } |
| 153 | |
| 154 | return buf; |
| 155 | } |
| 156 | #endif |
| 157 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 158 | int wget_main(int argc, char **argv) |
| 159 | { |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 160 | int n, try=5, status; |
| 161 | int port; |
| 162 | char *proxy; |
Eric Andersen | 8071c02 | 2001-06-21 19:45:06 +0000 | [diff] [blame] | 163 | char *dir_prefix=NULL; |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 164 | char *s, buf[512]; |
| 165 | struct stat sbuf; |
Eric Andersen | 50ae310 | 2001-05-15 17:51:37 +0000 | [diff] [blame] | 166 | char extra_headers[1024]; |
| 167 | char *extra_headers_ptr = extra_headers; |
| 168 | int extra_headers_left = sizeof(extra_headers); |
| 169 | int which_long_opt = 0, option_index = -1; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 170 | struct host_info server, target; |
| 171 | |
| 172 | FILE *sfp = NULL; /* socket to web/ftp server */ |
| 173 | FILE *dfp = NULL; /* socket to ftp server (data) */ |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 174 | char *fname_out = NULL; /* where to direct output (-O) */ |
| 175 | int do_continue = 0; /* continue a prev transfer (-c) */ |
| 176 | long beg_range = 0L; /* range at which continue begins */ |
| 177 | int got_clen = 0; /* got content-length: from server */ |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 178 | FILE *output; /* socket to web server */ |
| 179 | int quiet_flag = FALSE; /* Be verry, verry quiet... */ |
| 180 | |
Eric Andersen | 50ae310 | 2001-05-15 17:51:37 +0000 | [diff] [blame] | 181 | #define LONG_HEADER 1 |
| 182 | struct option long_options[] = { |
| 183 | { "continue", 0, NULL, 'c' }, |
| 184 | { "quiet", 0, NULL, 'q' }, |
| 185 | { "output-document", 1, NULL, 'O' }, |
| 186 | { "header", 1, &which_long_opt, LONG_HEADER }, |
| 187 | { 0, 0, 0, 0 } |
| 188 | }; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 189 | /* |
| 190 | * Crack command line. |
| 191 | */ |
Eric Andersen | 8071c02 | 2001-06-21 19:45:06 +0000 | [diff] [blame] | 192 | while ((n = getopt_long(argc, argv, "cqO:P:", long_options, &option_index)) != EOF) { |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 193 | switch (n) { |
| 194 | case 'c': |
| 195 | ++do_continue; |
| 196 | break; |
Eric Andersen | 8071c02 | 2001-06-21 19:45:06 +0000 | [diff] [blame] | 197 | case 'P': |
Matt Kraai | 0382eb8 | 2001-07-19 19:13:55 +0000 | [diff] [blame] | 198 | dir_prefix = optarg; |
Eric Andersen | 8071c02 | 2001-06-21 19:45:06 +0000 | [diff] [blame] | 199 | break; |
Glenn L McGrath | 1bca5ed | 2000-12-09 08:12:06 +0000 | [diff] [blame] | 200 | case 'q': |
| 201 | quiet_flag = TRUE; |
| 202 | break; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 203 | case 'O': |
Randolph Chung | 02553a2 | 2000-12-07 03:53:47 +0000 | [diff] [blame] | 204 | /* can't set fname_out to NULL if outputting to stdout, because |
| 205 | * this gets interpreted as the auto-gen output filename |
| 206 | * case below - tausq@debian.org |
| 207 | */ |
Matt Kraai | 65317ea | 2001-04-11 20:03:01 +0000 | [diff] [blame] | 208 | fname_out = optarg; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 209 | break; |
Eric Andersen | 50ae310 | 2001-05-15 17:51:37 +0000 | [diff] [blame] | 210 | case 0: |
| 211 | switch (which_long_opt) { |
| 212 | case LONG_HEADER: { |
| 213 | int arglen = strlen(optarg); |
| 214 | if(extra_headers_left - arglen - 2 <= 0) |
| 215 | error_msg_and_die("extra_headers buffer too small(need %i)", extra_headers_left - arglen); |
| 216 | strcpy(extra_headers_ptr, optarg); |
| 217 | extra_headers_ptr += arglen; |
| 218 | extra_headers_left -= ( arglen + 2 ); |
| 219 | *extra_headers_ptr++ = '\r'; |
| 220 | *extra_headers_ptr++ = '\n'; |
| 221 | *(extra_headers_ptr + 1) = 0; |
| 222 | break; |
| 223 | } |
| 224 | } |
| 225 | break; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 226 | default: |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 227 | show_usage(); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 228 | } |
| 229 | } |
Eric Andersen | 25b669c | 2000-10-02 23:19:38 +0000 | [diff] [blame] | 230 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 231 | if (argc - optind != 1) |
Eric Andersen | 67991cf | 2001-02-14 21:23:06 +0000 | [diff] [blame] | 232 | show_usage(); |
Eric Andersen | 25b669c | 2000-10-02 23:19:38 +0000 | [diff] [blame] | 233 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 234 | parse_url(argv[optind], &target); |
| 235 | server.host = target.host; |
| 236 | server.port = target.port; |
| 237 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 238 | /* |
Eric Andersen | f3b2b52 | 2000-12-07 22:42:11 +0000 | [diff] [blame] | 239 | * Use the proxy if necessary. |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 240 | */ |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 241 | proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy"); |
| 242 | if (proxy) |
| 243 | parse_url(xstrdup(proxy), &server); |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 244 | |
| 245 | /* Guess an output filename */ |
| 246 | if (!fname_out) { |
| 247 | fname_out = |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 248 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 249 | curfile = |
| 250 | #endif |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 251 | get_last_path_component(target.path); |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 252 | if (fname_out==NULL || strlen(fname_out)<1) { |
| 253 | fname_out = |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 254 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 255 | curfile = |
| 256 | #endif |
| 257 | "index.html"; |
| 258 | } |
Matt Kraai | 0382eb8 | 2001-07-19 19:13:55 +0000 | [diff] [blame] | 259 | if (dir_prefix != NULL) |
| 260 | fname_out = concat_path_file(dir_prefix, fname_out); |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 261 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 262 | } else { |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 263 | curfile = get_last_path_component(fname_out); |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 264 | #endif |
| 265 | } |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 266 | if (do_continue && !fname_out) |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 267 | error_msg_and_die("cannot specify continue (-c) without a filename (-O)"); |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 268 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 269 | |
| 270 | /* |
Eric Andersen | 29edd00 | 2000-12-09 16:55:35 +0000 | [diff] [blame] | 271 | * Open the output file stream. |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 272 | */ |
Matt Kraai | 65317ea | 2001-04-11 20:03:01 +0000 | [diff] [blame] | 273 | if (strcmp(fname_out, "-") == 0) { |
Randolph Chung | 02553a2 | 2000-12-07 03:53:47 +0000 | [diff] [blame] | 274 | output = stdout; |
Eric Andersen | 95a349f | 2001-05-13 00:55:54 +0000 | [diff] [blame] | 275 | quiet_flag = TRUE; |
Matt Kraai | 65317ea | 2001-04-11 20:03:01 +0000 | [diff] [blame] | 276 | } else { |
| 277 | output = xfopen(fname_out, (do_continue ? "a" : "w")); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 278 | } |
| 279 | |
| 280 | /* |
| 281 | * Determine where to start transfer. |
| 282 | */ |
| 283 | if (do_continue) { |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 284 | if (fstat(fileno(output), &sbuf) < 0) |
Matt Kraai | 0dab829 | 2000-12-18 03:08:29 +0000 | [diff] [blame] | 285 | perror_msg_and_die("fstat()"); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 286 | if (sbuf.st_size > 0) |
| 287 | beg_range = sbuf.st_size; |
| 288 | else |
| 289 | do_continue = 0; |
| 290 | } |
| 291 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 292 | if (proxy || !target.is_ftp) { |
| 293 | /* |
| 294 | * HTTP session |
| 295 | */ |
| 296 | do { |
| 297 | if (! --try) |
| 298 | close_delete_and_die("too many redirections"); |
Eric Andersen | 7d69701 | 2001-01-24 20:28:35 +0000 | [diff] [blame] | 299 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 300 | /* |
| 301 | * Open socket to http server |
| 302 | */ |
| 303 | if (sfp) fclose(sfp); |
| 304 | sfp = open_socket(server.host, server.port); |
| 305 | |
| 306 | /* |
| 307 | * Send HTTP request. |
| 308 | */ |
| 309 | if (proxy) { |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 310 | fprintf(sfp, "GET %stp://%s:%d/%s HTTP/1.1\r\n", |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 311 | target.is_ftp ? "f" : "ht", target.host, |
| 312 | target.port, target.path); |
| 313 | } else { |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 314 | fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path); |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 315 | } |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 316 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 317 | fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host); |
| 318 | |
| 319 | #ifdef BB_FEATURE_WGET_AUTHENTICATION |
| 320 | if (target.user) { |
| 321 | fprintf(sfp, "Authorization: Basic %s\r\n", |
| 322 | base64enc(target.user, buf, sizeof(buf))); |
| 323 | } |
| 324 | if (proxy && server.user) { |
| 325 | fprintf(sfp, "Proxy-Authorization: Basic %s\r\n", |
| 326 | base64enc(server.user, buf, sizeof(buf))); |
| 327 | } |
| 328 | #endif |
| 329 | |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 330 | if (do_continue) |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 331 | fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range); |
Eric Andersen | 50ae310 | 2001-05-15 17:51:37 +0000 | [diff] [blame] | 332 | if(extra_headers_left < sizeof(extra_headers)) |
Eric Andersen | 9abfe85 | 2001-05-15 20:11:49 +0000 | [diff] [blame] | 333 | fputs(extra_headers,sfp); |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 334 | fprintf(sfp,"Connection: close\r\n\r\n"); |
| 335 | |
| 336 | /* |
| 337 | * Retrieve HTTP response line and check for "200" status code. |
| 338 | */ |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 339 | read_response: if (fgets(buf, sizeof(buf), sfp) == NULL) |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 340 | close_delete_and_die("no response from server"); |
| 341 | |
| 342 | for (s = buf ; *s != '\0' && !isspace(*s) ; ++s) |
| 343 | ; |
| 344 | for ( ; isspace(*s) ; ++s) |
| 345 | ; |
| 346 | switch (status = atoi(s)) { |
| 347 | case 0: |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 348 | case 100: |
| 349 | while (gethdr(buf, sizeof(buf), sfp, &n) != NULL); |
| 350 | goto read_response; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 351 | case 200: |
| 352 | if (do_continue && output != stdout) |
| 353 | output = freopen(fname_out, "w", output); |
| 354 | do_continue = 0; |
| 355 | break; |
| 356 | case 300: /* redirection */ |
| 357 | case 301: |
| 358 | case 302: |
| 359 | case 303: |
| 360 | break; |
| 361 | case 206: |
| 362 | if (do_continue) |
| 363 | break; |
| 364 | /*FALLTHRU*/ |
| 365 | default: |
| 366 | chomp(buf); |
| 367 | close_delete_and_die("server returned error %d: %s", atoi(s), buf); |
| 368 | } |
| 369 | |
| 370 | /* |
| 371 | * Retrieve HTTP headers. |
| 372 | */ |
| 373 | while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) { |
| 374 | if (strcasecmp(buf, "content-length") == 0) { |
| 375 | filesize = atol(s); |
| 376 | got_clen = 1; |
| 377 | continue; |
| 378 | } |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 379 | if (strcasecmp(buf, "transfer-encoding") == 0) { |
| 380 | if (strcasecmp(s, "chunked") == 0) { |
| 381 | chunked = got_clen = 1; |
| 382 | } else { |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 383 | close_delete_and_die("server wants to do %s transfer encoding", s); |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 384 | } |
| 385 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 386 | if (strcasecmp(buf, "location") == 0) { |
| 387 | if (s[0] == '/') |
| 388 | target.path = xstrdup(s+1); |
| 389 | else { |
| 390 | parse_url(xstrdup(s), &target); |
| 391 | if (!proxy) { |
| 392 | server.host = target.host; |
| 393 | server.port = target.port; |
| 394 | } |
| 395 | } |
| 396 | } |
| 397 | } |
| 398 | } while(status >= 300); |
| 399 | |
| 400 | dfp = sfp; |
| 401 | } |
| 402 | else |
| 403 | { |
| 404 | /* |
| 405 | * FTP session |
| 406 | */ |
| 407 | if (! target.user) |
| 408 | target.user = xstrdup("anonymous:busybox@"); |
| 409 | |
| 410 | sfp = open_socket(server.host, server.port); |
| 411 | if (ftpcmd(NULL, NULL, sfp, buf) != 220) |
| 412 | close_delete_and_die("%s", buf+4); |
| 413 | |
| 414 | /* |
| 415 | * Splitting username:password pair, |
| 416 | * trying to log in |
| 417 | */ |
| 418 | s = strchr(target.user, ':'); |
| 419 | if (s) |
| 420 | *(s++) = '\0'; |
| 421 | switch(ftpcmd("USER ", target.user, sfp, buf)) { |
| 422 | case 230: |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 423 | break; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 424 | case 331: |
| 425 | if (ftpcmd("PASS ", s, sfp, buf) == 230) |
| 426 | break; |
| 427 | /* FALLTHRU (failed login) */ |
| 428 | default: |
| 429 | close_delete_and_die("ftp login: %s", buf+4); |
| 430 | } |
| 431 | |
| 432 | ftpcmd("CDUP", NULL, sfp, buf); |
| 433 | ftpcmd("TYPE I", NULL, sfp, buf); |
| 434 | |
| 435 | /* |
| 436 | * Querying file size |
| 437 | */ |
| 438 | if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) { |
| 439 | filesize = atol(buf+4); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 440 | got_clen = 1; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 441 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 442 | |
| 443 | /* |
| 444 | * Entering passive mode |
| 445 | */ |
| 446 | if (ftpcmd("PASV", NULL, sfp, buf) != 227) |
| 447 | close_delete_and_die("PASV: %s", buf+4); |
| 448 | s = strrchr(buf, ','); |
| 449 | *s = 0; |
| 450 | port = atoi(s+1); |
| 451 | s = strrchr(buf, ','); |
| 452 | port += atoi(s+1) * 256; |
| 453 | dfp = open_socket(server.host, port); |
| 454 | |
| 455 | if (do_continue) { |
| 456 | sprintf(buf, "REST %ld", beg_range); |
| 457 | if (ftpcmd(buf, NULL, sfp, buf) != 350) { |
| 458 | if (output != stdout) |
| 459 | output = freopen(fname_out, "w", output); |
| 460 | do_continue = 0; |
| 461 | } else |
| 462 | filesize -= beg_range; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 463 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 464 | |
| 465 | if (ftpcmd("RETR /", target.path, sfp, buf) > 150) |
| 466 | close_delete_and_die("RETR: %s", buf+4); |
| 467 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 468 | } |
| 469 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 470 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 471 | /* |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 472 | * Retrieve file |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 473 | */ |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 474 | if (chunked) { |
| 475 | fgets(buf, sizeof(buf), dfp); |
| 476 | filesize = strtol(buf, (char **) NULL, 16); |
| 477 | } |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 478 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Glenn L McGrath | 1bca5ed | 2000-12-09 08:12:06 +0000 | [diff] [blame] | 479 | if (quiet_flag==FALSE) |
| 480 | progressmeter(-1); |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 481 | #endif |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 482 | do { |
Matt Kraai | 854125f | 2001-05-09 19:15:46 +0000 | [diff] [blame] | 483 | while ((filesize > 0 || !got_clen) && (n = safe_fread(buf, 1, chunked ? (filesize > sizeof(buf) ? sizeof(buf) : filesize) : sizeof(buf), dfp)) > 0) { |
| 484 | safe_fwrite(buf, 1, n, output); |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 485 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 486 | statbytes+=n; |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 487 | #endif |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 488 | if (got_clen) |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 489 | filesize -= n; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 490 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 491 | |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 492 | if (chunked) { |
Matt Kraai | 854125f | 2001-05-09 19:15:46 +0000 | [diff] [blame] | 493 | safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */ |
| 494 | safe_fgets(buf, sizeof(buf), dfp); |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 495 | filesize = strtol(buf, (char **) NULL, 16); |
| 496 | if (filesize==0) chunked = 0; /* all done! */ |
| 497 | } |
| 498 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 499 | if (n == 0 && ferror(dfp)) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 500 | perror_msg_and_die("network read error"); |
Eric Andersen | 6d7fa43 | 2001-04-10 18:17:05 +0000 | [diff] [blame] | 501 | } while (chunked); |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 502 | #ifdef BB_FEATURE_WGET_STATUSBAR |
| 503 | if (quiet_flag==FALSE) |
| 504 | progressmeter(1); |
| 505 | #endif |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 506 | if (!proxy && target.is_ftp) { |
| 507 | fclose(dfp); |
| 508 | if (ftpcmd(NULL, NULL, sfp, buf) != 226) |
| 509 | error_msg_and_die("ftp error: %s", buf+4); |
| 510 | ftpcmd("QUIT", NULL, sfp, buf); |
| 511 | } |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 512 | exit(EXIT_SUCCESS); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 516 | void parse_url(char *url, struct host_info *h) |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 517 | { |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 518 | char *cp, *sp, *up; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 519 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 520 | if (strncmp(url, "http://", 7) == 0) { |
| 521 | h->port = 80; |
| 522 | h->host = url + 7; |
| 523 | h->is_ftp = 0; |
| 524 | } else if (strncmp(url, "ftp://", 6) == 0) { |
| 525 | h->port = 21; |
| 526 | h->host = url + 6; |
| 527 | h->is_ftp = 1; |
| 528 | } else |
| 529 | error_msg_and_die("not an http or ftp url: %s", url); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 530 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 531 | sp = strchr(h->host, '/'); |
Matt Kraai | a9711a5 | 2001-01-03 16:15:15 +0000 | [diff] [blame] | 532 | if (sp != NULL) { |
| 533 | *sp++ = '\0'; |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 534 | h->path = sp; |
Matt Kraai | a9711a5 | 2001-01-03 16:15:15 +0000 | [diff] [blame] | 535 | } else |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 536 | h->path = ""; |
| 537 | |
| 538 | up = strrchr(h->host, '@'); |
| 539 | if (up != NULL) { |
| 540 | h->user = h->host; |
| 541 | *up++ = '\0'; |
| 542 | h->host = up; |
| 543 | } else |
| 544 | h->user = NULL; |
| 545 | |
| 546 | cp = strchr(h->host, ':'); |
| 547 | if (cp != NULL) { |
| 548 | *cp++ = '\0'; |
| 549 | h->port = atoi(cp); |
| 550 | } |
| 551 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | |
| 555 | FILE *open_socket(char *host, int port) |
| 556 | { |
Eric Andersen | 1ca20a7 | 2001-03-21 07:34:27 +0000 | [diff] [blame] | 557 | struct sockaddr_in s_in; |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 558 | struct hostent *hp; |
| 559 | int fd; |
| 560 | FILE *fp; |
| 561 | |
Eric Andersen | 1ca20a7 | 2001-03-21 07:34:27 +0000 | [diff] [blame] | 562 | memset(&s_in, 0, sizeof(s_in)); |
| 563 | s_in.sin_family = AF_INET; |
Matt Kraai | c55b8d4 | 2001-05-16 15:40:51 +0000 | [diff] [blame] | 564 | hp = xgethostbyname(host); |
Eric Andersen | 1ca20a7 | 2001-03-21 07:34:27 +0000 | [diff] [blame] | 565 | memcpy(&s_in.sin_addr, hp->h_addr_list[0], hp->h_length); |
| 566 | s_in.sin_port = htons(port); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 567 | |
| 568 | /* |
| 569 | * Get the server onto a stdio stream. |
| 570 | */ |
| 571 | if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 572 | perror_msg_and_die("socket()"); |
Eric Andersen | 1ca20a7 | 2001-03-21 07:34:27 +0000 | [diff] [blame] | 573 | if (connect(fd, (struct sockaddr *) &s_in, sizeof(s_in)) < 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 574 | perror_msg_and_die("connect(%s)", host); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 575 | if ((fp = fdopen(fd, "r+")) == NULL) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 576 | perror_msg_and_die("fdopen()"); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 577 | |
| 578 | return fp; |
| 579 | } |
| 580 | |
| 581 | |
| 582 | char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc) |
| 583 | { |
| 584 | char *s, *hdrval; |
| 585 | int c; |
| 586 | |
| 587 | *istrunc = 0; |
| 588 | |
| 589 | /* retrieve header line */ |
| 590 | if (fgets(buf, bufsiz, fp) == NULL) |
| 591 | return NULL; |
| 592 | |
| 593 | /* see if we are at the end of the headers */ |
| 594 | for (s = buf ; *s == '\r' ; ++s) |
| 595 | ; |
| 596 | if (s[0] == '\n') |
| 597 | return NULL; |
| 598 | |
| 599 | /* convert the header name to lower case */ |
| 600 | for (s = buf ; isalnum(*s) || *s == '-' ; ++s) |
| 601 | *s = tolower(*s); |
| 602 | |
| 603 | /* verify we are at the end of the header name */ |
| 604 | if (*s != ':') |
Matt Kraai | dd19c69 | 2001-01-31 19:00:21 +0000 | [diff] [blame] | 605 | error_msg_and_die("bad header line: %s", buf); |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 606 | |
| 607 | /* locate the start of the header value */ |
| 608 | for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s) |
| 609 | ; |
| 610 | hdrval = s; |
| 611 | |
| 612 | /* locate the end of header */ |
| 613 | while (*s != '\0' && *s != '\r' && *s != '\n') |
| 614 | ++s; |
| 615 | |
| 616 | /* end of header found */ |
| 617 | if (*s != '\0') { |
| 618 | *s = '\0'; |
| 619 | return hdrval; |
| 620 | } |
| 621 | |
Eric Andersen | 5d63884 | 2000-09-14 21:46:30 +0000 | [diff] [blame] | 622 | /* 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] | 623 | while (c = getc(fp), c != EOF && c != '\n') |
| 624 | ; |
| 625 | *istrunc = 1; |
| 626 | return hdrval; |
| 627 | } |
| 628 | |
Eric Andersen | 79757c9 | 2001-04-05 21:45:54 +0000 | [diff] [blame] | 629 | static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf) |
| 630 | { |
| 631 | char *p; |
| 632 | |
| 633 | if (s1) { |
| 634 | if (!s2) s2=""; |
| 635 | fprintf(fp, "%s%s\n", s1, s2); |
| 636 | fflush(fp); |
| 637 | } |
| 638 | |
| 639 | do { |
| 640 | p = fgets(buf, 510, fp); |
| 641 | if (!p) |
| 642 | perror_msg_and_die("fgets()"); |
| 643 | } while (! isdigit(buf[0]) || buf[3] != ' '); |
| 644 | |
| 645 | return atoi(buf); |
| 646 | } |
| 647 | |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 648 | #ifdef BB_FEATURE_WGET_STATUSBAR |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 649 | /* Stuff below is from BSD rcp util.c, as added to openshh. |
| 650 | * Original copyright notice is retained at the end of this file. |
| 651 | * |
| 652 | */ |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 653 | |
| 654 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 655 | static int |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 656 | getttywidth(void) |
| 657 | { |
| 658 | struct winsize winsize; |
| 659 | |
| 660 | if (ioctl(fileno(stdout), TIOCGWINSZ, &winsize) != -1) |
| 661 | return (winsize.ws_col ? winsize.ws_col : 80); |
| 662 | else |
| 663 | return (80); |
| 664 | } |
| 665 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 666 | static void |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 667 | updateprogressmeter(int ignore) |
| 668 | { |
| 669 | int save_errno = errno; |
| 670 | |
| 671 | progressmeter(0); |
| 672 | errno = save_errno; |
| 673 | } |
| 674 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 675 | static void |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 676 | alarmtimer(int wait) |
| 677 | { |
| 678 | struct itimerval itv; |
| 679 | |
| 680 | itv.it_value.tv_sec = wait; |
| 681 | itv.it_value.tv_usec = 0; |
| 682 | itv.it_interval = itv.it_value; |
| 683 | setitimer(ITIMER_REAL, &itv, NULL); |
| 684 | } |
| 685 | |
| 686 | |
Eric Andersen | 3e6ff90 | 2001-03-09 21:24:12 +0000 | [diff] [blame] | 687 | static void |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 688 | progressmeter(int flag) |
| 689 | { |
| 690 | static const char prefixes[] = " KMGTP"; |
| 691 | static struct timeval lastupdate; |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 692 | static off_t lastsize, totalsize; |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 693 | struct timeval now, td, wait; |
| 694 | off_t cursize, abbrevsize; |
| 695 | double elapsed; |
| 696 | int ratio, barlength, i, remaining; |
| 697 | char buf[256]; |
| 698 | |
| 699 | if (flag == -1) { |
| 700 | (void) gettimeofday(&start, (struct timezone *) 0); |
| 701 | lastupdate = start; |
| 702 | lastsize = 0; |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 703 | totalsize = filesize; /* as filesize changes.. */ |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 704 | } |
| 705 | |
| 706 | (void) gettimeofday(&now, (struct timezone *) 0); |
| 707 | cursize = statbytes; |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 708 | if (totalsize != 0 && !chunked) { |
| 709 | ratio = 100.0 * cursize / totalsize; |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 710 | ratio = MAX(ratio, 0); |
| 711 | ratio = MIN(ratio, 100); |
| 712 | } else |
| 713 | ratio = 100; |
| 714 | |
| 715 | snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio); |
| 716 | |
| 717 | barlength = getttywidth() - 51; |
| 718 | if (barlength > 0) { |
| 719 | i = barlength * ratio / 100; |
| 720 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 721 | "|%.*s%*s|", i, |
| 722 | "*****************************************************************************" |
| 723 | "*****************************************************************************", |
| 724 | barlength - i, ""); |
| 725 | } |
| 726 | i = 0; |
| 727 | abbrevsize = cursize; |
| 728 | while (abbrevsize >= 100000 && i < sizeof(prefixes)) { |
| 729 | i++; |
| 730 | abbrevsize >>= 10; |
| 731 | } |
| 732 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ", |
| 733 | (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' : |
| 734 | 'B'); |
| 735 | |
| 736 | timersub(&now, &lastupdate, &wait); |
| 737 | if (cursize > lastsize) { |
| 738 | lastupdate = now; |
| 739 | lastsize = cursize; |
| 740 | if (wait.tv_sec >= STALLTIME) { |
| 741 | start.tv_sec += wait.tv_sec; |
| 742 | start.tv_usec += wait.tv_usec; |
| 743 | } |
| 744 | wait.tv_sec = 0; |
| 745 | } |
| 746 | timersub(&now, &start, &td); |
| 747 | elapsed = td.tv_sec + (td.tv_usec / 1000000.0); |
| 748 | |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 749 | if (wait.tv_sec >= STALLTIME) { |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 750 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 751 | " - stalled -"); |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 752 | } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) { |
| 753 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 754 | " --:-- ETA"); |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 755 | } else { |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 756 | remaining = (int) (totalsize / (statbytes / elapsed) - elapsed); |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 757 | i = remaining / 3600; |
| 758 | if (i) |
| 759 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 760 | "%2d:", i); |
| 761 | else |
| 762 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 763 | " "); |
| 764 | i = remaining % 3600; |
| 765 | snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), |
| 766 | "%02d:%02d ETA", i / 60, i % 60); |
| 767 | } |
Randolph Chung | da7b829 | 2000-12-07 03:55:35 +0000 | [diff] [blame] | 768 | write(fileno(stderr), buf, strlen(buf)); |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 769 | |
| 770 | if (flag == -1) { |
| 771 | struct sigaction sa; |
| 772 | sa.sa_handler = updateprogressmeter; |
| 773 | sigemptyset(&sa.sa_mask); |
| 774 | sa.sa_flags = SA_RESTART; |
| 775 | sigaction(SIGALRM, &sa, NULL); |
| 776 | alarmtimer(1); |
| 777 | } else if (flag == 1) { |
| 778 | alarmtimer(0); |
| 779 | statbytes = 0; |
Mark Whitley | 30ac01c | 2001-04-17 18:13:16 +0000 | [diff] [blame] | 780 | putc('\n', stderr); |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 781 | } |
| 782 | } |
| 783 | #endif |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 784 | |
Eric Andersen | 370fb08 | 2001-01-20 20:07:00 +0000 | [diff] [blame] | 785 | /* Original copyright notice which applies to the BB_FEATURE_WGET_STATUSBAR stuff, |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 786 | * much of which was blatently stolen from openssh. */ |
| 787 | |
| 788 | /*- |
| 789 | * Copyright (c) 1992, 1993 |
| 790 | * The Regents of the University of California. All rights reserved. |
| 791 | * |
| 792 | * Redistribution and use in source and binary forms, with or without |
| 793 | * modification, are permitted provided that the following conditions |
| 794 | * are met: |
| 795 | * 1. Redistributions of source code must retain the above copyright |
| 796 | * notice, this list of conditions and the following disclaimer. |
| 797 | * 2. Redistributions in binary form must reproduce the above copyright |
| 798 | * notice, this list of conditions and the following disclaimer in the |
| 799 | * documentation and/or other materials provided with the distribution. |
| 800 | * |
| 801 | * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change |
| 802 | * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> |
| 803 | * |
| 804 | * 4. Neither the name of the University nor the names of its contributors |
| 805 | * may be used to endorse or promote products derived from this software |
| 806 | * without specific prior written permission. |
| 807 | * |
| 808 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 809 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 810 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 811 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 812 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 813 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 814 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 815 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 816 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 817 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 818 | * SUCH DAMAGE. |
| 819 | * |
Eric Andersen | 20aab26 | 2001-07-19 22:28:02 +0000 | [diff] [blame] | 820 | * $Id: wget.c,v 1.45 2001/07/19 22:28:01 andersen Exp $ |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 821 | */ |
| 822 | |
| 823 | |
| 824 | |
Eric Andersen | 9670083 | 2000-09-04 15:15:55 +0000 | [diff] [blame] | 825 | /* |
| 826 | Local Variables: |
| 827 | c-file-style: "linux" |
| 828 | c-basic-offset: 4 |
| 829 | tab-width: 4 |
| 830 | End: |
| 831 | */ |
Eric Andersen | b520e08 | 2000-10-03 00:21:45 +0000 | [diff] [blame] | 832 | |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 833 | |
| 834 | |