Blame


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