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