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