blob: 619c138baff3e451c9ad52f558e2533a5bbea7f8 [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 Andersen50ae3102001-05-15 17:51:37 +000027#ifndef _GNU_SOURCE
28#define _GNU_SOURCE
29#endif
30#include <getopt.h>
31
Eric Andersencbe31da2001-02-20 06:14:08 +000032#include "busybox.h"
33
Eric Andersen79757c92001-04-05 21:45:54 +000034struct host_info {
35 char *host;
36 int port;
37 char *path;
38 int is_ftp;
39 char *user;
40};
41
42static void parse_url(char *url, struct host_info *h);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +000043static FILE *open_socket(struct sockaddr_in *s_in);
Eric Andersen3e6ff902001-03-09 21:24:12 +000044static char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc);
Eric Andersen79757c92001-04-05 21:45:54 +000045static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf);
Eric Andersen96700832000-09-04 15:15:55 +000046
Eric Andersenb520e082000-10-03 00:21:45 +000047/* Globals (can be accessed from signal handlers */
48static off_t filesize = 0; /* content-length of the file */
Eric Andersen6d7fa432001-04-10 18:17:05 +000049static int chunked = 0; /* chunked transfer encoding */
Eric Andersenbdfd0d72001-10-24 05:00:29 +000050#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen20aab262001-07-19 22:28:02 +000051static void progressmeter(int flag);
Eric Andersenb520e082000-10-03 00:21:45 +000052static char *curfile; /* Name of current file being transferred. */
53static struct timeval start; /* Time a transfer started. */
Mark Whitley30ac01c2001-04-17 18:13:16 +000054static volatile unsigned long statbytes = 0; /* Number of bytes transferred so far. */
Eric Andersenb520e082000-10-03 00:21:45 +000055/* For progressmeter() -- number of seconds before xfer considered "stalled" */
Mark Whitley59ab0252001-01-23 22:30:04 +000056static const int STALLTIME = 5;
Eric Andersenb520e082000-10-03 00:21:45 +000057#endif
Eric Andersenc7bda1c2004-03-15 08:29:22 +000058
Eric Andersen3e6ff902001-03-09 21:24:12 +000059static void close_and_delete_outfile(FILE* output, char *fname_out, int do_continue)
Eric Andersen7d697012001-01-24 20:28:35 +000060{
61 if (output != stdout && do_continue==0) {
62 fclose(output);
63 unlink(fname_out);
64 }
65}
Eric Andersen96700832000-09-04 15:15:55 +000066
Matt Kraai854125f2001-05-09 19:15:46 +000067/* Read NMEMB elements of SIZE bytes into PTR from STREAM. Returns the
68 * number of elements read, and a short count if an eof or non-interrupt
69 * error is encountered. */
70static size_t safe_fread(void *ptr, size_t size, size_t nmemb, FILE *stream)
71{
72 size_t ret = 0;
73
74 do {
75 clearerr(stream);
76 ret += fread((char *)ptr + (ret * size), size, nmemb - ret, stream);
77 } while (ret < nmemb && ferror(stream) && errno == EINTR);
78
79 return ret;
80}
81
82/* Write NMEMB elements of SIZE bytes from PTR to STREAM. Returns the
83 * number of elements written, and a short count if an eof or non-interrupt
84 * error is encountered. */
85static size_t safe_fwrite(void *ptr, size_t size, size_t nmemb, FILE *stream)
86{
87 size_t ret = 0;
88
89 do {
90 clearerr(stream);
91 ret += fwrite((char *)ptr + (ret * size), size, nmemb - ret, stream);
92 } while (ret < nmemb && ferror(stream) && errno == EINTR);
93
94 return ret;
95}
96
97/* Read a line or SIZE - 1 bytes into S, whichever is less, from STREAM.
98 * Returns S, or NULL if an eof or non-interrupt error is encountered. */
99static char *safe_fgets(char *s, int size, FILE *stream)
100{
101 char *ret;
102
103 do {
104 clearerr(stream);
105 ret = fgets(s, size, stream);
106 } while (ret == NULL && ferror(stream) && errno == EINTR);
107
108 return ret;
109}
110
Eric Andersen79757c92001-04-05 21:45:54 +0000111#define close_delete_and_die(s...) { \
112 close_and_delete_outfile(output, fname_out, do_continue); \
Manuel Novoa III cad53642003-03-19 09:13:01 +0000113 bb_error_msg_and_die(s); }
Eric Andersen79757c92001-04-05 21:45:54 +0000114
115
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000116#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000117/*
118 * Base64-encode character string
119 * oops... isn't something similar in uuencode.c?
120 * It would be better to use already existing code
121 */
Eric Andersenf2ec3792004-01-26 07:17:30 +0000122char *base64enc(unsigned char *p, char *buf, int len) {
Eric Andersen79757c92001-04-05 21:45:54 +0000123
124 char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
125 "0123456789+/";
126 char *s = buf;
127
128 while(*p) {
129 if (s >= buf+len-4)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000130 bb_error_msg_and_die("buffer overflow");
Eric Andersen79757c92001-04-05 21:45:54 +0000131 *(s++) = al[(*p >> 2) & 0x3F];
132 *(s++) = al[((*p << 4) & 0x30) | ((*(p+1) >> 4) & 0x0F)];
133 *s = *(s+1) = '=';
134 *(s+2) = 0;
135 if (! *(++p)) break;
136 *(s++) = al[((*p << 2) & 0x3C) | ((*(p+1) >> 6) & 0x03)];
137 if (! *(++p)) break;
138 *(s++) = al[*(p++) & 0x3F];
139 }
140
141 return buf;
142}
143#endif
144
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000145#define WGET_OPT_CONTINUE 1
146#define WGET_OPT_QUIET 2
147#define WGET_OPT_PASSIVE 4
148#define WGET_OPT_OUTNAME 8
149#define WGET_OPT_HEADER 16
150#define WGET_OPT_PREFIX 32
151#define WGET_OPT_PROXY 64
152
153static const struct option wget_long_options[] = {
154 { "continue", 0, NULL, 'c' },
155 { "quiet", 0, NULL, 'q' },
156 { "passive-ftp", 0, NULL, 139 },
157 { "output-document", 1, NULL, 'O' },
158 { "header", 1, NULL, 131 },
159 { "directory-prefix",1, NULL, 'P' },
160 { "proxy", 1, NULL, 'Y' },
161 { 0, 0, 0, 0 }
162};
163
Eric Andersen96700832000-09-04 15:15:55 +0000164int wget_main(int argc, char **argv)
165{
Eric Andersen79757c92001-04-05 21:45:54 +0000166 int n, try=5, status;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000167 unsigned long opt;
Eric Andersen79757c92001-04-05 21:45:54 +0000168 int port;
Robert Griebld7760112002-05-14 23:36:45 +0000169 char *proxy = 0;
Eric Andersen8071c022001-06-21 19:45:06 +0000170 char *dir_prefix=NULL;
Eric Andersen29edd002000-12-09 16:55:35 +0000171 char *s, buf[512];
172 struct stat sbuf;
Eric Andersen50ae3102001-05-15 17:51:37 +0000173 char extra_headers[1024];
174 char *extra_headers_ptr = extra_headers;
175 int extra_headers_left = sizeof(extra_headers);
Eric Andersen79757c92001-04-05 21:45:54 +0000176 struct host_info server, target;
Eric Andersene6dc4392003-10-31 09:31:46 +0000177 struct sockaddr_in s_in;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000178 llist_t *headers_llist = NULL;
Eric Andersen79757c92001-04-05 21:45:54 +0000179
180 FILE *sfp = NULL; /* socket to web/ftp server */
181 FILE *dfp = NULL; /* socket to ftp server (data) */
Eric Andersen96700832000-09-04 15:15:55 +0000182 char *fname_out = NULL; /* where to direct output (-O) */
183 int do_continue = 0; /* continue a prev transfer (-c) */
184 long beg_range = 0L; /* range at which continue begins */
185 int got_clen = 0; /* got content-length: from server */
Eric Andersen29edd002000-12-09 16:55:35 +0000186 FILE *output; /* socket to web server */
187 int quiet_flag = FALSE; /* Be verry, verry quiet... */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000188 int use_proxy = 1; /* Use proxies if env vars are set */
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000189 char *proxy_flag = "on"; /* Use proxies if env vars are set */
Eric Andersen29edd002000-12-09 16:55:35 +0000190
Eric Andersen96700832000-09-04 15:15:55 +0000191 /*
192 * Crack command line.
193 */
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000194 bb_opt_complementaly = "\203*";
195 bb_applet_long_options = wget_long_options;
196 opt = bb_getopt_ulflags(argc, argv, "cq\213O:\203:P:Y:", &fname_out, &headers_llist, &dir_prefix, &proxy_flag);
197 if (opt & WGET_OPT_CONTINUE) {
198 ++do_continue;
199 }
200 if (opt & WGET_OPT_QUIET) {
201 quiet_flag = TRUE;
202 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000203 if (strcmp(proxy_flag, "off") == 0) {
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000204 /* Use the proxy if necessary. */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000205 use_proxy = 0;
Glenn L McGrath514aeab2003-12-19 12:08:56 +0000206 }
207 if (opt & WGET_OPT_HEADER) {
208 while (headers_llist) {
209 int arglen = strlen(headers_llist->data);
210 if (extra_headers_left - arglen - 2 <= 0)
211 bb_error_msg_and_die("extra_headers buffer too small(need %i)", extra_headers_left - arglen);
212 strcpy(extra_headers_ptr, headers_llist->data);
213 extra_headers_ptr += arglen;
214 extra_headers_left -= ( arglen + 2 );
215 *extra_headers_ptr++ = '\r';
216 *extra_headers_ptr++ = '\n';
217 *(extra_headers_ptr + 1) = 0;
218 headers_llist = headers_llist->link;
Eric Andersen96700832000-09-04 15:15:55 +0000219 }
220 }
Eric Andersen96700832000-09-04 15:15:55 +0000221 if (argc - optind != 1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000222 bb_show_usage();
Eric Andersen25b669c2000-10-02 23:19:38 +0000223
Eric Andersen79757c92001-04-05 21:45:54 +0000224 parse_url(argv[optind], &target);
225 server.host = target.host;
226 server.port = target.port;
227
Eric Andersen96700832000-09-04 15:15:55 +0000228 /*
Eric Andersenf3b2b522000-12-07 22:42:11 +0000229 * Use the proxy if necessary.
Eric Andersen96700832000-09-04 15:15:55 +0000230 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000231 if (use_proxy) {
Robert Griebld7760112002-05-14 23:36:45 +0000232 proxy = getenv(target.is_ftp ? "ftp_proxy" : "http_proxy");
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000233 if (proxy && *proxy) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000234 parse_url(bb_xstrdup(proxy), &server);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000235 } else {
236 use_proxy = 0;
237 }
Robert Griebld7760112002-05-14 23:36:45 +0000238 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000239
Eric Andersen29edd002000-12-09 16:55:35 +0000240 /* Guess an output filename */
241 if (!fname_out) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000242 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000243#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000244 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000245#endif
Manuel Novoa III cad53642003-03-19 09:13:01 +0000246 bb_get_last_path_component(target.path);
Eric Andersen29edd002000-12-09 16:55:35 +0000247 if (fname_out==NULL || strlen(fname_out)<1) {
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000248 fname_out =
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000249#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000250 curfile =
Eric Andersen29edd002000-12-09 16:55:35 +0000251#endif
252 "index.html";
253 }
Matt Kraai0382eb82001-07-19 19:13:55 +0000254 if (dir_prefix != NULL)
255 fname_out = concat_path_file(dir_prefix, fname_out);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000256#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersen29edd002000-12-09 16:55:35 +0000257 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000258 curfile = bb_get_last_path_component(fname_out);
Eric Andersen29edd002000-12-09 16:55:35 +0000259#endif
260 }
Eric Andersen7d697012001-01-24 20:28:35 +0000261 if (do_continue && !fname_out)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000262 bb_error_msg_and_die("cannot specify continue (-c) without a filename (-O)");
Eric Andersen29edd002000-12-09 16:55:35 +0000263
Eric Andersen96700832000-09-04 15:15:55 +0000264
265 /*
Eric Andersen29edd002000-12-09 16:55:35 +0000266 * Open the output file stream.
Eric Andersen96700832000-09-04 15:15:55 +0000267 */
Matt Kraai65317ea2001-04-11 20:03:01 +0000268 if (strcmp(fname_out, "-") == 0) {
Randolph Chung02553a22000-12-07 03:53:47 +0000269 output = stdout;
Eric Andersen95a349f2001-05-13 00:55:54 +0000270 quiet_flag = TRUE;
Matt Kraai65317ea2001-04-11 20:03:01 +0000271 } else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000272 output = bb_xfopen(fname_out, (do_continue ? "a" : "w"));
Eric Andersen96700832000-09-04 15:15:55 +0000273 }
274
275 /*
276 * Determine where to start transfer.
277 */
278 if (do_continue) {
Eric Andersenb520e082000-10-03 00:21:45 +0000279 if (fstat(fileno(output), &sbuf) < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000280 bb_perror_msg_and_die("fstat()");
Eric Andersen96700832000-09-04 15:15:55 +0000281 if (sbuf.st_size > 0)
282 beg_range = sbuf.st_size;
283 else
284 do_continue = 0;
285 }
286
Eric Andersene6dc4392003-10-31 09:31:46 +0000287 /* We want to do exactly _one_ DNS lookup, since some
288 * sites (i.e. ftp.us.debian.org) use round-robin DNS
289 * and we want to connect to only one IP... */
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000290 bb_lookup_host(&s_in, server.host);
291 s_in.sin_port = server.port;
Eric Andersene6dc4392003-10-31 09:31:46 +0000292 if (quiet_flag==FALSE) {
293 fprintf(stdout, "Connecting to %s[%s]:%d\n",
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000294 server.host, inet_ntoa(s_in.sin_addr), ntohs(server.port));
Eric Andersene6dc4392003-10-31 09:31:46 +0000295 }
296
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000297 if (use_proxy || !target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000298 /*
299 * HTTP session
300 */
301 do {
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000302 got_clen = chunked = 0;
303
Eric Andersen79757c92001-04-05 21:45:54 +0000304 if (! --try)
305 close_delete_and_die("too many redirections");
Eric Andersen7d697012001-01-24 20:28:35 +0000306
Eric Andersen79757c92001-04-05 21:45:54 +0000307 /*
308 * Open socket to http server
309 */
310 if (sfp) fclose(sfp);
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000311 sfp = open_socket(&s_in);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000312
Eric Andersen79757c92001-04-05 21:45:54 +0000313 /*
314 * Send HTTP request.
315 */
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000316 if (use_proxy) {
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000317 const char *format = "GET %stp://%s:%d/%s HTTP/1.1\r\n";
318#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
319 if (strchr (target.host, ':'))
320 format = "GET %stp://[%s]:%d/%s HTTP/1.1\r\n";
321#endif
322 fprintf(sfp, format,
Eric Andersen79757c92001-04-05 21:45:54 +0000323 target.is_ftp ? "f" : "ht", target.host,
Glenn L McGrath24cb17f2004-01-31 08:08:57 +0000324 ntohs(target.port), target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000325 } else {
Eric Andersen6d7fa432001-04-10 18:17:05 +0000326 fprintf(sfp, "GET /%s HTTP/1.1\r\n", target.path);
Eric Andersen79757c92001-04-05 21:45:54 +0000327 }
Eric Andersen96700832000-09-04 15:15:55 +0000328
Eric Andersen79757c92001-04-05 21:45:54 +0000329 fprintf(sfp, "Host: %s\r\nUser-Agent: Wget\r\n", target.host);
330
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000331#ifdef CONFIG_FEATURE_WGET_AUTHENTICATION
Eric Andersen79757c92001-04-05 21:45:54 +0000332 if (target.user) {
333 fprintf(sfp, "Authorization: Basic %s\r\n",
334 base64enc(target.user, buf, sizeof(buf)));
335 }
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000336 if (use_proxy && server.user) {
Eric Andersen79757c92001-04-05 21:45:54 +0000337 fprintf(sfp, "Proxy-Authorization: Basic %s\r\n",
338 base64enc(server.user, buf, sizeof(buf)));
339 }
340#endif
341
Eric Andersenb520e082000-10-03 00:21:45 +0000342 if (do_continue)
Eric Andersen79757c92001-04-05 21:45:54 +0000343 fprintf(sfp, "Range: bytes=%ld-\r\n", beg_range);
Eric Andersen50ae3102001-05-15 17:51:37 +0000344 if(extra_headers_left < sizeof(extra_headers))
Eric Andersen9abfe852001-05-15 20:11:49 +0000345 fputs(extra_headers,sfp);
Eric Andersen79757c92001-04-05 21:45:54 +0000346 fprintf(sfp,"Connection: close\r\n\r\n");
347
348 /*
349 * Retrieve HTTP response line and check for "200" status code.
350 */
Glenn L McGrathe7bdfcc2003-08-28 22:03:19 +0000351read_response:
352 if (fgets(buf, sizeof(buf), sfp) == NULL)
Eric Andersen79757c92001-04-05 21:45:54 +0000353 close_delete_and_die("no response from server");
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000354
Eric Andersen79757c92001-04-05 21:45:54 +0000355 for (s = buf ; *s != '\0' && !isspace(*s) ; ++s)
356 ;
357 for ( ; isspace(*s) ; ++s)
358 ;
359 switch (status = atoi(s)) {
360 case 0:
Eric Andersen6d7fa432001-04-10 18:17:05 +0000361 case 100:
362 while (gethdr(buf, sizeof(buf), sfp, &n) != NULL);
363 goto read_response;
Eric Andersen79757c92001-04-05 21:45:54 +0000364 case 200:
365 if (do_continue && output != stdout)
366 output = freopen(fname_out, "w", output);
367 do_continue = 0;
368 break;
369 case 300: /* redirection */
370 case 301:
371 case 302:
372 case 303:
373 break;
374 case 206:
375 if (do_continue)
376 break;
377 /*FALLTHRU*/
378 default:
379 chomp(buf);
380 close_delete_and_die("server returned error %d: %s", atoi(s), buf);
381 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000382
Eric Andersen79757c92001-04-05 21:45:54 +0000383 /*
384 * Retrieve HTTP headers.
385 */
386 while ((s = gethdr(buf, sizeof(buf), sfp, &n)) != NULL) {
387 if (strcasecmp(buf, "content-length") == 0) {
Eric Andersen24794452004-03-06 22:11:45 +0000388 unsigned long value;
389 if (safe_strtoul(s, &value)) {
390 close_delete_and_die("content-length %s is garbage", s);
391 }
392 filesize = value;
Eric Andersen79757c92001-04-05 21:45:54 +0000393 got_clen = 1;
394 continue;
395 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000396 if (strcasecmp(buf, "transfer-encoding") == 0) {
397 if (strcasecmp(s, "chunked") == 0) {
398 chunked = got_clen = 1;
399 } else {
Eric Andersen79757c92001-04-05 21:45:54 +0000400 close_delete_and_die("server wants to do %s transfer encoding", s);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000401 }
402 }
Eric Andersen79757c92001-04-05 21:45:54 +0000403 if (strcasecmp(buf, "location") == 0) {
404 if (s[0] == '/')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000405 target.path = bb_xstrdup(s+1);
Eric Andersen79757c92001-04-05 21:45:54 +0000406 else {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000407 parse_url(bb_xstrdup(s), &target);
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000408 if (use_proxy == 0) {
Eric Andersen79757c92001-04-05 21:45:54 +0000409 server.host = target.host;
410 server.port = target.port;
411 }
Glenn L McGrath58a2e0e2004-01-17 23:07:14 +0000412 bb_lookup_host(&s_in, server.host);
413 s_in.sin_port = server.port;
414 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000415 }
416 }
417 }
418 } while(status >= 300);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000419
Eric Andersen79757c92001-04-05 21:45:54 +0000420 dfp = sfp;
421 }
422 else
423 {
424 /*
425 * FTP session
426 */
427 if (! target.user)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000428 target.user = bb_xstrdup("anonymous:busybox@");
Eric Andersen79757c92001-04-05 21:45:54 +0000429
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000430 sfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000431 if (ftpcmd(NULL, NULL, sfp, buf) != 220)
432 close_delete_and_die("%s", buf+4);
433
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000434 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000435 * Splitting username:password pair,
436 * trying to log in
437 */
438 s = strchr(target.user, ':');
439 if (s)
440 *(s++) = '\0';
441 switch(ftpcmd("USER ", target.user, sfp, buf)) {
442 case 230:
Eric Andersenb520e082000-10-03 00:21:45 +0000443 break;
Eric Andersen79757c92001-04-05 21:45:54 +0000444 case 331:
445 if (ftpcmd("PASS ", s, sfp, buf) == 230)
446 break;
447 /* FALLTHRU (failed login) */
448 default:
449 close_delete_and_die("ftp login: %s", buf+4);
450 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000451
Eric Andersen79757c92001-04-05 21:45:54 +0000452 ftpcmd("CDUP", NULL, sfp, buf);
453 ftpcmd("TYPE I", NULL, sfp, buf);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000454
Eric Andersen79757c92001-04-05 21:45:54 +0000455 /*
456 * Querying file size
457 */
458 if (ftpcmd("SIZE /", target.path, sfp, buf) == 213) {
Eric Andersen24794452004-03-06 22:11:45 +0000459 unsigned long value;
460 if (safe_strtoul(buf+4, &value)) {
461 close_delete_and_die("SIZE value is garbage");
462 }
463 filesize = value;
Eric Andersen96700832000-09-04 15:15:55 +0000464 got_clen = 1;
Eric Andersen96700832000-09-04 15:15:55 +0000465 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000466
Eric Andersen79757c92001-04-05 21:45:54 +0000467 /*
468 * Entering passive mode
469 */
470 if (ftpcmd("PASV", NULL, sfp, buf) != 227)
471 close_delete_and_die("PASV: %s", buf+4);
472 s = strrchr(buf, ',');
473 *s = 0;
474 port = atoi(s+1);
475 s = strrchr(buf, ',');
476 port += atoi(s+1) * 256;
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000477 s_in.sin_port = htons(port);
478 dfp = open_socket(&s_in);
Eric Andersen79757c92001-04-05 21:45:54 +0000479
480 if (do_continue) {
481 sprintf(buf, "REST %ld", beg_range);
482 if (ftpcmd(buf, NULL, sfp, buf) != 350) {
483 if (output != stdout)
484 output = freopen(fname_out, "w", output);
485 do_continue = 0;
486 } else
487 filesize -= beg_range;
Eric Andersen96700832000-09-04 15:15:55 +0000488 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000489
Eric Andersen79757c92001-04-05 21:45:54 +0000490 if (ftpcmd("RETR /", target.path, sfp, buf) > 150)
491 close_delete_and_die("RETR: %s", buf+4);
492
Eric Andersen96700832000-09-04 15:15:55 +0000493 }
494
Eric Andersen79757c92001-04-05 21:45:54 +0000495
Eric Andersen96700832000-09-04 15:15:55 +0000496 /*
Eric Andersen79757c92001-04-05 21:45:54 +0000497 * Retrieve file
Eric Andersen96700832000-09-04 15:15:55 +0000498 */
Eric Andersen6d7fa432001-04-10 18:17:05 +0000499 if (chunked) {
500 fgets(buf, sizeof(buf), dfp);
501 filesize = strtol(buf, (char **) NULL, 16);
502 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000503#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Glenn L McGrath1bca5ed2000-12-09 08:12:06 +0000504 if (quiet_flag==FALSE)
505 progressmeter(-1);
Eric Andersenb520e082000-10-03 00:21:45 +0000506#endif
Mark Whitley30ac01c2001-04-17 18:13:16 +0000507 do {
Glenn L McGrath23365972003-08-29 06:25:04 +0000508 while ((filesize > 0 || !got_clen) && (n = safe_fread(buf, 1, ((chunked || got_clen) && (filesize < sizeof(buf)) ? filesize : sizeof(buf)), dfp)) > 0) {
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000509 if (safe_fwrite(buf, 1, n, output) != n) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000510 bb_perror_msg_and_die("write error");
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000511 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000512#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000513 statbytes+=n;
Eric Andersenb520e082000-10-03 00:21:45 +0000514#endif
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000515 if (got_clen) {
516 filesize -= n;
517 }
518 }
Eric Andersen79757c92001-04-05 21:45:54 +0000519
Eric Andersen6d7fa432001-04-10 18:17:05 +0000520 if (chunked) {
Matt Kraai854125f2001-05-09 19:15:46 +0000521 safe_fgets(buf, sizeof(buf), dfp); /* This is a newline */
522 safe_fgets(buf, sizeof(buf), dfp);
Eric Andersen6d7fa432001-04-10 18:17:05 +0000523 filesize = strtol(buf, (char **) NULL, 16);
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000524 if (filesize==0) {
525 chunked = 0; /* all done! */
526 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000527 }
528
Glenn L McGrath83e4a5b2003-08-28 21:55:22 +0000529 if (n == 0 && ferror(dfp)) {
530 bb_perror_msg_and_die("network read error");
531 }
Eric Andersen6d7fa432001-04-10 18:17:05 +0000532 } while (chunked);
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000533#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Mark Whitley30ac01c2001-04-17 18:13:16 +0000534 if (quiet_flag==FALSE)
535 progressmeter(1);
536#endif
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000537 if ((use_proxy == 0) && target.is_ftp) {
Eric Andersen79757c92001-04-05 21:45:54 +0000538 fclose(dfp);
539 if (ftpcmd(NULL, NULL, sfp, buf) != 226)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000540 bb_error_msg_and_die("ftp error: %s", buf+4);
Eric Andersen79757c92001-04-05 21:45:54 +0000541 ftpcmd("QUIT", NULL, sfp, buf);
542 }
Eric Andersen79757c92001-04-05 21:45:54 +0000543 exit(EXIT_SUCCESS);
Eric Andersen96700832000-09-04 15:15:55 +0000544}
545
546
Eric Andersen79757c92001-04-05 21:45:54 +0000547void parse_url(char *url, struct host_info *h)
Eric Andersen96700832000-09-04 15:15:55 +0000548{
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000549 char *cp, *sp, *up, *pp;
Eric Andersen96700832000-09-04 15:15:55 +0000550
Eric Andersen79757c92001-04-05 21:45:54 +0000551 if (strncmp(url, "http://", 7) == 0) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000552 h->port = bb_lookup_port("http", "tcp", 80);
Eric Andersen79757c92001-04-05 21:45:54 +0000553 h->host = url + 7;
554 h->is_ftp = 0;
555 } else if (strncmp(url, "ftp://", 6) == 0) {
Glenn L McGrath036dbaa2004-01-17 05:03:31 +0000556 h->port = bb_lookup_port("ftp", "tfp", 21);
Eric Andersen79757c92001-04-05 21:45:54 +0000557 h->host = url + 6;
558 h->is_ftp = 1;
559 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000560 bb_error_msg_and_die("not an http or ftp url: %s", url);
Eric Andersen96700832000-09-04 15:15:55 +0000561
Eric Andersen79757c92001-04-05 21:45:54 +0000562 sp = strchr(h->host, '/');
Glenn L McGrathf1c4b112004-02-22 00:27:34 +0000563 if (sp) {
Matt Kraaia9711a52001-01-03 16:15:15 +0000564 *sp++ = '\0';
Eric Andersen79757c92001-04-05 21:45:54 +0000565 h->path = sp;
Matt Kraaia9711a52001-01-03 16:15:15 +0000566 } else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000567 h->path = bb_xstrdup("");
Eric Andersen79757c92001-04-05 21:45:54 +0000568
569 up = strrchr(h->host, '@');
570 if (up != NULL) {
571 h->user = h->host;
572 *up++ = '\0';
573 h->host = up;
574 } else
575 h->user = NULL;
576
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000577 pp = h->host;
578
579#ifdef CONFIG_FEATURE_WGET_IP6_LITERAL
580 if (h->host[0] == '[') {
581 char *ep;
582
583 ep = h->host + 1;
Eric Andersen6231f092003-09-11 08:25:11 +0000584 while (*ep == ':' || isxdigit (*ep))
Glenn L McGrathcc20ebc2003-09-10 23:52:15 +0000585 ep++;
586 if (*ep == ']') {
587 h->host++;
588 *ep = '\0';
589 pp = ep + 1;
590 }
591 }
592#endif
593
594 cp = strchr(pp, ':');
Eric Andersen79757c92001-04-05 21:45:54 +0000595 if (cp != NULL) {
596 *cp++ = '\0';
Glenn L McGrathf980bd52003-12-27 00:21:47 +0000597 h->port = htons(atoi(cp));
Eric Andersen79757c92001-04-05 21:45:54 +0000598 }
Eric Andersen96700832000-09-04 15:15:55 +0000599}
600
601
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000602FILE *open_socket(struct sockaddr_in *s_in)
Eric Andersen96700832000-09-04 15:15:55 +0000603{
Eric Andersen96700832000-09-04 15:15:55 +0000604 FILE *fp;
605
Glenn L McGrathffccf6e2003-12-20 01:47:18 +0000606 fp = fdopen(xconnect(s_in), "r+");
607 if (fp == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000608 bb_perror_msg_and_die("fdopen()");
Eric Andersen96700832000-09-04 15:15:55 +0000609
610 return fp;
611}
612
613
614char *gethdr(char *buf, size_t bufsiz, FILE *fp, int *istrunc)
615{
616 char *s, *hdrval;
617 int c;
618
619 *istrunc = 0;
620
621 /* retrieve header line */
622 if (fgets(buf, bufsiz, fp) == NULL)
623 return NULL;
624
625 /* see if we are at the end of the headers */
626 for (s = buf ; *s == '\r' ; ++s)
627 ;
628 if (s[0] == '\n')
629 return NULL;
630
631 /* convert the header name to lower case */
632 for (s = buf ; isalnum(*s) || *s == '-' ; ++s)
633 *s = tolower(*s);
634
635 /* verify we are at the end of the header name */
636 if (*s != ':')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000637 bb_error_msg_and_die("bad header line: %s", buf);
Eric Andersen96700832000-09-04 15:15:55 +0000638
639 /* locate the start of the header value */
640 for (*s++ = '\0' ; *s == ' ' || *s == '\t' ; ++s)
641 ;
642 hdrval = s;
643
644 /* locate the end of header */
645 while (*s != '\0' && *s != '\r' && *s != '\n')
646 ++s;
647
648 /* end of header found */
649 if (*s != '\0') {
650 *s = '\0';
651 return hdrval;
652 }
653
Eric Andersen5d638842000-09-14 21:46:30 +0000654 /* Rats! The buffer isn't big enough to hold the entire header value. */
Eric Andersen96700832000-09-04 15:15:55 +0000655 while (c = getc(fp), c != EOF && c != '\n')
656 ;
657 *istrunc = 1;
658 return hdrval;
659}
660
Eric Andersen79757c92001-04-05 21:45:54 +0000661static int ftpcmd(char *s1, char *s2, FILE *fp, char *buf)
662{
663 char *p;
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000664
Eric Andersen79757c92001-04-05 21:45:54 +0000665 if (s1) {
666 if (!s2) s2="";
Eric Andersen3f1cf452003-03-11 18:03:39 +0000667 fprintf(fp, "%s%s\r\n", s1, s2);
Eric Andersen79757c92001-04-05 21:45:54 +0000668 fflush(fp);
669 }
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000670
Eric Andersen79757c92001-04-05 21:45:54 +0000671 do {
672 p = fgets(buf, 510, fp);
673 if (!p)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000674 bb_perror_msg_and_die("fgets()");
Eric Andersen79757c92001-04-05 21:45:54 +0000675 } while (! isdigit(buf[0]) || buf[3] != ' ');
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000676
Eric Andersen79757c92001-04-05 21:45:54 +0000677 return atoi(buf);
678}
679
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000680#ifdef CONFIG_FEATURE_WGET_STATUSBAR
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000681/* Stuff below is from BSD rcp util.c, as added to openshh.
Eric Andersen4e573f42000-11-14 23:29:24 +0000682 * Original copyright notice is retained at the end of this file.
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000683 *
684 */
Eric Andersenb520e082000-10-03 00:21:45 +0000685
686
Eric Andersen3e6ff902001-03-09 21:24:12 +0000687static int
Eric Andersenb520e082000-10-03 00:21:45 +0000688getttywidth(void)
689{
Eric Andersen8efe9672003-09-15 08:33:45 +0000690 int width=0;
691 get_terminal_width_height(0, &width, NULL);
692 return (width);
Eric Andersenb520e082000-10-03 00:21:45 +0000693}
694
Eric Andersen3e6ff902001-03-09 21:24:12 +0000695static void
Eric Andersenb520e082000-10-03 00:21:45 +0000696updateprogressmeter(int ignore)
697{
698 int save_errno = errno;
699
700 progressmeter(0);
701 errno = save_errno;
702}
703
Eric Andersen3e6ff902001-03-09 21:24:12 +0000704static void
Eric Andersenb520e082000-10-03 00:21:45 +0000705alarmtimer(int wait)
706{
707 struct itimerval itv;
708
709 itv.it_value.tv_sec = wait;
710 itv.it_value.tv_usec = 0;
711 itv.it_interval = itv.it_value;
712 setitimer(ITIMER_REAL, &itv, NULL);
713}
714
715
Eric Andersen3e6ff902001-03-09 21:24:12 +0000716static void
Eric Andersenb520e082000-10-03 00:21:45 +0000717progressmeter(int flag)
718{
719 static const char prefixes[] = " KMGTP";
720 static struct timeval lastupdate;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000721 static off_t lastsize, totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000722 struct timeval now, td, wait;
723 off_t cursize, abbrevsize;
724 double elapsed;
725 int ratio, barlength, i, remaining;
726 char buf[256];
727
728 if (flag == -1) {
729 (void) gettimeofday(&start, (struct timezone *) 0);
730 lastupdate = start;
731 lastsize = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000732 totalsize = filesize; /* as filesize changes.. */
Eric Andersenb520e082000-10-03 00:21:45 +0000733 }
734
735 (void) gettimeofday(&now, (struct timezone *) 0);
736 cursize = statbytes;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000737 if (totalsize != 0 && !chunked) {
738 ratio = 100.0 * cursize / totalsize;
Eric Andersenb520e082000-10-03 00:21:45 +0000739 ratio = MAX(ratio, 0);
740 ratio = MIN(ratio, 100);
741 } else
742 ratio = 100;
743
744 snprintf(buf, sizeof(buf), "\r%-20.20s %3d%% ", curfile, ratio);
745
746 barlength = getttywidth() - 51;
747 if (barlength > 0) {
748 i = barlength * ratio / 100;
749 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
750 "|%.*s%*s|", i,
751 "*****************************************************************************"
752 "*****************************************************************************",
753 barlength - i, "");
754 }
755 i = 0;
756 abbrevsize = cursize;
757 while (abbrevsize >= 100000 && i < sizeof(prefixes)) {
758 i++;
759 abbrevsize >>= 10;
760 }
761 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf), " %5d %c%c ",
762 (int) abbrevsize, prefixes[i], prefixes[i] == ' ' ? ' ' :
763 'B');
764
765 timersub(&now, &lastupdate, &wait);
766 if (cursize > lastsize) {
767 lastupdate = now;
768 lastsize = cursize;
769 if (wait.tv_sec >= STALLTIME) {
770 start.tv_sec += wait.tv_sec;
771 start.tv_usec += wait.tv_usec;
772 }
773 wait.tv_sec = 0;
774 }
775 timersub(&now, &start, &td);
776 elapsed = td.tv_sec + (td.tv_usec / 1000000.0);
777
Mark Whitley30ac01c2001-04-17 18:13:16 +0000778 if (wait.tv_sec >= STALLTIME) {
Eric Andersenb520e082000-10-03 00:21:45 +0000779 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
780 " - stalled -");
Mark Whitley30ac01c2001-04-17 18:13:16 +0000781 } else if (statbytes <= 0 || elapsed <= 0.0 || cursize > totalsize || chunked) {
782 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
783 " --:-- ETA");
Eric Andersenb520e082000-10-03 00:21:45 +0000784 } else {
Mark Whitley30ac01c2001-04-17 18:13:16 +0000785 remaining = (int) (totalsize / (statbytes / elapsed) - elapsed);
Eric Andersenb520e082000-10-03 00:21:45 +0000786 i = remaining / 3600;
787 if (i)
788 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
789 "%2d:", i);
790 else
791 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
792 " ");
793 i = remaining % 3600;
794 snprintf(buf + strlen(buf), sizeof(buf) - strlen(buf),
795 "%02d:%02d ETA", i / 60, i % 60);
796 }
Randolph Chungda7b8292000-12-07 03:55:35 +0000797 write(fileno(stderr), buf, strlen(buf));
Eric Andersenb520e082000-10-03 00:21:45 +0000798
799 if (flag == -1) {
800 struct sigaction sa;
801 sa.sa_handler = updateprogressmeter;
802 sigemptyset(&sa.sa_mask);
803 sa.sa_flags = SA_RESTART;
804 sigaction(SIGALRM, &sa, NULL);
805 alarmtimer(1);
806 } else if (flag == 1) {
807 alarmtimer(0);
808 statbytes = 0;
Mark Whitley30ac01c2001-04-17 18:13:16 +0000809 putc('\n', stderr);
Eric Andersenb520e082000-10-03 00:21:45 +0000810 }
811}
812#endif
Eric Andersen4e573f42000-11-14 23:29:24 +0000813
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000814/* Original copyright notice which applies to the CONFIG_FEATURE_WGET_STATUSBAR stuff,
Eric Andersen4e573f42000-11-14 23:29:24 +0000815 * much of which was blatently stolen from openssh. */
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000816
Eric Andersen4e573f42000-11-14 23:29:24 +0000817/*-
818 * Copyright (c) 1992, 1993
819 * The Regents of the University of California. All rights reserved.
820 *
821 * Redistribution and use in source and binary forms, with or without
822 * modification, are permitted provided that the following conditions
823 * are met:
824 * 1. Redistributions of source code must retain the above copyright
825 * notice, this list of conditions and the following disclaimer.
826 * 2. Redistributions in binary form must reproduce the above copyright
827 * notice, this list of conditions and the following disclaimer in the
828 * documentation and/or other materials provided with the distribution.
829 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000830 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
831 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000832 *
833 * 4. Neither the name of the University nor the names of its contributors
834 * may be used to endorse or promote products derived from this software
835 * without specific prior written permission.
836 *
837 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
838 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
839 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
840 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
841 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
842 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
843 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
844 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
845 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
846 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
847 * SUCH DAMAGE.
848 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000849 * $Id: wget.c,v 1.71 2004/03/15 08:28:53 andersen Exp $
Eric Andersen4e573f42000-11-14 23:29:24 +0000850 */
851
852
853
Eric Andersen96700832000-09-04 15:15:55 +0000854/*
855Local Variables:
856c-file-style: "linux"
857c-basic-offset: 4
858tab-width: 4
859End:
860*/