Blame


1 069bbb86 2022-03-07 thomas /*
2 069bbb86 2022-03-07 thomas * Copyright 1986, Larry Wall
3 069bbb86 2022-03-07 thomas *
4 069bbb86 2022-03-07 thomas * Redistribution and use in source and binary forms, with or without
5 069bbb86 2022-03-07 thomas * modification, are permitted provided that the following condition is met:
6 069bbb86 2022-03-07 thomas * 1. Redistributions of source code must retain the above copyright notice,
7 069bbb86 2022-03-07 thomas * this condition and the following disclaimer.
8 069bbb86 2022-03-07 thomas *
9 069bbb86 2022-03-07 thomas * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
10 069bbb86 2022-03-07 thomas * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
11 069bbb86 2022-03-07 thomas * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
12 069bbb86 2022-03-07 thomas * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
13 069bbb86 2022-03-07 thomas * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
14 069bbb86 2022-03-07 thomas * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
15 069bbb86 2022-03-07 thomas * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
16 069bbb86 2022-03-07 thomas * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
17 069bbb86 2022-03-07 thomas * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
18 069bbb86 2022-03-07 thomas * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
19 069bbb86 2022-03-07 thomas * SUCH DAMAGE.
20 069bbb86 2022-03-07 thomas */
21 069bbb86 2022-03-07 thomas
22 069bbb86 2022-03-07 thomas /*
23 069bbb86 2022-03-07 thomas * Copyright (c) 2022 Omar Polo <op@openbsd.org>
24 069bbb86 2022-03-07 thomas *
25 069bbb86 2022-03-07 thomas * Permission to use, copy, modify, and distribute this software for any
26 069bbb86 2022-03-07 thomas * purpose with or without fee is hereby granted, provided that the above
27 069bbb86 2022-03-07 thomas * copyright notice and this permission notice appear in all copies.
28 069bbb86 2022-03-07 thomas *
29 069bbb86 2022-03-07 thomas * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
30 069bbb86 2022-03-07 thomas * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
31 069bbb86 2022-03-07 thomas * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
32 069bbb86 2022-03-07 thomas * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
33 069bbb86 2022-03-07 thomas * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
34 069bbb86 2022-03-07 thomas * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
35 069bbb86 2022-03-07 thomas * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
36 069bbb86 2022-03-07 thomas */
37 069bbb86 2022-03-07 thomas
38 069bbb86 2022-03-07 thomas #include <sys/types.h>
39 069bbb86 2022-03-07 thomas #include <sys/uio.h>
40 069bbb86 2022-03-07 thomas
41 069bbb86 2022-03-07 thomas #include <ctype.h>
42 069bbb86 2022-03-07 thomas #include <limits.h>
43 069bbb86 2022-03-07 thomas #include <paths.h>
44 069bbb86 2022-03-07 thomas #include <stdint.h>
45 069bbb86 2022-03-07 thomas #include <stdio.h>
46 069bbb86 2022-03-07 thomas #include <stdlib.h>
47 069bbb86 2022-03-07 thomas #include <string.h>
48 069bbb86 2022-03-07 thomas #include <unistd.h>
49 069bbb86 2022-03-07 thomas
50 069bbb86 2022-03-07 thomas #include "got_error.h"
51 069bbb86 2022-03-07 thomas #include "got_object.h"
52 069bbb86 2022-03-07 thomas
53 973f3f6e 2022-03-07 thomas #include "got_compat.h"
54 973f3f6e 2022-03-07 thomas
55 069bbb86 2022-03-07 thomas #include "got_lib_delta.h"
56 069bbb86 2022-03-07 thomas #include "got_lib_object.h"
57 069bbb86 2022-03-07 thomas #include "got_lib_privsep.h"
58 069bbb86 2022-03-07 thomas
59 069bbb86 2022-03-07 thomas struct imsgbuf ibuf;
60 069bbb86 2022-03-07 thomas
61 069bbb86 2022-03-07 thomas static const struct got_error *
62 069bbb86 2022-03-07 thomas send_patch(const char *oldname, const char *newname)
63 069bbb86 2022-03-07 thomas {
64 069bbb86 2022-03-07 thomas struct got_imsg_patch p;
65 069bbb86 2022-03-07 thomas
66 069bbb86 2022-03-07 thomas memset(&p, 0, sizeof(p));
67 069bbb86 2022-03-07 thomas
68 069bbb86 2022-03-07 thomas if (oldname != NULL)
69 069bbb86 2022-03-07 thomas strlcpy(p.old, oldname, sizeof(p.old));
70 069bbb86 2022-03-07 thomas if (newname != NULL)
71 069bbb86 2022-03-07 thomas strlcpy(p.new, newname, sizeof(p.new));
72 069bbb86 2022-03-07 thomas
73 069bbb86 2022-03-07 thomas if (imsg_compose(&ibuf, GOT_IMSG_PATCH, 0, 0, -1,
74 069bbb86 2022-03-07 thomas &p, sizeof(p)) == -1)
75 069bbb86 2022-03-07 thomas return got_error_from_errno("imsg_compose GOT_IMSG_PATCH");
76 069bbb86 2022-03-07 thomas return NULL;
77 069bbb86 2022-03-07 thomas }
78 069bbb86 2022-03-07 thomas
79 069bbb86 2022-03-07 thomas static const struct got_error *
80 069bbb86 2022-03-07 thomas send_patch_done(void)
81 069bbb86 2022-03-07 thomas {
82 069bbb86 2022-03-07 thomas if (imsg_compose(&ibuf, GOT_IMSG_PATCH_DONE, 0, 0, -1,
83 069bbb86 2022-03-07 thomas NULL, 0) == -1)
84 069bbb86 2022-03-07 thomas return got_error_from_errno("imsg_compose GOT_IMSG_PATCH_EOF");
85 069bbb86 2022-03-07 thomas if (imsg_flush(&ibuf) == -1)
86 069bbb86 2022-03-07 thomas return got_error_from_errno("imsg_flush");
87 069bbb86 2022-03-07 thomas return NULL;
88 069bbb86 2022-03-07 thomas }
89 069bbb86 2022-03-07 thomas
90 069bbb86 2022-03-07 thomas /* based on fetchname from usr.bin/patch/util.c */
91 069bbb86 2022-03-07 thomas static const struct got_error *
92 069bbb86 2022-03-07 thomas filename(const char *at, char **name, int strip)
93 069bbb86 2022-03-07 thomas {
94 069bbb86 2022-03-07 thomas char *fullname, *t;
95 069bbb86 2022-03-07 thomas int l, tab;
96 069bbb86 2022-03-07 thomas
97 069bbb86 2022-03-07 thomas *name = NULL;
98 069bbb86 2022-03-07 thomas if (*at == '\0')
99 069bbb86 2022-03-07 thomas return NULL;
100 069bbb86 2022-03-07 thomas
101 069bbb86 2022-03-07 thomas while (isspace((unsigned char)*at))
102 069bbb86 2022-03-07 thomas at++;
103 069bbb86 2022-03-07 thomas
104 069bbb86 2022-03-07 thomas /* files can be created or removed by diffing against /dev/null */
105 069bbb86 2022-03-07 thomas if (!strncmp(at, _PATH_DEVNULL, sizeof(_PATH_DEVNULL)-1))
106 069bbb86 2022-03-07 thomas return NULL;
107 069bbb86 2022-03-07 thomas
108 069bbb86 2022-03-07 thomas t = strdup(at);
109 069bbb86 2022-03-07 thomas if (t == NULL)
110 069bbb86 2022-03-07 thomas return got_error_from_errno("strdup");
111 069bbb86 2022-03-07 thomas *name = fullname = t;
112 069bbb86 2022-03-07 thomas tab = strchr(t, '\t') != NULL;
113 069bbb86 2022-03-07 thomas
114 069bbb86 2022-03-07 thomas /* strip off path components and NUL-terminate */
115 069bbb86 2022-03-07 thomas for (l = strip;
116 069bbb86 2022-03-07 thomas *t != '\0' && ((tab && *t != '\t') || !isspace((unsigned char)*t));
117 069bbb86 2022-03-07 thomas ++t) {
118 069bbb86 2022-03-07 thomas if (t[0] == '/' && t[1] != '/' && t[1] != '\0')
119 069bbb86 2022-03-07 thomas if (--l >= 0)
120 069bbb86 2022-03-07 thomas *name = t+1;
121 069bbb86 2022-03-07 thomas }
122 069bbb86 2022-03-07 thomas *t = '\0';
123 069bbb86 2022-03-07 thomas
124 069bbb86 2022-03-07 thomas *name = strdup(*name);
125 069bbb86 2022-03-07 thomas free(fullname);
126 069bbb86 2022-03-07 thomas if (*name == NULL)
127 069bbb86 2022-03-07 thomas return got_error_from_errno("strdup");
128 069bbb86 2022-03-07 thomas return NULL;
129 069bbb86 2022-03-07 thomas }
130 069bbb86 2022-03-07 thomas
131 069bbb86 2022-03-07 thomas static const struct got_error *
132 069bbb86 2022-03-07 thomas find_patch(FILE *fp)
133 069bbb86 2022-03-07 thomas {
134 069bbb86 2022-03-07 thomas const struct got_error *err = NULL;
135 069bbb86 2022-03-07 thomas char *old = NULL, *new = NULL;
136 069bbb86 2022-03-07 thomas char *line = NULL;
137 069bbb86 2022-03-07 thomas size_t linesize = 0;
138 069bbb86 2022-03-07 thomas ssize_t linelen;
139 069bbb86 2022-03-07 thomas int create, git = 0;
140 069bbb86 2022-03-07 thomas
141 069bbb86 2022-03-07 thomas while ((linelen = getline(&line, &linesize, fp)) != -1) {
142 069bbb86 2022-03-07 thomas /*
143 069bbb86 2022-03-07 thomas * Ignore the Index name like GNU and larry' patch,
144 069bbb86 2022-03-07 thomas * we don't have to follow POSIX.
145 069bbb86 2022-03-07 thomas */
146 069bbb86 2022-03-07 thomas
147 069bbb86 2022-03-07 thomas if (git && !strncmp(line, "--- a/", 6)) {
148 069bbb86 2022-03-07 thomas free(old);
149 069bbb86 2022-03-07 thomas err = filename(line+6, &old, 0);
150 069bbb86 2022-03-07 thomas } else if (!strncmp(line, "--- ", 4)) {
151 069bbb86 2022-03-07 thomas free(old);
152 069bbb86 2022-03-07 thomas err = filename(line+4, &old, 0);
153 069bbb86 2022-03-07 thomas } else if (git && !strncmp(line, "+++ b/", 6)) {
154 069bbb86 2022-03-07 thomas free(new);
155 069bbb86 2022-03-07 thomas err = filename(line+6, &new, 0);
156 069bbb86 2022-03-07 thomas } else if (!strncmp(line, "+++ ", 4)) {
157 069bbb86 2022-03-07 thomas free(new);
158 069bbb86 2022-03-07 thomas err = filename(line+4, &new, 0);
159 069bbb86 2022-03-07 thomas } else if (!strncmp(line, "diff --git a/", 13))
160 069bbb86 2022-03-07 thomas git = 1;
161 069bbb86 2022-03-07 thomas
162 069bbb86 2022-03-07 thomas if (err)
163 069bbb86 2022-03-07 thomas break;
164 069bbb86 2022-03-07 thomas
165 069bbb86 2022-03-07 thomas if (!strncmp(line, "@@ -", 4)) {
166 069bbb86 2022-03-07 thomas create = !strncmp(line+4, "0,0", 3);
167 069bbb86 2022-03-07 thomas if ((old == NULL && new == NULL) ||
168 069bbb86 2022-03-07 thomas (!create && old == NULL))
169 069bbb86 2022-03-07 thomas err = got_error(GOT_ERR_PATCH_MALFORMED);
170 069bbb86 2022-03-07 thomas else
171 069bbb86 2022-03-07 thomas err = send_patch(old, new);
172 069bbb86 2022-03-07 thomas
173 069bbb86 2022-03-07 thomas if (err)
174 069bbb86 2022-03-07 thomas break;
175 069bbb86 2022-03-07 thomas
176 069bbb86 2022-03-07 thomas /* rewind to previous line */
177 069bbb86 2022-03-07 thomas if (fseek(fp, linelen * -1, SEEK_CUR) == -1)
178 069bbb86 2022-03-07 thomas err = got_error_from_errno("fseek");
179 069bbb86 2022-03-07 thomas break;
180 069bbb86 2022-03-07 thomas }
181 069bbb86 2022-03-07 thomas }
182 069bbb86 2022-03-07 thomas
183 19f1a2ac 2022-03-13 thomas free(old);
184 19f1a2ac 2022-03-13 thomas free(new);
185 069bbb86 2022-03-07 thomas free(line);
186 069bbb86 2022-03-07 thomas if (ferror(fp) && err == NULL)
187 069bbb86 2022-03-07 thomas err = got_error_from_errno("getline");
188 069bbb86 2022-03-07 thomas if (feof(fp) && err == NULL)
189 069bbb86 2022-03-07 thomas err = got_error(GOT_ERR_NO_PATCH);
190 069bbb86 2022-03-07 thomas return err;
191 069bbb86 2022-03-07 thomas }
192 069bbb86 2022-03-07 thomas
193 069bbb86 2022-03-07 thomas static const struct got_error *
194 069bbb86 2022-03-07 thomas strtolnum(char **str, long *n)
195 069bbb86 2022-03-07 thomas {
196 069bbb86 2022-03-07 thomas char *p, c;
197 069bbb86 2022-03-07 thomas const char *errstr;
198 069bbb86 2022-03-07 thomas
199 069bbb86 2022-03-07 thomas for (p = *str; isdigit((unsigned char)*p); ++p)
200 069bbb86 2022-03-07 thomas /* nop */;
201 069bbb86 2022-03-07 thomas
202 069bbb86 2022-03-07 thomas c = *p;
203 069bbb86 2022-03-07 thomas *p = '\0';
204 069bbb86 2022-03-07 thomas
205 069bbb86 2022-03-07 thomas *n = strtonum(*str, 0, LONG_MAX, &errstr);
206 069bbb86 2022-03-07 thomas if (errstr != NULL)
207 069bbb86 2022-03-07 thomas return got_error(GOT_ERR_PATCH_MALFORMED);
208 069bbb86 2022-03-07 thomas
209 069bbb86 2022-03-07 thomas *p = c;
210 069bbb86 2022-03-07 thomas *str = p;
211 069bbb86 2022-03-07 thomas return NULL;
212 069bbb86 2022-03-07 thomas }
213 069bbb86 2022-03-07 thomas
214 069bbb86 2022-03-07 thomas static const struct got_error *
215 069bbb86 2022-03-07 thomas parse_hdr(char *s, int *ok, struct got_imsg_patch_hunk *hdr)
216 069bbb86 2022-03-07 thomas {
217 069bbb86 2022-03-07 thomas static const struct got_error *err = NULL;
218 069bbb86 2022-03-07 thomas
219 069bbb86 2022-03-07 thomas *ok = 1;
220 069bbb86 2022-03-07 thomas if (strncmp(s, "@@ -", 4)) {
221 069bbb86 2022-03-07 thomas *ok = 0;
222 069bbb86 2022-03-07 thomas return NULL;
223 069bbb86 2022-03-07 thomas }
224 069bbb86 2022-03-07 thomas
225 069bbb86 2022-03-07 thomas s += 4;
226 069bbb86 2022-03-07 thomas if (!*s)
227 069bbb86 2022-03-07 thomas return NULL;
228 069bbb86 2022-03-07 thomas err = strtolnum(&s, &hdr->oldfrom);
229 069bbb86 2022-03-07 thomas if (err)
230 069bbb86 2022-03-07 thomas return err;
231 069bbb86 2022-03-07 thomas if (*s == ',') {
232 069bbb86 2022-03-07 thomas s++;
233 069bbb86 2022-03-07 thomas err = strtolnum(&s, &hdr->oldlines);
234 069bbb86 2022-03-07 thomas if (err)
235 069bbb86 2022-03-07 thomas return err;
236 069bbb86 2022-03-07 thomas } else
237 069bbb86 2022-03-07 thomas hdr->oldlines = 1;
238 069bbb86 2022-03-07 thomas
239 069bbb86 2022-03-07 thomas if (*s == ' ')
240 069bbb86 2022-03-07 thomas s++;
241 069bbb86 2022-03-07 thomas
242 069bbb86 2022-03-07 thomas if (*s != '+' || !*++s)
243 069bbb86 2022-03-07 thomas return got_error(GOT_ERR_PATCH_MALFORMED);
244 069bbb86 2022-03-07 thomas err = strtolnum(&s, &hdr->newfrom);
245 069bbb86 2022-03-07 thomas if (err)
246 069bbb86 2022-03-07 thomas return err;
247 069bbb86 2022-03-07 thomas if (*s == ',') {
248 069bbb86 2022-03-07 thomas s++;
249 069bbb86 2022-03-07 thomas err = strtolnum(&s, &hdr->newlines);
250 069bbb86 2022-03-07 thomas if (err)
251 069bbb86 2022-03-07 thomas return err;
252 069bbb86 2022-03-07 thomas } else
253 069bbb86 2022-03-07 thomas hdr->newlines = 1;
254 069bbb86 2022-03-07 thomas
255 069bbb86 2022-03-07 thomas if (*s == ' ')
256 069bbb86 2022-03-07 thomas s++;
257 069bbb86 2022-03-07 thomas
258 069bbb86 2022-03-07 thomas if (*s != '@')
259 069bbb86 2022-03-07 thomas return got_error(GOT_ERR_PATCH_MALFORMED);
260 069bbb86 2022-03-07 thomas
261 069bbb86 2022-03-07 thomas if (hdr->oldfrom >= LONG_MAX - hdr->oldlines ||
262 069bbb86 2022-03-07 thomas hdr->newfrom >= LONG_MAX - hdr->newlines ||
263 069bbb86 2022-03-07 thomas /* not so sure about this one */
264 069bbb86 2022-03-07 thomas hdr->oldlines >= LONG_MAX - hdr->newlines - 1)
265 069bbb86 2022-03-07 thomas return got_error(GOT_ERR_PATCH_MALFORMED);
266 069bbb86 2022-03-07 thomas
267 069bbb86 2022-03-07 thomas if (hdr->oldlines == 0) {
268 069bbb86 2022-03-07 thomas /* larry says to "do append rather than insert"; I don't
269 069bbb86 2022-03-07 thomas * quite get it, but i trust him.
270 069bbb86 2022-03-07 thomas */
271 069bbb86 2022-03-07 thomas hdr->oldfrom++;
272 069bbb86 2022-03-07 thomas }
273 069bbb86 2022-03-07 thomas
274 069bbb86 2022-03-07 thomas if (imsg_compose(&ibuf, GOT_IMSG_PATCH_HUNK, 0, 0, -1,
275 069bbb86 2022-03-07 thomas hdr, sizeof(*hdr)) == -1)
276 069bbb86 2022-03-07 thomas return got_error_from_errno(
277 069bbb86 2022-03-07 thomas "imsg_compose GOT_IMSG_PATCH_HUNK");
278 069bbb86 2022-03-07 thomas return NULL;
279 069bbb86 2022-03-07 thomas }
280 069bbb86 2022-03-07 thomas
281 069bbb86 2022-03-07 thomas static const struct got_error *
282 069bbb86 2022-03-07 thomas send_line(const char *line)
283 069bbb86 2022-03-07 thomas {
284 069bbb86 2022-03-07 thomas static const struct got_error *err = NULL;
285 069bbb86 2022-03-07 thomas char *p = NULL;
286 069bbb86 2022-03-07 thomas
287 069bbb86 2022-03-07 thomas if (*line != '+' && *line != '-' && *line != ' ') {
288 069bbb86 2022-03-07 thomas if (asprintf(&p, " %s", line) == -1)
289 069bbb86 2022-03-07 thomas return got_error_from_errno("asprintf");
290 069bbb86 2022-03-07 thomas line = p;
291 069bbb86 2022-03-07 thomas }
292 069bbb86 2022-03-07 thomas
293 069bbb86 2022-03-07 thomas if (imsg_compose(&ibuf, GOT_IMSG_PATCH_LINE, 0, 0, -1,
294 069bbb86 2022-03-07 thomas line, strlen(line)+1) == -1)
295 069bbb86 2022-03-07 thomas err = got_error_from_errno(
296 069bbb86 2022-03-07 thomas "imsg_compose GOT_IMSG_PATCH_LINE");
297 069bbb86 2022-03-07 thomas
298 069bbb86 2022-03-07 thomas free(p);
299 069bbb86 2022-03-07 thomas return err;
300 069bbb86 2022-03-07 thomas }
301 069bbb86 2022-03-07 thomas
302 069bbb86 2022-03-07 thomas static const struct got_error *
303 069bbb86 2022-03-07 thomas parse_hunk(FILE *fp, int *ok)
304 069bbb86 2022-03-07 thomas {
305 069bbb86 2022-03-07 thomas static const struct got_error *err = NULL;
306 069bbb86 2022-03-07 thomas struct got_imsg_patch_hunk hdr;
307 069bbb86 2022-03-07 thomas char *line = NULL, ch;
308 069bbb86 2022-03-07 thomas size_t linesize = 0;
309 069bbb86 2022-03-07 thomas ssize_t linelen;
310 069bbb86 2022-03-07 thomas long leftold, leftnew;
311 069bbb86 2022-03-07 thomas
312 069bbb86 2022-03-07 thomas linelen = getline(&line, &linesize, fp);
313 069bbb86 2022-03-07 thomas if (linelen == -1) {
314 069bbb86 2022-03-07 thomas *ok = 0;
315 069bbb86 2022-03-07 thomas goto done;
316 069bbb86 2022-03-07 thomas }
317 069bbb86 2022-03-07 thomas
318 069bbb86 2022-03-07 thomas err = parse_hdr(line, ok, &hdr);
319 069bbb86 2022-03-07 thomas if (err)
320 069bbb86 2022-03-07 thomas goto done;
321 069bbb86 2022-03-07 thomas if (!*ok) {
322 069bbb86 2022-03-07 thomas if (fseek(fp, linelen * -1, SEEK_CUR) == -1)
323 069bbb86 2022-03-07 thomas err = got_error_from_errno("fseek");
324 069bbb86 2022-03-07 thomas goto done;
325 069bbb86 2022-03-07 thomas }
326 069bbb86 2022-03-07 thomas
327 069bbb86 2022-03-07 thomas leftold = hdr.oldlines;
328 069bbb86 2022-03-07 thomas leftnew = hdr.newlines;
329 069bbb86 2022-03-07 thomas
330 069bbb86 2022-03-07 thomas while (leftold > 0 || leftnew > 0) {
331 069bbb86 2022-03-07 thomas linelen = getline(&line, &linesize, fp);
332 069bbb86 2022-03-07 thomas if (linelen == -1) {
333 069bbb86 2022-03-07 thomas if (ferror(fp)) {
334 069bbb86 2022-03-07 thomas err = got_error_from_errno("getline");
335 069bbb86 2022-03-07 thomas goto done;
336 069bbb86 2022-03-07 thomas }
337 069bbb86 2022-03-07 thomas
338 069bbb86 2022-03-07 thomas /* trailing newlines may be chopped */
339 069bbb86 2022-03-07 thomas if (leftold < 3 && leftnew < 3) {
340 069bbb86 2022-03-07 thomas *ok = 0;
341 069bbb86 2022-03-07 thomas break;
342 069bbb86 2022-03-07 thomas }
343 069bbb86 2022-03-07 thomas
344 069bbb86 2022-03-07 thomas err = got_error(GOT_ERR_PATCH_TRUNCATED);
345 069bbb86 2022-03-07 thomas goto done;
346 069bbb86 2022-03-07 thomas }
347 069bbb86 2022-03-07 thomas
348 069bbb86 2022-03-07 thomas /* usr.bin/patch allows '=' as context char */
349 069bbb86 2022-03-07 thomas if (*line == '=')
350 069bbb86 2022-03-07 thomas *line = ' ';
351 069bbb86 2022-03-07 thomas
352 069bbb86 2022-03-07 thomas ch = *line;
353 069bbb86 2022-03-07 thomas if (ch == '\t' || ch == '\n')
354 069bbb86 2022-03-07 thomas ch = ' '; /* the space got eaten */
355 069bbb86 2022-03-07 thomas
356 069bbb86 2022-03-07 thomas switch (ch) {
357 069bbb86 2022-03-07 thomas case '-':
358 069bbb86 2022-03-07 thomas leftold--;
359 069bbb86 2022-03-07 thomas break;
360 069bbb86 2022-03-07 thomas case ' ':
361 069bbb86 2022-03-07 thomas leftold--;
362 069bbb86 2022-03-07 thomas leftnew--;
363 069bbb86 2022-03-07 thomas break;
364 069bbb86 2022-03-07 thomas case '+':
365 069bbb86 2022-03-07 thomas leftnew--;
366 069bbb86 2022-03-07 thomas break;
367 069bbb86 2022-03-07 thomas default:
368 069bbb86 2022-03-07 thomas err = got_error(GOT_ERR_PATCH_MALFORMED);
369 069bbb86 2022-03-07 thomas goto done;
370 069bbb86 2022-03-07 thomas }
371 069bbb86 2022-03-07 thomas
372 069bbb86 2022-03-07 thomas if (leftold < 0 || leftnew < 0) {
373 069bbb86 2022-03-07 thomas err = got_error(GOT_ERR_PATCH_MALFORMED);
374 069bbb86 2022-03-07 thomas goto done;
375 069bbb86 2022-03-07 thomas }
376 069bbb86 2022-03-07 thomas
377 069bbb86 2022-03-07 thomas err = send_line(line);
378 069bbb86 2022-03-07 thomas if (err)
379 069bbb86 2022-03-07 thomas goto done;
380 069bbb86 2022-03-07 thomas }
381 069bbb86 2022-03-07 thomas
382 069bbb86 2022-03-07 thomas done:
383 069bbb86 2022-03-07 thomas free(line);
384 069bbb86 2022-03-07 thomas return err;
385 069bbb86 2022-03-07 thomas }
386 069bbb86 2022-03-07 thomas
387 069bbb86 2022-03-07 thomas static const struct got_error *
388 069bbb86 2022-03-07 thomas read_patch(struct imsgbuf *ibuf, int fd)
389 069bbb86 2022-03-07 thomas {
390 069bbb86 2022-03-07 thomas const struct got_error *err = NULL;
391 069bbb86 2022-03-07 thomas FILE *fp;
392 069bbb86 2022-03-07 thomas int ok, patch_found = 0;
393 069bbb86 2022-03-07 thomas
394 069bbb86 2022-03-07 thomas if ((fp = fdopen(fd, "r")) == NULL) {
395 069bbb86 2022-03-07 thomas err = got_error_from_errno("fdopen");
396 069bbb86 2022-03-07 thomas close(fd);
397 069bbb86 2022-03-07 thomas return err;
398 069bbb86 2022-03-07 thomas }
399 069bbb86 2022-03-07 thomas
400 069bbb86 2022-03-07 thomas while (!feof(fp)) {
401 069bbb86 2022-03-07 thomas err = find_patch(fp);
402 069bbb86 2022-03-07 thomas if (err)
403 069bbb86 2022-03-07 thomas goto done;
404 069bbb86 2022-03-07 thomas
405 069bbb86 2022-03-07 thomas patch_found = 1;
406 069bbb86 2022-03-07 thomas for (;;) {
407 069bbb86 2022-03-07 thomas err = parse_hunk(fp, &ok);
408 069bbb86 2022-03-07 thomas if (err)
409 069bbb86 2022-03-07 thomas goto done;
410 069bbb86 2022-03-07 thomas if (!ok) {
411 069bbb86 2022-03-07 thomas err = send_patch_done();
412 069bbb86 2022-03-07 thomas if (err)
413 069bbb86 2022-03-07 thomas goto done;
414 069bbb86 2022-03-07 thomas break;
415 069bbb86 2022-03-07 thomas }
416 069bbb86 2022-03-07 thomas }
417 069bbb86 2022-03-07 thomas }
418 069bbb86 2022-03-07 thomas
419 069bbb86 2022-03-07 thomas done:
420 069bbb86 2022-03-07 thomas fclose(fp);
421 069bbb86 2022-03-07 thomas
422 069bbb86 2022-03-07 thomas /* ignore trailing gibberish */
423 069bbb86 2022-03-07 thomas if (err != NULL && err->code == GOT_ERR_NO_PATCH && patch_found)
424 069bbb86 2022-03-07 thomas err = NULL;
425 069bbb86 2022-03-07 thomas
426 069bbb86 2022-03-07 thomas return err;
427 069bbb86 2022-03-07 thomas }
428 069bbb86 2022-03-07 thomas
429 069bbb86 2022-03-07 thomas int
430 069bbb86 2022-03-07 thomas main(int argc, char **argv)
431 069bbb86 2022-03-07 thomas {
432 069bbb86 2022-03-07 thomas const struct got_error *err = NULL;
433 069bbb86 2022-03-07 thomas struct imsg imsg;
434 069bbb86 2022-03-07 thomas #if 0
435 069bbb86 2022-03-07 thomas static int attached;
436 069bbb86 2022-03-07 thomas while (!attached)
437 069bbb86 2022-03-07 thomas sleep(1);
438 069bbb86 2022-03-07 thomas #endif
439 069bbb86 2022-03-07 thomas
440 069bbb86 2022-03-07 thomas imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
441 069bbb86 2022-03-07 thomas #ifndef PROFILE
442 069bbb86 2022-03-07 thomas /* revoke access to most system calls */
443 069bbb86 2022-03-07 thomas if (pledge("stdio recvfd", NULL) == -1) {
444 069bbb86 2022-03-07 thomas err = got_error_from_errno("pledge");
445 069bbb86 2022-03-07 thomas got_privsep_send_error(&ibuf, err);
446 069bbb86 2022-03-07 thomas return 1;
447 069bbb86 2022-03-07 thomas }
448 762ddcd8 2022-03-09 thomas
449 762ddcd8 2022-03-09 thomas /* revoke fs access */
450 762ddcd8 2022-03-09 thomas if (landlock_no_fs() == -1) {
451 762ddcd8 2022-03-09 thomas err = got_error_from_errno("landlock_no_fs");
452 762ddcd8 2022-03-09 thomas got_privsep_send_error(&ibuf, err);
453 762ddcd8 2022-03-09 thomas return 1;
454 762ddcd8 2022-03-09 thomas }
455 069bbb86 2022-03-07 thomas #endif
456 069bbb86 2022-03-07 thomas
457 069bbb86 2022-03-07 thomas err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
458 069bbb86 2022-03-07 thomas if (err)
459 069bbb86 2022-03-07 thomas goto done;
460 069bbb86 2022-03-07 thomas if (imsg.hdr.type != GOT_IMSG_PATCH_FILE || imsg.fd == -1) {
461 069bbb86 2022-03-07 thomas err = got_error(GOT_ERR_PRIVSEP_MSG);
462 069bbb86 2022-03-07 thomas goto done;
463 069bbb86 2022-03-07 thomas }
464 069bbb86 2022-03-07 thomas
465 069bbb86 2022-03-07 thomas err = read_patch(&ibuf, imsg.fd);
466 069bbb86 2022-03-07 thomas if (err)
467 069bbb86 2022-03-07 thomas goto done;
468 069bbb86 2022-03-07 thomas if (imsg_compose(&ibuf, GOT_IMSG_PATCH_EOF, 0, 0, -1,
469 069bbb86 2022-03-07 thomas NULL, 0) == -1) {
470 069bbb86 2022-03-07 thomas err = got_error_from_errno("imsg_compose GOT_IMSG_PATCH_EOF");
471 069bbb86 2022-03-07 thomas goto done;
472 069bbb86 2022-03-07 thomas }
473 069bbb86 2022-03-07 thomas err = got_privsep_flush_imsg(&ibuf);
474 069bbb86 2022-03-07 thomas done:
475 069bbb86 2022-03-07 thomas imsg_free(&imsg);
476 069bbb86 2022-03-07 thomas if (err != NULL) {
477 069bbb86 2022-03-07 thomas got_privsep_send_error(&ibuf, err);
478 069bbb86 2022-03-07 thomas err = NULL;
479 069bbb86 2022-03-07 thomas }
480 069bbb86 2022-03-07 thomas if (close(GOT_IMSG_FD_CHILD) == -1 && err == NULL)
481 069bbb86 2022-03-07 thomas err = got_error_from_errno("close");
482 069bbb86 2022-03-07 thomas if (err && err->code != GOT_ERR_PRIVSEP_PIPE)
483 069bbb86 2022-03-07 thomas fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
484 069bbb86 2022-03-07 thomas return err ? 1 : 0;
485 069bbb86 2022-03-07 thomas }