Blame


1 257add31 2020-09-09 stsp /*
2 cfd92333 2021-08-27 tracey * Copyright (c) 2020, 2021 Tracey Emery <tracey@openbsd.org>
3 257add31 2020-09-09 stsp * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
4 257add31 2020-09-09 stsp * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
5 257add31 2020-09-09 stsp * Copyright (c) 2004 Ryan McBride <mcbride@openbsd.org>
6 257add31 2020-09-09 stsp * Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
7 257add31 2020-09-09 stsp * Copyright (c) 2001 Markus Friedl. All rights reserved.
8 257add31 2020-09-09 stsp * Copyright (c) 2001 Daniel Hartmeier. All rights reserved.
9 257add31 2020-09-09 stsp * Copyright (c) 2001 Theo de Raadt. All rights reserved.
10 257add31 2020-09-09 stsp *
11 257add31 2020-09-09 stsp * Permission to use, copy, modify, and distribute this software for any
12 257add31 2020-09-09 stsp * purpose with or without fee is hereby granted, provided that the above
13 257add31 2020-09-09 stsp * copyright notice and this permission notice appear in all copies.
14 257add31 2020-09-09 stsp *
15 257add31 2020-09-09 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
16 257add31 2020-09-09 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
17 257add31 2020-09-09 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
18 257add31 2020-09-09 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 257add31 2020-09-09 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20 257add31 2020-09-09 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
21 257add31 2020-09-09 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 257add31 2020-09-09 stsp */
23 257add31 2020-09-09 stsp
24 257add31 2020-09-09 stsp %{
25 257add31 2020-09-09 stsp #include <sys/types.h>
26 257add31 2020-09-09 stsp
27 257add31 2020-09-09 stsp #include <netdb.h>
28 257add31 2020-09-09 stsp
29 257add31 2020-09-09 stsp #include <ctype.h>
30 257add31 2020-09-09 stsp #include <err.h>
31 257add31 2020-09-09 stsp #include <errno.h>
32 257add31 2020-09-09 stsp #include <limits.h>
33 257add31 2020-09-09 stsp #include <stdarg.h>
34 257add31 2020-09-09 stsp #include <stdio.h>
35 8de9818a 2020-09-14 naddy #include <stdlib.h>
36 257add31 2020-09-09 stsp #include <string.h>
37 257add31 2020-09-09 stsp
38 dd038bc6 2021-09-21 thomas.ad #include "got_compat.h"
39 dd038bc6 2021-09-21 thomas.ad
40 257add31 2020-09-09 stsp #include "got_error.h"
41 257add31 2020-09-09 stsp #include "gotconfig.h"
42 257add31 2020-09-09 stsp
43 257add31 2020-09-09 stsp static struct file {
44 257add31 2020-09-09 stsp FILE *stream;
45 257add31 2020-09-09 stsp const char *name;
46 257add31 2020-09-09 stsp size_t ungetpos;
47 257add31 2020-09-09 stsp size_t ungetsize;
48 257add31 2020-09-09 stsp u_char *ungetbuf;
49 257add31 2020-09-09 stsp int eof_reached;
50 257add31 2020-09-09 stsp int lineno;
51 257add31 2020-09-09 stsp } *file;
52 257add31 2020-09-09 stsp static const struct got_error* newfile(struct file**, const char *, int *);
53 257add31 2020-09-09 stsp static void closefile(struct file *);
54 257add31 2020-09-09 stsp int yyparse(void);
55 257add31 2020-09-09 stsp int yylex(void);
56 257add31 2020-09-09 stsp int yyerror(const char *, ...)
57 257add31 2020-09-09 stsp __attribute__((__format__ (printf, 1, 2)))
58 257add31 2020-09-09 stsp __attribute__((__nonnull__ (1)));
59 257add31 2020-09-09 stsp int kw_cmp(const void *, const void *);
60 257add31 2020-09-09 stsp int lookup(char *);
61 257add31 2020-09-09 stsp int igetc(void);
62 257add31 2020-09-09 stsp int lgetc(int);
63 257add31 2020-09-09 stsp void lungetc(int);
64 257add31 2020-09-09 stsp int findeol(void);
65 257add31 2020-09-09 stsp static int parseport(char *, long long *);
66 257add31 2020-09-09 stsp
67 257add31 2020-09-09 stsp TAILQ_HEAD(symhead, sym) symhead = TAILQ_HEAD_INITIALIZER(symhead);
68 257add31 2020-09-09 stsp struct sym {
69 257add31 2020-09-09 stsp TAILQ_ENTRY(sym) entry;
70 257add31 2020-09-09 stsp int used;
71 257add31 2020-09-09 stsp int persist;
72 257add31 2020-09-09 stsp char *nam;
73 257add31 2020-09-09 stsp char *val;
74 257add31 2020-09-09 stsp };
75 257add31 2020-09-09 stsp
76 257add31 2020-09-09 stsp int symset(const char *, const char *, int);
77 ef20f542 2022-06-26 thomas int cmdline_symset(char *);
78 257add31 2020-09-09 stsp char *symget(const char *);
79 257add31 2020-09-09 stsp
80 257add31 2020-09-09 stsp static int atoul(char *, u_long *);
81 257add31 2020-09-09 stsp
82 257add31 2020-09-09 stsp static const struct got_error* gerror;
83 257add31 2020-09-09 stsp static struct gotconfig_remote_repo *remote;
84 257add31 2020-09-09 stsp static struct gotconfig gotconfig;
85 257add31 2020-09-09 stsp static const struct got_error* new_remote(struct gotconfig_remote_repo **);
86 aaf30ee7 2021-08-29 stsp static const struct got_error* new_fetch_config(struct fetch_config **);
87 aaf30ee7 2021-08-29 stsp static const struct got_error* new_send_config(struct send_config **);
88 257add31 2020-09-09 stsp
89 257add31 2020-09-09 stsp typedef struct {
90 257add31 2020-09-09 stsp union {
91 1367695b 2020-09-26 naddy long long number;
92 257add31 2020-09-09 stsp char *string;
93 b8adfa55 2020-09-25 stsp struct node_branch *branch;
94 99495ddb 2021-01-10 stsp struct node_ref *ref;
95 257add31 2020-09-09 stsp } v;
96 257add31 2020-09-09 stsp int lineno;
97 257add31 2020-09-09 stsp } YYSTYPE;
98 257add31 2020-09-09 stsp
99 81e077a6 2022-03-08 thomas #if defined(__APPLE__) && !defined(YYSTYPE)
100 81e077a6 2022-03-08 thomas #warning "Setting YYSTYPE - is GNU Bison installed?"
101 81e077a6 2022-03-08 thomas #define YYSTYPE YYSTYPE
102 81e077a6 2022-03-08 thomas #endif
103 257add31 2020-09-09 stsp %}
104 257add31 2020-09-09 stsp
105 257add31 2020-09-09 stsp %token ERROR
106 b8adfa55 2020-09-25 stsp %token REMOTE REPOSITORY SERVER PORT PROTOCOL MIRROR_REFERENCES BRANCH
107 871bd038 2022-07-03 thomas %token AUTHOR ALLOWED_SIGNERS REVOKED_SIGNERS FETCH_ALL_BRANCHES REFERENCE
108 871bd038 2022-07-03 thomas %token FETCH SEND
109 257add31 2020-09-09 stsp %token <v.string> STRING
110 257add31 2020-09-09 stsp %token <v.number> NUMBER
111 257add31 2020-09-09 stsp %type <v.number> boolean portplain
112 257add31 2020-09-09 stsp %type <v.string> numberstring
113 b8adfa55 2020-09-25 stsp %type <v.branch> branch xbranch branch_list
114 99495ddb 2021-01-10 stsp %type <v.ref> ref xref ref_list
115 257add31 2020-09-09 stsp
116 257add31 2020-09-09 stsp %%
117 257add31 2020-09-09 stsp
118 257add31 2020-09-09 stsp grammar : /* empty */
119 257add31 2020-09-09 stsp | grammar '\n'
120 257add31 2020-09-09 stsp | grammar author '\n'
121 257add31 2020-09-09 stsp | grammar remote '\n'
122 871bd038 2022-07-03 thomas | grammar allowed_signers '\n'
123 aef4f7ae 2022-07-04 thomas | grammar revoked_signers '\n'
124 257add31 2020-09-09 stsp ;
125 257add31 2020-09-09 stsp boolean : STRING {
126 257add31 2020-09-09 stsp if (strcasecmp($1, "true") == 0 ||
127 257add31 2020-09-09 stsp strcasecmp($1, "yes") == 0)
128 257add31 2020-09-09 stsp $$ = 1;
129 257add31 2020-09-09 stsp else if (strcasecmp($1, "false") == 0 ||
130 257add31 2020-09-09 stsp strcasecmp($1, "no") == 0)
131 257add31 2020-09-09 stsp $$ = 0;
132 257add31 2020-09-09 stsp else {
133 257add31 2020-09-09 stsp yyerror("invalid boolean value '%s'", $1);
134 257add31 2020-09-09 stsp free($1);
135 257add31 2020-09-09 stsp YYERROR;
136 257add31 2020-09-09 stsp }
137 257add31 2020-09-09 stsp free($1);
138 257add31 2020-09-09 stsp }
139 257add31 2020-09-09 stsp ;
140 257add31 2020-09-09 stsp numberstring : NUMBER {
141 257add31 2020-09-09 stsp char *s;
142 257add31 2020-09-09 stsp if (asprintf(&s, "%lld", $1) == -1) {
143 257add31 2020-09-09 stsp yyerror("string: asprintf");
144 257add31 2020-09-09 stsp YYERROR;
145 257add31 2020-09-09 stsp }
146 257add31 2020-09-09 stsp $$ = s;
147 257add31 2020-09-09 stsp }
148 257add31 2020-09-09 stsp | STRING
149 257add31 2020-09-09 stsp ;
150 257add31 2020-09-09 stsp portplain : numberstring {
151 257add31 2020-09-09 stsp if (parseport($1, &$$) == -1) {
152 257add31 2020-09-09 stsp free($1);
153 257add31 2020-09-09 stsp YYERROR;
154 257add31 2020-09-09 stsp }
155 257add31 2020-09-09 stsp free($1);
156 b8adfa55 2020-09-25 stsp }
157 b8adfa55 2020-09-25 stsp ;
158 b8adfa55 2020-09-25 stsp branch : /* empty */ { $$ = NULL; }
159 b8adfa55 2020-09-25 stsp | xbranch { $$ = $1; }
160 b8adfa55 2020-09-25 stsp | '{' optnl branch_list '}' { $$ = $3; }
161 b8adfa55 2020-09-25 stsp ;
162 b8adfa55 2020-09-25 stsp xbranch : STRING {
163 b8adfa55 2020-09-25 stsp $$ = calloc(1, sizeof(struct node_branch));
164 b8adfa55 2020-09-25 stsp if ($$ == NULL) {
165 b8adfa55 2020-09-25 stsp yyerror("calloc");
166 b8adfa55 2020-09-25 stsp YYERROR;
167 b8adfa55 2020-09-25 stsp }
168 b8adfa55 2020-09-25 stsp $$->branch_name = $1;
169 b8adfa55 2020-09-25 stsp $$->tail = $$;
170 b8adfa55 2020-09-25 stsp }
171 b8adfa55 2020-09-25 stsp ;
172 b8adfa55 2020-09-25 stsp branch_list : xbranch optnl { $$ = $1; }
173 b8adfa55 2020-09-25 stsp | branch_list comma xbranch optnl {
174 b8adfa55 2020-09-25 stsp $1->tail->next = $3;
175 b8adfa55 2020-09-25 stsp $1->tail = $3;
176 b8adfa55 2020-09-25 stsp $$ = $1;
177 257add31 2020-09-09 stsp }
178 257add31 2020-09-09 stsp ;
179 99495ddb 2021-01-10 stsp ref : /* empty */ { $$ = NULL; }
180 99495ddb 2021-01-10 stsp | xref { $$ = $1; }
181 99495ddb 2021-01-10 stsp | '{' optnl ref_list '}' { $$ = $3; }
182 99495ddb 2021-01-10 stsp ;
183 99495ddb 2021-01-10 stsp xref : STRING {
184 99495ddb 2021-01-10 stsp $$ = calloc(1, sizeof(struct node_ref));
185 99495ddb 2021-01-10 stsp if ($$ == NULL) {
186 99495ddb 2021-01-10 stsp yyerror("calloc");
187 99495ddb 2021-01-10 stsp YYERROR;
188 99495ddb 2021-01-10 stsp }
189 99495ddb 2021-01-10 stsp $$->ref_name = $1;
190 99495ddb 2021-01-10 stsp $$->tail = $$;
191 99495ddb 2021-01-10 stsp }
192 99495ddb 2021-01-10 stsp ;
193 99495ddb 2021-01-10 stsp ref_list : xref optnl { $$ = $1; }
194 99495ddb 2021-01-10 stsp | ref_list comma xref optnl {
195 99495ddb 2021-01-10 stsp $1->tail->next = $3;
196 99495ddb 2021-01-10 stsp $1->tail = $3;
197 99495ddb 2021-01-10 stsp $$ = $1;
198 99495ddb 2021-01-10 stsp }
199 99495ddb 2021-01-10 stsp ;
200 257add31 2020-09-09 stsp remoteopts2 : remoteopts2 remoteopts1 nl
201 abc59930 2021-09-05 naddy | remoteopts1 optnl
202 257add31 2020-09-09 stsp ;
203 257add31 2020-09-09 stsp remoteopts1 : REPOSITORY STRING {
204 abc59930 2021-09-05 naddy remote->repository = $2;
205 257add31 2020-09-09 stsp }
206 abc59930 2021-09-05 naddy | SERVER STRING {
207 abc59930 2021-09-05 naddy remote->server = $2;
208 abc59930 2021-09-05 naddy }
209 257add31 2020-09-09 stsp | PROTOCOL STRING {
210 abc59930 2021-09-05 naddy remote->protocol = $2;
211 257add31 2020-09-09 stsp }
212 257add31 2020-09-09 stsp | MIRROR_REFERENCES boolean {
213 257add31 2020-09-09 stsp remote->mirror_references = $2;
214 0c8b29c5 2021-01-05 stsp }
215 0c8b29c5 2021-01-05 stsp | FETCH_ALL_BRANCHES boolean {
216 0c8b29c5 2021-01-05 stsp remote->fetch_all_branches = $2;
217 257add31 2020-09-09 stsp }
218 257add31 2020-09-09 stsp | PORT portplain {
219 257add31 2020-09-09 stsp remote->port = $2;
220 b8adfa55 2020-09-25 stsp }
221 b8adfa55 2020-09-25 stsp | BRANCH branch {
222 b8adfa55 2020-09-25 stsp remote->branch = $2;
223 99495ddb 2021-01-10 stsp }
224 99495ddb 2021-01-10 stsp | REFERENCE ref {
225 6480c871 2021-08-30 stsp remote->fetch_ref = $2;
226 cfd92333 2021-08-27 tracey }
227 0ff2bf46 2021-08-27 tracey | FETCH {
228 0ff2bf46 2021-08-27 tracey static const struct got_error* error;
229 0ff2bf46 2021-08-27 tracey
230 aaf30ee7 2021-08-29 stsp if (remote->fetch_config != NULL) {
231 0ff2bf46 2021-08-27 tracey yyerror("fetch block already exists");
232 0ff2bf46 2021-08-27 tracey YYERROR;
233 0ff2bf46 2021-08-27 tracey }
234 aaf30ee7 2021-08-29 stsp error = new_fetch_config(&remote->fetch_config);
235 0ff2bf46 2021-08-27 tracey if (error) {
236 0ff2bf46 2021-08-27 tracey yyerror("%s", error->msg);
237 0ff2bf46 2021-08-27 tracey YYERROR;
238 0ff2bf46 2021-08-27 tracey }
239 f08eaca0 2021-08-30 tracey } '{' optnl fetchempty '}'
240 0ff2bf46 2021-08-27 tracey | SEND {
241 0ff2bf46 2021-08-27 tracey static const struct got_error* error;
242 0ff2bf46 2021-08-27 tracey
243 aaf30ee7 2021-08-29 stsp if (remote->send_config != NULL) {
244 0ff2bf46 2021-08-27 tracey yyerror("send block already exists");
245 0ff2bf46 2021-08-27 tracey YYERROR;
246 0ff2bf46 2021-08-27 tracey }
247 aaf30ee7 2021-08-29 stsp error = new_send_config(&remote->send_config);
248 0ff2bf46 2021-08-27 tracey if (error) {
249 0ff2bf46 2021-08-27 tracey yyerror("%s", error->msg);
250 0ff2bf46 2021-08-27 tracey YYERROR;
251 0ff2bf46 2021-08-27 tracey }
252 f08eaca0 2021-08-30 tracey } '{' optnl sendempty '}'
253 abc59930 2021-09-05 naddy ;
254 f08eaca0 2021-08-30 tracey fetchempty : /* empty */
255 f08eaca0 2021-08-30 tracey | fetchopts2
256 f08eaca0 2021-08-30 tracey ;
257 cfd92333 2021-08-27 tracey fetchopts2 : fetchopts2 fetchopts1 nl
258 abc59930 2021-09-05 naddy | fetchopts1 optnl
259 cfd92333 2021-08-27 tracey ;
260 92952c0e 2021-08-30 stsp fetchopts1 : REPOSITORY STRING {
261 abc59930 2021-09-05 naddy remote->fetch_config->repository = $2;
262 abc59930 2021-09-05 naddy }
263 abc59930 2021-09-05 naddy | SERVER STRING {
264 abc59930 2021-09-05 naddy remote->fetch_config->server = $2;
265 cfd92333 2021-08-27 tracey }
266 cfd92333 2021-08-27 tracey | PROTOCOL STRING {
267 abc59930 2021-09-05 naddy remote->fetch_config->protocol = $2;
268 cfd92333 2021-08-27 tracey }
269 cfd92333 2021-08-27 tracey | PORT portplain {
270 aaf30ee7 2021-08-29 stsp remote->fetch_config->port = $2;
271 cfd92333 2021-08-27 tracey }
272 cfd92333 2021-08-27 tracey | BRANCH branch {
273 aaf30ee7 2021-08-29 stsp remote->fetch_config->branch = $2;
274 cfd92333 2021-08-27 tracey }
275 abc59930 2021-09-05 naddy ;
276 f08eaca0 2021-08-30 tracey sendempty : /* empty */
277 f08eaca0 2021-08-30 tracey | sendopts2
278 f08eaca0 2021-08-30 tracey ;
279 cfd92333 2021-08-27 tracey sendopts2 : sendopts2 sendopts1 nl
280 abc59930 2021-09-05 naddy | sendopts1 optnl
281 cfd92333 2021-08-27 tracey ;
282 92952c0e 2021-08-30 stsp sendopts1 : REPOSITORY STRING {
283 abc59930 2021-09-05 naddy remote->send_config->repository = $2;
284 257add31 2020-09-09 stsp }
285 abc59930 2021-09-05 naddy | SERVER STRING {
286 abc59930 2021-09-05 naddy remote->send_config->server = $2;
287 abc59930 2021-09-05 naddy }
288 cfd92333 2021-08-27 tracey | PROTOCOL STRING {
289 abc59930 2021-09-05 naddy remote->send_config->protocol = $2;
290 cfd92333 2021-08-27 tracey }
291 cfd92333 2021-08-27 tracey | PORT portplain {
292 aaf30ee7 2021-08-29 stsp remote->send_config->port = $2;
293 cfd92333 2021-08-27 tracey }
294 cfd92333 2021-08-27 tracey | BRANCH branch {
295 aaf30ee7 2021-08-29 stsp remote->send_config->branch = $2;
296 cfd92333 2021-08-27 tracey }
297 abc59930 2021-09-05 naddy ;
298 257add31 2020-09-09 stsp remote : REMOTE STRING {
299 257add31 2020-09-09 stsp static const struct got_error* error;
300 257add31 2020-09-09 stsp
301 257add31 2020-09-09 stsp error = new_remote(&remote);
302 257add31 2020-09-09 stsp if (error) {
303 257add31 2020-09-09 stsp free($2);
304 257add31 2020-09-09 stsp yyerror("%s", error->msg);
305 257add31 2020-09-09 stsp YYERROR;
306 257add31 2020-09-09 stsp }
307 c2d7bc3f 2021-08-31 stsp remote->name = $2;
308 257add31 2020-09-09 stsp } '{' optnl remoteopts2 '}' {
309 257add31 2020-09-09 stsp TAILQ_INSERT_TAIL(&gotconfig.remotes, remote, entry);
310 257add31 2020-09-09 stsp gotconfig.nremotes++;
311 257add31 2020-09-09 stsp }
312 257add31 2020-09-09 stsp ;
313 257add31 2020-09-09 stsp author : AUTHOR STRING {
314 abc59930 2021-09-05 naddy gotconfig.author = $2;
315 871bd038 2022-07-03 thomas }
316 871bd038 2022-07-03 thomas ;
317 871bd038 2022-07-03 thomas allowed_signers : ALLOWED_SIGNERS STRING {
318 871bd038 2022-07-03 thomas gotconfig.allowed_signers_file = $2;
319 871bd038 2022-07-03 thomas }
320 871bd038 2022-07-03 thomas ;
321 871bd038 2022-07-03 thomas revoked_signers : REVOKED_SIGNERS STRING {
322 871bd038 2022-07-03 thomas gotconfig.revoked_signers_file = $2;
323 257add31 2020-09-09 stsp }
324 257add31 2020-09-09 stsp ;
325 257add31 2020-09-09 stsp optnl : '\n' optnl
326 257add31 2020-09-09 stsp | /* empty */
327 257add31 2020-09-09 stsp ;
328 257add31 2020-09-09 stsp nl : '\n' optnl
329 b8adfa55 2020-09-25 stsp ;
330 b8adfa55 2020-09-25 stsp comma : ','
331 b8adfa55 2020-09-25 stsp | /* empty */
332 257add31 2020-09-09 stsp ;
333 257add31 2020-09-09 stsp %%
334 257add31 2020-09-09 stsp
335 257add31 2020-09-09 stsp struct keywords {
336 257add31 2020-09-09 stsp const char *k_name;
337 257add31 2020-09-09 stsp int k_val;
338 257add31 2020-09-09 stsp };
339 257add31 2020-09-09 stsp
340 257add31 2020-09-09 stsp int
341 257add31 2020-09-09 stsp yyerror(const char *fmt, ...)
342 257add31 2020-09-09 stsp {
343 257add31 2020-09-09 stsp va_list ap;
344 257add31 2020-09-09 stsp char *msg;
345 257add31 2020-09-09 stsp char *err = NULL;
346 257add31 2020-09-09 stsp
347 257add31 2020-09-09 stsp va_start(ap, fmt);
348 257add31 2020-09-09 stsp if (vasprintf(&msg, fmt, ap) == -1) {
349 257add31 2020-09-09 stsp gerror = got_error_from_errno("vasprintf");
350 257add31 2020-09-09 stsp return 0;
351 257add31 2020-09-09 stsp }
352 257add31 2020-09-09 stsp va_end(ap);
353 257add31 2020-09-09 stsp if (asprintf(&err, "%s: line %d: %s", file->name, yylval.lineno,
354 257add31 2020-09-09 stsp msg) == -1) {
355 257add31 2020-09-09 stsp gerror = got_error_from_errno("asprintf");
356 257add31 2020-09-09 stsp return(0);
357 257add31 2020-09-09 stsp }
358 c2d7bc3f 2021-08-31 stsp gerror = got_error_msg(GOT_ERR_PARSE_CONFIG, err);
359 257add31 2020-09-09 stsp free(msg);
360 257add31 2020-09-09 stsp return(0);
361 257add31 2020-09-09 stsp }
362 257add31 2020-09-09 stsp int
363 257add31 2020-09-09 stsp kw_cmp(const void *k, const void *e)
364 257add31 2020-09-09 stsp {
365 257add31 2020-09-09 stsp return (strcmp(k, ((const struct keywords *)e)->k_name));
366 257add31 2020-09-09 stsp }
367 257add31 2020-09-09 stsp
368 257add31 2020-09-09 stsp int
369 257add31 2020-09-09 stsp lookup(char *s)
370 257add31 2020-09-09 stsp {
371 257add31 2020-09-09 stsp /* This has to be sorted always. */
372 257add31 2020-09-09 stsp static const struct keywords keywords[] = {
373 871bd038 2022-07-03 thomas {"allowed_signers", ALLOWED_SIGNERS},
374 257add31 2020-09-09 stsp {"author", AUTHOR},
375 b8adfa55 2020-09-25 stsp {"branch", BRANCH},
376 cfd92333 2021-08-27 tracey {"fetch", FETCH},
377 25eb5847 2022-07-03 thomas {"fetch-all-branches", FETCH_ALL_BRANCHES}, /* deprecated */
378 25eb5847 2022-07-03 thomas {"fetch_all_branches", FETCH_ALL_BRANCHES},
379 459c9b5d 2022-07-03 thomas {"mirror-references", MIRROR_REFERENCES}, /* deprecated */
380 459c9b5d 2022-07-03 thomas {"mirror_references", MIRROR_REFERENCES},
381 257add31 2020-09-09 stsp {"port", PORT},
382 257add31 2020-09-09 stsp {"protocol", PROTOCOL},
383 99495ddb 2021-01-10 stsp {"reference", REFERENCE},
384 257add31 2020-09-09 stsp {"remote", REMOTE},
385 257add31 2020-09-09 stsp {"repository", REPOSITORY},
386 871bd038 2022-07-03 thomas {"revoked_signers", REVOKED_SIGNERS},
387 cfd92333 2021-08-27 tracey {"send", SEND},
388 257add31 2020-09-09 stsp {"server", SERVER},
389 257add31 2020-09-09 stsp };
390 257add31 2020-09-09 stsp const struct keywords *p;
391 257add31 2020-09-09 stsp
392 257add31 2020-09-09 stsp p = bsearch(s, keywords, sizeof(keywords)/sizeof(keywords[0]),
393 257add31 2020-09-09 stsp sizeof(keywords[0]), kw_cmp);
394 257add31 2020-09-09 stsp
395 257add31 2020-09-09 stsp if (p)
396 257add31 2020-09-09 stsp return (p->k_val);
397 257add31 2020-09-09 stsp else
398 257add31 2020-09-09 stsp return (STRING);
399 257add31 2020-09-09 stsp }
400 257add31 2020-09-09 stsp
401 257add31 2020-09-09 stsp #define START_EXPAND 1
402 257add31 2020-09-09 stsp #define DONE_EXPAND 2
403 257add31 2020-09-09 stsp
404 257add31 2020-09-09 stsp static int expanding;
405 257add31 2020-09-09 stsp
406 257add31 2020-09-09 stsp int
407 257add31 2020-09-09 stsp igetc(void)
408 257add31 2020-09-09 stsp {
409 257add31 2020-09-09 stsp int c;
410 257add31 2020-09-09 stsp
411 257add31 2020-09-09 stsp while (1) {
412 257add31 2020-09-09 stsp if (file->ungetpos > 0)
413 257add31 2020-09-09 stsp c = file->ungetbuf[--file->ungetpos];
414 257add31 2020-09-09 stsp else
415 257add31 2020-09-09 stsp c = getc(file->stream);
416 257add31 2020-09-09 stsp
417 257add31 2020-09-09 stsp if (c == START_EXPAND)
418 257add31 2020-09-09 stsp expanding = 1;
419 257add31 2020-09-09 stsp else if (c == DONE_EXPAND)
420 257add31 2020-09-09 stsp expanding = 0;
421 257add31 2020-09-09 stsp else
422 257add31 2020-09-09 stsp break;
423 257add31 2020-09-09 stsp }
424 257add31 2020-09-09 stsp return (c);
425 257add31 2020-09-09 stsp }
426 257add31 2020-09-09 stsp
427 257add31 2020-09-09 stsp int
428 257add31 2020-09-09 stsp lgetc(int quotec)
429 257add31 2020-09-09 stsp {
430 257add31 2020-09-09 stsp int c, next;
431 257add31 2020-09-09 stsp
432 257add31 2020-09-09 stsp if (quotec) {
433 257add31 2020-09-09 stsp c = igetc();
434 257add31 2020-09-09 stsp if (c == EOF) {
435 257add31 2020-09-09 stsp yyerror("reached end of file while parsing "
436 257add31 2020-09-09 stsp "quoted string");
437 257add31 2020-09-09 stsp }
438 257add31 2020-09-09 stsp return (c);
439 257add31 2020-09-09 stsp }
440 257add31 2020-09-09 stsp
441 257add31 2020-09-09 stsp c = igetc();
442 257add31 2020-09-09 stsp while (c == '\\') {
443 257add31 2020-09-09 stsp next = igetc();
444 257add31 2020-09-09 stsp if (next != '\n') {
445 257add31 2020-09-09 stsp c = next;
446 257add31 2020-09-09 stsp break;
447 257add31 2020-09-09 stsp }
448 257add31 2020-09-09 stsp yylval.lineno = file->lineno;
449 257add31 2020-09-09 stsp file->lineno++;
450 257add31 2020-09-09 stsp }
451 257add31 2020-09-09 stsp
452 257add31 2020-09-09 stsp return (c);
453 257add31 2020-09-09 stsp }
454 257add31 2020-09-09 stsp
455 257add31 2020-09-09 stsp void
456 257add31 2020-09-09 stsp lungetc(int c)
457 257add31 2020-09-09 stsp {
458 257add31 2020-09-09 stsp if (c == EOF)
459 257add31 2020-09-09 stsp return;
460 257add31 2020-09-09 stsp
461 257add31 2020-09-09 stsp if (file->ungetpos >= file->ungetsize) {
462 257add31 2020-09-09 stsp void *p = reallocarray(file->ungetbuf, file->ungetsize, 2);
463 257add31 2020-09-09 stsp if (p == NULL)
464 257add31 2020-09-09 stsp err(1, "%s", __func__);
465 257add31 2020-09-09 stsp file->ungetbuf = p;
466 257add31 2020-09-09 stsp file->ungetsize *= 2;
467 257add31 2020-09-09 stsp }
468 257add31 2020-09-09 stsp file->ungetbuf[file->ungetpos++] = c;
469 257add31 2020-09-09 stsp }
470 257add31 2020-09-09 stsp
471 257add31 2020-09-09 stsp int
472 257add31 2020-09-09 stsp findeol(void)
473 257add31 2020-09-09 stsp {
474 257add31 2020-09-09 stsp int c;
475 257add31 2020-09-09 stsp
476 257add31 2020-09-09 stsp /* Skip to either EOF or the first real EOL. */
477 257add31 2020-09-09 stsp while (1) {
478 257add31 2020-09-09 stsp c = lgetc(0);
479 257add31 2020-09-09 stsp if (c == '\n') {
480 257add31 2020-09-09 stsp file->lineno++;
481 257add31 2020-09-09 stsp break;
482 257add31 2020-09-09 stsp }
483 257add31 2020-09-09 stsp if (c == EOF)
484 257add31 2020-09-09 stsp break;
485 257add31 2020-09-09 stsp }
486 257add31 2020-09-09 stsp return (ERROR);
487 257add31 2020-09-09 stsp }
488 257add31 2020-09-09 stsp
489 257add31 2020-09-09 stsp static long long
490 257add31 2020-09-09 stsp getservice(char *n)
491 257add31 2020-09-09 stsp {
492 257add31 2020-09-09 stsp struct servent *s;
493 257add31 2020-09-09 stsp u_long ulval;
494 257add31 2020-09-09 stsp
495 257add31 2020-09-09 stsp if (atoul(n, &ulval) == 0) {
496 7c84ef07 2021-08-29 stsp if (ulval == 0 || ulval > 65535) {
497 257add31 2020-09-09 stsp yyerror("illegal port value %lu", ulval);
498 257add31 2020-09-09 stsp return (-1);
499 257add31 2020-09-09 stsp }
500 257add31 2020-09-09 stsp return ulval;
501 257add31 2020-09-09 stsp } else {
502 257add31 2020-09-09 stsp s = getservbyname(n, "tcp");
503 257add31 2020-09-09 stsp if (s == NULL)
504 257add31 2020-09-09 stsp s = getservbyname(n, "udp");
505 257add31 2020-09-09 stsp if (s == NULL) {
506 257add31 2020-09-09 stsp yyerror("unknown port %s", n);
507 257add31 2020-09-09 stsp return (-1);
508 257add31 2020-09-09 stsp }
509 257add31 2020-09-09 stsp return (s->s_port);
510 257add31 2020-09-09 stsp }
511 257add31 2020-09-09 stsp }
512 257add31 2020-09-09 stsp
513 257add31 2020-09-09 stsp static int
514 257add31 2020-09-09 stsp parseport(char *port, long long *pn)
515 257add31 2020-09-09 stsp {
516 257add31 2020-09-09 stsp if ((*pn = getservice(port)) == -1) {
517 257add31 2020-09-09 stsp *pn = 0LL;
518 257add31 2020-09-09 stsp return (-1);
519 257add31 2020-09-09 stsp }
520 257add31 2020-09-09 stsp return (0);
521 257add31 2020-09-09 stsp }
522 257add31 2020-09-09 stsp
523 257add31 2020-09-09 stsp
524 257add31 2020-09-09 stsp int
525 257add31 2020-09-09 stsp yylex(void)
526 257add31 2020-09-09 stsp {
527 1a670123 2021-09-28 thomas char buf[8096];
528 1a670123 2021-09-28 thomas char *p, *val;
529 1a670123 2021-09-28 thomas int quotec, next, c;
530 1a670123 2021-09-28 thomas int token;
531 257add31 2020-09-09 stsp
532 257add31 2020-09-09 stsp top:
533 257add31 2020-09-09 stsp p = buf;
534 257add31 2020-09-09 stsp c = lgetc(0);
535 257add31 2020-09-09 stsp while (c == ' ' || c == '\t')
536 257add31 2020-09-09 stsp c = lgetc(0); /* nothing */
537 257add31 2020-09-09 stsp
538 257add31 2020-09-09 stsp yylval.lineno = file->lineno;
539 257add31 2020-09-09 stsp if (c == '#') {
540 257add31 2020-09-09 stsp c = lgetc(0);
541 257add31 2020-09-09 stsp while (c != '\n' && c != EOF)
542 257add31 2020-09-09 stsp c = lgetc(0); /* nothing */
543 257add31 2020-09-09 stsp }
544 257add31 2020-09-09 stsp if (c == '$' && !expanding) {
545 257add31 2020-09-09 stsp while (1) {
546 257add31 2020-09-09 stsp c = lgetc(0);
547 257add31 2020-09-09 stsp if (c == EOF)
548 257add31 2020-09-09 stsp return (0);
549 257add31 2020-09-09 stsp
550 257add31 2020-09-09 stsp if (p + 1 >= buf + sizeof(buf) - 1) {
551 257add31 2020-09-09 stsp yyerror("string too long");
552 257add31 2020-09-09 stsp return (findeol());
553 257add31 2020-09-09 stsp }
554 257add31 2020-09-09 stsp if (isalnum(c) || c == '_') {
555 257add31 2020-09-09 stsp *p++ = c;
556 257add31 2020-09-09 stsp continue;
557 257add31 2020-09-09 stsp }
558 257add31 2020-09-09 stsp *p = '\0';
559 257add31 2020-09-09 stsp lungetc(c);
560 257add31 2020-09-09 stsp break;
561 257add31 2020-09-09 stsp }
562 257add31 2020-09-09 stsp val = symget(buf);
563 257add31 2020-09-09 stsp if (val == NULL) {
564 257add31 2020-09-09 stsp yyerror("macro '%s' not defined", buf);
565 257add31 2020-09-09 stsp return (findeol());
566 257add31 2020-09-09 stsp }
567 257add31 2020-09-09 stsp p = val + strlen(val) - 1;
568 257add31 2020-09-09 stsp lungetc(DONE_EXPAND);
569 257add31 2020-09-09 stsp while (p >= val) {
570 bb27d0d1 2021-10-15 thomas lungetc((unsigned char)*p);
571 257add31 2020-09-09 stsp p--;
572 257add31 2020-09-09 stsp }
573 257add31 2020-09-09 stsp lungetc(START_EXPAND);
574 257add31 2020-09-09 stsp goto top;
575 257add31 2020-09-09 stsp }
576 257add31 2020-09-09 stsp
577 257add31 2020-09-09 stsp switch (c) {
578 257add31 2020-09-09 stsp case '\'':
579 257add31 2020-09-09 stsp case '"':
580 257add31 2020-09-09 stsp quotec = c;
581 257add31 2020-09-09 stsp while (1) {
582 257add31 2020-09-09 stsp c = lgetc(quotec);
583 257add31 2020-09-09 stsp if (c == EOF)
584 257add31 2020-09-09 stsp return (0);
585 257add31 2020-09-09 stsp if (c == '\n') {
586 257add31 2020-09-09 stsp file->lineno++;
587 257add31 2020-09-09 stsp continue;
588 257add31 2020-09-09 stsp } else if (c == '\\') {
589 257add31 2020-09-09 stsp next = lgetc(quotec);
590 257add31 2020-09-09 stsp if (next == EOF)
591 257add31 2020-09-09 stsp return (0);
592 257add31 2020-09-09 stsp if (next == quotec || c == ' ' || c == '\t')
593 257add31 2020-09-09 stsp c = next;
594 257add31 2020-09-09 stsp else if (next == '\n') {
595 257add31 2020-09-09 stsp file->lineno++;
596 257add31 2020-09-09 stsp continue;
597 257add31 2020-09-09 stsp } else
598 257add31 2020-09-09 stsp lungetc(next);
599 257add31 2020-09-09 stsp } else if (c == quotec) {
600 257add31 2020-09-09 stsp *p = '\0';
601 257add31 2020-09-09 stsp break;
602 257add31 2020-09-09 stsp } else if (c == '\0') {
603 257add31 2020-09-09 stsp yyerror("syntax error");
604 257add31 2020-09-09 stsp return (findeol());
605 257add31 2020-09-09 stsp }
606 257add31 2020-09-09 stsp if (p + 1 >= buf + sizeof(buf) - 1) {
607 257add31 2020-09-09 stsp yyerror("string too long");
608 257add31 2020-09-09 stsp return (findeol());
609 257add31 2020-09-09 stsp }
610 257add31 2020-09-09 stsp *p++ = c;
611 257add31 2020-09-09 stsp }
612 257add31 2020-09-09 stsp yylval.v.string = strdup(buf);
613 257add31 2020-09-09 stsp if (yylval.v.string == NULL)
614 257add31 2020-09-09 stsp err(1, "%s", __func__);
615 257add31 2020-09-09 stsp return (STRING);
616 257add31 2020-09-09 stsp }
617 257add31 2020-09-09 stsp
618 257add31 2020-09-09 stsp #define allowed_to_end_number(x) \
619 257add31 2020-09-09 stsp (isspace(x) || x == ')' || x ==',' || x == '/' || x == '}' || x == '=')
620 257add31 2020-09-09 stsp
621 257add31 2020-09-09 stsp if (c == '-' || isdigit(c)) {
622 257add31 2020-09-09 stsp do {
623 257add31 2020-09-09 stsp *p++ = c;
624 ccd081e7 2021-09-30 thomas if ((size_t)(p-buf) >= sizeof(buf)) {
625 257add31 2020-09-09 stsp yyerror("string too long");
626 257add31 2020-09-09 stsp return (findeol());
627 257add31 2020-09-09 stsp }
628 257add31 2020-09-09 stsp c = lgetc(0);
629 257add31 2020-09-09 stsp } while (c != EOF && isdigit(c));
630 257add31 2020-09-09 stsp lungetc(c);
631 257add31 2020-09-09 stsp if (p == buf + 1 && buf[0] == '-')
632 257add31 2020-09-09 stsp goto nodigits;
633 257add31 2020-09-09 stsp if (c == EOF || allowed_to_end_number(c)) {
634 257add31 2020-09-09 stsp const char *errstr = NULL;
635 257add31 2020-09-09 stsp
636 257add31 2020-09-09 stsp *p = '\0';
637 257add31 2020-09-09 stsp yylval.v.number = strtonum(buf, LLONG_MIN,
638 257add31 2020-09-09 stsp LLONG_MAX, &errstr);
639 257add31 2020-09-09 stsp if (errstr) {
640 257add31 2020-09-09 stsp yyerror("\"%s\" invalid number: %s",
641 257add31 2020-09-09 stsp buf, errstr);
642 257add31 2020-09-09 stsp return (findeol());
643 257add31 2020-09-09 stsp }
644 257add31 2020-09-09 stsp return (NUMBER);
645 257add31 2020-09-09 stsp } else {
646 257add31 2020-09-09 stsp nodigits:
647 257add31 2020-09-09 stsp while (p > buf + 1)
648 bb27d0d1 2021-10-15 thomas lungetc((unsigned char)*--p);
649 bb27d0d1 2021-10-15 thomas c = (unsigned char)*--p;
650 257add31 2020-09-09 stsp if (c == '-')
651 257add31 2020-09-09 stsp return (c);
652 257add31 2020-09-09 stsp }
653 257add31 2020-09-09 stsp }
654 257add31 2020-09-09 stsp
655 257add31 2020-09-09 stsp #define allowed_in_string(x) \
656 257add31 2020-09-09 stsp (isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \
657 257add31 2020-09-09 stsp x != '{' && x != '}' && \
658 257add31 2020-09-09 stsp x != '!' && x != '=' && x != '#' && \
659 257add31 2020-09-09 stsp x != ','))
660 257add31 2020-09-09 stsp
661 257add31 2020-09-09 stsp if (isalnum(c) || c == ':' || c == '_') {
662 257add31 2020-09-09 stsp do {
663 257add31 2020-09-09 stsp *p++ = c;
664 ccd081e7 2021-09-30 thomas if ((size_t)(p-buf) >= sizeof(buf)) {
665 257add31 2020-09-09 stsp yyerror("string too long");
666 257add31 2020-09-09 stsp return (findeol());
667 257add31 2020-09-09 stsp }
668 257add31 2020-09-09 stsp c = lgetc(0);
669 257add31 2020-09-09 stsp } while (c != EOF && (allowed_in_string(c)));
670 257add31 2020-09-09 stsp lungetc(c);
671 257add31 2020-09-09 stsp *p = '\0';
672 257add31 2020-09-09 stsp token = lookup(buf);
673 257add31 2020-09-09 stsp if (token == STRING) {
674 257add31 2020-09-09 stsp yylval.v.string = strdup(buf);
675 257add31 2020-09-09 stsp if (yylval.v.string == NULL)
676 257add31 2020-09-09 stsp err(1, "%s", __func__);
677 257add31 2020-09-09 stsp }
678 257add31 2020-09-09 stsp return (token);
679 257add31 2020-09-09 stsp }
680 257add31 2020-09-09 stsp if (c == '\n') {
681 257add31 2020-09-09 stsp yylval.lineno = file->lineno;
682 257add31 2020-09-09 stsp file->lineno++;
683 257add31 2020-09-09 stsp }
684 257add31 2020-09-09 stsp if (c == EOF)
685 257add31 2020-09-09 stsp return (0);
686 257add31 2020-09-09 stsp return (c);
687 257add31 2020-09-09 stsp }
688 257add31 2020-09-09 stsp
689 257add31 2020-09-09 stsp static const struct got_error*
690 257add31 2020-09-09 stsp newfile(struct file **nfile, const char *filename, int *fd)
691 257add31 2020-09-09 stsp {
692 257add31 2020-09-09 stsp const struct got_error* error = NULL;
693 257add31 2020-09-09 stsp
694 257add31 2020-09-09 stsp (*nfile) = calloc(1, sizeof(struct file));
695 257add31 2020-09-09 stsp if ((*nfile) == NULL)
696 257add31 2020-09-09 stsp return got_error_from_errno("calloc");
697 257add31 2020-09-09 stsp (*nfile)->stream = fdopen(*fd, "r");
698 257add31 2020-09-09 stsp if ((*nfile)->stream == NULL) {
699 257add31 2020-09-09 stsp error = got_error_from_errno("fdopen");
700 257add31 2020-09-09 stsp free((*nfile));
701 257add31 2020-09-09 stsp return error;
702 257add31 2020-09-09 stsp }
703 257add31 2020-09-09 stsp *fd = -1; /* Stream owns the file descriptor now. */
704 257add31 2020-09-09 stsp (*nfile)->name = filename;
705 257add31 2020-09-09 stsp (*nfile)->lineno = 1;
706 257add31 2020-09-09 stsp (*nfile)->ungetsize = 16;
707 257add31 2020-09-09 stsp (*nfile)->ungetbuf = malloc((*nfile)->ungetsize);
708 257add31 2020-09-09 stsp if ((*nfile)->ungetbuf == NULL) {
709 257add31 2020-09-09 stsp error = got_error_from_errno("malloc");
710 257add31 2020-09-09 stsp fclose((*nfile)->stream);
711 257add31 2020-09-09 stsp free((*nfile));
712 257add31 2020-09-09 stsp return error;
713 257add31 2020-09-09 stsp }
714 257add31 2020-09-09 stsp return NULL;
715 257add31 2020-09-09 stsp }
716 257add31 2020-09-09 stsp
717 257add31 2020-09-09 stsp static const struct got_error*
718 257add31 2020-09-09 stsp new_remote(struct gotconfig_remote_repo **remote)
719 257add31 2020-09-09 stsp {
720 257add31 2020-09-09 stsp const struct got_error *error = NULL;
721 257add31 2020-09-09 stsp
722 257add31 2020-09-09 stsp *remote = calloc(1, sizeof(**remote));
723 257add31 2020-09-09 stsp if (*remote == NULL)
724 cfd92333 2021-08-27 tracey error = got_error_from_errno("calloc");
725 cfd92333 2021-08-27 tracey return error;
726 cfd92333 2021-08-27 tracey }
727 cfd92333 2021-08-27 tracey
728 cfd92333 2021-08-27 tracey static const struct got_error*
729 aaf30ee7 2021-08-29 stsp new_fetch_config(struct fetch_config **fetch_config)
730 cfd92333 2021-08-27 tracey {
731 cfd92333 2021-08-27 tracey const struct got_error *error = NULL;
732 cfd92333 2021-08-27 tracey
733 aaf30ee7 2021-08-29 stsp *fetch_config = calloc(1, sizeof(**fetch_config));
734 aaf30ee7 2021-08-29 stsp if (*fetch_config == NULL)
735 cfd92333 2021-08-27 tracey error = got_error_from_errno("calloc");
736 cfd92333 2021-08-27 tracey return error;
737 cfd92333 2021-08-27 tracey }
738 cfd92333 2021-08-27 tracey
739 cfd92333 2021-08-27 tracey static const struct got_error*
740 aaf30ee7 2021-08-29 stsp new_send_config(struct send_config **send_config)
741 cfd92333 2021-08-27 tracey {
742 cfd92333 2021-08-27 tracey const struct got_error *error = NULL;
743 cfd92333 2021-08-27 tracey
744 aaf30ee7 2021-08-29 stsp *send_config = calloc(1, sizeof(**send_config));
745 aaf30ee7 2021-08-29 stsp if (*send_config == NULL)
746 257add31 2020-09-09 stsp error = got_error_from_errno("calloc");
747 257add31 2020-09-09 stsp return error;
748 257add31 2020-09-09 stsp }
749 257add31 2020-09-09 stsp
750 257add31 2020-09-09 stsp static void
751 257add31 2020-09-09 stsp closefile(struct file *file)
752 257add31 2020-09-09 stsp {
753 257add31 2020-09-09 stsp fclose(file->stream);
754 257add31 2020-09-09 stsp free(file->ungetbuf);
755 257add31 2020-09-09 stsp free(file);
756 257add31 2020-09-09 stsp }
757 257add31 2020-09-09 stsp
758 257add31 2020-09-09 stsp const struct got_error *
759 257add31 2020-09-09 stsp gotconfig_parse(struct gotconfig **conf, const char *filename, int *fd)
760 257add31 2020-09-09 stsp {
761 257add31 2020-09-09 stsp const struct got_error *err = NULL;
762 257add31 2020-09-09 stsp struct sym *sym, *next;
763 257add31 2020-09-09 stsp
764 257add31 2020-09-09 stsp *conf = NULL;
765 257add31 2020-09-09 stsp
766 257add31 2020-09-09 stsp err = newfile(&file, filename, fd);
767 257add31 2020-09-09 stsp if (err)
768 257add31 2020-09-09 stsp return err;
769 257add31 2020-09-09 stsp
770 257add31 2020-09-09 stsp TAILQ_INIT(&gotconfig.remotes);
771 257add31 2020-09-09 stsp
772 257add31 2020-09-09 stsp yyparse();
773 257add31 2020-09-09 stsp closefile(file);
774 257add31 2020-09-09 stsp
775 257add31 2020-09-09 stsp /* Free macros and check which have not been used. */
776 257add31 2020-09-09 stsp TAILQ_FOREACH_SAFE(sym, &symhead, entry, next) {
777 257add31 2020-09-09 stsp if (!sym->persist) {
778 257add31 2020-09-09 stsp free(sym->nam);
779 257add31 2020-09-09 stsp free(sym->val);
780 257add31 2020-09-09 stsp TAILQ_REMOVE(&symhead, sym, entry);
781 257add31 2020-09-09 stsp free(sym);
782 257add31 2020-09-09 stsp }
783 257add31 2020-09-09 stsp }
784 257add31 2020-09-09 stsp
785 257add31 2020-09-09 stsp if (gerror == NULL)
786 257add31 2020-09-09 stsp *conf = &gotconfig;
787 257add31 2020-09-09 stsp return gerror;
788 257add31 2020-09-09 stsp }
789 257add31 2020-09-09 stsp
790 aaf30ee7 2021-08-29 stsp static void
791 aaf30ee7 2021-08-29 stsp free_fetch_config(struct fetch_config *fetch_config)
792 aaf30ee7 2021-08-29 stsp {
793 aaf30ee7 2021-08-29 stsp free(remote->fetch_config->repository);
794 aaf30ee7 2021-08-29 stsp free(remote->fetch_config->server);
795 aaf30ee7 2021-08-29 stsp free(remote->fetch_config->protocol);
796 aaf30ee7 2021-08-29 stsp free(remote->fetch_config);
797 aaf30ee7 2021-08-29 stsp }
798 aaf30ee7 2021-08-29 stsp
799 aaf30ee7 2021-08-29 stsp static void
800 aaf30ee7 2021-08-29 stsp free_send_config(struct send_config *send_config)
801 aaf30ee7 2021-08-29 stsp {
802 aaf30ee7 2021-08-29 stsp free(remote->send_config->repository);
803 aaf30ee7 2021-08-29 stsp free(remote->send_config->server);
804 aaf30ee7 2021-08-29 stsp free(remote->send_config->protocol);
805 aaf30ee7 2021-08-29 stsp free(remote->send_config);
806 aaf30ee7 2021-08-29 stsp }
807 aaf30ee7 2021-08-29 stsp
808 257add31 2020-09-09 stsp void
809 257add31 2020-09-09 stsp gotconfig_free(struct gotconfig *conf)
810 257add31 2020-09-09 stsp {
811 257add31 2020-09-09 stsp struct gotconfig_remote_repo *remote;
812 257add31 2020-09-09 stsp
813 257add31 2020-09-09 stsp free(conf->author);
814 871bd038 2022-07-03 thomas free(conf->allowed_signers_file);
815 871bd038 2022-07-03 thomas free(conf->revoked_signers_file);
816 257add31 2020-09-09 stsp while (!TAILQ_EMPTY(&conf->remotes)) {
817 257add31 2020-09-09 stsp remote = TAILQ_FIRST(&conf->remotes);
818 257add31 2020-09-09 stsp TAILQ_REMOVE(&conf->remotes, remote, entry);
819 aaf30ee7 2021-08-29 stsp if (remote->fetch_config != NULL)
820 aaf30ee7 2021-08-29 stsp free_fetch_config(remote->fetch_config);
821 aaf30ee7 2021-08-29 stsp if (remote->send_config != NULL)
822 aaf30ee7 2021-08-29 stsp free_send_config(remote->send_config);
823 257add31 2020-09-09 stsp free(remote->name);
824 257add31 2020-09-09 stsp free(remote->repository);
825 257add31 2020-09-09 stsp free(remote->server);
826 257add31 2020-09-09 stsp free(remote->protocol);
827 257add31 2020-09-09 stsp free(remote);
828 257add31 2020-09-09 stsp }
829 257add31 2020-09-09 stsp }
830 257add31 2020-09-09 stsp
831 257add31 2020-09-09 stsp int
832 257add31 2020-09-09 stsp symset(const char *nam, const char *val, int persist)
833 257add31 2020-09-09 stsp {
834 257add31 2020-09-09 stsp struct sym *sym;
835 257add31 2020-09-09 stsp
836 257add31 2020-09-09 stsp TAILQ_FOREACH(sym, &symhead, entry) {
837 257add31 2020-09-09 stsp if (strcmp(nam, sym->nam) == 0)
838 257add31 2020-09-09 stsp break;
839 257add31 2020-09-09 stsp }
840 257add31 2020-09-09 stsp
841 257add31 2020-09-09 stsp if (sym != NULL) {
842 257add31 2020-09-09 stsp if (sym->persist == 1)
843 257add31 2020-09-09 stsp return (0);
844 257add31 2020-09-09 stsp else {
845 257add31 2020-09-09 stsp free(sym->nam);
846 257add31 2020-09-09 stsp free(sym->val);
847 257add31 2020-09-09 stsp TAILQ_REMOVE(&symhead, sym, entry);
848 257add31 2020-09-09 stsp free(sym);
849 257add31 2020-09-09 stsp }
850 257add31 2020-09-09 stsp }
851 257add31 2020-09-09 stsp sym = calloc(1, sizeof(*sym));
852 257add31 2020-09-09 stsp if (sym == NULL)
853 257add31 2020-09-09 stsp return (-1);
854 257add31 2020-09-09 stsp
855 257add31 2020-09-09 stsp sym->nam = strdup(nam);
856 257add31 2020-09-09 stsp if (sym->nam == NULL) {
857 257add31 2020-09-09 stsp free(sym);
858 257add31 2020-09-09 stsp return (-1);
859 257add31 2020-09-09 stsp }
860 257add31 2020-09-09 stsp sym->val = strdup(val);
861 257add31 2020-09-09 stsp if (sym->val == NULL) {
862 257add31 2020-09-09 stsp free(sym->nam);
863 257add31 2020-09-09 stsp free(sym);
864 257add31 2020-09-09 stsp return (-1);
865 257add31 2020-09-09 stsp }
866 257add31 2020-09-09 stsp sym->used = 0;
867 257add31 2020-09-09 stsp sym->persist = persist;
868 257add31 2020-09-09 stsp TAILQ_INSERT_TAIL(&symhead, sym, entry);
869 257add31 2020-09-09 stsp return (0);
870 257add31 2020-09-09 stsp }
871 257add31 2020-09-09 stsp
872 257add31 2020-09-09 stsp int
873 257add31 2020-09-09 stsp cmdline_symset(char *s)
874 257add31 2020-09-09 stsp {
875 257add31 2020-09-09 stsp char *sym, *val;
876 257add31 2020-09-09 stsp int ret;
877 257add31 2020-09-09 stsp size_t len;
878 257add31 2020-09-09 stsp
879 257add31 2020-09-09 stsp val = strrchr(s, '=');
880 257add31 2020-09-09 stsp if (val == NULL)
881 257add31 2020-09-09 stsp return (-1);
882 257add31 2020-09-09 stsp
883 257add31 2020-09-09 stsp len = strlen(s) - strlen(val) + 1;
884 257add31 2020-09-09 stsp sym = malloc(len);
885 257add31 2020-09-09 stsp if (sym == NULL)
886 257add31 2020-09-09 stsp errx(1, "cmdline_symset: malloc");
887 257add31 2020-09-09 stsp
888 257add31 2020-09-09 stsp strlcpy(sym, s, len);
889 257add31 2020-09-09 stsp
890 257add31 2020-09-09 stsp ret = symset(sym, val + 1, 1);
891 257add31 2020-09-09 stsp free(sym);
892 257add31 2020-09-09 stsp
893 257add31 2020-09-09 stsp return (ret);
894 257add31 2020-09-09 stsp }
895 257add31 2020-09-09 stsp
896 257add31 2020-09-09 stsp char *
897 257add31 2020-09-09 stsp symget(const char *nam)
898 257add31 2020-09-09 stsp {
899 257add31 2020-09-09 stsp struct sym *sym;
900 257add31 2020-09-09 stsp
901 257add31 2020-09-09 stsp TAILQ_FOREACH(sym, &symhead, entry) {
902 257add31 2020-09-09 stsp if (strcmp(nam, sym->nam) == 0) {
903 257add31 2020-09-09 stsp sym->used = 1;
904 257add31 2020-09-09 stsp return (sym->val);
905 257add31 2020-09-09 stsp }
906 257add31 2020-09-09 stsp }
907 257add31 2020-09-09 stsp return (NULL);
908 257add31 2020-09-09 stsp }
909 257add31 2020-09-09 stsp
910 257add31 2020-09-09 stsp static int
911 257add31 2020-09-09 stsp atoul(char *s, u_long *ulvalp)
912 257add31 2020-09-09 stsp {
913 257add31 2020-09-09 stsp u_long ulval;
914 257add31 2020-09-09 stsp char *ep;
915 257add31 2020-09-09 stsp
916 257add31 2020-09-09 stsp errno = 0;
917 257add31 2020-09-09 stsp ulval = strtoul(s, &ep, 0);
918 257add31 2020-09-09 stsp if (s[0] == '\0' || *ep != '\0')
919 257add31 2020-09-09 stsp return (-1);
920 257add31 2020-09-09 stsp if (errno == ERANGE && ulval == ULONG_MAX)
921 257add31 2020-09-09 stsp return (-1);
922 257add31 2020-09-09 stsp *ulvalp = ulval;
923 257add31 2020-09-09 stsp return (0);
924 257add31 2020-09-09 stsp }