1999-12-02 02:42:23 -05:00
|
|
|
|
/* Reading/parsing the initialization file.
|
2010-05-08 15:56:15 -04:00
|
|
|
|
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
2011-01-01 07:19:37 -05:00
|
|
|
|
2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
|
|
|
|
|
Inc.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
|
This file is part of GNU Wget.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
|
GNU Wget is free software; you can redistribute it and/or modify
|
1999-12-02 02:42:23 -05:00
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-10 01:53:22 -04:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-12-02 02:42:23 -05:00
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
|
GNU Wget is distributed in the hope that it will be useful,
|
1999-12-02 02:42:23 -05:00
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-10 01:53:22 -04:00
|
|
|
|
along with Wget. If not, see <http://www.gnu.org/licenses/>.
|
2002-05-17 22:16:36 -04:00
|
|
|
|
|
2007-11-28 03:05:33 -05:00
|
|
|
|
Additional permission under GNU GPL version 3 section 7
|
|
|
|
|
|
|
|
|
|
If you modify this program, or any covered work, by linking or
|
|
|
|
|
combining it with the OpenSSL project's OpenSSL library (or a
|
|
|
|
|
modified version of that library), containing parts covered by the
|
|
|
|
|
terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
|
|
|
|
|
grants you additional permission to convey the resulting work.
|
|
|
|
|
Corresponding Source for a non-source form of such a combination
|
|
|
|
|
shall include the source code for the parts of OpenSSL used as well
|
|
|
|
|
as that of the covered work. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2007-10-18 23:50:40 -04:00
|
|
|
|
#include "wget.h"
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
2010-10-28 18:20:31 -04:00
|
|
|
|
#include <stdbool.h>
|
2010-12-01 07:15:13 -05:00
|
|
|
|
#include <unistd.h>
|
2005-06-19 18:34:58 -04:00
|
|
|
|
#include <string.h>
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#include <errno.h>
|
2010-01-09 19:53:41 -05:00
|
|
|
|
#include <limits.h>
|
|
|
|
|
/* not all systems provide PATH_MAX in limits.h */
|
|
|
|
|
#ifndef PATH_MAX
|
|
|
|
|
# include <sys/param.h>
|
|
|
|
|
# ifndef PATH_MAX
|
|
|
|
|
# define PATH_MAX MAXPATHLEN
|
|
|
|
|
# endif
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_PWD_H
|
2003-09-20 20:41:49 -04:00
|
|
|
|
# include <pwd.h>
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#endif
|
2003-09-20 20:41:49 -04:00
|
|
|
|
#include <assert.h>
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
#include "utils.h"
|
|
|
|
|
#include "init.h"
|
|
|
|
|
#include "host.h"
|
|
|
|
|
#include "netrc.h"
|
2001-12-09 17:25:34 -05:00
|
|
|
|
#include "progress.h"
|
2007-08-02 23:38:21 -04:00
|
|
|
|
#include "recur.h" /* for INFINITE_RECURSION */
|
|
|
|
|
#include "convert.h" /* for convert_cleanup */
|
|
|
|
|
#include "res.h" /* for res_cleanup */
|
|
|
|
|
#include "http.h" /* for http_cleanup */
|
|
|
|
|
#include "retr.h" /* for output_stream */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2006-06-13 09:58:33 -04:00
|
|
|
|
#ifdef TESTING
|
|
|
|
|
#include "test.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-04-08 19:59:14 -04:00
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
#define CMD_DECLARE(func) static bool func (const char *, const char *, void *)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
CMD_DECLARE (cmd_boolean);
|
2000-10-20 02:59:30 -04:00
|
|
|
|
CMD_DECLARE (cmd_bytes);
|
2005-06-25 10:39:51 -04:00
|
|
|
|
CMD_DECLARE (cmd_bytes_sum);
|
2005-04-27 13:15:10 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
|
|
|
|
CMD_DECLARE (cmd_cert_type);
|
|
|
|
|
#endif
|
2000-10-20 02:59:30 -04:00
|
|
|
|
CMD_DECLARE (cmd_directory_vector);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
CMD_DECLARE (cmd_number);
|
|
|
|
|
CMD_DECLARE (cmd_number_inf);
|
|
|
|
|
CMD_DECLARE (cmd_string);
|
2001-04-08 19:59:14 -04:00
|
|
|
|
CMD_DECLARE (cmd_file);
|
2002-01-16 20:03:33 -05:00
|
|
|
|
CMD_DECLARE (cmd_directory);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
CMD_DECLARE (cmd_time);
|
2000-10-20 02:59:30 -04:00
|
|
|
|
CMD_DECLARE (cmd_vector);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
CMD_DECLARE (cmd_spec_dirstruct);
|
|
|
|
|
CMD_DECLARE (cmd_spec_header);
|
|
|
|
|
CMD_DECLARE (cmd_spec_htmlify);
|
|
|
|
|
CMD_DECLARE (cmd_spec_mirror);
|
2005-04-24 16:00:19 -04:00
|
|
|
|
CMD_DECLARE (cmd_spec_prefer_family);
|
2001-12-09 17:25:34 -05:00
|
|
|
|
CMD_DECLARE (cmd_spec_progress);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
CMD_DECLARE (cmd_spec_recursive);
|
2003-09-14 18:04:13 -04:00
|
|
|
|
CMD_DECLARE (cmd_spec_restrict_file_names);
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
|
|
|
|
CMD_DECLARE (cmd_spec_secure_protocol);
|
|
|
|
|
#endif
|
2003-09-21 00:41:55 -04:00
|
|
|
|
CMD_DECLARE (cmd_spec_timeout);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
CMD_DECLARE (cmd_spec_useragent);
|
2005-06-24 07:44:38 -04:00
|
|
|
|
CMD_DECLARE (cmd_spec_verbose);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-04-26 13:30:45 -04:00
|
|
|
|
/* List of recognized commands, each consisting of name, place and
|
2003-11-04 18:19:39 -05:00
|
|
|
|
function. When adding a new command, simply add it to the list,
|
|
|
|
|
but be sure to keep the list sorted alphabetically, as
|
2006-08-08 10:31:12 -04:00
|
|
|
|
command_by_name's binary search depends on it. Also, be sure to
|
|
|
|
|
add any entries that allocate memory (e.g. cmd_string and
|
|
|
|
|
cmd_vector) to the cleanup() function below. */
|
2003-11-04 18:19:39 -05:00
|
|
|
|
|
2007-09-28 17:47:46 -04:00
|
|
|
|
static const struct {
|
2003-12-14 08:35:27 -05:00
|
|
|
|
const char *name;
|
2005-04-26 13:30:45 -04:00
|
|
|
|
void *place;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
bool (*action) (const char *, const char *, void *);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
} commands[] = {
|
2006-08-08 10:31:12 -04:00
|
|
|
|
/* KEEP THIS LIST ALPHABETICALLY SORTED */
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "accept", &opt.accepts, cmd_vector },
|
|
|
|
|
{ "addhostdir", &opt.add_hostdir, cmd_boolean },
|
2009-07-28 20:37:58 -04:00
|
|
|
|
{ "adjustextension", &opt.adjust_extension, cmd_boolean },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "alwaysrest", &opt.always_rest, cmd_boolean }, /* deprecated */
|
2008-04-30 18:28:23 -04:00
|
|
|
|
{ "askpassword", &opt.ask_passwd, cmd_boolean },
|
2008-02-10 20:31:27 -05:00
|
|
|
|
{ "authnochallenge", &opt.auth_without_challenge,
|
|
|
|
|
cmd_boolean },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "background", &opt.background, cmd_boolean },
|
|
|
|
|
{ "backupconverted", &opt.backup_converted, cmd_boolean },
|
|
|
|
|
{ "backups", &opt.backups, cmd_number },
|
|
|
|
|
{ "base", &opt.base_href, cmd_string },
|
|
|
|
|
{ "bindaddress", &opt.bind_address, cmd_string },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "cacertificate", &opt.ca_cert, cmd_file },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#endif
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "cache", &opt.allow_cache, cmd_boolean },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "cadirectory", &opt.ca_directory, cmd_directory },
|
|
|
|
|
{ "certificate", &opt.cert_file, cmd_file },
|
|
|
|
|
{ "certificatetype", &opt.cert_type, cmd_cert_type },
|
|
|
|
|
{ "checkcertificate", &opt.check_cert, cmd_boolean },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#endif
|
2010-10-28 18:20:31 -04:00
|
|
|
|
{ "chooseconfig", &opt.choose_config, cmd_file },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "connecttimeout", &opt.connect_timeout, cmd_time },
|
2006-07-21 07:20:40 -04:00
|
|
|
|
{ "contentdisposition", &opt.content_disposition, cmd_boolean },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "continue", &opt.always_rest, cmd_boolean },
|
|
|
|
|
{ "convertlinks", &opt.convert_links, cmd_boolean },
|
|
|
|
|
{ "cookies", &opt.cookies, cmd_boolean },
|
|
|
|
|
{ "cutdirs", &opt.cut_dirs, cmd_number },
|
2003-10-07 20:05:51 -04:00
|
|
|
|
#ifdef ENABLE_DEBUG
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "debug", &opt.debug, cmd_boolean },
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#endif
|
2008-08-04 01:12:34 -04:00
|
|
|
|
{ "defaultpage", &opt.default_page, cmd_string},
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "deleteafter", &opt.delete_after, cmd_boolean },
|
|
|
|
|
{ "dirprefix", &opt.dir_prefix, cmd_directory },
|
|
|
|
|
{ "dirstruct", NULL, cmd_spec_dirstruct },
|
|
|
|
|
{ "dnscache", &opt.dns_cache, cmd_boolean },
|
|
|
|
|
{ "dnstimeout", &opt.dns_timeout, cmd_time },
|
|
|
|
|
{ "domains", &opt.domains, cmd_vector },
|
|
|
|
|
{ "dotbytes", &opt.dot_bytes, cmd_bytes },
|
|
|
|
|
{ "dotsinline", &opt.dots_in_line, cmd_number },
|
|
|
|
|
{ "dotspacing", &opt.dot_spacing, cmd_number },
|
2009-07-26 21:55:49 -04:00
|
|
|
|
{ "dotstyle", &opt.dot_style, cmd_string }, /* deprecated */
|
2002-04-19 05:24:32 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "egdfile", &opt.egd_file, cmd_file },
|
2002-04-19 05:24:32 -04:00
|
|
|
|
#endif
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "excludedirectories", &opt.excludes, cmd_directory_vector },
|
|
|
|
|
{ "excludedomains", &opt.exclude_domains, cmd_vector },
|
|
|
|
|
{ "followftp", &opt.follow_ftp, cmd_boolean },
|
|
|
|
|
{ "followtags", &opt.follow_tags, cmd_vector },
|
|
|
|
|
{ "forcehtml", &opt.force_html, cmd_boolean },
|
|
|
|
|
{ "ftppasswd", &opt.ftp_passwd, cmd_string }, /* deprecated */
|
|
|
|
|
{ "ftppassword", &opt.ftp_passwd, cmd_string },
|
|
|
|
|
{ "ftpproxy", &opt.ftp_proxy, cmd_string },
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#ifdef __VMS
|
|
|
|
|
{ "ftpstmlf", &opt.ftp_stmlf, cmd_boolean },
|
|
|
|
|
#endif /* def __VMS */
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "ftpuser", &opt.ftp_user, cmd_string },
|
|
|
|
|
{ "glob", &opt.ftp_glob, cmd_boolean },
|
|
|
|
|
{ "header", NULL, cmd_spec_header },
|
2009-09-08 08:54:20 -04:00
|
|
|
|
{ "htmlextension", &opt.adjust_extension, cmd_boolean }, /* deprecated */
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "htmlify", NULL, cmd_spec_htmlify },
|
|
|
|
|
{ "httpkeepalive", &opt.http_keep_alive, cmd_boolean },
|
|
|
|
|
{ "httppasswd", &opt.http_passwd, cmd_string }, /* deprecated */
|
|
|
|
|
{ "httppassword", &opt.http_passwd, cmd_string },
|
|
|
|
|
{ "httpproxy", &opt.http_proxy, cmd_string },
|
|
|
|
|
{ "httpsproxy", &opt.https_proxy, cmd_string },
|
|
|
|
|
{ "httpuser", &opt.http_user, cmd_string },
|
|
|
|
|
{ "ignorecase", &opt.ignore_case, cmd_boolean },
|
|
|
|
|
{ "ignorelength", &opt.ignore_length, cmd_boolean },
|
|
|
|
|
{ "ignoretags", &opt.ignore_tags, cmd_vector },
|
|
|
|
|
{ "includedirectories", &opt.includes, cmd_directory_vector },
|
2003-11-11 16:48:35 -05:00
|
|
|
|
#ifdef ENABLE_IPV6
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "inet4only", &opt.ipv4_only, cmd_boolean },
|
|
|
|
|
{ "inet6only", &opt.ipv6_only, cmd_boolean },
|
2003-11-11 16:48:35 -05:00
|
|
|
|
#endif
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "input", &opt.input_filename, cmd_file },
|
2008-05-24 21:34:28 -04:00
|
|
|
|
{ "iri", &opt.enable_iri, cmd_boolean },
|
2003-11-04 19:11:33 -05:00
|
|
|
|
{ "keepsessioncookies", &opt.keep_session_cookies, cmd_boolean },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "limitrate", &opt.limit_rate, cmd_bytes },
|
|
|
|
|
{ "loadcookies", &opt.cookies_input, cmd_file },
|
2009-07-27 00:50:19 -04:00
|
|
|
|
{ "localencoding", &opt.locale, cmd_string },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "logfile", &opt.lfilename, cmd_file },
|
|
|
|
|
{ "login", &opt.ftp_user, cmd_string },/* deprecated*/
|
|
|
|
|
{ "maxredirect", &opt.max_redirect, cmd_number },
|
|
|
|
|
{ "mirror", NULL, cmd_spec_mirror },
|
|
|
|
|
{ "netrc", &opt.netrc, cmd_boolean },
|
|
|
|
|
{ "noclobber", &opt.noclobber, cmd_boolean },
|
|
|
|
|
{ "noparent", &opt.no_parent, cmd_boolean },
|
|
|
|
|
{ "noproxy", &opt.no_proxy, cmd_vector },
|
|
|
|
|
{ "numtries", &opt.ntry, cmd_number_inf },/* deprecated*/
|
|
|
|
|
{ "outputdocument", &opt.output_document, cmd_file },
|
|
|
|
|
{ "pagerequisites", &opt.page_requisites, cmd_boolean },
|
|
|
|
|
{ "passiveftp", &opt.ftp_pasv, cmd_boolean },
|
|
|
|
|
{ "passwd", &opt.ftp_passwd, cmd_string },/* deprecated*/
|
|
|
|
|
{ "password", &opt.passwd, cmd_string },
|
|
|
|
|
{ "postdata", &opt.post_data, cmd_string },
|
|
|
|
|
{ "postfile", &opt.post_file_name, cmd_file },
|
|
|
|
|
{ "preferfamily", NULL, cmd_spec_prefer_family },
|
2009-07-27 00:58:43 -04:00
|
|
|
|
{ "preservepermissions", &opt.preserve_perm, cmd_boolean },/* deprecated */
|
2005-04-27 14:27:57 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "privatekey", &opt.private_key, cmd_file },
|
|
|
|
|
{ "privatekeytype", &opt.private_key_type, cmd_cert_type },
|
2005-04-27 14:27:57 -04:00
|
|
|
|
#endif
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "progress", &opt.progress_type, cmd_spec_progress },
|
2003-12-05 22:01:31 -05:00
|
|
|
|
{ "protocoldirectories", &opt.protocol_directories, cmd_boolean },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "proxypasswd", &opt.proxy_passwd, cmd_string }, /* deprecated */
|
|
|
|
|
{ "proxypassword", &opt.proxy_passwd, cmd_string },
|
|
|
|
|
{ "proxyuser", &opt.proxy_user, cmd_string },
|
|
|
|
|
{ "quiet", &opt.quiet, cmd_boolean },
|
|
|
|
|
{ "quota", &opt.quota, cmd_bytes_sum },
|
2005-04-28 05:32:13 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "randomfile", &opt.random_file, cmd_file },
|
2005-04-28 05:32:13 -04:00
|
|
|
|
#endif
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "randomwait", &opt.random_wait, cmd_boolean },
|
|
|
|
|
{ "readtimeout", &opt.read_timeout, cmd_time },
|
|
|
|
|
{ "reclevel", &opt.reclevel, cmd_number_inf },
|
|
|
|
|
{ "recursive", NULL, cmd_spec_recursive },
|
|
|
|
|
{ "referer", &opt.referer, cmd_string },
|
|
|
|
|
{ "reject", &opt.rejects, cmd_vector },
|
|
|
|
|
{ "relativeonly", &opt.relative_only, cmd_boolean },
|
2008-05-24 21:34:28 -04:00
|
|
|
|
{ "remoteencoding", &opt.encoding_remote, cmd_string },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "removelisting", &opt.remove_listing, cmd_boolean },
|
|
|
|
|
{ "restrictfilenames", NULL, cmd_spec_restrict_file_names },
|
|
|
|
|
{ "retrsymlinks", &opt.retr_symlinks, cmd_boolean },
|
|
|
|
|
{ "retryconnrefused", &opt.retry_connrefused, cmd_boolean },
|
|
|
|
|
{ "robots", &opt.use_robots, cmd_boolean },
|
|
|
|
|
{ "savecookies", &opt.cookies_output, cmd_file },
|
|
|
|
|
{ "saveheaders", &opt.save_headers, cmd_boolean },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "secureprotocol", &opt.secure_protocol, cmd_spec_secure_protocol },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#endif
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "serverresponse", &opt.server_response, cmd_boolean },
|
|
|
|
|
{ "spanhosts", &opt.spanhost, cmd_boolean },
|
|
|
|
|
{ "spider", &opt.spider, cmd_boolean },
|
|
|
|
|
{ "strictcomments", &opt.strict_comments, cmd_boolean },
|
|
|
|
|
{ "timeout", NULL, cmd_spec_timeout },
|
|
|
|
|
{ "timestamping", &opt.timestamping, cmd_boolean },
|
|
|
|
|
{ "tries", &opt.ntry, cmd_number_inf },
|
2010-07-28 15:22:22 -04:00
|
|
|
|
{ "trustservernames", &opt.trustservernames, cmd_boolean },
|
2010-09-29 07:34:09 -04:00
|
|
|
|
{ "unlink", &opt.unlink, cmd_boolean },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "useproxy", &opt.use_proxy, cmd_boolean },
|
|
|
|
|
{ "user", &opt.user, cmd_string },
|
|
|
|
|
{ "useragent", NULL, cmd_spec_useragent },
|
2010-01-09 23:21:37 -05:00
|
|
|
|
{ "useservertimestamps", &opt.useservertimestamps, cmd_boolean },
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{ "verbose", NULL, cmd_spec_verbose },
|
|
|
|
|
{ "wait", &opt.wait, cmd_time },
|
2007-09-28 17:47:46 -04:00
|
|
|
|
{ "waitretry", &opt.waitretry, cmd_time },
|
2009-09-05 14:27:52 -04:00
|
|
|
|
#ifdef USE_WATT32
|
2007-09-28 17:47:46 -04:00
|
|
|
|
{ "wdebug", &opt.wdebug, cmd_boolean },
|
|
|
|
|
#endif
|
1999-12-02 02:42:23 -05:00
|
|
|
|
};
|
|
|
|
|
|
2003-11-04 18:19:39 -05:00
|
|
|
|
/* Look up CMDNAME in the commands[] and return its position in the
|
|
|
|
|
array. If CMDNAME is not found, return -1. */
|
2002-04-14 14:39:43 -04:00
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
static int
|
2003-11-04 18:19:39 -05:00
|
|
|
|
command_by_name (const char *cmdname)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2003-11-04 18:19:39 -05:00
|
|
|
|
/* Use binary search for speed. Wget has ~100 commands, which
|
|
|
|
|
guarantees a worst case performance of 7 string comparisons. */
|
2003-09-19 10:08:37 -04:00
|
|
|
|
int lo = 0, hi = countof (commands) - 1;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2002-04-14 14:39:43 -04:00
|
|
|
|
while (lo <= hi)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2002-04-14 14:39:43 -04:00
|
|
|
|
int mid = (lo + hi) >> 1;
|
2003-11-04 18:19:39 -05:00
|
|
|
|
int cmp = strcasecmp (cmdname, commands[mid].name);
|
2002-04-14 14:39:43 -04:00
|
|
|
|
if (cmp < 0)
|
2007-08-02 23:38:21 -04:00
|
|
|
|
hi = mid - 1;
|
2002-04-14 14:39:43 -04:00
|
|
|
|
else if (cmp > 0)
|
2007-08-02 23:38:21 -04:00
|
|
|
|
lo = mid + 1;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
else
|
2007-08-02 23:38:21 -04:00
|
|
|
|
return mid;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Reset the variables to default values. */
|
2010-10-28 18:20:31 -04:00
|
|
|
|
void
|
1999-12-02 02:42:23 -05:00
|
|
|
|
defaults (void)
|
|
|
|
|
{
|
|
|
|
|
char *tmp;
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
/* Most of the default values are 0 (and 0.0, NULL, and false).
|
|
|
|
|
Just reset everything, and fill in the non-zero values. Note
|
|
|
|
|
that initializing pointers to NULL this way is technically
|
|
|
|
|
illegal, but porting Wget to a machine where NULL is not all-zero
|
|
|
|
|
bit pattern will be the least of the implementors' worries. */
|
2003-10-31 09:55:50 -05:00
|
|
|
|
xzero (opt);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.cookies = true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
opt.verbose = -1;
|
|
|
|
|
opt.ntry = 20;
|
|
|
|
|
opt.reclevel = 5;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.add_hostdir = true;
|
|
|
|
|
opt.netrc = true;
|
|
|
|
|
opt.ftp_glob = true;
|
|
|
|
|
opt.htmlify = true;
|
|
|
|
|
opt.http_keep_alive = true;
|
|
|
|
|
opt.use_proxy = true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
tmp = getenv ("no_proxy");
|
|
|
|
|
if (tmp)
|
|
|
|
|
opt.no_proxy = sepstring (tmp);
|
2008-05-17 16:19:37 -04:00
|
|
|
|
opt.prefer_family = prefer_none;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.allow_cache = true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2003-09-21 00:41:55 -04:00
|
|
|
|
opt.read_timeout = 900;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.use_robots = true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.remove_listing = true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
opt.dot_bytes = 1024;
|
|
|
|
|
opt.dot_spacing = 10;
|
|
|
|
|
opt.dots_in_line = 50;
|
2003-09-10 15:41:54 -04:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.dns_cache = true;
|
|
|
|
|
opt.ftp_pasv = true;
|
2003-09-14 18:04:13 -04:00
|
|
|
|
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.check_cert = true;
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#endif
|
|
|
|
|
|
2003-09-14 18:04:13 -04:00
|
|
|
|
/* The default for file name restriction defaults to the OS type. */
|
2007-09-28 17:47:46 -04:00
|
|
|
|
#if defined(WINDOWS) || defined(MSDOS) || defined(__CYGWIN__)
|
2003-09-16 21:32:05 -04:00
|
|
|
|
opt.restrict_files_os = restrict_windows;
|
2007-09-28 17:47:46 -04:00
|
|
|
|
#else
|
|
|
|
|
opt.restrict_files_os = restrict_unix;
|
2003-09-14 18:04:13 -04:00
|
|
|
|
#endif
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.restrict_files_ctrl = true;
|
2009-07-28 02:41:26 -04:00
|
|
|
|
opt.restrict_files_nonascii = false;
|
2006-06-13 09:58:33 -04:00
|
|
|
|
opt.restrict_files_case = restrict_no_case_restriction;
|
2006-04-28 05:15:14 -04:00
|
|
|
|
|
2007-07-28 22:37:14 -04:00
|
|
|
|
opt.max_redirect = 20;
|
2008-11-15 07:25:20 -05:00
|
|
|
|
|
|
|
|
|
opt.waitretry = 10;
|
2008-11-27 00:55:12 -05:00
|
|
|
|
|
2008-06-19 17:53:03 -04:00
|
|
|
|
#ifdef ENABLE_IRI
|
|
|
|
|
opt.enable_iri = true;
|
|
|
|
|
#else
|
|
|
|
|
opt.enable_iri = false;
|
|
|
|
|
#endif
|
|
|
|
|
opt.locale = NULL;
|
|
|
|
|
opt.encoding_remote = NULL;
|
2010-01-09 21:57:18 -05:00
|
|
|
|
|
2010-01-09 23:21:37 -05:00
|
|
|
|
opt.useservertimestamps = true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the user's home directory (strdup-ed), or NULL if none is
|
|
|
|
|
found. */
|
|
|
|
|
char *
|
|
|
|
|
home_dir (void)
|
|
|
|
|
{
|
2008-09-09 13:20:21 -04:00
|
|
|
|
static char buf[PATH_MAX];
|
|
|
|
|
static char *home;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
if (!home)
|
|
|
|
|
{
|
2008-09-09 13:20:21 -04:00
|
|
|
|
home = getenv ("HOME");
|
|
|
|
|
if (!home)
|
|
|
|
|
{
|
2007-09-28 17:47:46 -04:00
|
|
|
|
#if defined(MSDOS)
|
2008-09-09 13:20:21 -04:00
|
|
|
|
/* Under MSDOS, if $HOME isn't defined, use the directory where
|
|
|
|
|
`wget.exe' resides. */
|
|
|
|
|
const char *_w32_get_argv0 (void); /* in libwatt.a/pcconfig.c */
|
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
|
|
strcpy (buf, _w32_get_argv0 ());
|
|
|
|
|
p = strrchr (buf, '/'); /* djgpp */
|
|
|
|
|
if (!p)
|
|
|
|
|
p = strrchr (buf, '\\'); /* others */
|
|
|
|
|
assert (p);
|
|
|
|
|
*p = '\0';
|
|
|
|
|
home = buf;
|
2007-09-28 17:47:46 -04:00
|
|
|
|
#elif !defined(WINDOWS)
|
2008-09-09 13:20:21 -04:00
|
|
|
|
/* If HOME is not defined, try getting it from the password
|
|
|
|
|
file. */
|
|
|
|
|
struct passwd *pwd = getpwuid (getuid ());
|
|
|
|
|
if (!pwd || !pwd->pw_dir)
|
|
|
|
|
return NULL;
|
|
|
|
|
strcpy (buf, pwd->pw_dir);
|
|
|
|
|
home = buf;
|
2007-09-28 17:47:46 -04:00
|
|
|
|
#else /* !WINDOWS */
|
2008-09-09 13:20:21 -04:00
|
|
|
|
/* Under Windows, if $HOME isn't defined, use the directory where
|
|
|
|
|
`wget.exe' resides. */
|
|
|
|
|
home = ws_mypath ();
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#endif /* WINDOWS */
|
2008-09-09 13:20:21 -04:00
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return home ? xstrdup (home) : NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-21 23:39:44 -04:00
|
|
|
|
/* Check the 'WGETRC' environment variable and return the file name
|
|
|
|
|
if 'WGETRC' is set and is a valid file.
|
1999-12-02 02:42:23 -05:00
|
|
|
|
If the `WGETRC' variable exists but the file does not exist, the
|
|
|
|
|
function will exit(). */
|
2008-05-06 02:14:25 -04:00
|
|
|
|
char *
|
2009-09-21 23:39:44 -04:00
|
|
|
|
wgetrc_env_file_name (void)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2008-05-06 02:14:25 -04:00
|
|
|
|
char *env = getenv ("WGETRC");
|
1999-12-02 02:42:23 -05:00
|
|
|
|
if (env && *env)
|
|
|
|
|
{
|
|
|
|
|
if (!file_exists_p (env))
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: WGETRC points to %s, which doesn't exist.\n"),
|
|
|
|
|
exec_name, env);
|
|
|
|
|
exit (1);
|
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
return xstrdup (env);
|
|
|
|
|
}
|
2008-05-06 02:14:25 -04:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2008-09-09 13:20:21 -04:00
|
|
|
|
|
2008-05-06 02:14:25 -04:00
|
|
|
|
/* Check for the existance of '$HOME/.wgetrc' and return it's path
|
|
|
|
|
if it exists and is set. */
|
|
|
|
|
char *
|
2009-09-21 23:39:44 -04:00
|
|
|
|
wgetrc_user_file_name (void)
|
2008-05-06 02:14:25 -04:00
|
|
|
|
{
|
2010-10-15 21:04:25 -04:00
|
|
|
|
char *home;
|
2008-05-06 02:14:25 -04:00
|
|
|
|
char *file = NULL;
|
2008-04-22 17:48:36 -04:00
|
|
|
|
/* If that failed, try $HOME/.wgetrc (or equivalent). */
|
|
|
|
|
|
|
|
|
|
#ifdef __VMS
|
|
|
|
|
file = "SYS$LOGIN:.wgetrc";
|
|
|
|
|
#else /* def __VMS */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
home = home_dir ();
|
|
|
|
|
if (home)
|
2004-02-17 10:37:31 -05:00
|
|
|
|
file = aprintf ("%s/.wgetrc", home);
|
2003-11-02 14:56:37 -05:00
|
|
|
|
xfree_null (home);
|
2008-04-22 17:48:36 -04:00
|
|
|
|
#endif /* def __VMS [else] */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2008-05-06 02:14:25 -04:00
|
|
|
|
if (!file)
|
|
|
|
|
return NULL;
|
|
|
|
|
if (!file_exists_p (file))
|
|
|
|
|
{
|
|
|
|
|
xfree (file);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return file;
|
|
|
|
|
}
|
2008-09-09 13:20:21 -04:00
|
|
|
|
|
2008-05-06 02:14:25 -04:00
|
|
|
|
/* Return the path to the user's .wgetrc. This is either the value of
|
|
|
|
|
`WGETRC' environment variable, or `$HOME/.wgetrc'.
|
|
|
|
|
|
2009-09-21 23:39:44 -04:00
|
|
|
|
Additionally, for windows, look in the directory where wget.exe
|
2008-05-06 02:14:25 -04:00
|
|
|
|
resides. */
|
|
|
|
|
char *
|
|
|
|
|
wgetrc_file_name (void)
|
|
|
|
|
{
|
|
|
|
|
char *file = wgetrc_env_file_name ();
|
|
|
|
|
if (file && *file)
|
|
|
|
|
return file;
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
2008-05-06 02:14:25 -04:00
|
|
|
|
file = wgetrc_user_file_name ();
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2004-02-17 10:37:31 -05:00
|
|
|
|
#ifdef WINDOWS
|
|
|
|
|
/* Under Windows, if we still haven't found .wgetrc, look for the file
|
|
|
|
|
`wget.ini' in the directory where `wget.exe' resides; we do this for
|
|
|
|
|
backward compatibility with previous versions of Wget.
|
|
|
|
|
SYSTEM_WGETRC should not be defined under WINDOWS. */
|
2009-07-04 18:32:57 -04:00
|
|
|
|
if (!file)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2009-07-04 18:32:57 -04:00
|
|
|
|
char *home = home_dir ();
|
2004-02-17 10:37:31 -05:00
|
|
|
|
xfree_null (file);
|
|
|
|
|
file = NULL;
|
|
|
|
|
home = ws_mypath ();
|
|
|
|
|
if (home)
|
2009-07-04 18:32:57 -04:00
|
|
|
|
{
|
|
|
|
|
file = aprintf ("%s/wget.ini", home);
|
|
|
|
|
if (!file_exists_p (file))
|
|
|
|
|
{
|
|
|
|
|
xfree (file);
|
|
|
|
|
file = NULL;
|
|
|
|
|
}
|
|
|
|
|
xfree (home);
|
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
#endif /* WINDOWS */
|
|
|
|
|
|
|
|
|
|
return file;
|
|
|
|
|
}
|
|
|
|
|
|
2005-05-05 14:20:17 -04:00
|
|
|
|
/* Return values of parse_line. */
|
|
|
|
|
enum parse_line {
|
|
|
|
|
line_ok,
|
|
|
|
|
line_empty,
|
|
|
|
|
line_syntax_error,
|
|
|
|
|
line_unknown_command
|
|
|
|
|
};
|
|
|
|
|
|
2005-06-19 18:34:58 -04:00
|
|
|
|
static enum parse_line parse_line (const char *, char **, char **, int *);
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool setval_internal (int, const char *, const char *);
|
2009-06-13 20:04:31 -04:00
|
|
|
|
static bool setval_internal_tilde (int, const char *, const char *);
|
2003-09-20 20:41:49 -04:00
|
|
|
|
|
2005-05-05 14:20:17 -04:00
|
|
|
|
/* Initialize variables from a wgetrc file. Returns zero (failure) if
|
|
|
|
|
there were errors in the file. */
|
2003-09-20 20:41:49 -04:00
|
|
|
|
|
2010-10-28 18:20:31 -04:00
|
|
|
|
bool
|
1999-12-02 02:42:23 -05:00
|
|
|
|
run_wgetrc (const char *file)
|
|
|
|
|
{
|
|
|
|
|
FILE *fp;
|
|
|
|
|
char *line;
|
|
|
|
|
int ln;
|
2005-05-05 14:20:17 -04:00
|
|
|
|
int errcnt = 0;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2008-04-22 17:48:36 -04:00
|
|
|
|
fp = fopen (file, "r");
|
1999-12-02 02:42:23 -05:00
|
|
|
|
if (!fp)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: Cannot read %s (%s).\n"), exec_name,
|
2007-08-02 23:38:21 -04:00
|
|
|
|
file, strerror (errno));
|
|
|
|
|
return true; /* not a fatal error */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
ln = 1;
|
2005-03-05 21:11:10 -05:00
|
|
|
|
while ((line = read_whole_line (fp)) != NULL)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2005-05-05 14:20:17 -04:00
|
|
|
|
char *com = NULL, *val = NULL;
|
|
|
|
|
int comind;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
/* Parse the line. */
|
2005-05-05 14:20:17 -04:00
|
|
|
|
switch (parse_line (line, &com, &val, &comind))
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{
|
|
|
|
|
case line_ok:
|
|
|
|
|
/* If everything is OK, set the value. */
|
2009-06-13 20:04:31 -04:00
|
|
|
|
if (!setval_internal_tilde (comind, com, val))
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("%s: Error in %s at line %d.\n"),
|
|
|
|
|
exec_name, file, ln);
|
|
|
|
|
++errcnt;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case line_syntax_error:
|
|
|
|
|
fprintf (stderr, _("%s: Syntax error in %s at line %d.\n"),
|
|
|
|
|
exec_name, file, ln);
|
|
|
|
|
++errcnt;
|
|
|
|
|
break;
|
|
|
|
|
case line_unknown_command:
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: Unknown command %s in %s at line %d.\n"),
|
|
|
|
|
exec_name, quote (com), file, ln);
|
2007-08-02 23:38:21 -04:00
|
|
|
|
++errcnt;
|
|
|
|
|
break;
|
|
|
|
|
case line_empty:
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
2005-05-05 14:20:17 -04:00
|
|
|
|
xfree_null (com);
|
|
|
|
|
xfree_null (val);
|
|
|
|
|
xfree (line);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
++ln;
|
|
|
|
|
}
|
|
|
|
|
fclose (fp);
|
2005-05-05 14:20:17 -04:00
|
|
|
|
|
|
|
|
|
return errcnt == 0;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Initialize the defaults and run the system wgetrc and user's own
|
|
|
|
|
wgetrc. */
|
|
|
|
|
void
|
|
|
|
|
initialize (void)
|
|
|
|
|
{
|
2009-04-11 15:59:55 -04:00
|
|
|
|
char *file, *env_sysrc;
|
2010-10-28 18:20:31 -04:00
|
|
|
|
bool ok = true;
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
|
|
|
|
/* Run a non-standard system rc file when the according environment
|
2009-04-11 15:59:55 -04:00
|
|
|
|
variable has been set. For internal testing purposes only! */
|
|
|
|
|
env_sysrc = getenv ("SYSTEM_WGETRC");
|
|
|
|
|
if (env_sysrc && file_exists_p (env_sysrc))
|
|
|
|
|
ok &= run_wgetrc (env_sysrc);
|
|
|
|
|
/* Otherwise, if SYSTEM_WGETRC is defined, use it. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#ifdef SYSTEM_WGETRC
|
2009-04-11 15:59:55 -04:00
|
|
|
|
else if (file_exists_p (SYSTEM_WGETRC))
|
2005-05-05 14:20:17 -04:00
|
|
|
|
ok &= run_wgetrc (SYSTEM_WGETRC);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#endif
|
2010-11-29 09:24:48 -05:00
|
|
|
|
/* If there are any problems parsing the system wgetrc file, tell
|
|
|
|
|
the user and exit */
|
|
|
|
|
if (! ok)
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("\
|
|
|
|
|
Parsing system wgetrc file failed, please check '%s'. \
|
|
|
|
|
Or specify a different file using --config\n"), SYSTEM_WGETRC);
|
|
|
|
|
exit (2);
|
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Override it with your own, if one exists. */
|
|
|
|
|
file = wgetrc_file_name ();
|
|
|
|
|
if (!file)
|
|
|
|
|
return;
|
2003-09-20 20:41:49 -04:00
|
|
|
|
/* #### We should canonicalize `file' and SYSTEM_WGETRC with
|
|
|
|
|
something like realpath() before comparing them with `strcmp' */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
#ifdef SYSTEM_WGETRC
|
|
|
|
|
if (!strcmp (file, SYSTEM_WGETRC))
|
|
|
|
|
{
|
|
|
|
|
fprintf (stderr, _("\
|
2008-04-16 06:13:19 -04:00
|
|
|
|
%s: Warning: Both system and user wgetrc point to %s.\n"),
|
|
|
|
|
exec_name, quote (file));
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#endif
|
2005-05-05 14:20:17 -04:00
|
|
|
|
ok &= run_wgetrc (file);
|
|
|
|
|
|
|
|
|
|
/* If there were errors processing either `.wgetrc', abort. */
|
|
|
|
|
if (!ok)
|
|
|
|
|
exit (2);
|
|
|
|
|
|
2000-11-22 11:58:28 -05:00
|
|
|
|
xfree (file);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
return;
|
|
|
|
|
}
|
2008-05-06 02:14:25 -04:00
|
|
|
|
|
2003-09-20 20:41:49 -04:00
|
|
|
|
/* Remove dashes and underscores from S, modifying S in the
|
|
|
|
|
process. */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
dehyphen (char *s)
|
|
|
|
|
{
|
2007-08-02 23:38:21 -04:00
|
|
|
|
char *t = s; /* t - tortoise */
|
|
|
|
|
char *h = s; /* h - hare */
|
2003-09-20 20:41:49 -04:00
|
|
|
|
while (*h)
|
|
|
|
|
if (*h == '_' || *h == '-')
|
|
|
|
|
++h;
|
|
|
|
|
else
|
|
|
|
|
*t++ = *h++;
|
|
|
|
|
*t = '\0';
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Parse the line pointed by line, with the syntax:
|
2003-09-21 15:17:45 -04:00
|
|
|
|
<sp>* command <sp>* = <sp>* value <sp>*
|
1999-12-02 02:42:23 -05:00
|
|
|
|
Uses malloc to allocate space for command and value.
|
|
|
|
|
|
2005-05-05 14:20:17 -04:00
|
|
|
|
Returns one of line_ok, line_empty, line_syntax_error, or
|
|
|
|
|
line_unknown_command.
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
2005-05-05 14:20:17 -04:00
|
|
|
|
In case of line_ok, *COM and *VAL point to freshly allocated
|
2003-09-21 15:17:45 -04:00
|
|
|
|
strings, and *COMIND points to com's index. In case of error or
|
2005-05-05 14:20:17 -04:00
|
|
|
|
empty line, their values are unmodified. */
|
2003-09-20 20:41:49 -04:00
|
|
|
|
|
2005-05-05 14:20:17 -04:00
|
|
|
|
static enum parse_line
|
2003-09-20 20:41:49 -04:00
|
|
|
|
parse_line (const char *line, char **com, char **val, int *comind)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2003-09-20 20:41:49 -04:00
|
|
|
|
const char *p;
|
|
|
|
|
const char *end = line + strlen (line);
|
|
|
|
|
const char *cmdstart, *cmdend;
|
|
|
|
|
const char *valstart, *valend;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2003-09-20 20:41:49 -04:00
|
|
|
|
char *cmdcopy;
|
|
|
|
|
int ind;
|
|
|
|
|
|
|
|
|
|
/* Skip leading and trailing whitespace. */
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (*line && c_isspace (*line))
|
2003-09-20 20:41:49 -04:00
|
|
|
|
++line;
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (end > line && c_isspace (end[-1]))
|
2003-09-20 20:41:49 -04:00
|
|
|
|
--end;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2003-09-20 20:41:49 -04:00
|
|
|
|
/* Skip empty lines and comments. */
|
|
|
|
|
if (!*line || *line == '#')
|
2005-05-05 14:20:17 -04:00
|
|
|
|
return line_empty;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2003-09-20 20:41:49 -04:00
|
|
|
|
p = line;
|
|
|
|
|
|
|
|
|
|
cmdstart = p;
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (p < end && (c_isalnum (*p) || *p == '_' || *p == '-'))
|
2003-09-20 20:41:49 -04:00
|
|
|
|
++p;
|
|
|
|
|
cmdend = p;
|
|
|
|
|
|
|
|
|
|
/* Skip '=', as well as any space before or after it. */
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (p < end && c_isspace (*p))
|
2003-09-20 20:41:49 -04:00
|
|
|
|
++p;
|
|
|
|
|
if (p == end || *p != '=')
|
2005-05-05 14:20:17 -04:00
|
|
|
|
return line_syntax_error;
|
2003-09-20 20:41:49 -04:00
|
|
|
|
++p;
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (p < end && c_isspace (*p))
|
2003-09-20 20:41:49 -04:00
|
|
|
|
++p;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2003-09-20 20:41:49 -04:00
|
|
|
|
valstart = p;
|
|
|
|
|
valend = end;
|
|
|
|
|
|
2005-05-05 14:20:17 -04:00
|
|
|
|
/* The syntax is valid (even though the command might not be). Fill
|
|
|
|
|
in the command name and value. */
|
|
|
|
|
*com = strdupdelim (cmdstart, cmdend);
|
|
|
|
|
*val = strdupdelim (valstart, valend);
|
|
|
|
|
|
2003-09-20 20:41:49 -04:00
|
|
|
|
/* The line now known to be syntactically correct. Check whether
|
|
|
|
|
the command is valid. */
|
|
|
|
|
BOUNDED_TO_ALLOCA (cmdstart, cmdend, cmdcopy);
|
|
|
|
|
dehyphen (cmdcopy);
|
2003-11-04 18:19:39 -05:00
|
|
|
|
ind = command_by_name (cmdcopy);
|
2003-09-20 20:41:49 -04:00
|
|
|
|
if (ind == -1)
|
2005-05-05 14:20:17 -04:00
|
|
|
|
return line_unknown_command;
|
2003-09-20 20:41:49 -04:00
|
|
|
|
|
2005-05-05 14:20:17 -04:00
|
|
|
|
/* Report success to the caller. */
|
2003-09-20 20:41:49 -04:00
|
|
|
|
*comind = ind;
|
2005-05-05 14:20:17 -04:00
|
|
|
|
return line_ok;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2009-06-13 19:45:09 -04:00
|
|
|
|
#if defined(WINDOWS) || defined(MSDOS)
|
|
|
|
|
# define ISSEP(c) ((c) == '/' || (c) == '\\')
|
|
|
|
|
#else
|
|
|
|
|
# define ISSEP(c) ((c) == '/')
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-09-20 20:41:49 -04:00
|
|
|
|
/* Run commands[comind].action. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2003-09-20 20:41:49 -04:00
|
|
|
|
setval_internal (int comind, const char *com, const char *val)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2008-05-31 01:42:36 -04:00
|
|
|
|
assert (0 <= comind && ((size_t) comind) < countof (commands));
|
2005-05-21 09:36:43 -04:00
|
|
|
|
DEBUGP (("Setting %s (%s) to %s\n", com, commands[comind].name, val));
|
2005-06-19 18:34:58 -04:00
|
|
|
|
return commands[comind].action (com, val, commands[comind].place);
|
2003-09-20 20:41:49 -04:00
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2009-06-13 19:45:09 -04:00
|
|
|
|
static bool
|
2009-06-13 20:04:31 -04:00
|
|
|
|
setval_internal_tilde (int comind, const char *com, const char *val)
|
2009-06-13 19:45:09 -04:00
|
|
|
|
{
|
|
|
|
|
bool ret;
|
|
|
|
|
int homelen;
|
|
|
|
|
char *home;
|
|
|
|
|
char **pstring;
|
|
|
|
|
ret = setval_internal (comind, com, val);
|
|
|
|
|
|
|
|
|
|
/* We make tilde expansion for cmd_file and cmd_directory */
|
|
|
|
|
if (((commands[comind].action == cmd_file) ||
|
2009-06-13 20:04:31 -04:00
|
|
|
|
(commands[comind].action == cmd_directory))
|
|
|
|
|
&& ret && (*val == '~' && ISSEP (val[1])))
|
2009-06-13 19:45:09 -04:00
|
|
|
|
{
|
|
|
|
|
pstring = commands[comind].place;
|
2009-06-13 20:04:31 -04:00
|
|
|
|
home = home_dir ();
|
2009-06-13 19:45:09 -04:00
|
|
|
|
if (home)
|
|
|
|
|
{
|
2009-06-13 20:04:31 -04:00
|
|
|
|
homelen = strlen (home);
|
|
|
|
|
while (homelen && ISSEP (home[homelen - 1]))
|
2009-06-13 19:45:09 -04:00
|
|
|
|
home[--homelen] = '\0';
|
|
|
|
|
|
|
|
|
|
/* Skip the leading "~/". */
|
2009-06-13 20:04:31 -04:00
|
|
|
|
for (++val; ISSEP (*val); val++)
|
2009-06-13 19:45:09 -04:00
|
|
|
|
;
|
|
|
|
|
*pstring = concat_strings (home, "/", val, (char *)0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-20 20:41:49 -04:00
|
|
|
|
/* Run command COM with value VAL. If running the command produces an
|
|
|
|
|
error, report the error and exit.
|
|
|
|
|
|
2003-10-30 06:09:18 -05:00
|
|
|
|
This is intended to be called from main() to modify Wget's behavior
|
|
|
|
|
through command-line switches. Since COM is hard-coded in main(),
|
|
|
|
|
it is not canonicalized, and this aborts when COM is not found.
|
|
|
|
|
|
|
|
|
|
If COMIND's are exported to init.h, this function will be changed
|
|
|
|
|
to accept COMIND directly. */
|
2003-09-20 20:41:49 -04:00
|
|
|
|
|
|
|
|
|
void
|
2005-05-05 14:45:05 -04:00
|
|
|
|
setoptval (const char *com, const char *val, const char *optname)
|
2003-09-20 20:41:49 -04:00
|
|
|
|
{
|
2005-05-05 14:45:05 -04:00
|
|
|
|
/* Prepend "--" to OPTNAME. */
|
|
|
|
|
char *dd_optname = (char *) alloca (2 + strlen (optname) + 1);
|
|
|
|
|
dd_optname[0] = '-';
|
|
|
|
|
dd_optname[1] = '-';
|
|
|
|
|
strcpy (dd_optname + 2, optname);
|
|
|
|
|
|
2003-11-06 15:20:43 -05:00
|
|
|
|
assert (val != NULL);
|
2005-05-05 14:45:05 -04:00
|
|
|
|
if (!setval_internal (command_by_name (com), dd_optname, val))
|
2003-09-20 20:41:49 -04:00
|
|
|
|
exit (2);
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-21 15:17:45 -04:00
|
|
|
|
/* Parse OPT into command and value and run it. For example,
|
|
|
|
|
run_command("foo=bar") is equivalent to setoptval("foo", "bar").
|
|
|
|
|
This is used by the `--execute' flag in main.c. */
|
|
|
|
|
|
2003-09-20 20:41:49 -04:00
|
|
|
|
void
|
|
|
|
|
run_command (const char *opt)
|
|
|
|
|
{
|
|
|
|
|
char *com, *val;
|
|
|
|
|
int comind;
|
2005-05-08 13:28:19 -04:00
|
|
|
|
switch (parse_line (opt, &com, &val, &comind))
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2005-05-08 13:28:19 -04:00
|
|
|
|
case line_ok:
|
2003-09-20 20:41:49 -04:00
|
|
|
|
if (!setval_internal (comind, com, val))
|
2007-08-02 23:38:21 -04:00
|
|
|
|
exit (2);
|
2003-09-20 20:41:49 -04:00
|
|
|
|
xfree (com);
|
|
|
|
|
xfree (val);
|
2005-05-08 13:28:19 -04:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: Invalid --execute command %s\n"),
|
|
|
|
|
exec_name, quote (opt));
|
2003-09-20 20:41:49 -04:00
|
|
|
|
exit (2);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Generic helper functions, for use with `commands'. */
|
|
|
|
|
|
2005-04-27 13:15:10 -04:00
|
|
|
|
/* Forward declarations: */
|
|
|
|
|
struct decode_item {
|
|
|
|
|
const char *name;
|
|
|
|
|
int code;
|
|
|
|
|
};
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool decode_string (const char *, const struct decode_item *, int, int *);
|
|
|
|
|
static bool simple_atoi (const char *, const char *, int *);
|
|
|
|
|
static bool simple_atof (const char *, const char *, double *);
|
2005-04-27 13:15:10 -04:00
|
|
|
|
|
2007-10-14 17:46:24 -04:00
|
|
|
|
#define CMP1(p, c0) (c_tolower((p)[0]) == (c0) && (p)[1] == '\0')
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
2007-10-14 17:46:24 -04:00
|
|
|
|
#define CMP2(p, c0, c1) (c_tolower((p)[0]) == (c0) \
|
|
|
|
|
&& c_tolower((p)[1]) == (c1) \
|
2007-08-02 23:38:21 -04:00
|
|
|
|
&& (p)[2] == '\0')
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
2007-10-14 17:46:24 -04:00
|
|
|
|
#define CMP3(p, c0, c1, c2) (c_tolower((p)[0]) == (c0) \
|
|
|
|
|
&& c_tolower((p)[1]) == (c1) \
|
|
|
|
|
&& c_tolower((p)[2]) == (c2) \
|
2007-08-02 23:38:21 -04:00
|
|
|
|
&& (p)[3] == '\0')
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-04-26 13:30:45 -04:00
|
|
|
|
/* Store the boolean value from VAL to PLACE. COM is ignored,
|
1999-12-02 02:42:23 -05:00
|
|
|
|
except for error messages. */
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_boolean (const char *com, const char *val, void *place)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2005-06-22 15:38:10 -04:00
|
|
|
|
bool value;
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
|
|
|
|
if (CMP2 (val, 'o', 'n') || CMP3 (val, 'y', 'e', 's') || CMP1 (val, '1'))
|
2003-09-10 16:21:21 -04:00
|
|
|
|
/* "on", "yes" and "1" mean true. */
|
2005-06-22 15:38:10 -04:00
|
|
|
|
value = true;
|
2003-09-21 15:17:45 -04:00
|
|
|
|
else if (CMP3 (val, 'o', 'f', 'f') || CMP2 (val, 'n', 'o') || CMP1 (val, '0'))
|
2003-09-10 16:21:21 -04:00
|
|
|
|
/* "off", "no" and "0" mean false. */
|
2005-06-22 15:38:10 -04:00
|
|
|
|
value = false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
else
|
|
|
|
|
{
|
2003-09-21 15:17:45 -04:00
|
|
|
|
fprintf (stderr,
|
2008-04-16 06:13:19 -04:00
|
|
|
|
_("%s: %s: Invalid boolean %s; use `on' or `off'.\n"),
|
|
|
|
|
exec_name, com, quote (val));
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
*(bool *) place = value;
|
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-04-26 13:30:45 -04:00
|
|
|
|
/* Set the non-negative integer value from VAL to PLACE. With
|
1999-12-02 02:42:23 -05:00
|
|
|
|
incorrect specification, the number remains unchanged. */
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_number (const char *com, const char *val, void *place)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2005-04-26 13:30:45 -04:00
|
|
|
|
if (!simple_atoi (val, val + strlen (val), place)
|
|
|
|
|
|| *(int *) place < 0)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid number %s.\n"),
|
|
|
|
|
exec_name, com, quote (val));
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Similar to cmd_number(), only accepts `inf' as a synonym for 0. */
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_number_inf (const char *com, const char *val, void *place)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
|
|
|
|
if (!strcasecmp (val, "inf"))
|
|
|
|
|
{
|
2005-06-22 15:38:10 -04:00
|
|
|
|
*(int *) place = 0;
|
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-04-26 13:30:45 -04:00
|
|
|
|
return cmd_number (com, val, place);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Copy (strdup) the string at COM to a new location and place a
|
2005-04-26 13:30:45 -04:00
|
|
|
|
pointer to *PLACE. */
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_string (const char *com, const char *val, void *place)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2005-04-26 13:30:45 -04:00
|
|
|
|
char **pstring = (char **)place;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2003-11-02 14:56:37 -05:00
|
|
|
|
xfree_null (*pstring);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
*pstring = xstrdup (val);
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2003-09-19 11:28:36 -04:00
|
|
|
|
|
2001-04-08 19:59:14 -04:00
|
|
|
|
/* Like the above, but handles tilde-expansion when reading a user's
|
|
|
|
|
`.wgetrc'. In that case, and if VAL begins with `~', the tilde
|
|
|
|
|
gets expanded to the user's home directory. */
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_file (const char *com, const char *val, void *place)
|
2001-04-08 19:59:14 -04:00
|
|
|
|
{
|
2005-04-26 13:30:45 -04:00
|
|
|
|
char **pstring = (char **)place;
|
2001-04-08 19:59:14 -04:00
|
|
|
|
|
2003-11-02 14:56:37 -05:00
|
|
|
|
xfree_null (*pstring);
|
2001-12-06 00:35:17 -05:00
|
|
|
|
|
2005-04-26 13:30:45 -04:00
|
|
|
|
/* #### If VAL is empty, perhaps should set *PLACE to NULL. */
|
2001-12-06 00:35:17 -05:00
|
|
|
|
|
2009-06-13 19:45:09 -04:00
|
|
|
|
*pstring = xstrdup (val);
|
2003-09-19 11:28:36 -04:00
|
|
|
|
|
2007-09-28 17:47:46 -04:00
|
|
|
|
#if defined(WINDOWS) || defined(MSDOS)
|
2002-01-16 20:03:33 -05:00
|
|
|
|
/* Convert "\" to "/". */
|
|
|
|
|
{
|
|
|
|
|
char *s;
|
|
|
|
|
for (s = *pstring; *s; s++)
|
|
|
|
|
if (*s == '\\')
|
2007-08-02 23:38:21 -04:00
|
|
|
|
*s = '/';
|
2002-01-16 20:03:33 -05:00
|
|
|
|
}
|
|
|
|
|
#endif
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
2002-01-16 20:03:33 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Like cmd_file, but strips trailing '/' characters. */
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_directory (const char *com, const char *val, void *place)
|
2002-01-16 20:03:33 -05:00
|
|
|
|
{
|
|
|
|
|
char *s, *t;
|
|
|
|
|
|
|
|
|
|
/* Call cmd_file() for tilde expansion and separator
|
|
|
|
|
canonicalization (backslash -> slash under Windows). These
|
|
|
|
|
things should perhaps be in a separate function. */
|
2005-04-26 13:30:45 -04:00
|
|
|
|
if (!cmd_file (com, val, place))
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2002-01-16 20:03:33 -05:00
|
|
|
|
|
2005-04-26 13:30:45 -04:00
|
|
|
|
s = *(char **)place;
|
2002-01-16 20:03:33 -05:00
|
|
|
|
t = s + strlen (s);
|
|
|
|
|
while (t > s && *--t == '/')
|
|
|
|
|
*t = '\0';
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
2001-04-08 19:59:14 -04:00
|
|
|
|
}
|
|
|
|
|
|
2003-09-21 15:17:45 -04:00
|
|
|
|
/* Split VAL by space to a vector of values, and append those values
|
2005-04-26 13:30:45 -04:00
|
|
|
|
to vector pointed to by the PLACE argument. If VAL is empty, the
|
|
|
|
|
PLACE vector is cleared instead. */
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_vector (const char *com, const char *val, void *place)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2005-04-26 13:30:45 -04:00
|
|
|
|
char ***pvec = (char ***)place;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
if (*val)
|
|
|
|
|
*pvec = merge_vecs (*pvec, sepstring (val));
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
free_vec (*pvec);
|
|
|
|
|
*pvec = NULL;
|
|
|
|
|
}
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_directory_vector (const char *com, const char *val, void *place)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2005-04-26 13:30:45 -04:00
|
|
|
|
char ***pvec = (char ***)place;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
if (*val)
|
|
|
|
|
{
|
|
|
|
|
/* Strip the trailing slashes from directories. */
|
|
|
|
|
char **t, **seps;
|
|
|
|
|
|
|
|
|
|
seps = sepstring (val);
|
|
|
|
|
for (t = seps; t && *t; t++)
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{
|
|
|
|
|
int len = strlen (*t);
|
|
|
|
|
/* Skip degenerate case of root directory. */
|
|
|
|
|
if (len > 1)
|
|
|
|
|
{
|
|
|
|
|
if ((*t)[len - 1] == '/')
|
|
|
|
|
(*t)[len - 1] = '\0';
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
*pvec = merge_vecs (*pvec, seps);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
free_vec (*pvec);
|
|
|
|
|
*pvec = NULL;
|
|
|
|
|
}
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-06-25 10:39:51 -04:00
|
|
|
|
/* Engine for cmd_bytes and cmd_bytes_sum: converts a string such as
|
2005-02-23 17:21:04 -05:00
|
|
|
|
"100k" or "2.5G" to a floating point number. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2003-10-11 09:57:11 -04:00
|
|
|
|
parse_bytes_helper (const char *val, double *result)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2003-10-11 09:57:11 -04:00
|
|
|
|
double number, mult;
|
2003-09-21 00:05:12 -04:00
|
|
|
|
const char *end = val + strlen (val);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
/* Check for "inf". */
|
2003-09-21 00:05:12 -04:00
|
|
|
|
if (0 == strcmp (val, "inf"))
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2003-10-11 09:57:11 -04:00
|
|
|
|
*result = 0;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2003-09-21 00:05:12 -04:00
|
|
|
|
|
|
|
|
|
/* Strip trailing whitespace. */
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (val < end && c_isspace (end[-1]))
|
2003-09-21 00:05:12 -04:00
|
|
|
|
--end;
|
|
|
|
|
if (val == end)
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2003-09-21 00:05:12 -04:00
|
|
|
|
|
2007-10-14 17:46:24 -04:00
|
|
|
|
switch (c_tolower (end[-1]))
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
|
|
|
|
case 'k':
|
2003-10-11 09:57:11 -04:00
|
|
|
|
--end, mult = 1024.0;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
break;
|
|
|
|
|
case 'm':
|
2003-10-11 09:57:11 -04:00
|
|
|
|
--end, mult = 1048576.0;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
break;
|
|
|
|
|
case 'g':
|
2003-10-11 09:57:11 -04:00
|
|
|
|
--end, mult = 1073741824.0;
|
|
|
|
|
break;
|
|
|
|
|
case 't':
|
|
|
|
|
--end, mult = 1099511627776.0;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2003-10-11 09:57:11 -04:00
|
|
|
|
/* Not a recognized suffix: assume it's a digit. (If not,
|
2007-08-02 23:38:21 -04:00
|
|
|
|
simple_atof will raise an error.) */
|
2003-09-21 00:05:12 -04:00
|
|
|
|
mult = 1;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2003-09-21 00:05:12 -04:00
|
|
|
|
|
|
|
|
|
/* Skip leading and trailing whitespace. */
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (val < end && c_isspace (*val))
|
2003-09-21 00:05:12 -04:00
|
|
|
|
++val;
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (val < end && c_isspace (end[-1]))
|
2003-09-21 00:05:12 -04:00
|
|
|
|
--end;
|
|
|
|
|
if (val == end)
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2003-09-21 00:05:12 -04:00
|
|
|
|
|
2005-03-19 12:16:32 -05:00
|
|
|
|
if (!simple_atof (val, end, &number) || number < 0)
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2003-10-11 09:57:11 -04:00
|
|
|
|
|
|
|
|
|
*result = number * mult;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
2003-10-11 09:57:11 -04:00
|
|
|
|
}
|
|
|
|
|
|
2005-04-26 13:30:45 -04:00
|
|
|
|
/* Parse VAL as a number and set its value to PLACE (which should
|
2005-02-23 17:21:04 -05:00
|
|
|
|
point to a wgint).
|
2003-09-21 00:05:12 -04:00
|
|
|
|
|
2003-10-11 09:57:11 -04:00
|
|
|
|
By default, the value is assumed to be in bytes. If "K", "M", or
|
|
|
|
|
"G" are appended, the value is multiplied with 1<<10, 1<<20, or
|
|
|
|
|
1<<30, respectively. Floating point values are allowed and are
|
|
|
|
|
cast to integer before use. The idea is to be able to use things
|
|
|
|
|
like 1.5k instead of "1536".
|
|
|
|
|
|
|
|
|
|
The string "inf" is returned as 0.
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
In case of error, false is returned and memory pointed to by PLACE
|
2003-10-11 09:57:11 -04:00
|
|
|
|
remains unmodified. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_bytes (const char *com, const char *val, void *place)
|
2003-10-11 09:57:11 -04:00
|
|
|
|
{
|
|
|
|
|
double byte_value;
|
|
|
|
|
if (!parse_bytes_helper (val, &byte_value))
|
|
|
|
|
{
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid byte value %s\n"),
|
|
|
|
|
exec_name, com, quote (val));
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2003-10-11 09:57:11 -04:00
|
|
|
|
}
|
2005-04-26 13:30:45 -04:00
|
|
|
|
*(wgint *)place = (wgint)byte_value;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
2003-10-11 09:57:11 -04:00
|
|
|
|
}
|
|
|
|
|
|
2005-04-26 13:30:45 -04:00
|
|
|
|
/* Like cmd_bytes, but PLACE is interpreted as a pointer to
|
2005-06-25 10:39:51 -04:00
|
|
|
|
SIZE_SUM. It works by converting the string to double, therefore
|
2003-10-11 09:57:11 -04:00
|
|
|
|
working with values up to 2^53-1 without loss of precision. This
|
|
|
|
|
value (8192 TB) is large enough to serve for a while. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-06-25 10:39:51 -04:00
|
|
|
|
cmd_bytes_sum (const char *com, const char *val, void *place)
|
2003-10-11 09:57:11 -04:00
|
|
|
|
{
|
|
|
|
|
double byte_value;
|
|
|
|
|
if (!parse_bytes_helper (val, &byte_value))
|
|
|
|
|
{
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid byte value %s\n"),
|
|
|
|
|
exec_name, com, quote (val));
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2003-10-11 09:57:11 -04:00
|
|
|
|
}
|
2005-06-25 10:39:51 -04:00
|
|
|
|
*(SUM_SIZE_INT *) place = (SUM_SIZE_INT) byte_value;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2003-09-20 19:12:18 -04:00
|
|
|
|
/* Store the value of VAL to *OUT. The value is a time period, by
|
2003-09-20 20:41:49 -04:00
|
|
|
|
default expressed in seconds, but also accepting suffixes "m", "h",
|
|
|
|
|
"d", and "w" for minutes, hours, days, and weeks respectively. */
|
2003-09-20 19:12:18 -04:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_time (const char *com, const char *val, void *place)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2003-09-21 00:05:12 -04:00
|
|
|
|
double number, mult;
|
2003-09-20 19:12:18 -04:00
|
|
|
|
const char *end = val + strlen (val);
|
|
|
|
|
|
2003-09-21 00:05:12 -04:00
|
|
|
|
/* Strip trailing whitespace. */
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (val < end && c_isspace (end[-1]))
|
2003-09-20 19:12:18 -04:00
|
|
|
|
--end;
|
|
|
|
|
|
|
|
|
|
if (val == end)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2003-09-20 19:12:18 -04:00
|
|
|
|
err:
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid time period %s\n"),
|
|
|
|
|
exec_name, com, quote (val));
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2003-09-20 19:12:18 -04:00
|
|
|
|
|
2007-10-14 17:46:24 -04:00
|
|
|
|
switch (c_tolower (end[-1]))
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2003-09-20 19:12:18 -04:00
|
|
|
|
case 's':
|
2007-08-02 23:38:21 -04:00
|
|
|
|
--end, mult = 1; /* seconds */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
break;
|
|
|
|
|
case 'm':
|
2007-08-02 23:38:21 -04:00
|
|
|
|
--end, mult = 60; /* minutes */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
break;
|
|
|
|
|
case 'h':
|
2007-08-02 23:38:21 -04:00
|
|
|
|
--end, mult = 3600; /* hours */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
break;
|
|
|
|
|
case 'd':
|
2007-08-02 23:38:21 -04:00
|
|
|
|
--end, mult = 86400.0; /* days */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
break;
|
|
|
|
|
case 'w':
|
2007-08-02 23:38:21 -04:00
|
|
|
|
--end, mult = 604800.0; /* weeks */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2003-09-21 00:05:12 -04:00
|
|
|
|
/* Not a recognized suffix: assume it belongs to the number.
|
2007-08-02 23:38:21 -04:00
|
|
|
|
(If not, simple_atof will raise an error.) */
|
2003-09-20 19:12:18 -04:00
|
|
|
|
mult = 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Skip leading and trailing whitespace. */
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (val < end && c_isspace (*val))
|
2003-09-20 19:12:18 -04:00
|
|
|
|
++val;
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (val < end && c_isspace (end[-1]))
|
2003-09-20 19:12:18 -04:00
|
|
|
|
--end;
|
|
|
|
|
if (val == end)
|
|
|
|
|
goto err;
|
|
|
|
|
|
2003-09-21 00:05:12 -04:00
|
|
|
|
if (!simple_atof (val, end, &number))
|
2003-09-20 19:12:18 -04:00
|
|
|
|
goto err;
|
2003-09-21 00:05:12 -04:00
|
|
|
|
|
2005-04-26 13:30:45 -04:00
|
|
|
|
*(double *)place = number * mult;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-04-26 13:22:56 -04:00
|
|
|
|
|
|
|
|
|
#ifdef HAVE_SSL
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-27 13:15:10 -04:00
|
|
|
|
cmd_cert_type (const char *com, const char *val, void *place)
|
2005-04-26 13:22:56 -04:00
|
|
|
|
{
|
|
|
|
|
static const struct decode_item choices[] = {
|
2005-04-27 13:15:10 -04:00
|
|
|
|
{ "pem", keyfile_pem },
|
|
|
|
|
{ "der", keyfile_asn1 },
|
|
|
|
|
{ "asn1", keyfile_asn1 },
|
2005-04-26 13:22:56 -04:00
|
|
|
|
};
|
2005-04-26 13:30:45 -04:00
|
|
|
|
int ok = decode_string (val, choices, countof (choices), place);
|
2005-04-26 13:22:56 -04:00
|
|
|
|
if (!ok)
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid value %s.\n"), exec_name, com, quote (val));
|
2005-04-26 13:22:56 -04:00
|
|
|
|
return ok;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2005-04-27 13:15:10 -04:00
|
|
|
|
|
|
|
|
|
/* Specialized helper functions, used by `commands' to handle some
|
|
|
|
|
options specially. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool check_user_specified_header (const char *);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_dirstruct (const char *com, const char *val, void *place_ignored)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
|
|
|
|
if (!cmd_boolean (com, val, &opt.dirstruct))
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Since dirstruct behaviour is explicitly changed, no_dirstruct
|
|
|
|
|
must be affected inversely. */
|
|
|
|
|
if (opt.dirstruct)
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.no_dirstruct = false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
else
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.no_dirstruct = true;
|
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-05-30 09:31:24 -04:00
|
|
|
|
cmd_spec_header (const char *com, const char *val, void *place_ignored)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2005-05-30 09:31:24 -04:00
|
|
|
|
/* Empty value means reset the list of headers. */
|
|
|
|
|
if (*val == '\0')
|
|
|
|
|
{
|
|
|
|
|
free_vec (opt.user_headers);
|
|
|
|
|
opt.user_headers = NULL;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
2005-05-30 09:31:24 -04:00
|
|
|
|
}
|
|
|
|
|
|
2003-11-29 13:40:01 -05:00
|
|
|
|
if (!check_user_specified_header (val))
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid header %s.\n"),
|
|
|
|
|
exec_name, com, quote (val));
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-05-30 09:31:24 -04:00
|
|
|
|
opt.user_headers = vec_append (opt.user_headers, val);
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_htmlify (const char *com, const char *val, void *place_ignored)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
|
|
|
|
int flag = cmd_boolean (com, val, &opt.htmlify);
|
|
|
|
|
if (flag && !opt.htmlify)
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.remove_listing = false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
return flag;
|
|
|
|
|
}
|
|
|
|
|
|
2003-09-21 15:17:45 -04:00
|
|
|
|
/* Set the "mirror" mode. It means: recursive download, timestamping,
|
|
|
|
|
no limit on max. recursion depth, and don't remove listings. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_mirror (const char *com, const char *val, void *place_ignored)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
|
|
|
|
int mirror;
|
|
|
|
|
|
|
|
|
|
if (!cmd_boolean (com, val, &mirror))
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
if (mirror)
|
|
|
|
|
{
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.recursive = true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
if (!opt.no_dirstruct)
|
2007-08-02 23:38:21 -04:00
|
|
|
|
opt.dirstruct = true;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.timestamping = true;
|
2000-08-30 07:26:21 -04:00
|
|
|
|
opt.reclevel = INFINITE_RECURSION;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
opt.remove_listing = false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-04-24 16:00:19 -04:00
|
|
|
|
/* Validate --prefer-family and set the choice. Allowed values are
|
|
|
|
|
"IPv4", "IPv6", and "none". */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_prefer_family (const char *com, const char *val, void *place_ignored)
|
2005-04-24 16:00:19 -04:00
|
|
|
|
{
|
2005-04-26 13:22:56 -04:00
|
|
|
|
static const struct decode_item choices[] = {
|
|
|
|
|
{ "IPv4", prefer_ipv4 },
|
|
|
|
|
{ "IPv6", prefer_ipv6 },
|
|
|
|
|
{ "none", prefer_none },
|
|
|
|
|
};
|
2008-05-17 16:23:47 -04:00
|
|
|
|
int prefer_family = prefer_none;
|
2007-01-09 10:55:12 -05:00
|
|
|
|
int ok = decode_string (val, choices, countof (choices), &prefer_family);
|
2005-04-26 13:22:56 -04:00
|
|
|
|
if (!ok)
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid value %s.\n"), exec_name, com, quote (val));
|
2007-01-09 10:55:12 -05:00
|
|
|
|
opt.prefer_family = prefer_family;
|
2005-04-26 13:22:56 -04:00
|
|
|
|
return ok;
|
2005-04-24 16:00:19 -04:00
|
|
|
|
}
|
|
|
|
|
|
2003-09-21 15:17:45 -04:00
|
|
|
|
/* Set progress.type to VAL, but verify that it's a valid progress
|
|
|
|
|
implementation before that. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_progress (const char *com, const char *val, void *place_ignored)
|
2001-11-22 23:59:52 -05:00
|
|
|
|
{
|
|
|
|
|
if (!valid_progress_implementation_p (val))
|
|
|
|
|
{
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid progress type %s.\n"),
|
|
|
|
|
exec_name, com, quote (val));
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2001-11-22 23:59:52 -05:00
|
|
|
|
}
|
2003-11-02 14:56:37 -05:00
|
|
|
|
xfree_null (opt.progress_type);
|
2001-12-09 17:25:34 -05:00
|
|
|
|
|
|
|
|
|
/* Don't call set_progress_implementation here. It will be called
|
|
|
|
|
in main() when it becomes clear what the log output is. */
|
|
|
|
|
opt.progress_type = xstrdup (val);
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
2001-11-22 23:59:52 -05:00
|
|
|
|
}
|
|
|
|
|
|
2003-09-21 15:17:45 -04:00
|
|
|
|
/* Set opt.recursive to VAL as with cmd_boolean. If opt.recursive is
|
2005-06-22 15:38:10 -04:00
|
|
|
|
set to true, also set opt.dirstruct to true, unless opt.no_dirstruct
|
2003-09-21 15:17:45 -04:00
|
|
|
|
is specified. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_recursive (const char *com, const char *val, void *place_ignored)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
|
|
|
|
if (!cmd_boolean (com, val, &opt.recursive))
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (opt.recursive && !opt.no_dirstruct)
|
2007-08-02 23:38:21 -04:00
|
|
|
|
opt.dirstruct = true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_restrict_file_names (const char *com, const char *val, void *place_ignored)
|
2003-09-14 18:04:13 -04:00
|
|
|
|
{
|
2003-09-16 21:32:05 -04:00
|
|
|
|
int restrict_os = opt.restrict_files_os;
|
|
|
|
|
int restrict_ctrl = opt.restrict_files_ctrl;
|
2006-06-13 09:58:33 -04:00
|
|
|
|
int restrict_case = opt.restrict_files_case;
|
2009-07-28 02:41:26 -04:00
|
|
|
|
int restrict_nonascii = opt.restrict_files_nonascii;
|
2003-09-16 21:32:05 -04:00
|
|
|
|
|
2006-06-13 09:58:33 -04:00
|
|
|
|
const char *end;
|
2003-09-16 21:32:05 -04:00
|
|
|
|
|
|
|
|
|
#define VAL_IS(string_literal) BOUNDED_EQUAL (val, end, string_literal)
|
|
|
|
|
|
2006-06-13 09:58:33 -04:00
|
|
|
|
do
|
2003-09-14 18:04:13 -04:00
|
|
|
|
{
|
2006-06-13 09:58:33 -04:00
|
|
|
|
end = strchr (val, ',');
|
|
|
|
|
if (!end)
|
|
|
|
|
end = val + strlen (val);
|
2009-07-28 02:41:26 -04:00
|
|
|
|
|
2006-06-13 09:58:33 -04:00
|
|
|
|
if (VAL_IS ("unix"))
|
|
|
|
|
restrict_os = restrict_unix;
|
|
|
|
|
else if (VAL_IS ("windows"))
|
|
|
|
|
restrict_os = restrict_windows;
|
|
|
|
|
else if (VAL_IS ("lowercase"))
|
|
|
|
|
restrict_case = restrict_lowercase;
|
|
|
|
|
else if (VAL_IS ("uppercase"))
|
|
|
|
|
restrict_case = restrict_uppercase;
|
|
|
|
|
else if (VAL_IS ("nocontrol"))
|
|
|
|
|
restrict_ctrl = false;
|
2009-07-28 02:41:26 -04:00
|
|
|
|
else if (VAL_IS ("ascii"))
|
|
|
|
|
restrict_nonascii = true;
|
2006-06-13 09:58:33 -04:00
|
|
|
|
else
|
|
|
|
|
{
|
2009-07-28 02:41:26 -04:00
|
|
|
|
fprintf (stderr, _("\
|
|
|
|
|
%s: %s: Invalid restriction %s,\n\
|
|
|
|
|
use [unix|windows],[lowercase|uppercase],[nocontrol],[ascii].\n"),
|
2008-04-16 06:13:19 -04:00
|
|
|
|
exec_name, com, quote (val));
|
2006-06-13 09:58:33 -04:00
|
|
|
|
return false;
|
2007-08-02 23:38:21 -04:00
|
|
|
|
}
|
2006-06-13 09:58:33 -04:00
|
|
|
|
|
2009-09-21 23:39:44 -04:00
|
|
|
|
if (*end)
|
2007-08-02 23:38:21 -04:00
|
|
|
|
val = end + 1;
|
2003-09-14 18:04:13 -04:00
|
|
|
|
}
|
2006-06-13 09:58:33 -04:00
|
|
|
|
while (*val && *end);
|
2003-09-16 21:32:05 -04:00
|
|
|
|
|
|
|
|
|
#undef VAL_IS
|
|
|
|
|
|
|
|
|
|
opt.restrict_files_os = restrict_os;
|
|
|
|
|
opt.restrict_files_ctrl = restrict_ctrl;
|
2006-06-13 09:58:33 -04:00
|
|
|
|
opt.restrict_files_case = restrict_case;
|
2009-07-28 02:41:26 -04:00
|
|
|
|
opt.restrict_files_nonascii = restrict_nonascii;
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
2003-09-14 18:04:13 -04:00
|
|
|
|
}
|
|
|
|
|
|
2005-04-26 13:22:56 -04:00
|
|
|
|
#ifdef HAVE_SSL
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_secure_protocol (const char *com, const char *val, void *place)
|
2005-04-26 13:22:56 -04:00
|
|
|
|
{
|
|
|
|
|
static const struct decode_item choices[] = {
|
|
|
|
|
{ "auto", secure_protocol_auto },
|
|
|
|
|
{ "sslv2", secure_protocol_sslv2 },
|
|
|
|
|
{ "sslv3", secure_protocol_sslv3 },
|
|
|
|
|
{ "tlsv1", secure_protocol_tlsv1 },
|
|
|
|
|
};
|
2005-04-26 13:30:45 -04:00
|
|
|
|
int ok = decode_string (val, choices, countof (choices), place);
|
2005-04-26 13:22:56 -04:00
|
|
|
|
if (!ok)
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid value %s.\n"), exec_name, com, quote (val));
|
2005-04-26 13:22:56 -04:00
|
|
|
|
return ok;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-09-21 00:41:55 -04:00
|
|
|
|
/* Set all three timeout values. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_timeout (const char *com, const char *val, void *place_ignored)
|
2003-09-21 00:41:55 -04:00
|
|
|
|
{
|
|
|
|
|
double value;
|
|
|
|
|
if (!cmd_time (com, val, &value))
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2003-09-21 00:41:55 -04:00
|
|
|
|
opt.read_timeout = value;
|
|
|
|
|
opt.connect_timeout = value;
|
|
|
|
|
opt.dns_timeout = value;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
2003-09-21 00:41:55 -04:00
|
|
|
|
}
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:30:45 -04:00
|
|
|
|
cmd_spec_useragent (const char *com, const char *val, void *place_ignored)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2005-05-06 13:16:15 -04:00
|
|
|
|
/* Disallow embedded newlines. */
|
|
|
|
|
if (strchr (val, '\n'))
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2008-04-16 06:13:19 -04:00
|
|
|
|
fprintf (stderr, _("%s: %s: Invalid value %s.\n"),
|
|
|
|
|
exec_name, com, quote (val));
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-04-27 18:16:28 -04:00
|
|
|
|
xfree_null (opt.useragent);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
opt.useragent = xstrdup (val);
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-06-24 07:44:38 -04:00
|
|
|
|
|
|
|
|
|
/* The "verbose" option cannot be cmd_boolean because the variable is
|
|
|
|
|
not bool -- it's of type int (-1 means uninitialized because of
|
|
|
|
|
some random hackery for disallowing -q -v). */
|
|
|
|
|
|
|
|
|
|
static bool
|
|
|
|
|
cmd_spec_verbose (const char *com, const char *val, void *place_ignored)
|
|
|
|
|
{
|
|
|
|
|
bool flag;
|
|
|
|
|
if (cmd_boolean (com, val, &flag))
|
|
|
|
|
{
|
|
|
|
|
opt.verbose = flag;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
|
|
|
|
/* Miscellaneous useful routines. */
|
|
|
|
|
|
2005-03-19 12:16:32 -05:00
|
|
|
|
/* A very simple atoi clone, more useful than atoi because it works on
|
2005-06-22 15:38:10 -04:00
|
|
|
|
delimited strings, and has error reportage. Returns true on success,
|
|
|
|
|
false on failure. If successful, stores result to *DEST. */
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2003-09-21 15:17:45 -04:00
|
|
|
|
simple_atoi (const char *beg, const char *end, int *dest)
|
1999-12-02 02:42:23 -05:00
|
|
|
|
{
|
2003-09-21 15:17:45 -04:00
|
|
|
|
int result = 0;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
bool negative = false;
|
2005-03-19 12:16:32 -05:00
|
|
|
|
const char *p = beg;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (p < end && c_isspace (*p))
|
2005-03-19 12:16:32 -05:00
|
|
|
|
++p;
|
|
|
|
|
if (p < end && (*p == '-' || *p == '+'))
|
|
|
|
|
{
|
|
|
|
|
negative = (*p == '-');
|
|
|
|
|
++p;
|
|
|
|
|
}
|
|
|
|
|
if (p == end)
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
2005-03-19 12:16:32 -05:00
|
|
|
|
/* Read negative numbers in a separate loop because the most
|
|
|
|
|
negative integer cannot be represented as a positive number. */
|
|
|
|
|
|
|
|
|
|
if (!negative)
|
2007-10-14 17:46:24 -04:00
|
|
|
|
for (; p < end && c_isdigit (*p); p++)
|
2005-03-19 12:16:32 -05:00
|
|
|
|
{
|
2007-08-02 23:38:21 -04:00
|
|
|
|
int next = (10 * result) + (*p - '0');
|
|
|
|
|
if (next < result)
|
|
|
|
|
return false; /* overflow */
|
|
|
|
|
result = next;
|
2005-03-19 12:16:32 -05:00
|
|
|
|
}
|
|
|
|
|
else
|
2007-10-14 17:46:24 -04:00
|
|
|
|
for (; p < end && c_isdigit (*p); p++)
|
2005-03-19 12:16:32 -05:00
|
|
|
|
{
|
2007-08-02 23:38:21 -04:00
|
|
|
|
int next = (10 * result) - (*p - '0');
|
|
|
|
|
if (next > result)
|
|
|
|
|
return false; /* underflow */
|
|
|
|
|
result = next;
|
2005-03-19 12:16:32 -05:00
|
|
|
|
}
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
|
|
|
|
if (p != end)
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
|
|
|
|
*dest = result;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
2003-09-21 15:17:45 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Trivial atof, with error reporting. Handles "<digits>[.<digits>]",
|
2005-06-22 15:38:10 -04:00
|
|
|
|
doesn't handle exponential notation. Returns true on success,
|
|
|
|
|
false on failure. In case of success, stores its result to
|
|
|
|
|
*DEST. */
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2003-09-21 15:17:45 -04:00
|
|
|
|
simple_atof (const char *beg, const char *end, double *dest)
|
|
|
|
|
{
|
|
|
|
|
double result = 0;
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
bool negative = false;
|
|
|
|
|
bool seen_dot = false;
|
|
|
|
|
bool seen_digit = false;
|
2003-09-21 15:17:45 -04:00
|
|
|
|
double divider = 1;
|
|
|
|
|
|
2005-03-19 12:16:32 -05:00
|
|
|
|
const char *p = beg;
|
|
|
|
|
|
2007-10-14 17:46:24 -04:00
|
|
|
|
while (p < end && c_isspace (*p))
|
2005-03-19 12:16:32 -05:00
|
|
|
|
++p;
|
|
|
|
|
if (p < end && (*p == '-' || *p == '+'))
|
|
|
|
|
{
|
|
|
|
|
negative = (*p == '-');
|
|
|
|
|
++p;
|
|
|
|
|
}
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
2005-03-19 12:16:32 -05:00
|
|
|
|
for (; p < end; p++)
|
2003-09-21 15:17:45 -04:00
|
|
|
|
{
|
|
|
|
|
char ch = *p;
|
2007-10-14 17:46:24 -04:00
|
|
|
|
if (c_isdigit (ch))
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{
|
|
|
|
|
if (!seen_dot)
|
|
|
|
|
result = (10 * result) + (ch - '0');
|
|
|
|
|
else
|
|
|
|
|
result += (ch - '0') / (divider *= 10);
|
|
|
|
|
seen_digit = true;
|
|
|
|
|
}
|
2003-09-21 15:17:45 -04:00
|
|
|
|
else if (ch == '.')
|
2007-08-02 23:38:21 -04:00
|
|
|
|
{
|
|
|
|
|
if (!seen_dot)
|
|
|
|
|
seen_dot = true;
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2003-09-21 15:17:45 -04:00
|
|
|
|
else
|
2007-08-02 23:38:21 -04:00
|
|
|
|
return false;
|
2003-09-21 15:17:45 -04:00
|
|
|
|
}
|
|
|
|
|
if (!seen_digit)
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2005-03-19 12:16:32 -05:00
|
|
|
|
if (negative)
|
|
|
|
|
result = -result;
|
2003-09-21 15:17:45 -04:00
|
|
|
|
|
|
|
|
|
*dest = result;
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
|
|
|
|
|
2005-04-26 13:22:56 -04:00
|
|
|
|
/* Verify that the user-specified header in S is valid. It must
|
|
|
|
|
contain a colon preceded by non-white-space characters and must not
|
|
|
|
|
contain newlines. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
1999-12-02 02:42:23 -05:00
|
|
|
|
check_user_specified_header (const char *s)
|
|
|
|
|
{
|
|
|
|
|
const char *p;
|
|
|
|
|
|
2007-10-14 17:46:24 -04:00
|
|
|
|
for (p = s; *p && *p != ':' && !c_isspace (*p); p++)
|
2005-07-06 21:08:52 -04:00
|
|
|
|
;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* The header MUST contain `:' preceded by at least one
|
|
|
|
|
non-whitespace character. */
|
|
|
|
|
if (*p != ':' || p == s)
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* The header MUST NOT contain newlines. */
|
|
|
|
|
if (strchr (s, '\n'))
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
|
|
|
|
return true;
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2005-04-26 13:22:56 -04:00
|
|
|
|
|
|
|
|
|
/* Decode VAL into a number, according to ITEMS. */
|
|
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
|
static bool
|
2005-04-26 13:22:56 -04:00
|
|
|
|
decode_string (const char *val, const struct decode_item *items, int itemcount,
|
2007-08-02 23:38:21 -04:00
|
|
|
|
int *place)
|
2005-04-26 13:22:56 -04:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
for (i = 0; i < itemcount; i++)
|
|
|
|
|
if (0 == strcasecmp (val, items[i].name))
|
|
|
|
|
{
|
2007-08-02 23:38:21 -04:00
|
|
|
|
*place = items[i].code;
|
|
|
|
|
return true;
|
2005-04-26 13:22:56 -04:00
|
|
|
|
}
|
2005-06-22 15:38:10 -04:00
|
|
|
|
return false;
|
2005-04-26 13:22:56 -04:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-06-19 18:34:58 -04:00
|
|
|
|
void cleanup_html_url (void);
|
2000-11-22 17:15:45 -05:00
|
|
|
|
|
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
|
/* Free the memory allocated by global variables. */
|
|
|
|
|
void
|
|
|
|
|
cleanup (void)
|
|
|
|
|
{
|
2001-11-24 22:10:34 -05:00
|
|
|
|
/* Free external resources, close files, etc. */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
|
2005-06-27 14:19:22 -04:00
|
|
|
|
if (output_stream)
|
2006-01-30 03:46:16 -05:00
|
|
|
|
fclose (output_stream);
|
2005-06-27 14:19:22 -04:00
|
|
|
|
/* No need to check for error because Wget flushes its output (and
|
|
|
|
|
checks for errors) after any data arrives. */
|
2001-11-24 22:10:34 -05:00
|
|
|
|
|
|
|
|
|
/* We're exiting anyway so there's no real need to call free()
|
|
|
|
|
hundreds of times. Skipping the frees will make Wget exit
|
|
|
|
|
faster.
|
|
|
|
|
|
|
|
|
|
However, when detecting leaks, it's crucial to free() everything
|
|
|
|
|
because then you can find the real leaks, i.e. the allocated
|
|
|
|
|
memory which grows with the size of the program. */
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG_MALLOC
|
2003-09-21 18:47:14 -04:00
|
|
|
|
convert_cleanup ();
|
2001-11-24 22:10:34 -05:00
|
|
|
|
res_cleanup ();
|
2001-11-26 00:36:33 -05:00
|
|
|
|
http_cleanup ();
|
|
|
|
|
cleanup_html_url ();
|
2001-11-24 22:10:34 -05:00
|
|
|
|
host_cleanup ();
|
2005-03-20 10:07:40 -05:00
|
|
|
|
log_cleanup ();
|
2001-11-26 00:36:33 -05:00
|
|
|
|
|
2001-11-24 22:10:34 -05:00
|
|
|
|
{
|
|
|
|
|
extern acc_t *netrc_list;
|
|
|
|
|
free_netrc (netrc_list);
|
|
|
|
|
}
|
2010-10-28 18:20:31 -04:00
|
|
|
|
xfree_null (opt.choose_config);
|
2003-11-02 14:56:37 -05:00
|
|
|
|
xfree_null (opt.lfilename);
|
|
|
|
|
xfree_null (opt.dir_prefix);
|
|
|
|
|
xfree_null (opt.input_filename);
|
|
|
|
|
xfree_null (opt.output_document);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
free_vec (opt.accepts);
|
|
|
|
|
free_vec (opt.rejects);
|
|
|
|
|
free_vec (opt.excludes);
|
|
|
|
|
free_vec (opt.includes);
|
|
|
|
|
free_vec (opt.domains);
|
2000-03-11 01:48:06 -05:00
|
|
|
|
free_vec (opt.follow_tags);
|
|
|
|
|
free_vec (opt.ignore_tags);
|
2003-11-02 14:56:37 -05:00
|
|
|
|
xfree_null (opt.progress_type);
|
2005-04-27 17:30:22 -04:00
|
|
|
|
xfree_null (opt.ftp_user);
|
|
|
|
|
xfree_null (opt.ftp_passwd);
|
2003-11-02 14:56:37 -05:00
|
|
|
|
xfree_null (opt.ftp_proxy);
|
|
|
|
|
xfree_null (opt.https_proxy);
|
|
|
|
|
xfree_null (opt.http_proxy);
|
1999-12-02 02:42:23 -05:00
|
|
|
|
free_vec (opt.no_proxy);
|
2003-11-02 14:56:37 -05:00
|
|
|
|
xfree_null (opt.useragent);
|
|
|
|
|
xfree_null (opt.referer);
|
|
|
|
|
xfree_null (opt.http_user);
|
|
|
|
|
xfree_null (opt.http_passwd);
|
2005-03-20 10:07:40 -05:00
|
|
|
|
free_vec (opt.user_headers);
|
2005-04-27 13:15:10 -04:00
|
|
|
|
# ifdef HAVE_SSL
|
|
|
|
|
xfree_null (opt.cert_file);
|
|
|
|
|
xfree_null (opt.private_key);
|
2005-05-16 11:09:07 -04:00
|
|
|
|
xfree_null (opt.ca_directory);
|
|
|
|
|
xfree_null (opt.ca_cert);
|
|
|
|
|
xfree_null (opt.random_file);
|
|
|
|
|
xfree_null (opt.egd_file);
|
2005-04-27 13:15:10 -04:00
|
|
|
|
# endif
|
2003-11-02 14:56:37 -05:00
|
|
|
|
xfree_null (opt.bind_address);
|
|
|
|
|
xfree_null (opt.cookies_input);
|
|
|
|
|
xfree_null (opt.cookies_output);
|
2005-04-27 17:30:22 -04:00
|
|
|
|
xfree_null (opt.user);
|
|
|
|
|
xfree_null (opt.passwd);
|
2008-07-22 16:33:42 -04:00
|
|
|
|
xfree_null (opt.base_href);
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
2005-04-27 13:15:10 -04:00
|
|
|
|
#endif /* DEBUG_MALLOC */
|
1999-12-02 02:42:23 -05:00
|
|
|
|
}
|
2006-06-13 09:58:33 -04:00
|
|
|
|
|
|
|
|
|
/* Unit testing routines. */
|
|
|
|
|
|
|
|
|
|
#ifdef TESTING
|
|
|
|
|
|
2008-04-23 01:59:22 -04:00
|
|
|
|
const char *
|
|
|
|
|
test_commands_sorted()
|
|
|
|
|
{
|
|
|
|
|
int prev_idx = 0, next_idx = 1;
|
|
|
|
|
int command_count = countof (commands) - 1;
|
|
|
|
|
int cmp = 0;
|
|
|
|
|
while (next_idx <= command_count)
|
|
|
|
|
{
|
|
|
|
|
cmp = strcasecmp (commands[prev_idx].name, commands[next_idx].name);
|
|
|
|
|
if (cmp > 0)
|
|
|
|
|
{
|
|
|
|
|
mu_assert ("FAILED", false);
|
|
|
|
|
break;
|
2009-09-21 23:39:44 -04:00
|
|
|
|
}
|
2008-04-23 01:59:22 -04:00
|
|
|
|
else
|
2009-09-21 23:39:44 -04:00
|
|
|
|
{
|
2008-04-23 01:59:22 -04:00
|
|
|
|
prev_idx ++;
|
|
|
|
|
next_idx ++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2006-06-13 09:58:33 -04:00
|
|
|
|
const char *
|
|
|
|
|
test_cmd_spec_restrict_file_names()
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
struct {
|
|
|
|
|
char *val;
|
|
|
|
|
int expected_restrict_files_os;
|
|
|
|
|
int expected_restrict_files_ctrl;
|
|
|
|
|
int expected_restrict_files_case;
|
|
|
|
|
bool result;
|
|
|
|
|
} test_array[] = {
|
|
|
|
|
{ "windows", restrict_windows, true, restrict_no_case_restriction, true },
|
|
|
|
|
{ "windows,", restrict_windows, true, restrict_no_case_restriction, true },
|
|
|
|
|
{ "windows,lowercase", restrict_windows, true, restrict_lowercase, true },
|
|
|
|
|
{ "unix,nocontrol,lowercase,", restrict_unix, false, restrict_lowercase, true },
|
|
|
|
|
};
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i)
|
2006-06-13 09:58:33 -04:00
|
|
|
|
{
|
|
|
|
|
bool res;
|
2009-09-21 23:39:44 -04:00
|
|
|
|
|
2006-06-13 09:58:33 -04:00
|
|
|
|
defaults();
|
|
|
|
|
res = cmd_spec_restrict_file_names ("dummy", test_array[i].val, NULL);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
fprintf (stderr, "test_cmd_spec_restrict_file_names: TEST %d\n", i); fflush (stderr);
|
|
|
|
|
fprintf (stderr, "opt.restrict_files_os: %d\n", opt.restrict_files_os); fflush (stderr);
|
|
|
|
|
fprintf (stderr, "opt.restrict_files_ctrl: %d\n", opt.restrict_files_ctrl); fflush (stderr);
|
|
|
|
|
fprintf (stderr, "opt.restrict_files_case: %d\n", opt.restrict_files_case); fflush (stderr);
|
|
|
|
|
*/
|
2009-09-21 23:39:44 -04:00
|
|
|
|
mu_assert ("test_cmd_spec_restrict_file_names: wrong result",
|
2006-06-13 09:58:33 -04:00
|
|
|
|
res == test_array[i].result
|
2009-09-21 23:39:44 -04:00
|
|
|
|
&& opt.restrict_files_os == test_array[i].expected_restrict_files_os
|
|
|
|
|
&& opt.restrict_files_ctrl == test_array[i].expected_restrict_files_ctrl
|
2006-06-13 09:58:33 -04:00
|
|
|
|
&& opt.restrict_files_case == test_array[i].expected_restrict_files_case);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* TESTING */
|
|
|
|
|
|