forked from aarond10/https_dns_proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.c
More file actions
251 lines (242 loc) · 9.39 KB
/
options.c
File metadata and controls
251 lines (242 loc) · 9.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#include <fcntl.h> // NOLINT(llvmlibc-restrict-system-libc-headers)
#include <grp.h> // NOLINT(llvmlibc-restrict-system-libc-headers)
#include <pwd.h> // NOLINT(llvmlibc-restrict-system-libc-headers)
#include <stdio.h> // NOLINT(llvmlibc-restrict-system-libc-headers)
#include <string.h> // NOLINT(llvmlibc-restrict-system-libc-headers)
#include <sys/stat.h> // NOLINT(llvmlibc-restrict-system-libc-headers)
#include <sys/types.h> // NOLINT(llvmlibc-restrict-system-libc-headers)
#include <unistd.h> // NOLINT(llvmlibc-restrict-system-libc-headers)
#include "logging.h"
#include "options.h"
// Hack for platforms that don't support O_CLOEXEC.
#ifndef O_CLOEXEC
#define O_CLOEXEC 0
#endif
enum {
DEFAULT_HTTP_VERSION = 2
};
const char * options_sw_version(void) {
#ifdef SW_VERSION
return SW_VERSION;
#else
return "2023.10.10-atLeast"; // update date sometimes, like 1-2 times a year
#endif
}
void options_init(struct Options *opt) {
opt->listen_addr = "127.0.0.1";
opt->listen_port = 5053;
opt->logfile = "-";
opt->logfd = STDOUT_FILENO;
opt->loglevel = LOG_ERROR;
opt->daemonize = 0;
opt->dscp = 0;
opt->user = NULL;
opt->group = NULL;
opt->uid = (uid_t)-1;
opt->gid = (uid_t)-1;
//new as from https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Test+Servers
opt->bootstrap_dns = "8.8.8.8,1.1.1.1,8.8.4.4,1.0.0.1,145.100.185.15,145.100.185.16,185.49.141.37";
opt->bootstrap_dns_polling_interval = 120;
opt->ipv4 = 0;
opt->resolver_url = "https://dns.google/dns-query";
opt->curl_proxy = NULL;
opt->use_http_version = DEFAULT_HTTP_VERSION;
opt->stats_interval = 0;
opt->ca_info = NULL;
opt->flight_recorder_size = 0;
}
int options_parse_args(struct Options *opt, int argc, char **argv) {
int c = 0;
while ((c = getopt(argc, argv, "a:c:p:du:g:b:i:4r:e:t:l:vxqs:C:F:hV")) != -1) {
switch (c) {
case 'a': // listen_addr
opt->listen_addr = optarg;
break;
case 'c': // DSCP codepoint
opt->dscp = atoi(optarg);
break;
case 'p': // listen_port
opt->listen_port = atoi(optarg);
break;
case 'd': // daemonize
opt->daemonize = 1;
break;
case 'u': // user
opt->user = optarg;
break;
case 'g': // group
opt->group = optarg;
break;
case 'b': // bootstrap dns servers
opt->bootstrap_dns = optarg;
break;
case 'i': // bootstrap dns servers polling interval
opt->bootstrap_dns_polling_interval = atoi(optarg);
break;
case '4': // ipv4 mode - don't use v6 addresses.
opt->ipv4 = 1;
break;
case 'r': // resolver url prefix
opt->resolver_url = optarg;
break;
case 't': // curl http proxy
opt->curl_proxy = optarg;
break;
case 'l': // logfile
opt->logfile = optarg;
break;
case 'v': // verbose
if (opt->loglevel) {
opt->loglevel--;
}
break;
case 'x': // http/1.1 fallthrough
case 'q': // http/3
if (opt->use_http_version == DEFAULT_HTTP_VERSION) {
opt->use_http_version = (c == 'x' ? 1 : 3);
} else {
printf("HTTP version already set to: HTTP/%s\n",
opt->use_http_version == 1 ? "1.1" : "3");
return -1;
}
break;
case 's': // stats interval
opt->stats_interval = atoi(optarg);
break;
case 'C': // CA info
opt->ca_info = optarg;
break;
case 'F': // Flight recorder size
opt->flight_recorder_size = atoi(optarg);
break;
case '?':
printf("Unknown option '-%c'\n", c);
// fallthrough
case 'h':
return -1;
case 'V': // version
printf("%s\n", options_sw_version());
exit(0);
default:
printf("Unknown state!");
exit(EXIT_FAILURE);
}
}
if (opt->user) {
struct passwd *p = getpwnam(opt->user);
if (!p || !p->pw_uid) {
printf("Username (%s) invalid.\n", opt->user);
return -1;
}
opt->uid = p->pw_uid;
}
if (opt->group) {
struct group *g = getgrnam(opt->group);
if (!g || !g->gr_gid) {
printf("Group (%s) invalid.\n", opt->group);
return -1;
}
opt->gid = g->gr_gid;
}
if (opt->dscp < 0 || opt->dscp >63) {
printf("DSCP code (%d) invalid:[0-63]\n", opt->dscp);
return -1;
}
opt->dscp <<= 2;
// Get noisy about bad security practices.
if (getuid() == 0 && (!opt->user || !opt->group)) {
printf("----------------------------\n"
"WARNING: Running as root without dropping privileges "
"is NOT recommended.\n"
"----------------------------\n");
sleep(1);
}
if (opt->logfile != NULL && strcmp(opt->logfile, "-") != 0) {
opt->logfd = open(opt->logfile,
O_CREAT | O_WRONLY | O_APPEND | O_CLOEXEC,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
if (opt->logfd <= 0) {
printf("Could not open logfile '%s' for writing.\n", opt->logfile);
}
}
if (opt->resolver_url == NULL ||
strncmp(opt->resolver_url, "https://", 8) != 0) {
printf("Resolver prefix (%s) must be a https:// address.\n",
opt->resolver_url);
return -1;
}
if (opt->bootstrap_dns_polling_interval < 5 ||
opt->bootstrap_dns_polling_interval > 3600) {
printf("DNS servers polling interval must be between 5 and 3600.\n");
return -1;
}
if (opt->stats_interval < 0 || opt->stats_interval > 3600) {
printf("Statistic interval must be between 0 and 3600.\n");
return -1;
}
if (opt->flight_recorder_size != 0 &&
(opt->flight_recorder_size < 100 || opt->flight_recorder_size > 100000)) {
printf("Flight recorder limit must be between 100 and 100000.\n");
return -1;
}
return 0;
}
void options_show_usage(int __attribute__((unused)) argc, char **argv) {
struct Options defaults;
options_init(&defaults);
printf("Usage: %s [-a <listen_addr>] [-p <listen_port>]\n", argv[0]);
printf(" [-d] [-u <user>] [-g <group>] [-b <dns_servers>]\n");
printf(" [-i <polling_interval>] [-4] [-r <resolver_url>]\n");
printf(" [-t <proxy_server>] [-l <logfile>] [-c <dscp_codepoint>]\n");
printf(" [-x] [-q] [-s <statistic_interval>] [-F <log_limit>]\n");
printf(" [-v]+ [-V] [-h]\n\n");
printf(" -a listen_addr Local IPv4/v6 address to bind to. (%s)\n",
defaults.listen_addr);
printf(" -p listen_port Local port to bind to. (%d)\n",
defaults.listen_port);
printf(" -d Daemonize.\n");
printf(" -u user Optional user to drop to if launched as root.\n");
printf(" -g group Optional group to drop to if launched as root.\n");
printf(" -b dns_servers Comma-separated IPv4/v6 addresses and ports (addr:port)\n");
printf(" of DNS servers to resolve resolver host (e.g. dns.google).\n"\
" When specifying a port for IPv6, enclose the address in [].\n"\
" (%s)\n",
defaults.bootstrap_dns);
printf(" -i polling_interval Optional polling interval of DNS servers.\n"\
" (Default: %d, Min: 5, Max: 3600)\n",
defaults.bootstrap_dns_polling_interval);
printf(" -4 Force IPv4 hostnames for DNS resolvers non IPv6 networks.\n");
printf(" -r resolver_url The HTTPS path to the resolver URL. Default: %s\n",
defaults.resolver_url);
printf(" -t proxy_server Optional HTTP proxy. e.g. socks5://127.0.0.1:1080\n");
printf(" Remote name resolution will be used if the protocol\n");
printf(" supports it (http, https, socks4a, socks5h), otherwise\n");
printf(" initial DNS resolution will still be done via the\n");
printf(" bootstrap DNS servers.\n");
printf(" -l logfile Path to file to log to. (\"%s\")\n",
defaults.logfile);
printf(" -c dscp_codepoint Optional DSCP codepoint[0-63] to set on upstream DNS server\n");
printf(" connections.\n");
printf(" -x Use HTTP/1.1 instead of HTTP/2. Useful with broken\n"
" or limited builds of libcurl. (false)\n");
printf(" -q Use HTTP/3 (QUIC) only. (false)\n");
printf(" -s statistic_interval Optional statistic printout interval.\n"\
" (Default: %d, Disabled: 0, Min: 1, Max: 3600)\n",
defaults.stats_interval);
printf(" -C path Optional file containing CA certificates.\n");
printf(" -v Increase logging verbosity. (Default: error)\n");
printf(" Levels: fatal, stats, error, warning, info, debug\n");
printf(" Request issues are logged on warning level.\n");
printf(" -F log_limit Flight recorder: storing desired amount of logs from all levels\n"\
" in memory and dumping them on fatal error or on SIGUSR2 signal.\n"
" (Default: %u, Min: 100, Max: 100000)\n",
defaults.flight_recorder_size);
printf(" -V Print version and exit.\n");
printf(" -h Print help and exit.\n");
options_cleanup(&defaults);
}
void options_cleanup(struct Options *opt) {
if (opt->logfd != STDOUT_FILENO && opt->logfd > 0) {
close(opt->logfd);
}
}