Blame


1 15902770 2021-01-15 op %{
2 15902770 2021-01-15 op
3 15902770 2021-01-15 op /*
4 eac9287d 2023-06-24 op * Copyright (c) 2021, 2022, 2023 Omar Polo <op@omarpolo.com>
5 c39be742 2021-07-09 op * Copyright (c) 2018 Florian Obser <florian@openbsd.org>
6 c39be742 2021-07-09 op * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
7 c39be742 2021-07-09 op * Copyright (c) 2004 Ryan McBride <mcbride@openbsd.org>
8 c39be742 2021-07-09 op * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
9 c39be742 2021-07-09 op * Copyright (c) 2001 Markus Friedl. All rights reserved.
10 c39be742 2021-07-09 op * Copyright (c) 2001 Daniel Hartmeier. All rights reserved.
11 c39be742 2021-07-09 op * Copyright (c) 2001 Theo de Raadt. All rights reserved.
12 15902770 2021-01-15 op *
13 15902770 2021-01-15 op * Permission to use, copy, modify, and distribute this software for any
14 15902770 2021-01-15 op * purpose with or without fee is hereby granted, provided that the above
15 15902770 2021-01-15 op * copyright notice and this permission notice appear in all copies.
16 15902770 2021-01-15 op *
17 15902770 2021-01-15 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
18 15902770 2021-01-15 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
19 15902770 2021-01-15 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
20 15902770 2021-01-15 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
21 15902770 2021-01-15 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
22 15902770 2021-01-15 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
23 15902770 2021-01-15 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
24 15902770 2021-01-15 op */
25 1f1f3810 2022-02-03 op
26 1f1f3810 2022-02-03 op #include "gmid.h"
27 15902770 2021-01-15 op
28 74f0778b 2021-06-16 op #include <ctype.h>
29 002a84a1 2021-02-10 op #include <errno.h>
30 534afd0d 2022-10-05 op #include <netdb.h>
31 6abda252 2021-02-06 op #include <stdarg.h>
32 15902770 2021-01-15 op #include <stdio.h>
33 74f0778b 2021-06-16 op #include <stdlib.h>
34 32693ee6 2021-01-28 op #include <string.h>
35 df5058c9 2023-06-05 op
36 df5058c9 2023-06-05 op #include "log.h"
37 15902770 2021-01-15 op
38 af1dab18 2023-06-09 op struct conf *conf;
39 af1dab18 2023-06-09 op
40 509d0509 2023-06-23 op static const char *default_host = "*";
41 509d0509 2023-06-23 op static uint16_t default_port = 1965;
42 509d0509 2023-06-23 op
43 c39be742 2021-07-09 op TAILQ_HEAD(files, file) files = TAILQ_HEAD_INITIALIZER(files);
44 c39be742 2021-07-09 op static struct file {
45 c39be742 2021-07-09 op TAILQ_ENTRY(file) entry;
46 c39be742 2021-07-09 op FILE *stream;
47 c39be742 2021-07-09 op char *name;
48 c39be742 2021-07-09 op size_t ungetpos;
49 c39be742 2021-07-09 op size_t ungetsize;
50 c39be742 2021-07-09 op u_char *ungetbuf;
51 c39be742 2021-07-09 op int eof_reached;
52 c39be742 2021-07-09 op int lineno;
53 c39be742 2021-07-09 op int errors;
54 c39be742 2021-07-09 op } *file, *topfile;
55 74f0778b 2021-06-16 op
56 c39be742 2021-07-09 op struct file *pushfile(const char *, int);
57 c39be742 2021-07-09 op int popfile(void);
58 c39be742 2021-07-09 op int yyparse(void);
59 c39be742 2021-07-09 op int yylex(void);
60 c39be742 2021-07-09 op void yyerror(const char *, ...)
61 c39be742 2021-07-09 op __attribute__((__format__ (printf, 1, 2)))
62 c39be742 2021-07-09 op __attribute__((__nonnull__ (1)));
63 f3966209 2021-07-13 op void yywarn(const char *, ...)
64 f3966209 2021-07-13 op __attribute__((__format__ (printf, 1, 2)))
65 f3966209 2021-07-13 op __attribute__((__nonnull__ (1)));
66 c39be742 2021-07-09 op int kw_cmp(const void *, const void *);
67 c39be742 2021-07-09 op int lookup(char *);
68 c39be742 2021-07-09 op int igetc(void);
69 c39be742 2021-07-09 op int lgetc(int);
70 c39be742 2021-07-09 op void lungetc(int);
71 c39be742 2021-07-09 op int findeol(void);
72 ef129b08 2021-06-16 op
73 15902770 2021-01-15 op /*
74 15902770 2021-01-15 op * #define YYDEBUG 1
75 15902770 2021-01-15 op * int yydebug = 1;
76 15902770 2021-01-15 op */
77 15902770 2021-01-15 op
78 3b21cca3 2021-06-29 op TAILQ_HEAD(symhead, sym) symhead = TAILQ_HEAD_INITIALIZER(symhead);
79 3b21cca3 2021-06-29 op struct sym {
80 3b21cca3 2021-06-29 op TAILQ_ENTRY(sym) entry;
81 3b21cca3 2021-06-29 op int used;
82 3b21cca3 2021-06-29 op int persist;
83 3b21cca3 2021-06-29 op char *name;
84 3b21cca3 2021-06-29 op char *val;
85 3b21cca3 2021-06-29 op };
86 3b21cca3 2021-06-29 op
87 c39be742 2021-07-09 op int symset(const char *, const char *, int);
88 c39be742 2021-07-09 op char *symget(const char *);
89 15902770 2021-01-15 op
90 e17642a7 2021-02-01 op char *ensure_absolute_path(char*);
91 6abda252 2021-02-06 op int check_block_code(int);
92 6abda252 2021-02-06 op char *check_block_fmt(char*);
93 6abda252 2021-02-06 op int check_strip_no(int);
94 391825e3 2021-07-09 op int check_port_num(int);
95 a709ddf5 2021-02-07 op int check_prefork_num(int);
96 49b73ba1 2021-02-10 op void advance_loc(void);
97 b7967bc1 2021-01-02 op void advance_proxy(void);
98 b7967bc1 2021-01-02 op void parsehp(char *, char **, const char **, const char *);
99 7b00c890 2022-10-05 op int fastcgi_conf(const char *, const char *);
100 2025e96d 2022-09-10 op void add_param(char *, char *);
101 534afd0d 2022-10-05 op int getservice(const char *);
102 509d0509 2023-06-23 op void listen_on(const char *, const char *);
103 13ed2fb6 2021-01-27 op
104 c39be742 2021-07-09 op static struct vhost *host;
105 c39be742 2021-07-09 op static struct location *loc;
106 b7967bc1 2021-01-02 op static struct proxy *proxy;
107 ee219d70 2022-02-26 op static char *current_media;
108 c39be742 2021-07-09 op static int errors;
109 c39be742 2021-07-09 op
110 c39be742 2021-07-09 op typedef struct {
111 c39be742 2021-07-09 op union {
112 c39be742 2021-07-09 op char *string;
113 c39be742 2021-07-09 op int number;
114 c39be742 2021-07-09 op } v;
115 c39be742 2021-07-09 op int lineno;
116 c39be742 2021-07-09 op } YYSTYPE;
117 8af9da98 2023-06-13 op
118 8af9da98 2023-06-13 op #define YYSTYPE YYSTYPE
119 c39be742 2021-07-09 op
120 15902770 2021-01-15 op %}
121 15902770 2021-01-15 op
122 15902770 2021-01-15 op /* for bison: */
123 15902770 2021-01-15 op /* %define parse.error verbose */
124 15902770 2021-01-15 op
125 c74c7030 2021-07-19 op %token ALIAS AUTO
126 c74c7030 2021-07-19 op %token BLOCK
127 d29a2ee2 2022-09-06 op %token CA CERT CHROOT CLIENT
128 c74c7030 2021-07-19 op %token DEFAULT
129 b7967bc1 2021-01-02 op %token FASTCGI FOR_HOST
130 c74c7030 2021-07-19 op %token INCLUDE INDEX IPV6
131 c74c7030 2021-07-19 op %token KEY
132 509d0509 2023-06-23 op %token LANG LISTEN LOCATION LOG
133 ff05125e 2021-10-15 op %token OCSP OFF ON
134 b7967bc1 2021-01-02 op %token PARAM PORT PREFORK PROTO PROTOCOLS PROXY
135 72b033ef 2021-12-29 op %token RELAY_TO REQUIRE RETURN ROOT
136 7b00c890 2022-10-05 op %token SERVER SNI STRIP
137 ee219d70 2022-02-26 op %token TCP TOEXT TYPE TYPES
138 593e412b 2021-01-01 op %token USE_TLS USER
139 5128c0b0 2021-01-01 op %token VERIFYNAME
140 d06d6f4b 2021-04-29 op
141 c39be742 2021-07-09 op %token ERROR
142 7252049d 2021-06-29 op
143 c39be742 2021-07-09 op %token <v.string> STRING
144 c39be742 2021-07-09 op %token <v.number> NUM
145 15902770 2021-01-15 op
146 534afd0d 2022-10-05 op %type <v.number> bool proxy_port
147 a7a998ac 2023-06-23 op %type <v.string> string numberstring listen_addr
148 98f52178 2021-06-29 op
149 15902770 2021-01-15 op %%
150 15902770 2021-01-15 op
151 6b86655a 2021-06-29 op conf : /* empty */
152 c39be742 2021-07-09 op | conf include '\n'
153 c39be742 2021-07-09 op | conf '\n'
154 c39be742 2021-07-09 op | conf varset '\n'
155 c39be742 2021-07-09 op | conf option '\n'
156 c39be742 2021-07-09 op | conf vhost '\n'
157 ee219d70 2022-02-26 op | conf types '\n'
158 c39be742 2021-07-09 op | conf error '\n' { file->errors++; }
159 3b21cca3 2021-06-29 op ;
160 3b21cca3 2021-06-29 op
161 c39be742 2021-07-09 op include : INCLUDE STRING {
162 c39be742 2021-07-09 op struct file *nfile;
163 c39be742 2021-07-09 op
164 c39be742 2021-07-09 op if ((nfile = pushfile($2, 0)) == NULL) {
165 c39be742 2021-07-09 op yyerror("failed to include file %s", $2);
166 c39be742 2021-07-09 op free($2);
167 c39be742 2021-07-09 op YYERROR;
168 c39be742 2021-07-09 op }
169 c39be742 2021-07-09 op free($2);
170 c39be742 2021-07-09 op
171 c39be742 2021-07-09 op file = nfile;
172 c39be742 2021-07-09 op lungetc('\n');
173 c39be742 2021-07-09 op }
174 c39be742 2021-07-09 op ;
175 c39be742 2021-07-09 op
176 c74c7030 2021-07-19 op bool : ON { $$ = 1; }
177 c74c7030 2021-07-19 op | OFF { $$ = 0; }
178 c39be742 2021-07-09 op ;
179 c39be742 2021-07-09 op
180 c39be742 2021-07-09 op string : string STRING {
181 98f52178 2021-06-29 op if (asprintf(&$$, "%s%s", $1, $2) == -1) {
182 98f52178 2021-06-29 op free($1);
183 98f52178 2021-06-29 op free($2);
184 98f52178 2021-06-29 op yyerror("string: asprintf: %s", strerror(errno));
185 98f52178 2021-06-29 op YYERROR;
186 98f52178 2021-06-29 op }
187 98f52178 2021-06-29 op free($1);
188 98f52178 2021-06-29 op free($2);
189 98f52178 2021-06-29 op }
190 c39be742 2021-07-09 op | STRING
191 98f52178 2021-06-29 op ;
192 98f52178 2021-06-29 op
193 ee219d70 2022-02-26 op numberstring : NUM {
194 ee219d70 2022-02-26 op char *s;
195 ee219d70 2022-02-26 op if (asprintf(&s, "%d", $1) == -1) {
196 ee219d70 2022-02-26 op yyerror("asprintf: number");
197 ee219d70 2022-02-26 op YYERROR;
198 ee219d70 2022-02-26 op }
199 ee219d70 2022-02-26 op $$ = s;
200 ee219d70 2022-02-26 op }
201 ee219d70 2022-02-26 op | STRING
202 ee219d70 2022-02-26 op ;
203 ee219d70 2022-02-26 op
204 c39be742 2021-07-09 op varset : STRING '=' string {
205 3b21cca3 2021-06-29 op char *s = $1;
206 3b21cca3 2021-06-29 op while (*s++) {
207 c39be742 2021-07-09 op if (isspace((unsigned char)*s)) {
208 3b21cca3 2021-06-29 op yyerror("macro name cannot contain "
209 3b21cca3 2021-06-29 op "whitespaces");
210 3b21cca3 2021-06-29 op free($1);
211 3b21cca3 2021-06-29 op free($3);
212 3b21cca3 2021-06-29 op YYERROR;
213 3b21cca3 2021-06-29 op }
214 3b21cca3 2021-06-29 op }
215 3b21cca3 2021-06-29 op symset($1, $3, 0);
216 3b21cca3 2021-06-29 op free($1);
217 3b21cca3 2021-06-29 op free($3);
218 3b21cca3 2021-06-29 op }
219 15902770 2021-01-15 op ;
220 15902770 2021-01-15 op
221 7277bb7d 2022-09-10 op option : CHROOT string {
222 af1dab18 2023-06-09 op if (strlcpy(conf->chroot, $2, sizeof(conf->chroot)) >=
223 af1dab18 2023-06-09 op sizeof(conf->chroot))
224 7277bb7d 2022-09-10 op yyerror("chroot path too long");
225 7277bb7d 2022-09-10 op free($2);
226 7277bb7d 2022-09-10 op }
227 509d0509 2023-06-23 op | IPV6 bool {
228 509d0509 2023-06-23 op yywarn("option `ipv6' is deprecated,"
229 509d0509 2023-06-23 op " please use `listen on'");
230 509d0509 2023-06-23 op if ($2)
231 509d0509 2023-06-23 op default_host = "*";
232 509d0509 2023-06-23 op else
233 509d0509 2023-06-23 op default_host = "0.0.0.0";
234 509d0509 2023-06-23 op }
235 509d0509 2023-06-23 op | PORT NUM {
236 509d0509 2023-06-23 op yywarn("option `port' is deprecated,"
237 509d0509 2023-06-23 op " please use `listen on'");
238 509d0509 2023-06-23 op default_port = $2;
239 509d0509 2023-06-23 op }
240 af1dab18 2023-06-09 op | PREFORK NUM { conf->prefork = check_prefork_num($2); }
241 c74c7030 2021-07-19 op | PROTOCOLS string {
242 af1dab18 2023-06-09 op if (tls_config_parse_protocols(&conf->protos, $2) == -1)
243 002a84a1 2021-02-10 op yyerror("invalid protocols string \"%s\"", $2);
244 3c4b712b 2021-01-01 op free($2);
245 5bc3c98e 2021-01-15 op }
246 7277bb7d 2022-09-10 op | USER string {
247 af1dab18 2023-06-09 op if (strlcpy(conf->user, $2, sizeof(conf->user)) >=
248 af1dab18 2023-06-09 op sizeof(conf->user))
249 7277bb7d 2022-09-10 op yyerror("user name too long");
250 7277bb7d 2022-09-10 op free($2);
251 7277bb7d 2022-09-10 op }
252 15902770 2021-01-15 op ;
253 15902770 2021-01-15 op
254 c74c7030 2021-07-19 op vhost : SERVER string {
255 b8e64ccd 2021-03-31 op host = new_vhost();
256 af1dab18 2023-06-09 op TAILQ_INSERT_HEAD(&conf->hosts, host, vhosts);
257 b8e64ccd 2021-03-31 op
258 b8e64ccd 2021-03-31 op loc = new_location();
259 b8e64ccd 2021-03-31 op TAILQ_INSERT_HEAD(&host->locations, loc, locations);
260 b8e64ccd 2021-03-31 op
261 b7967bc1 2021-01-02 op TAILQ_INIT(&host->proxies);
262 b7967bc1 2021-01-02 op
263 534afd0d 2022-10-05 op (void) strlcpy(loc->match, "*", sizeof(loc->match));
264 534afd0d 2022-10-05 op (void) strlcpy(host->domain, $2, sizeof(host->domain));
265 15902770 2021-01-15 op
266 cbeee4ca 2021-01-28 op if (strstr($2, "xn--") != NULL) {
267 f3966209 2021-07-13 op yywarn("\"%s\" looks like punycode: you "
268 f3966209 2021-07-13 op "should use the decoded hostname", $2);
269 cbeee4ca 2021-01-28 op }
270 534afd0d 2022-10-05 op
271 534afd0d 2022-10-05 op free($2);
272 b7967bc1 2021-01-02 op } '{' optnl servbody '}' {
273 1c6967b3 2023-06-08 op if (host->cert_path == NULL ||
274 1c6967b3 2023-06-08 op host->key_path == NULL)
275 fc2d207c 2023-06-23 op yyerror("invalid vhost definition: %s",
276 fc2d207c 2023-06-23 op host->domain);
277 509d0509 2023-06-23 op if (TAILQ_EMPTY(&host->addrs)) {
278 509d0509 2023-06-23 op char portno[32];
279 509d0509 2023-06-23 op int r;
280 509d0509 2023-06-23 op
281 509d0509 2023-06-23 op r = snprintf(portno, sizeof(portno), "%d",
282 509d0509 2023-06-23 op default_port);
283 509d0509 2023-06-23 op if (r < 0 || (size_t)r >= sizeof(portno))
284 509d0509 2023-06-23 op fatal("snprintf");
285 509d0509 2023-06-23 op
286 509d0509 2023-06-23 op yywarn("missing `listen on' in server %s,"
287 509d0509 2023-06-23 op " assuming %s port %d", $2, default_host,
288 509d0509 2023-06-23 op default_port);
289 509d0509 2023-06-23 op listen_on(default_host, portno);
290 509d0509 2023-06-23 op }
291 15902770 2021-01-15 op }
292 f3966209 2021-07-13 op | error '}' { yyerror("bad server directive"); }
293 15902770 2021-01-15 op ;
294 15902770 2021-01-15 op
295 b7967bc1 2021-01-02 op servbody : /* empty */
296 b7967bc1 2021-01-02 op | servbody servopt optnl
297 b7967bc1 2021-01-02 op | servbody location optnl
298 b7967bc1 2021-01-02 op | servbody proxy optnl
299 a7a998ac 2023-06-23 op ;
300 a7a998ac 2023-06-23 op
301 a7a998ac 2023-06-23 op listen_addr : '*' { $$ = NULL; }
302 a7a998ac 2023-06-23 op | STRING
303 15902770 2021-01-15 op ;
304 15902770 2021-01-15 op
305 c74c7030 2021-07-19 op servopt : ALIAS string {
306 cc8c2901 2021-04-29 op struct alist *a;
307 cc8c2901 2021-04-29 op
308 cc8c2901 2021-04-29 op a = xcalloc(1, sizeof(*a));
309 534afd0d 2022-10-05 op (void) strlcpy(a->alias, $2, sizeof(a->alias));
310 534afd0d 2022-10-05 op free($2);
311 edc5ca66 2022-09-10 op TAILQ_INSERT_TAIL(&host->aliases, a, aliases);
312 cc8c2901 2021-04-29 op }
313 c74c7030 2021-07-19 op | CERT string {
314 534afd0d 2022-10-05 op ensure_absolute_path($2);
315 1c6967b3 2023-06-08 op free(host->cert_path);
316 1c6967b3 2023-06-08 op host->cert_path = $2;
317 9cc630aa 2021-04-28 op }
318 c74c7030 2021-07-19 op | KEY string {
319 534afd0d 2022-10-05 op ensure_absolute_path($2);
320 1c6967b3 2023-06-08 op free(host->key_path);
321 1c6967b3 2023-06-08 op host->key_path = $2;
322 c92b802b 2021-06-11 op }
323 ff05125e 2021-10-15 op | OCSP string {
324 534afd0d 2022-10-05 op ensure_absolute_path($2);
325 1c6967b3 2023-06-08 op free(host->ocsp_path);
326 1c6967b3 2023-06-08 op host->ocsp_path = $2;
327 ff05125e 2021-10-15 op }
328 c74c7030 2021-07-19 op | PARAM string '=' string {
329 2025e96d 2022-09-10 op add_param($2, $4);
330 509d0509 2023-06-23 op }
331 911156fb 2023-06-29 op | LISTEN ON listen_addr {
332 911156fb 2023-06-29 op listen_on($3, "1965");
333 911156fb 2023-06-29 op }
334 a7a998ac 2023-06-23 op | LISTEN ON listen_addr PORT STRING {
335 509d0509 2023-06-23 op listen_on($3, $5);
336 509d0509 2023-06-23 op free($3);
337 509d0509 2023-06-23 op free($5);
338 509d0509 2023-06-23 op }
339 a7a998ac 2023-06-23 op | LISTEN ON listen_addr PORT NUM {
340 509d0509 2023-06-23 op char portno[32];
341 509d0509 2023-06-23 op int r;
342 509d0509 2023-06-23 op
343 509d0509 2023-06-23 op r = snprintf(portno, sizeof(portno), "%d", $5);
344 509d0509 2023-06-23 op if (r < 0 || (size_t)r >= sizeof(portno))
345 509d0509 2023-06-23 op fatal("snprintf");
346 509d0509 2023-06-23 op
347 509d0509 2023-06-23 op listen_on($3, portno);
348 509d0509 2023-06-23 op free($3);
349 c705ecb1 2021-05-03 op }
350 c8b74339 2021-01-24 op | locopt
351 c8b74339 2021-01-24 op ;
352 7bdcc91e 2021-01-01 op
353 b7967bc1 2021-01-02 op proxy : PROXY { advance_proxy(); }
354 b7967bc1 2021-01-02 op proxy_matches '{' optnl proxy_opts '}' {
355 534afd0d 2022-10-05 op if (*proxy->host == '\0')
356 b7967bc1 2021-01-02 op yyerror("invalid proxy block: missing `relay-to' option");
357 b7967bc1 2021-01-02 op
358 deadd9e1 2023-06-09 op if ((proxy->cert_path == NULL && proxy->key_path != NULL) ||
359 deadd9e1 2023-06-09 op (proxy->cert_path != NULL && proxy->key_path == NULL))
360 b7967bc1 2021-01-02 op yyerror("invalid proxy block: missing cert or key");
361 b7967bc1 2021-01-02 op }
362 b7967bc1 2021-01-02 op ;
363 b7967bc1 2021-01-02 op
364 b7967bc1 2021-01-02 op proxy_matches : /* empty */
365 b7967bc1 2021-01-02 op | proxy_matches proxy_match
366 b7967bc1 2021-01-02 op ;
367 b7967bc1 2021-01-02 op
368 534afd0d 2022-10-05 op proxy_port : /* empty */ { $$ = 1965; }
369 534afd0d 2022-10-05 op | PORT STRING {
370 534afd0d 2022-10-05 op if (($$ = getservice($2)) == -1)
371 534afd0d 2022-10-05 op yyerror("invalid port number %s", $2);
372 534afd0d 2022-10-05 op free($2);
373 534afd0d 2022-10-05 op }
374 534afd0d 2022-10-05 op | PORT NUM { $$ = $2; }
375 534afd0d 2022-10-05 op ;
376 534afd0d 2022-10-05 op
377 b7967bc1 2021-01-02 op proxy_match : PROTO string {
378 534afd0d 2022-10-05 op (void) strlcpy(proxy->match_proto, $2, sizeof(proxy->match_proto));
379 534afd0d 2022-10-05 op free($2);
380 b7967bc1 2021-01-02 op }
381 534afd0d 2022-10-05 op | FOR_HOST string proxy_port {
382 534afd0d 2022-10-05 op (void) strlcpy(proxy->match_host, $2, sizeof(proxy->match_host));
383 534afd0d 2022-10-05 op (void) snprintf(proxy->match_port, sizeof(proxy->match_port),
384 534afd0d 2022-10-05 op "%d", $3);
385 534afd0d 2022-10-05 op free($2);
386 b7967bc1 2021-01-02 op }
387 7bdcc91e 2021-01-01 op ;
388 7bdcc91e 2021-01-01 op
389 7bdcc91e 2021-01-01 op proxy_opts : /* empty */
390 7bdcc91e 2021-01-01 op | proxy_opts proxy_opt optnl
391 7bdcc91e 2021-01-01 op ;
392 7bdcc91e 2021-01-01 op
393 7bdcc91e 2021-01-01 op proxy_opt : CERT string {
394 deadd9e1 2023-06-09 op free(proxy->cert);
395 7bdcc91e 2021-01-01 op ensure_absolute_path($2);
396 deadd9e1 2023-06-09 op proxy->cert_path = $2;
397 7bdcc91e 2021-01-01 op }
398 7bdcc91e 2021-01-01 op | KEY string {
399 deadd9e1 2023-06-09 op free(proxy->key);
400 7bdcc91e 2021-01-01 op ensure_absolute_path($2);
401 deadd9e1 2023-06-09 op proxy->key_path = $2;
402 c7c8ef44 2021-01-01 op }
403 c7c8ef44 2021-01-01 op | PROTOCOLS string {
404 b7967bc1 2021-01-02 op if (tls_config_parse_protocols(&proxy->protocols, $2) == -1)
405 c7c8ef44 2021-01-01 op yyerror("invalid protocols string \"%s\"", $2);
406 3c4b712b 2021-01-01 op free($2);
407 7bdcc91e 2021-01-01 op }
408 534afd0d 2022-10-05 op | RELAY_TO string proxy_port {
409 534afd0d 2022-10-05 op (void) strlcpy(proxy->host, $2, sizeof(proxy->host));
410 534afd0d 2022-10-05 op (void) snprintf(proxy->port, sizeof(proxy->port),
411 534afd0d 2022-10-05 op "%d", $3);
412 534afd0d 2022-10-05 op free($2);
413 593e412b 2021-01-01 op }
414 ba94a608 2022-01-04 op | REQUIRE CLIENT CA string {
415 ba94a608 2022-01-04 op ensure_absolute_path($4);
416 deadd9e1 2023-06-09 op proxy->reqca_path = $4;
417 1cdea97b 2022-01-30 op }
418 1cdea97b 2022-01-30 op | SNI string {
419 534afd0d 2022-10-05 op (void) strlcpy(proxy->sni, $2, sizeof(proxy->sni));
420 534afd0d 2022-10-05 op free($2);
421 ba94a608 2022-01-04 op }
422 593e412b 2021-01-01 op | USE_TLS bool {
423 b7967bc1 2021-01-02 op proxy->notls = !$2;
424 7bdcc91e 2021-01-01 op }
425 5128c0b0 2021-01-01 op | VERIFYNAME bool {
426 b7967bc1 2021-01-02 op proxy->noverifyname = !$2;
427 5128c0b0 2021-01-01 op }
428 7bdcc91e 2021-01-01 op ;
429 7bdcc91e 2021-01-01 op
430 c74c7030 2021-07-19 op location : LOCATION { advance_loc(); } string '{' optnl locopts '}' {
431 49b73ba1 2021-02-10 op /* drop the starting '/' if any */
432 49b73ba1 2021-02-10 op if (*$3 == '/')
433 49b73ba1 2021-02-10 op memmove($3, $3+1, strlen($3));
434 534afd0d 2022-10-05 op (void) strlcpy(loc->match, $3, sizeof(loc->match));
435 534afd0d 2022-10-05 op free($3);
436 6119e13e 2021-01-19 op }
437 c8b74339 2021-01-24 op | error '}'
438 c8b74339 2021-01-24 op ;
439 c8b74339 2021-01-24 op
440 c8b74339 2021-01-24 op locopts : /* empty */
441 c39be742 2021-07-09 op | locopts locopt optnl
442 c8b74339 2021-01-24 op ;
443 c8b74339 2021-01-24 op
444 c74c7030 2021-07-19 op locopt : AUTO INDEX bool { loc->auto_index = $3 ? 1 : -1; }
445 c74c7030 2021-07-19 op | BLOCK RETURN NUM string {
446 534afd0d 2022-10-05 op check_block_fmt($4);
447 534afd0d 2022-10-05 op (void) strlcpy(loc->block_fmt, $4, sizeof(loc->block_fmt));
448 6abda252 2021-02-06 op loc->block_code = check_block_code($3);
449 534afd0d 2022-10-05 op free($4);
450 6abda252 2021-02-06 op }
451 c74c7030 2021-07-19 op | BLOCK RETURN NUM {
452 534afd0d 2022-10-05 op (void) strlcpy(loc->block_fmt, "temporary failure",
453 534afd0d 2022-10-05 op sizeof(loc->block_fmt));
454 6abda252 2021-02-06 op loc->block_code = check_block_code($3);
455 6abda252 2021-02-06 op if ($3 >= 30 && $3 < 40)
456 6abda252 2021-02-06 op yyerror("missing `meta' for block return %d", $3);
457 6abda252 2021-02-06 op }
458 c74c7030 2021-07-19 op | BLOCK {
459 534afd0d 2022-10-05 op (void) strlcpy(loc->block_fmt, "temporary failure",
460 534afd0d 2022-10-05 op sizeof(loc->block_fmt));
461 6abda252 2021-02-06 op loc->block_code = 40;
462 6abda252 2021-02-06 op }
463 c74c7030 2021-07-19 op | DEFAULT TYPE string {
464 534afd0d 2022-10-05 op (void) strlcpy(loc->default_mime, $3,
465 534afd0d 2022-10-05 op sizeof(loc->default_mime));
466 534afd0d 2022-10-05 op free($3);
467 eb59f87e 2021-02-09 op }
468 abc8801d 2021-07-19 op | FASTCGI fastcgi
469 c74c7030 2021-07-19 op | INDEX string {
470 534afd0d 2022-10-05 op (void) strlcpy(loc->index, $2, sizeof(loc->index));
471 534afd0d 2022-10-05 op free($2);
472 eb59f87e 2021-02-09 op }
473 c74c7030 2021-07-19 op | LANG string {
474 534afd0d 2022-10-05 op (void) strlcpy(loc->lang, $2,
475 534afd0d 2022-10-05 op sizeof(loc->lang));
476 534afd0d 2022-10-05 op free($2);
477 eb59f87e 2021-02-09 op }
478 c74c7030 2021-07-19 op | LOG bool { loc->disable_log = !$2; }
479 da2185f3 2021-01-01 op | REQUIRE CLIENT CA string {
480 da2185f3 2021-01-01 op ensure_absolute_path($4);
481 deadd9e1 2023-06-09 op loc->reqca_path = $4;
482 da2185f3 2021-01-01 op }
483 da2185f3 2021-01-01 op | ROOT string {
484 534afd0d 2022-10-05 op (void) strlcpy(loc->dir, $2, sizeof(loc->dir));
485 534afd0d 2022-10-05 op free($2);
486 da2185f3 2021-01-01 op }
487 da2185f3 2021-01-01 op | STRIP NUM { loc->strip = check_strip_no($2); }
488 da2185f3 2021-01-01 op ;
489 da2185f3 2021-01-01 op
490 7b00c890 2022-10-05 op fastcgi : string {
491 7b00c890 2022-10-05 op loc->fcgi = fastcgi_conf($1, NULL);
492 534afd0d 2022-10-05 op free($1);
493 0d047efc 2021-05-24 op }
494 c74c7030 2021-07-19 op | TCP string PORT NUM {
495 0d047efc 2021-05-24 op char *c;
496 762b9b99 2021-07-09 op if (asprintf(&c, "%d", $4) == -1)
497 792f302a 2023-06-09 op fatal("asprintf");
498 7b00c890 2022-10-05 op loc->fcgi = fastcgi_conf($2, c);
499 534afd0d 2022-10-05 op free($2);
500 0d047efc 2021-05-24 op }
501 c74c7030 2021-07-19 op | TCP string {
502 7b00c890 2022-10-05 op loc->fcgi = fastcgi_conf($2, "9000");
503 534afd0d 2022-10-05 op free($2);
504 0d047efc 2021-05-24 op }
505 c74c7030 2021-07-19 op | TCP string PORT string {
506 7b00c890 2022-10-05 op loc->fcgi = fastcgi_conf($2, $4);
507 534afd0d 2022-10-05 op free($2);
508 534afd0d 2022-10-05 op free($4);
509 0d047efc 2021-05-24 op }
510 ee219d70 2022-02-26 op ;
511 ee219d70 2022-02-26 op
512 cd5826b8 2022-09-10 op types : TYPES '{' optnl mediaopts_l '}' ;
513 0d047efc 2021-05-24 op
514 ee219d70 2022-02-26 op mediaopts_l : mediaopts_l mediaoptsl nl
515 ee219d70 2022-02-26 op | mediaoptsl nl
516 ee219d70 2022-02-26 op ;
517 ee219d70 2022-02-26 op
518 aa9543b9 2022-09-10 op mediaoptsl : STRING {
519 aa9543b9 2022-09-10 op free(current_media);
520 aa9543b9 2022-09-10 op current_media = $1;
521 aa9543b9 2022-09-10 op } medianames_l optsemicolon
522 ee219d70 2022-02-26 op | include
523 ee219d70 2022-02-26 op ;
524 ee219d70 2022-02-26 op
525 ee219d70 2022-02-26 op medianames_l : medianames_l medianamesl
526 ee219d70 2022-02-26 op | medianamesl
527 ee219d70 2022-02-26 op ;
528 ee219d70 2022-02-26 op
529 d8d170aa 2022-04-08 op medianamesl : numberstring {
530 af1dab18 2023-06-09 op if (add_mime(&conf->mime, current_media, $1) == -1)
531 792f302a 2023-06-09 op fatal("add_mime");
532 aa9543b9 2022-09-10 op free($1);
533 d8d170aa 2022-04-08 op }
534 ee219d70 2022-02-26 op ;
535 ee219d70 2022-02-26 op
536 ee219d70 2022-02-26 op nl : '\n' optnl
537 ee219d70 2022-02-26 op ;
538 ee219d70 2022-02-26 op
539 c39be742 2021-07-09 op optnl : '\n' optnl /* zero or more newlines */
540 67f49405 2021-07-09 op | ';' optnl /* semicolons too */
541 c39be742 2021-07-09 op | /*empty*/
542 c39be742 2021-07-09 op ;
543 fdea6aa0 2021-04-30 op
544 ee219d70 2022-02-26 op optsemicolon : ';'
545 ee219d70 2022-02-26 op |
546 ee219d70 2022-02-26 op ;
547 ee219d70 2022-02-26 op
548 c39be742 2021-07-09 op %%
549 b8e64ccd 2021-03-31 op
550 e5d82d94 2022-03-19 op static const struct keyword {
551 74f0778b 2021-06-16 op const char *word;
552 74f0778b 2021-06-16 op int token;
553 74f0778b 2021-06-16 op } keywords[] = {
554 d93c8191 2021-07-09 op /* these MUST be sorted */
555 c74c7030 2021-07-19 op {"alias", ALIAS},
556 c74c7030 2021-07-19 op {"auto", AUTO},
557 c74c7030 2021-07-19 op {"block", BLOCK},
558 c74c7030 2021-07-19 op {"ca", CA},
559 c74c7030 2021-07-19 op {"cert", CERT},
560 c74c7030 2021-07-19 op {"chroot", CHROOT},
561 c74c7030 2021-07-19 op {"client", CLIENT},
562 c74c7030 2021-07-19 op {"default", DEFAULT},
563 abc8801d 2021-07-19 op {"fastcgi", FASTCGI},
564 b7967bc1 2021-01-02 op {"for-host", FOR_HOST},
565 88971f9a 2022-02-26 op {"include", INCLUDE},
566 c74c7030 2021-07-19 op {"index", INDEX},
567 c74c7030 2021-07-19 op {"ipv6", IPV6},
568 c74c7030 2021-07-19 op {"key", KEY},
569 c74c7030 2021-07-19 op {"lang", LANG},
570 509d0509 2023-06-23 op {"listen", LISTEN},
571 c74c7030 2021-07-19 op {"location", LOCATION},
572 c74c7030 2021-07-19 op {"log", LOG},
573 ff05125e 2021-10-15 op {"ocsp", OCSP},
574 c74c7030 2021-07-19 op {"off", OFF},
575 c74c7030 2021-07-19 op {"on", ON},
576 c74c7030 2021-07-19 op {"param", PARAM},
577 c74c7030 2021-07-19 op {"port", PORT},
578 c74c7030 2021-07-19 op {"prefork", PREFORK},
579 b7967bc1 2021-01-02 op {"proto", PROTO},
580 c74c7030 2021-07-19 op {"protocols", PROTOCOLS},
581 72b033ef 2021-12-29 op {"proxy", PROXY},
582 72b033ef 2021-12-29 op {"relay-to", RELAY_TO},
583 c74c7030 2021-07-19 op {"require", REQUIRE},
584 c74c7030 2021-07-19 op {"return", RETURN},
585 c74c7030 2021-07-19 op {"root", ROOT},
586 c74c7030 2021-07-19 op {"server", SERVER},
587 1cdea97b 2022-01-30 op {"sni", SNI},
588 c74c7030 2021-07-19 op {"strip", STRIP},
589 c74c7030 2021-07-19 op {"tcp", TCP},
590 c74c7030 2021-07-19 op {"to-ext", TOEXT},
591 c74c7030 2021-07-19 op {"type", TYPE},
592 ee219d70 2022-02-26 op {"types", TYPES},
593 593e412b 2021-01-01 op {"use-tls", USE_TLS},
594 c74c7030 2021-07-19 op {"user", USER},
595 5128c0b0 2021-01-01 op {"verifyname", VERIFYNAME},
596 74f0778b 2021-06-16 op };
597 74f0778b 2021-06-16 op
598 c39be742 2021-07-09 op void
599 c39be742 2021-07-09 op yyerror(const char *msg, ...)
600 c39be742 2021-07-09 op {
601 c39be742 2021-07-09 op va_list ap;
602 c39be742 2021-07-09 op
603 c39be742 2021-07-09 op file->errors++;
604 c39be742 2021-07-09 op
605 c39be742 2021-07-09 op va_start(ap, msg);
606 f3966209 2021-07-13 op fprintf(stderr, "%s:%d error: ", config_path, yylval.lineno);
607 f3966209 2021-07-13 op vfprintf(stderr, msg, ap);
608 f3966209 2021-07-13 op fprintf(stderr, "\n");
609 f3966209 2021-07-13 op va_end(ap);
610 f3966209 2021-07-13 op }
611 f3966209 2021-07-13 op
612 f3966209 2021-07-13 op void
613 f3966209 2021-07-13 op yywarn(const char *msg, ...)
614 f3966209 2021-07-13 op {
615 f3966209 2021-07-13 op va_list ap;
616 f3966209 2021-07-13 op
617 f3966209 2021-07-13 op va_start(ap, msg);
618 f3966209 2021-07-13 op fprintf(stderr, "%s:%d warning: ", config_path, yylval.lineno);
619 c39be742 2021-07-09 op vfprintf(stderr, msg, ap);
620 c39be742 2021-07-09 op fprintf(stderr, "\n");
621 c39be742 2021-07-09 op va_end(ap);
622 c39be742 2021-07-09 op }
623 c39be742 2021-07-09 op
624 d93c8191 2021-07-09 op int
625 d93c8191 2021-07-09 op kw_cmp(const void *k, const void *e)
626 d93c8191 2021-07-09 op {
627 d93c8191 2021-07-09 op return strcmp(k, ((struct keyword *)e)->word);
628 d93c8191 2021-07-09 op }
629 d93c8191 2021-07-09 op
630 c39be742 2021-07-09 op int
631 c39be742 2021-07-09 op lookup(char *s)
632 74f0778b 2021-06-16 op {
633 c39be742 2021-07-09 op const struct keyword *p;
634 74f0778b 2021-06-16 op
635 c39be742 2021-07-09 op p = bsearch(s, keywords, sizeof(keywords)/sizeof(keywords[0]),
636 c39be742 2021-07-09 op sizeof(keywords[0]), kw_cmp);
637 74f0778b 2021-06-16 op
638 c39be742 2021-07-09 op if (p)
639 c39be742 2021-07-09 op return p->token;
640 c39be742 2021-07-09 op else
641 c39be742 2021-07-09 op return STRING;
642 c39be742 2021-07-09 op }
643 c39be742 2021-07-09 op
644 c39be742 2021-07-09 op #define START_EXPAND 1
645 c39be742 2021-07-09 op #define DONE_EXPAND 2
646 c39be742 2021-07-09 op
647 c39be742 2021-07-09 op static int expanding;
648 c39be742 2021-07-09 op
649 c39be742 2021-07-09 op int
650 c39be742 2021-07-09 op igetc(void)
651 c39be742 2021-07-09 op {
652 c39be742 2021-07-09 op int c;
653 c39be742 2021-07-09 op
654 c39be742 2021-07-09 op while (1) {
655 c39be742 2021-07-09 op if (file->ungetpos > 0)
656 c39be742 2021-07-09 op c = file->ungetbuf[--file->ungetpos];
657 c39be742 2021-07-09 op else
658 c39be742 2021-07-09 op c = getc(file->stream);
659 c39be742 2021-07-09 op
660 c39be742 2021-07-09 op if (c == START_EXPAND)
661 c39be742 2021-07-09 op expanding = 1;
662 c39be742 2021-07-09 op else if (c == DONE_EXPAND)
663 c39be742 2021-07-09 op expanding = 0;
664 c39be742 2021-07-09 op else
665 c39be742 2021-07-09 op break;
666 74f0778b 2021-06-16 op }
667 c39be742 2021-07-09 op return c;
668 c39be742 2021-07-09 op }
669 74f0778b 2021-06-16 op
670 c39be742 2021-07-09 op int
671 c39be742 2021-07-09 op lgetc(int quotec)
672 c39be742 2021-07-09 op {
673 c39be742 2021-07-09 op int c, next;
674 c39be742 2021-07-09 op
675 c39be742 2021-07-09 op if (quotec) {
676 c39be742 2021-07-09 op if ((c = igetc()) == EOF) {
677 c39be742 2021-07-09 op yyerror("reached end of file while parsing "
678 c39be742 2021-07-09 op "quoted string");
679 c39be742 2021-07-09 op if (file == topfile || popfile() == EOF)
680 c39be742 2021-07-09 op return EOF;
681 c39be742 2021-07-09 op return quotec;
682 c39be742 2021-07-09 op }
683 74f0778b 2021-06-16 op return c;
684 74f0778b 2021-06-16 op }
685 74f0778b 2021-06-16 op
686 c39be742 2021-07-09 op while ((c = igetc()) == '\\') {
687 c39be742 2021-07-09 op next = igetc();
688 c39be742 2021-07-09 op if (next != '\n') {
689 c39be742 2021-07-09 op c = next;
690 74f0778b 2021-06-16 op break;
691 c39be742 2021-07-09 op }
692 c39be742 2021-07-09 op yylval.lineno = file->lineno;
693 c39be742 2021-07-09 op file->lineno++;
694 c39be742 2021-07-09 op }
695 3b21cca3 2021-06-29 op
696 c39be742 2021-07-09 op if (c == EOF) {
697 c39be742 2021-07-09 op /*
698 c39be742 2021-07-09 op * Fake EOL when hit EOF for the first time. This gets line
699 c39be742 2021-07-09 op * count right if last line in included file is syntactically
700 c39be742 2021-07-09 op * invalid and has no newline.
701 c39be742 2021-07-09 op */
702 c39be742 2021-07-09 op if (file->eof_reached == 0) {
703 c39be742 2021-07-09 op file->eof_reached = 1;
704 c39be742 2021-07-09 op return '\n';
705 c39be742 2021-07-09 op }
706 c39be742 2021-07-09 op while (c == EOF) {
707 c39be742 2021-07-09 op if (file == topfile || popfile() == EOF)
708 c39be742 2021-07-09 op return EOF;
709 c39be742 2021-07-09 op c = igetc();
710 c39be742 2021-07-09 op }
711 c39be742 2021-07-09 op }
712 c39be742 2021-07-09 op return c;
713 c39be742 2021-07-09 op }
714 c39be742 2021-07-09 op
715 c39be742 2021-07-09 op void
716 c39be742 2021-07-09 op lungetc(int c)
717 c39be742 2021-07-09 op {
718 c39be742 2021-07-09 op if (c == EOF)
719 c39be742 2021-07-09 op return;
720 c39be742 2021-07-09 op
721 c39be742 2021-07-09 op if (file->ungetpos >= file->ungetsize) {
722 c39be742 2021-07-09 op void *p = reallocarray(file->ungetbuf, file->ungetsize, 2);
723 c39be742 2021-07-09 op if (p == NULL)
724 2dd5994a 2023-06-06 op fatal("lungetc");
725 c39be742 2021-07-09 op file->ungetbuf = p;
726 c39be742 2021-07-09 op file->ungetsize *= 2;
727 c39be742 2021-07-09 op }
728 c39be742 2021-07-09 op file->ungetbuf[file->ungetpos++] = c;
729 c39be742 2021-07-09 op }
730 c39be742 2021-07-09 op
731 c39be742 2021-07-09 op int
732 c39be742 2021-07-09 op findeol(void)
733 c39be742 2021-07-09 op {
734 c39be742 2021-07-09 op int c;
735 c39be742 2021-07-09 op
736 c39be742 2021-07-09 op /* Skip to either EOF or the first real EOL. */
737 c39be742 2021-07-09 op while (1) {
738 c39be742 2021-07-09 op c = lgetc(0);
739 c39be742 2021-07-09 op if (c == '\n') {
740 c39be742 2021-07-09 op file->lineno++;
741 3b21cca3 2021-06-29 op break;
742 c39be742 2021-07-09 op }
743 c39be742 2021-07-09 op if (c == EOF)
744 74f0778b 2021-06-16 op break;
745 c39be742 2021-07-09 op }
746 c39be742 2021-07-09 op return ERROR;
747 c39be742 2021-07-09 op }
748 c39be742 2021-07-09 op
749 c39be742 2021-07-09 op int
750 c39be742 2021-07-09 op yylex(void)
751 c39be742 2021-07-09 op {
752 1bd706dc 2021-07-09 op char buf[8096];
753 1bd706dc 2021-07-09 op char *p, *val;
754 1bd706dc 2021-07-09 op int quotec, next, c;
755 1bd706dc 2021-07-09 op int token;
756 c39be742 2021-07-09 op
757 c39be742 2021-07-09 op top:
758 c39be742 2021-07-09 op p = buf;
759 c39be742 2021-07-09 op while ((c = lgetc(0)) == ' ' || c == '\t')
760 c39be742 2021-07-09 op ; /* nothing */
761 c39be742 2021-07-09 op
762 c39be742 2021-07-09 op yylval.lineno = file->lineno;
763 c39be742 2021-07-09 op if (c == '#')
764 c39be742 2021-07-09 op while ((c = lgetc(0)) != '\n' && c != EOF)
765 c39be742 2021-07-09 op ; /* nothing */
766 c39be742 2021-07-09 op if (c == '$' && !expanding) {
767 c39be742 2021-07-09 op while (1) {
768 c39be742 2021-07-09 op if ((c = lgetc(0)) == EOF)
769 c39be742 2021-07-09 op return 0;
770 67f49405 2021-07-09 op if (p + 1 >= buf + sizeof(buf) -1) {
771 67f49405 2021-07-09 op yyerror("string too long");
772 67f49405 2021-07-09 op return findeol();
773 67f49405 2021-07-09 op }
774 67f49405 2021-07-09 op if (isalnum(c) || c == '_') {
775 67f49405 2021-07-09 op *p++ = c;
776 67f49405 2021-07-09 op continue;
777 67f49405 2021-07-09 op }
778 67f49405 2021-07-09 op *p = '\0';
779 67f49405 2021-07-09 op lungetc(c);
780 67f49405 2021-07-09 op break;
781 67f49405 2021-07-09 op }
782 67f49405 2021-07-09 op val = symget(buf);
783 67f49405 2021-07-09 op if (val == NULL) {
784 67f49405 2021-07-09 op yyerror("macro `%s' not defined", buf);
785 67f49405 2021-07-09 op return findeol();
786 67f49405 2021-07-09 op }
787 67f49405 2021-07-09 op yylval.v.string = xstrdup(val);
788 67f49405 2021-07-09 op return STRING;
789 67f49405 2021-07-09 op }
790 67f49405 2021-07-09 op if (c == '@' && !expanding) {
791 67f49405 2021-07-09 op while (1) {
792 67f49405 2021-07-09 op if ((c = lgetc(0)) == EOF)
793 67f49405 2021-07-09 op return 0;
794 c39be742 2021-07-09 op
795 c39be742 2021-07-09 op if (p + 1 >= buf + sizeof(buf) - 1) {
796 c39be742 2021-07-09 op yyerror("string too long");
797 c39be742 2021-07-09 op return findeol();
798 c39be742 2021-07-09 op }
799 c39be742 2021-07-09 op if (isalnum(c) || c == '_') {
800 c39be742 2021-07-09 op *p++ = c;
801 74f0778b 2021-06-16 op continue;
802 74f0778b 2021-06-16 op }
803 c39be742 2021-07-09 op *p = '\0';
804 c39be742 2021-07-09 op lungetc(c);
805 c39be742 2021-07-09 op break;
806 74f0778b 2021-06-16 op }
807 c39be742 2021-07-09 op val = symget(buf);
808 c39be742 2021-07-09 op if (val == NULL) {
809 c39be742 2021-07-09 op yyerror("macro '%s' not defined", buf);
810 c39be742 2021-07-09 op return findeol();
811 74f0778b 2021-06-16 op }
812 c39be742 2021-07-09 op p = val + strlen(val) - 1;
813 c39be742 2021-07-09 op lungetc(DONE_EXPAND);
814 c39be742 2021-07-09 op while (p >= val) {
815 c39be742 2021-07-09 op lungetc(*p);
816 c39be742 2021-07-09 op p--;
817 c39be742 2021-07-09 op }
818 c39be742 2021-07-09 op lungetc(START_EXPAND);
819 c39be742 2021-07-09 op goto top;
820 74f0778b 2021-06-16 op }
821 74f0778b 2021-06-16 op
822 c39be742 2021-07-09 op switch (c) {
823 c39be742 2021-07-09 op case '\'':
824 c39be742 2021-07-09 op case '"':
825 c39be742 2021-07-09 op quotec = c;
826 c39be742 2021-07-09 op while (1) {
827 c39be742 2021-07-09 op if ((c = lgetc(quotec)) == EOF)
828 c39be742 2021-07-09 op return 0;
829 c39be742 2021-07-09 op if (c == '\n') {
830 c39be742 2021-07-09 op file->lineno++;
831 c39be742 2021-07-09 op continue;
832 c39be742 2021-07-09 op } else if (c == '\\') {
833 c39be742 2021-07-09 op if ((next = lgetc(quotec)) == EOF)
834 c39be742 2021-07-09 op return (0);
835 c39be742 2021-07-09 op if (next == quotec || next == ' ' ||
836 c39be742 2021-07-09 op next == '\t')
837 c39be742 2021-07-09 op c = next;
838 c39be742 2021-07-09 op else if (next == '\n') {
839 c39be742 2021-07-09 op file->lineno++;
840 c39be742 2021-07-09 op continue;
841 c39be742 2021-07-09 op } else
842 c39be742 2021-07-09 op lungetc(next);
843 c39be742 2021-07-09 op } else if (c == quotec) {
844 c39be742 2021-07-09 op *p = '\0';
845 c39be742 2021-07-09 op break;
846 c39be742 2021-07-09 op } else if (c == '\0') {
847 f3966209 2021-07-13 op yyerror("invalid syntax");
848 c39be742 2021-07-09 op return findeol();
849 c39be742 2021-07-09 op }
850 c39be742 2021-07-09 op if (p + 1 >= buf + sizeof(buf) - 1) {
851 c39be742 2021-07-09 op yyerror("string too long");
852 c39be742 2021-07-09 op return findeol();
853 c39be742 2021-07-09 op }
854 c39be742 2021-07-09 op *p++ = c;
855 c39be742 2021-07-09 op }
856 c39be742 2021-07-09 op yylval.v.string = strdup(buf);
857 c39be742 2021-07-09 op if (yylval.v.string == NULL)
858 2dd5994a 2023-06-06 op fatal("yylex: strdup");
859 c39be742 2021-07-09 op return STRING;
860 74f0778b 2021-06-16 op }
861 c39be742 2021-07-09 op
862 c39be742 2021-07-09 op #define allowed_to_end_number(x) \
863 c39be742 2021-07-09 op (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=')
864 c39be742 2021-07-09 op
865 c39be742 2021-07-09 op if (c == '-' || isdigit(c)) {
866 c39be742 2021-07-09 op do {
867 c39be742 2021-07-09 op *p++ = c;
868 c39be742 2021-07-09 op if ((size_t)(p-buf) >= sizeof(buf)) {
869 c39be742 2021-07-09 op yyerror("string too long");
870 c39be742 2021-07-09 op return findeol();
871 c39be742 2021-07-09 op }
872 c39be742 2021-07-09 op } while ((c = lgetc(0)) != EOF && isdigit(c));
873 c39be742 2021-07-09 op lungetc(c);
874 c39be742 2021-07-09 op if (p == buf + 1 && buf[0] == '-')
875 c39be742 2021-07-09 op goto nodigits;
876 c39be742 2021-07-09 op if (c == EOF || allowed_to_end_number(c)) {
877 c39be742 2021-07-09 op const char *errstr = NULL;
878 c39be742 2021-07-09 op
879 c39be742 2021-07-09 op *p = '\0';
880 c39be742 2021-07-09 op yylval.v.number = strtonum(buf, LLONG_MIN,
881 c39be742 2021-07-09 op LLONG_MAX, &errstr);
882 c39be742 2021-07-09 op if (errstr) {
883 c39be742 2021-07-09 op yyerror("\"%s\" invalid number: %s",
884 c39be742 2021-07-09 op buf, errstr);
885 c39be742 2021-07-09 op return findeol();
886 c39be742 2021-07-09 op }
887 c39be742 2021-07-09 op return NUM;
888 c39be742 2021-07-09 op } else {
889 c39be742 2021-07-09 op nodigits:
890 c39be742 2021-07-09 op while (p > buf + 1)
891 c39be742 2021-07-09 op lungetc(*--p);
892 c39be742 2021-07-09 op c = *--p;
893 c39be742 2021-07-09 op if (c == '-')
894 c39be742 2021-07-09 op return c;
895 c39be742 2021-07-09 op }
896 74f0778b 2021-06-16 op }
897 c39be742 2021-07-09 op
898 c39be742 2021-07-09 op #define allowed_in_string(x) \
899 c39be742 2021-07-09 op (isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \
900 c39be742 2021-07-09 op x != '{' && x != '}' && \
901 c39be742 2021-07-09 op x != '!' && x != '=' && x != '#' && \
902 67f49405 2021-07-09 op x != ',' && x != ';'))
903 c39be742 2021-07-09 op
904 67f49405 2021-07-09 op if (isalnum(c) || c == ':' || c == '_') {
905 c39be742 2021-07-09 op do {
906 c39be742 2021-07-09 op *p++ = c;
907 c39be742 2021-07-09 op if ((size_t)(p-buf) >= sizeof(buf)) {
908 c39be742 2021-07-09 op yyerror("string too long");
909 c39be742 2021-07-09 op return findeol();
910 c39be742 2021-07-09 op }
911 c39be742 2021-07-09 op } while ((c = lgetc(0)) != EOF && (allowed_in_string(c)));
912 c39be742 2021-07-09 op lungetc(c);
913 c39be742 2021-07-09 op *p = '\0';
914 c39be742 2021-07-09 op if ((token = lookup(buf)) == STRING)
915 c39be742 2021-07-09 op yylval.v.string = xstrdup(buf);
916 c39be742 2021-07-09 op return token;
917 74f0778b 2021-06-16 op }
918 c39be742 2021-07-09 op if (c == '\n') {
919 c39be742 2021-07-09 op yylval.lineno = file->lineno;
920 c39be742 2021-07-09 op file->lineno++;
921 74f0778b 2021-06-16 op }
922 c39be742 2021-07-09 op if (c == EOF)
923 c39be742 2021-07-09 op return 0;
924 c39be742 2021-07-09 op return c;
925 c39be742 2021-07-09 op }
926 c39be742 2021-07-09 op
927 c39be742 2021-07-09 op struct file *
928 c39be742 2021-07-09 op pushfile(const char *name, int secret)
929 c39be742 2021-07-09 op {
930 c39be742 2021-07-09 op struct file *nfile;
931 c39be742 2021-07-09 op
932 c39be742 2021-07-09 op nfile = xcalloc(1, sizeof(*nfile));
933 c39be742 2021-07-09 op nfile->name = xstrdup(name);
934 c39be742 2021-07-09 op if ((nfile->stream = fopen(nfile->name, "r")) == NULL) {
935 eae52ad4 2023-06-06 op log_warn("can't open %s", nfile->name);
936 c39be742 2021-07-09 op free(nfile->name);
937 c39be742 2021-07-09 op free(nfile);
938 c39be742 2021-07-09 op return NULL;
939 74f0778b 2021-06-16 op }
940 c39be742 2021-07-09 op nfile->lineno = TAILQ_EMPTY(&files) ? 1 : 0;
941 c39be742 2021-07-09 op nfile->ungetsize = 16;
942 c39be742 2021-07-09 op nfile->ungetbuf = xcalloc(1, nfile->ungetsize);
943 c39be742 2021-07-09 op TAILQ_INSERT_TAIL(&files, nfile, entry);
944 c39be742 2021-07-09 op return nfile;
945 c39be742 2021-07-09 op }
946 74f0778b 2021-06-16 op
947 c39be742 2021-07-09 op int
948 c39be742 2021-07-09 op popfile(void)
949 c39be742 2021-07-09 op {
950 c39be742 2021-07-09 op struct file *prev;
951 13ed2fb6 2021-01-27 op
952 c39be742 2021-07-09 op if ((prev = TAILQ_PREV(file, files, entry)) != NULL)
953 c39be742 2021-07-09 op prev->errors += file->errors;
954 13ed2fb6 2021-01-27 op
955 c39be742 2021-07-09 op TAILQ_REMOVE(&files, file, entry);
956 c39be742 2021-07-09 op fclose(file->stream);
957 c39be742 2021-07-09 op free(file->name);
958 c39be742 2021-07-09 op free(file->ungetbuf);
959 c39be742 2021-07-09 op free(file);
960 c39be742 2021-07-09 op file = prev;
961 c39be742 2021-07-09 op return file ? 0 : EOF;
962 13ed2fb6 2021-01-27 op }
963 13ed2fb6 2021-01-27 op
964 68368f4c 2023-06-09 op int
965 af1dab18 2023-06-09 op parse_conf(struct conf *c, const char *filename)
966 13ed2fb6 2021-01-27 op {
967 c39be742 2021-07-09 op struct sym *sym, *next;
968 af1dab18 2023-06-09 op
969 509d0509 2023-06-23 op default_host = "*";
970 509d0509 2023-06-23 op default_port = 1965;
971 509d0509 2023-06-23 op
972 af1dab18 2023-06-09 op conf = c;
973 3b21cca3 2021-06-29 op
974 c39be742 2021-07-09 op file = pushfile(filename, 0);
975 c39be742 2021-07-09 op if (file == NULL)
976 68368f4c 2023-06-09 op return -1;
977 c39be742 2021-07-09 op topfile = file;
978 c39be742 2021-07-09 op
979 13ed2fb6 2021-01-27 op yyparse();
980 c39be742 2021-07-09 op errors = file->errors;
981 c39be742 2021-07-09 op popfile();
982 13ed2fb6 2021-01-27 op
983 c39be742 2021-07-09 op /* Free macros and check which have not been used. */
984 3b21cca3 2021-06-29 op TAILQ_FOREACH_SAFE(sym, &symhead, entry, next) {
985 3b21cca3 2021-06-29 op /* TODO: warn if !sym->used */
986 3b21cca3 2021-06-29 op if (!sym->persist) {
987 3b21cca3 2021-06-29 op free(sym->name);
988 3b21cca3 2021-06-29 op free(sym->val);
989 3b21cca3 2021-06-29 op TAILQ_REMOVE(&symhead, sym, entry);
990 3b21cca3 2021-06-29 op free(sym);
991 3b21cca3 2021-06-29 op }
992 3b21cca3 2021-06-29 op }
993 c39be742 2021-07-09 op
994 c39be742 2021-07-09 op if (errors)
995 68368f4c 2023-06-09 op return -1;
996 68368f4c 2023-06-09 op return 0;
997 13ed2fb6 2021-01-27 op }
998 e17642a7 2021-02-01 op
999 c39be742 2021-07-09 op int
1000 c39be742 2021-07-09 op symset(const char *name, const char *val, int persist)
1001 c39be742 2021-07-09 op {
1002 c39be742 2021-07-09 op struct sym *sym;
1003 c39be742 2021-07-09 op
1004 c39be742 2021-07-09 op TAILQ_FOREACH(sym, &symhead, entry) {
1005 c39be742 2021-07-09 op if (!strcmp(name, sym->name))
1006 c39be742 2021-07-09 op break;
1007 c39be742 2021-07-09 op }
1008 c39be742 2021-07-09 op
1009 c39be742 2021-07-09 op if (sym != NULL) {
1010 c39be742 2021-07-09 op if (sym->persist)
1011 c39be742 2021-07-09 op return 0;
1012 c39be742 2021-07-09 op else {
1013 c39be742 2021-07-09 op free(sym->name);
1014 c39be742 2021-07-09 op free(sym->val);
1015 c39be742 2021-07-09 op TAILQ_REMOVE(&symhead, sym, entry);
1016 c39be742 2021-07-09 op free(sym);
1017 c39be742 2021-07-09 op }
1018 c39be742 2021-07-09 op }
1019 c39be742 2021-07-09 op
1020 c39be742 2021-07-09 op sym = xcalloc(1, sizeof(*sym));
1021 c39be742 2021-07-09 op sym->name = xstrdup(name);
1022 c39be742 2021-07-09 op sym->val = xstrdup(val);
1023 c39be742 2021-07-09 op sym->used = 0;
1024 c39be742 2021-07-09 op sym->persist = persist;
1025 c39be742 2021-07-09 op
1026 c39be742 2021-07-09 op TAILQ_INSERT_TAIL(&symhead, sym, entry);
1027 c39be742 2021-07-09 op return 0;
1028 c39be742 2021-07-09 op }
1029 c39be742 2021-07-09 op
1030 c39be742 2021-07-09 op int
1031 c39be742 2021-07-09 op cmdline_symset(char *s)
1032 c39be742 2021-07-09 op {
1033 c39be742 2021-07-09 op char *sym, *val;
1034 c39be742 2021-07-09 op int ret;
1035 c39be742 2021-07-09 op
1036 c39be742 2021-07-09 op if ((val = strrchr(s, '=')) == NULL)
1037 c39be742 2021-07-09 op return -1;
1038 c39be742 2021-07-09 op sym = xcalloc(1, val - s + 1);
1039 c39be742 2021-07-09 op memcpy(sym, s, val - s);
1040 c39be742 2021-07-09 op ret = symset(sym, val + 1, 1);
1041 c39be742 2021-07-09 op free(sym);
1042 c39be742 2021-07-09 op return ret;
1043 c39be742 2021-07-09 op }
1044 c39be742 2021-07-09 op
1045 e17642a7 2021-02-01 op char *
1046 c39be742 2021-07-09 op symget(const char *nam)
1047 c39be742 2021-07-09 op {
1048 c39be742 2021-07-09 op struct sym *sym;
1049 c39be742 2021-07-09 op
1050 c39be742 2021-07-09 op TAILQ_FOREACH(sym, &symhead, entry) {
1051 c39be742 2021-07-09 op if (strcmp(nam, sym->name) == 0) {
1052 c39be742 2021-07-09 op sym->used = 1;
1053 c39be742 2021-07-09 op return sym->val;
1054 c39be742 2021-07-09 op }
1055 c39be742 2021-07-09 op }
1056 c39be742 2021-07-09 op return NULL;
1057 c39be742 2021-07-09 op }
1058 c39be742 2021-07-09 op
1059 c39be742 2021-07-09 op char *
1060 e17642a7 2021-02-01 op ensure_absolute_path(char *path)
1061 e17642a7 2021-02-01 op {
1062 e17642a7 2021-02-01 op if (path == NULL || *path != '/')
1063 adbe6a64 2021-04-30 op yyerror("not an absolute path: %s", path);
1064 e17642a7 2021-02-01 op return path;
1065 e17642a7 2021-02-01 op }
1066 6abda252 2021-02-06 op
1067 6abda252 2021-02-06 op int
1068 6abda252 2021-02-06 op check_block_code(int n)
1069 6abda252 2021-02-06 op {
1070 6abda252 2021-02-06 op if (n < 10 || n >= 70 || (n >= 20 && n <= 29))
1071 6abda252 2021-02-06 op yyerror("invalid block code %d", n);
1072 6abda252 2021-02-06 op return n;
1073 6abda252 2021-02-06 op }
1074 6abda252 2021-02-06 op
1075 6abda252 2021-02-06 op char *
1076 6abda252 2021-02-06 op check_block_fmt(char *fmt)
1077 6abda252 2021-02-06 op {
1078 6abda252 2021-02-06 op char *s;
1079 6abda252 2021-02-06 op
1080 6abda252 2021-02-06 op for (s = fmt; *s; ++s) {
1081 6abda252 2021-02-06 op if (*s != '%')
1082 6abda252 2021-02-06 op continue;
1083 6abda252 2021-02-06 op switch (*++s) {
1084 6abda252 2021-02-06 op case '%':
1085 6abda252 2021-02-06 op case 'p':
1086 6abda252 2021-02-06 op case 'q':
1087 6abda252 2021-02-06 op case 'P':
1088 6abda252 2021-02-06 op case 'N':
1089 6abda252 2021-02-06 op break;
1090 6abda252 2021-02-06 op default:
1091 6abda252 2021-02-06 op yyerror("invalid format specifier %%%c", *s);
1092 6abda252 2021-02-06 op }
1093 6abda252 2021-02-06 op }
1094 6abda252 2021-02-06 op
1095 6abda252 2021-02-06 op return fmt;
1096 6abda252 2021-02-06 op }
1097 6abda252 2021-02-06 op
1098 6abda252 2021-02-06 op int
1099 6abda252 2021-02-06 op check_strip_no(int n)
1100 6abda252 2021-02-06 op {
1101 6abda252 2021-02-06 op if (n <= 0)
1102 6abda252 2021-02-06 op yyerror("invalid strip number %d", n);
1103 a709ddf5 2021-02-07 op return n;
1104 a709ddf5 2021-02-07 op }
1105 a709ddf5 2021-02-07 op
1106 a709ddf5 2021-02-07 op int
1107 391825e3 2021-07-09 op check_port_num(int n)
1108 391825e3 2021-07-09 op {
1109 391825e3 2021-07-09 op if (n <= 0 || n >= UINT16_MAX)
1110 391825e3 2021-07-09 op yyerror("port number is %s: %d",
1111 391825e3 2021-07-09 op n <= 0 ? "too small" : "too large",
1112 391825e3 2021-07-09 op n);
1113 391825e3 2021-07-09 op return n;
1114 391825e3 2021-07-09 op }
1115 391825e3 2021-07-09 op
1116 391825e3 2021-07-09 op int
1117 a709ddf5 2021-02-07 op check_prefork_num(int n)
1118 a709ddf5 2021-02-07 op {
1119 c26f2460 2023-06-08 op if (n <= 0 || n >= PROC_MAX_INSTANCES)
1120 a709ddf5 2021-02-07 op yyerror("invalid prefork number %d", n);
1121 6abda252 2021-02-06 op return n;
1122 6abda252 2021-02-06 op }
1123 49b73ba1 2021-02-10 op
1124 49b73ba1 2021-02-10 op void
1125 49b73ba1 2021-02-10 op advance_loc(void)
1126 49b73ba1 2021-02-10 op {
1127 b8e64ccd 2021-03-31 op loc = new_location();
1128 b8e64ccd 2021-03-31 op TAILQ_INSERT_TAIL(&host->locations, loc, locations);
1129 49b73ba1 2021-02-10 op }
1130 c705ecb1 2021-05-03 op
1131 c705ecb1 2021-05-03 op void
1132 b7967bc1 2021-01-02 op advance_proxy(void)
1133 b7967bc1 2021-01-02 op {
1134 b7967bc1 2021-01-02 op proxy = new_proxy();
1135 b7967bc1 2021-01-02 op TAILQ_INSERT_TAIL(&host->proxies, proxy, proxies);
1136 b7967bc1 2021-01-02 op }
1137 b7967bc1 2021-01-02 op
1138 b7967bc1 2021-01-02 op void
1139 b7967bc1 2021-01-02 op parsehp(char *str, char **host, const char **port, const char *def)
1140 b7967bc1 2021-01-02 op {
1141 b7967bc1 2021-01-02 op char *at;
1142 b7967bc1 2021-01-02 op const char *errstr;
1143 b7967bc1 2021-01-02 op
1144 b7967bc1 2021-01-02 op *host = str;
1145 b7967bc1 2021-01-02 op
1146 b7967bc1 2021-01-02 op if ((at = strchr(str, ':')) != NULL) {
1147 b7967bc1 2021-01-02 op *at++ = '\0';
1148 b7967bc1 2021-01-02 op *port = at;
1149 b7967bc1 2021-01-02 op } else
1150 b7967bc1 2021-01-02 op *port = def;
1151 b7967bc1 2021-01-02 op
1152 b7967bc1 2021-01-02 op strtonum(*port, 1, UINT16_MAX, &errstr);
1153 b7967bc1 2021-01-02 op if (errstr != NULL)
1154 b7967bc1 2021-01-02 op yyerror("port is %s: %s", errstr, *port);
1155 8ad1c570 2021-05-09 op }
1156 8ad1c570 2021-05-09 op
1157 8ad1c570 2021-05-09 op int
1158 7b00c890 2022-10-05 op fastcgi_conf(const char *path, const char *port)
1159 8ad1c570 2021-05-09 op {
1160 8ad1c570 2021-05-09 op struct fcgi *f;
1161 5d22294a 2023-06-09 op int i = 0;
1162 fafc6849 2021-06-29 op
1163 af1dab18 2023-06-09 op TAILQ_FOREACH(f, &conf->fcgi, fcgi) {
1164 8ad1c570 2021-05-09 op if (!strcmp(f->path, path) &&
1165 534afd0d 2022-10-05 op ((port == NULL && *f->port == '\0') ||
1166 534afd0d 2022-10-05 op !strcmp(f->port, port)))
1167 8ad1c570 2021-05-09 op return i;
1168 5d22294a 2023-06-09 op ++i;
1169 8ad1c570 2021-05-09 op }
1170 8ad1c570 2021-05-09 op
1171 5d22294a 2023-06-09 op f = xcalloc(1, sizeof(*f));
1172 5d22294a 2023-06-09 op f->id = i;
1173 5d22294a 2023-06-09 op (void)strlcpy(f->path, path, sizeof(f->path));
1174 5d22294a 2023-06-09 op if (port != NULL)
1175 5d22294a 2023-06-09 op (void)strlcpy(f->port, port, sizeof(f->port));
1176 af1dab18 2023-06-09 op TAILQ_INSERT_TAIL(&conf->fcgi, f, fcgi);
1177 5d22294a 2023-06-09 op
1178 5d22294a 2023-06-09 op return f->id;
1179 c92b802b 2021-06-11 op }
1180 c92b802b 2021-06-11 op
1181 c92b802b 2021-06-11 op void
1182 2025e96d 2022-09-10 op add_param(char *name, char *val)
1183 c92b802b 2021-06-11 op {
1184 c92b802b 2021-06-11 op struct envlist *e;
1185 2025e96d 2022-09-10 op struct envhead *h = &host->params;
1186 c92b802b 2021-06-11 op
1187 c92b802b 2021-06-11 op e = xcalloc(1, sizeof(*e));
1188 534afd0d 2022-10-05 op (void) strlcpy(e->name, name, sizeof(e->name));
1189 534afd0d 2022-10-05 op (void) strlcpy(e->value, val, sizeof(e->value));
1190 edc5ca66 2022-09-10 op TAILQ_INSERT_TAIL(h, e, envs);
1191 3b21cca3 2021-06-29 op }
1192 534afd0d 2022-10-05 op
1193 534afd0d 2022-10-05 op int
1194 534afd0d 2022-10-05 op getservice(const char *n)
1195 534afd0d 2022-10-05 op {
1196 534afd0d 2022-10-05 op struct servent *s;
1197 534afd0d 2022-10-05 op const char *errstr;
1198 534afd0d 2022-10-05 op long long llval;
1199 534afd0d 2022-10-05 op
1200 534afd0d 2022-10-05 op llval = strtonum(n, 0, UINT16_MAX, &errstr);
1201 534afd0d 2022-10-05 op if (errstr) {
1202 534afd0d 2022-10-05 op s = getservbyname(n, "tcp");
1203 534afd0d 2022-10-05 op if (s == NULL)
1204 534afd0d 2022-10-05 op s = getservbyname(n, "udp");
1205 534afd0d 2022-10-05 op if (s == NULL)
1206 534afd0d 2022-10-05 op return (-1);
1207 534afd0d 2022-10-05 op return (ntohs(s->s_port));
1208 534afd0d 2022-10-05 op }
1209 534afd0d 2022-10-05 op
1210 534afd0d 2022-10-05 op return ((unsigned short)llval);
1211 509d0509 2023-06-23 op }
1212 509d0509 2023-06-23 op
1213 509d0509 2023-06-23 op static void
1214 509d0509 2023-06-23 op add_to_addr_queue(struct addrhead *a, struct addrinfo *ai)
1215 509d0509 2023-06-23 op {
1216 509d0509 2023-06-23 op struct address *addr;
1217 509d0509 2023-06-23 op struct sockaddr_in *sin;
1218 509d0509 2023-06-23 op struct sockaddr_in6 *sin6;
1219 509d0509 2023-06-23 op
1220 509d0509 2023-06-23 op if (ai->ai_addrlen > sizeof(addr->ss))
1221 509d0509 2023-06-23 op fatalx("ai_addrlen larger than a sockaddr_storage");
1222 509d0509 2023-06-23 op
1223 509d0509 2023-06-23 op TAILQ_FOREACH(addr, a, addrs) {
1224 509d0509 2023-06-23 op if (addr->ai_flags == ai->ai_flags &&
1225 509d0509 2023-06-23 op addr->ai_family == ai->ai_family &&
1226 509d0509 2023-06-23 op addr->ai_socktype == ai->ai_socktype &&
1227 509d0509 2023-06-23 op addr->ai_protocol == ai->ai_protocol &&
1228 509d0509 2023-06-23 op addr->slen == ai->ai_addrlen &&
1229 509d0509 2023-06-23 op !memcmp(&addr->ss, ai->ai_addr, addr->slen))
1230 509d0509 2023-06-23 op return;
1231 509d0509 2023-06-23 op }
1232 509d0509 2023-06-23 op
1233 509d0509 2023-06-23 op addr = xcalloc(1, sizeof(*addr));
1234 509d0509 2023-06-23 op addr->ai_flags = ai->ai_flags;
1235 509d0509 2023-06-23 op addr->ai_family = ai->ai_family;
1236 509d0509 2023-06-23 op addr->ai_socktype = ai->ai_socktype;
1237 509d0509 2023-06-23 op addr->ai_protocol = ai->ai_protocol;
1238 509d0509 2023-06-23 op addr->slen = ai->ai_addrlen;
1239 509d0509 2023-06-23 op memcpy(&addr->ss, ai->ai_addr, ai->ai_addrlen);
1240 509d0509 2023-06-23 op
1241 509d0509 2023-06-23 op /* for commodity */
1242 509d0509 2023-06-23 op switch (addr->ai_family) {
1243 509d0509 2023-06-23 op case AF_INET:
1244 509d0509 2023-06-23 op sin = (struct sockaddr_in *)&addr->ss;
1245 509d0509 2023-06-23 op addr->port = ntohs(sin->sin_port);
1246 509d0509 2023-06-23 op break;
1247 509d0509 2023-06-23 op case AF_INET6:
1248 509d0509 2023-06-23 op sin6 = (struct sockaddr_in6 *)&addr->ss;
1249 509d0509 2023-06-23 op addr->port = ntohs(sin6->sin6_port);
1250 509d0509 2023-06-23 op break;
1251 509d0509 2023-06-23 op default:
1252 509d0509 2023-06-23 op fatalx("unknown socket family %d", addr->ai_family);
1253 509d0509 2023-06-23 op }
1254 509d0509 2023-06-23 op
1255 509d0509 2023-06-23 op addr->sock = -1;
1256 509d0509 2023-06-23 op
1257 509d0509 2023-06-23 op TAILQ_INSERT_HEAD(a, addr, addrs);
1258 534afd0d 2022-10-05 op }
1259 509d0509 2023-06-23 op
1260 509d0509 2023-06-23 op void
1261 509d0509 2023-06-23 op listen_on(const char *hostname, const char *servname)
1262 509d0509 2023-06-23 op {
1263 509d0509 2023-06-23 op struct addrinfo hints, *res, *res0;
1264 509d0509 2023-06-23 op int error;
1265 509d0509 2023-06-23 op
1266 509d0509 2023-06-23 op memset(&hints, 0, sizeof(hints));
1267 509d0509 2023-06-23 op hints.ai_family = AF_UNSPEC;
1268 509d0509 2023-06-23 op hints.ai_socktype = SOCK_STREAM;
1269 509d0509 2023-06-23 op hints.ai_flags = AI_PASSIVE;
1270 509d0509 2023-06-23 op error = getaddrinfo(hostname, servname, &hints, &res0);
1271 509d0509 2023-06-23 op if (error) {
1272 509d0509 2023-06-23 op yyerror("listen on \"%s\" port %s: %s", hostname, servname,
1273 509d0509 2023-06-23 op gai_strerror(errno));
1274 509d0509 2023-06-23 op return;
1275 509d0509 2023-06-23 op }
1276 509d0509 2023-06-23 op
1277 509d0509 2023-06-23 op for (res = res0; res; res = res->ai_next) {
1278 509d0509 2023-06-23 op add_to_addr_queue(&host->addrs, res);
1279 509d0509 2023-06-23 op add_to_addr_queue(&conf->addrs, res);
1280 509d0509 2023-06-23 op }
1281 509d0509 2023-06-23 op
1282 509d0509 2023-06-23 op freeaddrinfo(res0);
1283 509d0509 2023-06-23 op }