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 60aa1fa0 2022-03-17 op const struct got_error *err;
60 60aa1fa0 2022-03-17 op long offset;
61 e9ce266e 2022-03-07 op long old_from;
62 e9ce266e 2022-03-07 op long old_lines;
63 e9ce266e 2022-03-07 op long new_from;
64 e9ce266e 2022-03-07 op long new_lines;
65 e9ce266e 2022-03-07 op size_t len;
66 e9ce266e 2022-03-07 op size_t cap;
67 e9ce266e 2022-03-07 op char **lines;
68 e9ce266e 2022-03-07 op };
69 e9ce266e 2022-03-07 op
70 60aa1fa0 2022-03-17 op STAILQ_HEAD(got_patch_hunk_head, got_patch_hunk);
71 e9ce266e 2022-03-07 op struct got_patch {
72 e9ce266e 2022-03-07 op char *old;
73 e9ce266e 2022-03-07 op char *new;
74 60aa1fa0 2022-03-17 op struct got_patch_hunk_head head;
75 b22138f5 2022-03-16 op };
76 b22138f5 2022-03-16 op
77 b22138f5 2022-03-16 op struct patch_args {
78 b22138f5 2022-03-16 op got_patch_progress_cb progress_cb;
79 b22138f5 2022-03-16 op void *progress_arg;
80 60aa1fa0 2022-03-17 op struct got_patch_hunk_head *head;
81 e9ce266e 2022-03-07 op };
82 e9ce266e 2022-03-07 op
83 e9ce266e 2022-03-07 op static const struct got_error *
84 e9ce266e 2022-03-07 op send_patch(struct imsgbuf *ibuf, int fd)
85 e9ce266e 2022-03-07 op {
86 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
87 e9ce266e 2022-03-07 op
88 e9ce266e 2022-03-07 op if (imsg_compose(ibuf, GOT_IMSG_PATCH_FILE, 0, 0, fd,
89 e9ce266e 2022-03-07 op NULL, 0) == -1) {
90 e9ce266e 2022-03-07 op err = got_error_from_errno(
91 e9ce266e 2022-03-07 op "imsg_compose GOT_IMSG_PATCH_FILE");
92 e9ce266e 2022-03-07 op close(fd);
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 if (imsg_flush(ibuf) == -1) {
97 e9ce266e 2022-03-07 op err = got_error_from_errno("imsg_flush");
98 e9ce266e 2022-03-07 op imsg_clear(ibuf);
99 e9ce266e 2022-03-07 op }
100 e9ce266e 2022-03-07 op
101 e9ce266e 2022-03-07 op return err;
102 e9ce266e 2022-03-07 op }
103 e9ce266e 2022-03-07 op
104 e9ce266e 2022-03-07 op static void
105 e9ce266e 2022-03-07 op patch_free(struct got_patch *p)
106 e9ce266e 2022-03-07 op {
107 e9ce266e 2022-03-07 op struct got_patch_hunk *h;
108 e9ce266e 2022-03-07 op size_t i;
109 e9ce266e 2022-03-07 op
110 e9ce266e 2022-03-07 op while (!STAILQ_EMPTY(&p->head)) {
111 e9ce266e 2022-03-07 op h = STAILQ_FIRST(&p->head);
112 e9ce266e 2022-03-07 op STAILQ_REMOVE_HEAD(&p->head, entries);
113 e9ce266e 2022-03-07 op
114 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i)
115 e9ce266e 2022-03-07 op free(h->lines[i]);
116 e9ce266e 2022-03-07 op free(h->lines);
117 e9ce266e 2022-03-07 op free(h);
118 e9ce266e 2022-03-07 op }
119 e9ce266e 2022-03-07 op
120 e9ce266e 2022-03-07 op free(p->new);
121 e9ce266e 2022-03-07 op free(p->old);
122 e9ce266e 2022-03-07 op }
123 e9ce266e 2022-03-07 op
124 e9ce266e 2022-03-07 op static const struct got_error *
125 e9ce266e 2022-03-07 op pushline(struct got_patch_hunk *h, const char *line)
126 e9ce266e 2022-03-07 op {
127 e9ce266e 2022-03-07 op void *t;
128 e9ce266e 2022-03-07 op size_t newcap;
129 e9ce266e 2022-03-07 op
130 e9ce266e 2022-03-07 op if (h->len == h->cap) {
131 e9ce266e 2022-03-07 op if ((newcap = h->cap * 1.5) == 0)
132 e9ce266e 2022-03-07 op newcap = 16;
133 e9ce266e 2022-03-07 op t = recallocarray(h->lines, h->cap, newcap,
134 e9ce266e 2022-03-07 op sizeof(h->lines[0]));
135 e9ce266e 2022-03-07 op if (t == NULL)
136 e9ce266e 2022-03-07 op return got_error_from_errno("recallocarray");
137 e9ce266e 2022-03-07 op h->lines = t;
138 e9ce266e 2022-03-07 op h->cap = newcap;
139 e9ce266e 2022-03-07 op }
140 e9ce266e 2022-03-07 op
141 e9ce266e 2022-03-07 op if ((t = strdup(line)) == NULL)
142 e9ce266e 2022-03-07 op return got_error_from_errno("strdup");
143 e9ce266e 2022-03-07 op
144 e9ce266e 2022-03-07 op h->lines[h->len++] = t;
145 e9ce266e 2022-03-07 op return NULL;
146 e9ce266e 2022-03-07 op }
147 e9ce266e 2022-03-07 op
148 e9ce266e 2022-03-07 op static const struct got_error *
149 e9ce266e 2022-03-07 op recv_patch(struct imsgbuf *ibuf, int *done, struct got_patch *p)
150 e9ce266e 2022-03-07 op {
151 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
152 e9ce266e 2022-03-07 op struct imsg imsg;
153 e9ce266e 2022-03-07 op struct got_imsg_patch_hunk hdr;
154 e9ce266e 2022-03-07 op struct got_imsg_patch patch;
155 e9ce266e 2022-03-07 op struct got_patch_hunk *h = NULL;
156 e9ce266e 2022-03-07 op size_t datalen;
157 e9ce266e 2022-03-07 op
158 e9ce266e 2022-03-07 op memset(p, 0, sizeof(*p));
159 e9ce266e 2022-03-07 op STAILQ_INIT(&p->head);
160 e9ce266e 2022-03-07 op
161 e9ce266e 2022-03-07 op err = got_privsep_recv_imsg(&imsg, ibuf, 0);
162 e9ce266e 2022-03-07 op if (err)
163 e9ce266e 2022-03-07 op return err;
164 e9ce266e 2022-03-07 op if (imsg.hdr.type == GOT_IMSG_PATCH_EOF) {
165 e9ce266e 2022-03-07 op *done = 1;
166 e9ce266e 2022-03-07 op goto done;
167 e9ce266e 2022-03-07 op }
168 e9ce266e 2022-03-07 op if (imsg.hdr.type != GOT_IMSG_PATCH) {
169 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
170 e9ce266e 2022-03-07 op goto done;
171 e9ce266e 2022-03-07 op }
172 e9ce266e 2022-03-07 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
173 e9ce266e 2022-03-07 op if (datalen != sizeof(patch)) {
174 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_LEN);
175 e9ce266e 2022-03-07 op goto done;
176 e9ce266e 2022-03-07 op }
177 e9ce266e 2022-03-07 op memcpy(&patch, imsg.data, sizeof(patch));
178 e9ce266e 2022-03-07 op if (*patch.old != '\0' && (p->old = strdup(patch.old)) == NULL) {
179 e9ce266e 2022-03-07 op err = got_error_from_errno("strdup");
180 e9ce266e 2022-03-07 op goto done;
181 e9ce266e 2022-03-07 op }
182 e9ce266e 2022-03-07 op if (*patch.new != '\0' && (p->new = strdup(patch.new)) == NULL) {
183 e9ce266e 2022-03-07 op err = got_error_from_errno("strdup");
184 e9ce266e 2022-03-07 op goto done;
185 e9ce266e 2022-03-07 op }
186 b95c53df 2022-03-12 op if (p->old == NULL && p->new == NULL) {
187 b95c53df 2022-03-12 op err = got_error(GOT_ERR_PATCH_MALFORMED);
188 b95c53df 2022-03-12 op goto done;
189 b95c53df 2022-03-12 op }
190 e9ce266e 2022-03-07 op
191 e9ce266e 2022-03-07 op imsg_free(&imsg);
192 e9ce266e 2022-03-07 op
193 e9ce266e 2022-03-07 op for (;;) {
194 e9ce266e 2022-03-07 op char *t;
195 e9ce266e 2022-03-07 op
196 e9ce266e 2022-03-07 op err = got_privsep_recv_imsg(&imsg, ibuf, 0);
197 e9ce266e 2022-03-07 op if (err)
198 e9ce266e 2022-03-07 op return err;
199 e9ce266e 2022-03-07 op
200 e9ce266e 2022-03-07 op switch (imsg.hdr.type) {
201 e9ce266e 2022-03-07 op case GOT_IMSG_PATCH_DONE:
202 e9ce266e 2022-03-07 op goto done;
203 e9ce266e 2022-03-07 op case GOT_IMSG_PATCH_HUNK:
204 e9ce266e 2022-03-07 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
205 e9ce266e 2022-03-07 op if (datalen != sizeof(hdr)) {
206 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_LEN);
207 e9ce266e 2022-03-07 op goto done;
208 e9ce266e 2022-03-07 op }
209 e9ce266e 2022-03-07 op memcpy(&hdr, imsg.data, sizeof(hdr));
210 e9ce266e 2022-03-07 op if ((h = calloc(1, sizeof(*h))) == NULL) {
211 e9ce266e 2022-03-07 op err = got_error_from_errno("calloc");
212 e9ce266e 2022-03-07 op goto done;
213 e9ce266e 2022-03-07 op }
214 e9ce266e 2022-03-07 op h->old_from = hdr.oldfrom;
215 e9ce266e 2022-03-07 op h->old_lines = hdr.oldlines;
216 e9ce266e 2022-03-07 op h->new_from = hdr.newfrom;
217 e9ce266e 2022-03-07 op h->new_lines = hdr.newlines;
218 e9ce266e 2022-03-07 op STAILQ_INSERT_TAIL(&p->head, h, entries);
219 e9ce266e 2022-03-07 op break;
220 e9ce266e 2022-03-07 op case GOT_IMSG_PATCH_LINE:
221 e9ce266e 2022-03-07 op if (h == NULL) {
222 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
223 e9ce266e 2022-03-07 op goto done;
224 e9ce266e 2022-03-07 op }
225 e9ce266e 2022-03-07 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
226 e9ce266e 2022-03-07 op t = imsg.data;
227 e9ce266e 2022-03-07 op /* at least one char plus newline */
228 e9ce266e 2022-03-07 op if (datalen < 2 || t[datalen-1] != '\0') {
229 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
230 e9ce266e 2022-03-07 op goto done;
231 e9ce266e 2022-03-07 op }
232 e9ce266e 2022-03-07 op if (*t != ' ' && *t != '-' && *t != '+') {
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 err = pushline(h, t);
237 e9ce266e 2022-03-07 op if (err)
238 e9ce266e 2022-03-07 op goto done;
239 e9ce266e 2022-03-07 op break;
240 e9ce266e 2022-03-07 op default:
241 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
242 e9ce266e 2022-03-07 op goto done;
243 e9ce266e 2022-03-07 op }
244 e9ce266e 2022-03-07 op
245 e9ce266e 2022-03-07 op imsg_free(&imsg);
246 e9ce266e 2022-03-07 op }
247 e9ce266e 2022-03-07 op
248 e9ce266e 2022-03-07 op done:
249 e9ce266e 2022-03-07 op imsg_free(&imsg);
250 e9ce266e 2022-03-07 op return err;
251 e9ce266e 2022-03-07 op }
252 e9ce266e 2022-03-07 op
253 e9ce266e 2022-03-07 op /*
254 e9ce266e 2022-03-07 op * Copy data from orig starting at copypos until pos into tmp.
255 e9ce266e 2022-03-07 op * If pos is -1, copy until EOF.
256 e9ce266e 2022-03-07 op */
257 e9ce266e 2022-03-07 op static const struct got_error *
258 e9ce266e 2022-03-07 op copy(FILE *tmp, FILE *orig, off_t copypos, off_t pos)
259 e9ce266e 2022-03-07 op {
260 e9ce266e 2022-03-07 op char buf[BUFSIZ];
261 e9ce266e 2022-03-07 op size_t len, r, w;
262 e9ce266e 2022-03-07 op
263 e9ce266e 2022-03-07 op if (fseek(orig, copypos, SEEK_SET) == -1)
264 e9ce266e 2022-03-07 op return got_error_from_errno("fseek");
265 e9ce266e 2022-03-07 op
266 e9ce266e 2022-03-07 op while (pos == -1 || copypos < pos) {
267 e9ce266e 2022-03-07 op len = sizeof(buf);
268 e9ce266e 2022-03-07 op if (pos > 0)
269 e9ce266e 2022-03-07 op len = MIN(len, (size_t)pos - copypos);
270 e9ce266e 2022-03-07 op r = fread(buf, 1, len, orig);
271 e9ce266e 2022-03-07 op if (r != len && ferror(orig))
272 e9ce266e 2022-03-07 op return got_error_from_errno("fread");
273 e9ce266e 2022-03-07 op w = fwrite(buf, 1, r, tmp);
274 e9ce266e 2022-03-07 op if (w != r)
275 e9ce266e 2022-03-07 op return got_error_from_errno("fwrite");
276 e9ce266e 2022-03-07 op copypos += len;
277 e9ce266e 2022-03-07 op if (r != len && feof(orig)) {
278 e9ce266e 2022-03-07 op if (pos == -1)
279 e9ce266e 2022-03-07 op return NULL;
280 60aa1fa0 2022-03-17 op return got_error(GOT_ERR_HUNK_FAILED);
281 e9ce266e 2022-03-07 op }
282 e9ce266e 2022-03-07 op }
283 e9ce266e 2022-03-07 op return NULL;
284 e9ce266e 2022-03-07 op }
285 e9ce266e 2022-03-07 op
286 e9ce266e 2022-03-07 op static const struct got_error *
287 33df9995 2022-03-11 op locate_hunk(FILE *orig, struct got_patch_hunk *h, off_t *pos, long *lineno)
288 e9ce266e 2022-03-07 op {
289 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
290 e9ce266e 2022-03-07 op char *line = NULL;
291 e9ce266e 2022-03-07 op char mode = *h->lines[0];
292 e9ce266e 2022-03-07 op size_t linesize = 0;
293 e9ce266e 2022-03-07 op ssize_t linelen;
294 e9ce266e 2022-03-07 op off_t match = -1;
295 e9ce266e 2022-03-07 op long match_lineno = -1;
296 e9ce266e 2022-03-07 op
297 e9ce266e 2022-03-07 op for (;;) {
298 e9ce266e 2022-03-07 op linelen = getline(&line, &linesize, orig);
299 e9ce266e 2022-03-07 op if (linelen == -1) {
300 e9ce266e 2022-03-07 op if (ferror(orig))
301 e9ce266e 2022-03-07 op err = got_error_from_errno("getline");
302 e9ce266e 2022-03-07 op else if (match == -1)
303 60aa1fa0 2022-03-17 op err = got_error(GOT_ERR_HUNK_FAILED);
304 e9ce266e 2022-03-07 op break;
305 e9ce266e 2022-03-07 op }
306 e9ce266e 2022-03-07 op (*lineno)++;
307 e9ce266e 2022-03-07 op
308 46ebad13 2022-03-17 op if ((mode == ' ' && !strcmp(h->lines[0] + 1, line)) ||
309 46ebad13 2022-03-17 op (mode == '-' && !strcmp(h->lines[0] + 1, line)) ||
310 e9ce266e 2022-03-07 op (mode == '+' && *lineno == h->old_from)) {
311 e9ce266e 2022-03-07 op match = ftello(orig);
312 e9ce266e 2022-03-07 op if (match == -1) {
313 e9ce266e 2022-03-07 op err = got_error_from_errno("ftello");
314 e9ce266e 2022-03-07 op break;
315 e9ce266e 2022-03-07 op }
316 e9ce266e 2022-03-07 op match -= linelen;
317 e9ce266e 2022-03-07 op match_lineno = (*lineno)-1;
318 e9ce266e 2022-03-07 op }
319 e9ce266e 2022-03-07 op
320 e9ce266e 2022-03-07 op if (*lineno >= h->old_from && match != -1)
321 e9ce266e 2022-03-07 op break;
322 e9ce266e 2022-03-07 op }
323 e9ce266e 2022-03-07 op
324 e9ce266e 2022-03-07 op if (err == NULL) {
325 33df9995 2022-03-11 op *pos = match;
326 e9ce266e 2022-03-07 op *lineno = match_lineno;
327 e9ce266e 2022-03-07 op if (fseek(orig, match, SEEK_SET) == -1)
328 e9ce266e 2022-03-07 op err = got_error_from_errno("fseek");
329 e9ce266e 2022-03-07 op }
330 e9ce266e 2022-03-07 op
331 e9ce266e 2022-03-07 op free(line);
332 e9ce266e 2022-03-07 op return err;
333 e9ce266e 2022-03-07 op }
334 e9ce266e 2022-03-07 op
335 e9ce266e 2022-03-07 op static const struct got_error *
336 e9ce266e 2022-03-07 op test_hunk(FILE *orig, struct got_patch_hunk *h)
337 e9ce266e 2022-03-07 op {
338 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
339 e9ce266e 2022-03-07 op char *line = NULL;
340 e9ce266e 2022-03-07 op size_t linesize = 0, i = 0;
341 e9ce266e 2022-03-07 op ssize_t linelen;
342 e9ce266e 2022-03-07 op
343 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i) {
344 e9ce266e 2022-03-07 op switch (*h->lines[i]) {
345 e9ce266e 2022-03-07 op case '+':
346 e9ce266e 2022-03-07 op continue;
347 e9ce266e 2022-03-07 op case ' ':
348 e9ce266e 2022-03-07 op case '-':
349 e9ce266e 2022-03-07 op linelen = getline(&line, &linesize, orig);
350 e9ce266e 2022-03-07 op if (linelen == -1) {
351 e9ce266e 2022-03-07 op if (ferror(orig))
352 e9ce266e 2022-03-07 op err = got_error_from_errno("getline");
353 e9ce266e 2022-03-07 op else
354 e9ce266e 2022-03-07 op err = got_error(
355 60aa1fa0 2022-03-17 op GOT_ERR_HUNK_FAILED);
356 e9ce266e 2022-03-07 op goto done;
357 e9ce266e 2022-03-07 op }
358 46ebad13 2022-03-17 op if (strcmp(h->lines[i] + 1, line)) {
359 60aa1fa0 2022-03-17 op err = got_error(GOT_ERR_HUNK_FAILED);
360 e9ce266e 2022-03-07 op goto done;
361 e9ce266e 2022-03-07 op }
362 e9ce266e 2022-03-07 op break;
363 e9ce266e 2022-03-07 op }
364 e9ce266e 2022-03-07 op }
365 e9ce266e 2022-03-07 op
366 e9ce266e 2022-03-07 op done:
367 e9ce266e 2022-03-07 op free(line);
368 e9ce266e 2022-03-07 op return err;
369 e9ce266e 2022-03-07 op }
370 e9ce266e 2022-03-07 op
371 e9ce266e 2022-03-07 op static const struct got_error *
372 e9ce266e 2022-03-07 op apply_hunk(FILE *tmp, struct got_patch_hunk *h, long *lineno)
373 e9ce266e 2022-03-07 op {
374 e9ce266e 2022-03-07 op size_t i = 0;
375 e9ce266e 2022-03-07 op
376 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i) {
377 e9ce266e 2022-03-07 op switch (*h->lines[i]) {
378 e9ce266e 2022-03-07 op case ' ':
379 46ebad13 2022-03-17 op if (fprintf(tmp, "%s", h->lines[i] + 1) < 0)
380 e9ce266e 2022-03-07 op return got_error_from_errno("fprintf");
381 e9ce266e 2022-03-07 op /* fallthrough */
382 e9ce266e 2022-03-07 op case '-':
383 e9ce266e 2022-03-07 op (*lineno)++;
384 e9ce266e 2022-03-07 op break;
385 e9ce266e 2022-03-07 op case '+':
386 46ebad13 2022-03-17 op if (fprintf(tmp, "%s", h->lines[i] + 1) < 0)
387 e9ce266e 2022-03-07 op return got_error_from_errno("fprintf");
388 e9ce266e 2022-03-07 op break;
389 e9ce266e 2022-03-07 op }
390 e9ce266e 2022-03-07 op }
391 e9ce266e 2022-03-07 op return NULL;
392 6e96b326 2022-03-12 op }
393 e9ce266e 2022-03-07 op
394 6e96b326 2022-03-12 op static const struct got_error *
395 2be5e1a2 2022-03-16 op patch_file(struct got_patch *p, const char *path, FILE *tmp, int nop,
396 2be5e1a2 2022-03-16 op mode_t *mode)
397 6e96b326 2022-03-12 op {
398 6e96b326 2022-03-12 op const struct got_error *err = NULL;
399 6e96b326 2022-03-12 op struct got_patch_hunk *h;
400 2be5e1a2 2022-03-16 op struct stat sb;
401 6e96b326 2022-03-12 op size_t i;
402 6e96b326 2022-03-12 op long lineno = 0;
403 6e96b326 2022-03-12 op FILE *orig;
404 6e96b326 2022-03-12 op off_t copypos, pos;
405 6e96b326 2022-03-12 op char *line = NULL;
406 6e96b326 2022-03-12 op size_t linesize = 0;
407 6e96b326 2022-03-12 op ssize_t linelen;
408 6f5cb1bd 2022-03-08 op
409 e9ce266e 2022-03-07 op if (p->old == NULL) { /* create */
410 e9ce266e 2022-03-07 op h = STAILQ_FIRST(&p->head);
411 6e96b326 2022-03-12 op if (h == NULL || STAILQ_NEXT(h, entries) != NULL)
412 6e96b326 2022-03-12 op return got_error(GOT_ERR_PATCH_MALFORMED);
413 b22138f5 2022-03-16 op if (nop)
414 899fcfdf 2022-03-13 op return NULL;
415 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i) {
416 46ebad13 2022-03-17 op if (fprintf(tmp, "%s", h->lines[i] + 1) < 0)
417 6e96b326 2022-03-12 op return got_error_from_errno("fprintf");
418 e9ce266e 2022-03-07 op }
419 6e96b326 2022-03-12 op return err;
420 e9ce266e 2022-03-07 op }
421 e9ce266e 2022-03-07 op
422 e9ce266e 2022-03-07 op if ((orig = fopen(path, "r")) == NULL) {
423 e9ce266e 2022-03-07 op err = got_error_from_errno2("fopen", path);
424 e9ce266e 2022-03-07 op goto done;
425 e9ce266e 2022-03-07 op }
426 e9ce266e 2022-03-07 op
427 2be5e1a2 2022-03-16 op if (fstat(fileno(orig), &sb) == -1) {
428 2be5e1a2 2022-03-16 op err = got_error_from_errno("fstat");
429 2be5e1a2 2022-03-16 op goto done;
430 2be5e1a2 2022-03-16 op }
431 2be5e1a2 2022-03-16 op *mode = sb.st_mode;
432 2be5e1a2 2022-03-16 op
433 e9ce266e 2022-03-07 op copypos = 0;
434 e9ce266e 2022-03-07 op STAILQ_FOREACH(h, &p->head, entries) {
435 6e96b326 2022-03-12 op if (h->lines == NULL)
436 6e96b326 2022-03-12 op break;
437 6e96b326 2022-03-12 op
438 e9ce266e 2022-03-07 op tryagain:
439 33df9995 2022-03-11 op err = locate_hunk(orig, h, &pos, &lineno);
440 60aa1fa0 2022-03-17 op if (err != NULL && err->code == GOT_ERR_HUNK_FAILED)
441 60aa1fa0 2022-03-17 op h->err = err;
442 e9ce266e 2022-03-07 op if (err != NULL)
443 e9ce266e 2022-03-07 op goto done;
444 b22138f5 2022-03-16 op if (!nop)
445 899fcfdf 2022-03-13 op err = copy(tmp, orig, copypos, pos);
446 e9ce266e 2022-03-07 op if (err != NULL)
447 e9ce266e 2022-03-07 op goto done;
448 e9ce266e 2022-03-07 op copypos = pos;
449 e9ce266e 2022-03-07 op
450 e9ce266e 2022-03-07 op err = test_hunk(orig, h);
451 60aa1fa0 2022-03-17 op if (err != NULL && err->code == GOT_ERR_HUNK_FAILED) {
452 e9ce266e 2022-03-07 op /*
453 e9ce266e 2022-03-07 op * try to apply the hunk again starting the search
454 e9ce266e 2022-03-07 op * after the previous partial match.
455 e9ce266e 2022-03-07 op */
456 e9ce266e 2022-03-07 op if (fseek(orig, pos, SEEK_SET) == -1) {
457 e9ce266e 2022-03-07 op err = got_error_from_errno("fseek");
458 e9ce266e 2022-03-07 op goto done;
459 e9ce266e 2022-03-07 op }
460 e9ce266e 2022-03-07 op linelen = getline(&line, &linesize, orig);
461 e9ce266e 2022-03-07 op if (linelen == -1) {
462 e9ce266e 2022-03-07 op err = got_error_from_errno("getline");
463 e9ce266e 2022-03-07 op goto done;
464 e9ce266e 2022-03-07 op }
465 e9ce266e 2022-03-07 op lineno++;
466 e9ce266e 2022-03-07 op goto tryagain;
467 e9ce266e 2022-03-07 op }
468 e9ce266e 2022-03-07 op if (err != NULL)
469 e9ce266e 2022-03-07 op goto done;
470 e9ce266e 2022-03-07 op
471 60aa1fa0 2022-03-17 op if (lineno + 1 != h->old_from)
472 60aa1fa0 2022-03-17 op h->offset = lineno + 1 - h->old_from;
473 60aa1fa0 2022-03-17 op
474 b22138f5 2022-03-16 op if (!nop)
475 899fcfdf 2022-03-13 op err = apply_hunk(tmp, h, &lineno);
476 e9ce266e 2022-03-07 op if (err != NULL)
477 e9ce266e 2022-03-07 op goto done;
478 e9ce266e 2022-03-07 op
479 e9ce266e 2022-03-07 op copypos = ftello(orig);
480 e9ce266e 2022-03-07 op if (copypos == -1) {
481 e9ce266e 2022-03-07 op err = got_error_from_errno("ftello");
482 e9ce266e 2022-03-07 op goto done;
483 e9ce266e 2022-03-07 op }
484 e9ce266e 2022-03-07 op }
485 e9ce266e 2022-03-07 op
486 60aa1fa0 2022-03-17 op if (p->new == NULL && sb.st_size != copypos) {
487 60aa1fa0 2022-03-17 op h = STAILQ_FIRST(&p->head);
488 60aa1fa0 2022-03-17 op h->err = got_error(GOT_ERR_HUNK_FAILED);
489 60aa1fa0 2022-03-17 op err = h->err;
490 60aa1fa0 2022-03-17 op } else if (!nop && !feof(orig))
491 e9ce266e 2022-03-07 op err = copy(tmp, orig, copypos, -1);
492 6e96b326 2022-03-12 op
493 6e96b326 2022-03-12 op done:
494 6e96b326 2022-03-12 op if (orig != NULL)
495 6e96b326 2022-03-12 op fclose(orig);
496 dbda770b 2022-03-13 op return err;
497 dbda770b 2022-03-13 op }
498 dbda770b 2022-03-13 op
499 dbda770b 2022-03-13 op static const struct got_error *
500 60aa1fa0 2022-03-17 op report_progress(struct patch_args *pa, const char *old, const char *new,
501 60aa1fa0 2022-03-17 op unsigned char status, const struct got_error *orig_error)
502 60aa1fa0 2022-03-17 op {
503 60aa1fa0 2022-03-17 op const struct got_error *err;
504 60aa1fa0 2022-03-17 op struct got_patch_hunk *h;
505 60aa1fa0 2022-03-17 op
506 60aa1fa0 2022-03-17 op err = pa->progress_cb(pa->progress_arg, old, new, status,
507 60aa1fa0 2022-03-17 op orig_error, 0, 0, 0, 0, 0, NULL);
508 60aa1fa0 2022-03-17 op if (err)
509 60aa1fa0 2022-03-17 op return err;
510 60aa1fa0 2022-03-17 op
511 60aa1fa0 2022-03-17 op STAILQ_FOREACH(h, pa->head, entries) {
512 60aa1fa0 2022-03-17 op if (h->offset == 0 && h->err == NULL)
513 60aa1fa0 2022-03-17 op continue;
514 60aa1fa0 2022-03-17 op
515 60aa1fa0 2022-03-17 op err = pa->progress_cb(pa->progress_arg, old, new, 0, NULL,
516 60aa1fa0 2022-03-17 op h->old_from, h->old_lines, h->new_from, h->new_lines,
517 60aa1fa0 2022-03-17 op h->offset, h->err);
518 60aa1fa0 2022-03-17 op if (err)
519 60aa1fa0 2022-03-17 op return err;
520 60aa1fa0 2022-03-17 op }
521 60aa1fa0 2022-03-17 op
522 60aa1fa0 2022-03-17 op return NULL;
523 60aa1fa0 2022-03-17 op }
524 60aa1fa0 2022-03-17 op
525 60aa1fa0 2022-03-17 op static const struct got_error *
526 b22138f5 2022-03-16 op patch_delete(void *arg, unsigned char status, unsigned char staged_status,
527 b22138f5 2022-03-16 op const char *path)
528 b22138f5 2022-03-16 op {
529 60aa1fa0 2022-03-17 op return report_progress(arg, path, NULL, status, NULL);
530 b22138f5 2022-03-16 op }
531 b22138f5 2022-03-16 op
532 b22138f5 2022-03-16 op static const struct got_error *
533 b22138f5 2022-03-16 op patch_add(void *arg, unsigned char status, const char *path)
534 b22138f5 2022-03-16 op {
535 60aa1fa0 2022-03-17 op return report_progress(arg, NULL, path, status, NULL);
536 b22138f5 2022-03-16 op }
537 b22138f5 2022-03-16 op
538 b22138f5 2022-03-16 op static const struct got_error *
539 6e96b326 2022-03-12 op apply_patch(struct got_worktree *worktree, struct got_repository *repo,
540 60aa1fa0 2022-03-17 op const char *oldpath, const char *newpath, struct got_patch *p,
541 60aa1fa0 2022-03-17 op int nop, struct patch_args *pa, got_cancel_cb cancel_cb, void *cancel_arg)
542 6e96b326 2022-03-12 op {
543 6e96b326 2022-03-12 op const struct got_error *err = NULL;
544 78f5ac24 2022-03-19 op struct got_pathlist_head oldpaths, newpaths;
545 78f5ac24 2022-03-19 op struct got_pathlist_entry *pe;
546 6e96b326 2022-03-12 op int file_renamed = 0;
547 60aa1fa0 2022-03-17 op char *tmppath = NULL, *template = NULL, *parent = NULL;;
548 6e96b326 2022-03-12 op FILE *tmp = NULL;
549 2be5e1a2 2022-03-16 op mode_t mode = GOT_DEFAULT_FILE_MODE;
550 6e96b326 2022-03-12 op
551 78f5ac24 2022-03-19 op TAILQ_INIT(&oldpaths);
552 78f5ac24 2022-03-19 op TAILQ_INIT(&newpaths);
553 dbda770b 2022-03-13 op
554 78f5ac24 2022-03-19 op err = got_pathlist_insert(&pe, &oldpaths, oldpath, NULL);
555 dbda770b 2022-03-13 op if (err)
556 dbda770b 2022-03-13 op goto done;
557 78f5ac24 2022-03-19 op err = got_pathlist_insert(&pe, &newpaths, newpath, NULL);
558 78f5ac24 2022-03-19 op if (err)
559 78f5ac24 2022-03-19 op goto done;
560 dbda770b 2022-03-13 op
561 78f5ac24 2022-03-19 op file_renamed = strcmp(oldpath, newpath);
562 78f5ac24 2022-03-19 op
563 6e96b326 2022-03-12 op if (asprintf(&template, "%s/got-patch",
564 6e96b326 2022-03-12 op got_worktree_get_root_path(worktree)) == -1) {
565 6e96b326 2022-03-12 op err = got_error_from_errno(template);
566 e9ce266e 2022-03-07 op goto done;
567 e9ce266e 2022-03-07 op }
568 e9ce266e 2022-03-07 op
569 b22138f5 2022-03-16 op if (!nop)
570 899fcfdf 2022-03-13 op err = got_opentemp_named(&tmppath, &tmp, template);
571 6e96b326 2022-03-12 op if (err)
572 6e96b326 2022-03-12 op goto done;
573 2be5e1a2 2022-03-16 op err = patch_file(p, oldpath, tmp, nop, &mode);
574 6e96b326 2022-03-12 op if (err)
575 6e96b326 2022-03-12 op goto done;
576 6e96b326 2022-03-12 op
577 b22138f5 2022-03-16 op if (nop)
578 899fcfdf 2022-03-13 op goto done;
579 899fcfdf 2022-03-13 op
580 5b67f96e 2022-03-13 op if (p->old != NULL && p->new == NULL) {
581 78f5ac24 2022-03-19 op err = got_worktree_schedule_delete(worktree, &oldpaths,
582 b22138f5 2022-03-16 op 0, NULL, patch_delete, pa, repo, 0, 0);
583 5b67f96e 2022-03-13 op goto done;
584 5b67f96e 2022-03-13 op }
585 5b67f96e 2022-03-13 op
586 2be5e1a2 2022-03-16 op if (fchmod(fileno(tmp), mode) == -1) {
587 2be5e1a2 2022-03-16 op err = got_error_from_errno2("chmod", newpath);
588 2be5e1a2 2022-03-16 op goto done;
589 2be5e1a2 2022-03-16 op }
590 2be5e1a2 2022-03-16 op
591 6e96b326 2022-03-12 op if (rename(tmppath, newpath) == -1) {
592 95d68340 2022-03-16 op if (errno != ENOENT) {
593 95d68340 2022-03-16 op err = got_error_from_errno3("rename", tmppath,
594 95d68340 2022-03-16 op newpath);
595 95d68340 2022-03-16 op goto done;
596 95d68340 2022-03-16 op }
597 95d68340 2022-03-16 op
598 95d68340 2022-03-16 op err = got_path_dirname(&parent, newpath);
599 95d68340 2022-03-16 op if (err != NULL)
600 95d68340 2022-03-16 op goto done;
601 95d68340 2022-03-16 op err = got_path_mkdir(parent);
602 95d68340 2022-03-16 op if (err != NULL)
603 95d68340 2022-03-16 op goto done;
604 95d68340 2022-03-16 op if (rename(tmppath, newpath) == -1) {
605 95d68340 2022-03-16 op err = got_error_from_errno3("rename", tmppath,
606 95d68340 2022-03-16 op newpath);
607 95d68340 2022-03-16 op goto done;
608 95d68340 2022-03-16 op }
609 6e96b326 2022-03-12 op }
610 6e96b326 2022-03-12 op
611 6e96b326 2022-03-12 op if (file_renamed) {
612 78f5ac24 2022-03-19 op err = got_worktree_schedule_delete(worktree, &oldpaths,
613 b22138f5 2022-03-16 op 0, NULL, patch_delete, pa, repo, 0, 0);
614 6e96b326 2022-03-12 op if (err == NULL)
615 78f5ac24 2022-03-19 op err = got_worktree_schedule_add(worktree, &newpaths,
616 b22138f5 2022-03-16 op patch_add, pa, repo, 1);
617 78f5ac24 2022-03-19 op if (err)
618 78f5ac24 2022-03-19 op unlink(newpath);
619 78f5ac24 2022-03-19 op } else if (p->old == NULL) {
620 78f5ac24 2022-03-19 op err = got_worktree_schedule_add(worktree, &newpaths,
621 b22138f5 2022-03-16 op patch_add, pa, repo, 1);
622 78f5ac24 2022-03-19 op if (err)
623 78f5ac24 2022-03-19 op unlink(newpath);
624 78f5ac24 2022-03-19 op } else
625 60aa1fa0 2022-03-17 op err = report_progress(pa, oldpath, newpath, GOT_STATUS_MODIFY,
626 60aa1fa0 2022-03-17 op NULL);
627 6e96b326 2022-03-12 op
628 e9ce266e 2022-03-07 op done:
629 78f5ac24 2022-03-19 op got_pathlist_free(&oldpaths);
630 78f5ac24 2022-03-19 op got_pathlist_free(&newpaths);
631 95d68340 2022-03-16 op free(parent);
632 6f5cb1bd 2022-03-08 op free(template);
633 e9ce266e 2022-03-07 op if (tmppath != NULL)
634 e9ce266e 2022-03-07 op unlink(tmppath);
635 e9ce266e 2022-03-07 op free(tmppath);
636 e9ce266e 2022-03-07 op return err;
637 e9ce266e 2022-03-07 op }
638 e9ce266e 2022-03-07 op
639 e9ce266e 2022-03-07 op const struct got_error *
640 e9ce266e 2022-03-07 op got_patch(int fd, struct got_worktree *worktree, struct got_repository *repo,
641 b22138f5 2022-03-16 op int nop, got_patch_progress_cb progress_cb, void *progress_arg,
642 b22138f5 2022-03-16 op got_cancel_cb cancel_cb, void *cancel_arg)
643 e9ce266e 2022-03-07 op {
644 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
645 78f5ac24 2022-03-19 op struct got_fileindex *fileindex = NULL;
646 60aa1fa0 2022-03-17 op char *oldpath, *newpath;
647 e9ce266e 2022-03-07 op struct imsgbuf *ibuf;
648 e9ce266e 2022-03-07 op int imsg_fds[2] = {-1, -1};
649 60aa1fa0 2022-03-17 op int done = 0, failed = 0;
650 e9ce266e 2022-03-07 op pid_t pid;
651 e9ce266e 2022-03-07 op
652 e9ce266e 2022-03-07 op ibuf = calloc(1, sizeof(*ibuf));
653 e9ce266e 2022-03-07 op if (ibuf == NULL) {
654 e9ce266e 2022-03-07 op err = got_error_from_errno("calloc");
655 e9ce266e 2022-03-07 op goto done;
656 e9ce266e 2022-03-07 op }
657 e9ce266e 2022-03-07 op
658 e9ce266e 2022-03-07 op if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
659 e9ce266e 2022-03-07 op err = got_error_from_errno("socketpair");
660 e9ce266e 2022-03-07 op goto done;
661 e9ce266e 2022-03-07 op }
662 e9ce266e 2022-03-07 op
663 e9ce266e 2022-03-07 op pid = fork();
664 e9ce266e 2022-03-07 op if (pid == -1) {
665 e9ce266e 2022-03-07 op err = got_error_from_errno("fork");
666 e9ce266e 2022-03-07 op goto done;
667 e9ce266e 2022-03-07 op } else if (pid == 0) {
668 e9ce266e 2022-03-07 op got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_PATCH,
669 e9ce266e 2022-03-07 op NULL);
670 e9ce266e 2022-03-07 op /* not reached */
671 e9ce266e 2022-03-07 op }
672 e9ce266e 2022-03-07 op
673 e9ce266e 2022-03-07 op if (close(imsg_fds[1]) == -1) {
674 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
675 e9ce266e 2022-03-07 op goto done;
676 e9ce266e 2022-03-07 op }
677 e9ce266e 2022-03-07 op imsg_fds[1] = -1;
678 e9ce266e 2022-03-07 op imsg_init(ibuf, imsg_fds[0]);
679 e9ce266e 2022-03-07 op
680 e9ce266e 2022-03-07 op err = send_patch(ibuf, fd);
681 e9ce266e 2022-03-07 op fd = -1;
682 e9ce266e 2022-03-07 op if (err)
683 e9ce266e 2022-03-07 op goto done;
684 e9ce266e 2022-03-07 op
685 78f5ac24 2022-03-19 op err = got_worktree_patch_prepare(&fileindex, worktree);
686 78f5ac24 2022-03-19 op if (err)
687 78f5ac24 2022-03-19 op goto done;
688 78f5ac24 2022-03-19 op
689 e9ce266e 2022-03-07 op while (!done && err == NULL) {
690 e9ce266e 2022-03-07 op struct got_patch p;
691 60aa1fa0 2022-03-17 op struct patch_args pa;
692 e9ce266e 2022-03-07 op
693 60aa1fa0 2022-03-17 op pa.progress_cb = progress_cb;
694 60aa1fa0 2022-03-17 op pa.progress_arg = progress_arg;
695 60aa1fa0 2022-03-17 op pa.head = &p.head;
696 60aa1fa0 2022-03-17 op
697 e9ce266e 2022-03-07 op err = recv_patch(ibuf, &done, &p);
698 e9ce266e 2022-03-07 op if (err || done)
699 e9ce266e 2022-03-07 op break;
700 e9ce266e 2022-03-07 op
701 78f5ac24 2022-03-19 op err = got_worktree_patch_check_path(p.old, p.new, &oldpath,
702 78f5ac24 2022-03-19 op &newpath, worktree, repo, fileindex);
703 78f5ac24 2022-03-19 op if (err == NULL)
704 78f5ac24 2022-03-19 op err = apply_patch(worktree, repo, oldpath, newpath,
705 78f5ac24 2022-03-19 op &p, nop, &pa, cancel_cb, cancel_arg);
706 60aa1fa0 2022-03-17 op if (err != NULL) {
707 60aa1fa0 2022-03-17 op failed = 1;
708 60aa1fa0 2022-03-17 op /* recoverable errors */
709 60aa1fa0 2022-03-17 op if (err->code == GOT_ERR_FILE_STATUS ||
710 60aa1fa0 2022-03-17 op (err->code == GOT_ERR_ERRNO && errno == ENOENT))
711 60aa1fa0 2022-03-17 op err = report_progress(&pa, p.old, p.new,
712 60aa1fa0 2022-03-17 op GOT_STATUS_CANNOT_UPDATE, err);
713 60aa1fa0 2022-03-17 op else if (err->code == GOT_ERR_HUNK_FAILED)
714 60aa1fa0 2022-03-17 op err = report_progress(&pa, p.old, p.new,
715 60aa1fa0 2022-03-17 op GOT_STATUS_CANNOT_UPDATE, NULL);
716 60aa1fa0 2022-03-17 op }
717 60aa1fa0 2022-03-17 op
718 60aa1fa0 2022-03-17 op free(oldpath);
719 60aa1fa0 2022-03-17 op free(newpath);
720 e9ce266e 2022-03-07 op patch_free(&p);
721 60aa1fa0 2022-03-17 op
722 e9ce266e 2022-03-07 op if (err)
723 e9ce266e 2022-03-07 op break;
724 e9ce266e 2022-03-07 op }
725 e9ce266e 2022-03-07 op
726 e9ce266e 2022-03-07 op done:
727 78f5ac24 2022-03-19 op if (fileindex)
728 78f5ac24 2022-03-19 op got_worktree_patch_complete(fileindex);
729 e9ce266e 2022-03-07 op if (fd != -1 && close(fd) == -1 && err == NULL)
730 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
731 e9ce266e 2022-03-07 op if (ibuf != NULL)
732 e9ce266e 2022-03-07 op imsg_clear(ibuf);
733 e9ce266e 2022-03-07 op if (imsg_fds[0] != -1 && close(imsg_fds[0]) == -1 && err == NULL)
734 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
735 e9ce266e 2022-03-07 op if (imsg_fds[1] != -1 && close(imsg_fds[1]) == -1 && err == NULL)
736 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
737 60aa1fa0 2022-03-17 op if (err == NULL && failed)
738 60aa1fa0 2022-03-17 op err = got_error(GOT_ERR_PATCH_FAILED);
739 e9ce266e 2022-03-07 op return err;
740 e9ce266e 2022-03-07 op }