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 we may want to support:
19 e9ce266e 2022-03-07 op * + support indented patches?
20 e9ce266e 2022-03-07 op * + support other kinds of patches?
21 e9ce266e 2022-03-07 op */
22 e9ce266e 2022-03-07 op
23 e9ce266e 2022-03-07 op #include <sys/types.h>
24 e9ce266e 2022-03-07 op #include <sys/queue.h>
25 e9ce266e 2022-03-07 op #include <sys/socket.h>
26 5b67f96e 2022-03-13 op #include <sys/stat.h>
27 e9ce266e 2022-03-07 op #include <sys/uio.h>
28 e9ce266e 2022-03-07 op
29 dbda770b 2022-03-13 op #include <errno.h>
30 e9ce266e 2022-03-07 op #include <limits.h>
31 e9ce266e 2022-03-07 op #include <sha1.h>
32 e9ce266e 2022-03-07 op #include <stdint.h>
33 e9ce266e 2022-03-07 op #include <stdio.h>
34 e9ce266e 2022-03-07 op #include <stdlib.h>
35 e9ce266e 2022-03-07 op #include <string.h>
36 e9ce266e 2022-03-07 op #include <unistd.h>
37 e9ce266e 2022-03-07 op #include <imsg.h>
38 e9ce266e 2022-03-07 op
39 e9ce266e 2022-03-07 op #include "got_error.h"
40 e9ce266e 2022-03-07 op #include "got_object.h"
41 e9ce266e 2022-03-07 op #include "got_path.h"
42 e9ce266e 2022-03-07 op #include "got_reference.h"
43 e9ce266e 2022-03-07 op #include "got_cancel.h"
44 e9ce266e 2022-03-07 op #include "got_worktree.h"
45 e9ce266e 2022-03-07 op #include "got_opentemp.h"
46 e9ce266e 2022-03-07 op #include "got_patch.h"
47 e9ce266e 2022-03-07 op
48 e9ce266e 2022-03-07 op #include "got_lib_delta.h"
49 e9ce266e 2022-03-07 op #include "got_lib_object.h"
50 e9ce266e 2022-03-07 op #include "got_lib_privsep.h"
51 e9ce266e 2022-03-07 op
52 e9ce266e 2022-03-07 op #define MIN(a, b) ((a) < (b) ? (a) : (b))
53 e9ce266e 2022-03-07 op
54 e9ce266e 2022-03-07 op struct got_patch_hunk {
55 e9ce266e 2022-03-07 op STAILQ_ENTRY(got_patch_hunk) entries;
56 60aa1fa0 2022-03-17 op const struct got_error *err;
57 60aa1fa0 2022-03-17 op long offset;
58 b2832778 2022-04-23 op int old_nonl;
59 b2832778 2022-04-23 op int new_nonl;
60 e9ce266e 2022-03-07 op long old_from;
61 e9ce266e 2022-03-07 op long old_lines;
62 e9ce266e 2022-03-07 op long new_from;
63 e9ce266e 2022-03-07 op long new_lines;
64 e9ce266e 2022-03-07 op size_t len;
65 e9ce266e 2022-03-07 op size_t cap;
66 e9ce266e 2022-03-07 op char **lines;
67 e9ce266e 2022-03-07 op };
68 e9ce266e 2022-03-07 op
69 60aa1fa0 2022-03-17 op STAILQ_HEAD(got_patch_hunk_head, got_patch_hunk);
70 e9ce266e 2022-03-07 op struct got_patch {
71 e9ce266e 2022-03-07 op char *old;
72 e9ce266e 2022-03-07 op char *new;
73 60aa1fa0 2022-03-17 op struct got_patch_hunk_head head;
74 b22138f5 2022-03-16 op };
75 b22138f5 2022-03-16 op
76 b22138f5 2022-03-16 op struct patch_args {
77 b22138f5 2022-03-16 op got_patch_progress_cb progress_cb;
78 b22138f5 2022-03-16 op void *progress_arg;
79 60aa1fa0 2022-03-17 op struct got_patch_hunk_head *head;
80 e9ce266e 2022-03-07 op };
81 e9ce266e 2022-03-07 op
82 e9ce266e 2022-03-07 op static const struct got_error *
83 e9ce266e 2022-03-07 op send_patch(struct imsgbuf *ibuf, int fd)
84 e9ce266e 2022-03-07 op {
85 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
86 e9ce266e 2022-03-07 op
87 e9ce266e 2022-03-07 op if (imsg_compose(ibuf, GOT_IMSG_PATCH_FILE, 0, 0, fd,
88 e9ce266e 2022-03-07 op NULL, 0) == -1) {
89 e9ce266e 2022-03-07 op err = got_error_from_errno(
90 e9ce266e 2022-03-07 op "imsg_compose GOT_IMSG_PATCH_FILE");
91 e9ce266e 2022-03-07 op close(fd);
92 e9ce266e 2022-03-07 op return err;
93 e9ce266e 2022-03-07 op }
94 e9ce266e 2022-03-07 op
95 e9ce266e 2022-03-07 op if (imsg_flush(ibuf) == -1) {
96 e9ce266e 2022-03-07 op err = got_error_from_errno("imsg_flush");
97 e9ce266e 2022-03-07 op imsg_clear(ibuf);
98 e9ce266e 2022-03-07 op }
99 e9ce266e 2022-03-07 op
100 e9ce266e 2022-03-07 op return err;
101 e9ce266e 2022-03-07 op }
102 e9ce266e 2022-03-07 op
103 e9ce266e 2022-03-07 op static void
104 e9ce266e 2022-03-07 op patch_free(struct got_patch *p)
105 e9ce266e 2022-03-07 op {
106 e9ce266e 2022-03-07 op struct got_patch_hunk *h;
107 e9ce266e 2022-03-07 op size_t i;
108 e9ce266e 2022-03-07 op
109 e9ce266e 2022-03-07 op while (!STAILQ_EMPTY(&p->head)) {
110 e9ce266e 2022-03-07 op h = STAILQ_FIRST(&p->head);
111 e9ce266e 2022-03-07 op STAILQ_REMOVE_HEAD(&p->head, entries);
112 e9ce266e 2022-03-07 op
113 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i)
114 e9ce266e 2022-03-07 op free(h->lines[i]);
115 e9ce266e 2022-03-07 op free(h->lines);
116 e9ce266e 2022-03-07 op free(h);
117 e9ce266e 2022-03-07 op }
118 e9ce266e 2022-03-07 op
119 e9ce266e 2022-03-07 op free(p->new);
120 e9ce266e 2022-03-07 op free(p->old);
121 e9ce266e 2022-03-07 op }
122 e9ce266e 2022-03-07 op
123 e9ce266e 2022-03-07 op static const struct got_error *
124 e9ce266e 2022-03-07 op pushline(struct got_patch_hunk *h, const char *line)
125 e9ce266e 2022-03-07 op {
126 e9ce266e 2022-03-07 op void *t;
127 e9ce266e 2022-03-07 op size_t newcap;
128 e9ce266e 2022-03-07 op
129 e9ce266e 2022-03-07 op if (h->len == h->cap) {
130 e9ce266e 2022-03-07 op if ((newcap = h->cap * 1.5) == 0)
131 e9ce266e 2022-03-07 op newcap = 16;
132 e9ce266e 2022-03-07 op t = recallocarray(h->lines, h->cap, newcap,
133 e9ce266e 2022-03-07 op sizeof(h->lines[0]));
134 e9ce266e 2022-03-07 op if (t == NULL)
135 e9ce266e 2022-03-07 op return got_error_from_errno("recallocarray");
136 e9ce266e 2022-03-07 op h->lines = t;
137 e9ce266e 2022-03-07 op h->cap = newcap;
138 e9ce266e 2022-03-07 op }
139 e9ce266e 2022-03-07 op
140 e9ce266e 2022-03-07 op if ((t = strdup(line)) == NULL)
141 e9ce266e 2022-03-07 op return got_error_from_errno("strdup");
142 e9ce266e 2022-03-07 op
143 e9ce266e 2022-03-07 op h->lines[h->len++] = t;
144 e9ce266e 2022-03-07 op return NULL;
145 e9ce266e 2022-03-07 op }
146 e9ce266e 2022-03-07 op
147 e9ce266e 2022-03-07 op static const struct got_error *
148 9d6cabd5 2022-04-07 op recv_patch(struct imsgbuf *ibuf, int *done, struct got_patch *p, int strip)
149 e9ce266e 2022-03-07 op {
150 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
151 e9ce266e 2022-03-07 op struct imsg imsg;
152 e9ce266e 2022-03-07 op struct got_imsg_patch_hunk hdr;
153 e9ce266e 2022-03-07 op struct got_imsg_patch patch;
154 e9ce266e 2022-03-07 op struct got_patch_hunk *h = NULL;
155 e9ce266e 2022-03-07 op size_t datalen;
156 b2832778 2022-04-23 op int lastmode = -1;
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 99b94ad7 2022-06-13 op
179 99b94ad7 2022-06-13 op if (patch.old[sizeof(patch.old)-1] != '\0' ||
180 99b94ad7 2022-06-13 op patch.new[sizeof(patch.new)-1] != '\0') {
181 99b94ad7 2022-06-13 op err = got_error(GOT_ERR_PRIVSEP_LEN);
182 99b94ad7 2022-06-13 op goto done;
183 99b94ad7 2022-06-13 op }
184 9d6cabd5 2022-04-07 op
185 9d6cabd5 2022-04-07 op /* automatically set strip=1 for git-style diffs */
186 9d6cabd5 2022-04-07 op if (strip == -1 && patch.git &&
187 9d6cabd5 2022-04-07 op (*patch.old == '\0' || !strncmp(patch.old, "a/", 2)) &&
188 9d6cabd5 2022-04-07 op (*patch.new == '\0' || !strncmp(patch.new, "b/", 2)))
189 9d6cabd5 2022-04-07 op strip = 1;
190 9d6cabd5 2022-04-07 op
191 9d6cabd5 2022-04-07 op /* prefer the new name if not /dev/null for not git-style diffs */
192 9d6cabd5 2022-04-07 op if (!patch.git && *patch.new != '\0' && *patch.old != '\0') {
193 9d6cabd5 2022-04-07 op err = got_path_strip(&p->old, patch.new, strip);
194 9d6cabd5 2022-04-07 op if (err)
195 9d6cabd5 2022-04-07 op goto done;
196 9d6cabd5 2022-04-07 op } else if (*patch.old != '\0') {
197 9d6cabd5 2022-04-07 op err = got_path_strip(&p->old, patch.old, strip);
198 9d6cabd5 2022-04-07 op if (err)
199 9d6cabd5 2022-04-07 op goto done;
200 e9ce266e 2022-03-07 op }
201 9d6cabd5 2022-04-07 op
202 9d6cabd5 2022-04-07 op if (*patch.new != '\0') {
203 9d6cabd5 2022-04-07 op err = got_path_strip(&p->new, patch.new, strip);
204 9d6cabd5 2022-04-07 op if (err)
205 9d6cabd5 2022-04-07 op goto done;
206 9d6cabd5 2022-04-07 op }
207 9d6cabd5 2022-04-07 op
208 b95c53df 2022-03-12 op if (p->old == NULL && p->new == NULL) {
209 b95c53df 2022-03-12 op err = got_error(GOT_ERR_PATCH_MALFORMED);
210 b95c53df 2022-03-12 op goto done;
211 b95c53df 2022-03-12 op }
212 e9ce266e 2022-03-07 op
213 e9ce266e 2022-03-07 op imsg_free(&imsg);
214 e9ce266e 2022-03-07 op
215 e9ce266e 2022-03-07 op for (;;) {
216 e9ce266e 2022-03-07 op char *t;
217 e9ce266e 2022-03-07 op
218 e9ce266e 2022-03-07 op err = got_privsep_recv_imsg(&imsg, ibuf, 0);
219 e9ce266e 2022-03-07 op if (err)
220 e9ce266e 2022-03-07 op return err;
221 e9ce266e 2022-03-07 op
222 e9ce266e 2022-03-07 op switch (imsg.hdr.type) {
223 e9ce266e 2022-03-07 op case GOT_IMSG_PATCH_DONE:
224 be33dff7 2022-05-13 op if (h != NULL && h->len == 0)
225 be33dff7 2022-05-13 op err = got_error(GOT_ERR_PATCH_MALFORMED);
226 e9ce266e 2022-03-07 op goto done;
227 e9ce266e 2022-03-07 op case GOT_IMSG_PATCH_HUNK:
228 be33dff7 2022-05-13 op if (h != NULL &&
229 be33dff7 2022-05-13 op (h->len == 0 || h->old_nonl || h->new_nonl)) {
230 b3c57ab2 2022-03-22 op err = got_error(GOT_ERR_PATCH_MALFORMED);
231 b3c57ab2 2022-03-22 op goto done;
232 b3c57ab2 2022-03-22 op }
233 b2832778 2022-04-23 op lastmode = -1;
234 e9ce266e 2022-03-07 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
235 e9ce266e 2022-03-07 op if (datalen != sizeof(hdr)) {
236 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_LEN);
237 e9ce266e 2022-03-07 op goto done;
238 e9ce266e 2022-03-07 op }
239 e9ce266e 2022-03-07 op memcpy(&hdr, imsg.data, sizeof(hdr));
240 e9ce266e 2022-03-07 op if ((h = calloc(1, sizeof(*h))) == NULL) {
241 e9ce266e 2022-03-07 op err = got_error_from_errno("calloc");
242 e9ce266e 2022-03-07 op goto done;
243 e9ce266e 2022-03-07 op }
244 e9ce266e 2022-03-07 op h->old_from = hdr.oldfrom;
245 e9ce266e 2022-03-07 op h->old_lines = hdr.oldlines;
246 e9ce266e 2022-03-07 op h->new_from = hdr.newfrom;
247 e9ce266e 2022-03-07 op h->new_lines = hdr.newlines;
248 e9ce266e 2022-03-07 op STAILQ_INSERT_TAIL(&p->head, h, entries);
249 e9ce266e 2022-03-07 op break;
250 e9ce266e 2022-03-07 op case GOT_IMSG_PATCH_LINE:
251 e9ce266e 2022-03-07 op if (h == NULL) {
252 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
253 e9ce266e 2022-03-07 op goto done;
254 e9ce266e 2022-03-07 op }
255 e9ce266e 2022-03-07 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
256 e9ce266e 2022-03-07 op t = imsg.data;
257 b3c57ab2 2022-03-22 op /* at least one char */
258 e9ce266e 2022-03-07 op if (datalen < 2 || t[datalen-1] != '\0') {
259 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
260 e9ce266e 2022-03-07 op goto done;
261 e9ce266e 2022-03-07 op }
262 b3c57ab2 2022-03-22 op if (*t != ' ' && *t != '-' && *t != '+' &&
263 b3c57ab2 2022-03-22 op *t != '\\') {
264 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
265 e9ce266e 2022-03-07 op goto done;
266 e9ce266e 2022-03-07 op }
267 b2832778 2022-04-23 op
268 b2832778 2022-04-23 op if (*t != '\\')
269 b3c57ab2 2022-03-22 op err = pushline(h, t);
270 b2832778 2022-04-23 op else if (lastmode == '-')
271 b2832778 2022-04-23 op h->old_nonl = 1;
272 b2832778 2022-04-23 op else if (lastmode == '+')
273 b2832778 2022-04-23 op h->new_nonl = 1;
274 b2832778 2022-04-23 op else
275 b2832778 2022-04-23 op err = got_error(GOT_ERR_PATCH_MALFORMED);
276 b2832778 2022-04-23 op
277 e9ce266e 2022-03-07 op if (err)
278 e9ce266e 2022-03-07 op goto done;
279 b2832778 2022-04-23 op
280 b2832778 2022-04-23 op lastmode = *t;
281 e9ce266e 2022-03-07 op break;
282 e9ce266e 2022-03-07 op default:
283 e9ce266e 2022-03-07 op err = got_error(GOT_ERR_PRIVSEP_MSG);
284 e9ce266e 2022-03-07 op goto done;
285 e9ce266e 2022-03-07 op }
286 e9ce266e 2022-03-07 op
287 e9ce266e 2022-03-07 op imsg_free(&imsg);
288 e9ce266e 2022-03-07 op }
289 e9ce266e 2022-03-07 op
290 e9ce266e 2022-03-07 op done:
291 e9ce266e 2022-03-07 op imsg_free(&imsg);
292 e9ce266e 2022-03-07 op return err;
293 e9ce266e 2022-03-07 op }
294 e9ce266e 2022-03-07 op
295 e9ce266e 2022-03-07 op /*
296 e9ce266e 2022-03-07 op * Copy data from orig starting at copypos until pos into tmp.
297 e9ce266e 2022-03-07 op * If pos is -1, copy until EOF.
298 e9ce266e 2022-03-07 op */
299 e9ce266e 2022-03-07 op static const struct got_error *
300 e9ce266e 2022-03-07 op copy(FILE *tmp, FILE *orig, off_t copypos, off_t pos)
301 e9ce266e 2022-03-07 op {
302 e9ce266e 2022-03-07 op char buf[BUFSIZ];
303 e9ce266e 2022-03-07 op size_t len, r, w;
304 e9ce266e 2022-03-07 op
305 e45f7eba 2022-05-14 naddy if (fseeko(orig, copypos, SEEK_SET) == -1)
306 e45f7eba 2022-05-14 naddy return got_error_from_errno("fseeko");
307 e9ce266e 2022-03-07 op
308 e9ce266e 2022-03-07 op while (pos == -1 || copypos < pos) {
309 e9ce266e 2022-03-07 op len = sizeof(buf);
310 e9ce266e 2022-03-07 op if (pos > 0)
311 e9ce266e 2022-03-07 op len = MIN(len, (size_t)pos - copypos);
312 e9ce266e 2022-03-07 op r = fread(buf, 1, len, orig);
313 e9ce266e 2022-03-07 op if (r != len && ferror(orig))
314 e9ce266e 2022-03-07 op return got_error_from_errno("fread");
315 e9ce266e 2022-03-07 op w = fwrite(buf, 1, r, tmp);
316 e9ce266e 2022-03-07 op if (w != r)
317 e9ce266e 2022-03-07 op return got_error_from_errno("fwrite");
318 e9ce266e 2022-03-07 op copypos += len;
319 e9ce266e 2022-03-07 op if (r != len && feof(orig)) {
320 e9ce266e 2022-03-07 op if (pos == -1)
321 e9ce266e 2022-03-07 op return NULL;
322 60aa1fa0 2022-03-17 op return got_error(GOT_ERR_HUNK_FAILED);
323 e9ce266e 2022-03-07 op }
324 e9ce266e 2022-03-07 op }
325 e9ce266e 2022-03-07 op return NULL;
326 e9ce266e 2022-03-07 op }
327 e9ce266e 2022-03-07 op
328 e9ce266e 2022-03-07 op static const struct got_error *
329 33df9995 2022-03-11 op locate_hunk(FILE *orig, struct got_patch_hunk *h, off_t *pos, long *lineno)
330 e9ce266e 2022-03-07 op {
331 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
332 e9ce266e 2022-03-07 op char *line = NULL;
333 e9ce266e 2022-03-07 op char mode = *h->lines[0];
334 e9ce266e 2022-03-07 op size_t linesize = 0;
335 e9ce266e 2022-03-07 op ssize_t linelen;
336 e9ce266e 2022-03-07 op off_t match = -1;
337 e9ce266e 2022-03-07 op long match_lineno = -1;
338 e9ce266e 2022-03-07 op
339 e9ce266e 2022-03-07 op for (;;) {
340 e9ce266e 2022-03-07 op linelen = getline(&line, &linesize, orig);
341 e9ce266e 2022-03-07 op if (linelen == -1) {
342 e9ce266e 2022-03-07 op if (ferror(orig))
343 e9ce266e 2022-03-07 op err = got_error_from_errno("getline");
344 e9ce266e 2022-03-07 op else if (match == -1)
345 60aa1fa0 2022-03-17 op err = got_error(GOT_ERR_HUNK_FAILED);
346 e9ce266e 2022-03-07 op break;
347 e9ce266e 2022-03-07 op }
348 b3c57ab2 2022-03-22 op if (line[linelen - 1] == '\n')
349 b3c57ab2 2022-03-22 op line[linelen - 1] = '\0';
350 e9ce266e 2022-03-07 op (*lineno)++;
351 e9ce266e 2022-03-07 op
352 46ebad13 2022-03-17 op if ((mode == ' ' && !strcmp(h->lines[0] + 1, line)) ||
353 46ebad13 2022-03-17 op (mode == '-' && !strcmp(h->lines[0] + 1, line)) ||
354 e9ce266e 2022-03-07 op (mode == '+' && *lineno == h->old_from)) {
355 e9ce266e 2022-03-07 op match = ftello(orig);
356 e9ce266e 2022-03-07 op if (match == -1) {
357 e9ce266e 2022-03-07 op err = got_error_from_errno("ftello");
358 e9ce266e 2022-03-07 op break;
359 e9ce266e 2022-03-07 op }
360 e9ce266e 2022-03-07 op match -= linelen;
361 e9ce266e 2022-03-07 op match_lineno = (*lineno)-1;
362 e9ce266e 2022-03-07 op }
363 e9ce266e 2022-03-07 op
364 e9ce266e 2022-03-07 op if (*lineno >= h->old_from && match != -1)
365 e9ce266e 2022-03-07 op break;
366 e9ce266e 2022-03-07 op }
367 e9ce266e 2022-03-07 op
368 e9ce266e 2022-03-07 op if (err == NULL) {
369 33df9995 2022-03-11 op *pos = match;
370 e9ce266e 2022-03-07 op *lineno = match_lineno;
371 e45f7eba 2022-05-14 naddy if (fseeko(orig, match, SEEK_SET) == -1)
372 e45f7eba 2022-05-14 naddy err = got_error_from_errno("fseeko");
373 e9ce266e 2022-03-07 op }
374 e9ce266e 2022-03-07 op
375 e9ce266e 2022-03-07 op free(line);
376 e9ce266e 2022-03-07 op return err;
377 e9ce266e 2022-03-07 op }
378 e9ce266e 2022-03-07 op
379 e9ce266e 2022-03-07 op static const struct got_error *
380 e9ce266e 2022-03-07 op test_hunk(FILE *orig, struct got_patch_hunk *h)
381 e9ce266e 2022-03-07 op {
382 e9ce266e 2022-03-07 op const struct got_error *err = NULL;
383 e9ce266e 2022-03-07 op char *line = NULL;
384 e9ce266e 2022-03-07 op size_t linesize = 0, i = 0;
385 e9ce266e 2022-03-07 op ssize_t linelen;
386 e9ce266e 2022-03-07 op
387 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i) {
388 e9ce266e 2022-03-07 op switch (*h->lines[i]) {
389 e9ce266e 2022-03-07 op case '+':
390 e9ce266e 2022-03-07 op continue;
391 e9ce266e 2022-03-07 op case ' ':
392 e9ce266e 2022-03-07 op case '-':
393 e9ce266e 2022-03-07 op linelen = getline(&line, &linesize, orig);
394 e9ce266e 2022-03-07 op if (linelen == -1) {
395 e9ce266e 2022-03-07 op if (ferror(orig))
396 e9ce266e 2022-03-07 op err = got_error_from_errno("getline");
397 e9ce266e 2022-03-07 op else
398 e9ce266e 2022-03-07 op err = got_error(
399 60aa1fa0 2022-03-17 op GOT_ERR_HUNK_FAILED);
400 e9ce266e 2022-03-07 op goto done;
401 e9ce266e 2022-03-07 op }
402 b3c57ab2 2022-03-22 op if (line[linelen - 1] == '\n')
403 b3c57ab2 2022-03-22 op line[linelen - 1] = '\0';
404 46ebad13 2022-03-17 op if (strcmp(h->lines[i] + 1, line)) {
405 60aa1fa0 2022-03-17 op err = got_error(GOT_ERR_HUNK_FAILED);
406 e9ce266e 2022-03-07 op goto done;
407 e9ce266e 2022-03-07 op }
408 e9ce266e 2022-03-07 op break;
409 e9ce266e 2022-03-07 op }
410 e9ce266e 2022-03-07 op }
411 e9ce266e 2022-03-07 op
412 e9ce266e 2022-03-07 op done:
413 e9ce266e 2022-03-07 op free(line);
414 e9ce266e 2022-03-07 op return err;
415 e9ce266e 2022-03-07 op }
416 e9ce266e 2022-03-07 op
417 e9ce266e 2022-03-07 op static const struct got_error *
418 e9ce266e 2022-03-07 op apply_hunk(FILE *tmp, struct got_patch_hunk *h, long *lineno)
419 e9ce266e 2022-03-07 op {
420 b2832778 2022-04-23 op size_t i, new = 0;
421 e9ce266e 2022-03-07 op
422 e9ce266e 2022-03-07 op for (i = 0; i < h->len; ++i) {
423 e9ce266e 2022-03-07 op switch (*h->lines[i]) {
424 e9ce266e 2022-03-07 op case ' ':
425 b3c57ab2 2022-03-22 op if (fprintf(tmp, "%s\n", h->lines[i] + 1) < 0)
426 e9ce266e 2022-03-07 op return got_error_from_errno("fprintf");
427 e9ce266e 2022-03-07 op /* fallthrough */
428 e9ce266e 2022-03-07 op case '-':
429 e9ce266e 2022-03-07 op (*lineno)++;
430 e9ce266e 2022-03-07 op break;
431 e9ce266e 2022-03-07 op case '+':
432 b2832778 2022-04-23 op new++;
433 46ebad13 2022-03-17 op if (fprintf(tmp, "%s", h->lines[i] + 1) < 0)
434 e9ce266e 2022-03-07 op return got_error_from_errno("fprintf");
435 b2832778 2022-04-23 op if (new != h->new_lines || !h->new_nonl) {
436 b3c57ab2 2022-03-22 op if (fprintf(tmp, "\n") < 0)
437 b3c57ab2 2022-03-22 op return got_error_from_errno(
438 b3c57ab2 2022-03-22 op "fprintf");
439 b3c57ab2 2022-03-22 op }
440 e9ce266e 2022-03-07 op break;
441 e9ce266e 2022-03-07 op }
442 e9ce266e 2022-03-07 op }
443 e9ce266e 2022-03-07 op return NULL;
444 6e96b326 2022-03-12 op }
445 e9ce266e 2022-03-07 op
446 6e96b326 2022-03-12 op static const struct got_error *
447 2be5e1a2 2022-03-16 op patch_file(struct got_patch *p, const char *path, FILE *tmp, int nop,
448 2be5e1a2 2022-03-16 op mode_t *mode)
449 6e96b326 2022-03-12 op {
450 6e96b326 2022-03-12 op const struct got_error *err = NULL;
451 6e96b326 2022-03-12 op struct got_patch_hunk *h;
452 2be5e1a2 2022-03-16 op struct stat sb;
453 6e96b326 2022-03-12 op long lineno = 0;
454 6e96b326 2022-03-12 op FILE *orig;
455 6e96b326 2022-03-12 op off_t copypos, pos;
456 6e96b326 2022-03-12 op char *line = NULL;
457 6e96b326 2022-03-12 op size_t linesize = 0;
458 6e96b326 2022-03-12 op ssize_t linelen;
459 6f5cb1bd 2022-03-08 op
460 e9ce266e 2022-03-07 op if (p->old == NULL) { /* create */
461 e9ce266e 2022-03-07 op h = STAILQ_FIRST(&p->head);
462 6e96b326 2022-03-12 op if (h == NULL || STAILQ_NEXT(h, entries) != NULL)
463 6e96b326 2022-03-12 op return got_error(GOT_ERR_PATCH_MALFORMED);
464 b22138f5 2022-03-16 op if (nop)
465 899fcfdf 2022-03-13 op return NULL;
466 4027dbc2 2022-03-22 op return apply_hunk(tmp, h, &lineno);
467 e9ce266e 2022-03-07 op }
468 e9ce266e 2022-03-07 op
469 e9ce266e 2022-03-07 op if ((orig = fopen(path, "r")) == NULL) {
470 e9ce266e 2022-03-07 op err = got_error_from_errno2("fopen", path);
471 e9ce266e 2022-03-07 op goto done;
472 e9ce266e 2022-03-07 op }
473 e9ce266e 2022-03-07 op
474 2be5e1a2 2022-03-16 op if (fstat(fileno(orig), &sb) == -1) {
475 2be5e1a2 2022-03-16 op err = got_error_from_errno("fstat");
476 2be5e1a2 2022-03-16 op goto done;
477 2be5e1a2 2022-03-16 op }
478 2be5e1a2 2022-03-16 op *mode = sb.st_mode;
479 2be5e1a2 2022-03-16 op
480 e9ce266e 2022-03-07 op copypos = 0;
481 e9ce266e 2022-03-07 op STAILQ_FOREACH(h, &p->head, entries) {
482 e9ce266e 2022-03-07 op tryagain:
483 33df9995 2022-03-11 op err = locate_hunk(orig, h, &pos, &lineno);
484 60aa1fa0 2022-03-17 op if (err != NULL && err->code == GOT_ERR_HUNK_FAILED)
485 60aa1fa0 2022-03-17 op h->err = err;
486 e9ce266e 2022-03-07 op if (err != NULL)
487 e9ce266e 2022-03-07 op goto done;
488 b22138f5 2022-03-16 op if (!nop)
489 899fcfdf 2022-03-13 op err = copy(tmp, orig, copypos, pos);
490 e9ce266e 2022-03-07 op if (err != NULL)
491 e9ce266e 2022-03-07 op goto done;
492 e9ce266e 2022-03-07 op copypos = pos;
493 e9ce266e 2022-03-07 op
494 e9ce266e 2022-03-07 op err = test_hunk(orig, h);
495 60aa1fa0 2022-03-17 op if (err != NULL && err->code == GOT_ERR_HUNK_FAILED) {
496 e9ce266e 2022-03-07 op /*
497 e9ce266e 2022-03-07 op * try to apply the hunk again starting the search
498 e9ce266e 2022-03-07 op * after the previous partial match.
499 e9ce266e 2022-03-07 op */
500 e45f7eba 2022-05-14 naddy if (fseeko(orig, pos, SEEK_SET) == -1) {
501 e45f7eba 2022-05-14 naddy err = got_error_from_errno("fseeko");
502 e9ce266e 2022-03-07 op goto done;
503 e9ce266e 2022-03-07 op }
504 e9ce266e 2022-03-07 op linelen = getline(&line, &linesize, orig);
505 e9ce266e 2022-03-07 op if (linelen == -1) {
506 e9ce266e 2022-03-07 op err = got_error_from_errno("getline");
507 e9ce266e 2022-03-07 op goto done;
508 e9ce266e 2022-03-07 op }
509 e9ce266e 2022-03-07 op lineno++;
510 e9ce266e 2022-03-07 op goto tryagain;
511 e9ce266e 2022-03-07 op }
512 e9ce266e 2022-03-07 op if (err != NULL)
513 e9ce266e 2022-03-07 op goto done;
514 e9ce266e 2022-03-07 op
515 60aa1fa0 2022-03-17 op if (lineno + 1 != h->old_from)
516 60aa1fa0 2022-03-17 op h->offset = lineno + 1 - h->old_from;
517 60aa1fa0 2022-03-17 op
518 b22138f5 2022-03-16 op if (!nop)
519 899fcfdf 2022-03-13 op err = apply_hunk(tmp, h, &lineno);
520 e9ce266e 2022-03-07 op if (err != NULL)
521 e9ce266e 2022-03-07 op goto done;
522 fbbb53b9 2022-03-25 op
523 e9ce266e 2022-03-07 op copypos = ftello(orig);
524 e9ce266e 2022-03-07 op if (copypos == -1) {
525 e9ce266e 2022-03-07 op err = got_error_from_errno("ftello");
526 e9ce266e 2022-03-07 op goto done;
527 e9ce266e 2022-03-07 op }
528 e9ce266e 2022-03-07 op }
529 e9ce266e 2022-03-07 op
530 60aa1fa0 2022-03-17 op if (p->new == NULL && sb.st_size != copypos) {
531 60aa1fa0 2022-03-17 op h = STAILQ_FIRST(&p->head);
532 60aa1fa0 2022-03-17 op h->err = got_error(GOT_ERR_HUNK_FAILED);
533 60aa1fa0 2022-03-17 op err = h->err;
534 60aa1fa0 2022-03-17 op } else if (!nop && !feof(orig))
535 e9ce266e 2022-03-07 op err = copy(tmp, orig, copypos, -1);
536 6e96b326 2022-03-12 op
537 6e96b326 2022-03-12 op done:
538 6e96b326 2022-03-12 op if (orig != NULL)
539 6e96b326 2022-03-12 op fclose(orig);
540 dbda770b 2022-03-13 op return err;
541 dbda770b 2022-03-13 op }
542 dbda770b 2022-03-13 op
543 dbda770b 2022-03-13 op static const struct got_error *
544 60aa1fa0 2022-03-17 op report_progress(struct patch_args *pa, const char *old, const char *new,
545 60aa1fa0 2022-03-17 op unsigned char status, const struct got_error *orig_error)
546 60aa1fa0 2022-03-17 op {
547 60aa1fa0 2022-03-17 op const struct got_error *err;
548 60aa1fa0 2022-03-17 op struct got_patch_hunk *h;
549 60aa1fa0 2022-03-17 op
550 60aa1fa0 2022-03-17 op err = pa->progress_cb(pa->progress_arg, old, new, status,
551 60aa1fa0 2022-03-17 op orig_error, 0, 0, 0, 0, 0, NULL);
552 60aa1fa0 2022-03-17 op if (err)
553 60aa1fa0 2022-03-17 op return err;
554 60aa1fa0 2022-03-17 op
555 60aa1fa0 2022-03-17 op STAILQ_FOREACH(h, pa->head, entries) {
556 60aa1fa0 2022-03-17 op if (h->offset == 0 && h->err == NULL)
557 60aa1fa0 2022-03-17 op continue;
558 60aa1fa0 2022-03-17 op
559 60aa1fa0 2022-03-17 op err = pa->progress_cb(pa->progress_arg, old, new, 0, NULL,
560 60aa1fa0 2022-03-17 op h->old_from, h->old_lines, h->new_from, h->new_lines,
561 60aa1fa0 2022-03-17 op h->offset, h->err);
562 60aa1fa0 2022-03-17 op if (err)
563 60aa1fa0 2022-03-17 op return err;
564 60aa1fa0 2022-03-17 op }
565 60aa1fa0 2022-03-17 op
566 60aa1fa0 2022-03-17 op return NULL;
567 60aa1fa0 2022-03-17 op }
568 60aa1fa0 2022-03-17 op
569 60aa1fa0 2022-03-17 op static const struct got_error *
570 b22138f5 2022-03-16 op patch_delete(void *arg, unsigned char status, unsigned char staged_status,
571 b22138f5 2022-03-16 op const char *path)
572 b22138f5 2022-03-16 op {
573 60aa1fa0 2022-03-17 op return report_progress(arg, path, NULL, status, NULL);
574 b22138f5 2022-03-16 op }
575 b22138f5 2022-03-16 op
576 b22138f5 2022-03-16 op static const struct got_error *
577 b22138f5 2022-03-16 op patch_add(void *arg, unsigned char status, const char *path)
578 b22138f5 2022-03-16 op {
579 60aa1fa0 2022-03-17 op return report_progress(arg, NULL, path, status, NULL);
580 b22138f5 2022-03-16 op }
581 b22138f5 2022-03-16 op
582 b22138f5 2022-03-16 op static const struct got_error *
583 6e96b326 2022-03-12 op apply_patch(struct got_worktree *worktree, struct got_repository *repo,
584 f2dd7807 2022-05-17 op struct got_fileindex *fileindex, const char *old, const char *new,
585 f2dd7807 2022-05-17 op struct got_patch *p, int nop, struct patch_args *pa,
586 f2dd7807 2022-05-17 op got_cancel_cb cancel_cb, void *cancel_arg)
587 6e96b326 2022-03-12 op {
588 6e96b326 2022-03-12 op const struct got_error *err = NULL;
589 6e96b326 2022-03-12 op int file_renamed = 0;
590 ed3bff83 2022-04-23 op char *oldpath = NULL, *newpath = NULL;
591 60aa1fa0 2022-03-17 op char *tmppath = NULL, *template = NULL, *parent = NULL;;
592 6e96b326 2022-03-12 op FILE *tmp = NULL;
593 2be5e1a2 2022-03-16 op mode_t mode = GOT_DEFAULT_FILE_MODE;
594 ed3bff83 2022-04-23 op
595 ed3bff83 2022-04-23 op if (asprintf(&oldpath, "%s/%s", got_worktree_get_root_path(worktree),
596 ed3bff83 2022-04-23 op old) == -1) {
597 ed3bff83 2022-04-23 op err = got_error_from_errno("asprintf");
598 78f5ac24 2022-03-19 op goto done;
599 ed3bff83 2022-04-23 op }
600 dbda770b 2022-03-13 op
601 ed3bff83 2022-04-23 op if (asprintf(&newpath, "%s/%s", got_worktree_get_root_path(worktree),
602 ed3bff83 2022-04-23 op new) == -1) {
603 ed3bff83 2022-04-23 op err = got_error_from_errno("asprintf");
604 ed3bff83 2022-04-23 op goto done;
605 ed3bff83 2022-04-23 op }
606 ed3bff83 2022-04-23 op
607 78f5ac24 2022-03-19 op file_renamed = strcmp(oldpath, newpath);
608 78f5ac24 2022-03-19 op
609 6e96b326 2022-03-12 op if (asprintf(&template, "%s/got-patch",
610 6e96b326 2022-03-12 op got_worktree_get_root_path(worktree)) == -1) {
611 6e96b326 2022-03-12 op err = got_error_from_errno(template);
612 e9ce266e 2022-03-07 op goto done;
613 e9ce266e 2022-03-07 op }
614 e9ce266e 2022-03-07 op
615 b22138f5 2022-03-16 op if (!nop)
616 899fcfdf 2022-03-13 op err = got_opentemp_named(&tmppath, &tmp, template);
617 6e96b326 2022-03-12 op if (err)
618 6e96b326 2022-03-12 op goto done;
619 2be5e1a2 2022-03-16 op err = patch_file(p, oldpath, tmp, nop, &mode);
620 6e96b326 2022-03-12 op if (err)
621 6e96b326 2022-03-12 op goto done;
622 6e96b326 2022-03-12 op
623 b22138f5 2022-03-16 op if (nop)
624 899fcfdf 2022-03-13 op goto done;
625 899fcfdf 2022-03-13 op
626 5b67f96e 2022-03-13 op if (p->old != NULL && p->new == NULL) {
627 f2dd7807 2022-05-17 op err = got_worktree_patch_schedule_rm(old, repo, worktree,
628 f2dd7807 2022-05-17 op fileindex, patch_delete, pa);
629 5b67f96e 2022-03-13 op goto done;
630 5b67f96e 2022-03-13 op }
631 5b67f96e 2022-03-13 op
632 2be5e1a2 2022-03-16 op if (fchmod(fileno(tmp), mode) == -1) {
633 41a37a44 2022-04-23 op err = got_error_from_errno2("chmod", tmppath);
634 2be5e1a2 2022-03-16 op goto done;
635 2be5e1a2 2022-03-16 op }
636 2be5e1a2 2022-03-16 op
637 6e96b326 2022-03-12 op if (rename(tmppath, newpath) == -1) {
638 95d68340 2022-03-16 op if (errno != ENOENT) {
639 95d68340 2022-03-16 op err = got_error_from_errno3("rename", tmppath,
640 95d68340 2022-03-16 op newpath);
641 95d68340 2022-03-16 op goto done;
642 95d68340 2022-03-16 op }
643 95d68340 2022-03-16 op
644 95d68340 2022-03-16 op err = got_path_dirname(&parent, newpath);
645 95d68340 2022-03-16 op if (err != NULL)
646 95d68340 2022-03-16 op goto done;
647 95d68340 2022-03-16 op err = got_path_mkdir(parent);
648 95d68340 2022-03-16 op if (err != NULL)
649 95d68340 2022-03-16 op goto done;
650 95d68340 2022-03-16 op if (rename(tmppath, newpath) == -1) {
651 95d68340 2022-03-16 op err = got_error_from_errno3("rename", tmppath,
652 95d68340 2022-03-16 op newpath);
653 95d68340 2022-03-16 op goto done;
654 95d68340 2022-03-16 op }
655 6e96b326 2022-03-12 op }
656 6e96b326 2022-03-12 op
657 6e96b326 2022-03-12 op if (file_renamed) {
658 f2dd7807 2022-05-17 op err = got_worktree_patch_schedule_rm(old, repo, worktree,
659 f2dd7807 2022-05-17 op fileindex, patch_delete, pa);
660 6e96b326 2022-03-12 op if (err == NULL)
661 f2dd7807 2022-05-17 op err = got_worktree_patch_schedule_add(new, repo,
662 f2dd7807 2022-05-17 op worktree, fileindex, patch_add,
663 f2dd7807 2022-05-17 op pa);
664 78f5ac24 2022-03-19 op if (err)
665 78f5ac24 2022-03-19 op unlink(newpath);
666 78f5ac24 2022-03-19 op } else if (p->old == NULL) {
667 f2dd7807 2022-05-17 op err = got_worktree_patch_schedule_add(new, repo, worktree,
668 f2dd7807 2022-05-17 op fileindex, patch_add, pa);
669 78f5ac24 2022-03-19 op if (err)
670 78f5ac24 2022-03-19 op unlink(newpath);
671 78f5ac24 2022-03-19 op } else
672 ed3bff83 2022-04-23 op err = report_progress(pa, old, new, GOT_STATUS_MODIFY, NULL);
673 6e96b326 2022-03-12 op
674 e9ce266e 2022-03-07 op done:
675 95d68340 2022-03-16 op free(parent);
676 6f5cb1bd 2022-03-08 op free(template);
677 e9ce266e 2022-03-07 op if (tmppath != NULL)
678 e9ce266e 2022-03-07 op unlink(tmppath);
679 e9ce266e 2022-03-07 op free(tmppath);
680 ed3bff83 2022-04-23 op free(oldpath);
681 ed3bff83 2022-04-23 op free(newpath);
682 e9ce266e 2022-03-07 op return err;
683 bad961bf 2022-04-23 op }
684 bad961bf 2022-04-23 op
685 bad961bf 2022-04-23 op static void
686 bad961bf 2022-04-23 op reverse_patch(struct got_patch *p)
687 bad961bf 2022-04-23 op {
688 bad961bf 2022-04-23 op struct got_patch_hunk *h;
689 bad961bf 2022-04-23 op size_t i;
690 bad961bf 2022-04-23 op long tmp;
691 bad961bf 2022-04-23 op
692 bad961bf 2022-04-23 op STAILQ_FOREACH(h, &p->head, entries) {
693 bad961bf 2022-04-23 op tmp = h->old_from;
694 bad961bf 2022-04-23 op h->old_from = h->new_from;
695 bad961bf 2022-04-23 op h->new_from = tmp;
696 bad961bf 2022-04-23 op
697 bad961bf 2022-04-23 op tmp = h->old_lines;
698 bad961bf 2022-04-23 op h->old_lines = h->new_lines;
699 bad961bf 2022-04-23 op h->new_lines = tmp;
700 bad961bf 2022-04-23 op
701 bad961bf 2022-04-23 op tmp = h->old_nonl;
702 bad961bf 2022-04-23 op h->old_nonl = h->new_nonl;
703 bad961bf 2022-04-23 op h->new_nonl = tmp;
704 bad961bf 2022-04-23 op
705 bad961bf 2022-04-23 op for (i = 0; i < h->len; ++i) {
706 bad961bf 2022-04-23 op if (*h->lines[i] == '+')
707 bad961bf 2022-04-23 op *h->lines[i] = '-';
708 bad961bf 2022-04-23 op else if (*h->lines[i] == '-')
709 bad961bf 2022-04-23 op *h->lines[i] = '+';
710 bad961bf 2022-04-23 op }
711 bad961bf 2022-04-23 op }
712 e9ce266e 2022-03-07 op }
713 e9ce266e 2022-03-07 op
714 e9ce266e 2022-03-07 op const struct got_error *
715 e9ce266e 2022-03-07 op got_patch(int fd, struct got_worktree *worktree, struct got_repository *repo,
716 bad961bf 2022-04-23 op int nop, int strip, int reverse, got_patch_progress_cb progress_cb,
717 bad961bf 2022-04-23 op void *progress_arg, got_cancel_cb cancel_cb, void *cancel_arg)
718 e9ce266e 2022-03-07 op {
719 4bcdc895 2022-05-17 op const struct got_error *err = NULL, *complete_err = NULL;
720 78f5ac24 2022-03-19 op struct got_fileindex *fileindex = NULL;
721 f2dd7807 2022-05-17 op char *fileindex_path = NULL;
722 60aa1fa0 2022-03-17 op char *oldpath, *newpath;
723 e9ce266e 2022-03-07 op struct imsgbuf *ibuf;
724 e9ce266e 2022-03-07 op int imsg_fds[2] = {-1, -1};
725 60aa1fa0 2022-03-17 op int done = 0, failed = 0;
726 e9ce266e 2022-03-07 op pid_t pid;
727 e9ce266e 2022-03-07 op
728 e9ce266e 2022-03-07 op ibuf = calloc(1, sizeof(*ibuf));
729 e9ce266e 2022-03-07 op if (ibuf == NULL) {
730 e9ce266e 2022-03-07 op err = got_error_from_errno("calloc");
731 e9ce266e 2022-03-07 op goto done;
732 e9ce266e 2022-03-07 op }
733 e9ce266e 2022-03-07 op
734 e9ce266e 2022-03-07 op if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, imsg_fds) == -1) {
735 e9ce266e 2022-03-07 op err = got_error_from_errno("socketpair");
736 e9ce266e 2022-03-07 op goto done;
737 e9ce266e 2022-03-07 op }
738 e9ce266e 2022-03-07 op
739 e9ce266e 2022-03-07 op pid = fork();
740 e9ce266e 2022-03-07 op if (pid == -1) {
741 e9ce266e 2022-03-07 op err = got_error_from_errno("fork");
742 e9ce266e 2022-03-07 op goto done;
743 e9ce266e 2022-03-07 op } else if (pid == 0) {
744 e9ce266e 2022-03-07 op got_privsep_exec_child(imsg_fds, GOT_PATH_PROG_READ_PATCH,
745 e9ce266e 2022-03-07 op NULL);
746 e9ce266e 2022-03-07 op /* not reached */
747 e9ce266e 2022-03-07 op }
748 e9ce266e 2022-03-07 op
749 e9ce266e 2022-03-07 op if (close(imsg_fds[1]) == -1) {
750 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
751 e9ce266e 2022-03-07 op goto done;
752 e9ce266e 2022-03-07 op }
753 e9ce266e 2022-03-07 op imsg_fds[1] = -1;
754 e9ce266e 2022-03-07 op imsg_init(ibuf, imsg_fds[0]);
755 e9ce266e 2022-03-07 op
756 e9ce266e 2022-03-07 op err = send_patch(ibuf, fd);
757 e9ce266e 2022-03-07 op fd = -1;
758 e9ce266e 2022-03-07 op if (err)
759 e9ce266e 2022-03-07 op goto done;
760 e9ce266e 2022-03-07 op
761 f2dd7807 2022-05-17 op err = got_worktree_patch_prepare(&fileindex, &fileindex_path,
762 f2dd7807 2022-05-17 op worktree);
763 78f5ac24 2022-03-19 op if (err)
764 78f5ac24 2022-03-19 op goto done;
765 78f5ac24 2022-03-19 op
766 e9ce266e 2022-03-07 op while (!done && err == NULL) {
767 e9ce266e 2022-03-07 op struct got_patch p;
768 60aa1fa0 2022-03-17 op struct patch_args pa;
769 e9ce266e 2022-03-07 op
770 60aa1fa0 2022-03-17 op pa.progress_cb = progress_cb;
771 60aa1fa0 2022-03-17 op pa.progress_arg = progress_arg;
772 60aa1fa0 2022-03-17 op pa.head = &p.head;
773 60aa1fa0 2022-03-17 op
774 9d6cabd5 2022-04-07 op err = recv_patch(ibuf, &done, &p, strip);
775 e9ce266e 2022-03-07 op if (err || done)
776 e9ce266e 2022-03-07 op break;
777 e9ce266e 2022-03-07 op
778 bad961bf 2022-04-23 op if (reverse)
779 bad961bf 2022-04-23 op reverse_patch(&p);
780 bad961bf 2022-04-23 op
781 78f5ac24 2022-03-19 op err = got_worktree_patch_check_path(p.old, p.new, &oldpath,
782 78f5ac24 2022-03-19 op &newpath, worktree, repo, fileindex);
783 78f5ac24 2022-03-19 op if (err == NULL)
784 f2dd7807 2022-05-17 op err = apply_patch(worktree, repo, fileindex, oldpath,
785 f2dd7807 2022-05-17 op newpath, &p, nop, &pa, cancel_cb, cancel_arg);
786 60aa1fa0 2022-03-17 op if (err != NULL) {
787 60aa1fa0 2022-03-17 op failed = 1;
788 60aa1fa0 2022-03-17 op /* recoverable errors */
789 60aa1fa0 2022-03-17 op if (err->code == GOT_ERR_FILE_STATUS ||
790 60aa1fa0 2022-03-17 op (err->code == GOT_ERR_ERRNO && errno == ENOENT))
791 60aa1fa0 2022-03-17 op err = report_progress(&pa, p.old, p.new,
792 60aa1fa0 2022-03-17 op GOT_STATUS_CANNOT_UPDATE, err);
793 60aa1fa0 2022-03-17 op else if (err->code == GOT_ERR_HUNK_FAILED)
794 60aa1fa0 2022-03-17 op err = report_progress(&pa, p.old, p.new,
795 60aa1fa0 2022-03-17 op GOT_STATUS_CANNOT_UPDATE, NULL);
796 60aa1fa0 2022-03-17 op }
797 60aa1fa0 2022-03-17 op
798 60aa1fa0 2022-03-17 op free(oldpath);
799 60aa1fa0 2022-03-17 op free(newpath);
800 e9ce266e 2022-03-07 op patch_free(&p);
801 60aa1fa0 2022-03-17 op
802 e9ce266e 2022-03-07 op if (err)
803 e9ce266e 2022-03-07 op break;
804 e9ce266e 2022-03-07 op }
805 e9ce266e 2022-03-07 op
806 e9ce266e 2022-03-07 op done:
807 4bcdc895 2022-05-17 op if (fileindex != NULL)
808 4bcdc895 2022-05-17 op complete_err = got_worktree_patch_complete(fileindex,
809 4bcdc895 2022-05-17 op fileindex_path);
810 f2dd7807 2022-05-17 op if (complete_err && err == NULL)
811 f2dd7807 2022-05-17 op err = complete_err;
812 4bcdc895 2022-05-17 op free(fileindex_path);
813 e9ce266e 2022-03-07 op if (fd != -1 && close(fd) == -1 && err == NULL)
814 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
815 e9ce266e 2022-03-07 op if (ibuf != NULL)
816 e9ce266e 2022-03-07 op imsg_clear(ibuf);
817 e9ce266e 2022-03-07 op if (imsg_fds[0] != -1 && close(imsg_fds[0]) == -1 && err == NULL)
818 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
819 e9ce266e 2022-03-07 op if (imsg_fds[1] != -1 && close(imsg_fds[1]) == -1 && err == NULL)
820 e9ce266e 2022-03-07 op err = got_error_from_errno("close");
821 60aa1fa0 2022-03-17 op if (err == NULL && failed)
822 60aa1fa0 2022-03-17 op err = got_error(GOT_ERR_PATCH_FAILED);
823 e9ce266e 2022-03-07 op return err;
824 e9ce266e 2022-03-07 op }