chiark / gitweb /
Import curl_7.56.1.orig.tar.gz
[curl.git] / src / tool_cfgable.h
1 #ifndef HEADER_CURL_TOOL_CFGABLE_H
2 #define HEADER_CURL_TOOL_CFGABLE_H
3 /***************************************************************************
4  *                                  _   _ ____  _
5  *  Project                     ___| | | |  _ \| |
6  *                             / __| | | | |_) | |
7  *                            | (__| |_| |  _ <| |___
8  *                             \___|\___/|_| \_\_____|
9  *
10  * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
11  *
12  * This software is licensed as described in the file COPYING, which
13  * you should have received as part of this distribution. The terms
14  * are also available at https://curl.haxx.se/docs/copyright.html.
15  *
16  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17  * copies of the Software, and permit persons to whom the Software is
18  * furnished to do so, under the terms of the COPYING file.
19  *
20  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21  * KIND, either express or implied.
22  *
23  ***************************************************************************/
24 #include "tool_setup.h"
25
26 #include "tool_sdecls.h"
27
28 #include "tool_metalink.h"
29
30 typedef enum {
31   ERR_NONE,
32   ERR_BINARY_TERMINAL = 1, /* binary to terminal detected */
33   ERR_LAST
34 } curl_error;
35
36 struct GlobalConfig;
37
38 struct OperationConfig {
39   CURL *easy;               /* A copy of the handle from GlobalConfig */
40   bool remote_time;
41   char *random_file;
42   char *egd_file;
43   char *useragent;
44   char *cookie;             /* single line with specified cookies */
45   char *cookiejar;          /* write to this file */
46   char *cookiefile;         /* read from this file */
47   bool cookiesession;       /* new session? */
48   bool encoding;            /* Accept-Encoding please */
49   bool tr_encoding;         /* Transfer-Encoding please */
50   unsigned long authtype;   /* auth bitmask */
51   bool use_resume;
52   bool resume_from_current;
53   bool disable_epsv;
54   bool disable_eprt;
55   bool ftp_pret;
56   long proto;
57   bool proto_present;
58   long proto_redir;
59   bool proto_redir_present;
60   char *proto_default;
61   curl_off_t resume_from;
62   char *postfields;
63   curl_off_t postfieldsize;
64   char *referer;
65   double timeout;
66   double connecttimeout;
67   long maxredirs;
68   curl_off_t max_filesize;
69   char *headerfile;
70   char *ftpport;
71   char *iface;
72   int localport;
73   int localportrange;
74   unsigned short porttouse;
75   char *range;
76   long low_speed_limit;
77   long low_speed_time;
78   char *dns_servers;   /* dot notation: 1.1.1.1;2.2.2.2 */
79   char *dns_interface; /* interface name */
80   char *dns_ipv4_addr; /* dot notation */
81   char *dns_ipv6_addr; /* dot notation */
82   char *userpwd;
83   char *login_options;
84   char *tls_username;
85   char *tls_password;
86   char *tls_authtype;
87   char *proxy_tls_username;
88   char *proxy_tls_password;
89   char *proxy_tls_authtype;
90   char *proxyuserpwd;
91   char *proxy;
92   int proxyver;             /* set to CURLPROXY_HTTP* define */
93   char *noproxy;
94   char *mail_from;
95   struct curl_slist *mail_rcpt;
96   char *mail_auth;
97   bool sasl_ir;             /* Enable/disable SASL initial response */
98   bool proxytunnel;
99   bool ftp_append;          /* APPE on ftp */
100   bool use_ascii;           /* select ascii or text transfer */
101   bool autoreferer;         /* automatically set referer */
102   bool failonerror;         /* fail on (HTTP) errors */
103   bool include_headers;     /* send headers to data output */
104   bool no_body;             /* don't get the body */
105   bool dirlistonly;         /* only get the FTP dir list */
106   bool followlocation;      /* follow http redirects */
107   bool unrestricted_auth;   /* Continue to send authentication (user+password)
108                                when following ocations, even when hostname
109                                changed */
110   bool netrc_opt;
111   bool netrc;
112   char *netrc_file;
113   struct getout *url_list;  /* point to the first node */
114   struct getout *url_last;  /* point to the last/current node */
115   struct getout *url_get;   /* point to the node to fill in URL */
116   struct getout *url_out;   /* point to the node to fill in outfile */
117   char *cipher_list;
118   char *proxy_cipher_list;
119   char *cert;
120   char *proxy_cert;
121   char *cert_type;
122   char *proxy_cert_type;
123   char *cacert;
124   char *proxy_cacert;
125   char *capath;
126   char *proxy_capath;
127   char *crlfile;
128   char *proxy_crlfile;
129   char *pinnedpubkey;
130   char *key;
131   char *proxy_key;
132   char *key_type;
133   char *proxy_key_type;
134   char *key_passwd;
135   char *proxy_key_passwd;
136   char *pubkey;
137   char *hostpubmd5;
138   char *engine;
139   bool crlf;
140   char *customrequest;
141   char *krblevel;
142   char *request_target;
143   long httpversion;
144   bool nobuffer;
145   bool readbusy;            /* set when reading input returns EAGAIN */
146   bool globoff;
147   bool use_httpget;
148   bool insecure_ok;         /* set TRUE to allow insecure SSL connects */
149   bool proxy_insecure_ok;   /* set TRUE to allow insecure SSL connects
150                                for proxy */
151   bool terminal_binary_ok;
152   bool verifystatus;
153   bool create_dirs;
154   bool ftp_create_dirs;
155   bool ftp_skip_ip;
156   bool proxynegotiate;
157   bool proxyntlm;
158   bool proxydigest;
159   bool proxybasic;
160   bool proxyanyauth;
161   char *writeout;           /* %-styled format string to output */
162   struct curl_slist *quote;
163   struct curl_slist *postquote;
164   struct curl_slist *prequote;
165   long ssl_version;
166   long ssl_version_max;
167   long proxy_ssl_version;
168   long ip_version;
169   curl_TimeCond timecond;
170   time_t condtime;
171   struct curl_slist *headers;
172   struct curl_slist *proxyheaders;
173   curl_mime *mimepost;
174   curl_mime *mimecurrent;
175   struct curl_slist *telnet_options;
176   struct curl_slist *resolve;
177   struct curl_slist *connect_to;
178   HttpReq httpreq;
179
180   /* for bandwidth limiting features: */
181   curl_off_t sendpersecond; /* send to peer */
182   curl_off_t recvpersecond; /* receive from peer */
183
184   bool ftp_ssl;
185   bool ftp_ssl_reqd;
186   bool ftp_ssl_control;
187   bool ftp_ssl_ccc;
188   int ftp_ssl_ccc_mode;
189   char *preproxy;
190   int socks5_gssapi_nec;    /* The NEC reference server does not protect the
191                                encryption type exchange */
192   unsigned long socks5_auth;/* auth bitmask for socks5 proxies */
193   char *proxy_service_name; /* set authentication service name for HTTP and
194                                SOCKS5 proxies */
195   char *service_name;       /* set authentication service name for DIGEST-MD5,
196                                Kerberos 5 and SPNEGO */
197
198   bool tcp_nodelay;
199   bool tcp_fastopen;
200   long req_retry;           /* number of retries */
201   bool retry_connrefused;   /* set connection refused as a transient error */
202   long retry_delay;         /* delay between retries (in seconds) */
203   long retry_maxtime;       /* maximum time to keep retrying */
204
205   char *ftp_account;        /* for ACCT */
206   char *ftp_alternative_to_user;  /* send command if USER/PASS fails */
207   int ftp_filemethod;
208   long tftp_blksize;        /* TFTP BLKSIZE option */
209   bool tftp_no_options;     /* do not send TFTP options requests */
210   bool ignorecl;            /* --ignore-content-length */
211   bool disable_sessionid;
212
213   bool raw;
214   bool post301;
215   bool post302;
216   bool post303;
217   bool nokeepalive;         /* for keepalive needs */
218   long alivetime;
219   bool content_disposition; /* use Content-disposition filename */
220
221   int default_node_flags;   /* default flags to search for each 'node', which
222                                is basically each given URL to transfer */
223
224   bool xattr;               /* store metadata in extended attributes */
225   long gssapi_delegation;
226   bool ssl_allow_beast;     /* allow this SSL vulnerability */
227   bool proxy_ssl_allow_beast; /* allow this SSL vulnerability for proxy*/
228
229   bool ssl_no_revoke;       /* disable SSL certificate revocation checks */
230   /*bool proxy_ssl_no_revoke; */
231
232   bool use_metalink;        /* process given URLs as metalink XML file */
233   metalinkfile *metalinkfile_list; /* point to the first node */
234   metalinkfile *metalinkfile_last; /* point to the last/current node */
235 #ifdef CURLDEBUG
236   bool test_event_based;
237 #endif
238   char *oauth_bearer;             /* OAuth 2.0 bearer token */
239   bool nonpn;                     /* enable/disable TLS NPN extension */
240   bool noalpn;                    /* enable/disable TLS ALPN extension */
241   char *unix_socket_path;         /* path to Unix domain socket */
242   bool abstract_unix_socket;      /* path to an abstract Unix domain socket */
243   bool falsestart;
244   bool path_as_is;
245   double expect100timeout;
246   bool suppress_connect_headers;  /* suppress proxy CONNECT response headers
247                                      from user callbacks */
248   curl_error synthetic_error;     /* if non-zero, it overrides any libcurl
249                                      error */
250   bool ssh_compression;           /* enable/disable SSH compression */
251   struct GlobalConfig *global;
252   struct OperationConfig *prev;
253   struct OperationConfig *next;   /* Always last in the struct */
254 };
255
256 struct GlobalConfig {
257   CURL *easy;                     /* Once we have one, we keep it here */
258   int showerror;                  /* -1 == unset, default => show errors
259                                       0 => -s is used to NOT show errors
260                                       1 => -S has been used to show errors */
261   bool mute;                      /* don't show messages, --silent given */
262   bool noprogress;                /* don't show progress bar --silent given */
263   bool isatty;                    /* Updated internally if output is a tty */
264   FILE *errors;                   /* Error stream, defaults to stderr */
265   bool errors_fopened;            /* Whether error stream isn't stderr */
266   char *trace_dump;               /* file to dump the network trace to */
267   FILE *trace_stream;
268   bool trace_fopened;
269   trace tracetype;
270   bool tracetime;                 /* include timestamp? */
271   int progressmode;               /* CURL_PROGRESS_BAR / CURL_PROGRESS_STATS */
272   char *libcurl;                  /* Output libcurl code to this file name */
273   bool fail_early;                /* exit on first transfer error */
274   struct OperationConfig *first;
275   struct OperationConfig *current;
276   struct OperationConfig *last;   /* Always last in the struct */
277 };
278
279 void config_init(struct OperationConfig *config);
280 void config_free(struct OperationConfig *config);
281
282 #endif /* HEADER_CURL_TOOL_CFGABLE_H */