Blob


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