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