]> sjero.net Git - wget/blob - src/main.c
148205ad412fda81e6bc3704a90d58e62e4e6ccb
[wget] / src / main.c
1 /* Command line parsing.
2    Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2002
3    Free Software Foundation, Inc.
4
5 This file is part of GNU Wget.
6
7 GNU Wget is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 GNU Wget is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Wget; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 In addition, as a special exception, the Free Software Foundation
22 gives permission to link the code of its release of Wget with the
23 OpenSSL project's "OpenSSL" library (or with modified versions of it
24 that use the same license as the "OpenSSL" library), and distribute
25 the linked executables.  You must obey the GNU General Public License
26 in all respects for all of the code used other than "OpenSSL".  If you
27 modify this file, you may extend this exception to your version of the
28 file, but you are not obligated to do so.  If you do not wish to do
29 so, delete this exception statement from your version.  */
30
31 #include <config.h>
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #ifdef HAVE_UNISTD_H
36 # include <unistd.h>
37 #endif /* HAVE_UNISTD_H */
38 #include <sys/types.h>
39 #ifdef HAVE_STRING_H
40 # include <string.h>
41 #else
42 # include <strings.h>
43 #endif /* HAVE_STRING_H */
44 #ifdef HAVE_SIGNAL_H
45 # include <signal.h>
46 #endif
47 #ifdef HAVE_NLS
48 #ifdef HAVE_LOCALE_H
49 # include <locale.h>
50 #endif /* HAVE_LOCALE_H */
51 #endif /* HAVE_NLS */
52 #include <errno.h>
53
54 #include "wget.h"
55 #include "utils.h"
56 #include "init.h"
57 #include "retr.h"
58 #include "recur.h"
59 #include "host.h"
60 #include "cookies.h"
61 #include "url.h"
62 #include "progress.h"           /* for progress_handle_sigwinch */
63
64 #ifdef HAVE_SSL
65 # include "gen_sslfunc.h"
66 #endif
67
68 /* On GNU system this will include system-wide getopt.h. */
69 #include "getopt.h"
70
71 #ifndef PATH_SEPARATOR
72 # define PATH_SEPARATOR '/'
73 #endif
74
75 extern char *version_string;
76
77 #ifndef errno
78 extern int errno;
79 #endif
80
81 struct options opt;
82
83 extern struct cookie_jar *wget_cookie_jar;
84
85 /* From log.c.  */
86 void log_init PARAMS ((const char *, int));
87 void log_close PARAMS ((void));
88 void log_request_redirect_output PARAMS ((const char *));
89
90 static RETSIGTYPE redirect_output_signal PARAMS ((int));
91
92 const char *exec_name;
93 \f
94 /* Initialize I18N.  The initialization amounts to invoking
95    setlocale(), bindtextdomain() and textdomain().
96    Does nothing if NLS is disabled or missing.  */
97 static void
98 i18n_initialize (void)
99 {
100   /* If HAVE_NLS is defined, assume the existence of the three
101      functions invoked here.  */
102 #ifdef HAVE_NLS
103   /* Set the current locale.  */
104   /* Here we use LC_MESSAGES instead of LC_ALL, for two reasons.
105      First, message catalogs are all of I18N Wget uses anyway.
106      Second, setting LC_ALL has a dangerous potential of messing
107      things up.  For example, when in a foreign locale, Solaris
108      strptime() fails to handle international dates correctly, which
109      makes http_atotm() malfunction.  */
110 #ifdef LC_MESSAGES
111   setlocale (LC_MESSAGES, "");
112   setlocale (LC_CTYPE, "");
113 #else
114   setlocale (LC_ALL, "");
115 #endif
116   /* Set the text message domain.  */
117   bindtextdomain ("wget", LOCALEDIR);
118   textdomain ("wget");
119 #endif /* HAVE_NLS */
120 }
121 \f
122 /* Print the usage message.  */
123 static void
124 print_usage (void)
125 {
126   printf (_("Usage: %s [OPTION]... [URL]...\n"), exec_name);
127 }
128
129 /* Print the help message, describing all the available options.  If
130    you add an option, be sure to update this list.  */
131 static void
132 print_help (void)
133 {
134   printf (_("GNU Wget %s, a non-interactive network retriever.\n"),
135           version_string);
136   print_usage ();
137   /* Had to split this in parts, so the #@@#%# Ultrix compiler and cpp
138      don't bitch.  Also, it makes translation much easier.  */
139   fputs (_("\
140 \n\
141 Mandatory arguments to long options are mandatory for short options too.\n\
142 \n"), stdout);
143   fputs (_("\
144 Startup:\n\
145   -V,  --version           display the version of Wget and exit.\n\
146   -h,  --help              print this help.\n\
147   -b,  --background        go to background after startup.\n\
148   -e,  --execute=COMMAND   execute a `.wgetrc\'-style command.\n\
149 \n"), stdout);
150   fputs (_("\
151 Logging and input file:\n\
152   -o,  --output-file=FILE     log messages to FILE.\n\
153   -a,  --append-output=FILE   append messages to FILE.\n\
154   -d,  --debug                print debug output.\n\
155   -q,  --quiet                quiet (no output).\n\
156   -v,  --verbose              be verbose (this is the default).\n\
157   -nv, --non-verbose          turn off verboseness, without being quiet.\n\
158   -i,  --input-file=FILE      download URLs found in FILE.\n\
159   -F,  --force-html           treat input file as HTML.\n\
160   -B,  --base=URL             prepends URL to relative links in -F -i file.\n\
161 \n"),stdout);
162   fputs (_("\
163 Download:\n\
164   -t,  --tries=NUMBER           set number of retries to NUMBER (0 unlimits).\n\
165        --retry-connrefused      retry even if connection is refused.\n\
166   -O   --output-document=FILE   write documents to FILE.\n\
167   -nc, --no-clobber             don\'t clobber existing files or use .# suffixes.\n\
168   -c,  --continue               resume getting a partially-downloaded file.\n\
169        --progress=TYPE          select progress gauge type.\n\
170   -N,  --timestamping           don\'t re-retrieve files unless newer than local.\n\
171   -S,  --server-response        print server response.\n\
172        --spider                 don\'t download anything.\n\
173   -T,  --timeout=SECONDS        set the read timeout to SECONDS.\n\
174   -w,  --wait=SECONDS           wait SECONDS between retrievals.\n\
175        --waitretry=SECONDS      wait 1...SECONDS between retries of a retrieval.\n\
176        --random-wait            wait from 0...2*WAIT secs between retrievals.\n\
177   -Y,  --proxy=on/off           turn proxy on or off.\n\
178   -Q,  --quota=NUMBER           set retrieval quota to NUMBER.\n\
179        --bind-address=ADDRESS   bind to ADDRESS (hostname or IP) on local host.\n\
180        --limit-rate=RATE        limit download rate to RATE.\n\
181        --dns-cache=off          disable caching DNS lookups.\n\
182        --restrict-file-names=OS restrict chars in file names to ones OS allows.\n\
183 \n"), stdout);
184   fputs (_("\
185 Directories:\n\
186   -nd, --no-directories            don\'t create directories.\n\
187   -x,  --force-directories         force creation of directories.\n\
188   -nH, --no-host-directories       don\'t create host directories.\n\
189   -P,  --directory-prefix=PREFIX   save files to PREFIX/...\n\
190        --cut-dirs=NUMBER           ignore NUMBER remote directory components.\n\
191 \n"), stdout);
192   fputs (_("\
193 HTTP options:\n\
194        --http-user=USER      set http user to USER.\n\
195        --http-passwd=PASS    set http password to PASS.\n\
196   -C,  --cache=on/off        (dis)allow server-cached data (normally allowed).\n\
197   -E,  --html-extension      save all text/html documents with .html extension.\n\
198        --ignore-length       ignore `Content-Length\' header field.\n\
199        --header=STRING       insert STRING among the headers.\n\
200        --proxy-user=USER     set USER as proxy username.\n\
201        --proxy-passwd=PASS   set PASS as proxy password.\n\
202        --referer=URL         include `Referer: URL\' header in HTTP request.\n\
203   -s,  --save-headers        save the HTTP headers to file.\n\
204   -U,  --user-agent=AGENT    identify as AGENT instead of Wget/VERSION.\n\
205        --no-http-keep-alive  disable HTTP keep-alive (persistent connections).\n\
206        --cookies=off         don't use cookies.\n\
207        --load-cookies=FILE   load cookies from FILE before session.\n\
208        --save-cookies=FILE   save cookies to FILE after session.\n\
209        --post-data=STRING    use the POST method; send STRING as the data.\n\
210        --post-file=FILE      use the POST method; send contents of FILE.\n\
211 \n"), stdout);
212 #ifdef HAVE_SSL
213   fputs (_("\
214 HTTPS (SSL) options:\n\
215        --sslcertfile=FILE     optional client certificate.\n\
216        --sslcertkey=KEYFILE   optional keyfile for this certificate.\n\
217        --egd-file=FILE        file name of the EGD socket.\n\
218        --sslcadir=DIR         dir where hash list of CA's are stured.\n\
219        --sslcafile=FILE       file with bundle of CA's\n\
220        --sslcerttype=0/1      Client-Cert type 0=PEM (default) / 1=ASN1 (DER)\n\
221        --sslcheckcert=0/1     Check the server cert agenst given CA\n\
222        --sslprotocol=0-3      choose SSL protocol; 0=automatic,\n\
223                               1=SSLv2 2=SSLv3 3=TLSv1\n\
224 \n"), stdout);
225 #endif
226   fputs (_("\
227 FTP options:\n\
228   -nr, --dont-remove-listing   don\'t remove `.listing\' files.\n\
229   -g,  --glob=on/off           turn file name globbing on or off.\n\
230        --passive-ftp           use the \"passive\" transfer mode.\n\
231        --retr-symlinks         when recursing, get linked-to files (not dirs).\n\
232 \n"), stdout);
233   fputs (_("\
234 Recursive retrieval:\n\
235   -r,  --recursive          recursive download.\n\
236   -l,  --level=NUMBER       maximum recursion depth (inf or 0 for infinite).\n\
237        --delete-after       delete files locally after downloading them.\n\
238   -k,  --convert-links      convert non-relative links to relative.\n\
239   -K,  --backup-converted   before converting file X, back up as X.orig.\n\
240   -m,  --mirror             shortcut option equivalent to -r -N -l inf -nr.\n\
241   -p,  --page-requisites    get all images, etc. needed to display HTML page.\n\
242        --strict-comments    turn on strict (SGML) handling of HTML comments.\n\
243 \n"), stdout);
244   fputs (_("\
245 Recursive accept/reject:\n\
246   -A,  --accept=LIST                comma-separated list of accepted extensions.\n\
247   -R,  --reject=LIST                comma-separated list of rejected extensions.\n\
248   -D,  --domains=LIST               comma-separated list of accepted domains.\n\
249        --exclude-domains=LIST       comma-separated list of rejected domains.\n\
250        --follow-ftp                 follow FTP links from HTML documents.\n\
251        --follow-tags=LIST           comma-separated list of followed HTML tags.\n\
252   -G,  --ignore-tags=LIST           comma-separated list of ignored HTML tags.\n\
253   -H,  --span-hosts                 go to foreign hosts when recursive.\n\
254   -L,  --relative                   follow relative links only.\n\
255   -I,  --include-directories=LIST   list of allowed directories.\n\
256   -X,  --exclude-directories=LIST   list of excluded directories.\n\
257   -np, --no-parent                  don\'t ascend to the parent directory.\n\
258 \n"), stdout);
259   fputs (_("Mail bug reports and suggestions to <bug-wget@gnu.org>.\n"),
260          stdout);
261 }
262 \f
263 int
264 main (int argc, char *const *argv)
265 {
266   char **url, **t;
267   int i, c, nurl, status, append_to_log;
268
269   static struct option long_options[] =
270   {
271     /* Options without arguments: */
272     { "background", no_argument, NULL, 'b' },
273     { "backup-converted", no_argument, NULL, 'K' },
274     { "continue", no_argument, NULL, 'c' },
275     { "convert-links", no_argument, NULL, 'k' },
276     { "debug", no_argument, NULL, 'd' },
277     { "delete-after", no_argument, NULL, 136 },
278     { "dont-remove-listing", no_argument, NULL, 149 },
279     { "follow-ftp", no_argument, NULL, 142 },
280     { "force-directories", no_argument, NULL, 'x' },
281     { "force-hier", no_argument, NULL, 'x' }, /* obsolete */
282     { "force-html", no_argument, NULL, 'F'},
283     { "help", no_argument, NULL, 'h' },
284     { "html-extension", no_argument, NULL, 'E' },
285     { "ignore-length", no_argument, NULL, 138 },
286     { "mirror", no_argument, NULL, 'm' },
287     { "no-clobber", no_argument, NULL, 141 },
288     { "no-directories", no_argument, NULL, 147 },
289     { "no-host-directories", no_argument, NULL, 148 },
290     { "no-host-lookup", no_argument, NULL, 150 },
291     { "no-http-keep-alive", no_argument, NULL, 156 },
292     { "no-parent", no_argument, NULL, 133 },
293     { "non-verbose", no_argument, NULL, 146 },
294     { "passive-ftp", no_argument, NULL, 139 },
295     { "page-requisites", no_argument, NULL, 'p' },
296     { "quiet", no_argument, NULL, 'q' },
297     { "random-wait", no_argument, NULL, 165 },
298     { "recursive", no_argument, NULL, 'r' },
299     { "relative", no_argument, NULL, 'L' },
300     { "retr-symlinks", no_argument, NULL, 137 },
301     { "retry-connrefused", no_argument, NULL, 174 },
302     { "save-headers", no_argument, NULL, 's' },
303     { "server-response", no_argument, NULL, 'S' },
304     { "span-hosts", no_argument, NULL, 'H' },
305     { "spider", no_argument, NULL, 132 },
306     { "strict-comments", no_argument, NULL, 177 },
307     { "timestamping", no_argument, NULL, 'N' },
308     { "verbose", no_argument, NULL, 'v' },
309     { "version", no_argument, NULL, 'V' },
310
311     /* Options accepting an argument: */
312     { "accept", required_argument, NULL, 'A' },
313     { "append-output", required_argument, NULL, 'a' },
314     { "backups", required_argument, NULL, 151 }, /* undocumented */
315     { "base", required_argument, NULL, 'B' },
316     { "bind-address", required_argument, NULL, 155 },
317     { "cache", required_argument, NULL, 'C' },
318     { "cookies", required_argument, NULL, 160 },
319     { "cut-dirs", required_argument, NULL, 145 },
320     { "directory-prefix", required_argument, NULL, 'P' },
321     { "dns-cache", required_argument, NULL, 175 },
322     { "domains", required_argument, NULL, 'D' },
323     { "dot-style", required_argument, NULL, 134 },
324     { "execute", required_argument, NULL, 'e' },
325     { "exclude-directories", required_argument, NULL, 'X' },
326     { "exclude-domains", required_argument, NULL, 140 },
327     { "follow-tags", required_argument, NULL, 153 },
328     { "glob", required_argument, NULL, 'g' },
329     { "header", required_argument, NULL, 131 },
330     { "htmlify", required_argument, NULL, 135 },
331     { "http-passwd", required_argument, NULL, 130 },
332     { "http-user", required_argument, NULL, 129 },
333     { "ignore-tags", required_argument, NULL, 'G' },
334     { "include-directories", required_argument, NULL, 'I' },
335     { "input-file", required_argument, NULL, 'i' },
336     { "level", required_argument, NULL, 'l' },
337     { "limit-rate", required_argument, NULL, 164 },
338     { "load-cookies", required_argument, NULL, 161 },
339     { "no", required_argument, NULL, 'n' },
340     { "output-document", required_argument, NULL, 'O' },
341     { "output-file", required_argument, NULL, 'o' },
342     { "post-data", required_argument, NULL, 167 },
343     { "post-file", required_argument, NULL, 168 },
344     { "progress", required_argument, NULL, 163 },
345     { "proxy", required_argument, NULL, 'Y' },
346     { "proxy-passwd", required_argument, NULL, 144 },
347     { "proxy-user", required_argument, NULL, 143 },
348     { "quota", required_argument, NULL, 'Q' },
349     { "reject", required_argument, NULL, 'R' },
350     { "restrict-file-names", required_argument, NULL, 176 },
351     { "save-cookies", required_argument, NULL, 162 },
352     { "timeout", required_argument, NULL, 'T' },
353     { "tries", required_argument, NULL, 't' },
354     { "user-agent", required_argument, NULL, 'U' },
355     { "referer", required_argument, NULL, 157 },
356     { "use-proxy", required_argument, NULL, 'Y' },
357 #ifdef HAVE_SSL
358     { "sslcertfile", required_argument, NULL, 158 },
359     { "sslcertkey", required_argument, NULL, 159 },
360     { "egd-file", required_argument, NULL, 166 },
361     { "sslcadir",         required_argument, NULL, 169},
362     { "sslcafile",        required_argument, NULL, 170},
363     { "sslcerttype",      required_argument, NULL, 171},
364     { "sslcheckcert",     required_argument, NULL, 172},
365     { "sslprotocol",      required_argument, NULL, 173},
366 #endif /* HAVE_SSL */
367     { "wait", required_argument, NULL, 'w' },
368     { "waitretry", required_argument, NULL, 152 },
369     { 0, 0, 0, 0 }
370   };
371
372   i18n_initialize ();
373
374   append_to_log = 0;
375
376   /* Construct the name of the executable, without the directory part.  */
377   exec_name = strrchr (argv[0], PATH_SEPARATOR);
378   if (!exec_name)
379     exec_name = argv[0];
380   else
381     ++exec_name;
382
383 #ifdef WINDOWS
384   windows_main_junk (&argc, (char **) argv, (char **) &exec_name);
385 #endif
386
387   initialize (); /* sets option defaults; reads the system wgetrc and .wgetrc */
388
389   /* [Is the order of the option letters significant?  If not, they should be
390       alphabetized, like the long_options.  The only thing I know for sure is
391       that the options with required arguments must be followed by a ':'.
392       -- Dan Harkless <wget@harkless.org>] */
393   while ((c = getopt_long (argc, argv, "\
394 hpVqvdkKsxmNWrHSLcFbEY:G:g:T:U:O:l:n:i:o:a:t:D:A:R:P:B:e:Q:X:I:w:C:",
395                            long_options, (int *)0)) != EOF)
396     {
397       switch (c)
398         {
399           /* Options without arguments: */
400         case 132:
401           setoptval ("spider", "on");
402           break;
403         case 133:
404           setoptval ("noparent", "on");
405           break;
406         case 136:
407           setoptval ("deleteafter", "on");
408           break;
409         case 137:
410           setoptval ("retrsymlinks", "on");
411           break;
412         case 138:
413           setoptval ("ignorelength", "on");
414           break;
415         case 139:
416           setoptval ("passiveftp", "on");
417           break;
418         case 141:
419           setoptval ("noclobber", "on");
420           break;
421         case 142:
422           setoptval ("followftp", "on");
423           break;
424         case 145:
425           setoptval ("cutdirs", optarg);
426           break;
427         case 146:
428           setoptval ("verbose", "off");
429           break;
430         case 147:
431           setoptval ("dirstruct", "off");
432           break;
433         case 148:
434           setoptval ("addhostdir", "off");
435           break;
436         case 149:
437           setoptval ("removelisting", "off");
438           break;
439         case 155:
440           setoptval ("bindaddress", optarg);
441           break;
442         case 156:
443           setoptval ("httpkeepalive", "off");
444           break;
445         case 165:
446           setoptval ("randomwait", "on");
447           break;
448         case 'b':
449           setoptval ("background", "on");
450           break;
451         case 'c':
452           setoptval ("continue", "on");
453           break;
454         case 'd':
455 #ifdef DEBUG
456           setoptval ("debug", "on");
457 #else  /* not DEBUG */
458           fprintf (stderr, _("%s: debug support not compiled in.\n"),
459                    exec_name);
460 #endif /* not DEBUG */
461           break;
462         case 'E':
463           setoptval ("htmlextension", "on");
464           break;
465         case 'F':
466           setoptval ("forcehtml", "on");
467           break;
468         case 'H':
469           setoptval ("spanhosts", "on");
470           break;
471         case 'h':
472           print_help ();
473 #ifdef WINDOWS
474           ws_help (exec_name);
475 #endif
476           exit (0);
477           break;
478         case 'K':
479           setoptval ("backupconverted", "on");
480           break;
481         case 'k':
482           setoptval ("convertlinks", "on");
483           break;
484         case 'L':
485           setoptval ("relativeonly", "on");
486           break;
487         case 'm':
488           setoptval ("mirror", "on");
489           break;
490         case 'N':
491           setoptval ("timestamping", "on");
492           break;
493         case 'p':
494           setoptval ("pagerequisites", "on");
495           break;
496         case 'S':
497           setoptval ("serverresponse", "on");
498           break;
499         case 's':
500           setoptval ("saveheaders", "on");
501           break;
502         case 'q':
503           setoptval ("quiet", "on");
504           break;
505         case 'r':
506           setoptval ("recursive", "on");
507           break;
508         case 'V':
509           printf ("GNU Wget %s\n\n", version_string);
510           printf ("%s", _("\
511 Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.\n"));
512           printf ("%s", _("\
513 This program is distributed in the hope that it will be useful,\n\
514 but WITHOUT ANY WARRANTY; without even the implied warranty of\n\
515 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n\
516 GNU General Public License for more details.\n"));
517           printf (_("\nOriginally written by Hrvoje Niksic <hniksic@arsdigita.com>.\n"));
518           exit (0);
519           break;
520         case 'v':
521           setoptval ("verbose", "on");
522           break;
523         case 'x':
524           setoptval ("dirstruct", "on");
525           break;
526         case 174:
527           setoptval ("retryconnrefused", "on");
528           break;
529         case 177:
530           setoptval ("strictcomments", "on");
531           break;
532
533           /* Options accepting an argument: */
534         case 129:
535           setoptval ("httpuser", optarg);
536           break;
537         case 130:
538           setoptval ("httppasswd", optarg);
539           break;
540         case 131:
541           setoptval ("header", optarg);
542           break;
543         case 134:
544           setoptval ("dotstyle", optarg);
545           break;
546         case 135:
547           setoptval ("htmlify", optarg);
548           break;
549         case 140:
550           setoptval ("excludedomains", optarg);
551           break;
552         case 143:
553           setoptval ("proxyuser", optarg);
554           break;
555         case 144:
556           setoptval ("proxypasswd", optarg);
557           break;
558         case 151:
559           setoptval ("backups", optarg);
560           break;
561         case 152:
562           setoptval ("waitretry", optarg);
563           break;
564         case 153:
565           setoptval ("followtags", optarg);
566           break;
567         case 160:
568           setoptval ("cookies", optarg);
569           break;
570         case 161:
571           setoptval ("loadcookies", optarg);
572           break;
573         case 162:
574           setoptval ("savecookies", optarg);
575           break;
576         case 163:
577           setoptval ("progress", optarg);
578           break;
579         case 164:
580           setoptval ("limitrate", optarg);
581           break;
582         case 157:
583           setoptval ("referer", optarg);
584           break;
585 #ifdef HAVE_SSL
586         case 158:
587           setoptval ("sslcertfile", optarg);
588           break;
589         case 159:
590           setoptval ("sslcertkey", optarg);
591           break;
592         case 166:
593           setoptval ("egdfile", optarg);
594           break;
595         case 169:
596           setoptval ("sslcadir", optarg);
597           break;
598         case 170:
599           setoptval ("sslcafile", optarg);
600           break;
601         case 171:
602           setoptval ("sslcerttype", optarg);
603           break;
604         case 172:
605           setoptval ("sslcheckcert", optarg);
606           break;
607         case 173:
608           setoptval ("sslprotocol", optarg);
609           break;
610 #endif /* HAVE_SSL */
611         case 167:
612           setoptval ("postdata", optarg);
613           break;
614         case 168:
615           setoptval ("postfile", optarg);
616           break;
617         case 175:
618           setoptval ("dnscache", optarg);
619           break;
620         case 176:
621           setoptval ("restrictfilenames", optarg);
622           break;
623         case 'A':
624           setoptval ("accept", optarg);
625           break;
626         case 'a':
627           setoptval ("logfile", optarg);
628           append_to_log = 1;
629           break;
630         case 'B':
631           setoptval ("base", optarg);
632           break;
633         case 'C':
634           setoptval ("cache", optarg);
635           break;
636         case 'D':
637           setoptval ("domains", optarg);
638           break;
639         case 'e':
640           run_command (optarg);
641           break;
642         case 'G':
643           setoptval ("ignoretags", optarg);
644           break;
645         case 'g':
646           setoptval ("glob", optarg);
647           break;
648         case 'I':
649           setoptval ("includedirectories", optarg);
650           break;
651         case 'i':
652           setoptval ("input", optarg);
653           break;
654         case 'l':
655           setoptval ("reclevel", optarg);
656           break;
657         case 'n':
658           {
659             /* #### What we really want here is --no-foo. */
660             char *p;
661
662             for (p = optarg; *p; p++)
663               switch (*p)
664                 {
665                 case 'v':
666                   setoptval ("verbose", "off");
667                   break;
668                 case 'H':
669                   setoptval ("addhostdir", "off");
670                   break;
671                 case 'd':
672                   setoptval ("dirstruct", "off");
673                   break;
674                 case 'c':
675                   setoptval ("noclobber", "on");
676                   break;
677                 case 'r':
678                   setoptval ("removelisting", "off");
679                   break;
680                 case 'p':
681                   setoptval ("noparent", "on");
682                   break;
683                 case 'k':
684                   setoptval ("httpkeepalive", "off");
685                   break;
686                 default:
687                   printf (_("%s: illegal option -- `-n%c'\n"), exec_name, *p);
688                   print_usage ();
689                   printf ("\n");
690                   printf (_("Try `%s --help\' for more options.\n"), exec_name);
691                   exit (1);
692                 }
693             break;
694           }
695         case 'O':
696           setoptval ("outputdocument", optarg);
697           break;
698         case 'o':
699           setoptval ("logfile", optarg);
700           break;
701         case 'P':
702           setoptval ("dirprefix", optarg);
703           break;
704         case 'Q':
705           setoptval ("quota", optarg);
706           break;
707         case 'R':
708           setoptval ("reject", optarg);
709           break;
710         case 'T':
711           setoptval ("timeout", optarg);
712           break;
713         case 't':
714           setoptval ("tries", optarg);
715           break;
716         case 'U':
717           setoptval ("useragent", optarg);
718           break;
719         case 'w':
720           setoptval ("wait", optarg);
721           break;
722         case 'X':
723           setoptval ("excludedirectories", optarg);
724           break;
725         case 'Y':
726           setoptval ("useproxy", optarg);
727           break;
728
729         case '?':
730           print_usage ();
731           printf ("\n");
732           printf (_("Try `%s --help' for more options.\n"), exec_name);
733           exit (0);
734           break;
735         }
736     }
737
738   /* All user options have now been processed, so it's now safe to do
739      interoption dependency checks. */
740
741   if (opt.reclevel == 0)
742     opt.reclevel = INFINITE_RECURSION;  /* see wget.h for commentary on this */
743
744   if (opt.page_requisites && !opt.recursive)
745     {
746       opt.recursive = TRUE;
747       opt.reclevel = 0;
748       if (!opt.no_dirstruct)
749         opt.dirstruct = TRUE;  /* usually handled by cmd_spec_recursive() */
750     }
751
752   if (opt.verbose == -1)
753     opt.verbose = !opt.quiet;
754
755   /* Sanity checks.  */
756   if (opt.verbose && opt.quiet)
757     {
758       printf (_("Can't be verbose and quiet at the same time.\n"));
759       print_usage ();
760       exit (1);
761     }
762   if (opt.timestamping && opt.noclobber)
763     {
764       printf (_("\
765 Can't timestamp and not clobber old files at the same time.\n"));
766       print_usage ();
767       exit (1);
768     }
769   nurl = argc - optind;
770   if (!nurl && !opt.input_filename)
771     {
772       /* No URL specified.  */
773       printf (_("%s: missing URL\n"), exec_name);
774       print_usage ();
775       printf ("\n");
776       /* #### Something nicer should be printed here -- similar to the
777          pre-1.5 `--help' page.  */
778       printf (_("Try `%s --help' for more options.\n"), exec_name);
779       exit (1);
780     }
781
782   if (opt.background)
783     fork_to_background ();
784
785   /* Initialize progress.  Have to do this after the options are
786      processed so we know where the log file is.  */
787   if (opt.verbose)
788     set_progress_implementation (opt.progress_type);
789
790   /* Allocate basic pointer.  */
791   url = ALLOCA_ARRAY (char *, nurl + 1);
792   /* Fill in the arguments.  */
793   for (i = 0; i < nurl; i++, optind++)
794     {
795       char *rewritten = rewrite_shorthand_url (argv[optind]);
796       if (rewritten)
797         url[i] = rewritten;
798       else
799         url[i] = xstrdup (argv[optind]);
800     }
801   url[i] = NULL;
802
803   /* Change the title of console window on Windows.  #### I think this
804      statement should belong to retrieve_url().  --hniksic.  */
805 #ifdef WINDOWS
806   ws_changetitle (*url, nurl);
807 #endif
808
809   /* Initialize logging.  */
810   log_init (opt.lfilename, append_to_log);
811
812   DEBUGP (("DEBUG output created by Wget %s on %s.\n\n", version_string,
813            OS_TYPE));
814
815   /* Open the output filename if necessary.  */
816   if (opt.output_document)
817     {
818       if (HYPHENP (opt.output_document))
819         opt.dfp = stdout;
820       else
821         {
822           struct stat st;
823           opt.dfp = fopen (opt.output_document, opt.always_rest ? "ab" : "wb");
824           if (opt.dfp == NULL)
825             {
826               perror (opt.output_document);
827               exit (1);
828             }
829           if (fstat (fileno (opt.dfp), &st) == 0 && S_ISREG (st.st_mode))
830             opt.od_known_regular = 1;
831         }
832     }
833
834 #ifdef WINDOWS
835   ws_startup ();
836 #endif
837
838   /* Setup the signal handler to redirect output when hangup is
839      received.  */
840 #ifdef HAVE_SIGNAL
841   if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
842     signal(SIGHUP, redirect_output_signal);
843   /* ...and do the same for SIGUSR1.  */
844   signal (SIGUSR1, redirect_output_signal);
845   /* Writing to a closed socket normally signals SIGPIPE, and the
846      process exits.  What we want is to ignore SIGPIPE and just check
847      for the return value of write().  */
848   signal (SIGPIPE, SIG_IGN);
849 #ifdef SIGWINCH
850   signal (SIGWINCH, progress_handle_sigwinch);
851 #endif
852 #endif /* HAVE_SIGNAL */
853
854 #ifdef HAVE_SSL
855   /* Must call this before resolving any URLs because it has the power
856      to disable `https'.  */
857   ssl_init_prng ();
858 #endif
859
860   status = RETROK;              /* initialize it, just-in-case */
861   /* Retrieve the URLs from argument list.  */
862   for (t = url; *t; t++)
863     {
864       char *filename = NULL, *redirected_URL = NULL;
865       int dt;
866
867       if (opt.recursive && url_scheme (*t) != SCHEME_FTP)
868         status = retrieve_tree (*t);
869       else
870         status = retrieve_url (*t, &filename, &redirected_URL, NULL, &dt);
871
872       if (opt.delete_after && file_exists_p(filename))
873         {
874           DEBUGP (("Removing file due to --delete-after in main():\n"));
875           logprintf (LOG_VERBOSE, _("Removing %s.\n"), filename);
876           if (unlink (filename))
877             logprintf (LOG_NOTQUIET, "unlink: %s\n", strerror (errno));
878         }
879
880       FREE_MAYBE (redirected_URL);
881       FREE_MAYBE (filename);
882     }
883
884   /* And then from the input file, if any.  */
885   if (opt.input_filename)
886     {
887       int count;
888       status = retrieve_from_file (opt.input_filename, opt.force_html, &count);
889       if (!count)
890         logprintf (LOG_NOTQUIET, _("No URLs found in %s.\n"),
891                    opt.input_filename);
892     }
893   /* Print the downloaded sum.  */
894   if (opt.recursive
895       || nurl > 1
896       || (opt.input_filename && opt.downloaded != 0))
897     {
898       logprintf (LOG_NOTQUIET,
899                  _("\nFINISHED --%s--\nDownloaded: %s bytes in %d files\n"),
900                  time_str (NULL),
901                  (opt.downloaded_overflow ?
902                   "<overflow>" : legible_very_long (opt.downloaded)),
903                  opt.numurls);
904       /* Print quota warning, if exceeded.  */
905       if (downloaded_exceeds_quota ())
906         logprintf (LOG_NOTQUIET,
907                    _("Download quota (%s bytes) EXCEEDED!\n"),
908                    legible (opt.quota));
909     }
910
911   if (opt.cookies_output && wget_cookie_jar)
912     cookie_jar_save (wget_cookie_jar, opt.cookies_output);
913
914   if (opt.convert_links && !opt.delete_after)
915     {
916       convert_all_links ();
917     }
918
919   log_close ();
920   for (i = 0; i < nurl; i++)
921     xfree (url[i]);
922   cleanup ();
923
924 #ifdef DEBUG_MALLOC
925   print_malloc_debug_stats ();
926 #endif
927   if (status == RETROK)
928     return 0;
929   else
930     return 1;
931 }
932 \f
933 #ifdef HAVE_SIGNAL
934 /* Hangup signal handler.  When wget receives SIGHUP or SIGUSR1, it
935    will proceed operation as usual, trying to write into a log file.
936    If that is impossible, the output will be turned off.
937
938    #### It is unsafe to do call libc functions from a signal handler.
939    What we should do is, set a global variable, and have the code in
940    log.c pick it up.  */
941
942 static RETSIGTYPE
943 redirect_output_signal (int sig)
944 {
945   char *signal_name = (sig == SIGHUP ? "SIGHUP" :
946                        (sig == SIGUSR1 ? "SIGUSR1" :
947                         "WTF?!"));
948   log_request_redirect_output (signal_name);
949   progress_schedule_redirect ();
950   signal (sig, redirect_output_signal);
951 }
952 #endif /* HAVE_SIGNAL */