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