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