Blame


1 3efd8e31 2022-10-23 thomas /*
2 3efd8e31 2022-10-23 thomas * Copyright (c) 2022 Stefan Sperling <stsp@openbsd.org>
3 3efd8e31 2022-10-23 thomas * Copyright (c) 2016-2019, 2020-2021 Tracey Emery <tracey@traceyemery.net>
4 3efd8e31 2022-10-23 thomas * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
5 3efd8e31 2022-10-23 thomas * Copyright (c) 2004 Ryan McBride <mcbride@openbsd.org>
6 3efd8e31 2022-10-23 thomas * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
7 3efd8e31 2022-10-23 thomas * Copyright (c) 2001 Markus Friedl. All rights reserved.
8 3efd8e31 2022-10-23 thomas * Copyright (c) 2001 Daniel Hartmeier. All rights reserved.
9 3efd8e31 2022-10-23 thomas * Copyright (c) 2001 Theo de Raadt. All rights reserved.
10 3efd8e31 2022-10-23 thomas *
11 3efd8e31 2022-10-23 thomas * Permission to use, copy, modify, and distribute this software for any
12 3efd8e31 2022-10-23 thomas * purpose with or without fee is hereby granted, provided that the above
13 3efd8e31 2022-10-23 thomas * copyright notice and this permission notice appear in all copies.
14 3efd8e31 2022-10-23 thomas *
15 3efd8e31 2022-10-23 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
16 3efd8e31 2022-10-23 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
17 3efd8e31 2022-10-23 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
18 3efd8e31 2022-10-23 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 3efd8e31 2022-10-23 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20 3efd8e31 2022-10-23 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
21 3efd8e31 2022-10-23 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 3efd8e31 2022-10-23 thomas */
23 3efd8e31 2022-10-23 thomas
24 3efd8e31 2022-10-23 thomas %{
25 3efd8e31 2022-10-23 thomas #include <sys/time.h>
26 3efd8e31 2022-10-23 thomas #include <sys/types.h>
27 3efd8e31 2022-10-23 thomas #include <sys/queue.h>
28 3efd8e31 2022-10-23 thomas #include <sys/stat.h>
29 3efd8e31 2022-10-23 thomas
30 3efd8e31 2022-10-23 thomas #include <ctype.h>
31 3efd8e31 2022-10-23 thomas #include <err.h>
32 3efd8e31 2022-10-23 thomas #include <errno.h>
33 3efd8e31 2022-10-23 thomas #include <event.h>
34 3efd8e31 2022-10-23 thomas #include <imsg.h>
35 3efd8e31 2022-10-23 thomas #include <limits.h>
36 3efd8e31 2022-10-23 thomas #include <stdarg.h>
37 3efd8e31 2022-10-23 thomas #include <stdlib.h>
38 3efd8e31 2022-10-23 thomas #include <stdio.h>
39 3efd8e31 2022-10-23 thomas #include <string.h>
40 3efd8e31 2022-10-23 thomas #include <syslog.h>
41 3efd8e31 2022-10-23 thomas #include <unistd.h>
42 3efd8e31 2022-10-23 thomas
43 3efd8e31 2022-10-23 thomas #include "got_error.h"
44 3efd8e31 2022-10-23 thomas #include "got_path.h"
45 6d7eb4f7 2023-04-04 thomas #include "got_reference.h"
46 3efd8e31 2022-10-23 thomas
47 3efd8e31 2022-10-23 thomas #include "log.h"
48 3efd8e31 2022-10-23 thomas #include "gotd.h"
49 0781db0e 2023-01-06 thomas #include "auth.h"
50 0781db0e 2023-01-06 thomas #include "listen.h"
51 3efd8e31 2022-10-23 thomas
52 3efd8e31 2022-10-23 thomas TAILQ_HEAD(files, file) files = TAILQ_HEAD_INITIALIZER(files);
53 3efd8e31 2022-10-23 thomas static struct file {
54 3efd8e31 2022-10-23 thomas TAILQ_ENTRY(file) entry;
55 3efd8e31 2022-10-23 thomas FILE *stream;
56 3efd8e31 2022-10-23 thomas char *name;
57 3efd8e31 2022-10-23 thomas int lineno;
58 3efd8e31 2022-10-23 thomas int errors;
59 3efd8e31 2022-10-23 thomas } *file;
60 7554713a 2023-04-01 thomas struct file *newfile(const char *, int, int);
61 3efd8e31 2022-10-23 thomas static void closefile(struct file *);
62 3efd8e31 2022-10-23 thomas int check_file_secrecy(int, const char *);
63 3efd8e31 2022-10-23 thomas int yyparse(void);
64 3efd8e31 2022-10-23 thomas int yylex(void);
65 3efd8e31 2022-10-23 thomas int yyerror(const char *, ...)
66 3efd8e31 2022-10-23 thomas __attribute__((__format__ (printf, 1, 2)))
67 3efd8e31 2022-10-23 thomas __attribute__((__nonnull__ (1)));
68 3efd8e31 2022-10-23 thomas int kw_cmp(const void *, const void *);
69 3efd8e31 2022-10-23 thomas int lookup(char *);
70 3efd8e31 2022-10-23 thomas int lgetc(int);
71 3efd8e31 2022-10-23 thomas int lungetc(int);
72 3efd8e31 2022-10-23 thomas int findeol(void);
73 3efd8e31 2022-10-23 thomas
74 3efd8e31 2022-10-23 thomas TAILQ_HEAD(symhead, sym) symhead = TAILQ_HEAD_INITIALIZER(symhead);
75 3efd8e31 2022-10-23 thomas struct sym {
76 3efd8e31 2022-10-23 thomas TAILQ_ENTRY(sym) entry;
77 3efd8e31 2022-10-23 thomas int used;
78 3efd8e31 2022-10-23 thomas int persist;
79 3efd8e31 2022-10-23 thomas char *nam;
80 3efd8e31 2022-10-23 thomas char *val;
81 3efd8e31 2022-10-23 thomas };
82 3efd8e31 2022-10-23 thomas
83 3efd8e31 2022-10-23 thomas int symset(const char *, const char *, int);
84 3efd8e31 2022-10-23 thomas char *symget(const char *);
85 3efd8e31 2022-10-23 thomas
86 3efd8e31 2022-10-23 thomas static int errors;
87 3efd8e31 2022-10-23 thomas
88 3efd8e31 2022-10-23 thomas static struct gotd *gotd;
89 3efd8e31 2022-10-23 thomas static struct gotd_repo *new_repo;
90 67f822ee 2023-01-06 thomas static int conf_limit_user_connections(const char *, int);
91 3efd8e31 2022-10-23 thomas static struct gotd_repo *conf_new_repo(const char *);
92 c3841c67 2022-11-18 thomas static void conf_new_access_rule(struct gotd_repo *,
93 c3841c67 2022-11-18 thomas enum gotd_access, int, char *);
94 57b6056a 2023-04-05 thomas static int conf_protect_ref_namespace(char **,
95 6d7eb4f7 2023-04-04 thomas struct got_pathlist_head *, char *);
96 6d7eb4f7 2023-04-04 thomas static int conf_protect_tag_namespace(struct gotd_repo *,
97 6d7eb4f7 2023-04-04 thomas char *);
98 6d7eb4f7 2023-04-04 thomas static int conf_protect_branch_namespace(
99 6d7eb4f7 2023-04-04 thomas struct gotd_repo *, char *);
100 6d7eb4f7 2023-04-04 thomas static int conf_protect_branch(struct gotd_repo *,
101 6d7eb4f7 2023-04-04 thomas char *);
102 3efd8e31 2022-10-23 thomas static enum gotd_procid gotd_proc_id;
103 3efd8e31 2022-10-23 thomas
104 3efd8e31 2022-10-23 thomas typedef struct {
105 3efd8e31 2022-10-23 thomas union {
106 3efd8e31 2022-10-23 thomas long long number;
107 3efd8e31 2022-10-23 thomas char *string;
108 0781db0e 2023-01-06 thomas struct timeval tv;
109 3efd8e31 2022-10-23 thomas } v;
110 3efd8e31 2022-10-23 thomas int lineno;
111 3efd8e31 2022-10-23 thomas } YYSTYPE;
112 3efd8e31 2022-10-23 thomas
113 3efd8e31 2022-10-23 thomas %}
114 3efd8e31 2022-10-23 thomas
115 f9a4feb6 2023-01-06 thomas %token PATH ERROR LISTEN ON USER REPOSITORY PERMIT DENY
116 0781db0e 2023-01-06 thomas %token RO RW CONNECTION LIMIT REQUEST TIMEOUT
117 6d7eb4f7 2023-04-04 thomas %token PROTECT NAMESPACE BRANCH TAG
118 3efd8e31 2022-10-23 thomas
119 3efd8e31 2022-10-23 thomas %token <v.string> STRING
120 3efd8e31 2022-10-23 thomas %token <v.number> NUMBER
121 0781db0e 2023-01-06 thomas %type <v.tv> timeout
122 3efd8e31 2022-10-23 thomas
123 3efd8e31 2022-10-23 thomas %%
124 3efd8e31 2022-10-23 thomas
125 3efd8e31 2022-10-23 thomas grammar :
126 3efd8e31 2022-10-23 thomas | grammar '\n'
127 3efd8e31 2022-10-23 thomas | grammar main '\n'
128 3efd8e31 2022-10-23 thomas | grammar repository '\n'
129 3efd8e31 2022-10-23 thomas ;
130 3efd8e31 2022-10-23 thomas
131 0781db0e 2023-01-06 thomas timeout : NUMBER {
132 0781db0e 2023-01-06 thomas if ($1 < 0) {
133 0781db0e 2023-01-06 thomas yyerror("invalid timeout: %lld", $1);
134 0781db0e 2023-01-06 thomas YYERROR;
135 0781db0e 2023-01-06 thomas }
136 0781db0e 2023-01-06 thomas $$.tv_sec = $1;
137 0781db0e 2023-01-06 thomas $$.tv_usec = 0;
138 0781db0e 2023-01-06 thomas }
139 77d755e8 2023-01-06 thomas | STRING {
140 77d755e8 2023-01-06 thomas const char *errstr;
141 77d755e8 2023-01-06 thomas const char *type = "seconds";
142 77d755e8 2023-01-06 thomas size_t len;
143 77d755e8 2023-01-06 thomas int mul = 1;
144 77d755e8 2023-01-06 thomas
145 77d755e8 2023-01-06 thomas if (*$1 == '\0') {
146 77d755e8 2023-01-06 thomas yyerror("invalid number of seconds: %s", $1);
147 77d755e8 2023-01-06 thomas free($1);
148 77d755e8 2023-01-06 thomas YYERROR;
149 77d755e8 2023-01-06 thomas }
150 77d755e8 2023-01-06 thomas
151 77d755e8 2023-01-06 thomas len = strlen($1);
152 77d755e8 2023-01-06 thomas switch ($1[len - 1]) {
153 77d755e8 2023-01-06 thomas case 'S':
154 77d755e8 2023-01-06 thomas case 's':
155 77d755e8 2023-01-06 thomas $1[len - 1] = '\0';
156 77d755e8 2023-01-06 thomas break;
157 77d755e8 2023-01-06 thomas case 'M':
158 77d755e8 2023-01-06 thomas case 'm':
159 77d755e8 2023-01-06 thomas type = "minutes";
160 77d755e8 2023-01-06 thomas mul = 60;
161 77d755e8 2023-01-06 thomas $1[len - 1] = '\0';
162 77d755e8 2023-01-06 thomas break;
163 77d755e8 2023-01-06 thomas case 'H':
164 77d755e8 2023-01-06 thomas case 'h':
165 77d755e8 2023-01-06 thomas type = "hours";
166 77d755e8 2023-01-06 thomas mul = 60 * 60;
167 77d755e8 2023-01-06 thomas $1[len - 1] = '\0';
168 77d755e8 2023-01-06 thomas break;
169 77d755e8 2023-01-06 thomas }
170 77d755e8 2023-01-06 thomas
171 77d755e8 2023-01-06 thomas $$.tv_usec = 0;
172 85bccbf7 2023-01-06 thomas $$.tv_sec = strtonum($1, 0, INT_MAX / mul, &errstr);
173 77d755e8 2023-01-06 thomas if (errstr) {
174 77d755e8 2023-01-06 thomas yyerror("number of %s is %s: %s", type,
175 77d755e8 2023-01-06 thomas errstr, $1);
176 77d755e8 2023-01-06 thomas free($1);
177 77d755e8 2023-01-06 thomas YYERROR;
178 77d755e8 2023-01-06 thomas }
179 77d755e8 2023-01-06 thomas
180 77d755e8 2023-01-06 thomas $$.tv_sec *= mul;
181 77d755e8 2023-01-06 thomas free($1);
182 77d755e8 2023-01-06 thomas }
183 0781db0e 2023-01-06 thomas ;
184 0781db0e 2023-01-06 thomas
185 f9a4feb6 2023-01-06 thomas main : LISTEN ON STRING {
186 7348ded8 2023-01-19 thomas if (!got_path_is_absolute($3))
187 7348ded8 2023-01-19 thomas yyerror("bad unix socket path \"%s\": "
188 7348ded8 2023-01-19 thomas "must be an absolute path", $3);
189 7348ded8 2023-01-19 thomas
190 2b3d32a1 2022-12-30 thomas if (gotd_proc_id == PROC_LISTEN) {
191 f9a4feb6 2023-01-06 thomas if (strlcpy(gotd->unix_socket_path, $3,
192 3efd8e31 2022-10-23 thomas sizeof(gotd->unix_socket_path)) >=
193 3efd8e31 2022-10-23 thomas sizeof(gotd->unix_socket_path)) {
194 3efd8e31 2022-10-23 thomas yyerror("%s: unix socket path too long",
195 3efd8e31 2022-10-23 thomas __func__);
196 f9a4feb6 2023-01-06 thomas free($3);
197 3efd8e31 2022-10-23 thomas YYERROR;
198 3efd8e31 2022-10-23 thomas }
199 3efd8e31 2022-10-23 thomas }
200 f9a4feb6 2023-01-06 thomas free($3);
201 3efd8e31 2022-10-23 thomas }
202 3efd8e31 2022-10-23 thomas | USER STRING {
203 3efd8e31 2022-10-23 thomas if (strlcpy(gotd->user_name, $2,
204 3efd8e31 2022-10-23 thomas sizeof(gotd->user_name)) >=
205 3efd8e31 2022-10-23 thomas sizeof(gotd->user_name)) {
206 3efd8e31 2022-10-23 thomas yyerror("%s: user name too long", __func__);
207 3efd8e31 2022-10-23 thomas free($2);
208 3efd8e31 2022-10-23 thomas YYERROR;
209 3efd8e31 2022-10-23 thomas }
210 3efd8e31 2022-10-23 thomas free($2);
211 3efd8e31 2022-10-23 thomas }
212 0781db0e 2023-01-06 thomas | connection
213 3efd8e31 2022-10-23 thomas ;
214 3efd8e31 2022-10-23 thomas
215 0781db0e 2023-01-06 thomas connection : CONNECTION '{' optnl conflags_l '}'
216 0781db0e 2023-01-06 thomas | CONNECTION conflags
217 0781db0e 2023-01-06 thomas
218 0781db0e 2023-01-06 thomas conflags_l : conflags optnl conflags_l
219 0781db0e 2023-01-06 thomas | conflags optnl
220 0781db0e 2023-01-06 thomas ;
221 0781db0e 2023-01-06 thomas
222 0781db0e 2023-01-06 thomas conflags : REQUEST TIMEOUT timeout {
223 912db690 2023-01-06 thomas if ($3.tv_sec <= 0) {
224 912db690 2023-01-06 thomas yyerror("invalid timeout: %lld", $3.tv_sec);
225 912db690 2023-01-06 thomas YYERROR;
226 912db690 2023-01-06 thomas }
227 0781db0e 2023-01-06 thomas memcpy(&gotd->request_timeout, &$3,
228 0781db0e 2023-01-06 thomas sizeof(gotd->request_timeout));
229 0781db0e 2023-01-06 thomas }
230 0781db0e 2023-01-06 thomas | LIMIT USER STRING NUMBER {
231 0781db0e 2023-01-06 thomas if (gotd_proc_id == PROC_LISTEN &&
232 0781db0e 2023-01-06 thomas conf_limit_user_connections($3, $4) == -1) {
233 0781db0e 2023-01-06 thomas free($3);
234 0781db0e 2023-01-06 thomas YYERROR;
235 0781db0e 2023-01-06 thomas }
236 0781db0e 2023-01-06 thomas free($3);
237 0781db0e 2023-01-06 thomas }
238 0781db0e 2023-01-06 thomas ;
239 0781db0e 2023-01-06 thomas
240 6d7eb4f7 2023-04-04 thomas protect : PROTECT '{' optnl protectflags_l '}'
241 6d7eb4f7 2023-04-04 thomas | PROTECT protectflags
242 6d7eb4f7 2023-04-04 thomas
243 6d7eb4f7 2023-04-04 thomas protectflags_l : protectflags optnl protectflags_l
244 6d7eb4f7 2023-04-04 thomas | protectflags optnl
245 6d7eb4f7 2023-04-04 thomas ;
246 6d7eb4f7 2023-04-04 thomas
247 6d7eb4f7 2023-04-04 thomas protectflags : TAG NAMESPACE STRING {
248 6d7eb4f7 2023-04-04 thomas if (gotd_proc_id == PROC_GOTD ||
249 6d7eb4f7 2023-04-04 thomas gotd_proc_id == PROC_REPO_WRITE) {
250 6d7eb4f7 2023-04-04 thomas if (conf_protect_tag_namespace(new_repo, $3)) {
251 6d7eb4f7 2023-04-04 thomas free($3);
252 6d7eb4f7 2023-04-04 thomas YYERROR;
253 6d7eb4f7 2023-04-04 thomas }
254 6d7eb4f7 2023-04-04 thomas }
255 ffc797f3 2023-04-05 thomas free($3);
256 6d7eb4f7 2023-04-04 thomas }
257 6d7eb4f7 2023-04-04 thomas | BRANCH NAMESPACE STRING {
258 6d7eb4f7 2023-04-04 thomas if (gotd_proc_id == PROC_GOTD ||
259 6d7eb4f7 2023-04-04 thomas gotd_proc_id == PROC_REPO_WRITE) {
260 6d7eb4f7 2023-04-04 thomas if (conf_protect_branch_namespace(new_repo,
261 6d7eb4f7 2023-04-04 thomas $3)) {
262 6d7eb4f7 2023-04-04 thomas free($3);
263 6d7eb4f7 2023-04-04 thomas YYERROR;
264 6d7eb4f7 2023-04-04 thomas }
265 6d7eb4f7 2023-04-04 thomas }
266 ffc797f3 2023-04-05 thomas free($3);
267 6d7eb4f7 2023-04-04 thomas }
268 6d7eb4f7 2023-04-04 thomas | BRANCH STRING {
269 6d7eb4f7 2023-04-04 thomas if (gotd_proc_id == PROC_GOTD ||
270 6d7eb4f7 2023-04-04 thomas gotd_proc_id == PROC_REPO_WRITE) {
271 6d7eb4f7 2023-04-04 thomas if (conf_protect_branch(new_repo, $2)) {
272 6d7eb4f7 2023-04-04 thomas free($2);
273 6d7eb4f7 2023-04-04 thomas YYERROR;
274 6d7eb4f7 2023-04-04 thomas }
275 6d7eb4f7 2023-04-04 thomas }
276 ffc797f3 2023-04-05 thomas free($2);
277 6d7eb4f7 2023-04-04 thomas }
278 6d7eb4f7 2023-04-04 thomas ;
279 6d7eb4f7 2023-04-04 thomas
280 3efd8e31 2022-10-23 thomas repository : REPOSITORY STRING {
281 3efd8e31 2022-10-23 thomas struct gotd_repo *repo;
282 3efd8e31 2022-10-23 thomas
283 3efd8e31 2022-10-23 thomas TAILQ_FOREACH(repo, &gotd->repos, entry) {
284 3efd8e31 2022-10-23 thomas if (strcmp(repo->name, $2) == 0) {
285 3efd8e31 2022-10-23 thomas yyerror("duplicate repository '%s'", $2);
286 3efd8e31 2022-10-23 thomas free($2);
287 3efd8e31 2022-10-23 thomas YYERROR;
288 3efd8e31 2022-10-23 thomas }
289 3efd8e31 2022-10-23 thomas }
290 3efd8e31 2022-10-23 thomas
291 c669c489 2022-12-30 thomas if (gotd_proc_id == PROC_GOTD ||
292 6d7eb4f7 2023-04-04 thomas gotd_proc_id == PROC_AUTH ||
293 6d7eb4f7 2023-04-04 thomas gotd_proc_id == PROC_REPO_WRITE) {
294 3efd8e31 2022-10-23 thomas new_repo = conf_new_repo($2);
295 3efd8e31 2022-10-23 thomas }
296 3efd8e31 2022-10-23 thomas free($2);
297 3efd8e31 2022-10-23 thomas } '{' optnl repoopts2 '}' {
298 3efd8e31 2022-10-23 thomas }
299 3efd8e31 2022-10-23 thomas ;
300 3efd8e31 2022-10-23 thomas
301 3efd8e31 2022-10-23 thomas repoopts1 : PATH STRING {
302 c669c489 2022-12-30 thomas if (gotd_proc_id == PROC_GOTD ||
303 6d7eb4f7 2023-04-04 thomas gotd_proc_id == PROC_AUTH ||
304 6d7eb4f7 2023-04-04 thomas gotd_proc_id == PROC_REPO_WRITE) {
305 3efd8e31 2022-10-23 thomas if (!got_path_is_absolute($2)) {
306 3efd8e31 2022-10-23 thomas yyerror("%s: path %s is not absolute",
307 3efd8e31 2022-10-23 thomas __func__, $2);
308 3efd8e31 2022-10-23 thomas free($2);
309 3efd8e31 2022-10-23 thomas YYERROR;
310 3efd8e31 2022-10-23 thomas }
311 fe6a8988 2023-01-08 thomas if (realpath($2, new_repo->path) == NULL) {
312 fe6a8988 2023-01-08 thomas yyerror("realpath %s: %s", $2, strerror(errno));
313 3efd8e31 2022-10-23 thomas free($2);
314 3efd8e31 2022-10-23 thomas YYERROR;
315 3efd8e31 2022-10-23 thomas }
316 3efd8e31 2022-10-23 thomas }
317 3efd8e31 2022-10-23 thomas free($2);
318 729a7e24 2022-11-17 thomas }
319 729a7e24 2022-11-17 thomas | PERMIT RO STRING {
320 c669c489 2022-12-30 thomas if (gotd_proc_id == PROC_AUTH) {
321 729a7e24 2022-11-17 thomas conf_new_access_rule(new_repo,
322 729a7e24 2022-11-17 thomas GOTD_ACCESS_PERMITTED, GOTD_AUTH_READ, $3);
323 ffc797f3 2023-04-05 thomas } else
324 ffc797f3 2023-04-05 thomas free($3);
325 729a7e24 2022-11-17 thomas }
326 729a7e24 2022-11-17 thomas | PERMIT RW STRING {
327 c669c489 2022-12-30 thomas if (gotd_proc_id == PROC_AUTH) {
328 729a7e24 2022-11-17 thomas conf_new_access_rule(new_repo,
329 729a7e24 2022-11-17 thomas GOTD_ACCESS_PERMITTED,
330 729a7e24 2022-11-17 thomas GOTD_AUTH_READ | GOTD_AUTH_WRITE, $3);
331 ffc797f3 2023-04-05 thomas } else
332 ffc797f3 2023-04-05 thomas free($3);
333 3efd8e31 2022-10-23 thomas }
334 729a7e24 2022-11-17 thomas | DENY STRING {
335 c669c489 2022-12-30 thomas if (gotd_proc_id == PROC_AUTH) {
336 729a7e24 2022-11-17 thomas conf_new_access_rule(new_repo,
337 729a7e24 2022-11-17 thomas GOTD_ACCESS_DENIED, 0, $2);
338 ffc797f3 2023-04-05 thomas } else
339 ffc797f3 2023-04-05 thomas free($2);
340 729a7e24 2022-11-17 thomas }
341 6d7eb4f7 2023-04-04 thomas | protect
342 3efd8e31 2022-10-23 thomas ;
343 3efd8e31 2022-10-23 thomas
344 3efd8e31 2022-10-23 thomas repoopts2 : repoopts2 repoopts1 nl
345 3efd8e31 2022-10-23 thomas | repoopts1 optnl
346 3efd8e31 2022-10-23 thomas ;
347 3efd8e31 2022-10-23 thomas
348 3efd8e31 2022-10-23 thomas nl : '\n' optnl
349 3efd8e31 2022-10-23 thomas ;
350 3efd8e31 2022-10-23 thomas
351 3efd8e31 2022-10-23 thomas optnl : '\n' optnl /* zero or more newlines */
352 3efd8e31 2022-10-23 thomas | /* empty */
353 3efd8e31 2022-10-23 thomas ;
354 3efd8e31 2022-10-23 thomas
355 3efd8e31 2022-10-23 thomas %%
356 3efd8e31 2022-10-23 thomas
357 3efd8e31 2022-10-23 thomas struct keywords {
358 3efd8e31 2022-10-23 thomas const char *k_name;
359 3efd8e31 2022-10-23 thomas int k_val;
360 3efd8e31 2022-10-23 thomas };
361 3efd8e31 2022-10-23 thomas
362 3efd8e31 2022-10-23 thomas int
363 3efd8e31 2022-10-23 thomas yyerror(const char *fmt, ...)
364 3efd8e31 2022-10-23 thomas {
365 3efd8e31 2022-10-23 thomas va_list ap;
366 3efd8e31 2022-10-23 thomas char *msg;
367 3efd8e31 2022-10-23 thomas
368 3efd8e31 2022-10-23 thomas file->errors++;
369 3efd8e31 2022-10-23 thomas va_start(ap, fmt);
370 3efd8e31 2022-10-23 thomas if (vasprintf(&msg, fmt, ap) == -1)
371 3efd8e31 2022-10-23 thomas fatalx("yyerror vasprintf");
372 3efd8e31 2022-10-23 thomas va_end(ap);
373 3efd8e31 2022-10-23 thomas logit(LOG_CRIT, "%s:%d: %s", file->name, yylval.lineno, msg);
374 3efd8e31 2022-10-23 thomas free(msg);
375 3efd8e31 2022-10-23 thomas return (0);
376 3efd8e31 2022-10-23 thomas }
377 3efd8e31 2022-10-23 thomas
378 3efd8e31 2022-10-23 thomas int
379 3efd8e31 2022-10-23 thomas kw_cmp(const void *k, const void *e)
380 3efd8e31 2022-10-23 thomas {
381 3efd8e31 2022-10-23 thomas return (strcmp(k, ((const struct keywords *)e)->k_name));
382 3efd8e31 2022-10-23 thomas }
383 3efd8e31 2022-10-23 thomas
384 3efd8e31 2022-10-23 thomas int
385 3efd8e31 2022-10-23 thomas lookup(char *s)
386 3efd8e31 2022-10-23 thomas {
387 3efd8e31 2022-10-23 thomas /* This has to be sorted always. */
388 3efd8e31 2022-10-23 thomas static const struct keywords keywords[] = {
389 6d7eb4f7 2023-04-04 thomas { "branch", BRANCH },
390 0781db0e 2023-01-06 thomas { "connection", CONNECTION },
391 729a7e24 2022-11-17 thomas { "deny", DENY },
392 0781db0e 2023-01-06 thomas { "limit", LIMIT },
393 f9a4feb6 2023-01-06 thomas { "listen", LISTEN },
394 6d7eb4f7 2023-04-04 thomas { "namespace", NAMESPACE },
395 3efd8e31 2022-10-23 thomas { "on", ON },
396 3efd8e31 2022-10-23 thomas { "path", PATH },
397 729a7e24 2022-11-17 thomas { "permit", PERMIT },
398 6d7eb4f7 2023-04-04 thomas { "protect", PROTECT },
399 3efd8e31 2022-10-23 thomas { "repository", REPOSITORY },
400 0781db0e 2023-01-06 thomas { "request", REQUEST },
401 729a7e24 2022-11-17 thomas { "ro", RO },
402 729a7e24 2022-11-17 thomas { "rw", RW },
403 6d7eb4f7 2023-04-04 thomas { "tag", TAG },
404 0781db0e 2023-01-06 thomas { "timeout", TIMEOUT },
405 3efd8e31 2022-10-23 thomas { "user", USER },
406 3efd8e31 2022-10-23 thomas };
407 3efd8e31 2022-10-23 thomas const struct keywords *p;
408 3efd8e31 2022-10-23 thomas
409 3efd8e31 2022-10-23 thomas p = bsearch(s, keywords, sizeof(keywords)/sizeof(keywords[0]),
410 3efd8e31 2022-10-23 thomas sizeof(keywords[0]), kw_cmp);
411 3efd8e31 2022-10-23 thomas
412 3efd8e31 2022-10-23 thomas if (p)
413 3efd8e31 2022-10-23 thomas return (p->k_val);
414 3efd8e31 2022-10-23 thomas else
415 3efd8e31 2022-10-23 thomas return (STRING);
416 3efd8e31 2022-10-23 thomas }
417 3efd8e31 2022-10-23 thomas
418 3efd8e31 2022-10-23 thomas #define MAXPUSHBACK 128
419 3efd8e31 2022-10-23 thomas
420 3efd8e31 2022-10-23 thomas unsigned char *parsebuf;
421 3efd8e31 2022-10-23 thomas int parseindex;
422 3efd8e31 2022-10-23 thomas unsigned char pushback_buffer[MAXPUSHBACK];
423 3efd8e31 2022-10-23 thomas int pushback_index = 0;
424 3efd8e31 2022-10-23 thomas
425 3efd8e31 2022-10-23 thomas int
426 3efd8e31 2022-10-23 thomas lgetc(int quotec)
427 3efd8e31 2022-10-23 thomas {
428 3efd8e31 2022-10-23 thomas int c, next;
429 3efd8e31 2022-10-23 thomas
430 3efd8e31 2022-10-23 thomas if (parsebuf) {
431 3efd8e31 2022-10-23 thomas /* Read character from the parsebuffer instead of input. */
432 3efd8e31 2022-10-23 thomas if (parseindex >= 0) {
433 3efd8e31 2022-10-23 thomas c = parsebuf[parseindex++];
434 3efd8e31 2022-10-23 thomas if (c != '\0')
435 3efd8e31 2022-10-23 thomas return (c);
436 3efd8e31 2022-10-23 thomas parsebuf = NULL;
437 3efd8e31 2022-10-23 thomas } else
438 3efd8e31 2022-10-23 thomas parseindex++;
439 3efd8e31 2022-10-23 thomas }
440 3efd8e31 2022-10-23 thomas
441 3efd8e31 2022-10-23 thomas if (pushback_index)
442 3efd8e31 2022-10-23 thomas return (pushback_buffer[--pushback_index]);
443 3efd8e31 2022-10-23 thomas
444 3efd8e31 2022-10-23 thomas if (quotec) {
445 3efd8e31 2022-10-23 thomas c = getc(file->stream);
446 3efd8e31 2022-10-23 thomas if (c == EOF)
447 3efd8e31 2022-10-23 thomas yyerror("reached end of file while parsing "
448 3efd8e31 2022-10-23 thomas "quoted string");
449 3efd8e31 2022-10-23 thomas return (c);
450 3efd8e31 2022-10-23 thomas }
451 3efd8e31 2022-10-23 thomas
452 3efd8e31 2022-10-23 thomas c = getc(file->stream);
453 3efd8e31 2022-10-23 thomas while (c == '\\') {
454 3efd8e31 2022-10-23 thomas next = getc(file->stream);
455 3efd8e31 2022-10-23 thomas if (next != '\n') {
456 3efd8e31 2022-10-23 thomas c = next;
457 3efd8e31 2022-10-23 thomas break;
458 3efd8e31 2022-10-23 thomas }
459 3efd8e31 2022-10-23 thomas yylval.lineno = file->lineno;
460 3efd8e31 2022-10-23 thomas file->lineno++;
461 3efd8e31 2022-10-23 thomas c = getc(file->stream);
462 3efd8e31 2022-10-23 thomas }
463 3efd8e31 2022-10-23 thomas
464 3efd8e31 2022-10-23 thomas return (c);
465 3efd8e31 2022-10-23 thomas }
466 3efd8e31 2022-10-23 thomas
467 3efd8e31 2022-10-23 thomas int
468 3efd8e31 2022-10-23 thomas lungetc(int c)
469 3efd8e31 2022-10-23 thomas {
470 3efd8e31 2022-10-23 thomas if (c == EOF)
471 3efd8e31 2022-10-23 thomas return (EOF);
472 3efd8e31 2022-10-23 thomas if (parsebuf) {
473 3efd8e31 2022-10-23 thomas parseindex--;
474 3efd8e31 2022-10-23 thomas if (parseindex >= 0)
475 3efd8e31 2022-10-23 thomas return (c);
476 3efd8e31 2022-10-23 thomas }
477 3efd8e31 2022-10-23 thomas if (pushback_index < MAXPUSHBACK-1)
478 3efd8e31 2022-10-23 thomas return (pushback_buffer[pushback_index++] = c);
479 3efd8e31 2022-10-23 thomas else
480 3efd8e31 2022-10-23 thomas return (EOF);
481 3efd8e31 2022-10-23 thomas }
482 3efd8e31 2022-10-23 thomas
483 3efd8e31 2022-10-23 thomas int
484 3efd8e31 2022-10-23 thomas findeol(void)
485 3efd8e31 2022-10-23 thomas {
486 3efd8e31 2022-10-23 thomas int c;
487 3efd8e31 2022-10-23 thomas
488 3efd8e31 2022-10-23 thomas parsebuf = NULL;
489 3efd8e31 2022-10-23 thomas
490 3efd8e31 2022-10-23 thomas /* Skip to either EOF or the first real EOL. */
491 3efd8e31 2022-10-23 thomas while (1) {
492 3efd8e31 2022-10-23 thomas if (pushback_index)
493 3efd8e31 2022-10-23 thomas c = pushback_buffer[--pushback_index];
494 3efd8e31 2022-10-23 thomas else
495 3efd8e31 2022-10-23 thomas c = lgetc(0);
496 3efd8e31 2022-10-23 thomas if (c == '\n') {
497 3efd8e31 2022-10-23 thomas file->lineno++;
498 3efd8e31 2022-10-23 thomas break;
499 3efd8e31 2022-10-23 thomas }
500 3efd8e31 2022-10-23 thomas if (c == EOF)
501 3efd8e31 2022-10-23 thomas break;
502 3efd8e31 2022-10-23 thomas }
503 3efd8e31 2022-10-23 thomas return (ERROR);
504 3efd8e31 2022-10-23 thomas }
505 3efd8e31 2022-10-23 thomas
506 3efd8e31 2022-10-23 thomas int
507 3efd8e31 2022-10-23 thomas yylex(void)
508 3efd8e31 2022-10-23 thomas {
509 3efd8e31 2022-10-23 thomas unsigned char buf[8096];
510 3efd8e31 2022-10-23 thomas unsigned char *p, *val;
511 3efd8e31 2022-10-23 thomas int quotec, next, c;
512 3efd8e31 2022-10-23 thomas int token;
513 3efd8e31 2022-10-23 thomas
514 3efd8e31 2022-10-23 thomas top:
515 3efd8e31 2022-10-23 thomas p = buf;
516 3efd8e31 2022-10-23 thomas c = lgetc(0);
517 3efd8e31 2022-10-23 thomas while (c == ' ' || c == '\t')
518 3efd8e31 2022-10-23 thomas c = lgetc(0); /* nothing */
519 3efd8e31 2022-10-23 thomas
520 3efd8e31 2022-10-23 thomas yylval.lineno = file->lineno;
521 3efd8e31 2022-10-23 thomas if (c == '#') {
522 3efd8e31 2022-10-23 thomas c = lgetc(0);
523 3efd8e31 2022-10-23 thomas while (c != '\n' && c != EOF)
524 3efd8e31 2022-10-23 thomas c = lgetc(0); /* nothing */
525 3efd8e31 2022-10-23 thomas }
526 3efd8e31 2022-10-23 thomas if (c == '$' && parsebuf == NULL) {
527 3efd8e31 2022-10-23 thomas while (1) {
528 3efd8e31 2022-10-23 thomas c = lgetc(0);
529 3efd8e31 2022-10-23 thomas if (c == EOF)
530 3efd8e31 2022-10-23 thomas return (0);
531 3efd8e31 2022-10-23 thomas
532 3efd8e31 2022-10-23 thomas if (p + 1 >= buf + sizeof(buf) - 1) {
533 3efd8e31 2022-10-23 thomas yyerror("string too long");
534 3efd8e31 2022-10-23 thomas return (findeol());
535 3efd8e31 2022-10-23 thomas }
536 3efd8e31 2022-10-23 thomas if (isalnum(c) || c == '_') {
537 3efd8e31 2022-10-23 thomas *p++ = c;
538 3efd8e31 2022-10-23 thomas continue;
539 3efd8e31 2022-10-23 thomas }
540 3efd8e31 2022-10-23 thomas *p = '\0';
541 3efd8e31 2022-10-23 thomas lungetc(c);
542 3efd8e31 2022-10-23 thomas break;
543 3efd8e31 2022-10-23 thomas }
544 3efd8e31 2022-10-23 thomas val = symget(buf);
545 3efd8e31 2022-10-23 thomas if (val == NULL) {
546 3efd8e31 2022-10-23 thomas yyerror("macro '%s' not defined", buf);
547 3efd8e31 2022-10-23 thomas return (findeol());
548 3efd8e31 2022-10-23 thomas }
549 3efd8e31 2022-10-23 thomas parsebuf = val;
550 3efd8e31 2022-10-23 thomas parseindex = 0;
551 3efd8e31 2022-10-23 thomas goto top;
552 3efd8e31 2022-10-23 thomas }
553 3efd8e31 2022-10-23 thomas
554 3efd8e31 2022-10-23 thomas switch (c) {
555 3efd8e31 2022-10-23 thomas case '\'':
556 3efd8e31 2022-10-23 thomas case '"':
557 3efd8e31 2022-10-23 thomas quotec = c;
558 3efd8e31 2022-10-23 thomas while (1) {
559 3efd8e31 2022-10-23 thomas c = lgetc(quotec);
560 3efd8e31 2022-10-23 thomas if (c == EOF)
561 3efd8e31 2022-10-23 thomas return (0);
562 3efd8e31 2022-10-23 thomas if (c == '\n') {
563 3efd8e31 2022-10-23 thomas file->lineno++;
564 3efd8e31 2022-10-23 thomas continue;
565 3efd8e31 2022-10-23 thomas } else if (c == '\\') {
566 3efd8e31 2022-10-23 thomas next = lgetc(quotec);
567 3efd8e31 2022-10-23 thomas if (next == EOF)
568 3efd8e31 2022-10-23 thomas return (0);
569 3efd8e31 2022-10-23 thomas if (next == quotec || c == ' ' || c == '\t')
570 3efd8e31 2022-10-23 thomas c = next;
571 3efd8e31 2022-10-23 thomas else if (next == '\n') {
572 3efd8e31 2022-10-23 thomas file->lineno++;
573 3efd8e31 2022-10-23 thomas continue;
574 3efd8e31 2022-10-23 thomas } else
575 3efd8e31 2022-10-23 thomas lungetc(next);
576 3efd8e31 2022-10-23 thomas } else if (c == quotec) {
577 3efd8e31 2022-10-23 thomas *p = '\0';
578 3efd8e31 2022-10-23 thomas break;
579 3efd8e31 2022-10-23 thomas } else if (c == '\0') {
580 3efd8e31 2022-10-23 thomas yyerror("syntax error");
581 3efd8e31 2022-10-23 thomas return (findeol());
582 3efd8e31 2022-10-23 thomas }
583 3efd8e31 2022-10-23 thomas if (p + 1 >= buf + sizeof(buf) - 1) {
584 3efd8e31 2022-10-23 thomas yyerror("string too long");
585 3efd8e31 2022-10-23 thomas return (findeol());
586 3efd8e31 2022-10-23 thomas }
587 3efd8e31 2022-10-23 thomas *p++ = c;
588 3efd8e31 2022-10-23 thomas }
589 3efd8e31 2022-10-23 thomas yylval.v.string = strdup(buf);
590 3efd8e31 2022-10-23 thomas if (yylval.v.string == NULL)
591 3efd8e31 2022-10-23 thomas err(1, "yylex: strdup");
592 3efd8e31 2022-10-23 thomas return (STRING);
593 3efd8e31 2022-10-23 thomas }
594 3efd8e31 2022-10-23 thomas
595 3efd8e31 2022-10-23 thomas #define allowed_to_end_number(x) \
596 3efd8e31 2022-10-23 thomas (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=')
597 3efd8e31 2022-10-23 thomas
598 3efd8e31 2022-10-23 thomas if (c == '-' || isdigit(c)) {
599 3efd8e31 2022-10-23 thomas do {
600 3efd8e31 2022-10-23 thomas *p++ = c;
601 3efd8e31 2022-10-23 thomas if ((unsigned)(p-buf) >= sizeof(buf)) {
602 3efd8e31 2022-10-23 thomas yyerror("string too long");
603 3efd8e31 2022-10-23 thomas return (findeol());
604 3efd8e31 2022-10-23 thomas }
605 3efd8e31 2022-10-23 thomas c = lgetc(0);
606 3efd8e31 2022-10-23 thomas } while (c != EOF && isdigit(c));
607 3efd8e31 2022-10-23 thomas lungetc(c);
608 3efd8e31 2022-10-23 thomas if (p == buf + 1 && buf[0] == '-')
609 3efd8e31 2022-10-23 thomas goto nodigits;
610 3efd8e31 2022-10-23 thomas if (c == EOF || allowed_to_end_number(c)) {
611 3efd8e31 2022-10-23 thomas const char *errstr = NULL;
612 3efd8e31 2022-10-23 thomas
613 3efd8e31 2022-10-23 thomas *p = '\0';
614 3efd8e31 2022-10-23 thomas yylval.v.number = strtonum(buf, LLONG_MIN,
615 3efd8e31 2022-10-23 thomas LLONG_MAX, &errstr);
616 3efd8e31 2022-10-23 thomas if (errstr) {
617 3efd8e31 2022-10-23 thomas yyerror("\"%s\" invalid number: %s",
618 3efd8e31 2022-10-23 thomas buf, errstr);
619 3efd8e31 2022-10-23 thomas return (findeol());
620 3efd8e31 2022-10-23 thomas }
621 3efd8e31 2022-10-23 thomas return (NUMBER);
622 3efd8e31 2022-10-23 thomas } else {
623 3efd8e31 2022-10-23 thomas nodigits:
624 3efd8e31 2022-10-23 thomas while (p > buf + 1)
625 3efd8e31 2022-10-23 thomas lungetc(*--p);
626 3efd8e31 2022-10-23 thomas c = *--p;
627 3efd8e31 2022-10-23 thomas if (c == '-')
628 3efd8e31 2022-10-23 thomas return (c);
629 3efd8e31 2022-10-23 thomas }
630 3efd8e31 2022-10-23 thomas }
631 3efd8e31 2022-10-23 thomas
632 3efd8e31 2022-10-23 thomas #define allowed_in_string(x) \
633 3efd8e31 2022-10-23 thomas (isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \
634 3efd8e31 2022-10-23 thomas x != '{' && x != '}' && \
635 3efd8e31 2022-10-23 thomas x != '!' && x != '=' && x != '#' && \
636 3efd8e31 2022-10-23 thomas x != ','))
637 3efd8e31 2022-10-23 thomas
638 3efd8e31 2022-10-23 thomas if (isalnum(c) || c == ':' || c == '_') {
639 3efd8e31 2022-10-23 thomas do {
640 3efd8e31 2022-10-23 thomas *p++ = c;
641 3efd8e31 2022-10-23 thomas if ((unsigned)(p-buf) >= sizeof(buf)) {
642 3efd8e31 2022-10-23 thomas yyerror("string too long");
643 3efd8e31 2022-10-23 thomas return (findeol());
644 3efd8e31 2022-10-23 thomas }
645 3efd8e31 2022-10-23 thomas c = lgetc(0);
646 3efd8e31 2022-10-23 thomas } while (c != EOF && (allowed_in_string(c)));
647 3efd8e31 2022-10-23 thomas lungetc(c);
648 3efd8e31 2022-10-23 thomas *p = '\0';
649 3efd8e31 2022-10-23 thomas token = lookup(buf);
650 3efd8e31 2022-10-23 thomas if (token == STRING) {
651 3efd8e31 2022-10-23 thomas yylval.v.string = strdup(buf);
652 3efd8e31 2022-10-23 thomas if (yylval.v.string == NULL)
653 3efd8e31 2022-10-23 thomas err(1, "yylex: strdup");
654 3efd8e31 2022-10-23 thomas }
655 3efd8e31 2022-10-23 thomas return (token);
656 3efd8e31 2022-10-23 thomas }
657 3efd8e31 2022-10-23 thomas if (c == '\n') {
658 3efd8e31 2022-10-23 thomas yylval.lineno = file->lineno;
659 3efd8e31 2022-10-23 thomas file->lineno++;
660 3efd8e31 2022-10-23 thomas }
661 3efd8e31 2022-10-23 thomas if (c == EOF)
662 3efd8e31 2022-10-23 thomas return (0);
663 3efd8e31 2022-10-23 thomas return (c);
664 3efd8e31 2022-10-23 thomas }
665 3efd8e31 2022-10-23 thomas
666 3efd8e31 2022-10-23 thomas int
667 3efd8e31 2022-10-23 thomas check_file_secrecy(int fd, const char *fname)
668 3efd8e31 2022-10-23 thomas {
669 3efd8e31 2022-10-23 thomas struct stat st;
670 3efd8e31 2022-10-23 thomas
671 3efd8e31 2022-10-23 thomas if (fstat(fd, &st)) {
672 3efd8e31 2022-10-23 thomas log_warn("cannot stat %s", fname);
673 3efd8e31 2022-10-23 thomas return (-1);
674 3efd8e31 2022-10-23 thomas }
675 3efd8e31 2022-10-23 thomas if (st.st_uid != 0 && st.st_uid != getuid()) {
676 3efd8e31 2022-10-23 thomas log_warnx("%s: owner not root or current user", fname);
677 3efd8e31 2022-10-23 thomas return (-1);
678 3efd8e31 2022-10-23 thomas }
679 3efd8e31 2022-10-23 thomas if (st.st_mode & (S_IWGRP | S_IXGRP | S_IRWXO)) {
680 3efd8e31 2022-10-23 thomas log_warnx("%s: group writable or world read/writable", fname);
681 3efd8e31 2022-10-23 thomas return (-1);
682 3efd8e31 2022-10-23 thomas }
683 3efd8e31 2022-10-23 thomas return (0);
684 3efd8e31 2022-10-23 thomas }
685 3efd8e31 2022-10-23 thomas
686 3efd8e31 2022-10-23 thomas struct file *
687 7554713a 2023-04-01 thomas newfile(const char *name, int secret, int required)
688 3efd8e31 2022-10-23 thomas {
689 3efd8e31 2022-10-23 thomas struct file *nfile;
690 3efd8e31 2022-10-23 thomas
691 3efd8e31 2022-10-23 thomas nfile = calloc(1, sizeof(struct file));
692 3efd8e31 2022-10-23 thomas if (nfile == NULL) {
693 3efd8e31 2022-10-23 thomas log_warn("calloc");
694 3efd8e31 2022-10-23 thomas return (NULL);
695 3efd8e31 2022-10-23 thomas }
696 3efd8e31 2022-10-23 thomas nfile->name = strdup(name);
697 3efd8e31 2022-10-23 thomas if (nfile->name == NULL) {
698 3efd8e31 2022-10-23 thomas log_warn("strdup");
699 3efd8e31 2022-10-23 thomas free(nfile);
700 3efd8e31 2022-10-23 thomas return (NULL);
701 3efd8e31 2022-10-23 thomas }
702 3efd8e31 2022-10-23 thomas nfile->stream = fopen(nfile->name, "r");
703 3efd8e31 2022-10-23 thomas if (nfile->stream == NULL) {
704 7554713a 2023-04-01 thomas if (required)
705 7554713a 2023-04-01 thomas log_warn("open %s", nfile->name);
706 3efd8e31 2022-10-23 thomas free(nfile->name);
707 3efd8e31 2022-10-23 thomas free(nfile);
708 3efd8e31 2022-10-23 thomas return (NULL);
709 3efd8e31 2022-10-23 thomas } else if (secret &&
710 3efd8e31 2022-10-23 thomas check_file_secrecy(fileno(nfile->stream), nfile->name)) {
711 3efd8e31 2022-10-23 thomas fclose(nfile->stream);
712 3efd8e31 2022-10-23 thomas free(nfile->name);
713 3efd8e31 2022-10-23 thomas free(nfile);
714 3efd8e31 2022-10-23 thomas return (NULL);
715 3efd8e31 2022-10-23 thomas }
716 3efd8e31 2022-10-23 thomas nfile->lineno = 1;
717 3efd8e31 2022-10-23 thomas return (nfile);
718 3efd8e31 2022-10-23 thomas }
719 3efd8e31 2022-10-23 thomas
720 3efd8e31 2022-10-23 thomas static void
721 3efd8e31 2022-10-23 thomas closefile(struct file *xfile)
722 3efd8e31 2022-10-23 thomas {
723 3efd8e31 2022-10-23 thomas fclose(xfile->stream);
724 3efd8e31 2022-10-23 thomas free(xfile->name);
725 3efd8e31 2022-10-23 thomas free(xfile);
726 3efd8e31 2022-10-23 thomas }
727 3efd8e31 2022-10-23 thomas
728 3efd8e31 2022-10-23 thomas int
729 3efd8e31 2022-10-23 thomas parse_config(const char *filename, enum gotd_procid proc_id,
730 7554713a 2023-04-01 thomas struct gotd *env, int require_config_file)
731 3efd8e31 2022-10-23 thomas {
732 3efd8e31 2022-10-23 thomas struct sym *sym, *next;
733 88f1bb6d 2023-01-02 thomas struct gotd_repo *repo;
734 3efd8e31 2022-10-23 thomas
735 3efd8e31 2022-10-23 thomas memset(env, 0, sizeof(*env));
736 3efd8e31 2022-10-23 thomas
737 3efd8e31 2022-10-23 thomas gotd = env;
738 3efd8e31 2022-10-23 thomas gotd_proc_id = proc_id;
739 3efd8e31 2022-10-23 thomas TAILQ_INIT(&gotd->repos);
740 3efd8e31 2022-10-23 thomas
741 3efd8e31 2022-10-23 thomas /* Apply default values. */
742 3efd8e31 2022-10-23 thomas if (strlcpy(gotd->unix_socket_path, GOTD_UNIX_SOCKET,
743 3efd8e31 2022-10-23 thomas sizeof(gotd->unix_socket_path)) >= sizeof(gotd->unix_socket_path)) {
744 3efd8e31 2022-10-23 thomas fprintf(stderr, "%s: unix socket path too long", __func__);
745 3efd8e31 2022-10-23 thomas return -1;
746 3efd8e31 2022-10-23 thomas }
747 3efd8e31 2022-10-23 thomas if (strlcpy(gotd->user_name, GOTD_USER,
748 3efd8e31 2022-10-23 thomas sizeof(gotd->user_name)) >= sizeof(gotd->user_name)) {
749 3efd8e31 2022-10-23 thomas fprintf(stderr, "%s: user name too long", __func__);
750 3efd8e31 2022-10-23 thomas return -1;
751 3efd8e31 2022-10-23 thomas }
752 0781db0e 2023-01-06 thomas
753 0781db0e 2023-01-06 thomas gotd->request_timeout.tv_sec = GOTD_DEFAULT_REQUEST_TIMEOUT;
754 0781db0e 2023-01-06 thomas gotd->request_timeout.tv_usec = 0;
755 3efd8e31 2022-10-23 thomas
756 7554713a 2023-04-01 thomas file = newfile(filename, 0, require_config_file);
757 f3296add 2023-03-01 thomas if (file == NULL)
758 7554713a 2023-04-01 thomas return require_config_file ? -1 : 0;
759 3efd8e31 2022-10-23 thomas
760 3efd8e31 2022-10-23 thomas yyparse();
761 3efd8e31 2022-10-23 thomas errors = file->errors;
762 3efd8e31 2022-10-23 thomas closefile(file);
763 3efd8e31 2022-10-23 thomas
764 3efd8e31 2022-10-23 thomas /* Free macros and check which have not been used. */
765 3efd8e31 2022-10-23 thomas TAILQ_FOREACH_SAFE(sym, &symhead, entry, next) {
766 3efd8e31 2022-10-23 thomas if ((gotd->verbosity > 1) && !sym->used)
767 3efd8e31 2022-10-23 thomas fprintf(stderr, "warning: macro '%s' not used\n",
768 3efd8e31 2022-10-23 thomas sym->nam);
769 3efd8e31 2022-10-23 thomas if (!sym->persist) {
770 3efd8e31 2022-10-23 thomas free(sym->nam);
771 3efd8e31 2022-10-23 thomas free(sym->val);
772 3efd8e31 2022-10-23 thomas TAILQ_REMOVE(&symhead, sym, entry);
773 3efd8e31 2022-10-23 thomas free(sym);
774 3efd8e31 2022-10-23 thomas }
775 3efd8e31 2022-10-23 thomas }
776 3efd8e31 2022-10-23 thomas
777 3efd8e31 2022-10-23 thomas if (errors)
778 3efd8e31 2022-10-23 thomas return (-1);
779 3efd8e31 2022-10-23 thomas
780 88f1bb6d 2023-01-02 thomas TAILQ_FOREACH(repo, &gotd->repos, entry) {
781 88f1bb6d 2023-01-02 thomas if (repo->path[0] == '\0') {
782 0cbf8de7 2023-01-02 thomas log_warnx("repository \"%s\": no path provided in "
783 0cbf8de7 2023-01-02 thomas "configuration file", repo->name);
784 88f1bb6d 2023-01-02 thomas return (-1);
785 88f1bb6d 2023-01-02 thomas }
786 88f1bb6d 2023-01-02 thomas }
787 88f1bb6d 2023-01-02 thomas
788 4d24b1fd 2023-01-19 thomas if (proc_id == PROC_GOTD && TAILQ_EMPTY(&gotd->repos)) {
789 4d24b1fd 2023-01-19 thomas log_warnx("no repository defined in configuration file");
790 4d24b1fd 2023-01-19 thomas return (-1);
791 4d24b1fd 2023-01-19 thomas }
792 4d24b1fd 2023-01-19 thomas
793 3efd8e31 2022-10-23 thomas return (0);
794 3efd8e31 2022-10-23 thomas }
795 3efd8e31 2022-10-23 thomas
796 0781db0e 2023-01-06 thomas static int
797 0781db0e 2023-01-06 thomas uid_connection_limit_cmp(const void *pa, const void *pb)
798 0781db0e 2023-01-06 thomas {
799 0781db0e 2023-01-06 thomas const struct gotd_uid_connection_limit *a = pa, *b = pb;
800 0781db0e 2023-01-06 thomas
801 0781db0e 2023-01-06 thomas if (a->uid < b->uid)
802 0781db0e 2023-01-06 thomas return -1;
803 0781db0e 2023-01-06 thomas else if (a->uid > b->uid);
804 0781db0e 2023-01-06 thomas return 1;
805 0781db0e 2023-01-06 thomas
806 0781db0e 2023-01-06 thomas return 0;
807 0781db0e 2023-01-06 thomas }
808 0781db0e 2023-01-06 thomas
809 0781db0e 2023-01-06 thomas static int
810 0781db0e 2023-01-06 thomas conf_limit_user_connections(const char *user, int maximum)
811 0781db0e 2023-01-06 thomas {
812 0781db0e 2023-01-06 thomas uid_t uid;
813 0781db0e 2023-01-06 thomas struct gotd_uid_connection_limit *limit;
814 0781db0e 2023-01-06 thomas size_t nlimits;
815 0781db0e 2023-01-06 thomas
816 0781db0e 2023-01-06 thomas if (maximum < 1) {
817 0781db0e 2023-01-06 thomas yyerror("max connections cannot be smaller 1");
818 0781db0e 2023-01-06 thomas return -1;
819 0781db0e 2023-01-06 thomas }
820 0781db0e 2023-01-06 thomas if (maximum > GOTD_MAXCLIENTS) {
821 0781db0e 2023-01-06 thomas yyerror("max connections must be <= %d", GOTD_MAXCLIENTS);
822 0781db0e 2023-01-06 thomas return -1;
823 0781db0e 2023-01-06 thomas }
824 0781db0e 2023-01-06 thomas
825 0781db0e 2023-01-06 thomas if (gotd_auth_parseuid(user, &uid) == -1) {
826 0781db0e 2023-01-06 thomas yyerror("%s: no such user", user);
827 0781db0e 2023-01-06 thomas return -1;
828 0781db0e 2023-01-06 thomas }
829 0781db0e 2023-01-06 thomas
830 0781db0e 2023-01-06 thomas limit = gotd_find_uid_connection_limit(gotd->connection_limits,
831 0781db0e 2023-01-06 thomas gotd->nconnection_limits, uid);
832 0781db0e 2023-01-06 thomas if (limit) {
833 0781db0e 2023-01-06 thomas limit->max_connections = maximum;
834 0781db0e 2023-01-06 thomas return 0;
835 0781db0e 2023-01-06 thomas }
836 0781db0e 2023-01-06 thomas
837 0781db0e 2023-01-06 thomas limit = gotd->connection_limits;
838 0781db0e 2023-01-06 thomas nlimits = gotd->nconnection_limits + 1;
839 0781db0e 2023-01-06 thomas limit = reallocarray(limit, nlimits, sizeof(*limit));
840 0781db0e 2023-01-06 thomas if (limit == NULL)
841 0781db0e 2023-01-06 thomas fatal("reallocarray");
842 0781db0e 2023-01-06 thomas
843 0781db0e 2023-01-06 thomas limit[nlimits - 1].uid = uid;
844 0781db0e 2023-01-06 thomas limit[nlimits - 1].max_connections = maximum;
845 0781db0e 2023-01-06 thomas
846 0781db0e 2023-01-06 thomas gotd->connection_limits = limit;
847 0781db0e 2023-01-06 thomas gotd->nconnection_limits = nlimits;
848 0781db0e 2023-01-06 thomas qsort(gotd->connection_limits, gotd->nconnection_limits,
849 0781db0e 2023-01-06 thomas sizeof(gotd->connection_limits[0]), uid_connection_limit_cmp);
850 0781db0e 2023-01-06 thomas
851 0781db0e 2023-01-06 thomas return 0;
852 0781db0e 2023-01-06 thomas }
853 0781db0e 2023-01-06 thomas
854 3efd8e31 2022-10-23 thomas static struct gotd_repo *
855 3efd8e31 2022-10-23 thomas conf_new_repo(const char *name)
856 3efd8e31 2022-10-23 thomas {
857 3efd8e31 2022-10-23 thomas struct gotd_repo *repo;
858 3efd8e31 2022-10-23 thomas
859 a42b418b 2023-01-02 thomas if (name[0] == '\0') {
860 a42b418b 2023-01-02 thomas fatalx("syntax error: empty repository name found in %s",
861 a42b418b 2023-01-02 thomas file->name);
862 a42b418b 2023-01-02 thomas }
863 a42b418b 2023-01-02 thomas
864 0cbf8de7 2023-01-02 thomas if (strchr(name, '\n') != NULL)
865 0cbf8de7 2023-01-02 thomas fatalx("repository names must not contain linefeeds: %s", name);
866 3efd8e31 2022-10-23 thomas
867 3efd8e31 2022-10-23 thomas repo = calloc(1, sizeof(*repo));
868 3efd8e31 2022-10-23 thomas if (repo == NULL)
869 3efd8e31 2022-10-23 thomas fatalx("%s: calloc", __func__);
870 3efd8e31 2022-10-23 thomas
871 729a7e24 2022-11-17 thomas STAILQ_INIT(&repo->rules);
872 6d7eb4f7 2023-04-04 thomas TAILQ_INIT(&repo->protected_tag_namespaces);
873 6d7eb4f7 2023-04-04 thomas TAILQ_INIT(&repo->protected_branch_namespaces);
874 6d7eb4f7 2023-04-04 thomas TAILQ_INIT(&repo->protected_branches);
875 729a7e24 2022-11-17 thomas
876 3efd8e31 2022-10-23 thomas if (strlcpy(repo->name, name, sizeof(repo->name)) >=
877 3efd8e31 2022-10-23 thomas sizeof(repo->name))
878 3efd8e31 2022-10-23 thomas fatalx("%s: strlcpy", __func__);
879 3efd8e31 2022-10-23 thomas
880 3efd8e31 2022-10-23 thomas TAILQ_INSERT_TAIL(&gotd->repos, repo, entry);
881 3efd8e31 2022-10-23 thomas gotd->nrepos++;
882 3efd8e31 2022-10-23 thomas
883 3efd8e31 2022-10-23 thomas return repo;
884 3efd8e31 2022-10-23 thomas };
885 729a7e24 2022-11-17 thomas
886 729a7e24 2022-11-17 thomas static void
887 729a7e24 2022-11-17 thomas conf_new_access_rule(struct gotd_repo *repo, enum gotd_access access,
888 729a7e24 2022-11-17 thomas int authorization, char *identifier)
889 729a7e24 2022-11-17 thomas {
890 729a7e24 2022-11-17 thomas struct gotd_access_rule *rule;
891 729a7e24 2022-11-17 thomas
892 729a7e24 2022-11-17 thomas rule = calloc(1, sizeof(*rule));
893 729a7e24 2022-11-17 thomas if (rule == NULL)
894 729a7e24 2022-11-17 thomas fatal("calloc");
895 3efd8e31 2022-10-23 thomas
896 729a7e24 2022-11-17 thomas rule->access = access;
897 729a7e24 2022-11-17 thomas rule->authorization = authorization;
898 729a7e24 2022-11-17 thomas rule->identifier = identifier;
899 729a7e24 2022-11-17 thomas
900 729a7e24 2022-11-17 thomas STAILQ_INSERT_TAIL(&repo->rules, rule, entry);
901 729a7e24 2022-11-17 thomas }
902 729a7e24 2022-11-17 thomas
903 6d7eb4f7 2023-04-04 thomas static int
904 6d7eb4f7 2023-04-04 thomas refname_is_valid(char *refname)
905 6d7eb4f7 2023-04-04 thomas {
906 6d7eb4f7 2023-04-04 thomas if (strlen(refname) < 5 || strncmp(refname, "refs/", 5) != 0) {
907 6d7eb4f7 2023-04-04 thomas yyerror("reference name must begin with \"refs/\": %s",
908 6d7eb4f7 2023-04-04 thomas refname);
909 6d7eb4f7 2023-04-04 thomas return 0;
910 6d7eb4f7 2023-04-04 thomas }
911 6d7eb4f7 2023-04-04 thomas
912 6d7eb4f7 2023-04-04 thomas if (!got_ref_name_is_valid(refname)) {
913 6d7eb4f7 2023-04-04 thomas yyerror("invalid reference name: %s", refname);
914 6d7eb4f7 2023-04-04 thomas return 0;
915 6d7eb4f7 2023-04-04 thomas }
916 6d7eb4f7 2023-04-04 thomas
917 6d7eb4f7 2023-04-04 thomas return 1;
918 6d7eb4f7 2023-04-04 thomas }
919 6d7eb4f7 2023-04-04 thomas
920 6d7eb4f7 2023-04-04 thomas static int
921 57b6056a 2023-04-05 thomas conf_protect_ref_namespace(char **new, struct got_pathlist_head *refs,
922 57b6056a 2023-04-05 thomas char *namespace)
923 6d7eb4f7 2023-04-04 thomas {
924 6d7eb4f7 2023-04-04 thomas const struct got_error *error;
925 57b6056a 2023-04-05 thomas struct got_pathlist_entry *pe;
926 6d7eb4f7 2023-04-04 thomas char *s;
927 6d7eb4f7 2023-04-04 thomas
928 57b6056a 2023-04-05 thomas *new = NULL;
929 57b6056a 2023-04-05 thomas
930 6d7eb4f7 2023-04-04 thomas got_path_strip_trailing_slashes(namespace);
931 6d7eb4f7 2023-04-04 thomas if (!refname_is_valid(namespace))
932 6d7eb4f7 2023-04-04 thomas return -1;
933 6d7eb4f7 2023-04-04 thomas if (asprintf(&s, "%s/", namespace) == -1) {
934 6d7eb4f7 2023-04-04 thomas yyerror("asprintf: %s", strerror(errno));
935 6d7eb4f7 2023-04-04 thomas return -1;
936 6d7eb4f7 2023-04-04 thomas }
937 6d7eb4f7 2023-04-04 thomas
938 57b6056a 2023-04-05 thomas error = got_pathlist_insert(&pe, refs, s, NULL);
939 57b6056a 2023-04-05 thomas if (error || pe == NULL) {
940 a4435ef0 2023-04-05 thomas free(s);
941 a4435ef0 2023-04-05 thomas if (error)
942 a4435ef0 2023-04-05 thomas yyerror("got_pathlist_insert: %s", error->msg);
943 a4435ef0 2023-04-05 thomas else
944 3f0853b8 2023-04-07 thomas yyerror("duplicate protected namespace %s", namespace);
945 6d7eb4f7 2023-04-04 thomas return -1;
946 6d7eb4f7 2023-04-04 thomas }
947 6d7eb4f7 2023-04-04 thomas
948 57b6056a 2023-04-05 thomas *new = s;
949 6d7eb4f7 2023-04-04 thomas return 0;
950 6d7eb4f7 2023-04-04 thomas }
951 6d7eb4f7 2023-04-04 thomas
952 6d7eb4f7 2023-04-04 thomas static int
953 6d7eb4f7 2023-04-04 thomas conf_protect_tag_namespace(struct gotd_repo *repo, char *namespace)
954 6d7eb4f7 2023-04-04 thomas {
955 57b6056a 2023-04-05 thomas struct got_pathlist_entry *pe;
956 57b6056a 2023-04-05 thomas char *new;
957 57b6056a 2023-04-05 thomas
958 57b6056a 2023-04-05 thomas if (conf_protect_ref_namespace(&new, &repo->protected_tag_namespaces,
959 57b6056a 2023-04-05 thomas namespace) == -1)
960 57b6056a 2023-04-05 thomas return -1;
961 57b6056a 2023-04-05 thomas
962 57b6056a 2023-04-05 thomas TAILQ_FOREACH(pe, &repo->protected_branch_namespaces, entry) {
963 57b6056a 2023-04-05 thomas if (strcmp(pe->path, new) == 0) {
964 3f0853b8 2023-04-07 thomas yyerror("duplicate protected namespace %s", namespace);
965 57b6056a 2023-04-05 thomas return -1;
966 57b6056a 2023-04-05 thomas }
967 57b6056a 2023-04-05 thomas }
968 57b6056a 2023-04-05 thomas
969 57b6056a 2023-04-05 thomas return 0;
970 6d7eb4f7 2023-04-04 thomas }
971 6d7eb4f7 2023-04-04 thomas
972 6d7eb4f7 2023-04-04 thomas static int
973 6d7eb4f7 2023-04-04 thomas conf_protect_branch_namespace(struct gotd_repo *repo, char *namespace)
974 6d7eb4f7 2023-04-04 thomas {
975 57b6056a 2023-04-05 thomas struct got_pathlist_entry *pe;
976 57b6056a 2023-04-05 thomas char *new;
977 57b6056a 2023-04-05 thomas
978 57b6056a 2023-04-05 thomas if (conf_protect_ref_namespace(&new,
979 57b6056a 2023-04-05 thomas &repo->protected_branch_namespaces, namespace) == -1)
980 57b6056a 2023-04-05 thomas return -1;
981 57b6056a 2023-04-05 thomas
982 57b6056a 2023-04-05 thomas TAILQ_FOREACH(pe, &repo->protected_tag_namespaces, entry) {
983 57b6056a 2023-04-05 thomas if (strcmp(pe->path, new) == 0) {
984 3f0853b8 2023-04-07 thomas yyerror("duplicate protected namespace %s", namespace);
985 57b6056a 2023-04-05 thomas return -1;
986 57b6056a 2023-04-05 thomas }
987 57b6056a 2023-04-05 thomas }
988 57b6056a 2023-04-05 thomas
989 57b6056a 2023-04-05 thomas return 0;
990 6d7eb4f7 2023-04-04 thomas }
991 6d7eb4f7 2023-04-04 thomas
992 6d7eb4f7 2023-04-04 thomas static int
993 6d7eb4f7 2023-04-04 thomas conf_protect_branch(struct gotd_repo *repo, char *branchname)
994 6d7eb4f7 2023-04-04 thomas {
995 6d7eb4f7 2023-04-04 thomas const struct got_error *error;
996 a4435ef0 2023-04-05 thomas struct got_pathlist_entry *new;
997 6d7eb4f7 2023-04-04 thomas char *refname;
998 6d7eb4f7 2023-04-04 thomas
999 6d7eb4f7 2023-04-04 thomas if (strncmp(branchname, "refs/heads/", 11) != 0) {
1000 6d7eb4f7 2023-04-04 thomas if (asprintf(&refname, "refs/heads/%s", branchname) == -1) {
1001 6d7eb4f7 2023-04-04 thomas yyerror("asprintf: %s", strerror(errno));
1002 6d7eb4f7 2023-04-04 thomas return -1;
1003 6d7eb4f7 2023-04-04 thomas }
1004 6d7eb4f7 2023-04-04 thomas } else {
1005 6d7eb4f7 2023-04-04 thomas refname = strdup(branchname);
1006 6d7eb4f7 2023-04-04 thomas if (refname == NULL) {
1007 6d7eb4f7 2023-04-04 thomas yyerror("strdup: %s", strerror(errno));
1008 6d7eb4f7 2023-04-04 thomas return -1;
1009 6d7eb4f7 2023-04-04 thomas }
1010 6d7eb4f7 2023-04-04 thomas }
1011 6d7eb4f7 2023-04-04 thomas
1012 6d7eb4f7 2023-04-04 thomas if (!refname_is_valid(refname)) {
1013 6d7eb4f7 2023-04-04 thomas free(refname);
1014 6d7eb4f7 2023-04-04 thomas return -1;
1015 6d7eb4f7 2023-04-04 thomas }
1016 6d7eb4f7 2023-04-04 thomas
1017 a4435ef0 2023-04-05 thomas error = got_pathlist_insert(&new, &repo->protected_branches,
1018 6d7eb4f7 2023-04-04 thomas refname, NULL);
1019 a4435ef0 2023-04-05 thomas if (error || new == NULL) {
1020 a4435ef0 2023-04-05 thomas free(refname);
1021 a4435ef0 2023-04-05 thomas if (error)
1022 a4435ef0 2023-04-05 thomas yyerror("got_pathlist_insert: %s", error->msg);
1023 a4435ef0 2023-04-05 thomas else
1024 a4435ef0 2023-04-05 thomas yyerror("duplicate protect branch %s", branchname);
1025 6d7eb4f7 2023-04-04 thomas return -1;
1026 6d7eb4f7 2023-04-04 thomas }
1027 6d7eb4f7 2023-04-04 thomas
1028 6d7eb4f7 2023-04-04 thomas return 0;
1029 6d7eb4f7 2023-04-04 thomas }
1030 6d7eb4f7 2023-04-04 thomas
1031 3efd8e31 2022-10-23 thomas int
1032 3efd8e31 2022-10-23 thomas symset(const char *nam, const char *val, int persist)
1033 3efd8e31 2022-10-23 thomas {
1034 3efd8e31 2022-10-23 thomas struct sym *sym;
1035 3efd8e31 2022-10-23 thomas
1036 3efd8e31 2022-10-23 thomas TAILQ_FOREACH(sym, &symhead, entry) {
1037 3efd8e31 2022-10-23 thomas if (strcmp(nam, sym->nam) == 0)
1038 3efd8e31 2022-10-23 thomas break;
1039 3efd8e31 2022-10-23 thomas }
1040 3efd8e31 2022-10-23 thomas
1041 3efd8e31 2022-10-23 thomas if (sym != NULL) {
1042 3efd8e31 2022-10-23 thomas if (sym->persist == 1)
1043 3efd8e31 2022-10-23 thomas return (0);
1044 3efd8e31 2022-10-23 thomas else {
1045 3efd8e31 2022-10-23 thomas free(sym->nam);
1046 3efd8e31 2022-10-23 thomas free(sym->val);
1047 3efd8e31 2022-10-23 thomas TAILQ_REMOVE(&symhead, sym, entry);
1048 3efd8e31 2022-10-23 thomas free(sym);
1049 3efd8e31 2022-10-23 thomas }
1050 3efd8e31 2022-10-23 thomas }
1051 3efd8e31 2022-10-23 thomas sym = calloc(1, sizeof(*sym));
1052 3efd8e31 2022-10-23 thomas if (sym == NULL)
1053 3efd8e31 2022-10-23 thomas return (-1);
1054 3efd8e31 2022-10-23 thomas
1055 3efd8e31 2022-10-23 thomas sym->nam = strdup(nam);
1056 3efd8e31 2022-10-23 thomas if (sym->nam == NULL) {
1057 3efd8e31 2022-10-23 thomas free(sym);
1058 3efd8e31 2022-10-23 thomas return (-1);
1059 3efd8e31 2022-10-23 thomas }
1060 3efd8e31 2022-10-23 thomas sym->val = strdup(val);
1061 3efd8e31 2022-10-23 thomas if (sym->val == NULL) {
1062 3efd8e31 2022-10-23 thomas free(sym->nam);
1063 3efd8e31 2022-10-23 thomas free(sym);
1064 3efd8e31 2022-10-23 thomas return (-1);
1065 3efd8e31 2022-10-23 thomas }
1066 3efd8e31 2022-10-23 thomas sym->used = 0;
1067 3efd8e31 2022-10-23 thomas sym->persist = persist;
1068 3efd8e31 2022-10-23 thomas TAILQ_INSERT_TAIL(&symhead, sym, entry);
1069 3efd8e31 2022-10-23 thomas return (0);
1070 3efd8e31 2022-10-23 thomas }
1071 3efd8e31 2022-10-23 thomas
1072 3efd8e31 2022-10-23 thomas char *
1073 3efd8e31 2022-10-23 thomas symget(const char *nam)
1074 3efd8e31 2022-10-23 thomas {
1075 3efd8e31 2022-10-23 thomas struct sym *sym;
1076 3efd8e31 2022-10-23 thomas
1077 3efd8e31 2022-10-23 thomas TAILQ_FOREACH(sym, &symhead, entry) {
1078 3efd8e31 2022-10-23 thomas if (strcmp(nam, sym->nam) == 0) {
1079 3efd8e31 2022-10-23 thomas sym->used = 1;
1080 3efd8e31 2022-10-23 thomas return (sym->val);
1081 3efd8e31 2022-10-23 thomas }
1082 3efd8e31 2022-10-23 thomas }
1083 3efd8e31 2022-10-23 thomas return (NULL);
1084 5dcb3a43 2023-04-01 thomas }
1085 5dcb3a43 2023-04-01 thomas
1086 5dcb3a43 2023-04-01 thomas struct gotd_repo *
1087 5dcb3a43 2023-04-01 thomas gotd_find_repo_by_name(const char *repo_name, struct gotd *gotd)
1088 5dcb3a43 2023-04-01 thomas {
1089 5dcb3a43 2023-04-01 thomas struct gotd_repo *repo;
1090 5dcb3a43 2023-04-01 thomas size_t namelen;
1091 5dcb3a43 2023-04-01 thomas
1092 5dcb3a43 2023-04-01 thomas TAILQ_FOREACH(repo, &gotd->repos, entry) {
1093 5dcb3a43 2023-04-01 thomas namelen = strlen(repo->name);
1094 5dcb3a43 2023-04-01 thomas if (strncmp(repo->name, repo_name, namelen) != 0)
1095 5dcb3a43 2023-04-01 thomas continue;
1096 5dcb3a43 2023-04-01 thomas if (repo_name[namelen] == '\0' ||
1097 5dcb3a43 2023-04-01 thomas strcmp(&repo_name[namelen], ".git") == 0)
1098 5dcb3a43 2023-04-01 thomas return repo;
1099 5dcb3a43 2023-04-01 thomas }
1100 5dcb3a43 2023-04-01 thomas
1101 5dcb3a43 2023-04-01 thomas return NULL;
1102 3efd8e31 2022-10-23 thomas }
1103 6d7eb4f7 2023-04-04 thomas
1104 6d7eb4f7 2023-04-04 thomas struct gotd_repo *
1105 6d7eb4f7 2023-04-04 thomas gotd_find_repo_by_path(const char *repo_path, struct gotd *gotd)
1106 6d7eb4f7 2023-04-04 thomas {
1107 6d7eb4f7 2023-04-04 thomas struct gotd_repo *repo;
1108 6d7eb4f7 2023-04-04 thomas
1109 6d7eb4f7 2023-04-04 thomas TAILQ_FOREACH(repo, &gotd->repos, entry) {
1110 6d7eb4f7 2023-04-04 thomas if (strcmp(repo->path, repo_path) == 0)
1111 6d7eb4f7 2023-04-04 thomas return repo;
1112 6d7eb4f7 2023-04-04 thomas }
1113 6d7eb4f7 2023-04-04 thomas
1114 6d7eb4f7 2023-04-04 thomas return NULL;
1115 6d7eb4f7 2023-04-04 thomas }