Blame


1 257add31 2020-09-09 stsp /*
2 257add31 2020-09-09 stsp * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
3 257add31 2020-09-09 stsp *
4 257add31 2020-09-09 stsp * Permission to use, copy, modify, and distribute this software for any
5 257add31 2020-09-09 stsp * purpose with or without fee is hereby granted, provided that the above
6 257add31 2020-09-09 stsp * copyright notice and this permission notice appear in all copies.
7 257add31 2020-09-09 stsp *
8 257add31 2020-09-09 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 257add31 2020-09-09 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 257add31 2020-09-09 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 257add31 2020-09-09 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 257add31 2020-09-09 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 257add31 2020-09-09 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 257add31 2020-09-09 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 257add31 2020-09-09 stsp */
16 257add31 2020-09-09 stsp
17 257add31 2020-09-09 stsp #include <sys/types.h>
18 257add31 2020-09-09 stsp #include <sys/queue.h>
19 257add31 2020-09-09 stsp #include <sys/uio.h>
20 257add31 2020-09-09 stsp #include <sys/time.h>
21 257add31 2020-09-09 stsp
22 257add31 2020-09-09 stsp #include <stdint.h>
23 257add31 2020-09-09 stsp #include <imsg.h>
24 257add31 2020-09-09 stsp #include <limits.h>
25 257add31 2020-09-09 stsp #include <signal.h>
26 257add31 2020-09-09 stsp #include <stdio.h>
27 257add31 2020-09-09 stsp #include <stdlib.h>
28 257add31 2020-09-09 stsp #include <string.h>
29 257add31 2020-09-09 stsp #include <sha1.h>
30 e12e0e21 2020-09-14 naddy #include <unistd.h>
31 257add31 2020-09-09 stsp #include <zlib.h>
32 257add31 2020-09-09 stsp
33 257add31 2020-09-09 stsp #include "got_error.h"
34 257add31 2020-09-09 stsp #include "got_object.h"
35 5e082626 2020-09-24 stsp #include "got_path.h"
36 257add31 2020-09-09 stsp #include "got_repository.h"
37 257add31 2020-09-09 stsp
38 257add31 2020-09-09 stsp #include "got_lib_delta.h"
39 257add31 2020-09-09 stsp #include "got_lib_object.h"
40 257add31 2020-09-09 stsp #include "got_lib_privsep.h"
41 257add31 2020-09-09 stsp
42 257add31 2020-09-09 stsp #include "gotconfig.h"
43 257add31 2020-09-09 stsp
44 257add31 2020-09-09 stsp /* parse.y */
45 257add31 2020-09-09 stsp static volatile sig_atomic_t sigint_received;
46 257add31 2020-09-09 stsp
47 257add31 2020-09-09 stsp static void
48 257add31 2020-09-09 stsp catch_sigint(int signo)
49 257add31 2020-09-09 stsp {
50 257add31 2020-09-09 stsp sigint_received = 1;
51 257add31 2020-09-09 stsp }
52 257add31 2020-09-09 stsp
53 257add31 2020-09-09 stsp static const struct got_error *
54 257add31 2020-09-09 stsp make_repo_url(char **url, struct gotconfig_remote_repo *repo)
55 257add31 2020-09-09 stsp {
56 257add31 2020-09-09 stsp const struct got_error *err = NULL;
57 257add31 2020-09-09 stsp char *s = NULL, *p = NULL;
58 257add31 2020-09-09 stsp
59 257add31 2020-09-09 stsp *url = NULL;
60 257add31 2020-09-09 stsp
61 257add31 2020-09-09 stsp if (asprintf(&s, "%s://", repo->protocol) == -1)
62 257add31 2020-09-09 stsp return got_error_from_errno("asprintf");
63 257add31 2020-09-09 stsp
64 257add31 2020-09-09 stsp if (repo->server) {
65 257add31 2020-09-09 stsp p = s;
66 257add31 2020-09-09 stsp s = NULL;
67 257add31 2020-09-09 stsp if (asprintf(&s, "%s%s", p, repo->server) == -1) {
68 257add31 2020-09-09 stsp err = got_error_from_errno("asprintf");
69 257add31 2020-09-09 stsp goto done;
70 257add31 2020-09-09 stsp }
71 257add31 2020-09-09 stsp free(p);
72 257add31 2020-09-09 stsp p = NULL;
73 257add31 2020-09-09 stsp }
74 257add31 2020-09-09 stsp
75 257add31 2020-09-09 stsp if (repo->port) {
76 257add31 2020-09-09 stsp p = s;
77 257add31 2020-09-09 stsp s = NULL;
78 257add31 2020-09-09 stsp if (asprintf(&s, "%s:%d", p, repo->port) == -1) {
79 257add31 2020-09-09 stsp err = got_error_from_errno("asprintf");
80 257add31 2020-09-09 stsp goto done;
81 257add31 2020-09-09 stsp }
82 257add31 2020-09-09 stsp free(p);
83 257add31 2020-09-09 stsp p = NULL;
84 257add31 2020-09-09 stsp }
85 257add31 2020-09-09 stsp
86 257add31 2020-09-09 stsp if (repo->repository) {
87 5e082626 2020-09-24 stsp char *repo_path = repo->repository;
88 5e082626 2020-09-24 stsp while (repo_path[0] == '/')
89 5e082626 2020-09-24 stsp repo_path++;
90 257add31 2020-09-09 stsp p = s;
91 257add31 2020-09-09 stsp s = NULL;
92 5e082626 2020-09-24 stsp if (asprintf(&s, "%s/%s", p, repo_path) == -1) {
93 257add31 2020-09-09 stsp err = got_error_from_errno("asprintf");
94 257add31 2020-09-09 stsp goto done;
95 257add31 2020-09-09 stsp }
96 257add31 2020-09-09 stsp free(p);
97 257add31 2020-09-09 stsp p = NULL;
98 257add31 2020-09-09 stsp }
99 5e082626 2020-09-24 stsp
100 5e082626 2020-09-24 stsp got_path_strip_trailing_slashes(s);
101 257add31 2020-09-09 stsp done:
102 257add31 2020-09-09 stsp if (err) {
103 257add31 2020-09-09 stsp free(s);
104 257add31 2020-09-09 stsp free(p);
105 257add31 2020-09-09 stsp } else
106 257add31 2020-09-09 stsp *url = s;
107 257add31 2020-09-09 stsp return err;
108 257add31 2020-09-09 stsp }
109 257add31 2020-09-09 stsp
110 257add31 2020-09-09 stsp static const struct got_error *
111 257add31 2020-09-09 stsp send_gotconfig_str(struct imsgbuf *ibuf, const char *value)
112 257add31 2020-09-09 stsp {
113 be96c417 2020-09-17 stsp size_t len = value ? strlen(value) : 0;
114 257add31 2020-09-09 stsp
115 257add31 2020-09-09 stsp if (imsg_compose(ibuf, GOT_IMSG_GOTCONFIG_STR_VAL, 0, 0, -1,
116 257add31 2020-09-09 stsp value, len) == -1)
117 257add31 2020-09-09 stsp return got_error_from_errno("imsg_compose GOTCONFIG_STR_VAL");
118 257add31 2020-09-09 stsp
119 257add31 2020-09-09 stsp return got_privsep_flush_imsg(ibuf);
120 257add31 2020-09-09 stsp }
121 257add31 2020-09-09 stsp
122 257add31 2020-09-09 stsp static const struct got_error *
123 257add31 2020-09-09 stsp send_gotconfig_remotes(struct imsgbuf *ibuf,
124 257add31 2020-09-09 stsp struct gotconfig_remote_repo_list *remotes, int nremotes)
125 257add31 2020-09-09 stsp {
126 257add31 2020-09-09 stsp const struct got_error *err = NULL;
127 257add31 2020-09-09 stsp struct got_imsg_remotes iremotes;
128 257add31 2020-09-09 stsp struct gotconfig_remote_repo *repo;
129 257add31 2020-09-09 stsp char *url = NULL;
130 257add31 2020-09-09 stsp
131 257add31 2020-09-09 stsp iremotes.nremotes = nremotes;
132 257add31 2020-09-09 stsp if (imsg_compose(ibuf, GOT_IMSG_GOTCONFIG_REMOTES, 0, 0, -1,
133 257add31 2020-09-09 stsp &iremotes, sizeof(iremotes)) == -1)
134 257add31 2020-09-09 stsp return got_error_from_errno("imsg_compose GOTCONFIG_REMOTES");
135 257add31 2020-09-09 stsp
136 257add31 2020-09-09 stsp err = got_privsep_flush_imsg(ibuf);
137 257add31 2020-09-09 stsp imsg_clear(ibuf);
138 257add31 2020-09-09 stsp if (err)
139 257add31 2020-09-09 stsp return err;
140 257add31 2020-09-09 stsp
141 257add31 2020-09-09 stsp TAILQ_FOREACH(repo, remotes, entry) {
142 257add31 2020-09-09 stsp struct got_imsg_remote iremote;
143 257add31 2020-09-09 stsp size_t len = sizeof(iremote);
144 257add31 2020-09-09 stsp struct ibuf *wbuf;
145 b8adfa55 2020-09-25 stsp struct node_branch *branch;
146 b8adfa55 2020-09-25 stsp int nbranches = 0;
147 257add31 2020-09-09 stsp
148 b8adfa55 2020-09-25 stsp branch = repo->branch;
149 b8adfa55 2020-09-25 stsp while (branch) {
150 b8adfa55 2020-09-25 stsp branch = branch->next;
151 b8adfa55 2020-09-25 stsp nbranches++;
152 b8adfa55 2020-09-25 stsp }
153 b8adfa55 2020-09-25 stsp
154 b8adfa55 2020-09-25 stsp iremote.nbranches = nbranches;
155 257add31 2020-09-09 stsp iremote.mirror_references = repo->mirror_references;
156 257add31 2020-09-09 stsp
157 257add31 2020-09-09 stsp iremote.name_len = strlen(repo->name);
158 257add31 2020-09-09 stsp len += iremote.name_len;
159 257add31 2020-09-09 stsp
160 257add31 2020-09-09 stsp err = make_repo_url(&url, repo);
161 257add31 2020-09-09 stsp if (err)
162 257add31 2020-09-09 stsp break;
163 257add31 2020-09-09 stsp iremote.url_len = strlen(url);
164 257add31 2020-09-09 stsp len += iremote.url_len;
165 257add31 2020-09-09 stsp
166 257add31 2020-09-09 stsp wbuf = imsg_create(ibuf, GOT_IMSG_GOTCONFIG_REMOTE, 0, 0, len);
167 257add31 2020-09-09 stsp if (wbuf == NULL) {
168 257add31 2020-09-09 stsp err = got_error_from_errno(
169 257add31 2020-09-09 stsp "imsg_create GOTCONFIG_REMOTE");
170 257add31 2020-09-09 stsp break;
171 257add31 2020-09-09 stsp }
172 257add31 2020-09-09 stsp
173 257add31 2020-09-09 stsp if (imsg_add(wbuf, &iremote, sizeof(iremote)) == -1) {
174 257add31 2020-09-09 stsp err = got_error_from_errno(
175 257add31 2020-09-09 stsp "imsg_add GOTCONFIG_REMOTE");
176 257add31 2020-09-09 stsp ibuf_free(wbuf);
177 257add31 2020-09-09 stsp break;
178 257add31 2020-09-09 stsp }
179 257add31 2020-09-09 stsp
180 257add31 2020-09-09 stsp if (imsg_add(wbuf, repo->name, iremote.name_len) == -1) {
181 257add31 2020-09-09 stsp err = got_error_from_errno(
182 257add31 2020-09-09 stsp "imsg_add GOTCONFIG_REMOTE");
183 257add31 2020-09-09 stsp ibuf_free(wbuf);
184 257add31 2020-09-09 stsp break;
185 257add31 2020-09-09 stsp }
186 257add31 2020-09-09 stsp if (imsg_add(wbuf, url, iremote.url_len) == -1) {
187 257add31 2020-09-09 stsp err = got_error_from_errno(
188 257add31 2020-09-09 stsp "imsg_add GOTCONFIG_REMOTE");
189 257add31 2020-09-09 stsp ibuf_free(wbuf);
190 257add31 2020-09-09 stsp break;
191 257add31 2020-09-09 stsp }
192 257add31 2020-09-09 stsp
193 257add31 2020-09-09 stsp wbuf->fd = -1;
194 257add31 2020-09-09 stsp imsg_close(ibuf, wbuf);
195 257add31 2020-09-09 stsp err = got_privsep_flush_imsg(ibuf);
196 257add31 2020-09-09 stsp if (err)
197 257add31 2020-09-09 stsp break;
198 257add31 2020-09-09 stsp
199 257add31 2020-09-09 stsp free(url);
200 257add31 2020-09-09 stsp url = NULL;
201 b8adfa55 2020-09-25 stsp
202 b8adfa55 2020-09-25 stsp branch = repo->branch;
203 b8adfa55 2020-09-25 stsp while (branch) {
204 b8adfa55 2020-09-25 stsp err = send_gotconfig_str(ibuf, branch->branch_name);
205 b8adfa55 2020-09-25 stsp if (err)
206 b8adfa55 2020-09-25 stsp break;
207 b8adfa55 2020-09-25 stsp branch = branch->next;
208 b8adfa55 2020-09-25 stsp }
209 257add31 2020-09-09 stsp }
210 257add31 2020-09-09 stsp
211 257add31 2020-09-09 stsp free(url);
212 257add31 2020-09-09 stsp return err;
213 257add31 2020-09-09 stsp }
214 257add31 2020-09-09 stsp
215 257add31 2020-09-09 stsp static const struct got_error *
216 257add31 2020-09-09 stsp validate_config(struct gotconfig *gotconfig)
217 257add31 2020-09-09 stsp {
218 257add31 2020-09-09 stsp struct gotconfig_remote_repo *repo, *repo2;
219 257add31 2020-09-09 stsp static char msg[512];
220 257add31 2020-09-09 stsp
221 257add31 2020-09-09 stsp TAILQ_FOREACH(repo, &gotconfig->remotes, entry) {
222 257add31 2020-09-09 stsp if (repo->name == NULL) {
223 257add31 2020-09-09 stsp return got_error_msg(GOT_ERR_PARSE_CONFIG,
224 257add31 2020-09-09 stsp "name required for remote repository");
225 257add31 2020-09-09 stsp }
226 257add31 2020-09-09 stsp
227 257add31 2020-09-09 stsp TAILQ_FOREACH(repo2, &gotconfig->remotes, entry) {
228 257add31 2020-09-09 stsp if (repo == repo2 ||
229 257add31 2020-09-09 stsp strcmp(repo->name, repo2->name) != 0)
230 257add31 2020-09-09 stsp continue;
231 257add31 2020-09-09 stsp snprintf(msg, sizeof(msg),
232 257add31 2020-09-09 stsp "duplicate remote repository name '%s'",
233 257add31 2020-09-09 stsp repo->name);
234 257add31 2020-09-09 stsp return got_error_msg(GOT_ERR_PARSE_CONFIG, msg);
235 257add31 2020-09-09 stsp }
236 257add31 2020-09-09 stsp
237 257add31 2020-09-09 stsp if (repo->server == NULL) {
238 257add31 2020-09-09 stsp snprintf(msg, sizeof(msg),
239 257add31 2020-09-09 stsp "server required for remote repository \"%s\"",
240 257add31 2020-09-09 stsp repo->name);
241 257add31 2020-09-09 stsp return got_error_msg(GOT_ERR_PARSE_CONFIG, msg);
242 257add31 2020-09-09 stsp }
243 257add31 2020-09-09 stsp
244 257add31 2020-09-09 stsp if (repo->protocol == NULL) {
245 257add31 2020-09-09 stsp snprintf(msg, sizeof(msg),
246 257add31 2020-09-09 stsp "protocol required for remote repository \"%s\"",
247 257add31 2020-09-09 stsp repo->name);
248 257add31 2020-09-09 stsp return got_error_msg(GOT_ERR_PARSE_CONFIG, msg);
249 257add31 2020-09-09 stsp }
250 257add31 2020-09-09 stsp if (strcmp(repo->protocol, "ssh") != 0 &&
251 257add31 2020-09-09 stsp strcmp(repo->protocol, "git+ssh") != 0 &&
252 257add31 2020-09-09 stsp strcmp(repo->protocol, "git") != 0) {
253 257add31 2020-09-09 stsp snprintf(msg, sizeof(msg),"unknown protocol \"%s\" "
254 257add31 2020-09-09 stsp "for remote repository \"%s\"", repo->protocol,
255 257add31 2020-09-09 stsp repo->name);
256 257add31 2020-09-09 stsp return got_error_msg(GOT_ERR_PARSE_CONFIG, msg);
257 257add31 2020-09-09 stsp }
258 257add31 2020-09-09 stsp
259 257add31 2020-09-09 stsp if (repo->repository == NULL) {
260 257add31 2020-09-09 stsp snprintf(msg, sizeof(msg),
261 257add31 2020-09-09 stsp "repository path required for remote "
262 257add31 2020-09-09 stsp "repository \"%s\"", repo->name);
263 257add31 2020-09-09 stsp return got_error_msg(GOT_ERR_PARSE_CONFIG, msg);
264 257add31 2020-09-09 stsp }
265 257add31 2020-09-09 stsp }
266 257add31 2020-09-09 stsp
267 257add31 2020-09-09 stsp return NULL;
268 257add31 2020-09-09 stsp }
269 257add31 2020-09-09 stsp
270 257add31 2020-09-09 stsp int
271 257add31 2020-09-09 stsp main(int argc, char *argv[])
272 257add31 2020-09-09 stsp {
273 257add31 2020-09-09 stsp const struct got_error *err = NULL;
274 257add31 2020-09-09 stsp struct imsgbuf ibuf;
275 53dfa00d 2020-09-10 stsp struct gotconfig *gotconfig = NULL;
276 257add31 2020-09-09 stsp size_t datalen;
277 257add31 2020-09-09 stsp const char *filename = "got.conf";
278 257add31 2020-09-09 stsp #if 0
279 257add31 2020-09-09 stsp static int attached;
280 257add31 2020-09-09 stsp
281 257add31 2020-09-09 stsp while (!attached)
282 257add31 2020-09-09 stsp sleep(1);
283 257add31 2020-09-09 stsp #endif
284 257add31 2020-09-09 stsp signal(SIGINT, catch_sigint);
285 257add31 2020-09-09 stsp
286 257add31 2020-09-09 stsp imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
287 257add31 2020-09-09 stsp
288 257add31 2020-09-09 stsp #ifndef PROFILE
289 257add31 2020-09-09 stsp /* revoke access to most system calls */
290 257add31 2020-09-09 stsp if (pledge("stdio recvfd", NULL) == -1) {
291 257add31 2020-09-09 stsp err = got_error_from_errno("pledge");
292 257add31 2020-09-09 stsp got_privsep_send_error(&ibuf, err);
293 257add31 2020-09-09 stsp return 1;
294 257add31 2020-09-09 stsp }
295 257add31 2020-09-09 stsp #endif
296 257add31 2020-09-09 stsp
297 257add31 2020-09-09 stsp if (argc > 1)
298 257add31 2020-09-09 stsp filename = argv[1];
299 257add31 2020-09-09 stsp
300 257add31 2020-09-09 stsp for (;;) {
301 257add31 2020-09-09 stsp struct imsg imsg;
302 257add31 2020-09-09 stsp
303 257add31 2020-09-09 stsp memset(&imsg, 0, sizeof(imsg));
304 257add31 2020-09-09 stsp imsg.fd = -1;
305 257add31 2020-09-09 stsp
306 257add31 2020-09-09 stsp if (sigint_received) {
307 257add31 2020-09-09 stsp err = got_error(GOT_ERR_CANCELLED);
308 257add31 2020-09-09 stsp break;
309 257add31 2020-09-09 stsp }
310 257add31 2020-09-09 stsp
311 257add31 2020-09-09 stsp err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
312 257add31 2020-09-09 stsp if (err) {
313 257add31 2020-09-09 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
314 257add31 2020-09-09 stsp err = NULL;
315 257add31 2020-09-09 stsp break;
316 257add31 2020-09-09 stsp }
317 257add31 2020-09-09 stsp
318 257add31 2020-09-09 stsp if (imsg.hdr.type == GOT_IMSG_STOP)
319 257add31 2020-09-09 stsp break;
320 257add31 2020-09-09 stsp
321 257add31 2020-09-09 stsp switch (imsg.hdr.type) {
322 257add31 2020-09-09 stsp case GOT_IMSG_GOTCONFIG_PARSE_REQUEST:
323 257add31 2020-09-09 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
324 257add31 2020-09-09 stsp if (datalen != 0) {
325 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
326 257add31 2020-09-09 stsp break;
327 257add31 2020-09-09 stsp }
328 257add31 2020-09-09 stsp if (imsg.fd == -1){
329 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_NO_FD);
330 257add31 2020-09-09 stsp break;
331 257add31 2020-09-09 stsp }
332 257add31 2020-09-09 stsp
333 257add31 2020-09-09 stsp if (gotconfig)
334 257add31 2020-09-09 stsp gotconfig_free(gotconfig);
335 257add31 2020-09-09 stsp err = gotconfig_parse(&gotconfig, filename, &imsg.fd);
336 257add31 2020-09-09 stsp if (err)
337 257add31 2020-09-09 stsp break;
338 257add31 2020-09-09 stsp err = validate_config(gotconfig);
339 257add31 2020-09-09 stsp break;
340 257add31 2020-09-09 stsp case GOT_IMSG_GOTCONFIG_AUTHOR_REQUEST:
341 257add31 2020-09-09 stsp if (gotconfig == NULL) {
342 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
343 257add31 2020-09-09 stsp break;
344 257add31 2020-09-09 stsp }
345 257add31 2020-09-09 stsp err = send_gotconfig_str(&ibuf,
346 257add31 2020-09-09 stsp gotconfig->author ? gotconfig->author : "");
347 257add31 2020-09-09 stsp break;
348 257add31 2020-09-09 stsp case GOT_IMSG_GOTCONFIG_REMOTES_REQUEST:
349 257add31 2020-09-09 stsp if (gotconfig == NULL) {
350 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
351 257add31 2020-09-09 stsp break;
352 257add31 2020-09-09 stsp }
353 257add31 2020-09-09 stsp err = send_gotconfig_remotes(&ibuf,
354 257add31 2020-09-09 stsp &gotconfig->remotes, gotconfig->nremotes);
355 257add31 2020-09-09 stsp break;
356 257add31 2020-09-09 stsp default:
357 257add31 2020-09-09 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
358 257add31 2020-09-09 stsp break;
359 257add31 2020-09-09 stsp }
360 257add31 2020-09-09 stsp
361 257add31 2020-09-09 stsp if (imsg.fd != -1) {
362 257add31 2020-09-09 stsp if (close(imsg.fd) == -1 && err == NULL)
363 257add31 2020-09-09 stsp err = got_error_from_errno("close");
364 257add31 2020-09-09 stsp }
365 257add31 2020-09-09 stsp
366 257add31 2020-09-09 stsp imsg_free(&imsg);
367 257add31 2020-09-09 stsp if (err)
368 257add31 2020-09-09 stsp break;
369 257add31 2020-09-09 stsp }
370 257add31 2020-09-09 stsp
371 257add31 2020-09-09 stsp imsg_clear(&ibuf);
372 257add31 2020-09-09 stsp if (err) {
373 257add31 2020-09-09 stsp if (!sigint_received && err->code != GOT_ERR_PRIVSEP_PIPE) {
374 257add31 2020-09-09 stsp fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
375 257add31 2020-09-09 stsp got_privsep_send_error(&ibuf, err);
376 257add31 2020-09-09 stsp }
377 257add31 2020-09-09 stsp }
378 257add31 2020-09-09 stsp if (close(GOT_IMSG_FD_CHILD) != 0 && err == NULL)
379 257add31 2020-09-09 stsp err = got_error_from_errno("close");
380 257add31 2020-09-09 stsp return err ? 1 : 0;
381 257add31 2020-09-09 stsp }