Blame


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