Blame


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