Blame


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