Blame


1 e9ce266e 2022-03-07 op /*
2 e9ce266e 2022-03-07 op * Copyright (c) 2022 Omar Polo <op@openbsd.org>
3 e9ce266e 2022-03-07 op *
4 e9ce266e 2022-03-07 op * Permission to use, copy, modify, and distribute this software for any
5 e9ce266e 2022-03-07 op * purpose with or without fee is hereby granted, provided that the above
6 e9ce266e 2022-03-07 op * copyright notice and this permission notice appear in all copies.
7 e9ce266e 2022-03-07 op *
8 e9ce266e 2022-03-07 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 e9ce266e 2022-03-07 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 e9ce266e 2022-03-07 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 e9ce266e 2022-03-07 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 e9ce266e 2022-03-07 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 e9ce266e 2022-03-07 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 e9ce266e 2022-03-07 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 e9ce266e 2022-03-07 op *
16 e9ce266e 2022-03-07 op * Apply patches.
17 e9ce266e 2022-03-07 op *
18 e9ce266e 2022-03-07 op * Things that are still missing:
19 e9ce266e 2022-03-07 op * + "No final newline" handling
20 e9ce266e 2022-03-07 op *
21 e9ce266e 2022-03-07 op * Things that we may want to support:
22 e9ce266e 2022-03-07 op * + support indented patches?
23 e9ce266e 2022-03-07 op * + support other kinds of patches?
24 e9ce266e 2022-03-07 op */
25 e9ce266e 2022-03-07 op
26 e9ce266e 2022-03-07 op #include <sys/types.h>
27 e9ce266e 2022-03-07 op #include <sys/queue.h>
28 e9ce266e 2022-03-07 op #include <sys/socket.h>
29 5b67f96e 2022-03-13 op #include <sys/stat.h>
30 e9ce266e 2022-03-07 op #include <sys/uio.h>
31 e9ce266e 2022-03-07 op
32 dbda770b 2022-03-13 op #include <errno.h>
33 e9ce266e 2022-03-07 op #include <limits.h>
34 e9ce266e 2022-03-07 op #include <sha1.h>
35 e9ce266e 2022-03-07 op #include <stdint.h>
36 e9ce266e 2022-03-07 op #include <stdio.h>
37 e9ce266e 2022-03-07 op #include <stdlib.h>
38 e9ce266e 2022-03-07 op #include <string.h>
39 e9ce266e 2022-03-07 op #include <unistd.h>
40 e9ce266e 2022-03-07 op #include <imsg.h>
41 e9ce266e 2022-03-07 op
42 e9ce266e 2022-03-07 op #include "got_error.h"
43 e9ce266e 2022-03-07 op #include "got_object.h"
44 e9ce266e 2022-03-07 op #include "got_path.h"
45 e9ce266e 2022-03-07 op #include "got_reference.h"
46 e9ce266e 2022-03-07 op #include "got_cancel.h"
47 e9ce266e 2022-03-07 op #include "got_worktree.h"
48 e9ce266e 2022-03-07 op #include "got_opentemp.h"
49 e9ce266e 2022-03-07 op #include "got_patch.h"
50 e9ce266e 2022-03-07 op
51 e9ce266e 2022-03-07 op #include "got_lib_delta.h"
52 e9ce266e 2022-03-07 op #include "got_lib_object.h"
53 e9ce266e 2022-03-07 op #include "got_lib_privsep.h"
54 e9ce266e 2022-03-07 op
55 e9ce266e 2022-03-07 op #define MIN(a, b) ((a) < (b) ? (a) : (b))
56 e9ce266e 2022-03-07 op
57 e9ce266e 2022-03-07 op struct got_patch_hunk {
58 e9ce266e 2022-03-07 op STAILQ_ENTRY(got_patch_hunk) entries;
59 e9ce266e 2022-03-07 op long old_from;
60 e9ce266e 2022-03-07 op long old_lines;
61 e9ce266e 2022-03-07 op long new_from;
62 e9ce266e 2022-03-07 op long new_lines;
63 e9ce266e 2022-03-07 op size_t len;
64 e9ce266e 2022-03-07 op size_t cap;
65 e9ce266e 2022-03-07 op char **lines;
66 e9ce266e 2022-03-07 op };
67 e9ce266e 2022-03-07 op
68 e9ce266e 2022-03-07 op struct got_patch {
69 899fcfdf 2022-03-13 op int nop;
70 e9ce266e 2022-03-07 op char *old;
71 e9ce266e 2022-03-07 op char *new;
72 e9ce266e 2022-03-07 op STAILQ_HEAD(, got_patch_hunk) head;
73 e9ce266e 2022-03-07 op };
74 e9ce266e 2022-03-07 op
75 e9ce266e 2022-03-07 op static const struct got_error *
76 e9ce266e 2022-03-07 op send_patch(struct imsgbuf *ibuf, int fd)
77 e9ce266e 2022-03-07 op {
78 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
79 e9ce266e 2022-03-07 op
80 e9ce266e 2022-03-07 op if (imsg_compose(ibuf, GOT_IMSG_PATCH_FILE, 0, 0, fd,
81 e9ce266e 2022-03-07 op NULL, 0) == -1) {
82 e9ce266e 2022-03-07 op err = got_error_from_errno(
83 e9ce266e 2022-03-07 op "imsg_compose GOT_IMSG_PATCH_FILE");
84 e9ce266e 2022-03-07 op close(fd);
85 e9ce266e 2022-03-07 op return err;
86 e9ce266e 2022-03-07 op }
87 e9ce266e 2022-03-07 op
88 e9ce266e 2022-03-07 op if (imsg_flush(ibuf) == -1) {
89 e9ce266e 2022-03-07 op err = got_error_from_errno("imsg_flush");
90 e9ce266e 2022-03-07 op imsg_clear(ibuf);
91 e9ce266e 2022-03-07 op }
92 e9ce266e 2022-03-07 op
93 e9ce266e 2022-03-07 op return err;
94 e9ce266e 2022-03-07 op }
95 e9ce266e 2022-03-07 op
96 e9ce266e 2022-03-07 op static void
97 e9ce266e 2022-03-07 op patch_free(struct got_patch *p)
98 e9ce266e 2022-03-07 op {
99 e9ce266e 2022-03-07 op struct got_patch_hunk *h;
100 e9ce266e 2022-03-07 op size_t i;
101 e9ce266e 2022-03-07 op
102 e9ce266e 2022-03-07 op while (!STAILQ_EMPTY(&p->head)) {
103 e9ce266e 2022-03-07 op h = STAILQ_FIRST(&p->head);
104 e9ce266e 2022-03-07 op STAILQ_REMOVE_HEAD(&p->head, entries);
105 e9ce266e 2022-03-07 op
106 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i)
107 e9ce266e 2022-03-07 op free(h->lines[i]);
108 e9ce266e 2022-03-07 op free(h->lines);
109 e9ce266e 2022-03-07 op free(h);
110 e9ce266e 2022-03-07 op }
111 e9ce266e 2022-03-07 op
112 e9ce266e 2022-03-07 op free(p->new);
113 e9ce266e 2022-03-07 op free(p->old);
114 e9ce266e 2022-03-07 op }
115 e9ce266e 2022-03-07 op
116 e9ce266e 2022-03-07 op static const struct got_error *
117 e9ce266e 2022-03-07 op pushline(struct got_patch_hunk *h, const char *line)
118 e9ce266e 2022-03-07 op {
119 e9ce266e 2022-03-07 op void *t;
120 e9ce266e 2022-03-07 op size_t newcap;
121 e9ce266e 2022-03-07 op
122 e9ce266e 2022-03-07 op if (h->len == h->cap) {
123 e9ce266e 2022-03-07 op if ((newcap = h->cap * 1.5) == 0)
124 e9ce266e 2022-03-07 op newcap = 16;
125 e9ce266e 2022-03-07 op t = recallocarray(h->lines, h->cap, newcap,
126 e9ce266e 2022-03-07 op sizeof(h->lines[0]));
127 e9ce266e 2022-03-07 op if (t == NULL)
128 e9ce266e 2022-03-07 op return got_error_from_errno("recallocarray");
129 e9ce266e 2022-03-07 op h->lines = t;
130 e9ce266e 2022-03-07 op h->cap = newcap;
131 e9ce266e 2022-03-07 op }
132 e9ce266e 2022-03-07 op
133 e9ce266e 2022-03-07 op if ((t = strdup(line)) == NULL)
134 e9ce266e 2022-03-07 op return got_error_from_errno("strdup");
135 e9ce266e 2022-03-07 op
136 e9ce266e 2022-03-07 op h->lines[h->len++] = t;
137 e9ce266e 2022-03-07 op return NULL;
138 e9ce266e 2022-03-07 op }
139 e9ce266e 2022-03-07 op
140 e9ce266e 2022-03-07 op static const struct got_error *
141 e9ce266e 2022-03-07 op recv_patch(struct imsgbuf *ibuf, int *done, struct got_patch *p)
142 e9ce266e 2022-03-07 op {
143 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
144 e9ce266e 2022-03-07 op struct imsg imsg;
145 e9ce266e 2022-03-07 op struct got_imsg_patch_hunk hdr;
146 e9ce266e 2022-03-07 op struct got_imsg_patch patch;
147 e9ce266e 2022-03-07 op struct got_patch_hunk *h = NULL;
148 e9ce266e 2022-03-07 op size_t datalen;
149 e9ce266e 2022-03-07 op
150 e9ce266e 2022-03-07 op memset(p, 0, sizeof(*p));
151 e9ce266e 2022-03-07 op STAILQ_INIT(&p->head);
152 e9ce266e 2022-03-07 op
153 e9ce266e 2022-03-07 op err = got_privsep_recv_imsg(&imsg, ibuf, 0);
154 e9ce266e 2022-03-07 op if (err)
155 e9ce266e 2022-03-07 op return err;
156 e9ce266e 2022-03-07 op if (imsg.hdr.type == GOT_IMSG_PATCH_EOF) {
157 e9ce266e 2022-03-07 op *done = 1;
158 e9ce266e 2022-03-07 op goto done;
159 e9ce266e 2022-03-07 op }
160 e9ce266e 2022-03-07 op if (imsg.hdr.type != GOT_IMSG_PATCH) {
161 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
162 e9ce266e 2022-03-07 op goto done;
163 e9ce266e 2022-03-07 op }
164 e9ce266e 2022-03-07 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
165 e9ce266e 2022-03-07 op if (datalen != sizeof(patch)) {
166 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_LEN);
167 e9ce266e 2022-03-07 op goto done;
168 e9ce266e 2022-03-07 op }
169 e9ce266e 2022-03-07 op memcpy(&patch, imsg.data, sizeof(patch));
170 e9ce266e 2022-03-07 op if (*patch.old != '\0' && (p->old = strdup(patch.old)) == NULL) {
171 e9ce266e 2022-03-07 op err = got_error_from_errno("strdup");
172 e9ce266e 2022-03-07 op goto done;
173 e9ce266e 2022-03-07 op }
174 e9ce266e 2022-03-07 op if (*patch.new != '\0' && (p->new = strdup(patch.new)) == NULL) {
175 e9ce266e 2022-03-07 op err = got_error_from_errno("strdup");
176 e9ce266e 2022-03-07 op goto done;
177 e9ce266e 2022-03-07 op }
178 b95c53df 2022-03-12 op if (p->old == NULL && p->new == NULL) {
179 b95c53df 2022-03-12 op err = got_error(GOT_ERR_PATCH_MALFORMED);
180 b95c53df 2022-03-12 op goto done;
181 b95c53df 2022-03-12 op }
182 e9ce266e 2022-03-07 op
183 e9ce266e 2022-03-07 op imsg_free(&imsg);
184 e9ce266e 2022-03-07 op
185 e9ce266e 2022-03-07 op for (;;) {
186 e9ce266e 2022-03-07 op char *t;
187 e9ce266e 2022-03-07 op
188 e9ce266e 2022-03-07 op err = got_privsep_recv_imsg(&imsg, ibuf, 0);
189 e9ce266e 2022-03-07 op if (err)
190 e9ce266e 2022-03-07 op return err;
191 e9ce266e 2022-03-07 op
192 e9ce266e 2022-03-07 op switch (imsg.hdr.type) {
193 e9ce266e 2022-03-07 op case GOT_IMSG_PATCH_DONE:
194 e9ce266e 2022-03-07 op goto done;
195 e9ce266e 2022-03-07 op case GOT_IMSG_PATCH_HUNK:
196 e9ce266e 2022-03-07 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
197 e9ce266e 2022-03-07 op if (datalen != sizeof(hdr)) {
198 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_LEN);
199 e9ce266e 2022-03-07 op goto done;
200 e9ce266e 2022-03-07 op }
201 e9ce266e 2022-03-07 op memcpy(&hdr, imsg.data, sizeof(hdr));
202 e9ce266e 2022-03-07 op if ((h = calloc(1, sizeof(*h))) == NULL) {
203 e9ce266e 2022-03-07 op err = got_error_from_errno("calloc");
204 e9ce266e 2022-03-07 op goto done;
205 e9ce266e 2022-03-07 op }
206 e9ce266e 2022-03-07 op h->old_from = hdr.oldfrom;
207 e9ce266e 2022-03-07 op h->old_lines = hdr.oldlines;
208 e9ce266e 2022-03-07 op h->new_from = hdr.newfrom;
209 e9ce266e 2022-03-07 op h->new_lines = hdr.newlines;
210 e9ce266e 2022-03-07 op STAILQ_INSERT_TAIL(&p->head, h, entries);
211 e9ce266e 2022-03-07 op break;
212 e9ce266e 2022-03-07 op case GOT_IMSG_PATCH_LINE:
213 e9ce266e 2022-03-07 op if (h == NULL) {
214 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
215 e9ce266e 2022-03-07 op goto done;
216 e9ce266e 2022-03-07 op }
217 e9ce266e 2022-03-07 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
218 e9ce266e 2022-03-07 op t = imsg.data;
219 e9ce266e 2022-03-07 op /* at least one char plus newline */
220 e9ce266e 2022-03-07 op if (datalen < 2 || t[datalen-1] != '\0') {
221 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
222 e9ce266e 2022-03-07 op goto done;
223 e9ce266e 2022-03-07 op }
224 e9ce266e 2022-03-07 op if (*t != ' ' && *t != '-' && *t != '+') {
225 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
226 e9ce266e 2022-03-07 op goto done;
227 e9ce266e 2022-03-07 op }
228 e9ce266e 2022-03-07 op err = pushline(h, t);
229 e9ce266e 2022-03-07 op if (err)
230 e9ce266e 2022-03-07 op goto done;
231 e9ce266e 2022-03-07 op break;
232 e9ce266e 2022-03-07 op default:
233 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
234 e9ce266e 2022-03-07 op goto done;
235 e9ce266e 2022-03-07 op }
236 e9ce266e 2022-03-07 op
237 e9ce266e 2022-03-07 op imsg_free(&imsg);
238 e9ce266e 2022-03-07 op }
239 e9ce266e 2022-03-07 op
240 e9ce266e 2022-03-07 op done:
241 e9ce266e 2022-03-07 op imsg_free(&imsg);
242 e9ce266e 2022-03-07 op return err;
243 e9ce266e 2022-03-07 op }
244 e9ce266e 2022-03-07 op
245 e9ce266e 2022-03-07 op /*
246 e9ce266e 2022-03-07 op * Copy data from orig starting at copypos until pos into tmp.
247 e9ce266e 2022-03-07 op * If pos is -1, copy until EOF.
248 e9ce266e 2022-03-07 op */
249 e9ce266e 2022-03-07 op static const struct got_error *
250 e9ce266e 2022-03-07 op copy(FILE *tmp, FILE *orig, off_t copypos, off_t pos)
251 e9ce266e 2022-03-07 op {
252 e9ce266e 2022-03-07 op char buf[BUFSIZ];
253 e9ce266e 2022-03-07 op size_t len, r, w;
254 e9ce266e 2022-03-07 op
255 e9ce266e 2022-03-07 op if (fseek(orig, copypos, SEEK_SET) == -1)
256 e9ce266e 2022-03-07 op return got_error_from_errno("fseek");
257 e9ce266e 2022-03-07 op
258 e9ce266e 2022-03-07 op while (pos == -1 || copypos < pos) {
259 e9ce266e 2022-03-07 op len = sizeof(buf);
260 e9ce266e 2022-03-07 op if (pos > 0)
261 e9ce266e 2022-03-07 op len = MIN(len, (size_t)pos - copypos);
262 e9ce266e 2022-03-07 op r = fread(buf, 1, len, orig);
263 e9ce266e 2022-03-07 op if (r != len && ferror(orig))
264 e9ce266e 2022-03-07 op return got_error_from_errno("fread");
265 e9ce266e 2022-03-07 op w = fwrite(buf, 1, r, tmp);
266 e9ce266e 2022-03-07 op if (w != r)
267 e9ce266e 2022-03-07 op return got_error_from_errno("fwrite");
268 e9ce266e 2022-03-07 op copypos += len;
269 e9ce266e 2022-03-07 op if (r != len && feof(orig)) {
270 e9ce266e 2022-03-07 op if (pos == -1)
271 e9ce266e 2022-03-07 op return NULL;
272 e9ce266e 2022-03-07 op return got_error(GOT_ERR_PATCH_DONT_APPLY);
273 e9ce266e 2022-03-07 op }
274 e9ce266e 2022-03-07 op }
275 e9ce266e 2022-03-07 op return NULL;
276 e9ce266e 2022-03-07 op }
277 e9ce266e 2022-03-07 op
278 e9ce266e 2022-03-07 op static const struct got_error *
279 33df9995 2022-03-11 op locate_hunk(FILE *orig, struct got_patch_hunk *h, off_t *pos, long *lineno)
280 e9ce266e 2022-03-07 op {
281 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
282 e9ce266e 2022-03-07 op char *line = NULL;
283 e9ce266e 2022-03-07 op char mode = *h->lines[0];
284 e9ce266e 2022-03-07 op size_t linesize = 0;
285 e9ce266e 2022-03-07 op ssize_t linelen;
286 e9ce266e 2022-03-07 op off_t match = -1;
287 e9ce266e 2022-03-07 op long match_lineno = -1;
288 e9ce266e 2022-03-07 op
289 e9ce266e 2022-03-07 op for (;;) {
290 e9ce266e 2022-03-07 op linelen = getline(&line, &linesize, orig);
291 e9ce266e 2022-03-07 op if (linelen == -1) {
292 e9ce266e 2022-03-07 op if (ferror(orig))
293 e9ce266e 2022-03-07 op err = got_error_from_errno("getline");
294 e9ce266e 2022-03-07 op else if (match == -1)
295 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PATCH_DONT_APPLY);
296 e9ce266e 2022-03-07 op break;
297 e9ce266e 2022-03-07 op }
298 e9ce266e 2022-03-07 op (*lineno)++;
299 e9ce266e 2022-03-07 op
300 e9ce266e 2022-03-07 op if ((mode == ' ' && !strcmp(h->lines[0]+1, line)) ||
301 e9ce266e 2022-03-07 op (mode == '-' && !strcmp(h->lines[0]+1, line)) ||
302 e9ce266e 2022-03-07 op (mode == '+' && *lineno == h->old_from)) {
303 e9ce266e 2022-03-07 op match = ftello(orig);
304 e9ce266e 2022-03-07 op if (match == -1) {
305 e9ce266e 2022-03-07 op err = got_error_from_errno("ftello");
306 e9ce266e 2022-03-07 op break;
307 e9ce266e 2022-03-07 op }
308 e9ce266e 2022-03-07 op match -= linelen;
309 e9ce266e 2022-03-07 op match_lineno = (*lineno)-1;
310 e9ce266e 2022-03-07 op }
311 e9ce266e 2022-03-07 op
312 e9ce266e 2022-03-07 op if (*lineno >= h->old_from && match != -1)
313 e9ce266e 2022-03-07 op break;
314 e9ce266e 2022-03-07 op }
315 e9ce266e 2022-03-07 op
316 e9ce266e 2022-03-07 op if (err == NULL) {
317 33df9995 2022-03-11 op *pos = match;
318 e9ce266e 2022-03-07 op *lineno = match_lineno;
319 e9ce266e 2022-03-07 op if (fseek(orig, match, SEEK_SET) == -1)
320 e9ce266e 2022-03-07 op err = got_error_from_errno("fseek");
321 e9ce266e 2022-03-07 op }
322 e9ce266e 2022-03-07 op
323 e9ce266e 2022-03-07 op free(line);
324 e9ce266e 2022-03-07 op return err;
325 e9ce266e 2022-03-07 op }
326 e9ce266e 2022-03-07 op
327 e9ce266e 2022-03-07 op static const struct got_error *
328 e9ce266e 2022-03-07 op test_hunk(FILE *orig, struct got_patch_hunk *h)
329 e9ce266e 2022-03-07 op {
330 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
331 e9ce266e 2022-03-07 op char *line = NULL;
332 e9ce266e 2022-03-07 op size_t linesize = 0, i = 0;
333 e9ce266e 2022-03-07 op ssize_t linelen;
334 e9ce266e 2022-03-07 op
335 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i) {
336 e9ce266e 2022-03-07 op switch (*h->lines[i]) {
337 e9ce266e 2022-03-07 op case '+':
338 e9ce266e 2022-03-07 op continue;
339 e9ce266e 2022-03-07 op case ' ':
340 e9ce266e 2022-03-07 op case '-':
341 e9ce266e 2022-03-07 op linelen = getline(&line, &linesize, orig);
342 e9ce266e 2022-03-07 op if (linelen == -1) {
343 e9ce266e 2022-03-07 op if (ferror(orig))
344 e9ce266e 2022-03-07 op err = got_error_from_errno("getline");
345 e9ce266e 2022-03-07 op else
346 e9ce266e 2022-03-07 op err = got_error(
347 e9ce266e 2022-03-07 op GOT_ERR_PATCH_DONT_APPLY);
348 e9ce266e 2022-03-07 op goto done;
349 e9ce266e 2022-03-07 op }
350 e9ce266e 2022-03-07 op if (strcmp(h->lines[i]+1, line)) {
351 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PATCH_DONT_APPLY);
352 e9ce266e 2022-03-07 op goto done;
353 e9ce266e 2022-03-07 op }
354 e9ce266e 2022-03-07 op break;
355 e9ce266e 2022-03-07 op }
356 e9ce266e 2022-03-07 op }
357 e9ce266e 2022-03-07 op
358 e9ce266e 2022-03-07 op done:
359 e9ce266e 2022-03-07 op free(line);
360 e9ce266e 2022-03-07 op return err;
361 e9ce266e 2022-03-07 op }
362 e9ce266e 2022-03-07 op
363 e9ce266e 2022-03-07 op static const struct got_error *
364 e9ce266e 2022-03-07 op apply_hunk(FILE *tmp, struct got_patch_hunk *h, long *lineno)
365 e9ce266e 2022-03-07 op {
366 e9ce266e 2022-03-07 op size_t i = 0;
367 e9ce266e 2022-03-07 op
368 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i) {
369 e9ce266e 2022-03-07 op switch (*h->lines[i]) {
370 e9ce266e 2022-03-07 op case ' ':
371 e9ce266e 2022-03-07 op if (fprintf(tmp, "%s", h->lines[i]+1) < 0)
372 e9ce266e 2022-03-07 op return got_error_from_errno("fprintf");
373 e9ce266e 2022-03-07 op /* fallthrough */
374 e9ce266e 2022-03-07 op case '-':
375 e9ce266e 2022-03-07 op (*lineno)++;
376 e9ce266e 2022-03-07 op break;
377 e9ce266e 2022-03-07 op case '+':
378 e9ce266e 2022-03-07 op if (fprintf(tmp, "%s", h->lines[i]+1) < 0)
379 e9ce266e 2022-03-07 op return got_error_from_errno("fprintf");
380 e9ce266e 2022-03-07 op break;
381 e9ce266e 2022-03-07 op }
382 e9ce266e 2022-03-07 op }
383 e9ce266e 2022-03-07 op return NULL;
384 6e96b326 2022-03-12 op }
385 e9ce266e 2022-03-07 op
386 6e96b326 2022-03-12 op static const struct got_error *
387 6e96b326 2022-03-12 op patch_file(struct got_patch *p, const char *path, FILE *tmp)
388 6e96b326 2022-03-12 op {
389 6e96b326 2022-03-12 op const struct got_error *err = NULL;
390 6e96b326 2022-03-12 op struct got_patch_hunk *h;
391 6e96b326 2022-03-12 op size_t i;
392 6e96b326 2022-03-12 op long lineno = 0;
393 6e96b326 2022-03-12 op FILE *orig;
394 6e96b326 2022-03-12 op off_t copypos, pos;
395 6e96b326 2022-03-12 op char *line = NULL;
396 6e96b326 2022-03-12 op size_t linesize = 0;
397 6e96b326 2022-03-12 op ssize_t linelen;
398 6f5cb1bd 2022-03-08 op
399 e9ce266e 2022-03-07 op if (p->old == NULL) { /* create */
400 e9ce266e 2022-03-07 op h = STAILQ_FIRST(&p->head);
401 6e96b326 2022-03-12 op if (h == NULL || STAILQ_NEXT(h, entries) != NULL)
402 6e96b326 2022-03-12 op return got_error(GOT_ERR_PATCH_MALFORMED);
403 899fcfdf 2022-03-13 op if (p->nop)
404 899fcfdf 2022-03-13 op return NULL;
405 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i) {
406 6e96b326 2022-03-12 op if (fprintf(tmp, "%s", h->lines[i]+1) < 0)
407 6e96b326 2022-03-12 op return got_error_from_errno("fprintf");
408 e9ce266e 2022-03-07 op }
409 6e96b326 2022-03-12 op return err;
410 e9ce266e 2022-03-07 op }
411 e9ce266e 2022-03-07 op
412 e9ce266e 2022-03-07 op if ((orig = fopen(path, "r")) == NULL) {
413 e9ce266e 2022-03-07 op err = got_error_from_errno2("fopen", path);
414 e9ce266e 2022-03-07 op goto done;
415 e9ce266e 2022-03-07 op }
416 e9ce266e 2022-03-07 op
417 e9ce266e 2022-03-07 op copypos = 0;
418 e9ce266e 2022-03-07 op STAILQ_FOREACH(h, &p->head, entries) {
419 6e96b326 2022-03-12 op if (h->lines == NULL)
420 6e96b326 2022-03-12 op break;
421 6e96b326 2022-03-12 op
422 e9ce266e 2022-03-07 op tryagain:
423 33df9995 2022-03-11 op err = locate_hunk(orig, h, &pos, &lineno);
424 e9ce266e 2022-03-07 op if (err != NULL)
425 e9ce266e 2022-03-07 op goto done;
426 899fcfdf 2022-03-13 op if (!p->nop)
427 899fcfdf 2022-03-13 op err = copy(tmp, orig, copypos, pos);
428 e9ce266e 2022-03-07 op if (err != NULL)
429 e9ce266e 2022-03-07 op goto done;
430 e9ce266e 2022-03-07 op copypos = pos;
431 e9ce266e 2022-03-07 op
432 e9ce266e 2022-03-07 op err = test_hunk(orig, h);
433 e9ce266e 2022-03-07 op if (err != NULL && err->code == GOT_ERR_PATCH_DONT_APPLY) {
434 e9ce266e 2022-03-07 op /*
435 e9ce266e 2022-03-07 op * try to apply the hunk again starting the search
436 e9ce266e 2022-03-07 op * after the previous partial match.
437 e9ce266e 2022-03-07 op */
438 e9ce266e 2022-03-07 op if (fseek(orig, pos, SEEK_SET) == -1) {
439 e9ce266e 2022-03-07 op err = got_error_from_errno("fseek");
440 e9ce266e 2022-03-07 op goto done;
441 e9ce266e 2022-03-07 op }
442 e9ce266e 2022-03-07 op linelen = getline(&line, &linesize, orig);
443 e9ce266e 2022-03-07 op if (linelen == -1) {
444 e9ce266e 2022-03-07 op err = got_error_from_errno("getline");
445 e9ce266e 2022-03-07 op goto done;
446 e9ce266e 2022-03-07 op }
447 e9ce266e 2022-03-07 op lineno++;
448 e9ce266e 2022-03-07 op goto tryagain;
449 e9ce266e 2022-03-07 op }
450 e9ce266e 2022-03-07 op if (err != NULL)
451 e9ce266e 2022-03-07 op goto done;
452 e9ce266e 2022-03-07 op
453 899fcfdf 2022-03-13 op if (!p->nop)
454 899fcfdf 2022-03-13 op err = apply_hunk(tmp, h, &lineno);
455 e9ce266e 2022-03-07 op if (err != NULL)
456 e9ce266e 2022-03-07 op goto done;
457 e9ce266e 2022-03-07 op
458 e9ce266e 2022-03-07 op copypos = ftello(orig);
459 e9ce266e 2022-03-07 op if (copypos == -1) {
460 e9ce266e 2022-03-07 op err = got_error_from_errno("ftello");
461 e9ce266e 2022-03-07 op goto done;
462 e9ce266e 2022-03-07 op }
463 e9ce266e 2022-03-07 op }
464 e9ce266e 2022-03-07 op
465 5b67f96e 2022-03-13 op
466 5b67f96e 2022-03-13 op if (p->new == NULL) {
467 5b67f96e 2022-03-13 op struct stat sb;
468 5b67f96e 2022-03-13 op
469 5b67f96e 2022-03-13 op if (fstat(fileno(orig), &sb) == -1)
470 5b67f96e 2022-03-13 op err = got_error_from_errno("fstat");
471 5b67f96e 2022-03-13 op else if (sb.st_size != copypos)
472 5b67f96e 2022-03-13 op err = got_error(GOT_ERR_PATCH_DONT_APPLY);
473 899fcfdf 2022-03-13 op } else if (!p->nop && !feof(orig))
474 e9ce266e 2022-03-07 op err = copy(tmp, orig, copypos, -1);
475 6e96b326 2022-03-12 op
476 6e96b326 2022-03-12 op done:
477 6e96b326 2022-03-12 op if (orig != NULL)
478 6e96b326 2022-03-12 op fclose(orig);
479 6e96b326 2022-03-12 op return err;
480 6e96b326 2022-03-12 op }
481 6e96b326 2022-03-12 op
482 6e96b326 2022-03-12 op static const struct got_error *
483 dbda770b 2022-03-13 op build_pathlist(const char *p, char **path, struct got_pathlist_head *head,
484 dbda770b 2022-03-13 op struct got_worktree *worktree)
485 dbda770b 2022-03-13 op {
486 dbda770b 2022-03-13 op const struct got_error *err;
487 dbda770b 2022-03-13 op struct got_pathlist_entry *pe;
488 dbda770b 2022-03-13 op
489 dbda770b 2022-03-13 op err = got_worktree_resolve_path(path, worktree, p);
490 dbda770b 2022-03-13 op if (err == NULL)
491 dbda770b 2022-03-13 op err = got_pathlist_insert(&pe, head, *path, NULL);
492 dbda770b 2022-03-13 op return err;
493 dbda770b 2022-03-13 op }
494 dbda770b 2022-03-13 op
495 dbda770b 2022-03-13 op static const struct got_error *
496 dbda770b 2022-03-13 op can_rm(void *arg, unsigned char status, unsigned char staged_status,
497 dbda770b 2022-03-13 op const char *path, struct got_object_id *blob_id,
498 dbda770b 2022-03-13 op struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
499 dbda770b 2022-03-13 op int dirfd, const char *de_name)
500 dbda770b 2022-03-13 op {
501 dbda770b 2022-03-13 op if (status == GOT_STATUS_NONEXISTENT)
502 dbda770b 2022-03-13 op return got_error_set_errno(ENOENT, path);
503 dbda770b 2022-03-13 op if (status != GOT_STATUS_NO_CHANGE &&
504 dbda770b 2022-03-13 op status != GOT_STATUS_ADD &&
505 dbda770b 2022-03-13 op status != GOT_STATUS_MODIFY &&
506 dbda770b 2022-03-13 op status != GOT_STATUS_MODE_CHANGE)
507 dbda770b 2022-03-13 op return got_error_path(path, GOT_ERR_FILE_STATUS);
508 dbda770b 2022-03-13 op if (staged_status == GOT_STATUS_DELETE)
509 dbda770b 2022-03-13 op return got_error_path(path, GOT_ERR_FILE_STATUS);
510 dbda770b 2022-03-13 op return NULL;
511 dbda770b 2022-03-13 op }
512 dbda770b 2022-03-13 op
513 dbda770b 2022-03-13 op static const struct got_error *
514 dbda770b 2022-03-13 op can_add(void *arg, unsigned char status, unsigned char staged_status,
515 dbda770b 2022-03-13 op const char *path, struct got_object_id *blob_id,
516 dbda770b 2022-03-13 op struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
517 dbda770b 2022-03-13 op int dirfd, const char *de_name)
518 dbda770b 2022-03-13 op {
519 dbda770b 2022-03-13 op if (status != GOT_STATUS_NONEXISTENT)
520 dbda770b 2022-03-13 op return got_error_path(path, GOT_ERR_FILE_STATUS);
521 dbda770b 2022-03-13 op return NULL;
522 dbda770b 2022-03-13 op }
523 dbda770b 2022-03-13 op
524 dbda770b 2022-03-13 op static const struct got_error *
525 dbda770b 2022-03-13 op can_edit(void *arg, unsigned char status, unsigned char staged_status,
526 dbda770b 2022-03-13 op const char *path, struct got_object_id *blob_id,
527 dbda770b 2022-03-13 op struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
528 dbda770b 2022-03-13 op int dirfd, const char *de_name)
529 dbda770b 2022-03-13 op {
530 dbda770b 2022-03-13 op if (status == GOT_STATUS_NONEXISTENT)
531 dbda770b 2022-03-13 op return got_error_set_errno(ENOENT, path);
532 dbda770b 2022-03-13 op if (status != GOT_STATUS_NO_CHANGE &&
533 dbda770b 2022-03-13 op status != GOT_STATUS_ADD &&
534 dbda770b 2022-03-13 op status != GOT_STATUS_MODIFY)
535 dbda770b 2022-03-13 op return got_error_path(path, GOT_ERR_FILE_STATUS);
536 dbda770b 2022-03-13 op if (staged_status == GOT_STATUS_DELETE)
537 dbda770b 2022-03-13 op return got_error_path(path, GOT_ERR_FILE_STATUS);
538 dbda770b 2022-03-13 op return NULL;
539 dbda770b 2022-03-13 op }
540 dbda770b 2022-03-13 op
541 dbda770b 2022-03-13 op static const struct got_error *
542 dbda770b 2022-03-13 op check_file_status(struct got_patch *p, int file_renamed,
543 dbda770b 2022-03-13 op struct got_worktree *worktree, struct got_repository *repo,
544 dbda770b 2022-03-13 op struct got_pathlist_head *old, struct got_pathlist_head *new,
545 dbda770b 2022-03-13 op got_cancel_cb cancel_cb, void *cancel_arg)
546 dbda770b 2022-03-13 op {
547 dbda770b 2022-03-13 op static const struct got_error *err;
548 dbda770b 2022-03-13 op
549 dbda770b 2022-03-13 op if (p->old != NULL && p->new == NULL)
550 dbda770b 2022-03-13 op return got_worktree_status(worktree, old, repo, 0,
551 dbda770b 2022-03-13 op can_rm, NULL, cancel_cb, cancel_arg);
552 dbda770b 2022-03-13 op else if (file_renamed) {
553 dbda770b 2022-03-13 op err = got_worktree_status(worktree, old, repo, 0,
554 dbda770b 2022-03-13 op can_rm, NULL, cancel_cb, cancel_arg);
555 dbda770b 2022-03-13 op if (err)
556 dbda770b 2022-03-13 op return err;
557 dbda770b 2022-03-13 op return got_worktree_status(worktree, new, repo, 0,
558 dbda770b 2022-03-13 op can_add, NULL, cancel_cb, cancel_arg);
559 dbda770b 2022-03-13 op } else if (p->old == NULL)
560 dbda770b 2022-03-13 op return got_worktree_status(worktree, new, repo, 0,
561 dbda770b 2022-03-13 op can_add, NULL, cancel_cb, cancel_arg);
562 dbda770b 2022-03-13 op else
563 dbda770b 2022-03-13 op return got_worktree_status(worktree, new, repo, 0,
564 dbda770b 2022-03-13 op can_edit, NULL, cancel_cb, cancel_arg);
565 dbda770b 2022-03-13 op }
566 dbda770b 2022-03-13 op
567 dbda770b 2022-03-13 op static const struct got_error *
568 6e96b326 2022-03-12 op apply_patch(struct got_worktree *worktree, struct got_repository *repo,
569 6e96b326 2022-03-12 op struct got_patch *p, got_worktree_delete_cb delete_cb, void *delete_arg,
570 dbda770b 2022-03-13 op got_worktree_checkout_cb add_cb, void *add_arg, got_cancel_cb cancel_cb,
571 dbda770b 2022-03-13 op void *cancel_arg)
572 6e96b326 2022-03-12 op {
573 6e96b326 2022-03-12 op const struct got_error *err = NULL;
574 dbda770b 2022-03-13 op struct got_pathlist_head oldpaths, newpaths;
575 6e96b326 2022-03-12 op int file_renamed = 0;
576 6e96b326 2022-03-12 op char *oldpath = NULL, *newpath = NULL;
577 6e96b326 2022-03-12 op char *tmppath = NULL, *template = NULL;
578 6e96b326 2022-03-12 op FILE *tmp = NULL;
579 6e96b326 2022-03-12 op
580 dbda770b 2022-03-13 op TAILQ_INIT(&oldpaths);
581 dbda770b 2022-03-13 op TAILQ_INIT(&newpaths);
582 dbda770b 2022-03-13 op
583 dbda770b 2022-03-13 op err = build_pathlist(p->old != NULL ? p->old : p->new, &oldpath,
584 dbda770b 2022-03-13 op &oldpaths, worktree);
585 6e96b326 2022-03-12 op if (err)
586 6e96b326 2022-03-12 op goto done;
587 6e96b326 2022-03-12 op
588 dbda770b 2022-03-13 op err = build_pathlist(p->new != NULL ? p->new : p->old, &newpath,
589 dbda770b 2022-03-13 op &newpaths, worktree);
590 6e96b326 2022-03-12 op if (err)
591 6e96b326 2022-03-12 op goto done;
592 6e96b326 2022-03-12 op
593 dbda770b 2022-03-13 op if (p->old != NULL && p->new != NULL && strcmp(p->old, p->new))
594 dbda770b 2022-03-13 op file_renamed = 1;
595 dbda770b 2022-03-13 op
596 dbda770b 2022-03-13 op err = check_file_status(p, file_renamed, worktree, repo, &oldpaths,
597 dbda770b 2022-03-13 op &newpaths, cancel_cb, cancel_arg);
598 dbda770b 2022-03-13 op if (err)
599 dbda770b 2022-03-13 op goto done;
600 dbda770b 2022-03-13 op
601 6e96b326 2022-03-12 op if (asprintf(&template, "%s/got-patch",
602 6e96b326 2022-03-12 op got_worktree_get_root_path(worktree)) == -1) {
603 6e96b326 2022-03-12 op err = got_error_from_errno(template);
604 e9ce266e 2022-03-07 op goto done;
605 e9ce266e 2022-03-07 op }
606 e9ce266e 2022-03-07 op
607 899fcfdf 2022-03-13 op if (!p->nop)
608 899fcfdf 2022-03-13 op err = got_opentemp_named(&tmppath, &tmp, template);
609 6e96b326 2022-03-12 op if (err)
610 6e96b326 2022-03-12 op goto done;
611 6e96b326 2022-03-12 op err = patch_file(p, oldpath, tmp);
612 6e96b326 2022-03-12 op if (err)
613 6e96b326 2022-03-12 op goto done;
614 6e96b326 2022-03-12 op
615 899fcfdf 2022-03-13 op if (p->nop)
616 899fcfdf 2022-03-13 op goto done;
617 899fcfdf 2022-03-13 op
618 5b67f96e 2022-03-13 op if (p->old != NULL && p->new == NULL) {
619 5b67f96e 2022-03-13 op err = got_worktree_schedule_delete(worktree, &oldpaths,
620 5b67f96e 2022-03-13 op 0, NULL, delete_cb, delete_arg, repo, 0, 0);
621 5b67f96e 2022-03-13 op goto done;
622 5b67f96e 2022-03-13 op }
623 5b67f96e 2022-03-13 op
624 6e96b326 2022-03-12 op if (rename(tmppath, newpath) == -1) {
625 6e96b326 2022-03-12 op err = got_error_from_errno3("rename", tmppath, newpath);
626 6e96b326 2022-03-12 op goto done;
627 6e96b326 2022-03-12 op }
628 6e96b326 2022-03-12 op
629 6e96b326 2022-03-12 op if (file_renamed) {
630 dbda770b 2022-03-13 op err = got_worktree_schedule_delete(worktree, &oldpaths,
631 dbda770b 2022-03-13 op 0, NULL, delete_cb, delete_arg, repo, 0, 0);
632 6e96b326 2022-03-12 op if (err == NULL)
633 dbda770b 2022-03-13 op err = got_worktree_schedule_add(worktree, &newpaths,
634 dbda770b 2022-03-13 op add_cb, add_arg, repo, 1);
635 6e96b326 2022-03-12 op } else if (p->old == NULL)
636 dbda770b 2022-03-13 op err = got_worktree_schedule_add(worktree, &newpaths,
637 dbda770b 2022-03-13 op add_cb, add_arg, repo, 1);
638 e9ce266e 2022-03-07 op else
639 6e96b326 2022-03-12 op printf("M %s\n", oldpath); /* XXX */
640 6e96b326 2022-03-12 op
641 e9ce266e 2022-03-07 op done:
642 dbda770b 2022-03-13 op if (err != NULL && newpath != NULL && (file_renamed || p->old == NULL))
643 6e96b326 2022-03-12 op unlink(newpath);
644 6f5cb1bd 2022-03-08 op free(template);
645 e9ce266e 2022-03-07 op if (tmppath != NULL)
646 e9ce266e 2022-03-07 op unlink(tmppath);
647 e9ce266e 2022-03-07 op free(tmppath);
648 dbda770b 2022-03-13 op got_pathlist_free(&oldpaths);
649 dbda770b 2022-03-13 op got_pathlist_free(&newpaths);
650 6e96b326 2022-03-12 op free(oldpath);
651 6e96b326 2022-03-12 op free(newpath);
652 e9ce266e 2022-03-07 op return err;
653 e9ce266e 2022-03-07 op }
654 e9ce266e 2022-03-07 op
655 e9ce266e 2022-03-07 op const struct got_error *
656 e9ce266e 2022-03-07 op got_patch(int fd, struct got_worktree *worktree, struct got_repository *repo,
657 899fcfdf 2022-03-13 op int nop, got_worktree_delete_cb delete_cb, void *delete_arg,
658 dbda770b 2022-03-13 op got_worktree_checkout_cb add_cb, void *add_arg, got_cancel_cb cancel_cb,
659 dbda770b 2022-03-13 op void *cancel_arg)
660 e9ce266e 2022-03-07 op {
661 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
662 e9ce266e 2022-03-07 op struct imsgbuf *ibuf;
663 e9ce266e 2022-03-07 op int imsg_fds[2] = {-1, -1};
664 e9ce266e 2022-03-07 op int done = 0;
665 e9ce266e 2022-03-07 op pid_t pid;
666 e9ce266e 2022-03-07 op
667 e9ce266e 2022-03-07 op ibuf = calloc(1, sizeof(*ibuf));
668 e9ce266e 2022-03-07 op if (ibuf == NULL) {
669 e9ce266e 2022-03-07 op err = got_error_from_errno("calloc");
670 e9ce266e 2022-03-07 op goto done;
671 e9ce266e 2022-03-07 op }
672 e9ce266e 2022-03-07 op
673 e9ce266e 2022-03-07 op if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
674 e9ce266e 2022-03-07 op err = got_error_from_errno("socketpair");
675 e9ce266e 2022-03-07 op goto done;
676 e9ce266e 2022-03-07 op }
677 e9ce266e 2022-03-07 op
678 e9ce266e 2022-03-07 op pid = fork();
679 e9ce266e 2022-03-07 op if (pid == -1) {
680 e9ce266e 2022-03-07 op err = got_error_from_errno("fork");
681 e9ce266e 2022-03-07 op goto done;
682 e9ce266e 2022-03-07 op } else if (pid == 0) {
683 e9ce266e 2022-03-07 op got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_PATCH,
684 e9ce266e 2022-03-07 op NULL);
685 e9ce266e 2022-03-07 op /* not reached */
686 e9ce266e 2022-03-07 op }
687 e9ce266e 2022-03-07 op
688 e9ce266e 2022-03-07 op if (close(imsg_fds[1]) == -1) {
689 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
690 e9ce266e 2022-03-07 op goto done;
691 e9ce266e 2022-03-07 op }
692 e9ce266e 2022-03-07 op imsg_fds[1] = -1;
693 e9ce266e 2022-03-07 op imsg_init(ibuf, imsg_fds[0]);
694 e9ce266e 2022-03-07 op
695 e9ce266e 2022-03-07 op err = send_patch(ibuf, fd);
696 e9ce266e 2022-03-07 op fd = -1;
697 e9ce266e 2022-03-07 op if (err)
698 e9ce266e 2022-03-07 op goto done;
699 e9ce266e 2022-03-07 op
700 e9ce266e 2022-03-07 op while (!done && err == NULL) {
701 e9ce266e 2022-03-07 op struct got_patch p;
702 e9ce266e 2022-03-07 op
703 e9ce266e 2022-03-07 op err = recv_patch(ibuf, &done, &p);
704 e9ce266e 2022-03-07 op if (err || done)
705 e9ce266e 2022-03-07 op break;
706 e9ce266e 2022-03-07 op
707 899fcfdf 2022-03-13 op p.nop = nop;
708 d955343d 2022-03-08 op err = apply_patch(worktree, repo, &p, delete_cb, delete_arg,
709 dbda770b 2022-03-13 op add_cb, add_arg, cancel_cb, cancel_arg);
710 e9ce266e 2022-03-07 op patch_free(&p);
711 e9ce266e 2022-03-07 op if (err)
712 e9ce266e 2022-03-07 op break;
713 e9ce266e 2022-03-07 op }
714 e9ce266e 2022-03-07 op
715 e9ce266e 2022-03-07 op done:
716 e9ce266e 2022-03-07 op if (fd != -1 && close(fd) == -1 && err == NULL)
717 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
718 e9ce266e 2022-03-07 op if (ibuf != NULL)
719 e9ce266e 2022-03-07 op imsg_clear(ibuf);
720 e9ce266e 2022-03-07 op if (imsg_fds[0] != -1 && close(imsg_fds[0]) == -1 && err == NULL)
721 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
722 e9ce266e 2022-03-07 op if (imsg_fds[1] != -1 && close(imsg_fds[1]) == -1 && err == NULL)
723 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
724 e9ce266e 2022-03-07 op return err;
725 e9ce266e 2022-03-07 op }