Blame


1 8a35f56c 2022-07-16 thomas /*
2 8a35f56c 2022-07-16 thomas * Copyright (c) 2016-2019, 2020-2021 Tracey Emery <tracey@traceyemery.net>
3 8a35f56c 2022-07-16 thomas * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
4 8a35f56c 2022-07-16 thomas * Copyright (c) 2004 Ryan McBride <mcbride@openbsd.org>
5 8a35f56c 2022-07-16 thomas * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
6 8a35f56c 2022-07-16 thomas * Copyright (c) 2001 Markus Friedl. All rights reserved.
7 8a35f56c 2022-07-16 thomas * Copyright (c) 2001 Daniel Hartmeier. All rights reserved.
8 8a35f56c 2022-07-16 thomas * Copyright (c) 2001 Theo de Raadt. All rights reserved.
9 8a35f56c 2022-07-16 thomas *
10 8a35f56c 2022-07-16 thomas * Permission to use, copy, modify, and distribute this software for any
11 8a35f56c 2022-07-16 thomas * purpose with or without fee is hereby granted, provided that the above
12 8a35f56c 2022-07-16 thomas * copyright notice and this permission notice appear in all copies.
13 8a35f56c 2022-07-16 thomas *
14 8a35f56c 2022-07-16 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
15 8a35f56c 2022-07-16 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
16 8a35f56c 2022-07-16 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
17 8a35f56c 2022-07-16 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
18 8a35f56c 2022-07-16 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
19 8a35f56c 2022-07-16 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
20 8a35f56c 2022-07-16 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 8a35f56c 2022-07-16 thomas */
22 8a35f56c 2022-07-16 thomas
23 8a35f56c 2022-07-16 thomas %{
24 8a35f56c 2022-07-16 thomas #include <sys/ioctl.h>
25 8a35f56c 2022-07-16 thomas #include <sys/types.h>
26 8b925c6c 2022-07-16 thomas #include <sys/queue.h>
27 8a35f56c 2022-07-16 thomas #include <sys/socket.h>
28 8a35f56c 2022-07-16 thomas #include <sys/stat.h>
29 8a35f56c 2022-07-16 thomas
30 8a35f56c 2022-07-16 thomas #include <net/if.h>
31 8a35f56c 2022-07-16 thomas #include <netinet/in.h>
32 8a35f56c 2022-07-16 thomas
33 8a35f56c 2022-07-16 thomas #include <arpa/inet.h>
34 8a35f56c 2022-07-16 thomas
35 8a35f56c 2022-07-16 thomas #include <ctype.h>
36 8a35f56c 2022-07-16 thomas #include <err.h>
37 8a35f56c 2022-07-16 thomas #include <errno.h>
38 8a35f56c 2022-07-16 thomas #include <event.h>
39 8a35f56c 2022-07-16 thomas #include <ifaddrs.h>
40 8a35f56c 2022-07-16 thomas #include <limits.h>
41 8a35f56c 2022-07-16 thomas #include <netdb.h>
42 8a35f56c 2022-07-16 thomas #include <stdarg.h>
43 8a35f56c 2022-07-16 thomas #include <stdlib.h>
44 8a35f56c 2022-07-16 thomas #include <stdio.h>
45 8a35f56c 2022-07-16 thomas #include <string.h>
46 8a35f56c 2022-07-16 thomas #include <syslog.h>
47 8a35f56c 2022-07-16 thomas #include <unistd.h>
48 8a35f56c 2022-07-16 thomas
49 8a35f56c 2022-07-16 thomas #include "proc.h"
50 8a35f56c 2022-07-16 thomas #include "gotwebd.h"
51 cdbe1d7d 2022-08-06 thomas #include "got_sockaddr.h"
52 8a35f56c 2022-07-16 thomas
53 8a35f56c 2022-07-16 thomas TAILQ_HEAD(files, file) files = TAILQ_HEAD_INITIALIZER(files);
54 8a35f56c 2022-07-16 thomas static struct file {
55 8a35f56c 2022-07-16 thomas TAILQ_ENTRY(file) entry;
56 8a35f56c 2022-07-16 thomas FILE *stream;
57 8a35f56c 2022-07-16 thomas char *name;
58 8a35f56c 2022-07-16 thomas int lineno;
59 8a35f56c 2022-07-16 thomas int errors;
60 8a35f56c 2022-07-16 thomas } *file;
61 8a35f56c 2022-07-16 thomas struct file *newfile(const char *, int);
62 8a35f56c 2022-07-16 thomas static void closefile(struct file *);
63 8a35f56c 2022-07-16 thomas int check_file_secrecy(int, const char *);
64 8a35f56c 2022-07-16 thomas int yyparse(void);
65 8a35f56c 2022-07-16 thomas int yylex(void);
66 8a35f56c 2022-07-16 thomas int yyerror(const char *, ...)
67 8a35f56c 2022-07-16 thomas __attribute__((__format__ (printf, 1, 2)))
68 8a35f56c 2022-07-16 thomas __attribute__((__nonnull__ (1)));
69 8a35f56c 2022-07-16 thomas int kw_cmp(const void *, const void *);
70 8a35f56c 2022-07-16 thomas int lookup(char *);
71 8a35f56c 2022-07-16 thomas int lgetc(int);
72 8a35f56c 2022-07-16 thomas int lungetc(int);
73 8a35f56c 2022-07-16 thomas int findeol(void);
74 8a35f56c 2022-07-16 thomas
75 8a35f56c 2022-07-16 thomas TAILQ_HEAD(symhead, sym) symhead = TAILQ_HEAD_INITIALIZER(symhead);
76 8a35f56c 2022-07-16 thomas struct sym {
77 8a35f56c 2022-07-16 thomas TAILQ_ENTRY(sym) entry;
78 8a35f56c 2022-07-16 thomas int used;
79 8a35f56c 2022-07-16 thomas int persist;
80 8a35f56c 2022-07-16 thomas char *nam;
81 8a35f56c 2022-07-16 thomas char *val;
82 8a35f56c 2022-07-16 thomas };
83 8a35f56c 2022-07-16 thomas
84 8a35f56c 2022-07-16 thomas int symset(const char *, const char *, int);
85 8a35f56c 2022-07-16 thomas char *symget(const char *);
86 8a35f56c 2022-07-16 thomas
87 8a35f56c 2022-07-16 thomas static int errors;
88 8a35f56c 2022-07-16 thomas
89 8a35f56c 2022-07-16 thomas static struct gotwebd *gotwebd;
90 8a35f56c 2022-07-16 thomas static struct server *new_srv;
91 8a35f56c 2022-07-16 thomas static struct server *conf_new_server(const char *);
92 8a35f56c 2022-07-16 thomas int getservice(const char *);
93 8a35f56c 2022-07-16 thomas int n;
94 8a35f56c 2022-07-16 thomas
95 e4c7e0b0 2022-08-30 thomas int get_addrs(const char *, struct server *, in_port_t);
96 e4c7e0b0 2022-08-30 thomas int addr_dup_check(struct addresslist *, struct address *,
97 e4c7e0b0 2022-08-30 thomas const char *, const char *);
98 e4c7e0b0 2022-08-30 thomas int add_addr(struct server *, struct address *);
99 8a35f56c 2022-07-16 thomas struct address *host_v4(const char *);
100 8a35f56c 2022-07-16 thomas struct address *host_v6(const char *);
101 e4c7e0b0 2022-08-30 thomas int host_dns(const char *, struct server *,
102 8a35f56c 2022-07-16 thomas int, in_port_t, const char *, int);
103 e4c7e0b0 2022-08-30 thomas int host_if(const char *, struct server *,
104 8a35f56c 2022-07-16 thomas int, in_port_t, const char *, int);
105 e4c7e0b0 2022-08-30 thomas int host(const char *, struct server *,
106 8a35f56c 2022-07-16 thomas int, in_port_t, const char *, int);
107 8a35f56c 2022-07-16 thomas int is_if_in_group(const char *, const char *);
108 8a35f56c 2022-07-16 thomas
109 8a35f56c 2022-07-16 thomas typedef struct {
110 8a35f56c 2022-07-16 thomas union {
111 8a35f56c 2022-07-16 thomas long long number;
112 8a35f56c 2022-07-16 thomas char *string;
113 8a35f56c 2022-07-16 thomas in_port_t port;
114 8a35f56c 2022-07-16 thomas } v;
115 8a35f56c 2022-07-16 thomas int lineno;
116 8a35f56c 2022-07-16 thomas } YYSTYPE;
117 8a35f56c 2022-07-16 thomas
118 8a35f56c 2022-07-16 thomas %}
119 8a35f56c 2022-07-16 thomas
120 c24a47af 2022-08-11 thomas %token LISTEN WWW_PATH MAX_REPOS SITE_NAME SITE_OWNER SITE_LINK LOGO
121 8a35f56c 2022-07-16 thomas %token LOGO_URL SHOW_REPO_OWNER SHOW_REPO_AGE SHOW_REPO_DESCRIPTION
122 8a35f56c 2022-07-16 thomas %token MAX_REPOS_DISPLAY REPOS_PATH MAX_COMMITS_DISPLAY ON ERROR
123 3991b2a5 2022-10-31 thomas %token SHOW_SITE_OWNER SHOW_REPO_CLONEURL PORT PREFORK RESPECT_EXPORTOK
124 8a35f56c 2022-07-16 thomas %token UNIX_SOCKET UNIX_SOCKET_NAME SERVER CHROOT CUSTOM_CSS
125 8a35f56c 2022-07-16 thomas
126 8a35f56c 2022-07-16 thomas %token <v.string> STRING
127 8a35f56c 2022-07-16 thomas %type <v.port> fcgiport
128 8a35f56c 2022-07-16 thomas %token <v.number> NUMBER
129 8a35f56c 2022-07-16 thomas %type <v.number> boolean
130 8a35f56c 2022-07-16 thomas
131 8a35f56c 2022-07-16 thomas %%
132 8a35f56c 2022-07-16 thomas
133 cfab1835 2022-10-04 thomas grammar : /* empty */
134 8a35f56c 2022-07-16 thomas | grammar '\n'
135 cfab1835 2022-10-04 thomas | grammar varset '\n'
136 8a35f56c 2022-07-16 thomas | grammar main '\n'
137 8a35f56c 2022-07-16 thomas | grammar server '\n'
138 cfab1835 2022-10-04 thomas | grammar error '\n' { file->errors++; }
139 cfab1835 2022-10-04 thomas ;
140 cfab1835 2022-10-04 thomas
141 cfab1835 2022-10-04 thomas varset : STRING '=' STRING {
142 cfab1835 2022-10-04 thomas char *s = $1;
143 cfab1835 2022-10-04 thomas while (*s++) {
144 cfab1835 2022-10-04 thomas if (isspace((unsigned char)*s)) {
145 cfab1835 2022-10-04 thomas yyerror("macro name cannot contain "
146 cfab1835 2022-10-04 thomas "whitespace");
147 cfab1835 2022-10-04 thomas free($1);
148 cfab1835 2022-10-04 thomas free($3);
149 cfab1835 2022-10-04 thomas YYERROR;
150 cfab1835 2022-10-04 thomas }
151 cfab1835 2022-10-04 thomas }
152 cfab1835 2022-10-04 thomas if (symset($1, $3, 0) == -1)
153 cfab1835 2022-10-04 thomas fatal("cannot store variable");
154 cfab1835 2022-10-04 thomas free($1);
155 cfab1835 2022-10-04 thomas free($3);
156 cfab1835 2022-10-04 thomas }
157 8a35f56c 2022-07-16 thomas ;
158 8a35f56c 2022-07-16 thomas
159 8a35f56c 2022-07-16 thomas boolean : STRING {
160 8a35f56c 2022-07-16 thomas if (strcasecmp($1, "1") == 0 ||
161 8a35f56c 2022-07-16 thomas strcasecmp($1, "yes") == 0 ||
162 8a35f56c 2022-07-16 thomas strcasecmp($1, "on") == 0)
163 8a35f56c 2022-07-16 thomas $$ = 1;
164 8a35f56c 2022-07-16 thomas else if (strcasecmp($1, "0") == 0 ||
165 8a35f56c 2022-07-16 thomas strcasecmp($1, "off") == 0 ||
166 8a35f56c 2022-07-16 thomas strcasecmp($1, "no") == 0)
167 8a35f56c 2022-07-16 thomas $$ = 0;
168 8a35f56c 2022-07-16 thomas else {
169 8a35f56c 2022-07-16 thomas yyerror("invalid boolean value '%s'", $1);
170 8a35f56c 2022-07-16 thomas free($1);
171 8a35f56c 2022-07-16 thomas YYERROR;
172 8a35f56c 2022-07-16 thomas }
173 8a35f56c 2022-07-16 thomas free($1);
174 8a35f56c 2022-07-16 thomas }
175 8a35f56c 2022-07-16 thomas | ON { $$ = 1; }
176 8a35f56c 2022-07-16 thomas | NUMBER { $$ = $1; }
177 8a35f56c 2022-07-16 thomas ;
178 8a35f56c 2022-07-16 thomas
179 77fb808d 2022-08-29 thomas fcgiport : PORT NUMBER {
180 77fb808d 2022-08-29 thomas if ($2 <= 0 || $2 > (int)USHRT_MAX) {
181 77fb808d 2022-08-29 thomas yyerror("invalid port: %lld", $2);
182 8a35f56c 2022-07-16 thomas YYERROR;
183 8a35f56c 2022-07-16 thomas }
184 77fb808d 2022-08-29 thomas $$ = $2;
185 8a35f56c 2022-07-16 thomas }
186 77fb808d 2022-08-29 thomas | PORT STRING {
187 8a35f56c 2022-07-16 thomas int val;
188 8a35f56c 2022-07-16 thomas
189 77fb808d 2022-08-29 thomas if ((val = getservice($2)) == -1) {
190 77fb808d 2022-08-29 thomas yyerror("invalid port: %s", $2);
191 77fb808d 2022-08-29 thomas free($2);
192 8a35f56c 2022-07-16 thomas YYERROR;
193 8a35f56c 2022-07-16 thomas }
194 77fb808d 2022-08-29 thomas free($2);
195 8a35f56c 2022-07-16 thomas
196 8a35f56c 2022-07-16 thomas $$ = val;
197 8a35f56c 2022-07-16 thomas }
198 8a35f56c 2022-07-16 thomas ;
199 8a35f56c 2022-07-16 thomas
200 8a35f56c 2022-07-16 thomas main : PREFORK NUMBER {
201 8a35f56c 2022-07-16 thomas gotwebd->prefork_gotwebd = $2;
202 8a35f56c 2022-07-16 thomas }
203 8a35f56c 2022-07-16 thomas | CHROOT STRING {
204 8a35f56c 2022-07-16 thomas n = strlcpy(gotwebd->httpd_chroot, $2,
205 8a35f56c 2022-07-16 thomas sizeof(gotwebd->httpd_chroot));
206 8a35f56c 2022-07-16 thomas if (n >= sizeof(gotwebd->httpd_chroot)) {
207 8a35f56c 2022-07-16 thomas yyerror("%s: httpd_chroot truncated", __func__);
208 8a35f56c 2022-07-16 thomas free($2);
209 8a35f56c 2022-07-16 thomas YYERROR;
210 8a35f56c 2022-07-16 thomas }
211 8a35f56c 2022-07-16 thomas free($2);
212 8a35f56c 2022-07-16 thomas }
213 8a35f56c 2022-07-16 thomas | UNIX_SOCKET boolean {
214 8a35f56c 2022-07-16 thomas gotwebd->unix_socket = $2;
215 8a35f56c 2022-07-16 thomas }
216 8a35f56c 2022-07-16 thomas | UNIX_SOCKET_NAME STRING {
217 8a35f56c 2022-07-16 thomas n = snprintf(gotwebd->unix_socket_name,
218 8a35f56c 2022-07-16 thomas sizeof(gotwebd->unix_socket_name), "%s%s",
219 8a35f56c 2022-07-16 thomas strlen(gotwebd->httpd_chroot) ?
220 8a35f56c 2022-07-16 thomas gotwebd->httpd_chroot : D_HTTPD_CHROOT, $2);
221 717a78d4 2022-08-16 thomas if (n < 0 ||
222 717a78d4 2022-08-16 thomas (size_t)n >= sizeof(gotwebd->unix_socket_name)) {
223 8a35f56c 2022-07-16 thomas yyerror("%s: unix_socket_name truncated",
224 8a35f56c 2022-07-16 thomas __func__);
225 8a35f56c 2022-07-16 thomas free($2);
226 8a35f56c 2022-07-16 thomas YYERROR;
227 8a35f56c 2022-07-16 thomas }
228 8a35f56c 2022-07-16 thomas free($2);
229 8a35f56c 2022-07-16 thomas }
230 8a35f56c 2022-07-16 thomas ;
231 8a35f56c 2022-07-16 thomas
232 8a35f56c 2022-07-16 thomas server : SERVER STRING {
233 8a35f56c 2022-07-16 thomas struct server *srv;
234 8a35f56c 2022-07-16 thomas
235 90d63d47 2022-08-16 thomas TAILQ_FOREACH(srv, &gotwebd->servers, entry) {
236 8a35f56c 2022-07-16 thomas if (strcmp(srv->name, $2) == 0) {
237 8a35f56c 2022-07-16 thomas yyerror("server name exists '%s'", $2);
238 8a35f56c 2022-07-16 thomas free($2);
239 8a35f56c 2022-07-16 thomas YYERROR;
240 8a35f56c 2022-07-16 thomas }
241 8a35f56c 2022-07-16 thomas }
242 8a35f56c 2022-07-16 thomas
243 8a35f56c 2022-07-16 thomas new_srv = conf_new_server($2);
244 8a35f56c 2022-07-16 thomas log_debug("adding server %s", $2);
245 8a35f56c 2022-07-16 thomas free($2);
246 8a35f56c 2022-07-16 thomas }
247 8a35f56c 2022-07-16 thomas | SERVER STRING {
248 8a35f56c 2022-07-16 thomas struct server *srv;
249 8a35f56c 2022-07-16 thomas
250 90d63d47 2022-08-16 thomas TAILQ_FOREACH(srv, &gotwebd->servers, entry) {
251 8a35f56c 2022-07-16 thomas if (strcmp(srv->name, $2) == 0) {
252 8a35f56c 2022-07-16 thomas yyerror("server name exists '%s'", $2);
253 8a35f56c 2022-07-16 thomas free($2);
254 8a35f56c 2022-07-16 thomas YYERROR;
255 8a35f56c 2022-07-16 thomas }
256 8a35f56c 2022-07-16 thomas }
257 8a35f56c 2022-07-16 thomas
258 8a35f56c 2022-07-16 thomas new_srv = conf_new_server($2);
259 8a35f56c 2022-07-16 thomas log_debug("adding server %s", $2);
260 8a35f56c 2022-07-16 thomas free($2);
261 8a35f56c 2022-07-16 thomas } '{' optnl serveropts2 '}' {
262 8a35f56c 2022-07-16 thomas }
263 8a35f56c 2022-07-16 thomas ;
264 8a35f56c 2022-07-16 thomas
265 8a35f56c 2022-07-16 thomas serveropts1 : REPOS_PATH STRING {
266 8a35f56c 2022-07-16 thomas n = strlcpy(new_srv->repos_path, $2,
267 8a35f56c 2022-07-16 thomas sizeof(new_srv->repos_path));
268 8a35f56c 2022-07-16 thomas if (n >= sizeof(new_srv->repos_path)) {
269 8a35f56c 2022-07-16 thomas yyerror("%s: repos_path truncated", __func__);
270 8a35f56c 2022-07-16 thomas free($2);
271 8a35f56c 2022-07-16 thomas YYERROR;
272 8a35f56c 2022-07-16 thomas }
273 8a35f56c 2022-07-16 thomas free($2);
274 8a35f56c 2022-07-16 thomas }
275 8a35f56c 2022-07-16 thomas | SITE_NAME STRING {
276 8a35f56c 2022-07-16 thomas n = strlcpy(new_srv->site_name, $2,
277 8a35f56c 2022-07-16 thomas sizeof(new_srv->site_name));
278 8a35f56c 2022-07-16 thomas if (n >= sizeof(new_srv->site_name)) {
279 8a35f56c 2022-07-16 thomas yyerror("%s: site_name truncated", __func__);
280 8a35f56c 2022-07-16 thomas free($2);
281 8a35f56c 2022-07-16 thomas YYERROR;
282 8a35f56c 2022-07-16 thomas }
283 8a35f56c 2022-07-16 thomas free($2);
284 8a35f56c 2022-07-16 thomas }
285 8a35f56c 2022-07-16 thomas | SITE_OWNER STRING {
286 8a35f56c 2022-07-16 thomas n = strlcpy(new_srv->site_owner, $2,
287 8a35f56c 2022-07-16 thomas sizeof(new_srv->site_owner));
288 8a35f56c 2022-07-16 thomas if (n >= sizeof(new_srv->site_owner)) {
289 8a35f56c 2022-07-16 thomas yyerror("%s: site_owner truncated", __func__);
290 8a35f56c 2022-07-16 thomas free($2);
291 8a35f56c 2022-07-16 thomas YYERROR;
292 8a35f56c 2022-07-16 thomas }
293 8a35f56c 2022-07-16 thomas free($2);
294 8a35f56c 2022-07-16 thomas }
295 8a35f56c 2022-07-16 thomas | SITE_LINK STRING {
296 8a35f56c 2022-07-16 thomas n = strlcpy(new_srv->site_link, $2,
297 8a35f56c 2022-07-16 thomas sizeof(new_srv->site_link));
298 8a35f56c 2022-07-16 thomas if (n >= sizeof(new_srv->site_link)) {
299 8a35f56c 2022-07-16 thomas yyerror("%s: site_link truncated", __func__);
300 8a35f56c 2022-07-16 thomas free($2);
301 8a35f56c 2022-07-16 thomas YYERROR;
302 8a35f56c 2022-07-16 thomas }
303 8a35f56c 2022-07-16 thomas free($2);
304 8a35f56c 2022-07-16 thomas }
305 8a35f56c 2022-07-16 thomas | LOGO STRING {
306 8a35f56c 2022-07-16 thomas n = strlcpy(new_srv->logo, $2, sizeof(new_srv->logo));
307 8a35f56c 2022-07-16 thomas if (n >= sizeof(new_srv->logo)) {
308 8a35f56c 2022-07-16 thomas yyerror("%s: logo truncated", __func__);
309 8a35f56c 2022-07-16 thomas free($2);
310 8a35f56c 2022-07-16 thomas YYERROR;
311 8a35f56c 2022-07-16 thomas }
312 8a35f56c 2022-07-16 thomas free($2);
313 8a35f56c 2022-07-16 thomas }
314 8a35f56c 2022-07-16 thomas | LOGO_URL STRING {
315 8a35f56c 2022-07-16 thomas n = strlcpy(new_srv->logo_url, $2,
316 8a35f56c 2022-07-16 thomas sizeof(new_srv->logo_url));
317 8a35f56c 2022-07-16 thomas if (n >= sizeof(new_srv->logo_url)) {
318 8a35f56c 2022-07-16 thomas yyerror("%s: logo_url truncated", __func__);
319 8a35f56c 2022-07-16 thomas free($2);
320 8a35f56c 2022-07-16 thomas YYERROR;
321 8a35f56c 2022-07-16 thomas }
322 8a35f56c 2022-07-16 thomas free($2);
323 8a35f56c 2022-07-16 thomas }
324 8a35f56c 2022-07-16 thomas | CUSTOM_CSS STRING {
325 8a35f56c 2022-07-16 thomas n = strlcpy(new_srv->custom_css, $2,
326 8a35f56c 2022-07-16 thomas sizeof(new_srv->custom_css));
327 8a35f56c 2022-07-16 thomas if (n >= sizeof(new_srv->custom_css)) {
328 8a35f56c 2022-07-16 thomas yyerror("%s: custom_css truncated", __func__);
329 8a35f56c 2022-07-16 thomas free($2);
330 8a35f56c 2022-07-16 thomas YYERROR;
331 8a35f56c 2022-07-16 thomas }
332 8a35f56c 2022-07-16 thomas free($2);
333 8a35f56c 2022-07-16 thomas }
334 77fb808d 2022-08-29 thomas | LISTEN ON STRING fcgiport {
335 e4c7e0b0 2022-08-30 thomas if (get_addrs($3, new_srv, $4) == -1) {
336 e4c7e0b0 2022-08-30 thomas yyerror("could not get addrs");
337 77fb808d 2022-08-29 thomas YYERROR;
338 77fb808d 2022-08-29 thomas }
339 e4317279 2022-08-30 thomas new_srv->fcgi_socket = 1;
340 77fb808d 2022-08-29 thomas }
341 8a35f56c 2022-07-16 thomas | MAX_REPOS NUMBER {
342 8a35f56c 2022-07-16 thomas if ($2 > 0)
343 8a35f56c 2022-07-16 thomas new_srv->max_repos = $2;
344 8a35f56c 2022-07-16 thomas }
345 8a35f56c 2022-07-16 thomas | SHOW_SITE_OWNER boolean {
346 8a35f56c 2022-07-16 thomas new_srv->show_site_owner = $2;
347 8a35f56c 2022-07-16 thomas }
348 8a35f56c 2022-07-16 thomas | SHOW_REPO_OWNER boolean {
349 8a35f56c 2022-07-16 thomas new_srv->show_repo_owner = $2;
350 8a35f56c 2022-07-16 thomas }
351 8a35f56c 2022-07-16 thomas | SHOW_REPO_AGE boolean {
352 8a35f56c 2022-07-16 thomas new_srv->show_repo_age = $2;
353 8a35f56c 2022-07-16 thomas }
354 8a35f56c 2022-07-16 thomas | SHOW_REPO_DESCRIPTION boolean {
355 8a35f56c 2022-07-16 thomas new_srv->show_repo_description = $2;
356 8a35f56c 2022-07-16 thomas }
357 8a35f56c 2022-07-16 thomas | SHOW_REPO_CLONEURL boolean {
358 8a35f56c 2022-07-16 thomas new_srv->show_repo_cloneurl = $2;
359 8a35f56c 2022-07-16 thomas }
360 3991b2a5 2022-10-31 thomas | RESPECT_EXPORTOK boolean {
361 3991b2a5 2022-10-31 thomas new_srv->respect_exportok = $2;
362 3991b2a5 2022-10-31 thomas }
363 8a35f56c 2022-07-16 thomas | MAX_REPOS_DISPLAY NUMBER {
364 8a35f56c 2022-07-16 thomas new_srv->max_repos_display = $2;
365 8a35f56c 2022-07-16 thomas }
366 8a35f56c 2022-07-16 thomas | MAX_COMMITS_DISPLAY NUMBER {
367 8a35f56c 2022-07-16 thomas if ($2 > 0)
368 8a35f56c 2022-07-16 thomas new_srv->max_commits_display = $2;
369 8a35f56c 2022-07-16 thomas }
370 8a35f56c 2022-07-16 thomas | UNIX_SOCKET boolean {
371 8a35f56c 2022-07-16 thomas new_srv->unix_socket = $2;
372 8a35f56c 2022-07-16 thomas }
373 8a35f56c 2022-07-16 thomas | UNIX_SOCKET_NAME STRING {
374 8a35f56c 2022-07-16 thomas n = snprintf(new_srv->unix_socket_name,
375 8a35f56c 2022-07-16 thomas sizeof(new_srv->unix_socket_name), "%s%s",
376 8a35f56c 2022-07-16 thomas strlen(gotwebd->httpd_chroot) ?
377 8a35f56c 2022-07-16 thomas gotwebd->httpd_chroot : D_HTTPD_CHROOT, $2);
378 717a78d4 2022-08-16 thomas if (n < 0 ||
379 717a78d4 2022-08-16 thomas (size_t)n >= sizeof(new_srv->unix_socket_name)) {
380 8a35f56c 2022-07-16 thomas yyerror("%s: unix_socket_name truncated",
381 8a35f56c 2022-07-16 thomas __func__);
382 8a35f56c 2022-07-16 thomas free($2);
383 8a35f56c 2022-07-16 thomas YYERROR;
384 8a35f56c 2022-07-16 thomas }
385 8a35f56c 2022-07-16 thomas free($2);
386 8a35f56c 2022-07-16 thomas }
387 8a35f56c 2022-07-16 thomas ;
388 8a35f56c 2022-07-16 thomas
389 8a35f56c 2022-07-16 thomas serveropts2 : serveropts2 serveropts1 nl
390 8a35f56c 2022-07-16 thomas | serveropts1 optnl
391 8a35f56c 2022-07-16 thomas ;
392 8a35f56c 2022-07-16 thomas
393 8a35f56c 2022-07-16 thomas nl : '\n' optnl
394 8a35f56c 2022-07-16 thomas ;
395 8a35f56c 2022-07-16 thomas
396 8a35f56c 2022-07-16 thomas optnl : '\n' optnl /* zero or more newlines */
397 8a35f56c 2022-07-16 thomas | /* empty */
398 8a35f56c 2022-07-16 thomas ;
399 8a35f56c 2022-07-16 thomas
400 8a35f56c 2022-07-16 thomas %%
401 8a35f56c 2022-07-16 thomas
402 8a35f56c 2022-07-16 thomas struct keywords {
403 8a35f56c 2022-07-16 thomas const char *k_name;
404 8a35f56c 2022-07-16 thomas int k_val;
405 8a35f56c 2022-07-16 thomas };
406 8a35f56c 2022-07-16 thomas
407 8a35f56c 2022-07-16 thomas int
408 8a35f56c 2022-07-16 thomas yyerror(const char *fmt, ...)
409 8a35f56c 2022-07-16 thomas {
410 8a35f56c 2022-07-16 thomas va_list ap;
411 8a35f56c 2022-07-16 thomas char *msg;
412 8a35f56c 2022-07-16 thomas
413 8a35f56c 2022-07-16 thomas file->errors++;
414 8a35f56c 2022-07-16 thomas va_start(ap, fmt);
415 8a35f56c 2022-07-16 thomas if (vasprintf(&msg, fmt, ap) == -1)
416 8a35f56c 2022-07-16 thomas fatalx("yyerror vasprintf");
417 8a35f56c 2022-07-16 thomas va_end(ap);
418 8a35f56c 2022-07-16 thomas logit(LOG_CRIT, "%s:%d: %s", file->name, yylval.lineno, msg);
419 8a35f56c 2022-07-16 thomas free(msg);
420 8a35f56c 2022-07-16 thomas return (0);
421 8a35f56c 2022-07-16 thomas }
422 8a35f56c 2022-07-16 thomas
423 8a35f56c 2022-07-16 thomas int
424 8a35f56c 2022-07-16 thomas kw_cmp(const void *k, const void *e)
425 8a35f56c 2022-07-16 thomas {
426 8a35f56c 2022-07-16 thomas return (strcmp(k, ((const struct keywords *)e)->k_name));
427 8a35f56c 2022-07-16 thomas }
428 8a35f56c 2022-07-16 thomas
429 8a35f56c 2022-07-16 thomas int
430 8a35f56c 2022-07-16 thomas lookup(char *s)
431 8a35f56c 2022-07-16 thomas {
432 8a35f56c 2022-07-16 thomas /* This has to be sorted always. */
433 8a35f56c 2022-07-16 thomas static const struct keywords keywords[] = {
434 8a35f56c 2022-07-16 thomas { "chroot", CHROOT },
435 8a35f56c 2022-07-16 thomas { "custom_css", CUSTOM_CSS },
436 c24a47af 2022-08-11 thomas { "listen", LISTEN },
437 8a35f56c 2022-07-16 thomas { "logo", LOGO },
438 8a35f56c 2022-07-16 thomas { "logo_url" , LOGO_URL },
439 8a35f56c 2022-07-16 thomas { "max_commits_display", MAX_COMMITS_DISPLAY },
440 8a35f56c 2022-07-16 thomas { "max_repos", MAX_REPOS },
441 8a35f56c 2022-07-16 thomas { "max_repos_display", MAX_REPOS_DISPLAY },
442 c24a47af 2022-08-11 thomas { "on", ON },
443 8a35f56c 2022-07-16 thomas { "port", PORT },
444 8a35f56c 2022-07-16 thomas { "prefork", PREFORK },
445 8a35f56c 2022-07-16 thomas { "repos_path", REPOS_PATH },
446 3991b2a5 2022-10-31 thomas { "respect_exportok", RESPECT_EXPORTOK },
447 8a35f56c 2022-07-16 thomas { "server", SERVER },
448 8a35f56c 2022-07-16 thomas { "show_repo_age", SHOW_REPO_AGE },
449 8a35f56c 2022-07-16 thomas { "show_repo_cloneurl", SHOW_REPO_CLONEURL },
450 8a35f56c 2022-07-16 thomas { "show_repo_description", SHOW_REPO_DESCRIPTION },
451 8a35f56c 2022-07-16 thomas { "show_repo_owner", SHOW_REPO_OWNER },
452 8a35f56c 2022-07-16 thomas { "show_site_owner", SHOW_SITE_OWNER },
453 8a35f56c 2022-07-16 thomas { "site_link", SITE_LINK },
454 8a35f56c 2022-07-16 thomas { "site_name", SITE_NAME },
455 8a35f56c 2022-07-16 thomas { "site_owner", SITE_OWNER },
456 8a35f56c 2022-07-16 thomas { "unix_socket", UNIX_SOCKET },
457 8a35f56c 2022-07-16 thomas { "unix_socket_name", UNIX_SOCKET_NAME },
458 8a35f56c 2022-07-16 thomas };
459 8a35f56c 2022-07-16 thomas const struct keywords *p;
460 8a35f56c 2022-07-16 thomas
461 8a35f56c 2022-07-16 thomas p = bsearch(s, keywords, sizeof(keywords)/sizeof(keywords[0]),
462 8a35f56c 2022-07-16 thomas sizeof(keywords[0]), kw_cmp);
463 8a35f56c 2022-07-16 thomas
464 8a35f56c 2022-07-16 thomas if (p)
465 8a35f56c 2022-07-16 thomas return (p->k_val);
466 8a35f56c 2022-07-16 thomas else
467 8a35f56c 2022-07-16 thomas return (STRING);
468 8a35f56c 2022-07-16 thomas }
469 8a35f56c 2022-07-16 thomas
470 8a35f56c 2022-07-16 thomas #define MAXPUSHBACK 128
471 8a35f56c 2022-07-16 thomas
472 8a35f56c 2022-07-16 thomas unsigned char *parsebuf;
473 8a35f56c 2022-07-16 thomas int parseindex;
474 8a35f56c 2022-07-16 thomas unsigned char pushback_buffer[MAXPUSHBACK];
475 8a35f56c 2022-07-16 thomas int pushback_index = 0;
476 8a35f56c 2022-07-16 thomas
477 8a35f56c 2022-07-16 thomas int
478 8a35f56c 2022-07-16 thomas lgetc(int quotec)
479 8a35f56c 2022-07-16 thomas {
480 8a35f56c 2022-07-16 thomas int c, next;
481 8a35f56c 2022-07-16 thomas
482 8a35f56c 2022-07-16 thomas if (parsebuf) {
483 8a35f56c 2022-07-16 thomas /* Read character from the parsebuffer instead of input. */
484 8a35f56c 2022-07-16 thomas if (parseindex >= 0) {
485 8a35f56c 2022-07-16 thomas c = parsebuf[parseindex++];
486 8a35f56c 2022-07-16 thomas if (c != '\0')
487 8a35f56c 2022-07-16 thomas return (c);
488 8a35f56c 2022-07-16 thomas parsebuf = NULL;
489 8a35f56c 2022-07-16 thomas } else
490 8a35f56c 2022-07-16 thomas parseindex++;
491 8a35f56c 2022-07-16 thomas }
492 8a35f56c 2022-07-16 thomas
493 8a35f56c 2022-07-16 thomas if (pushback_index)
494 8a35f56c 2022-07-16 thomas return (pushback_buffer[--pushback_index]);
495 8a35f56c 2022-07-16 thomas
496 8a35f56c 2022-07-16 thomas if (quotec) {
497 8a35f56c 2022-07-16 thomas c = getc(file->stream);
498 8a35f56c 2022-07-16 thomas if (c == EOF)
499 8a35f56c 2022-07-16 thomas yyerror("reached end of file while parsing "
500 8a35f56c 2022-07-16 thomas "quoted string");
501 8a35f56c 2022-07-16 thomas return (c);
502 8a35f56c 2022-07-16 thomas }
503 8a35f56c 2022-07-16 thomas
504 8a35f56c 2022-07-16 thomas c = getc(file->stream);
505 8a35f56c 2022-07-16 thomas while (c == '\\') {
506 8a35f56c 2022-07-16 thomas next = getc(file->stream);
507 8a35f56c 2022-07-16 thomas if (next != '\n') {
508 8a35f56c 2022-07-16 thomas c = next;
509 8a35f56c 2022-07-16 thomas break;
510 8a35f56c 2022-07-16 thomas }
511 8a35f56c 2022-07-16 thomas yylval.lineno = file->lineno;
512 8a35f56c 2022-07-16 thomas file->lineno++;
513 8a35f56c 2022-07-16 thomas c = getc(file->stream);
514 8a35f56c 2022-07-16 thomas }
515 8a35f56c 2022-07-16 thomas
516 8a35f56c 2022-07-16 thomas return (c);
517 8a35f56c 2022-07-16 thomas }
518 8a35f56c 2022-07-16 thomas
519 8a35f56c 2022-07-16 thomas int
520 8a35f56c 2022-07-16 thomas lungetc(int c)
521 8a35f56c 2022-07-16 thomas {
522 8a35f56c 2022-07-16 thomas if (c == EOF)
523 8a35f56c 2022-07-16 thomas return (EOF);
524 8a35f56c 2022-07-16 thomas if (parsebuf) {
525 8a35f56c 2022-07-16 thomas parseindex--;
526 8a35f56c 2022-07-16 thomas if (parseindex >= 0)
527 8a35f56c 2022-07-16 thomas return (c);
528 8a35f56c 2022-07-16 thomas }
529 8a35f56c 2022-07-16 thomas if (pushback_index < MAXPUSHBACK-1)
530 8a35f56c 2022-07-16 thomas return (pushback_buffer[pushback_index++] = c);
531 8a35f56c 2022-07-16 thomas else
532 8a35f56c 2022-07-16 thomas return (EOF);
533 8a35f56c 2022-07-16 thomas }
534 8a35f56c 2022-07-16 thomas
535 8a35f56c 2022-07-16 thomas int
536 8a35f56c 2022-07-16 thomas findeol(void)
537 8a35f56c 2022-07-16 thomas {
538 8a35f56c 2022-07-16 thomas int c;
539 8a35f56c 2022-07-16 thomas
540 8a35f56c 2022-07-16 thomas parsebuf = NULL;
541 8a35f56c 2022-07-16 thomas
542 8a35f56c 2022-07-16 thomas /* Skip to either EOF or the first real EOL. */
543 8a35f56c 2022-07-16 thomas while (1) {
544 8a35f56c 2022-07-16 thomas if (pushback_index)
545 8a35f56c 2022-07-16 thomas c = pushback_buffer[--pushback_index];
546 8a35f56c 2022-07-16 thomas else
547 8a35f56c 2022-07-16 thomas c = lgetc(0);
548 8a35f56c 2022-07-16 thomas if (c == '\n') {
549 8a35f56c 2022-07-16 thomas file->lineno++;
550 8a35f56c 2022-07-16 thomas break;
551 8a35f56c 2022-07-16 thomas }
552 8a35f56c 2022-07-16 thomas if (c == EOF)
553 8a35f56c 2022-07-16 thomas break;
554 8a35f56c 2022-07-16 thomas }
555 8a35f56c 2022-07-16 thomas return (ERROR);
556 8a35f56c 2022-07-16 thomas }
557 8a35f56c 2022-07-16 thomas
558 8a35f56c 2022-07-16 thomas int
559 8a35f56c 2022-07-16 thomas yylex(void)
560 8a35f56c 2022-07-16 thomas {
561 8a35f56c 2022-07-16 thomas unsigned char buf[8096];
562 8a35f56c 2022-07-16 thomas unsigned char *p, *val;
563 8a35f56c 2022-07-16 thomas int quotec, next, c;
564 8a35f56c 2022-07-16 thomas int token;
565 8a35f56c 2022-07-16 thomas
566 8a35f56c 2022-07-16 thomas top:
567 8a35f56c 2022-07-16 thomas p = buf;
568 8a35f56c 2022-07-16 thomas c = lgetc(0);
569 8a35f56c 2022-07-16 thomas while (c == ' ' || c == '\t')
570 8a35f56c 2022-07-16 thomas c = lgetc(0); /* nothing */
571 8a35f56c 2022-07-16 thomas
572 8a35f56c 2022-07-16 thomas yylval.lineno = file->lineno;
573 8a35f56c 2022-07-16 thomas if (c == '#') {
574 8a35f56c 2022-07-16 thomas c = lgetc(0);
575 8a35f56c 2022-07-16 thomas while (c != '\n' && c != EOF)
576 8a35f56c 2022-07-16 thomas c = lgetc(0); /* nothing */
577 8a35f56c 2022-07-16 thomas }
578 8a35f56c 2022-07-16 thomas if (c == '$' && parsebuf == NULL) {
579 8a35f56c 2022-07-16 thomas while (1) {
580 8a35f56c 2022-07-16 thomas c = lgetc(0);
581 8a35f56c 2022-07-16 thomas if (c == EOF)
582 8a35f56c 2022-07-16 thomas return (0);
583 8a35f56c 2022-07-16 thomas
584 8a35f56c 2022-07-16 thomas if (p + 1 >= buf + sizeof(buf) - 1) {
585 8a35f56c 2022-07-16 thomas yyerror("string too long");
586 8a35f56c 2022-07-16 thomas return (findeol());
587 8a35f56c 2022-07-16 thomas }
588 8a35f56c 2022-07-16 thomas if (isalnum(c) || c == '_') {
589 8a35f56c 2022-07-16 thomas *p++ = c;
590 8a35f56c 2022-07-16 thomas continue;
591 8a35f56c 2022-07-16 thomas }
592 8a35f56c 2022-07-16 thomas *p = '\0';
593 8a35f56c 2022-07-16 thomas lungetc(c);
594 8a35f56c 2022-07-16 thomas break;
595 8a35f56c 2022-07-16 thomas }
596 8a35f56c 2022-07-16 thomas val = symget(buf);
597 8a35f56c 2022-07-16 thomas if (val == NULL) {
598 8a35f56c 2022-07-16 thomas yyerror("macro '%s' not defined", buf);
599 8a35f56c 2022-07-16 thomas return (findeol());
600 8a35f56c 2022-07-16 thomas }
601 8a35f56c 2022-07-16 thomas parsebuf = val;
602 8a35f56c 2022-07-16 thomas parseindex = 0;
603 8a35f56c 2022-07-16 thomas goto top;
604 8a35f56c 2022-07-16 thomas }
605 8a35f56c 2022-07-16 thomas
606 8a35f56c 2022-07-16 thomas switch (c) {
607 8a35f56c 2022-07-16 thomas case '\'':
608 8a35f56c 2022-07-16 thomas case '"':
609 8a35f56c 2022-07-16 thomas quotec = c;
610 8a35f56c 2022-07-16 thomas while (1) {
611 8a35f56c 2022-07-16 thomas c = lgetc(quotec);
612 8a35f56c 2022-07-16 thomas if (c == EOF)
613 8a35f56c 2022-07-16 thomas return (0);
614 8a35f56c 2022-07-16 thomas if (c == '\n') {
615 8a35f56c 2022-07-16 thomas file->lineno++;
616 8a35f56c 2022-07-16 thomas continue;
617 8a35f56c 2022-07-16 thomas } else if (c == '\\') {
618 8a35f56c 2022-07-16 thomas next = lgetc(quotec);
619 8a35f56c 2022-07-16 thomas if (next == EOF)
620 8a35f56c 2022-07-16 thomas return (0);
621 8a35f56c 2022-07-16 thomas if (next == quotec || c == ' ' || c == '\t')
622 8a35f56c 2022-07-16 thomas c = next;
623 8a35f56c 2022-07-16 thomas else if (next == '\n') {
624 8a35f56c 2022-07-16 thomas file->lineno++;
625 8a35f56c 2022-07-16 thomas continue;
626 8a35f56c 2022-07-16 thomas } else
627 8a35f56c 2022-07-16 thomas lungetc(next);
628 8a35f56c 2022-07-16 thomas } else if (c == quotec) {
629 8a35f56c 2022-07-16 thomas *p = '\0';
630 8a35f56c 2022-07-16 thomas break;
631 8a35f56c 2022-07-16 thomas } else if (c == '\0') {
632 8a35f56c 2022-07-16 thomas yyerror("syntax error");
633 8a35f56c 2022-07-16 thomas return (findeol());
634 8a35f56c 2022-07-16 thomas }
635 8a35f56c 2022-07-16 thomas if (p + 1 >= buf + sizeof(buf) - 1) {
636 8a35f56c 2022-07-16 thomas yyerror("string too long");
637 8a35f56c 2022-07-16 thomas return (findeol());
638 8a35f56c 2022-07-16 thomas }
639 8a35f56c 2022-07-16 thomas *p++ = c;
640 8a35f56c 2022-07-16 thomas }
641 8a35f56c 2022-07-16 thomas yylval.v.string = strdup(buf);
642 8a35f56c 2022-07-16 thomas if (yylval.v.string == NULL)
643 8a35f56c 2022-07-16 thomas err(1, "yylex: strdup");
644 8a35f56c 2022-07-16 thomas return (STRING);
645 8a35f56c 2022-07-16 thomas }
646 8a35f56c 2022-07-16 thomas
647 8a35f56c 2022-07-16 thomas #define allowed_to_end_number(x) \
648 8a35f56c 2022-07-16 thomas (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=')
649 8a35f56c 2022-07-16 thomas
650 8a35f56c 2022-07-16 thomas if (c == '-' || isdigit(c)) {
651 8a35f56c 2022-07-16 thomas do {
652 8a35f56c 2022-07-16 thomas *p++ = c;
653 8a35f56c 2022-07-16 thomas if ((unsigned)(p-buf) >= sizeof(buf)) {
654 8a35f56c 2022-07-16 thomas yyerror("string too long");
655 8a35f56c 2022-07-16 thomas return (findeol());
656 8a35f56c 2022-07-16 thomas }
657 8a35f56c 2022-07-16 thomas c = lgetc(0);
658 8a35f56c 2022-07-16 thomas } while (c != EOF && isdigit(c));
659 8a35f56c 2022-07-16 thomas lungetc(c);
660 8a35f56c 2022-07-16 thomas if (p == buf + 1 && buf[0] == '-')
661 8a35f56c 2022-07-16 thomas goto nodigits;
662 8a35f56c 2022-07-16 thomas if (c == EOF || allowed_to_end_number(c)) {
663 8a35f56c 2022-07-16 thomas const char *errstr = NULL;
664 8a35f56c 2022-07-16 thomas
665 8a35f56c 2022-07-16 thomas *p = '\0';
666 8a35f56c 2022-07-16 thomas yylval.v.number = strtonum(buf, LLONG_MIN,
667 8a35f56c 2022-07-16 thomas LLONG_MAX, &errstr);
668 8a35f56c 2022-07-16 thomas if (errstr) {
669 8a35f56c 2022-07-16 thomas yyerror("\"%s\" invalid number: %s",
670 8a35f56c 2022-07-16 thomas buf, errstr);
671 8a35f56c 2022-07-16 thomas return (findeol());
672 8a35f56c 2022-07-16 thomas }
673 8a35f56c 2022-07-16 thomas return (NUMBER);
674 8a35f56c 2022-07-16 thomas } else {
675 8a35f56c 2022-07-16 thomas nodigits:
676 8a35f56c 2022-07-16 thomas while (p > buf + 1)
677 8a35f56c 2022-07-16 thomas lungetc(*--p);
678 8a35f56c 2022-07-16 thomas c = *--p;
679 8a35f56c 2022-07-16 thomas if (c == '-')
680 8a35f56c 2022-07-16 thomas return (c);
681 8a35f56c 2022-07-16 thomas }
682 8a35f56c 2022-07-16 thomas }
683 8a35f56c 2022-07-16 thomas
684 8a35f56c 2022-07-16 thomas #define allowed_in_string(x) \
685 8a35f56c 2022-07-16 thomas (isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \
686 8a35f56c 2022-07-16 thomas x != '{' && x != '}' && \
687 8a35f56c 2022-07-16 thomas x != '!' && x != '=' && x != '#' && \
688 8a35f56c 2022-07-16 thomas x != ','))
689 8a35f56c 2022-07-16 thomas
690 8a35f56c 2022-07-16 thomas if (isalnum(c) || c == ':' || c == '_') {
691 8a35f56c 2022-07-16 thomas do {
692 8a35f56c 2022-07-16 thomas *p++ = c;
693 8a35f56c 2022-07-16 thomas if ((unsigned)(p-buf) >= sizeof(buf)) {
694 8a35f56c 2022-07-16 thomas yyerror("string too long");
695 8a35f56c 2022-07-16 thomas return (findeol());
696 8a35f56c 2022-07-16 thomas }
697 8a35f56c 2022-07-16 thomas c = lgetc(0);
698 8a35f56c 2022-07-16 thomas } while (c != EOF && (allowed_in_string(c)));
699 8a35f56c 2022-07-16 thomas lungetc(c);
700 8a35f56c 2022-07-16 thomas *p = '\0';
701 8a35f56c 2022-07-16 thomas token = lookup(buf);
702 8a35f56c 2022-07-16 thomas if (token == STRING) {
703 8a35f56c 2022-07-16 thomas yylval.v.string = strdup(buf);
704 8a35f56c 2022-07-16 thomas if (yylval.v.string == NULL)
705 8a35f56c 2022-07-16 thomas err(1, "yylex: strdup");
706 8a35f56c 2022-07-16 thomas }
707 8a35f56c 2022-07-16 thomas return (token);
708 8a35f56c 2022-07-16 thomas }
709 8a35f56c 2022-07-16 thomas if (c == '\n') {
710 8a35f56c 2022-07-16 thomas yylval.lineno = file->lineno;
711 8a35f56c 2022-07-16 thomas file->lineno++;
712 8a35f56c 2022-07-16 thomas }
713 8a35f56c 2022-07-16 thomas if (c == EOF)
714 8a35f56c 2022-07-16 thomas return (0);
715 8a35f56c 2022-07-16 thomas return (c);
716 8a35f56c 2022-07-16 thomas }
717 8a35f56c 2022-07-16 thomas
718 8a35f56c 2022-07-16 thomas int
719 8a35f56c 2022-07-16 thomas check_file_secrecy(int fd, const char *fname)
720 8a35f56c 2022-07-16 thomas {
721 8a35f56c 2022-07-16 thomas struct stat st;
722 8a35f56c 2022-07-16 thomas
723 8a35f56c 2022-07-16 thomas if (fstat(fd, &st)) {
724 8a35f56c 2022-07-16 thomas log_warn("cannot stat %s", fname);
725 8a35f56c 2022-07-16 thomas return (-1);
726 8a35f56c 2022-07-16 thomas }
727 8a35f56c 2022-07-16 thomas if (st.st_uid != 0 && st.st_uid != getuid()) {
728 8a35f56c 2022-07-16 thomas log_warnx("%s: owner not root or current user", fname);
729 8a35f56c 2022-07-16 thomas return (-1);
730 8a35f56c 2022-07-16 thomas }
731 8a35f56c 2022-07-16 thomas if (st.st_mode & (S_IWGRP | S_IXGRP | S_IRWXO)) {
732 8a35f56c 2022-07-16 thomas log_warnx("%s: group writable or world read/writable", fname);
733 8a35f56c 2022-07-16 thomas return (-1);
734 8a35f56c 2022-07-16 thomas }
735 8a35f56c 2022-07-16 thomas return (0);
736 8a35f56c 2022-07-16 thomas }
737 8a35f56c 2022-07-16 thomas
738 8a35f56c 2022-07-16 thomas struct file *
739 8a35f56c 2022-07-16 thomas newfile(const char *name, int secret)
740 8a35f56c 2022-07-16 thomas {
741 8a35f56c 2022-07-16 thomas struct file *nfile;
742 8a35f56c 2022-07-16 thomas
743 8a35f56c 2022-07-16 thomas nfile = calloc(1, sizeof(struct file));
744 8a35f56c 2022-07-16 thomas if (nfile == NULL) {
745 8a35f56c 2022-07-16 thomas log_warn("calloc");
746 8a35f56c 2022-07-16 thomas return (NULL);
747 8a35f56c 2022-07-16 thomas }
748 8a35f56c 2022-07-16 thomas nfile->name = strdup(name);
749 8a35f56c 2022-07-16 thomas if (nfile->name == NULL) {
750 8a35f56c 2022-07-16 thomas log_warn("strdup");
751 8a35f56c 2022-07-16 thomas free(nfile);
752 8a35f56c 2022-07-16 thomas return (NULL);
753 8a35f56c 2022-07-16 thomas }
754 8a35f56c 2022-07-16 thomas nfile->stream = fopen(nfile->name, "r");
755 8a35f56c 2022-07-16 thomas if (nfile->stream == NULL) {
756 8a35f56c 2022-07-16 thomas /* no warning, we don't require a conf file */
757 8a35f56c 2022-07-16 thomas free(nfile->name);
758 8a35f56c 2022-07-16 thomas free(nfile);
759 8a35f56c 2022-07-16 thomas return (NULL);
760 8a35f56c 2022-07-16 thomas } else if (secret &&
761 8a35f56c 2022-07-16 thomas check_file_secrecy(fileno(nfile->stream), nfile->name)) {
762 8a35f56c 2022-07-16 thomas fclose(nfile->stream);
763 8a35f56c 2022-07-16 thomas free(nfile->name);
764 8a35f56c 2022-07-16 thomas free(nfile);
765 8a35f56c 2022-07-16 thomas return (NULL);
766 8a35f56c 2022-07-16 thomas }
767 8a35f56c 2022-07-16 thomas nfile->lineno = 1;
768 8a35f56c 2022-07-16 thomas return (nfile);
769 8a35f56c 2022-07-16 thomas }
770 8a35f56c 2022-07-16 thomas
771 8a35f56c 2022-07-16 thomas static void
772 8a35f56c 2022-07-16 thomas closefile(struct file *xfile)
773 8a35f56c 2022-07-16 thomas {
774 8a35f56c 2022-07-16 thomas fclose(xfile->stream);
775 8a35f56c 2022-07-16 thomas free(xfile->name);
776 8a35f56c 2022-07-16 thomas free(xfile);
777 8a35f56c 2022-07-16 thomas }
778 8a35f56c 2022-07-16 thomas
779 9f849004 2022-08-06 thomas static void
780 9f849004 2022-08-06 thomas add_default_server(void)
781 9f849004 2022-08-06 thomas {
782 9f849004 2022-08-06 thomas new_srv = conf_new_server(D_SITENAME);
783 9f849004 2022-08-06 thomas log_debug("%s: adding default server %s", __func__, D_SITENAME);
784 9f849004 2022-08-06 thomas }
785 9f849004 2022-08-06 thomas
786 8a35f56c 2022-07-16 thomas int
787 8a35f56c 2022-07-16 thomas parse_config(const char *filename, struct gotwebd *env)
788 8a35f56c 2022-07-16 thomas {
789 8a35f56c 2022-07-16 thomas struct sym *sym, *next;
790 8a35f56c 2022-07-16 thomas
791 8a35f56c 2022-07-16 thomas if (config_init(env) == -1)
792 8a35f56c 2022-07-16 thomas fatalx("failed to initialize configuration");
793 8a35f56c 2022-07-16 thomas
794 8a35f56c 2022-07-16 thomas gotwebd = env;
795 9f849004 2022-08-06 thomas
796 9f849004 2022-08-06 thomas file = newfile(filename, 0);
797 9f849004 2022-08-06 thomas if (file == NULL) {
798 9f849004 2022-08-06 thomas add_default_server();
799 9f849004 2022-08-06 thomas sockets_parse_sockets(env);
800 9f849004 2022-08-06 thomas /* just return, as we don't require a conf file */
801 9f849004 2022-08-06 thomas return (0);
802 9f849004 2022-08-06 thomas }
803 8a35f56c 2022-07-16 thomas
804 8a35f56c 2022-07-16 thomas yyparse();
805 8a35f56c 2022-07-16 thomas errors = file->errors;
806 8a35f56c 2022-07-16 thomas closefile(file);
807 8a35f56c 2022-07-16 thomas
808 8a35f56c 2022-07-16 thomas /* Free macros and check which have not been used. */
809 8a35f56c 2022-07-16 thomas TAILQ_FOREACH_SAFE(sym, &symhead, entry, next) {
810 8a35f56c 2022-07-16 thomas if ((gotwebd->gotwebd_verbose > 1) && !sym->used)
811 8a35f56c 2022-07-16 thomas fprintf(stderr, "warning: macro '%s' not used\n",
812 8a35f56c 2022-07-16 thomas sym->nam);
813 8a35f56c 2022-07-16 thomas if (!sym->persist) {
814 8a35f56c 2022-07-16 thomas free(sym->nam);
815 8a35f56c 2022-07-16 thomas free(sym->val);
816 8a35f56c 2022-07-16 thomas TAILQ_REMOVE(&symhead, sym, entry);
817 8a35f56c 2022-07-16 thomas free(sym);
818 8a35f56c 2022-07-16 thomas }
819 8a35f56c 2022-07-16 thomas }
820 8a35f56c 2022-07-16 thomas
821 8a35f56c 2022-07-16 thomas if (errors)
822 8a35f56c 2022-07-16 thomas return (-1);
823 8a35f56c 2022-07-16 thomas
824 8a35f56c 2022-07-16 thomas /* just add default server if no config specified */
825 9f849004 2022-08-06 thomas if (gotwebd->server_cnt == 0)
826 9f849004 2022-08-06 thomas add_default_server();
827 8a35f56c 2022-07-16 thomas
828 8a35f56c 2022-07-16 thomas /* setup our listening sockets */
829 8a35f56c 2022-07-16 thomas sockets_parse_sockets(env);
830 8a35f56c 2022-07-16 thomas
831 8a35f56c 2022-07-16 thomas return (0);
832 8a35f56c 2022-07-16 thomas }
833 8a35f56c 2022-07-16 thomas
834 8a35f56c 2022-07-16 thomas struct server *
835 8a35f56c 2022-07-16 thomas conf_new_server(const char *name)
836 8a35f56c 2022-07-16 thomas {
837 8a35f56c 2022-07-16 thomas struct server *srv = NULL;
838 8a35f56c 2022-07-16 thomas
839 8a35f56c 2022-07-16 thomas srv = calloc(1, sizeof(*srv));
840 8a35f56c 2022-07-16 thomas if (srv == NULL)
841 8a35f56c 2022-07-16 thomas fatalx("%s: calloc", __func__);
842 8a35f56c 2022-07-16 thomas
843 8a35f56c 2022-07-16 thomas n = strlcpy(srv->name, name, sizeof(srv->name));
844 8a35f56c 2022-07-16 thomas if (n >= sizeof(srv->name))
845 8a35f56c 2022-07-16 thomas fatalx("%s: strlcpy", __func__);
846 8a35f56c 2022-07-16 thomas n = snprintf(srv->unix_socket_name,
847 8a35f56c 2022-07-16 thomas sizeof(srv->unix_socket_name), "%s%s", D_HTTPD_CHROOT,
848 8a35f56c 2022-07-16 thomas D_UNIX_SOCKET);
849 717a78d4 2022-08-16 thomas if (n < 0 || (size_t)n >= sizeof(srv->unix_socket_name))
850 8a35f56c 2022-07-16 thomas fatalx("%s: snprintf", __func__);
851 8a35f56c 2022-07-16 thomas n = strlcpy(srv->repos_path, D_GOTPATH,
852 8a35f56c 2022-07-16 thomas sizeof(srv->repos_path));
853 8a35f56c 2022-07-16 thomas if (n >= sizeof(srv->repos_path))
854 8a35f56c 2022-07-16 thomas fatalx("%s: strlcpy", __func__);
855 8a35f56c 2022-07-16 thomas n = strlcpy(srv->site_name, D_SITENAME,
856 8a35f56c 2022-07-16 thomas sizeof(srv->site_name));
857 8a35f56c 2022-07-16 thomas if (n >= sizeof(srv->site_name))
858 8a35f56c 2022-07-16 thomas fatalx("%s: strlcpy", __func__);
859 8a35f56c 2022-07-16 thomas n = strlcpy(srv->site_owner, D_SITEOWNER,
860 8a35f56c 2022-07-16 thomas sizeof(srv->site_owner));
861 8a35f56c 2022-07-16 thomas if (n >= sizeof(srv->site_owner))
862 8a35f56c 2022-07-16 thomas fatalx("%s: strlcpy", __func__);
863 8a35f56c 2022-07-16 thomas n = strlcpy(srv->site_link, D_SITELINK,
864 8a35f56c 2022-07-16 thomas sizeof(srv->site_link));
865 8a35f56c 2022-07-16 thomas if (n >= sizeof(srv->site_link))
866 8a35f56c 2022-07-16 thomas fatalx("%s: strlcpy", __func__);
867 8a35f56c 2022-07-16 thomas n = strlcpy(srv->logo, D_GOTLOGO,
868 8a35f56c 2022-07-16 thomas sizeof(srv->logo));
869 8a35f56c 2022-07-16 thomas if (n >= sizeof(srv->logo))
870 8a35f56c 2022-07-16 thomas fatalx("%s: strlcpy", __func__);
871 8a35f56c 2022-07-16 thomas n = strlcpy(srv->logo_url, D_GOTURL, sizeof(srv->logo_url));
872 8a35f56c 2022-07-16 thomas if (n >= sizeof(srv->logo_url))
873 8a35f56c 2022-07-16 thomas fatalx("%s: strlcpy", __func__);
874 8a35f56c 2022-07-16 thomas n = strlcpy(srv->custom_css, D_GOTWEBCSS, sizeof(srv->custom_css));
875 8a35f56c 2022-07-16 thomas if (n >= sizeof(srv->custom_css))
876 8a35f56c 2022-07-16 thomas fatalx("%s: strlcpy", __func__);
877 8a35f56c 2022-07-16 thomas
878 8a35f56c 2022-07-16 thomas srv->show_site_owner = D_SHOWSOWNER;
879 8a35f56c 2022-07-16 thomas srv->show_repo_owner = D_SHOWROWNER;
880 8a35f56c 2022-07-16 thomas srv->show_repo_age = D_SHOWAGE;
881 8a35f56c 2022-07-16 thomas srv->show_repo_description = D_SHOWDESC;
882 8a35f56c 2022-07-16 thomas srv->show_repo_cloneurl = D_SHOWURL;
883 3991b2a5 2022-10-31 thomas srv->respect_exportok = D_RESPECTEXPORTOK;
884 8a35f56c 2022-07-16 thomas
885 8a35f56c 2022-07-16 thomas srv->max_repos_display = D_MAXREPODISP;
886 8a35f56c 2022-07-16 thomas srv->max_commits_display = D_MAXCOMMITDISP;
887 8a35f56c 2022-07-16 thomas srv->max_repos = D_MAXREPO;
888 8a35f56c 2022-07-16 thomas
889 8a35f56c 2022-07-16 thomas srv->unix_socket = 1;
890 e4317279 2022-08-30 thomas srv->fcgi_socket = 0;
891 8a35f56c 2022-07-16 thomas
892 62f85214 2022-08-16 thomas TAILQ_INIT(&srv->al);
893 90d63d47 2022-08-16 thomas TAILQ_INSERT_TAIL(&gotwebd->servers, srv, entry);
894 8a35f56c 2022-07-16 thomas gotwebd->server_cnt++;
895 8a35f56c 2022-07-16 thomas
896 8a35f56c 2022-07-16 thomas return srv;
897 8a35f56c 2022-07-16 thomas };
898 8a35f56c 2022-07-16 thomas
899 8a35f56c 2022-07-16 thomas int
900 8a35f56c 2022-07-16 thomas symset(const char *nam, const char *val, int persist)
901 8a35f56c 2022-07-16 thomas {
902 8a35f56c 2022-07-16 thomas struct sym *sym;
903 8a35f56c 2022-07-16 thomas
904 8a35f56c 2022-07-16 thomas TAILQ_FOREACH(sym, &symhead, entry) {
905 8a35f56c 2022-07-16 thomas if (strcmp(nam, sym->nam) == 0)
906 8a35f56c 2022-07-16 thomas break;
907 8a35f56c 2022-07-16 thomas }
908 8a35f56c 2022-07-16 thomas
909 8a35f56c 2022-07-16 thomas if (sym != NULL) {
910 8a35f56c 2022-07-16 thomas if (sym->persist == 1)
911 8a35f56c 2022-07-16 thomas return (0);
912 8a35f56c 2022-07-16 thomas else {
913 8a35f56c 2022-07-16 thomas free(sym->nam);
914 8a35f56c 2022-07-16 thomas free(sym->val);
915 8a35f56c 2022-07-16 thomas TAILQ_REMOVE(&symhead, sym, entry);
916 8a35f56c 2022-07-16 thomas free(sym);
917 8a35f56c 2022-07-16 thomas }
918 8a35f56c 2022-07-16 thomas }
919 8a35f56c 2022-07-16 thomas sym = calloc(1, sizeof(*sym));
920 8a35f56c 2022-07-16 thomas if (sym == NULL)
921 8a35f56c 2022-07-16 thomas return (-1);
922 8a35f56c 2022-07-16 thomas
923 8a35f56c 2022-07-16 thomas sym->nam = strdup(nam);
924 8a35f56c 2022-07-16 thomas if (sym->nam == NULL) {
925 8a35f56c 2022-07-16 thomas free(sym);
926 8a35f56c 2022-07-16 thomas return (-1);
927 8a35f56c 2022-07-16 thomas }
928 8a35f56c 2022-07-16 thomas sym->val = strdup(val);
929 8a35f56c 2022-07-16 thomas if (sym->val == NULL) {
930 8a35f56c 2022-07-16 thomas free(sym->nam);
931 8a35f56c 2022-07-16 thomas free(sym);
932 8a35f56c 2022-07-16 thomas return (-1);
933 8a35f56c 2022-07-16 thomas }
934 8a35f56c 2022-07-16 thomas sym->used = 0;
935 8a35f56c 2022-07-16 thomas sym->persist = persist;
936 8a35f56c 2022-07-16 thomas TAILQ_INSERT_TAIL(&symhead, sym, entry);
937 8a35f56c 2022-07-16 thomas return (0);
938 8a35f56c 2022-07-16 thomas }
939 8a35f56c 2022-07-16 thomas
940 8a35f56c 2022-07-16 thomas int
941 8a35f56c 2022-07-16 thomas cmdline_symset(char *s)
942 8a35f56c 2022-07-16 thomas {
943 8a35f56c 2022-07-16 thomas char *sym, *val;
944 8a35f56c 2022-07-16 thomas int ret;
945 8a35f56c 2022-07-16 thomas
946 8a35f56c 2022-07-16 thomas val = strrchr(s, '=');
947 8a35f56c 2022-07-16 thomas if (val == NULL)
948 8a35f56c 2022-07-16 thomas return (-1);
949 8a35f56c 2022-07-16 thomas
950 43be1edb 2022-09-05 thomas sym = strndup(s, val - s);
951 8a35f56c 2022-07-16 thomas if (sym == NULL)
952 43be1edb 2022-09-05 thomas fatal("%s: strndup", __func__);
953 8a35f56c 2022-07-16 thomas
954 8a35f56c 2022-07-16 thomas ret = symset(sym, val + 1, 1);
955 8a35f56c 2022-07-16 thomas free(sym);
956 8a35f56c 2022-07-16 thomas
957 8a35f56c 2022-07-16 thomas return (ret);
958 8a35f56c 2022-07-16 thomas }
959 8a35f56c 2022-07-16 thomas
960 8a35f56c 2022-07-16 thomas char *
961 8a35f56c 2022-07-16 thomas symget(const char *nam)
962 8a35f56c 2022-07-16 thomas {
963 8a35f56c 2022-07-16 thomas struct sym *sym;
964 8a35f56c 2022-07-16 thomas
965 8a35f56c 2022-07-16 thomas TAILQ_FOREACH(sym, &symhead, entry) {
966 8a35f56c 2022-07-16 thomas if (strcmp(nam, sym->nam) == 0) {
967 8a35f56c 2022-07-16 thomas sym->used = 1;
968 8a35f56c 2022-07-16 thomas return (sym->val);
969 8a35f56c 2022-07-16 thomas }
970 8a35f56c 2022-07-16 thomas }
971 8a35f56c 2022-07-16 thomas return (NULL);
972 8a35f56c 2022-07-16 thomas }
973 8a35f56c 2022-07-16 thomas
974 8a35f56c 2022-07-16 thomas int
975 8a35f56c 2022-07-16 thomas getservice(const char *n)
976 8a35f56c 2022-07-16 thomas {
977 8a35f56c 2022-07-16 thomas struct servent *s;
978 8a35f56c 2022-07-16 thomas const char *errstr;
979 8a35f56c 2022-07-16 thomas long long llval;
980 8a35f56c 2022-07-16 thomas
981 8a35f56c 2022-07-16 thomas llval = strtonum(n, 0, UINT16_MAX, &errstr);
982 8a35f56c 2022-07-16 thomas if (errstr) {
983 8a35f56c 2022-07-16 thomas s = getservbyname(n, "tcp");
984 8a35f56c 2022-07-16 thomas if (s == NULL)
985 8a35f56c 2022-07-16 thomas s = getservbyname(n, "udp");
986 8a35f56c 2022-07-16 thomas if (s == NULL)
987 8a35f56c 2022-07-16 thomas return (-1);
988 c19738c9 2022-08-27 thomas return ntohs(s->s_port);
989 8a35f56c 2022-07-16 thomas }
990 8a35f56c 2022-07-16 thomas
991 c19738c9 2022-08-27 thomas return (unsigned short)llval;
992 8a35f56c 2022-07-16 thomas }
993 8a35f56c 2022-07-16 thomas
994 8a35f56c 2022-07-16 thomas struct address *
995 8a35f56c 2022-07-16 thomas host_v4(const char *s)
996 8a35f56c 2022-07-16 thomas {
997 8a35f56c 2022-07-16 thomas struct in_addr ina;
998 8a35f56c 2022-07-16 thomas struct sockaddr_in *sain;
999 8a35f56c 2022-07-16 thomas struct address *h;
1000 8a35f56c 2022-07-16 thomas
1001 8a35f56c 2022-07-16 thomas memset(&ina, 0, sizeof(ina));
1002 8a35f56c 2022-07-16 thomas if (inet_pton(AF_INET, s, &ina) != 1)
1003 8a35f56c 2022-07-16 thomas return (NULL);
1004 8a35f56c 2022-07-16 thomas
1005 8a35f56c 2022-07-16 thomas if ((h = calloc(1, sizeof(*h))) == NULL)
1006 8a35f56c 2022-07-16 thomas fatal(__func__);
1007 8a35f56c 2022-07-16 thomas sain = (struct sockaddr_in *)&h->ss;
1008 cdbe1d7d 2022-08-06 thomas got_sockaddr_inet_init(sain, &ina);
1009 8a35f56c 2022-07-16 thomas if (sain->sin_addr.s_addr == INADDR_ANY)
1010 8a35f56c 2022-07-16 thomas h->prefixlen = 0; /* 0.0.0.0 address */
1011 8a35f56c 2022-07-16 thomas else
1012 8a35f56c 2022-07-16 thomas h->prefixlen = -1; /* host address */
1013 8a35f56c 2022-07-16 thomas return (h);
1014 8a35f56c 2022-07-16 thomas }
1015 8a35f56c 2022-07-16 thomas
1016 8a35f56c 2022-07-16 thomas struct address *
1017 8a35f56c 2022-07-16 thomas host_v6(const char *s)
1018 8a35f56c 2022-07-16 thomas {
1019 8a35f56c 2022-07-16 thomas struct addrinfo hints, *res;
1020 cdbe1d7d 2022-08-06 thomas struct sockaddr_in6 *sa_in6, *ra;
1021 8a35f56c 2022-07-16 thomas struct address *h = NULL;
1022 8a35f56c 2022-07-16 thomas
1023 8a35f56c 2022-07-16 thomas memset(&hints, 0, sizeof(hints));
1024 8a35f56c 2022-07-16 thomas hints.ai_family = AF_INET6;
1025 8a35f56c 2022-07-16 thomas hints.ai_socktype = SOCK_DGRAM; /* dummy */
1026 8a35f56c 2022-07-16 thomas hints.ai_flags = AI_NUMERICHOST;
1027 8a35f56c 2022-07-16 thomas if (getaddrinfo(s, "0", &hints, &res) == 0) {
1028 8a35f56c 2022-07-16 thomas if ((h = calloc(1, sizeof(*h))) == NULL)
1029 8a35f56c 2022-07-16 thomas fatal(__func__);
1030 8a35f56c 2022-07-16 thomas sa_in6 = (struct sockaddr_in6 *)&h->ss;
1031 cdbe1d7d 2022-08-06 thomas ra = (struct sockaddr_in6 *)res->ai_addr;
1032 cdbe1d7d 2022-08-06 thomas got_sockaddr_inet6_init(sa_in6, &ra->sin6_addr,
1033 cdbe1d7d 2022-08-06 thomas ra->sin6_scope_id);
1034 8a35f56c 2022-07-16 thomas if (memcmp(&sa_in6->sin6_addr, &in6addr_any,
1035 8a35f56c 2022-07-16 thomas sizeof(sa_in6->sin6_addr)) == 0)
1036 8a35f56c 2022-07-16 thomas h->prefixlen = 0; /* any address */
1037 8a35f56c 2022-07-16 thomas else
1038 8a35f56c 2022-07-16 thomas h->prefixlen = -1; /* host address */
1039 8a35f56c 2022-07-16 thomas freeaddrinfo(res);
1040 8a35f56c 2022-07-16 thomas }
1041 8a35f56c 2022-07-16 thomas
1042 8a35f56c 2022-07-16 thomas return (h);
1043 8a35f56c 2022-07-16 thomas }
1044 8a35f56c 2022-07-16 thomas
1045 8a35f56c 2022-07-16 thomas int
1046 e4c7e0b0 2022-08-30 thomas host_dns(const char *s, struct server *new_srv, int max,
1047 8a35f56c 2022-07-16 thomas in_port_t port, const char *ifname, int ipproto)
1048 8a35f56c 2022-07-16 thomas {
1049 8a35f56c 2022-07-16 thomas struct addrinfo hints, *res0, *res;
1050 8a35f56c 2022-07-16 thomas int error, cnt = 0;
1051 8a35f56c 2022-07-16 thomas struct sockaddr_in *sain;
1052 8a35f56c 2022-07-16 thomas struct sockaddr_in6 *sin6;
1053 8a35f56c 2022-07-16 thomas struct address *h;
1054 8a35f56c 2022-07-16 thomas
1055 e4c7e0b0 2022-08-30 thomas if ((cnt = host_if(s, new_srv, max, port, ifname, ipproto)) != 0)
1056 8a35f56c 2022-07-16 thomas return (cnt);
1057 8a35f56c 2022-07-16 thomas
1058 8a35f56c 2022-07-16 thomas memset(&hints, 0, sizeof(hints));
1059 8a35f56c 2022-07-16 thomas hints.ai_family = PF_UNSPEC;
1060 8a35f56c 2022-07-16 thomas hints.ai_socktype = SOCK_DGRAM; /* DUMMY */
1061 8a35f56c 2022-07-16 thomas hints.ai_flags = AI_ADDRCONFIG;
1062 8a35f56c 2022-07-16 thomas error = getaddrinfo(s, NULL, &hints, &res0);
1063 8a35f56c 2022-07-16 thomas if (error == EAI_AGAIN || error == EAI_NODATA || error == EAI_NONAME)
1064 8a35f56c 2022-07-16 thomas return (0);
1065 8a35f56c 2022-07-16 thomas if (error) {
1066 8a35f56c 2022-07-16 thomas log_warnx("%s: could not parse \"%s\": %s", __func__, s,
1067 8a35f56c 2022-07-16 thomas gai_strerror(error));
1068 8a35f56c 2022-07-16 thomas return (-1);
1069 8a35f56c 2022-07-16 thomas }
1070 8a35f56c 2022-07-16 thomas
1071 8a35f56c 2022-07-16 thomas for (res = res0; res && cnt < max; res = res->ai_next) {
1072 8a35f56c 2022-07-16 thomas if (res->ai_family != AF_INET &&
1073 8a35f56c 2022-07-16 thomas res->ai_family != AF_INET6)
1074 8a35f56c 2022-07-16 thomas continue;
1075 8a35f56c 2022-07-16 thomas if ((h = calloc(1, sizeof(*h))) == NULL)
1076 8a35f56c 2022-07-16 thomas fatal(__func__);
1077 8a35f56c 2022-07-16 thomas
1078 8a35f56c 2022-07-16 thomas if (port)
1079 8a35f56c 2022-07-16 thomas h->port = port;
1080 8a35f56c 2022-07-16 thomas if (ifname != NULL) {
1081 8a35f56c 2022-07-16 thomas if (strlcpy(h->ifname, ifname, sizeof(h->ifname)) >=
1082 8a35f56c 2022-07-16 thomas sizeof(h->ifname)) {
1083 8a35f56c 2022-07-16 thomas log_warnx("%s: interface name truncated",
1084 8a35f56c 2022-07-16 thomas __func__);
1085 8a35f56c 2022-07-16 thomas freeaddrinfo(res0);
1086 8a35f56c 2022-07-16 thomas free(h);
1087 8a35f56c 2022-07-16 thomas return (-1);
1088 8a35f56c 2022-07-16 thomas }
1089 8a35f56c 2022-07-16 thomas }
1090 8a35f56c 2022-07-16 thomas if (ipproto != -1)
1091 8a35f56c 2022-07-16 thomas h->ipproto = ipproto;
1092 8a35f56c 2022-07-16 thomas h->ss.ss_family = res->ai_family;
1093 8a35f56c 2022-07-16 thomas h->prefixlen = -1; /* host address */
1094 8a35f56c 2022-07-16 thomas
1095 8a35f56c 2022-07-16 thomas if (res->ai_family == AF_INET) {
1096 cdbe1d7d 2022-08-06 thomas struct sockaddr_in *ra;
1097 8a35f56c 2022-07-16 thomas sain = (struct sockaddr_in *)&h->ss;
1098 cdbe1d7d 2022-08-06 thomas ra = (struct sockaddr_in *)res->ai_addr;
1099 cdbe1d7d 2022-08-06 thomas got_sockaddr_inet_init(sain, &ra->sin_addr);
1100 8a35f56c 2022-07-16 thomas } else {
1101 cdbe1d7d 2022-08-06 thomas struct sockaddr_in6 *ra;
1102 8a35f56c 2022-07-16 thomas sin6 = (struct sockaddr_in6 *)&h->ss;
1103 cdbe1d7d 2022-08-06 thomas ra = (struct sockaddr_in6 *)res->ai_addr;
1104 cdbe1d7d 2022-08-06 thomas got_sockaddr_inet6_init(sin6, &ra->sin6_addr, 0);
1105 8a35f56c 2022-07-16 thomas }
1106 8a35f56c 2022-07-16 thomas
1107 e4c7e0b0 2022-08-30 thomas if (add_addr(new_srv, h))
1108 e4c7e0b0 2022-08-30 thomas return -1;
1109 8a35f56c 2022-07-16 thomas cnt++;
1110 8a35f56c 2022-07-16 thomas }
1111 8a35f56c 2022-07-16 thomas if (cnt == max && res) {
1112 8a35f56c 2022-07-16 thomas log_warnx("%s: %s resolves to more than %d hosts", __func__,
1113 8a35f56c 2022-07-16 thomas s, max);
1114 8a35f56c 2022-07-16 thomas }
1115 8a35f56c 2022-07-16 thomas freeaddrinfo(res0);
1116 8a35f56c 2022-07-16 thomas return (cnt);
1117 8a35f56c 2022-07-16 thomas }
1118 8a35f56c 2022-07-16 thomas
1119 8a35f56c 2022-07-16 thomas int
1120 e4c7e0b0 2022-08-30 thomas host_if(const char *s, struct server *new_srv, int max,
1121 8a35f56c 2022-07-16 thomas in_port_t port, const char *ifname, int ipproto)
1122 8a35f56c 2022-07-16 thomas {
1123 8a35f56c 2022-07-16 thomas struct ifaddrs *ifap, *p;
1124 8a35f56c 2022-07-16 thomas struct sockaddr_in *sain;
1125 8a35f56c 2022-07-16 thomas struct sockaddr_in6 *sin6;
1126 8a35f56c 2022-07-16 thomas struct address *h;
1127 8a35f56c 2022-07-16 thomas int cnt = 0, af;
1128 8a35f56c 2022-07-16 thomas
1129 8a35f56c 2022-07-16 thomas if (getifaddrs(&ifap) == -1)
1130 8a35f56c 2022-07-16 thomas fatal("getifaddrs");
1131 8a35f56c 2022-07-16 thomas
1132 8a35f56c 2022-07-16 thomas /* First search for IPv4 addresses */
1133 8a35f56c 2022-07-16 thomas af = AF_INET;
1134 8a35f56c 2022-07-16 thomas
1135 8a35f56c 2022-07-16 thomas nextaf:
1136 8a35f56c 2022-07-16 thomas for (p = ifap; p != NULL && cnt < max; p = p->ifa_next) {
1137 8a35f56c 2022-07-16 thomas if (p->ifa_addr == NULL ||
1138 8a35f56c 2022-07-16 thomas p->ifa_addr->sa_family != af ||
1139 8a35f56c 2022-07-16 thomas (strcmp(s, p->ifa_name) != 0 &&
1140 8a35f56c 2022-07-16 thomas !is_if_in_group(p->ifa_name, s)))
1141 8a35f56c 2022-07-16 thomas continue;
1142 8a35f56c 2022-07-16 thomas if ((h = calloc(1, sizeof(*h))) == NULL)
1143 8a35f56c 2022-07-16 thomas fatal("calloc");
1144 8a35f56c 2022-07-16 thomas
1145 8a35f56c 2022-07-16 thomas if (port)
1146 8a35f56c 2022-07-16 thomas h->port = port;
1147 8a35f56c 2022-07-16 thomas if (ifname != NULL) {
1148 8a35f56c 2022-07-16 thomas if (strlcpy(h->ifname, ifname, sizeof(h->ifname)) >=
1149 8a35f56c 2022-07-16 thomas sizeof(h->ifname)) {
1150 8a35f56c 2022-07-16 thomas log_warnx("%s: interface name truncated",
1151 8a35f56c 2022-07-16 thomas __func__);
1152 8a35f56c 2022-07-16 thomas free(h);
1153 8a35f56c 2022-07-16 thomas freeifaddrs(ifap);
1154 8a35f56c 2022-07-16 thomas return (-1);
1155 8a35f56c 2022-07-16 thomas }
1156 8a35f56c 2022-07-16 thomas }
1157 8a35f56c 2022-07-16 thomas if (ipproto != -1)
1158 8a35f56c 2022-07-16 thomas h->ipproto = ipproto;
1159 8a35f56c 2022-07-16 thomas h->ss.ss_family = af;
1160 8a35f56c 2022-07-16 thomas h->prefixlen = -1; /* host address */
1161 8a35f56c 2022-07-16 thomas
1162 8a35f56c 2022-07-16 thomas if (af == AF_INET) {
1163 cdbe1d7d 2022-08-06 thomas struct sockaddr_in *ra;
1164 8a35f56c 2022-07-16 thomas sain = (struct sockaddr_in *)&h->ss;
1165 cdbe1d7d 2022-08-06 thomas ra = (struct sockaddr_in *)p->ifa_addr;
1166 cdbe1d7d 2022-08-06 thomas got_sockaddr_inet_init(sain, &ra->sin_addr);
1167 8a35f56c 2022-07-16 thomas } else {
1168 cdbe1d7d 2022-08-06 thomas struct sockaddr_in6 *ra;
1169 8a35f56c 2022-07-16 thomas sin6 = (struct sockaddr_in6 *)&h->ss;
1170 cdbe1d7d 2022-08-06 thomas ra = (struct sockaddr_in6 *)p->ifa_addr;
1171 cdbe1d7d 2022-08-06 thomas got_sockaddr_inet6_init(sin6, &ra->sin6_addr,
1172 cdbe1d7d 2022-08-06 thomas ra->sin6_scope_id);
1173 8a35f56c 2022-07-16 thomas }
1174 8a35f56c 2022-07-16 thomas
1175 e4c7e0b0 2022-08-30 thomas if (add_addr(new_srv, h))
1176 e4c7e0b0 2022-08-30 thomas return -1;
1177 8a35f56c 2022-07-16 thomas cnt++;
1178 8a35f56c 2022-07-16 thomas }
1179 8a35f56c 2022-07-16 thomas if (af == AF_INET) {
1180 8a35f56c 2022-07-16 thomas /* Next search for IPv6 addresses */
1181 8a35f56c 2022-07-16 thomas af = AF_INET6;
1182 8a35f56c 2022-07-16 thomas goto nextaf;
1183 8a35f56c 2022-07-16 thomas }
1184 8a35f56c 2022-07-16 thomas
1185 8a35f56c 2022-07-16 thomas if (cnt > max) {
1186 8a35f56c 2022-07-16 thomas log_warnx("%s: %s resolves to more than %d hosts", __func__,
1187 8a35f56c 2022-07-16 thomas s, max);
1188 8a35f56c 2022-07-16 thomas }
1189 8a35f56c 2022-07-16 thomas freeifaddrs(ifap);
1190 8a35f56c 2022-07-16 thomas return (cnt);
1191 8a35f56c 2022-07-16 thomas }
1192 8a35f56c 2022-07-16 thomas
1193 8a35f56c 2022-07-16 thomas int
1194 e4c7e0b0 2022-08-30 thomas host(const char *s, struct server *new_srv, int max,
1195 8a35f56c 2022-07-16 thomas in_port_t port, const char *ifname, int ipproto)
1196 8a35f56c 2022-07-16 thomas {
1197 8a35f56c 2022-07-16 thomas struct address *h;
1198 8a35f56c 2022-07-16 thomas
1199 8a35f56c 2022-07-16 thomas h = host_v4(s);
1200 8a35f56c 2022-07-16 thomas
1201 8a35f56c 2022-07-16 thomas /* IPv6 address? */
1202 8a35f56c 2022-07-16 thomas if (h == NULL)
1203 8a35f56c 2022-07-16 thomas h = host_v6(s);
1204 8a35f56c 2022-07-16 thomas
1205 8a35f56c 2022-07-16 thomas if (h != NULL) {
1206 8a35f56c 2022-07-16 thomas if (port)
1207 8a35f56c 2022-07-16 thomas h->port = port;
1208 8a35f56c 2022-07-16 thomas if (ifname != NULL) {
1209 8a35f56c 2022-07-16 thomas if (strlcpy(h->ifname, ifname, sizeof(h->ifname)) >=
1210 8a35f56c 2022-07-16 thomas sizeof(h->ifname)) {
1211 8a35f56c 2022-07-16 thomas log_warnx("%s: interface name truncated",
1212 8a35f56c 2022-07-16 thomas __func__);
1213 8a35f56c 2022-07-16 thomas free(h);
1214 8a35f56c 2022-07-16 thomas return (-1);
1215 8a35f56c 2022-07-16 thomas }
1216 8a35f56c 2022-07-16 thomas }
1217 8a35f56c 2022-07-16 thomas if (ipproto != -1)
1218 8a35f56c 2022-07-16 thomas h->ipproto = ipproto;
1219 8a35f56c 2022-07-16 thomas
1220 e4c7e0b0 2022-08-30 thomas if (add_addr(new_srv, h))
1221 e4c7e0b0 2022-08-30 thomas return -1;
1222 8a35f56c 2022-07-16 thomas return (1);
1223 8a35f56c 2022-07-16 thomas }
1224 8a35f56c 2022-07-16 thomas
1225 e4c7e0b0 2022-08-30 thomas return (host_dns(s, new_srv, max, port, ifname, ipproto));
1226 8a35f56c 2022-07-16 thomas }
1227 8a35f56c 2022-07-16 thomas
1228 8a35f56c 2022-07-16 thomas int
1229 8a35f56c 2022-07-16 thomas is_if_in_group(const char *ifname, const char *groupname)
1230 8a35f56c 2022-07-16 thomas {
1231 ff36aeea 2022-07-16 thomas /* TA: Check this... */
1232 ff36aeea 2022-07-16 thomas #ifdef HAVE_STRUCT_IFGROUPREQ
1233 8a35f56c 2022-07-16 thomas unsigned int len;
1234 8a35f56c 2022-07-16 thomas struct ifgroupreq ifgr;
1235 8a35f56c 2022-07-16 thomas struct ifg_req *ifg;
1236 8a35f56c 2022-07-16 thomas int s;
1237 8a35f56c 2022-07-16 thomas int ret = 0;
1238 8a35f56c 2022-07-16 thomas
1239 8a35f56c 2022-07-16 thomas if ((s = socket(AF_INET, SOCK_DGRAM, 0)) == -1)
1240 8a35f56c 2022-07-16 thomas err(1, "socket");
1241 8a35f56c 2022-07-16 thomas
1242 8a35f56c 2022-07-16 thomas memset(&ifgr, 0, sizeof(ifgr));
1243 8a35f56c 2022-07-16 thomas if (strlcpy(ifgr.ifgr_name, ifname, IFNAMSIZ) >= IFNAMSIZ)
1244 8a35f56c 2022-07-16 thomas err(1, "IFNAMSIZ");
1245 8a35f56c 2022-07-16 thomas if (ioctl(s, SIOCGIFGROUP, (caddr_t)&ifgr) == -1) {
1246 8a35f56c 2022-07-16 thomas if (errno == EINVAL || errno == ENOTTY)
1247 8a35f56c 2022-07-16 thomas goto end;
1248 8a35f56c 2022-07-16 thomas err(1, "SIOCGIFGROUP");
1249 8a35f56c 2022-07-16 thomas }
1250 8a35f56c 2022-07-16 thomas
1251 8a35f56c 2022-07-16 thomas len = ifgr.ifgr_len;
1252 8a35f56c 2022-07-16 thomas ifgr.ifgr_groups = calloc(len / sizeof(struct ifg_req),
1253 8a35f56c 2022-07-16 thomas sizeof(struct ifg_req));
1254 8a35f56c 2022-07-16 thomas if (ifgr.ifgr_groups == NULL)
1255 8a35f56c 2022-07-16 thomas err(1, "getifgroups");
1256 8a35f56c 2022-07-16 thomas if (ioctl(s, SIOCGIFGROUP, (caddr_t)&ifgr) == -1)
1257 8a35f56c 2022-07-16 thomas err(1, "SIOCGIFGROUP");
1258 8a35f56c 2022-07-16 thomas
1259 8a35f56c 2022-07-16 thomas ifg = ifgr.ifgr_groups;
1260 8a35f56c 2022-07-16 thomas for (; ifg && len >= sizeof(struct ifg_req); ifg++) {
1261 8a35f56c 2022-07-16 thomas len -= sizeof(struct ifg_req);
1262 8a35f56c 2022-07-16 thomas if (strcmp(ifg->ifgrq_group, groupname) == 0) {
1263 8a35f56c 2022-07-16 thomas ret = 1;
1264 8a35f56c 2022-07-16 thomas break;
1265 8a35f56c 2022-07-16 thomas }
1266 8a35f56c 2022-07-16 thomas }
1267 8a35f56c 2022-07-16 thomas free(ifgr.ifgr_groups);
1268 8a35f56c 2022-07-16 thomas
1269 8a35f56c 2022-07-16 thomas end:
1270 8a35f56c 2022-07-16 thomas close(s);
1271 8a35f56c 2022-07-16 thomas return (ret);
1272 ff36aeea 2022-07-16 thomas #else
1273 ff36aeea 2022-07-16 thomas return (0);
1274 ff36aeea 2022-07-16 thomas #endif
1275 8a35f56c 2022-07-16 thomas }
1276 8a35f56c 2022-07-16 thomas
1277 8a35f56c 2022-07-16 thomas int
1278 e4c7e0b0 2022-08-30 thomas get_addrs(const char *addr, struct server *new_srv, in_port_t port)
1279 8a35f56c 2022-07-16 thomas {
1280 8a35f56c 2022-07-16 thomas if (strcmp("", addr) == 0) {
1281 e4c7e0b0 2022-08-30 thomas if (host("127.0.0.1", new_srv, 1, port, "127.0.0.1",
1282 e4c7e0b0 2022-08-30 thomas -1) <= 0) {
1283 8a35f56c 2022-07-16 thomas yyerror("invalid listen ip: %s",
1284 a90e3117 2022-08-27 thomas "127.0.0.1");
1285 8a35f56c 2022-07-16 thomas return (-1);
1286 8a35f56c 2022-07-16 thomas }
1287 e4c7e0b0 2022-08-30 thomas if (host("::1", new_srv, 1, port, "::1", -1) <= 0) {
1288 a90e3117 2022-08-27 thomas yyerror("invalid listen ip: %s", "::1");
1289 8a35f56c 2022-07-16 thomas return (-1);
1290 8a35f56c 2022-07-16 thomas }
1291 8a35f56c 2022-07-16 thomas } else {
1292 e4c7e0b0 2022-08-30 thomas if (host(addr, new_srv, GOTWEBD_MAXIFACE, port, addr,
1293 8a35f56c 2022-07-16 thomas -1) <= 0) {
1294 8a35f56c 2022-07-16 thomas yyerror("invalid listen ip: %s", addr);
1295 8a35f56c 2022-07-16 thomas return (-1);
1296 8a35f56c 2022-07-16 thomas }
1297 8a35f56c 2022-07-16 thomas }
1298 8a35f56c 2022-07-16 thomas return (0);
1299 e4c7e0b0 2022-08-30 thomas }
1300 e4c7e0b0 2022-08-30 thomas
1301 e4c7e0b0 2022-08-30 thomas int
1302 e4c7e0b0 2022-08-30 thomas addr_dup_check(struct addresslist *al, struct address *h, const char *new_srv,
1303 e4c7e0b0 2022-08-30 thomas const char *other_srv)
1304 e4c7e0b0 2022-08-30 thomas {
1305 e4c7e0b0 2022-08-30 thomas struct address *a;
1306 e4c7e0b0 2022-08-30 thomas void *ia;
1307 e4c7e0b0 2022-08-30 thomas char buf[INET6_ADDRSTRLEN];
1308 e4c7e0b0 2022-08-30 thomas const char *addrstr;
1309 e4c7e0b0 2022-08-30 thomas
1310 e4c7e0b0 2022-08-30 thomas TAILQ_FOREACH(a, al, entry) {
1311 e4c7e0b0 2022-08-30 thomas if (memcmp(&a->ss, &h->ss, sizeof(h->ss)) != 0 ||
1312 e4c7e0b0 2022-08-30 thomas a->port != h->port)
1313 e4c7e0b0 2022-08-30 thomas continue;
1314 e4c7e0b0 2022-08-30 thomas
1315 e4c7e0b0 2022-08-30 thomas switch (h->ss.ss_family) {
1316 e4c7e0b0 2022-08-30 thomas case AF_INET:
1317 e4c7e0b0 2022-08-30 thomas ia = &((struct sockaddr_in *)(&h->ss))->sin_addr;
1318 e4c7e0b0 2022-08-30 thomas break;
1319 e4c7e0b0 2022-08-30 thomas case AF_INET6:
1320 e4c7e0b0 2022-08-30 thomas ia = &((struct sockaddr_in6 *)(&h->ss))->sin6_addr;
1321 e4c7e0b0 2022-08-30 thomas break;
1322 e4c7e0b0 2022-08-30 thomas default:
1323 e4c7e0b0 2022-08-30 thomas yyerror("unknown address family: %d", h->ss.ss_family);
1324 e4c7e0b0 2022-08-30 thomas return -1;
1325 e4c7e0b0 2022-08-30 thomas }
1326 e4c7e0b0 2022-08-30 thomas addrstr = inet_ntop(h->ss.ss_family, ia, buf, sizeof(buf));
1327 e4c7e0b0 2022-08-30 thomas if (addrstr) {
1328 e4c7e0b0 2022-08-30 thomas if (other_srv) {
1329 e4c7e0b0 2022-08-30 thomas yyerror("server %s: duplicate fcgi listen "
1330 e4c7e0b0 2022-08-30 thomas "address %s:%d, already used by server %s",
1331 e4c7e0b0 2022-08-30 thomas new_srv, addrstr, h->port, other_srv);
1332 e4c7e0b0 2022-08-30 thomas } else {
1333 e4c7e0b0 2022-08-30 thomas log_warnx("server: %s: duplicate fcgi listen "
1334 e4c7e0b0 2022-08-30 thomas "address %s:%d", new_srv, addrstr, h->port);
1335 e4c7e0b0 2022-08-30 thomas }
1336 e4c7e0b0 2022-08-30 thomas } else {
1337 e4c7e0b0 2022-08-30 thomas if (other_srv) {
1338 e4c7e0b0 2022-08-30 thomas yyerror("server: %s: duplicate fcgi listen "
1339 e4c7e0b0 2022-08-30 thomas "address, already used by server %s",
1340 e4c7e0b0 2022-08-30 thomas new_srv, other_srv);
1341 e4c7e0b0 2022-08-30 thomas } else {
1342 e4c7e0b0 2022-08-30 thomas log_warnx("server %s: duplicate fcgi listen "
1343 e4c7e0b0 2022-08-30 thomas "address", new_srv);
1344 e4c7e0b0 2022-08-30 thomas }
1345 e4c7e0b0 2022-08-30 thomas }
1346 e4c7e0b0 2022-08-30 thomas
1347 e4c7e0b0 2022-08-30 thomas return -1;
1348 e4c7e0b0 2022-08-30 thomas }
1349 e4c7e0b0 2022-08-30 thomas
1350 e4c7e0b0 2022-08-30 thomas return 0;
1351 8a35f56c 2022-07-16 thomas }
1352 e4c7e0b0 2022-08-30 thomas
1353 e4c7e0b0 2022-08-30 thomas int
1354 e4c7e0b0 2022-08-30 thomas add_addr(struct server *new_srv, struct address *h)
1355 e4c7e0b0 2022-08-30 thomas {
1356 e4c7e0b0 2022-08-30 thomas struct server *srv;
1357 e4c7e0b0 2022-08-30 thomas
1358 e4c7e0b0 2022-08-30 thomas /* Address cannot be shared between different servers. */
1359 e4c7e0b0 2022-08-30 thomas TAILQ_FOREACH(srv, &gotwebd->servers, entry) {
1360 e4c7e0b0 2022-08-30 thomas if (srv == new_srv)
1361 e4c7e0b0 2022-08-30 thomas continue;
1362 e4c7e0b0 2022-08-30 thomas if (addr_dup_check(&srv->al, h, new_srv->name, srv->name))
1363 e4c7e0b0 2022-08-30 thomas return -1;
1364 e4c7e0b0 2022-08-30 thomas }
1365 e4c7e0b0 2022-08-30 thomas
1366 e4c7e0b0 2022-08-30 thomas /* Tolerate duplicate address lines within the scope of a server. */
1367 e4c7e0b0 2022-08-30 thomas if (addr_dup_check(&new_srv->al, h, NULL, NULL) == 0)
1368 e4c7e0b0 2022-08-30 thomas TAILQ_INSERT_TAIL(&new_srv->al, h, entry);
1369 e4c7e0b0 2022-08-30 thomas else
1370 e4c7e0b0 2022-08-30 thomas free(h);
1371 e4c7e0b0 2022-08-30 thomas
1372 e4c7e0b0 2022-08-30 thomas return 0;
1373 e4c7e0b0 2022-08-30 thomas }