blob: bc5afe9bcb9f713c8439a751f1ed174177877083 [file] [log] [blame]
xf.li6c8fc1e2023-08-12 00:11:09 -07001#ifndef HEADER_CURL_TOOL_SETOPT_H
2#define HEADER_CURL_TOOL_SETOPT_H
3/***************************************************************************
4 * _ _ ____ _
5 * Project ___| | | | _ \| |
6 * / __| | | | |_) | |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
9 *
10 * Copyright (C) 1998 - 2022, 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.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 * SPDX-License-Identifier: curl
24 *
25 ***************************************************************************/
26#include "tool_setup.h"
27
28#include "tool_formparse.h"
29
30/*
31 * Macros used in operate()
32 */
33
34#define SETOPT_CHECK(v,opt) do { \
35 result = (v); \
36 } while(0)
37
38#ifndef CURL_DISABLE_LIBCURL_OPTION
39
40/* Associate symbolic names with option values */
41struct NameValue {
42 const char *name;
43 long value;
44};
45
46struct NameValueUnsigned {
47 const char *name;
48 unsigned long value;
49};
50
51extern const struct NameValue setopt_nv_CURLPROXY[];
52extern const struct NameValue setopt_nv_CURL_SOCKS_PROXY[];
53extern const struct NameValue setopt_nv_CURL_HTTP_VERSION[];
54extern const struct NameValue setopt_nv_CURL_SSLVERSION[];
55extern const struct NameValue setopt_nv_CURL_TIMECOND[];
56extern const struct NameValue setopt_nv_CURLFTPSSL_CCC[];
57extern const struct NameValue setopt_nv_CURLUSESSL[];
58extern const struct NameValueUnsigned setopt_nv_CURLSSLOPT[];
59extern const struct NameValue setopt_nv_CURL_NETRC[];
60extern const struct NameValueUnsigned setopt_nv_CURLAUTH[];
61extern const struct NameValueUnsigned setopt_nv_CURLHSTS[];
62
63/* Map options to NameValue sets */
64#define setopt_nv_CURLOPT_HSTS_CTRL setopt_nv_CURLHSTS
65#define setopt_nv_CURLOPT_HTTP_VERSION setopt_nv_CURL_HTTP_VERSION
66#define setopt_nv_CURLOPT_HTTPAUTH setopt_nv_CURLAUTH
67#define setopt_nv_CURLOPT_SSLVERSION setopt_nv_CURL_SSLVERSION
68#define setopt_nv_CURLOPT_PROXY_SSLVERSION setopt_nv_CURL_SSLVERSION
69#define setopt_nv_CURLOPT_TIMECONDITION setopt_nv_CURL_TIMECOND
70#define setopt_nv_CURLOPT_FTP_SSL_CCC setopt_nv_CURLFTPSSL_CCC
71#define setopt_nv_CURLOPT_USE_SSL setopt_nv_CURLUSESSL
72#define setopt_nv_CURLOPT_SSL_OPTIONS setopt_nv_CURLSSLOPT
73#define setopt_nv_CURLOPT_PROXY_SSL_OPTIONS setopt_nv_CURLSSLOPT
74#define setopt_nv_CURLOPT_NETRC setopt_nv_CURL_NETRC
75#define setopt_nv_CURLOPT_PROXYTYPE setopt_nv_CURLPROXY
76#define setopt_nv_CURLOPT_PROXYAUTH setopt_nv_CURLAUTH
77#define setopt_nv_CURLOPT_SOCKS5_AUTH setopt_nv_CURLAUTH
78
79/* Intercept setopt calls for --libcurl */
80
81CURLcode tool_setopt_enum(CURL *curl, struct GlobalConfig *config,
82 const char *name, CURLoption tag,
83 const struct NameValue *nv, long lval);
84CURLcode tool_setopt_flags(CURL *curl, struct GlobalConfig *config,
85 const char *name, CURLoption tag,
86 const struct NameValue *nv, long lval);
87CURLcode tool_setopt_bitmask(CURL *curl, struct GlobalConfig *config,
88 const char *name, CURLoption tag,
89 const struct NameValueUnsigned *nv, long lval);
90CURLcode tool_setopt_mimepost(CURL *curl, struct GlobalConfig *config,
91 const char *name, CURLoption tag,
92 curl_mime *mimepost);
93CURLcode tool_setopt_slist(CURL *curl, struct GlobalConfig *config,
94 const char *name, CURLoption tag,
95 struct curl_slist *list);
96CURLcode tool_setopt(CURL *curl, bool str, struct GlobalConfig *global,
97 struct OperationConfig *config,
98 const char *name, CURLoption tag, ...);
99
100#define my_setopt(x,y,z) \
101 SETOPT_CHECK(tool_setopt(x, FALSE, global, config, #y, y, z), y)
102
103#define my_setopt_str(x,y,z) \
104 SETOPT_CHECK(tool_setopt(x, TRUE, global, config, #y, y, z), y)
105
106#define my_setopt_enum(x,y,z) \
107 SETOPT_CHECK(tool_setopt_enum(x, global, #y, y, setopt_nv_ ## y, z), y)
108
109#define my_setopt_flags(x,y,z) \
110 SETOPT_CHECK(tool_setopt_flags(x, global, #y, y, setopt_nv_ ## y, z), y)
111
112#define my_setopt_bitmask(x,y,z) \
113 SETOPT_CHECK(tool_setopt_bitmask(x, global, #y, y, setopt_nv_ ## y, z), y)
114
115#define my_setopt_mimepost(x,y,z) \
116 SETOPT_CHECK(tool_setopt_mimepost(x, global, #y, y, z), y)
117
118#define my_setopt_slist(x,y,z) \
119 SETOPT_CHECK(tool_setopt_slist(x, global, #y, y, z), y)
120
121#define res_setopt(x,y,z) tool_setopt(x, FALSE, global, config, #y, y, z)
122
123#define res_setopt_str(x,y,z) tool_setopt(x, TRUE, global, config, #y, y, z)
124
125#else /* CURL_DISABLE_LIBCURL_OPTION */
126
127/* No --libcurl, so pass options directly to library */
128
129#define my_setopt(x,y,z) \
130 SETOPT_CHECK(curl_easy_setopt(x, y, z), y)
131
132#define my_setopt_str(x,y,z) \
133 SETOPT_CHECK(curl_easy_setopt(x, y, z), y)
134
135#define my_setopt_enum(x,y,z) \
136 SETOPT_CHECK(curl_easy_setopt(x, y, z), y)
137
138#define my_setopt_flags(x,y,z) \
139 SETOPT_CHECK(curl_easy_setopt(x, y, z), y)
140
141#define my_setopt_bitmask(x,y,z) \
142 SETOPT_CHECK(curl_easy_setopt(x, y, z), y)
143
144#define my_setopt_mimepost(x,y,z) \
145 SETOPT_CHECK(curl_easy_setopt(x, y, z), y)
146
147#define my_setopt_slist(x,y,z) \
148 SETOPT_CHECK(curl_easy_setopt(x, y, z), y)
149
150#define res_setopt(x,y,z) curl_easy_setopt(x,y,z)
151
152#define res_setopt_str(x,y,z) curl_easy_setopt(x,y,z)
153
154#endif /* CURL_DISABLE_LIBCURL_OPTION */
155
156#endif /* HEADER_CURL_TOOL_SETOPT_H */