Blame


1 1d126e2d 2019-08-24 stsp /* $OpenBSD: conf.c,v 1.107 2017/10/27 08:29:32 mpi Exp $ */
2 1d126e2d 2019-08-24 stsp /* $EOM: conf.c,v 1.48 2000/12/04 02:04:29 angelos Exp $ */
3 1d126e2d 2019-08-24 stsp
4 1d126e2d 2019-08-24 stsp /*
5 1d126e2d 2019-08-24 stsp * Copyright (c) 1998, 1999, 2000, 2001 Niklas Hallqvist. All rights reserved.
6 4a1dd8cd 2023-02-10 op * Copyright (c) 2000, 2001, 2002 HÃ¥kan Olsson. All rights reserved.
7 1d126e2d 2019-08-24 stsp *
8 1d126e2d 2019-08-24 stsp * Redistribution and use in source and binary forms, with or without
9 1d126e2d 2019-08-24 stsp * modification, are permitted provided that the following conditions
10 1d126e2d 2019-08-24 stsp * are met:
11 1d126e2d 2019-08-24 stsp * 1. Redistributions of source code must retain the above copyright
12 1d126e2d 2019-08-24 stsp * notice, this list of conditions and the following disclaimer.
13 1d126e2d 2019-08-24 stsp * 2. Redistributions in binary form must reproduce the above copyright
14 1d126e2d 2019-08-24 stsp * notice, this list of conditions and the following disclaimer in the
15 1d126e2d 2019-08-24 stsp * documentation and/or other materials provided with the distribution.
16 1d126e2d 2019-08-24 stsp *
17 1d126e2d 2019-08-24 stsp * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 1d126e2d 2019-08-24 stsp * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 1d126e2d 2019-08-24 stsp * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 1d126e2d 2019-08-24 stsp * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 1d126e2d 2019-08-24 stsp * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 1d126e2d 2019-08-24 stsp * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 1d126e2d 2019-08-24 stsp * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 1d126e2d 2019-08-24 stsp * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 1d126e2d 2019-08-24 stsp * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 1d126e2d 2019-08-24 stsp * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 1d126e2d 2019-08-24 stsp */
28 1d126e2d 2019-08-24 stsp
29 1d126e2d 2019-08-24 stsp #include <sys/types.h>
30 1d126e2d 2019-08-24 stsp #include <sys/queue.h>
31 1d126e2d 2019-08-24 stsp #include <sys/stat.h>
32 1d126e2d 2019-08-24 stsp
33 1d126e2d 2019-08-24 stsp #include <ctype.h>
34 1d126e2d 2019-08-24 stsp #include <fcntl.h>
35 1d126e2d 2019-08-24 stsp #include <stdarg.h>
36 1d126e2d 2019-08-24 stsp #include <stdio.h>
37 1d126e2d 2019-08-24 stsp #include <stdlib.h>
38 1d126e2d 2019-08-24 stsp #include <string.h>
39 1d126e2d 2019-08-24 stsp #include <unistd.h>
40 1d126e2d 2019-08-24 stsp #include <errno.h>
41 1d126e2d 2019-08-24 stsp
42 1d126e2d 2019-08-24 stsp #include "got_error.h"
43 1d126e2d 2019-08-24 stsp
44 1d126e2d 2019-08-24 stsp #include "got_lib_gitconfig.h"
45 1d126e2d 2019-08-24 stsp
46 1d126e2d 2019-08-24 stsp #ifndef nitems
47 1d126e2d 2019-08-24 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
48 1d126e2d 2019-08-24 stsp #endif
49 1d126e2d 2019-08-24 stsp
50 1d126e2d 2019-08-24 stsp #define LOG_MISC 0
51 1d126e2d 2019-08-24 stsp #define LOG_REPORT 1
52 1d126e2d 2019-08-24 stsp #ifdef GITCONFIG_DEBUG
53 1d126e2d 2019-08-24 stsp #define LOG_DBG(x) log_debug x
54 1d126e2d 2019-08-24 stsp #else
55 1d126e2d 2019-08-24 stsp #define LOG_DBG(x)
56 1d126e2d 2019-08-24 stsp #endif
57 1d126e2d 2019-08-24 stsp
58 1dda2072 2023-02-21 op #define log_print(...) fprintf(stderr, __VA_ARGS__)
59 1dda2072 2023-02-21 op #define log_error(...) fprintf(stderr, __VA_ARGS__)
60 1d126e2d 2019-08-24 stsp
61 1d126e2d 2019-08-24 stsp #ifdef GITCONFIG_DEBUG
62 1d126e2d 2019-08-24 stsp static void
63 1d126e2d 2019-08-24 stsp log_debug(int cls, int level, const char *fmt, ...)
64 1d126e2d 2019-08-24 stsp {
65 1d126e2d 2019-08-24 stsp va_list ap;
66 1d126e2d 2019-08-24 stsp
67 1d126e2d 2019-08-24 stsp va_start(ap, fmt);
68 1d126e2d 2019-08-24 stsp vfprintf(stderr, fmt, ap);
69 1d126e2d 2019-08-24 stsp va_end(ap);
70 cd0aa8ca 2023-02-18 op putc('\n', stderr);
71 1d126e2d 2019-08-24 stsp }
72 1d126e2d 2019-08-24 stsp #endif
73 1d126e2d 2019-08-24 stsp
74 1d126e2d 2019-08-24 stsp struct got_gitconfig_trans {
75 1d126e2d 2019-08-24 stsp TAILQ_ENTRY(got_gitconfig_trans) link;
76 1d126e2d 2019-08-24 stsp int trans;
77 1d126e2d 2019-08-24 stsp enum got_gitconfig_op {
78 1d126e2d 2019-08-24 stsp CONF_SET, CONF_REMOVE, CONF_REMOVE_SECTION
79 1d126e2d 2019-08-24 stsp } op;
80 1d126e2d 2019-08-24 stsp char *section;
81 1d126e2d 2019-08-24 stsp char *tag;
82 1d126e2d 2019-08-24 stsp char *value;
83 1d126e2d 2019-08-24 stsp int override;
84 1d126e2d 2019-08-24 stsp int is_default;
85 1d126e2d 2019-08-24 stsp };
86 1d126e2d 2019-08-24 stsp
87 1d126e2d 2019-08-24 stsp TAILQ_HEAD(got_gitconfig_trans_head, got_gitconfig_trans);
88 1d126e2d 2019-08-24 stsp
89 1d126e2d 2019-08-24 stsp struct got_gitconfig_binding {
90 1d126e2d 2019-08-24 stsp LIST_ENTRY(got_gitconfig_binding) link;
91 1d126e2d 2019-08-24 stsp char *section;
92 1d126e2d 2019-08-24 stsp char *tag;
93 1d126e2d 2019-08-24 stsp char *value;
94 1d126e2d 2019-08-24 stsp int is_default;
95 1d126e2d 2019-08-24 stsp };
96 1d126e2d 2019-08-24 stsp
97 1d126e2d 2019-08-24 stsp LIST_HEAD(got_gitconfig_bindings, got_gitconfig_binding);
98 1d126e2d 2019-08-24 stsp
99 1d126e2d 2019-08-24 stsp struct got_gitconfig {
100 1d126e2d 2019-08-24 stsp struct got_gitconfig_bindings bindings[256];
101 1d126e2d 2019-08-24 stsp struct got_gitconfig_trans_head trans_queue;
102 1d126e2d 2019-08-24 stsp char *addr;
103 1d126e2d 2019-08-24 stsp int seq;
104 1d126e2d 2019-08-24 stsp };
105 1d126e2d 2019-08-24 stsp
106 1d126e2d 2019-08-24 stsp static __inline__ u_int8_t
107 fda3525e 2021-09-25 stsp conf_hash(const char *s)
108 1d126e2d 2019-08-24 stsp {
109 1d126e2d 2019-08-24 stsp u_int8_t hash = 0;
110 1d126e2d 2019-08-24 stsp
111 1d126e2d 2019-08-24 stsp while (*s) {
112 1d126e2d 2019-08-24 stsp hash = ((hash << 1) | (hash >> 7)) ^ tolower((unsigned char)*s);
113 1d126e2d 2019-08-24 stsp s++;
114 1d126e2d 2019-08-24 stsp }
115 1d126e2d 2019-08-24 stsp return hash;
116 1d126e2d 2019-08-24 stsp }
117 1d126e2d 2019-08-24 stsp
118 1d126e2d 2019-08-24 stsp /*
119 1d126e2d 2019-08-24 stsp * Insert a tag-value combination from LINE (the equal sign is at POS)
120 1d126e2d 2019-08-24 stsp */
121 1d126e2d 2019-08-24 stsp static int
122 1d126e2d 2019-08-24 stsp conf_remove_now(struct got_gitconfig *conf, char *section, char *tag)
123 1d126e2d 2019-08-24 stsp {
124 1d126e2d 2019-08-24 stsp struct got_gitconfig_binding *cb, *next;
125 1d126e2d 2019-08-24 stsp
126 1d126e2d 2019-08-24 stsp for (cb = LIST_FIRST(&conf->bindings[conf_hash(section)]); cb;
127 1d126e2d 2019-08-24 stsp cb = next) {
128 1d126e2d 2019-08-24 stsp next = LIST_NEXT(cb, link);
129 1d126e2d 2019-08-24 stsp if (strcasecmp(cb->section, section) == 0 &&
130 1d126e2d 2019-08-24 stsp strcasecmp(cb->tag, tag) == 0) {
131 1d126e2d 2019-08-24 stsp LIST_REMOVE(cb, link);
132 1d126e2d 2019-08-24 stsp LOG_DBG((LOG_MISC, 95, "[%s]:%s->%s removed", section,
133 1d126e2d 2019-08-24 stsp tag, cb->value));
134 1d126e2d 2019-08-24 stsp free(cb->section);
135 1d126e2d 2019-08-24 stsp free(cb->tag);
136 1d126e2d 2019-08-24 stsp free(cb->value);
137 1d126e2d 2019-08-24 stsp free(cb);
138 1d126e2d 2019-08-24 stsp return 0;
139 1d126e2d 2019-08-24 stsp }
140 1d126e2d 2019-08-24 stsp }
141 1d126e2d 2019-08-24 stsp return 1;
142 1d126e2d 2019-08-24 stsp }
143 1d126e2d 2019-08-24 stsp
144 1d126e2d 2019-08-24 stsp static int
145 1d126e2d 2019-08-24 stsp conf_remove_section_now(struct got_gitconfig *conf, char *section)
146 1d126e2d 2019-08-24 stsp {
147 1d126e2d 2019-08-24 stsp struct got_gitconfig_binding *cb, *next;
148 1d126e2d 2019-08-24 stsp int unseen = 1;
149 1d126e2d 2019-08-24 stsp
150 1d126e2d 2019-08-24 stsp for (cb = LIST_FIRST(&conf->bindings[conf_hash(section)]); cb;
151 1d126e2d 2019-08-24 stsp cb = next) {
152 1d126e2d 2019-08-24 stsp next = LIST_NEXT(cb, link);
153 1d126e2d 2019-08-24 stsp if (strcasecmp(cb->section, section) == 0) {
154 1d126e2d 2019-08-24 stsp unseen = 0;
155 1d126e2d 2019-08-24 stsp LIST_REMOVE(cb, link);
156 1d126e2d 2019-08-24 stsp LOG_DBG((LOG_MISC, 95, "[%s]:%s->%s removed", section,
157 1d126e2d 2019-08-24 stsp cb->tag, cb->value));
158 1d126e2d 2019-08-24 stsp free(cb->section);
159 1d126e2d 2019-08-24 stsp free(cb->tag);
160 1d126e2d 2019-08-24 stsp free(cb->value);
161 1d126e2d 2019-08-24 stsp free(cb);
162 1d126e2d 2019-08-24 stsp }
163 1d126e2d 2019-08-24 stsp }
164 1d126e2d 2019-08-24 stsp return unseen;
165 1d126e2d 2019-08-24 stsp }
166 1d126e2d 2019-08-24 stsp
167 1d126e2d 2019-08-24 stsp /*
168 1d126e2d 2019-08-24 stsp * Insert a tag-value combination from LINE (the equal sign is at POS)
169 1d126e2d 2019-08-24 stsp * into SECTION of our configuration database.
170 1d126e2d 2019-08-24 stsp */
171 1d126e2d 2019-08-24 stsp static int
172 1d126e2d 2019-08-24 stsp conf_set_now(struct got_gitconfig *conf, char *section, char *tag,
173 1d126e2d 2019-08-24 stsp char *value, int override, int is_default)
174 1d126e2d 2019-08-24 stsp {
175 1d126e2d 2019-08-24 stsp struct got_gitconfig_binding *node = 0;
176 1d126e2d 2019-08-24 stsp
177 1d126e2d 2019-08-24 stsp if (override)
178 1d126e2d 2019-08-24 stsp conf_remove_now(conf, section, tag);
179 1d126e2d 2019-08-24 stsp else if (got_gitconfig_get_str(conf, section, tag)) {
180 1d126e2d 2019-08-24 stsp if (!is_default)
181 fee52bbf 2023-02-18 op LOG_DBG((LOG_MISC, 95,
182 300ea754 2021-01-05 stsp "conf_set_now: duplicate tag [%s]:%s, "
183 cd0aa8ca 2023-02-18 op "ignoring...", section, tag));
184 1d126e2d 2019-08-24 stsp return 1;
185 1d126e2d 2019-08-24 stsp }
186 1d126e2d 2019-08-24 stsp node = calloc(1, sizeof *node);
187 1d126e2d 2019-08-24 stsp if (!node) {
188 1d126e2d 2019-08-24 stsp log_error("conf_set_now: calloc (1, %lu) failed",
189 1d126e2d 2019-08-24 stsp (unsigned long)sizeof *node);
190 1d126e2d 2019-08-24 stsp return 1;
191 1d126e2d 2019-08-24 stsp }
192 1d126e2d 2019-08-24 stsp node->section = node->tag = node->value = NULL;
193 1d126e2d 2019-08-24 stsp if ((node->section = strdup(section)) == NULL)
194 1d126e2d 2019-08-24 stsp goto fail;
195 1d126e2d 2019-08-24 stsp if ((node->tag = strdup(tag)) == NULL)
196 1d126e2d 2019-08-24 stsp goto fail;
197 1d126e2d 2019-08-24 stsp if ((node->value = strdup(value)) == NULL)
198 1d126e2d 2019-08-24 stsp goto fail;
199 1d126e2d 2019-08-24 stsp node->is_default = is_default;
200 1d126e2d 2019-08-24 stsp
201 1d126e2d 2019-08-24 stsp LIST_INSERT_HEAD(&conf->bindings[conf_hash(section)], node, link);
202 1d126e2d 2019-08-24 stsp LOG_DBG((LOG_MISC, 95, "conf_set_now: [%s]:%s->%s", node->section,
203 1d126e2d 2019-08-24 stsp node->tag, node->value));
204 1d126e2d 2019-08-24 stsp return 0;
205 1d126e2d 2019-08-24 stsp fail:
206 1d126e2d 2019-08-24 stsp free(node->value);
207 1d126e2d 2019-08-24 stsp free(node->tag);
208 1d126e2d 2019-08-24 stsp free(node->section);
209 1d126e2d 2019-08-24 stsp free(node);
210 1d126e2d 2019-08-24 stsp return 1;
211 1d126e2d 2019-08-24 stsp }
212 1d126e2d 2019-08-24 stsp
213 1d126e2d 2019-08-24 stsp /*
214 1d126e2d 2019-08-24 stsp * Parse the line LINE of SZ bytes. Skip Comments, recognize section
215 1d126e2d 2019-08-24 stsp * headers and feed tag-value pairs into our configuration database.
216 1d126e2d 2019-08-24 stsp */
217 1d126e2d 2019-08-24 stsp static const struct got_error *
218 1d126e2d 2019-08-24 stsp conf_parse_line(char **section, struct got_gitconfig *conf, int trans,
219 1d126e2d 2019-08-24 stsp char *line, int ln, size_t sz)
220 1d126e2d 2019-08-24 stsp {
221 1d126e2d 2019-08-24 stsp char *val;
222 1d126e2d 2019-08-24 stsp size_t i;
223 1d126e2d 2019-08-24 stsp int j;
224 1d126e2d 2019-08-24 stsp
225 1d126e2d 2019-08-24 stsp /* '[section]' parsing... */
226 1d126e2d 2019-08-24 stsp if (*line == '[') {
227 1d126e2d 2019-08-24 stsp for (i = 1; i < sz; i++)
228 1d126e2d 2019-08-24 stsp if (line[i] == ']')
229 1d126e2d 2019-08-24 stsp break;
230 1d126e2d 2019-08-24 stsp free(*section);
231 1d126e2d 2019-08-24 stsp if (i == sz) {
232 1d126e2d 2019-08-24 stsp log_print("conf_parse_line: %d:"
233 1d126e2d 2019-08-24 stsp "unmatched ']', ignoring until next section", ln);
234 1d126e2d 2019-08-24 stsp *section = NULL;
235 1d126e2d 2019-08-24 stsp return NULL;
236 1d126e2d 2019-08-24 stsp }
237 00b3e9ae 2023-01-11 op *section = strndup(line + 1, i - 1);
238 1d126e2d 2019-08-24 stsp if (*section == NULL)
239 00b3e9ae 2023-01-11 op return got_error_from_errno("strndup");
240 1d126e2d 2019-08-24 stsp return NULL;
241 1d126e2d 2019-08-24 stsp }
242 2b5b5879 2023-02-19 op while (sz > 0 && isspace((unsigned char)*line)) {
243 1d126e2d 2019-08-24 stsp line++;
244 2b5b5879 2023-02-19 op sz--;
245 2b5b5879 2023-02-19 op }
246 de51a12a 2023-02-21 op
247 de51a12a 2023-02-21 op /* Lines starting with '#' or ';' are comments. */
248 de51a12a 2023-02-21 op if (*line == '#' || *line == ';')
249 de51a12a 2023-02-21 op return NULL;
250 1d126e2d 2019-08-24 stsp
251 1d126e2d 2019-08-24 stsp /* Deal with assignments. */
252 1d126e2d 2019-08-24 stsp for (i = 0; i < sz; i++)
253 1d126e2d 2019-08-24 stsp if (line[i] == '=') {
254 1d126e2d 2019-08-24 stsp /* If no section, we are ignoring the lines. */
255 1d126e2d 2019-08-24 stsp if (!*section) {
256 1d126e2d 2019-08-24 stsp log_print("conf_parse_line: %d: ignoring line "
257 1d126e2d 2019-08-24 stsp "due to no section", ln);
258 1d126e2d 2019-08-24 stsp return NULL;
259 1d126e2d 2019-08-24 stsp }
260 1d126e2d 2019-08-24 stsp line[strcspn(line, " \t=")] = '\0';
261 1d126e2d 2019-08-24 stsp val = line + i + 1 + strspn(line + i + 1, " \t");
262 1d126e2d 2019-08-24 stsp /* Skip trailing whitespace, if any */
263 1d126e2d 2019-08-24 stsp for (j = sz - (val - line) - 1; j > 0 &&
264 1d126e2d 2019-08-24 stsp isspace((unsigned char)val[j]); j--)
265 1d126e2d 2019-08-24 stsp val[j] = '\0';
266 1d126e2d 2019-08-24 stsp /* XXX Perhaps should we not ignore errors? */
267 1d126e2d 2019-08-24 stsp got_gitconfig_set(conf, trans, *section, line, val,
268 1d126e2d 2019-08-24 stsp 0, 0);
269 1d126e2d 2019-08-24 stsp return NULL;
270 1d126e2d 2019-08-24 stsp }
271 1d126e2d 2019-08-24 stsp /* Other non-empty lines are weird. */
272 1d126e2d 2019-08-24 stsp i = strspn(line, " \t");
273 1d126e2d 2019-08-24 stsp if (line[i])
274 1d126e2d 2019-08-24 stsp log_print("conf_parse_line: %d: syntax error", ln);
275 1d126e2d 2019-08-24 stsp
276 1d126e2d 2019-08-24 stsp return NULL;
277 1d126e2d 2019-08-24 stsp }
278 1d126e2d 2019-08-24 stsp
279 1d126e2d 2019-08-24 stsp /* Parse the mapped configuration file. */
280 1d126e2d 2019-08-24 stsp static const struct got_error *
281 1d126e2d 2019-08-24 stsp conf_parse(struct got_gitconfig *conf, int trans, char *buf, size_t sz)
282 1d126e2d 2019-08-24 stsp {
283 1d126e2d 2019-08-24 stsp const struct got_error *err = NULL;
284 1d126e2d 2019-08-24 stsp char *cp = buf;
285 1d126e2d 2019-08-24 stsp char *bufend = buf + sz;
286 1d126e2d 2019-08-24 stsp char *line, *section = NULL;
287 1d126e2d 2019-08-24 stsp int ln = 1;
288 1d126e2d 2019-08-24 stsp
289 1d126e2d 2019-08-24 stsp line = cp;
290 1d126e2d 2019-08-24 stsp while (cp < bufend) {
291 1d126e2d 2019-08-24 stsp if (*cp == '\n') {
292 1d126e2d 2019-08-24 stsp /* Check for escaped newlines. */
293 1d126e2d 2019-08-24 stsp if (cp > buf && *(cp - 1) == '\\')
294 1d126e2d 2019-08-24 stsp *(cp - 1) = *cp = ' ';
295 1d126e2d 2019-08-24 stsp else {
296 1d126e2d 2019-08-24 stsp *cp = '\0';
297 1d126e2d 2019-08-24 stsp err = conf_parse_line(&section, conf, trans,
298 1d126e2d 2019-08-24 stsp line, ln, cp - line);
299 1d126e2d 2019-08-24 stsp if (err)
300 1d126e2d 2019-08-24 stsp return err;
301 1d126e2d 2019-08-24 stsp line = cp + 1;
302 1d126e2d 2019-08-24 stsp }
303 1d126e2d 2019-08-24 stsp ln++;
304 1d126e2d 2019-08-24 stsp }
305 1d126e2d 2019-08-24 stsp cp++;
306 1d126e2d 2019-08-24 stsp }
307 1d126e2d 2019-08-24 stsp if (cp != line)
308 1d126e2d 2019-08-24 stsp log_print("conf_parse: last line unterminated, ignored.");
309 1d126e2d 2019-08-24 stsp return NULL;
310 1d126e2d 2019-08-24 stsp }
311 1d126e2d 2019-08-24 stsp
312 1d126e2d 2019-08-24 stsp const struct got_error *
313 aba9c984 2019-09-08 stsp got_gitconfig_open(struct got_gitconfig **conf, int fd)
314 1d126e2d 2019-08-24 stsp {
315 16aeacf7 2020-11-26 stsp size_t i;
316 1d126e2d 2019-08-24 stsp
317 1d126e2d 2019-08-24 stsp *conf = calloc(1, sizeof(**conf));
318 1d126e2d 2019-08-24 stsp if (*conf == NULL)
319 1d126e2d 2019-08-24 stsp return got_error_from_errno("malloc");
320 1d126e2d 2019-08-24 stsp
321 1d126e2d 2019-08-24 stsp for (i = 0; i < nitems((*conf)->bindings); i++)
322 1d126e2d 2019-08-24 stsp LIST_INIT(&(*conf)->bindings[i]);
323 1d126e2d 2019-08-24 stsp TAILQ_INIT(&(*conf)->trans_queue);
324 aba9c984 2019-09-08 stsp return got_gitconfig_reinit(*conf, fd);
325 1d126e2d 2019-08-24 stsp }
326 1d126e2d 2019-08-24 stsp
327 1d126e2d 2019-08-24 stsp static void
328 1d126e2d 2019-08-24 stsp conf_clear(struct got_gitconfig *conf)
329 1d126e2d 2019-08-24 stsp {
330 1d126e2d 2019-08-24 stsp struct got_gitconfig_binding *cb;
331 16aeacf7 2020-11-26 stsp size_t i;
332 1d126e2d 2019-08-24 stsp
333 1d126e2d 2019-08-24 stsp if (conf->addr) {
334 1d126e2d 2019-08-24 stsp for (i = 0; i < nitems(conf->bindings); i++)
335 1d126e2d 2019-08-24 stsp for (cb = LIST_FIRST(&conf->bindings[i]); cb;
336 1d126e2d 2019-08-24 stsp cb = LIST_FIRST(&conf->bindings[i]))
337 1d126e2d 2019-08-24 stsp conf_remove_now(conf, cb->section, cb->tag);
338 1d126e2d 2019-08-24 stsp free(conf->addr);
339 1d126e2d 2019-08-24 stsp conf->addr = NULL;
340 1d126e2d 2019-08-24 stsp }
341 1d126e2d 2019-08-24 stsp }
342 1d126e2d 2019-08-24 stsp
343 1d126e2d 2019-08-24 stsp /* Execute all queued operations for this transaction. Cleanup. */
344 1d126e2d 2019-08-24 stsp static int
345 1d126e2d 2019-08-24 stsp conf_end(struct got_gitconfig *conf, int transaction, int commit)
346 1d126e2d 2019-08-24 stsp {
347 1d126e2d 2019-08-24 stsp struct got_gitconfig_trans *node, *next;
348 1d126e2d 2019-08-24 stsp
349 1d126e2d 2019-08-24 stsp for (node = TAILQ_FIRST(&conf->trans_queue); node; node = next) {
350 1d126e2d 2019-08-24 stsp next = TAILQ_NEXT(node, link);
351 1d126e2d 2019-08-24 stsp if (node->trans == transaction) {
352 1d126e2d 2019-08-24 stsp if (commit)
353 1d126e2d 2019-08-24 stsp switch (node->op) {
354 1d126e2d 2019-08-24 stsp case CONF_SET:
355 1d126e2d 2019-08-24 stsp conf_set_now(conf, node->section,
356 1d126e2d 2019-08-24 stsp node->tag, node->value,
357 1d126e2d 2019-08-24 stsp node->override, node->is_default);
358 1d126e2d 2019-08-24 stsp break;
359 1d126e2d 2019-08-24 stsp case CONF_REMOVE:
360 1d126e2d 2019-08-24 stsp conf_remove_now(conf, node->section,
361 1d126e2d 2019-08-24 stsp node->tag);
362 1d126e2d 2019-08-24 stsp break;
363 1d126e2d 2019-08-24 stsp case CONF_REMOVE_SECTION:
364 1d126e2d 2019-08-24 stsp conf_remove_section_now(conf, node->section);
365 1d126e2d 2019-08-24 stsp break;
366 1d126e2d 2019-08-24 stsp default:
367 1d126e2d 2019-08-24 stsp log_print("got_gitconfig_end: unknown "
368 1d126e2d 2019-08-24 stsp "operation: %d", node->op);
369 1d126e2d 2019-08-24 stsp }
370 1d126e2d 2019-08-24 stsp TAILQ_REMOVE(&conf->trans_queue, node, link);
371 1d126e2d 2019-08-24 stsp free(node->section);
372 1d126e2d 2019-08-24 stsp free(node->tag);
373 1d126e2d 2019-08-24 stsp free(node->value);
374 1d126e2d 2019-08-24 stsp free(node);
375 1d126e2d 2019-08-24 stsp }
376 1d126e2d 2019-08-24 stsp }
377 1d126e2d 2019-08-24 stsp return 0;
378 1d126e2d 2019-08-24 stsp }
379 1d126e2d 2019-08-24 stsp
380 1d126e2d 2019-08-24 stsp
381 1d126e2d 2019-08-24 stsp void
382 1d126e2d 2019-08-24 stsp got_gitconfig_close(struct got_gitconfig *conf)
383 1d126e2d 2019-08-24 stsp {
384 1d126e2d 2019-08-24 stsp conf_clear(conf);
385 1d126e2d 2019-08-24 stsp free(conf);
386 1d126e2d 2019-08-24 stsp }
387 1d126e2d 2019-08-24 stsp
388 1d126e2d 2019-08-24 stsp static int
389 1d126e2d 2019-08-24 stsp conf_begin(struct got_gitconfig *conf)
390 1d126e2d 2019-08-24 stsp {
391 1d126e2d 2019-08-24 stsp return ++conf->seq;
392 1d126e2d 2019-08-24 stsp }
393 1d126e2d 2019-08-24 stsp
394 1d126e2d 2019-08-24 stsp /* Open the config file and map it into our address space, then parse it. */
395 1d126e2d 2019-08-24 stsp const struct got_error *
396 aba9c984 2019-09-08 stsp got_gitconfig_reinit(struct got_gitconfig *conf, int fd)
397 1d126e2d 2019-08-24 stsp {
398 1d126e2d 2019-08-24 stsp const struct got_error *err = NULL;
399 aba9c984 2019-09-08 stsp int trans;
400 1d126e2d 2019-08-24 stsp size_t sz;
401 1d126e2d 2019-08-24 stsp char *new_conf_addr = 0;
402 1d126e2d 2019-08-24 stsp struct stat st;
403 1d126e2d 2019-08-24 stsp
404 1d126e2d 2019-08-24 stsp if (fstat(fd, &st)) {
405 aba9c984 2019-09-08 stsp err = got_error_from_errno("fstat");
406 1d126e2d 2019-08-24 stsp goto fail;
407 1d126e2d 2019-08-24 stsp }
408 1d126e2d 2019-08-24 stsp
409 1d126e2d 2019-08-24 stsp sz = st.st_size;
410 1d126e2d 2019-08-24 stsp new_conf_addr = malloc(sz);
411 1d126e2d 2019-08-24 stsp if (new_conf_addr == NULL) {
412 1d126e2d 2019-08-24 stsp err = got_error_from_errno("malloc");
413 1d126e2d 2019-08-24 stsp goto fail;
414 1d126e2d 2019-08-24 stsp }
415 1d126e2d 2019-08-24 stsp /* XXX I assume short reads won't happen here. */
416 1d126e2d 2019-08-24 stsp if (read(fd, new_conf_addr, sz) != (int)sz) {
417 1d126e2d 2019-08-24 stsp err = got_error_from_errno("read");
418 1d126e2d 2019-08-24 stsp goto fail;
419 1d126e2d 2019-08-24 stsp }
420 1d126e2d 2019-08-24 stsp
421 1d126e2d 2019-08-24 stsp trans = conf_begin(conf);
422 1d126e2d 2019-08-24 stsp
423 1d126e2d 2019-08-24 stsp err = conf_parse(conf, trans, new_conf_addr, sz);
424 1d126e2d 2019-08-24 stsp if (err)
425 1d126e2d 2019-08-24 stsp goto fail;
426 1d126e2d 2019-08-24 stsp
427 1d126e2d 2019-08-24 stsp /* Free potential existing configuration. */
428 1d126e2d 2019-08-24 stsp conf_clear(conf);
429 1d126e2d 2019-08-24 stsp conf_end(conf, trans, 1);
430 1d126e2d 2019-08-24 stsp conf->addr = new_conf_addr;
431 1d126e2d 2019-08-24 stsp return NULL;
432 1d126e2d 2019-08-24 stsp
433 1d126e2d 2019-08-24 stsp fail:
434 1d126e2d 2019-08-24 stsp free(new_conf_addr);
435 1d126e2d 2019-08-24 stsp return err;
436 1d126e2d 2019-08-24 stsp }
437 1d126e2d 2019-08-24 stsp
438 1d126e2d 2019-08-24 stsp /*
439 1d126e2d 2019-08-24 stsp * Return the numeric value denoted by TAG in section SECTION or DEF
440 1d126e2d 2019-08-24 stsp * if that tag does not exist.
441 1d126e2d 2019-08-24 stsp */
442 1d126e2d 2019-08-24 stsp int
443 fda3525e 2021-09-25 stsp got_gitconfig_get_num(struct got_gitconfig *conf, const char *section,
444 fda3525e 2021-09-25 stsp const char *tag, int def)
445 1d126e2d 2019-08-24 stsp {
446 1d126e2d 2019-08-24 stsp char *value = got_gitconfig_get_str(conf, section, tag);
447 1d126e2d 2019-08-24 stsp
448 1d126e2d 2019-08-24 stsp if (value)
449 1d126e2d 2019-08-24 stsp return atoi(value);
450 1d126e2d 2019-08-24 stsp return def;
451 1d126e2d 2019-08-24 stsp }
452 1d126e2d 2019-08-24 stsp
453 1d126e2d 2019-08-24 stsp /* Validate X according to the range denoted by TAG in section SECTION. */
454 1d126e2d 2019-08-24 stsp int
455 1d126e2d 2019-08-24 stsp got_gitconfig_match_num(struct got_gitconfig *conf, char *section, char *tag,
456 1d126e2d 2019-08-24 stsp int x)
457 1d126e2d 2019-08-24 stsp {
458 1d126e2d 2019-08-24 stsp char *value = got_gitconfig_get_str(conf, section, tag);
459 1d126e2d 2019-08-24 stsp int val, min, max, n;
460 1d126e2d 2019-08-24 stsp
461 1d126e2d 2019-08-24 stsp if (!value)
462 1d126e2d 2019-08-24 stsp return 0;
463 1d126e2d 2019-08-24 stsp n = sscanf(value, "%d,%d:%d", &val, &min, &max);
464 1d126e2d 2019-08-24 stsp switch (n) {
465 1d126e2d 2019-08-24 stsp case 1:
466 1d126e2d 2019-08-24 stsp LOG_DBG((LOG_MISC, 95, "got_gitconfig_match_num: %s:%s %d==%d?",
467 1d126e2d 2019-08-24 stsp section, tag, val, x));
468 1d126e2d 2019-08-24 stsp return x == val;
469 1d126e2d 2019-08-24 stsp case 3:
470 1d126e2d 2019-08-24 stsp LOG_DBG((LOG_MISC, 95, "got_gitconfig_match_num: %s:%s %d<=%d<=%d?",
471 1d126e2d 2019-08-24 stsp section, tag, min, x, max));
472 1d126e2d 2019-08-24 stsp return min <= x && max >= x;
473 1d126e2d 2019-08-24 stsp default:
474 1d126e2d 2019-08-24 stsp log_error("got_gitconfig_match_num: section %s tag %s: invalid number "
475 1d126e2d 2019-08-24 stsp "spec %s", section, tag, value);
476 1d126e2d 2019-08-24 stsp }
477 1d126e2d 2019-08-24 stsp return 0;
478 1d126e2d 2019-08-24 stsp }
479 1d126e2d 2019-08-24 stsp
480 1d126e2d 2019-08-24 stsp /* Return the string value denoted by TAG in section SECTION. */
481 1d126e2d 2019-08-24 stsp char *
482 fda3525e 2021-09-25 stsp got_gitconfig_get_str(struct got_gitconfig *conf, const char *section,
483 fda3525e 2021-09-25 stsp const char *tag)
484 1d126e2d 2019-08-24 stsp {
485 1d126e2d 2019-08-24 stsp struct got_gitconfig_binding *cb;
486 1d126e2d 2019-08-24 stsp
487 1d126e2d 2019-08-24 stsp for (cb = LIST_FIRST(&conf->bindings[conf_hash(section)]); cb;
488 1d126e2d 2019-08-24 stsp cb = LIST_NEXT(cb, link))
489 1d126e2d 2019-08-24 stsp if (strcasecmp(section, cb->section) == 0 &&
490 1d126e2d 2019-08-24 stsp strcasecmp(tag, cb->tag) == 0) {
491 1d126e2d 2019-08-24 stsp LOG_DBG((LOG_MISC, 95, "got_gitconfig_get_str: [%s]:%s->%s",
492 1d126e2d 2019-08-24 stsp section, tag, cb->value));
493 1d126e2d 2019-08-24 stsp return cb->value;
494 1d126e2d 2019-08-24 stsp }
495 1d126e2d 2019-08-24 stsp LOG_DBG((LOG_MISC, 95,
496 1d126e2d 2019-08-24 stsp "got_gitconfig_get_str: configuration value not found [%s]:%s", section,
497 1d126e2d 2019-08-24 stsp tag));
498 1d126e2d 2019-08-24 stsp return 0;
499 1d126e2d 2019-08-24 stsp }
500 cd95becd 2019-11-29 stsp
501 cd95becd 2019-11-29 stsp const struct got_error *
502 cd95becd 2019-11-29 stsp got_gitconfig_get_section_list(struct got_gitconfig_list **sections,
503 cd95becd 2019-11-29 stsp struct got_gitconfig *conf)
504 cd95becd 2019-11-29 stsp {
505 cd95becd 2019-11-29 stsp const struct got_error *err = NULL;
506 cd95becd 2019-11-29 stsp struct got_gitconfig_list *list = NULL;
507 cd95becd 2019-11-29 stsp struct got_gitconfig_list_node *node = 0;
508 cd95becd 2019-11-29 stsp struct got_gitconfig_binding *cb;
509 16aeacf7 2020-11-26 stsp size_t i;
510 cd95becd 2019-11-29 stsp
511 cd95becd 2019-11-29 stsp *sections = NULL;
512 1d126e2d 2019-08-24 stsp
513 cd95becd 2019-11-29 stsp list = malloc(sizeof *list);
514 cd95becd 2019-11-29 stsp if (!list)
515 cd95becd 2019-11-29 stsp return got_error_from_errno("malloc");
516 cd95becd 2019-11-29 stsp TAILQ_INIT(&list->fields);
517 cd95becd 2019-11-29 stsp list->cnt = 0;
518 cd95becd 2019-11-29 stsp for (i = 0; i < nitems(conf->bindings); i++) {
519 cd95becd 2019-11-29 stsp for (cb = LIST_FIRST(&conf->bindings[i]); cb;
520 cd95becd 2019-11-29 stsp cb = LIST_NEXT(cb, link)) {
521 83310ac9 2020-03-20 stsp int section_present = 0;
522 83310ac9 2020-03-20 stsp TAILQ_FOREACH(node, &list->fields, link) {
523 83310ac9 2020-03-20 stsp if (strcmp(node->field, cb->section) == 0) {
524 83310ac9 2020-03-20 stsp section_present = 1;
525 83310ac9 2020-03-20 stsp break;
526 83310ac9 2020-03-20 stsp }
527 83310ac9 2020-03-20 stsp }
528 83310ac9 2020-03-20 stsp if (section_present)
529 83310ac9 2020-03-20 stsp continue;
530 cd95becd 2019-11-29 stsp list->cnt++;
531 cd95becd 2019-11-29 stsp node = calloc(1, sizeof *node);
532 cd95becd 2019-11-29 stsp if (!node) {
533 cd95becd 2019-11-29 stsp err = got_error_from_errno("calloc");
534 cd95becd 2019-11-29 stsp goto cleanup;
535 cd95becd 2019-11-29 stsp }
536 cd95becd 2019-11-29 stsp node->field = strdup(cb->section);
537 cd95becd 2019-11-29 stsp if (!node->field) {
538 cd95becd 2019-11-29 stsp err = got_error_from_errno("strdup");
539 cd95becd 2019-11-29 stsp goto cleanup;
540 cd95becd 2019-11-29 stsp }
541 cd95becd 2019-11-29 stsp TAILQ_INSERT_TAIL(&list->fields, node, link);
542 cd95becd 2019-11-29 stsp }
543 cd95becd 2019-11-29 stsp }
544 cd95becd 2019-11-29 stsp
545 cd95becd 2019-11-29 stsp *sections = list;
546 cd95becd 2019-11-29 stsp return NULL;
547 cd95becd 2019-11-29 stsp
548 cd95becd 2019-11-29 stsp cleanup:
549 cd95becd 2019-11-29 stsp free(node);
550 cd95becd 2019-11-29 stsp if (list)
551 cd95becd 2019-11-29 stsp got_gitconfig_free_list(list);
552 cd95becd 2019-11-29 stsp return err;
553 cd95becd 2019-11-29 stsp }
554 cd95becd 2019-11-29 stsp
555 1d126e2d 2019-08-24 stsp /*
556 1d126e2d 2019-08-24 stsp * Build a list of string values out of the comma separated value denoted by
557 1d126e2d 2019-08-24 stsp * TAG in SECTION.
558 1d126e2d 2019-08-24 stsp */
559 1d126e2d 2019-08-24 stsp struct got_gitconfig_list *
560 1d126e2d 2019-08-24 stsp got_gitconfig_get_list(struct got_gitconfig *conf, char *section, char *tag)
561 1d126e2d 2019-08-24 stsp {
562 1d126e2d 2019-08-24 stsp char *liststr = 0, *p, *field, *t;
563 1d126e2d 2019-08-24 stsp struct got_gitconfig_list *list = 0;
564 1d126e2d 2019-08-24 stsp struct got_gitconfig_list_node *node = 0;
565 1d126e2d 2019-08-24 stsp
566 1d126e2d 2019-08-24 stsp list = malloc(sizeof *list);
567 1d126e2d 2019-08-24 stsp if (!list)
568 1d126e2d 2019-08-24 stsp goto cleanup;
569 1d126e2d 2019-08-24 stsp TAILQ_INIT(&list->fields);
570 1d126e2d 2019-08-24 stsp list->cnt = 0;
571 1d126e2d 2019-08-24 stsp liststr = got_gitconfig_get_str(conf, section, tag);
572 1d126e2d 2019-08-24 stsp if (!liststr)
573 1d126e2d 2019-08-24 stsp goto cleanup;
574 1d126e2d 2019-08-24 stsp liststr = strdup(liststr);
575 1d126e2d 2019-08-24 stsp if (!liststr)
576 1d126e2d 2019-08-24 stsp goto cleanup;
577 1d126e2d 2019-08-24 stsp p = liststr;
578 1d126e2d 2019-08-24 stsp while ((field = strsep(&p, ",")) != NULL) {
579 1d126e2d 2019-08-24 stsp /* Skip leading whitespace */
580 1d126e2d 2019-08-24 stsp while (isspace((unsigned char)*field))
581 1d126e2d 2019-08-24 stsp field++;
582 1d126e2d 2019-08-24 stsp /* Skip trailing whitespace */
583 1d126e2d 2019-08-24 stsp if (p)
584 1d126e2d 2019-08-24 stsp for (t = p - 1; t > field && isspace((unsigned char)*t); t--)
585 1d126e2d 2019-08-24 stsp *t = '\0';
586 1d126e2d 2019-08-24 stsp if (*field == '\0') {
587 1d126e2d 2019-08-24 stsp log_print("got_gitconfig_get_list: empty field, ignoring...");
588 1d126e2d 2019-08-24 stsp continue;
589 1d126e2d 2019-08-24 stsp }
590 1d126e2d 2019-08-24 stsp list->cnt++;
591 1d126e2d 2019-08-24 stsp node = calloc(1, sizeof *node);
592 1d126e2d 2019-08-24 stsp if (!node)
593 1d126e2d 2019-08-24 stsp goto cleanup;
594 1d126e2d 2019-08-24 stsp node->field = strdup(field);
595 1d126e2d 2019-08-24 stsp if (!node->field)
596 1d126e2d 2019-08-24 stsp goto cleanup;
597 1d126e2d 2019-08-24 stsp TAILQ_INSERT_TAIL(&list->fields, node, link);
598 1d126e2d 2019-08-24 stsp }
599 1d126e2d 2019-08-24 stsp free(liststr);
600 1d126e2d 2019-08-24 stsp return list;
601 1d126e2d 2019-08-24 stsp
602 1d126e2d 2019-08-24 stsp cleanup:
603 1d126e2d 2019-08-24 stsp free(node);
604 1d126e2d 2019-08-24 stsp if (list)
605 1d126e2d 2019-08-24 stsp got_gitconfig_free_list(list);
606 1d126e2d 2019-08-24 stsp free(liststr);
607 1d126e2d 2019-08-24 stsp return 0;
608 1d126e2d 2019-08-24 stsp }
609 1d126e2d 2019-08-24 stsp
610 1d126e2d 2019-08-24 stsp struct got_gitconfig_list *
611 fda3525e 2021-09-25 stsp got_gitconfig_get_tag_list(struct got_gitconfig *conf, const char *section)
612 1d126e2d 2019-08-24 stsp {
613 1d126e2d 2019-08-24 stsp struct got_gitconfig_list *list = 0;
614 1d126e2d 2019-08-24 stsp struct got_gitconfig_list_node *node = 0;
615 1d126e2d 2019-08-24 stsp struct got_gitconfig_binding *cb;
616 1d126e2d 2019-08-24 stsp
617 1d126e2d 2019-08-24 stsp list = malloc(sizeof *list);
618 1d126e2d 2019-08-24 stsp if (!list)
619 1d126e2d 2019-08-24 stsp goto cleanup;
620 1d126e2d 2019-08-24 stsp TAILQ_INIT(&list->fields);
621 1d126e2d 2019-08-24 stsp list->cnt = 0;
622 1d126e2d 2019-08-24 stsp for (cb = LIST_FIRST(&conf->bindings[conf_hash(section)]); cb;
623 1d126e2d 2019-08-24 stsp cb = LIST_NEXT(cb, link))
624 1d126e2d 2019-08-24 stsp if (strcasecmp(section, cb->section) == 0) {
625 1d126e2d 2019-08-24 stsp list->cnt++;
626 1d126e2d 2019-08-24 stsp node = calloc(1, sizeof *node);
627 1d126e2d 2019-08-24 stsp if (!node)
628 1d126e2d 2019-08-24 stsp goto cleanup;
629 1d126e2d 2019-08-24 stsp node->field = strdup(cb->tag);
630 1d126e2d 2019-08-24 stsp if (!node->field)
631 1d126e2d 2019-08-24 stsp goto cleanup;
632 1d126e2d 2019-08-24 stsp TAILQ_INSERT_TAIL(&list->fields, node, link);
633 1d126e2d 2019-08-24 stsp }
634 1d126e2d 2019-08-24 stsp return list;
635 1d126e2d 2019-08-24 stsp
636 1d126e2d 2019-08-24 stsp cleanup:
637 1d126e2d 2019-08-24 stsp free(node);
638 1d126e2d 2019-08-24 stsp if (list)
639 1d126e2d 2019-08-24 stsp got_gitconfig_free_list(list);
640 1d126e2d 2019-08-24 stsp return 0;
641 1d126e2d 2019-08-24 stsp }
642 1d126e2d 2019-08-24 stsp
643 1d126e2d 2019-08-24 stsp void
644 1d126e2d 2019-08-24 stsp got_gitconfig_free_list(struct got_gitconfig_list *list)
645 1d126e2d 2019-08-24 stsp {
646 1d126e2d 2019-08-24 stsp struct got_gitconfig_list_node *node = TAILQ_FIRST(&list->fields);
647 1d126e2d 2019-08-24 stsp
648 1d126e2d 2019-08-24 stsp while (node) {
649 1d126e2d 2019-08-24 stsp TAILQ_REMOVE(&list->fields, node, link);
650 1d126e2d 2019-08-24 stsp free(node->field);
651 1d126e2d 2019-08-24 stsp free(node);
652 1d126e2d 2019-08-24 stsp node = TAILQ_FIRST(&list->fields);
653 1d126e2d 2019-08-24 stsp }
654 1d126e2d 2019-08-24 stsp free(list);
655 1d126e2d 2019-08-24 stsp }
656 1d126e2d 2019-08-24 stsp
657 1d126e2d 2019-08-24 stsp static int
658 1d126e2d 2019-08-24 stsp got_gitconfig_trans_node(struct got_gitconfig *conf, int transaction,
659 1d126e2d 2019-08-24 stsp enum got_gitconfig_op op, char *section, char *tag, char *value,
660 1d126e2d 2019-08-24 stsp int override, int is_default)
661 1d126e2d 2019-08-24 stsp {
662 1d126e2d 2019-08-24 stsp struct got_gitconfig_trans *node;
663 1d126e2d 2019-08-24 stsp
664 1d126e2d 2019-08-24 stsp node = calloc(1, sizeof *node);
665 1d126e2d 2019-08-24 stsp if (!node) {
666 1d126e2d 2019-08-24 stsp log_error("got_gitconfig_trans_node: calloc (1, %lu) failed",
667 1d126e2d 2019-08-24 stsp (unsigned long)sizeof *node);
668 1d126e2d 2019-08-24 stsp return 1;
669 1d126e2d 2019-08-24 stsp }
670 1d126e2d 2019-08-24 stsp node->trans = transaction;
671 1d126e2d 2019-08-24 stsp node->op = op;
672 1d126e2d 2019-08-24 stsp node->override = override;
673 1d126e2d 2019-08-24 stsp node->is_default = is_default;
674 1d126e2d 2019-08-24 stsp if (section && (node->section = strdup(section)) == NULL)
675 1d126e2d 2019-08-24 stsp goto fail;
676 1d126e2d 2019-08-24 stsp if (tag && (node->tag = strdup(tag)) == NULL)
677 1d126e2d 2019-08-24 stsp goto fail;
678 1d126e2d 2019-08-24 stsp if (value && (node->value = strdup(value)) == NULL)
679 1d126e2d 2019-08-24 stsp goto fail;
680 1d126e2d 2019-08-24 stsp TAILQ_INSERT_TAIL(&conf->trans_queue, node, link);
681 1d126e2d 2019-08-24 stsp return 0;
682 1d126e2d 2019-08-24 stsp
683 1d126e2d 2019-08-24 stsp fail:
684 1d126e2d 2019-08-24 stsp free(node->section);
685 1d126e2d 2019-08-24 stsp free(node->tag);
686 1d126e2d 2019-08-24 stsp free(node->value);
687 1d126e2d 2019-08-24 stsp free(node);
688 1d126e2d 2019-08-24 stsp return 1;
689 1d126e2d 2019-08-24 stsp }
690 1d126e2d 2019-08-24 stsp
691 1d126e2d 2019-08-24 stsp /* Queue a set operation. */
692 1d126e2d 2019-08-24 stsp int
693 1d126e2d 2019-08-24 stsp got_gitconfig_set(struct got_gitconfig *conf, int transaction, char *section,
694 1d126e2d 2019-08-24 stsp char *tag, char *value, int override, int is_default)
695 1d126e2d 2019-08-24 stsp {
696 1d126e2d 2019-08-24 stsp return got_gitconfig_trans_node(conf, transaction, CONF_SET, section,
697 1d126e2d 2019-08-24 stsp tag, value, override, is_default);
698 1d126e2d 2019-08-24 stsp }
699 1d126e2d 2019-08-24 stsp
700 1d126e2d 2019-08-24 stsp /* Queue a remove operation. */
701 1d126e2d 2019-08-24 stsp int
702 1d126e2d 2019-08-24 stsp got_gitconfig_remove(struct got_gitconfig *conf, int transaction,
703 1d126e2d 2019-08-24 stsp char *section, char *tag)
704 1d126e2d 2019-08-24 stsp {
705 1d126e2d 2019-08-24 stsp return got_gitconfig_trans_node(conf, transaction, CONF_REMOVE,
706 1d126e2d 2019-08-24 stsp section, tag, NULL, 0, 0);
707 1d126e2d 2019-08-24 stsp }
708 1d126e2d 2019-08-24 stsp
709 1d126e2d 2019-08-24 stsp /* Queue a remove section operation. */
710 1d126e2d 2019-08-24 stsp int
711 1d126e2d 2019-08-24 stsp got_gitconfig_remove_section(struct got_gitconfig *conf, int transaction,
712 1d126e2d 2019-08-24 stsp char *section)
713 1d126e2d 2019-08-24 stsp {
714 1d126e2d 2019-08-24 stsp return got_gitconfig_trans_node(conf, transaction, CONF_REMOVE_SECTION,
715 1d126e2d 2019-08-24 stsp section, NULL, NULL, 0, 0);
716 1d126e2d 2019-08-24 stsp }