]> git.ipfire.org Git - thirdparty/git.git/blame - apply.c
docs: address typos in Git v2.45 changelog
[thirdparty/git.git] / apply.c
CommitLineData
13b5af22
CC
1/*
2 * apply.c
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 *
6 * This applies patches on top of some (arbitrary) version of the SCM.
7 *
8 */
9
bc5c5ec0 10#include "git-compat-util.h"
0b027f6c 11#include "abspath.h"
9b5041f6 12#include "base85.h"
b2141fc1 13#include "config.h"
a034e910 14#include "object-store-ll.h"
13b5af22
CC
15#include "delta.h"
16#include "diff.h"
17#include "dir.h"
32a8f510 18#include "environment.h"
f394e093 19#include "gettext.h"
41771fa4 20#include "hex.h"
13b5af22 21#include "xdiff-interface.h"
67238999 22#include "merge-ll.h"
bb493a5c 23#include "lockfile.h"
f5653856 24#include "name-hash.h"
dabab1d6 25#include "object-name.h"
87bed179 26#include "object-file.h"
13b5af22 27#include "parse-options.h"
c339932b 28#include "path.h"
13b5af22 29#include "quote.h"
08c46a49 30#include "read-cache.h"
13b5af22 31#include "rerere.h"
bb493a5c 32#include "apply.h"
d052cc03 33#include "entry.h"
e38da487 34#include "setup.h"
cb2a5135 35#include "symlinks.h"
dd77d587 36#include "wildmatch.h"
64122313 37#include "ws.h"
bb493a5c 38
80e18412
TG
39struct gitdiff_data {
40 struct strbuf *root;
41 int linenr;
42 int p_value;
43};
44
bb493a5c
CC
45static void git_apply_config(void)
46{
9a53219f
JK
47 git_config_get_string("apply.whitespace", &apply_default_whitespace);
48 git_config_get_string("apply.ignorewhitespace", &apply_default_ignorewhitespace);
091489d0 49 git_config(git_xmerge_config, NULL);
bb493a5c
CC
50}
51
9123d5dd 52static int parse_whitespace_option(struct apply_state *state, const char *option)
bb493a5c
CC
53{
54 if (!option) {
55 state->ws_error_action = warn_on_ws_error;
56 return 0;
57 }
58 if (!strcmp(option, "warn")) {
59 state->ws_error_action = warn_on_ws_error;
60 return 0;
61 }
62 if (!strcmp(option, "nowarn")) {
63 state->ws_error_action = nowarn_ws_error;
64 return 0;
65 }
66 if (!strcmp(option, "error")) {
67 state->ws_error_action = die_on_ws_error;
68 return 0;
69 }
70 if (!strcmp(option, "error-all")) {
71 state->ws_error_action = die_on_ws_error;
72 state->squelch_whitespace_errors = 0;
73 return 0;
74 }
75 if (!strcmp(option, "strip") || !strcmp(option, "fix")) {
76 state->ws_error_action = correct_ws_error;
77 return 0;
78 }
5a59a230 79 /*
a171dac7
JH
80 * Please update $__git_whitespacelist in git-completion.bash,
81 * Documentation/git-apply.txt, and Documentation/git-am.txt
5a59a230
NTND
82 * when you add new options.
83 */
bb493a5c
CC
84 return error(_("unrecognized whitespace option '%s'"), option);
85}
86
9123d5dd
CC
87static int parse_ignorewhitespace_option(struct apply_state *state,
88 const char *option)
bb493a5c
CC
89{
90 if (!option || !strcmp(option, "no") ||
91 !strcmp(option, "false") || !strcmp(option, "never") ||
92 !strcmp(option, "none")) {
93 state->ws_ignore_action = ignore_ws_none;
94 return 0;
95 }
96 if (!strcmp(option, "change")) {
97 state->ws_ignore_action = ignore_ws_change;
98 return 0;
99 }
100 return error(_("unrecognized whitespace ignore option '%s'"), option);
101}
102
2f5a6d12 103int init_apply_state(struct apply_state *state,
82ea77ec 104 struct repository *repo,
6d058c88 105 const char *prefix)
bb493a5c
CC
106{
107 memset(state, 0, sizeof(*state));
108 state->prefix = prefix;
82ea77ec 109 state->repo = repo;
bb493a5c
CC
110 state->apply = 1;
111 state->line_termination = '\n';
112 state->p_value = 1;
113 state->p_context = UINT_MAX;
114 state->squelch_whitespace_errors = 5;
115 state->ws_error_action = warn_on_ws_error;
116 state->ws_ignore_action = ignore_ws_none;
117 state->linenr = 1;
bc40dfb1
ÆAB
118 string_list_init_nodup(&state->fn_table);
119 string_list_init_nodup(&state->limit_by_name);
4e9a3252
RS
120 strset_init(&state->removed_symlinks);
121 strset_init(&state->kept_symlinks);
bb493a5c
CC
122 strbuf_init(&state->root, 0);
123
124 git_apply_config();
125 if (apply_default_whitespace && parse_whitespace_option(state, apply_default_whitespace))
2f5a6d12 126 return -1;
bb493a5c 127 if (apply_default_ignorewhitespace && parse_ignorewhitespace_option(state, apply_default_ignorewhitespace))
2f5a6d12
CC
128 return -1;
129 return 0;
bb493a5c
CC
130}
131
132void clear_apply_state(struct apply_state *state)
133{
134 string_list_clear(&state->limit_by_name, 0);
4e9a3252
RS
135 strset_clear(&state->removed_symlinks);
136 strset_clear(&state->kept_symlinks);
bb493a5c
CC
137 strbuf_release(&state->root);
138
139 /* &state->fn_table is cleared at the end of apply_patch() */
140}
b6446d54 141
75065357 142static void mute_routine(const char *msg UNUSED, va_list params UNUSED)
45b78d8b
CC
143{
144 /* do nothing */
145}
146
b6446d54
CC
147int check_apply_state(struct apply_state *state, int force_apply)
148{
149 int is_not_gitdir = !startup_info->have_repository;
150
151 if (state->apply_with_reject && state->threeway)
12909b6b 152 return error(_("options '%s' and '%s' cannot be used together"), "--reject", "--3way");
b6446d54
CC
153 if (state->threeway) {
154 if (is_not_gitdir)
59bb0009 155 return error(_("'%s' outside a repository"), "--3way");
b6446d54
CC
156 state->check_index = 1;
157 }
a46160d2
CC
158 if (state->apply_with_reject) {
159 state->apply = 1;
160 if (state->apply_verbosity == verbosity_normal)
161 state->apply_verbosity = verbosity_verbose;
162 }
b6446d54
CC
163 if (!force_apply && (state->diffstat || state->numstat || state->summary || state->check || state->fake_ancestor))
164 state->apply = 0;
165 if (state->check_index && is_not_gitdir)
59bb0009 166 return error(_("'%s' outside a repository"), "--index");
b6446d54
CC
167 if (state->cached) {
168 if (is_not_gitdir)
59bb0009 169 return error(_("'%s' outside a repository"), "--cached");
b6446d54
CC
170 state->check_index = 1;
171 }
cff5dc09
NTND
172 if (state->ita_only && (state->check_index || is_not_gitdir))
173 state->ita_only = 0;
b6446d54
CC
174 if (state->check_index)
175 state->unsafe_paths = 0;
b6446d54 176
45b78d8b
CC
177 if (state->apply_verbosity <= verbosity_silent) {
178 state->saved_error_routine = get_error_routine();
179 state->saved_warn_routine = get_warn_routine();
180 set_error_routine(mute_routine);
181 set_warn_routine(mute_routine);
182 }
183
b6446d54
CC
184 return 0;
185}
13b5af22
CC
186
187static void set_default_whitespace_mode(struct apply_state *state)
188{
189 if (!state->whitespace_option && !apply_default_whitespace)
190 state->ws_error_action = (state->apply ? warn_on_ws_error : nowarn_ws_error);
191}
192
193/*
194 * This represents one "hunk" from a patch, starting with
195 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The
196 * patch text is pointed at by patch, and its byte length
197 * is stored in size. leading and trailing are the number
198 * of context lines.
199 */
200struct fragment {
201 unsigned long leading, trailing;
202 unsigned long oldpos, oldlines;
203 unsigned long newpos, newlines;
204 /*
205 * 'patch' is usually borrowed from buf in apply_patch(),
206 * but some codepaths store an allocated buffer.
207 */
208 const char *patch;
209 unsigned free_patch:1,
210 rejected:1;
211 int size;
212 int linenr;
213 struct fragment *next;
214};
215
216/*
217 * When dealing with a binary patch, we reuse "leading" field
218 * to store the type of the binary hunk, either deflated "delta"
219 * or deflated "literal".
220 */
221#define binary_patch_method leading
222#define BINARY_DELTA_DEFLATED 1
223#define BINARY_LITERAL_DEFLATED 2
224
13b5af22
CC
225static void free_fragment_list(struct fragment *list)
226{
227 while (list) {
228 struct fragment *next = list->next;
229 if (list->free_patch)
230 free((char *)list->patch);
231 free(list);
232 list = next;
233 }
234}
235
4998e93f 236void release_patch(struct patch *patch)
13b5af22
CC
237{
238 free_fragment_list(patch->fragments);
239 free(patch->def_name);
240 free(patch->old_name);
241 free(patch->new_name);
242 free(patch->result);
4998e93f
ÆAB
243}
244
245static void free_patch(struct patch *patch)
246{
247 release_patch(patch);
13b5af22
CC
248 free(patch);
249}
250
251static void free_patch_list(struct patch *list)
252{
253 while (list) {
254 struct patch *next = list->next;
255 free_patch(list);
256 list = next;
257 }
258}
259
260/*
261 * A line in a file, len-bytes long (includes the terminating LF,
262 * except for an incomplete line at the end if the file ends with
263 * one), and its contents hashes to 'hash'.
264 */
265struct line {
266 size_t len;
267 unsigned hash : 24;
268 unsigned flag : 8;
269#define LINE_COMMON 1
270#define LINE_PATCHED 2
271};
272
273/*
274 * This represents a "file", which is an array of "lines".
275 */
276struct image {
277 char *buf;
278 size_t len;
279 size_t nr;
280 size_t alloc;
281 struct line *line_allocated;
282 struct line *line;
283};
284
285static uint32_t hash_line(const char *cp, size_t len)
286{
287 size_t i;
288 uint32_t h;
289 for (i = 0, h = 0; i < len; i++) {
290 if (!isspace(cp[i])) {
291 h = h * 3 + (cp[i] & 0xff);
292 }
293 }
294 return h;
295}
296
297/*
298 * Compare lines s1 of length n1 and s2 of length n2, ignoring
299 * whitespace difference. Returns 1 if they match, 0 otherwise
300 */
301static int fuzzy_matchlines(const char *s1, size_t n1,
302 const char *s2, size_t n2)
303{
6ce15ce5
RS
304 const char *end1 = s1 + n1;
305 const char *end2 = s2 + n2;
13b5af22
CC
306
307 /* ignore line endings */
6ce15ce5
RS
308 while (s1 < end1 && (end1[-1] == '\r' || end1[-1] == '\n'))
309 end1--;
310 while (s2 < end2 && (end2[-1] == '\r' || end2[-1] == '\n'))
311 end2--;
13b5af22 312
6ce15ce5
RS
313 while (s1 < end1 && s2 < end2) {
314 if (isspace(*s1)) {
315 /*
316 * Skip whitespace. We check on both buffers
317 * because we don't want "a b" to match "ab".
318 */
319 if (!isspace(*s2))
320 return 0;
321 while (s1 < end1 && isspace(*s1))
13b5af22 322 s1++;
6ce15ce5 323 while (s2 < end2 && isspace(*s2))
13b5af22 324 s2++;
6ce15ce5 325 } else if (*s1++ != *s2++)
13b5af22 326 return 0;
13b5af22
CC
327 }
328
6ce15ce5
RS
329 /* If we reached the end on one side only, lines don't match. */
330 return s1 == end1 && s2 == end2;
13b5af22
CC
331}
332
333static void add_line_info(struct image *img, const char *bol, size_t len, unsigned flag)
334{
335 ALLOC_GROW(img->line_allocated, img->nr + 1, img->alloc);
336 img->line_allocated[img->nr].len = len;
337 img->line_allocated[img->nr].hash = hash_line(bol, len);
338 img->line_allocated[img->nr].flag = flag;
339 img->nr++;
340}
341
342/*
343 * "buf" has the file contents to be patched (read from various sources).
344 * attach it to "image" and add line-based index to it.
345 * "image" now owns the "buf".
346 */
347static void prepare_image(struct image *image, char *buf, size_t len,
348 int prepare_linetable)
349{
350 const char *cp, *ep;
351
352 memset(image, 0, sizeof(*image));
353 image->buf = buf;
354 image->len = len;
355
356 if (!prepare_linetable)
357 return;
358
359 ep = image->buf + image->len;
360 cp = image->buf;
361 while (cp < ep) {
362 const char *next;
363 for (next = cp; next < ep && *next != '\n'; next++)
364 ;
365 if (next < ep)
366 next++;
367 add_line_info(image, cp, next - cp, 0);
368 cp = next;
369 }
370 image->line = image->line_allocated;
371}
372
373static void clear_image(struct image *image)
374{
375 free(image->buf);
376 free(image->line_allocated);
377 memset(image, 0, sizeof(*image));
378}
379
380/* fmt must contain _one_ %s and no other substitution */
381static void say_patch_name(FILE *output, const char *fmt, struct patch *patch)
382{
383 struct strbuf sb = STRBUF_INIT;
384
385 if (patch->old_name && patch->new_name &&
386 strcmp(patch->old_name, patch->new_name)) {
387 quote_c_style(patch->old_name, &sb, NULL, 0);
388 strbuf_addstr(&sb, " => ");
389 quote_c_style(patch->new_name, &sb, NULL, 0);
390 } else {
391 const char *n = patch->new_name;
392 if (!n)
393 n = patch->old_name;
394 quote_c_style(n, &sb, NULL, 0);
395 }
396 fprintf(output, fmt, sb.buf);
397 fputc('\n', output);
398 strbuf_release(&sb);
399}
400
401#define SLOP (16)
402
f1c0e394
TB
403/*
404 * apply.c isn't equipped to handle arbitrarily large patches, because
405 * it intermingles `unsigned long` with `int` for the type used to store
406 * buffer lengths.
407 *
408 * Only process patches that are just shy of 1 GiB large in order to
409 * avoid any truncation or overflow issues.
410 */
411#define MAX_APPLY_SIZE (1024UL * 1024 * 1023)
412
13b5af22
CC
413static int read_patch_file(struct strbuf *sb, int fd)
414{
42612e18
PW
415 if (strbuf_read(sb, fd, 0) < 0)
416 return error_errno(_("failed to read patch"));
417 else if (sb->len >= MAX_APPLY_SIZE)
418 return error(_("patch too large"));
13b5af22
CC
419 /*
420 * Make sure that we have some slop in the buffer
421 * so that we can do speculative "memcmp" etc, and
422 * see to it that it is NUL-filled.
423 */
424 strbuf_grow(sb, SLOP);
425 memset(sb->buf + sb->len, 0, SLOP);
426 return 0;
427}
428
429static unsigned long linelen(const char *buffer, unsigned long size)
430{
431 unsigned long len = 0;
432 while (size--) {
433 len++;
434 if (*buffer++ == '\n')
435 break;
436 }
437 return len;
438}
439
440static int is_dev_null(const char *str)
441{
442 return skip_prefix(str, "/dev/null", &str) && isspace(*str);
443}
444
445#define TERM_SPACE 1
446#define TERM_TAB 2
447
448static int name_terminate(int c, int terminate)
449{
450 if (c == ' ' && !(terminate & TERM_SPACE))
451 return 0;
452 if (c == '\t' && !(terminate & TERM_TAB))
453 return 0;
454
455 return 1;
456}
457
458/* remove double slashes to make --index work with such filenames */
459static char *squash_slash(char *name)
460{
461 int i = 0, j = 0;
462
463 if (!name)
464 return NULL;
465
466 while (name[i]) {
467 if ((name[j++] = name[i++]) == '/')
468 while (name[i] == '/')
469 i++;
470 }
471 name[j] = '\0';
472 return name;
473}
474
877a833b 475static char *find_name_gnu(struct strbuf *root,
13b5af22 476 const char *line,
13b5af22
CC
477 int p_value)
478{
479 struct strbuf name = STRBUF_INIT;
480 char *cp;
481
482 /*
483 * Proposed "new-style" GNU patch/diff format; see
3eae30e4 484 * https://lore.kernel.org/git/7vll0wvb2a.fsf@assigned-by-dhcp.cox.net/
13b5af22
CC
485 */
486 if (unquote_c_style(&name, line, NULL)) {
487 strbuf_release(&name);
488 return NULL;
489 }
490
491 for (cp = name.buf; p_value; p_value--) {
492 cp = strchr(cp, '/');
493 if (!cp) {
494 strbuf_release(&name);
495 return NULL;
496 }
497 cp++;
498 }
499
500 strbuf_remove(&name, 0, cp - name.buf);
877a833b
TG
501 if (root->len)
502 strbuf_insert(&name, 0, root->buf, root->len);
13b5af22
CC
503 return squash_slash(strbuf_detach(&name, NULL));
504}
505
506static size_t sane_tz_len(const char *line, size_t len)
507{
508 const char *tz, *p;
509
510 if (len < strlen(" +0500") || line[len-strlen(" +0500")] != ' ')
511 return 0;
512 tz = line + len - strlen(" +0500");
513
514 if (tz[1] != '+' && tz[1] != '-')
515 return 0;
516
517 for (p = tz + 2; p != line + len; p++)
518 if (!isdigit(*p))
519 return 0;
520
521 return line + len - tz;
522}
523
524static size_t tz_with_colon_len(const char *line, size_t len)
525{
526 const char *tz, *p;
527
528 if (len < strlen(" +08:00") || line[len - strlen(":00")] != ':')
529 return 0;
530 tz = line + len - strlen(" +08:00");
531
532 if (tz[0] != ' ' || (tz[1] != '+' && tz[1] != '-'))
533 return 0;
534 p = tz + 2;
535 if (!isdigit(*p++) || !isdigit(*p++) || *p++ != ':' ||
536 !isdigit(*p++) || !isdigit(*p++))
537 return 0;
538
539 return line + len - tz;
540}
541
542static size_t date_len(const char *line, size_t len)
543{
544 const char *date, *p;
545
546 if (len < strlen("72-02-05") || line[len-strlen("-05")] != '-')
547 return 0;
548 p = date = line + len - strlen("72-02-05");
549
550 if (!isdigit(*p++) || !isdigit(*p++) || *p++ != '-' ||
551 !isdigit(*p++) || !isdigit(*p++) || *p++ != '-' ||
552 !isdigit(*p++) || !isdigit(*p++)) /* Not a date. */
553 return 0;
554
555 if (date - line >= strlen("19") &&
556 isdigit(date[-1]) && isdigit(date[-2])) /* 4-digit year */
557 date -= strlen("19");
558
559 return line + len - date;
560}
561
562static size_t short_time_len(const char *line, size_t len)
563{
564 const char *time, *p;
565
566 if (len < strlen(" 07:01:32") || line[len-strlen(":32")] != ':')
567 return 0;
568 p = time = line + len - strlen(" 07:01:32");
569
570 /* Permit 1-digit hours? */
571 if (*p++ != ' ' ||
572 !isdigit(*p++) || !isdigit(*p++) || *p++ != ':' ||
573 !isdigit(*p++) || !isdigit(*p++) || *p++ != ':' ||
574 !isdigit(*p++) || !isdigit(*p++)) /* Not a time. */
575 return 0;
576
577 return line + len - time;
578}
579
580static size_t fractional_time_len(const char *line, size_t len)
581{
582 const char *p;
583 size_t n;
584
585 /* Expected format: 19:41:17.620000023 */
586 if (!len || !isdigit(line[len - 1]))
587 return 0;
588 p = line + len - 1;
589
590 /* Fractional seconds. */
591 while (p > line && isdigit(*p))
592 p--;
593 if (*p != '.')
594 return 0;
595
596 /* Hours, minutes, and whole seconds. */
597 n = short_time_len(line, p - line);
598 if (!n)
599 return 0;
600
601 return line + len - p + n;
602}
603
604static size_t trailing_spaces_len(const char *line, size_t len)
605{
606 const char *p;
607
608 /* Expected format: ' ' x (1 or more) */
609 if (!len || line[len - 1] != ' ')
610 return 0;
611
612 p = line + len;
613 while (p != line) {
614 p--;
615 if (*p != ' ')
616 return line + len - (p + 1);
617 }
618
619 /* All spaces! */
620 return len;
621}
622
623static size_t diff_timestamp_len(const char *line, size_t len)
624{
625 const char *end = line + len;
626 size_t n;
627
628 /*
629 * Posix: 2010-07-05 19:41:17
630 * GNU: 2010-07-05 19:41:17.620000023 -0500
631 */
632
633 if (!isdigit(end[-1]))
634 return 0;
635
636 n = sane_tz_len(line, end - line);
637 if (!n)
638 n = tz_with_colon_len(line, end - line);
639 end -= n;
640
641 n = short_time_len(line, end - line);
642 if (!n)
643 n = fractional_time_len(line, end - line);
644 end -= n;
645
646 n = date_len(line, end - line);
647 if (!n) /* No date. Too bad. */
648 return 0;
649 end -= n;
650
651 if (end == line) /* No space before date. */
652 return 0;
653 if (end[-1] == '\t') { /* Success! */
654 end--;
655 return line + len - end;
656 }
657 if (end[-1] != ' ') /* No space before date. */
658 return 0;
659
660 /* Whitespace damage. */
661 end -= trailing_spaces_len(line, end - line);
662 return line + len - end;
663}
664
877a833b 665static char *find_name_common(struct strbuf *root,
13b5af22
CC
666 const char *line,
667 const char *def,
668 int p_value,
669 const char *end,
670 int terminate)
671{
672 int len;
673 const char *start = NULL;
674
675 if (p_value == 0)
676 start = line;
677 while (line != end) {
678 char c = *line;
679
680 if (!end && isspace(c)) {
681 if (c == '\n')
682 break;
683 if (name_terminate(c, terminate))
684 break;
685 }
686 line++;
687 if (c == '/' && !--p_value)
688 start = line;
689 }
690 if (!start)
691 return squash_slash(xstrdup_or_null(def));
692 len = line - start;
693 if (!len)
694 return squash_slash(xstrdup_or_null(def));
695
696 /*
697 * Generally we prefer the shorter name, especially
698 * if the other one is just a variation of that with
699 * something else tacked on to the end (ie "file.orig"
700 * or "file~").
701 */
702 if (def) {
703 int deflen = strlen(def);
704 if (deflen < len && !strncmp(start, def, deflen))
705 return squash_slash(xstrdup(def));
706 }
707
877a833b
TG
708 if (root->len) {
709 char *ret = xstrfmt("%s%.*s", root->buf, len, start);
13b5af22
CC
710 return squash_slash(ret);
711 }
712
713 return squash_slash(xmemdupz(start, len));
714}
715
877a833b 716static char *find_name(struct strbuf *root,
13b5af22
CC
717 const char *line,
718 char *def,
719 int p_value,
720 int terminate)
721{
722 if (*line == '"') {
877a833b 723 char *name = find_name_gnu(root, line, p_value);
13b5af22
CC
724 if (name)
725 return name;
726 }
727
877a833b 728 return find_name_common(root, line, def, p_value, NULL, terminate);
13b5af22
CC
729}
730
877a833b 731static char *find_name_traditional(struct strbuf *root,
13b5af22
CC
732 const char *line,
733 char *def,
734 int p_value)
735{
736 size_t len;
737 size_t date_len;
738
739 if (*line == '"') {
877a833b 740 char *name = find_name_gnu(root, line, p_value);
13b5af22
CC
741 if (name)
742 return name;
743 }
744
745 len = strchrnul(line, '\n') - line;
746 date_len = diff_timestamp_len(line, len);
747 if (!date_len)
877a833b 748 return find_name_common(root, line, def, p_value, NULL, TERM_TAB);
13b5af22
CC
749 len -= date_len;
750
877a833b 751 return find_name_common(root, line, def, p_value, line + len, 0);
13b5af22
CC
752}
753
13b5af22
CC
754/*
755 * Given the string after "--- " or "+++ ", guess the appropriate
756 * p_value for the given patch.
757 */
758static int guess_p_value(struct apply_state *state, const char *nameline)
759{
760 char *name, *cp;
761 int val = -1;
762
763 if (is_dev_null(nameline))
764 return -1;
877a833b 765 name = find_name_traditional(&state->root, nameline, NULL, 0);
13b5af22
CC
766 if (!name)
767 return -1;
768 cp = strchr(name, '/');
769 if (!cp)
770 val = 0;
771 else if (state->prefix) {
772 /*
773 * Does it begin with "a/$our-prefix" and such? Then this is
774 * very likely to apply to our directory.
775 */
881529c8 776 if (starts_with(name, state->prefix))
13b5af22
CC
777 val = count_slashes(state->prefix);
778 else {
779 cp++;
881529c8 780 if (starts_with(cp, state->prefix))
13b5af22
CC
781 val = count_slashes(state->prefix) + 1;
782 }
783 }
784 free(name);
785 return val;
786}
787
788/*
789 * Does the ---/+++ line have the POSIX timestamp after the last HT?
790 * GNU diff puts epoch there to signal a creation/deletion event. Is
791 * this such a timestamp?
792 */
793static int has_epoch_timestamp(const char *nameline)
794{
795 /*
796 * We are only interested in epoch timestamp; any non-zero
797 * fraction cannot be one, hence "(\.0+)?" in the regexp below.
798 * For the same reason, the date must be either 1969-12-31 or
799 * 1970-01-01, and the seconds part must be "00".
800 */
801 const char stamp_regexp[] =
0db3dc75 802 "^[0-2][0-9]:([0-5][0-9]):00(\\.0+)?"
13b5af22
CC
803 " "
804 "([-+][0-2][0-9]:?[0-5][0-9])\n";
805 const char *timestamp = NULL, *cp, *colon;
806 static regex_t *stamp;
807 regmatch_t m[10];
e4905019 808 int zoneoffset, epoch_hour, hour, minute;
13b5af22
CC
809 int status;
810
811 for (cp = nameline; *cp != '\n'; cp++) {
812 if (*cp == '\t')
813 timestamp = cp + 1;
814 }
815 if (!timestamp)
816 return 0;
e4905019
RS
817
818 /*
819 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31
820 * (west of GMT) or 1970-01-01 (east of GMT)
821 */
0db3dc75 822 if (skip_prefix(timestamp, "1969-12-31 ", &timestamp))
e4905019 823 epoch_hour = 24;
0db3dc75 824 else if (skip_prefix(timestamp, "1970-01-01 ", &timestamp))
e4905019
RS
825 epoch_hour = 0;
826 else
827 return 0;
828
13b5af22
CC
829 if (!stamp) {
830 stamp = xmalloc(sizeof(*stamp));
831 if (regcomp(stamp, stamp_regexp, REG_EXTENDED)) {
832 warning(_("Cannot prepare timestamp regexp %s"),
833 stamp_regexp);
834 return 0;
835 }
836 }
837
838 status = regexec(stamp, timestamp, ARRAY_SIZE(m), m, 0);
839 if (status) {
840 if (status != REG_NOMATCH)
841 warning(_("regexec returned %d for input: %s"),
842 status, timestamp);
843 return 0;
844 }
845
0db3dc75
RS
846 hour = strtol(timestamp, NULL, 10);
847 minute = strtol(timestamp + m[1].rm_so, NULL, 10);
e4905019 848
13b5af22
CC
849 zoneoffset = strtol(timestamp + m[3].rm_so + 1, (char **) &colon, 10);
850 if (*colon == ':')
851 zoneoffset = zoneoffset * 60 + strtol(colon + 1, NULL, 10);
852 else
853 zoneoffset = (zoneoffset / 100) * 60 + (zoneoffset % 100);
854 if (timestamp[m[3].rm_so] == '-')
855 zoneoffset = -zoneoffset;
856
e4905019 857 return hour * 60 + minute - zoneoffset == epoch_hour * 60;
13b5af22
CC
858}
859
860/*
861 * Get the name etc info from the ---/+++ lines of a traditional patch header
862 *
863 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
864 * files, we can happily check the index for a match, but for creating a
865 * new file we should try to match whatever "patch" does. I have no idea.
866 */
867static int parse_traditional_patch(struct apply_state *state,
868 const char *first,
869 const char *second,
870 struct patch *patch)
871{
872 char *name;
873
874 first += 4; /* skip "--- " */
875 second += 4; /* skip "+++ " */
876 if (!state->p_value_known) {
877 int p, q;
878 p = guess_p_value(state, first);
879 q = guess_p_value(state, second);
880 if (p < 0) p = q;
881 if (0 <= p && p == q) {
882 state->p_value = p;
883 state->p_value_known = 1;
884 }
885 }
886 if (is_dev_null(first)) {
887 patch->is_new = 1;
888 patch->is_delete = 0;
877a833b 889 name = find_name_traditional(&state->root, second, NULL, state->p_value);
13b5af22
CC
890 patch->new_name = name;
891 } else if (is_dev_null(second)) {
892 patch->is_new = 0;
893 patch->is_delete = 1;
877a833b 894 name = find_name_traditional(&state->root, first, NULL, state->p_value);
13b5af22
CC
895 patch->old_name = name;
896 } else {
897 char *first_name;
877a833b
TG
898 first_name = find_name_traditional(&state->root, first, NULL, state->p_value);
899 name = find_name_traditional(&state->root, second, first_name, state->p_value);
13b5af22
CC
900 free(first_name);
901 if (has_epoch_timestamp(first)) {
902 patch->is_new = 1;
903 patch->is_delete = 0;
904 patch->new_name = name;
905 } else if (has_epoch_timestamp(second)) {
906 patch->is_new = 0;
907 patch->is_delete = 1;
908 patch->old_name = name;
909 } else {
910 patch->old_name = name;
911 patch->new_name = xstrdup_or_null(name);
912 }
913 }
914 if (!name)
915 return error(_("unable to find filename in patch at line %d"), state->linenr);
916
917 return 0;
918}
919
0cff8699
JK
920static int gitdiff_hdrend(struct gitdiff_data *state UNUSED,
921 const char *line UNUSED,
922 struct patch *patch UNUSED)
13b5af22
CC
923{
924 return 1;
925}
926
927/*
928 * We're anal about diff header consistency, to make
929 * sure that we don't end up having strange ambiguous
930 * patches floating around.
931 *
932 * As a result, gitdiff_{old|new}name() will check
933 * their names against any previous information, just
934 * to make sure..
935 */
936#define DIFF_OLD_NAME 0
937#define DIFF_NEW_NAME 1
938
80e18412 939static int gitdiff_verify_name(struct gitdiff_data *state,
13b5af22
CC
940 const char *line,
941 int isnull,
942 char **name,
943 int side)
944{
945 if (!*name && !isnull) {
80e18412 946 *name = find_name(state->root, line, NULL, state->p_value, TERM_TAB);
13b5af22
CC
947 return 0;
948 }
949
950 if (*name) {
13b5af22
CC
951 char *another;
952 if (isnull)
953 return error(_("git apply: bad git-diff - expected /dev/null, got %s on line %d"),
954 *name, state->linenr);
80e18412 955 another = find_name(state->root, line, NULL, state->p_value, TERM_TAB);
2d105451 956 if (!another || strcmp(another, *name)) {
13b5af22
CC
957 free(another);
958 return error((side == DIFF_NEW_NAME) ?
959 _("git apply: bad git-diff - inconsistent new filename on line %d") :
960 _("git apply: bad git-diff - inconsistent old filename on line %d"), state->linenr);
961 }
962 free(another);
963 } else {
e454ad4b 964 if (!is_dev_null(line))
13b5af22
CC
965 return error(_("git apply: bad git-diff - expected /dev/null on line %d"), state->linenr);
966 }
967
968 return 0;
969}
970
80e18412 971static int gitdiff_oldname(struct gitdiff_data *state,
13b5af22
CC
972 const char *line,
973 struct patch *patch)
974{
975 return gitdiff_verify_name(state, line,
976 patch->is_new, &patch->old_name,
977 DIFF_OLD_NAME);
978}
979
80e18412 980static int gitdiff_newname(struct gitdiff_data *state,
13b5af22
CC
981 const char *line,
982 struct patch *patch)
983{
984 return gitdiff_verify_name(state, line,
985 patch->is_delete, &patch->new_name,
986 DIFF_NEW_NAME);
987}
988
44e5471a
RS
989static int parse_mode_line(const char *line, int linenr, unsigned int *mode)
990{
991 char *end;
992 *mode = strtoul(line, &end, 8);
993 if (end == line || !isspace(*end))
994 return error(_("invalid mode on line %d: %s"), linenr, line);
995 return 0;
996}
997
80e18412 998static int gitdiff_oldmode(struct gitdiff_data *state,
13b5af22
CC
999 const char *line,
1000 struct patch *patch)
1001{
44e5471a 1002 return parse_mode_line(line, state->linenr, &patch->old_mode);
13b5af22
CC
1003}
1004
80e18412 1005static int gitdiff_newmode(struct gitdiff_data *state,
13b5af22
CC
1006 const char *line,
1007 struct patch *patch)
1008{
44e5471a 1009 return parse_mode_line(line, state->linenr, &patch->new_mode);
13b5af22
CC
1010}
1011
80e18412 1012static int gitdiff_delete(struct gitdiff_data *state,
13b5af22
CC
1013 const char *line,
1014 struct patch *patch)
1015{
1016 patch->is_delete = 1;
1017 free(patch->old_name);
1018 patch->old_name = xstrdup_or_null(patch->def_name);
1019 return gitdiff_oldmode(state, line, patch);
1020}
1021
80e18412 1022static int gitdiff_newfile(struct gitdiff_data *state,
13b5af22
CC
1023 const char *line,
1024 struct patch *patch)
1025{
1026 patch->is_new = 1;
1027 free(patch->new_name);
1028 patch->new_name = xstrdup_or_null(patch->def_name);
1029 return gitdiff_newmode(state, line, patch);
1030}
1031
80e18412 1032static int gitdiff_copysrc(struct gitdiff_data *state,
13b5af22
CC
1033 const char *line,
1034 struct patch *patch)
1035{
1036 patch->is_copy = 1;
1037 free(patch->old_name);
80e18412 1038 patch->old_name = find_name(state->root, line, NULL, state->p_value ? state->p_value - 1 : 0, 0);
13b5af22
CC
1039 return 0;
1040}
1041
80e18412 1042static int gitdiff_copydst(struct gitdiff_data *state,
13b5af22
CC
1043 const char *line,
1044 struct patch *patch)
1045{
1046 patch->is_copy = 1;
1047 free(patch->new_name);
80e18412 1048 patch->new_name = find_name(state->root, line, NULL, state->p_value ? state->p_value - 1 : 0, 0);
13b5af22
CC
1049 return 0;
1050}
1051
80e18412 1052static int gitdiff_renamesrc(struct gitdiff_data *state,
13b5af22
CC
1053 const char *line,
1054 struct patch *patch)
1055{
1056 patch->is_rename = 1;
1057 free(patch->old_name);
80e18412 1058 patch->old_name = find_name(state->root, line, NULL, state->p_value ? state->p_value - 1 : 0, 0);
13b5af22
CC
1059 return 0;
1060}
1061
80e18412 1062static int gitdiff_renamedst(struct gitdiff_data *state,
13b5af22
CC
1063 const char *line,
1064 struct patch *patch)
1065{
1066 patch->is_rename = 1;
1067 free(patch->new_name);
80e18412 1068 patch->new_name = find_name(state->root, line, NULL, state->p_value ? state->p_value - 1 : 0, 0);
13b5af22
CC
1069 return 0;
1070}
1071
0cff8699 1072static int gitdiff_similarity(struct gitdiff_data *state UNUSED,
13b5af22
CC
1073 const char *line,
1074 struct patch *patch)
1075{
1076 unsigned long val = strtoul(line, NULL, 10);
1077 if (val <= 100)
1078 patch->score = val;
1079 return 0;
1080}
1081
0cff8699 1082static int gitdiff_dissimilarity(struct gitdiff_data *state UNUSED,
13b5af22
CC
1083 const char *line,
1084 struct patch *patch)
1085{
1086 unsigned long val = strtoul(line, NULL, 10);
1087 if (val <= 100)
1088 patch->score = val;
1089 return 0;
1090}
1091
80e18412 1092static int gitdiff_index(struct gitdiff_data *state,
13b5af22
CC
1093 const char *line,
1094 struct patch *patch)
1095{
1096 /*
1097 * index line is N hexadecimal, "..", N hexadecimal,
1098 * and optional space with octal mode.
1099 */
1100 const char *ptr, *eol;
1101 int len;
93eb00f7 1102 const unsigned hexsz = the_hash_algo->hexsz;
13b5af22
CC
1103
1104 ptr = strchr(line, '.');
93eb00f7 1105 if (!ptr || ptr[1] != '.' || hexsz < ptr - line)
13b5af22
CC
1106 return 0;
1107 len = ptr - line;
eccb5a5f 1108 memcpy(patch->old_oid_prefix, line, len);
1109 patch->old_oid_prefix[len] = 0;
13b5af22
CC
1110
1111 line = ptr + 2;
1112 ptr = strchr(line, ' ');
1113 eol = strchrnul(line, '\n');
1114
1115 if (!ptr || eol < ptr)
1116 ptr = eol;
1117 len = ptr - line;
1118
93eb00f7 1119 if (hexsz < len)
13b5af22 1120 return 0;
eccb5a5f 1121 memcpy(patch->new_oid_prefix, line, len);
1122 patch->new_oid_prefix[len] = 0;
13b5af22 1123 if (*ptr == ' ')
44e5471a 1124 return gitdiff_oldmode(state, ptr + 1, patch);
13b5af22
CC
1125 return 0;
1126}
1127
1128/*
1129 * This is normal for a diff that doesn't change anything: we'll fall through
1130 * into the next diff. Tell the parser to break out.
1131 */
0cff8699
JK
1132static int gitdiff_unrecognized(struct gitdiff_data *state UNUSED,
1133 const char *line UNUSED,
1134 struct patch *patch UNUSED)
13b5af22
CC
1135{
1136 return 1;
1137}
1138
1139/*
1140 * Skip p_value leading components from "line"; as we do not accept
1141 * absolute paths, return NULL in that case.
1142 */
d6c88c4f 1143static const char *skip_tree_prefix(int p_value,
13b5af22
CC
1144 const char *line,
1145 int llen)
1146{
1147 int nslash;
1148 int i;
1149
d6c88c4f 1150 if (!p_value)
13b5af22
CC
1151 return (llen && line[0] == '/') ? NULL : line;
1152
d6c88c4f 1153 nslash = p_value;
13b5af22
CC
1154 for (i = 0; i < llen; i++) {
1155 int ch = line[i];
1156 if (ch == '/' && --nslash <= 0)
1157 return (i == 0) ? NULL : &line[i + 1];
1158 }
1159 return NULL;
1160}
1161
1162/*
1163 * This is to extract the same name that appears on "diff --git"
1164 * line. We do not find and return anything if it is a rename
1165 * patch, and it is OK because we will find the name elsewhere.
1166 * We need to reliably find name only when it is mode-change only,
1167 * creation or deletion of an empty file. In any of these cases,
1168 * both sides are the same name under a/ and b/ respectively.
1169 */
85c3713d 1170static char *git_header_name(int p_value,
13b5af22
CC
1171 const char *line,
1172 int llen)
1173{
1174 const char *name;
1175 const char *second = NULL;
1176 size_t len, line_len;
1177
1178 line += strlen("diff --git ");
1179 llen -= strlen("diff --git ");
1180
1181 if (*line == '"') {
1182 const char *cp;
1183 struct strbuf first = STRBUF_INIT;
1184 struct strbuf sp = STRBUF_INIT;
1185
1186 if (unquote_c_style(&first, line, &second))
1187 goto free_and_fail1;
1188
1189 /* strip the a/b prefix including trailing slash */
85c3713d 1190 cp = skip_tree_prefix(p_value, first.buf, first.len);
13b5af22
CC
1191 if (!cp)
1192 goto free_and_fail1;
1193 strbuf_remove(&first, 0, cp - first.buf);
1194
1195 /*
1196 * second points at one past closing dq of name.
1197 * find the second name.
1198 */
1199 while ((second < line + llen) && isspace(*second))
1200 second++;
1201
1202 if (line + llen <= second)
1203 goto free_and_fail1;
1204 if (*second == '"') {
1205 if (unquote_c_style(&sp, second, NULL))
1206 goto free_and_fail1;
85c3713d 1207 cp = skip_tree_prefix(p_value, sp.buf, sp.len);
13b5af22
CC
1208 if (!cp)
1209 goto free_and_fail1;
1210 /* They must match, otherwise ignore */
1211 if (strcmp(cp, first.buf))
1212 goto free_and_fail1;
1213 strbuf_release(&sp);
1214 return strbuf_detach(&first, NULL);
1215 }
1216
1217 /* unquoted second */
85c3713d 1218 cp = skip_tree_prefix(p_value, second, line + llen - second);
13b5af22
CC
1219 if (!cp)
1220 goto free_and_fail1;
1221 if (line + llen - cp != first.len ||
1222 memcmp(first.buf, cp, first.len))
1223 goto free_and_fail1;
1224 return strbuf_detach(&first, NULL);
1225
1226 free_and_fail1:
1227 strbuf_release(&first);
1228 strbuf_release(&sp);
1229 return NULL;
1230 }
1231
1232 /* unquoted first name */
85c3713d 1233 name = skip_tree_prefix(p_value, line, llen);
13b5af22
CC
1234 if (!name)
1235 return NULL;
1236
1237 /*
1238 * since the first name is unquoted, a dq if exists must be
1239 * the beginning of the second name.
1240 */
1241 for (second = name; second < line + llen; second++) {
1242 if (*second == '"') {
1243 struct strbuf sp = STRBUF_INIT;
1244 const char *np;
1245
1246 if (unquote_c_style(&sp, second, NULL))
1247 goto free_and_fail2;
1248
85c3713d 1249 np = skip_tree_prefix(p_value, sp.buf, sp.len);
13b5af22
CC
1250 if (!np)
1251 goto free_and_fail2;
1252
1253 len = sp.buf + sp.len - np;
1254 if (len < second - name &&
1255 !strncmp(np, name, len) &&
1256 isspace(name[len])) {
1257 /* Good */
1258 strbuf_remove(&sp, 0, np - sp.buf);
1259 return strbuf_detach(&sp, NULL);
1260 }
1261
1262 free_and_fail2:
1263 strbuf_release(&sp);
1264 return NULL;
1265 }
1266 }
1267
1268 /*
1269 * Accept a name only if it shows up twice, exactly the same
1270 * form.
1271 */
1272 second = strchr(name, '\n');
1273 if (!second)
1274 return NULL;
1275 line_len = second - name;
1276 for (len = 0 ; ; len++) {
1277 switch (name[len]) {
1278 default:
1279 continue;
1280 case '\n':
1281 return NULL;
1282 case '\t': case ' ':
1283 /*
1284 * Is this the separator between the preimage
1285 * and the postimage pathname? Again, we are
1286 * only interested in the case where there is
1287 * no rename, as this is only to set def_name
1288 * and a rename patch has the names elsewhere
1289 * in an unambiguous form.
1290 */
1291 if (!name[len + 1])
1292 return NULL; /* no postimage name */
85c3713d 1293 second = skip_tree_prefix(p_value, name + len + 1,
13b5af22 1294 line_len - (len + 1));
5ea01760
JH
1295 /*
1296 * If we are at the SP at the end of a directory,
1297 * skip_tree_prefix() may return NULL as that makes
1298 * it appears as if we have an absolute path.
1299 * Keep going to find another SP.
1300 */
13b5af22 1301 if (!second)
5ea01760
JH
1302 continue;
1303
13b5af22
CC
1304 /*
1305 * Does len bytes starting at "name" and "second"
1306 * (that are separated by one HT or SP we just
1307 * found) exactly match?
1308 */
1309 if (second[len] == '\n' && !strncmp(name, second, len))
1310 return xmemdupz(name, len);
1311 }
1312 }
1313}
1314
570fe991 1315static int check_header_line(int linenr, struct patch *patch)
d70e9c5c
RS
1316{
1317 int extensions = (patch->is_delete == 1) + (patch->is_new == 1) +
1318 (patch->is_rename == 1) + (patch->is_copy == 1);
1319 if (extensions > 1)
1320 return error(_("inconsistent header lines %d and %d"),
570fe991 1321 patch->extension_linenr, linenr);
d70e9c5c 1322 if (extensions && !patch->extension_linenr)
570fe991 1323 patch->extension_linenr = linenr;
d70e9c5c
RS
1324 return 0;
1325}
1326
ef283b36
TG
1327int parse_git_diff_header(struct strbuf *root,
1328 int *linenr,
1329 int p_value,
1330 const char *line,
1331 int len,
1332 unsigned int size,
1333 struct patch *patch)
13b5af22
CC
1334{
1335 unsigned long offset;
80e18412 1336 struct gitdiff_data parse_hdr_state;
13b5af22
CC
1337
1338 /* A git diff has explicit new/delete information, so we don't guess */
1339 patch->is_new = 0;
1340 patch->is_delete = 0;
1341
1342 /*
1343 * Some things may not have the old name in the
1344 * rest of the headers anywhere (pure mode changes,
1345 * or removing or adding empty files), so we get
1346 * the default name from the header.
1347 */
ef283b36
TG
1348 patch->def_name = git_header_name(p_value, line, len);
1349 if (patch->def_name && root->len) {
1350 char *s = xstrfmt("%s%s", root->buf, patch->def_name);
13b5af22
CC
1351 free(patch->def_name);
1352 patch->def_name = s;
1353 }
1354
1355 line += len;
1356 size -= len;
ef283b36
TG
1357 (*linenr)++;
1358 parse_hdr_state.root = root;
1359 parse_hdr_state.linenr = *linenr;
1360 parse_hdr_state.p_value = p_value;
80e18412 1361
ef283b36 1362 for (offset = len ; size > 0 ; offset += len, size -= len, line += len, (*linenr)++) {
13b5af22
CC
1363 static const struct opentry {
1364 const char *str;
80e18412 1365 int (*fn)(struct gitdiff_data *, const char *, struct patch *);
13b5af22
CC
1366 } optable[] = {
1367 { "@@ -", gitdiff_hdrend },
1368 { "--- ", gitdiff_oldname },
1369 { "+++ ", gitdiff_newname },
1370 { "old mode ", gitdiff_oldmode },
1371 { "new mode ", gitdiff_newmode },
1372 { "deleted file mode ", gitdiff_delete },
1373 { "new file mode ", gitdiff_newfile },
1374 { "copy from ", gitdiff_copysrc },
1375 { "copy to ", gitdiff_copydst },
1376 { "rename old ", gitdiff_renamesrc },
1377 { "rename new ", gitdiff_renamedst },
1378 { "rename from ", gitdiff_renamesrc },
1379 { "rename to ", gitdiff_renamedst },
1380 { "similarity index ", gitdiff_similarity },
1381 { "dissimilarity index ", gitdiff_dissimilarity },
1382 { "index ", gitdiff_index },
1383 { "", gitdiff_unrecognized },
1384 };
1385 int i;
1386
1387 len = linelen(line, size);
1388 if (!len || line[len-1] != '\n')
1389 break;
1390 for (i = 0; i < ARRAY_SIZE(optable); i++) {
1391 const struct opentry *p = optable + i;
1392 int oplen = strlen(p->str);
1393 int res;
1394 if (len < oplen || memcmp(p->str, line, oplen))
1395 continue;
80e18412 1396 res = p->fn(&parse_hdr_state, line + oplen, patch);
13b5af22
CC
1397 if (res < 0)
1398 return -1;
ef283b36 1399 if (check_header_line(*linenr, patch))
d70e9c5c 1400 return -1;
13b5af22 1401 if (res > 0)
2b6a9b13 1402 goto done;
13b5af22
CC
1403 break;
1404 }
1405 }
1406
2b6a9b13
TG
1407done:
1408 if (!patch->old_name && !patch->new_name) {
1409 if (!patch->def_name) {
1410 error(Q_("git diff header lacks filename information when removing "
1411 "%d leading pathname component (line %d)",
1412 "git diff header lacks filename information when removing "
1413 "%d leading pathname components (line %d)",
1414 parse_hdr_state.p_value),
1415 parse_hdr_state.p_value, *linenr);
1416 return -128;
1417 }
1418 patch->old_name = xstrdup(patch->def_name);
1419 patch->new_name = xstrdup(patch->def_name);
1420 }
1421 if ((!patch->new_name && !patch->is_delete) ||
1422 (!patch->old_name && !patch->is_new)) {
1423 error(_("git diff header lacks filename information "
1424 "(line %d)"), *linenr);
1425 return -128;
1426 }
1427 patch->is_toplevel_relative = 1;
13b5af22
CC
1428 return offset;
1429}
1430
1431static int parse_num(const char *line, unsigned long *p)
1432{
1433 char *ptr;
1434
1435 if (!isdigit(*line))
1436 return 0;
1437 *p = strtoul(line, &ptr, 10);
1438 return ptr - line;
1439}
1440
1441static int parse_range(const char *line, int len, int offset, const char *expect,
1442 unsigned long *p1, unsigned long *p2)
1443{
1444 int digits, ex;
1445
1446 if (offset < 0 || offset >= len)
1447 return -1;
1448 line += offset;
1449 len -= offset;
1450
1451 digits = parse_num(line, p1);
1452 if (!digits)
1453 return -1;
1454
1455 offset += digits;
1456 line += digits;
1457 len -= digits;
1458
1459 *p2 = 1;
1460 if (*line == ',') {
1461 digits = parse_num(line+1, p2);
1462 if (!digits)
1463 return -1;
1464
1465 offset += digits+1;
1466 line += digits+1;
1467 len -= digits+1;
1468 }
1469
1470 ex = strlen(expect);
1471 if (ex > len)
1472 return -1;
1473 if (memcmp(line, expect, ex))
1474 return -1;
1475
1476 return offset + ex;
1477}
1478
1479static void recount_diff(const char *line, int size, struct fragment *fragment)
1480{
1481 int oldlines = 0, newlines = 0, ret = 0;
1482
1483 if (size < 1) {
1484 warning("recount: ignore empty hunk");
1485 return;
1486 }
1487
1488 for (;;) {
1489 int len = linelen(line, size);
1490 size -= len;
1491 line += len;
1492
1493 if (size < 1)
1494 break;
1495
1496 switch (*line) {
1497 case ' ': case '\n':
1498 newlines++;
1499 /* fall through */
1500 case '-':
1501 oldlines++;
1502 continue;
1503 case '+':
1504 newlines++;
1505 continue;
1506 case '\\':
1507 continue;
1508 case '@':
1509 ret = size < 3 || !starts_with(line, "@@ ");
1510 break;
1511 case 'd':
1512 ret = size < 5 || !starts_with(line, "diff ");
1513 break;
1514 default:
1515 ret = -1;
1516 break;
1517 }
1518 if (ret) {
1519 warning(_("recount: unexpected line: %.*s"),
1520 (int)linelen(line, size), line);
1521 return;
1522 }
1523 break;
1524 }
1525 fragment->oldlines = oldlines;
1526 fragment->newlines = newlines;
1527}
1528
1529/*
1530 * Parse a unified diff fragment header of the
1531 * form "@@ -a,b +c,d @@"
1532 */
1533static int parse_fragment_header(const char *line, int len, struct fragment *fragment)
1534{
1535 int offset;
1536
1537 if (!len || line[len-1] != '\n')
1538 return -1;
1539
1540 /* Figure out the number of lines in a fragment */
1541 offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);
1542 offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);
1543
1544 return offset;
1545}
1546
1547/*
1548 * Find file diff header
1549 *
1550 * Returns:
1551 * -1 if no header was found
1552 * -128 in case of error
1553 * the size of the header in bytes (called "offset") otherwise
1554 */
1555static int find_header(struct apply_state *state,
1556 const char *line,
1557 unsigned long size,
1558 int *hdrsize,
1559 struct patch *patch)
1560{
1561 unsigned long offset, len;
1562
1563 patch->is_toplevel_relative = 0;
1564 patch->is_rename = patch->is_copy = 0;
1565 patch->is_new = patch->is_delete = -1;
1566 patch->old_mode = patch->new_mode = 0;
1567 patch->old_name = patch->new_name = NULL;
1568 for (offset = 0; size > 0; offset += len, size -= len, line += len, state->linenr++) {
1569 unsigned long nextlen;
1570
1571 len = linelen(line, size);
1572 if (!len)
1573 break;
1574
1575 /* Testing this early allows us to take a few shortcuts.. */
1576 if (len < 6)
1577 continue;
1578
1579 /*
1580 * Make sure we don't find any unconnected patch fragments.
1581 * That's a sign that we didn't find a header, and that a
1582 * patch has become corrupted/broken up.
1583 */
1584 if (!memcmp("@@ -", line, 4)) {
1585 struct fragment dummy;
1586 if (parse_fragment_header(line, len, &dummy) < 0)
1587 continue;
1588 error(_("patch fragment without header at line %d: %.*s"),
1589 state->linenr, (int)len-1, line);
1590 return -128;
1591 }
1592
1593 if (size < len + 6)
1594 break;
1595
1596 /*
1597 * Git patch? It might not have a real patch, just a rename
1598 * or mode change, so we handle that specially
1599 */
1600 if (!memcmp("diff --git ", line, 11)) {
ef283b36
TG
1601 int git_hdr_len = parse_git_diff_header(&state->root, &state->linenr,
1602 state->p_value, line, len,
1603 size, patch);
13b5af22
CC
1604 if (git_hdr_len < 0)
1605 return -128;
1606 if (git_hdr_len <= len)
1607 continue;
13b5af22
CC
1608 *hdrsize = git_hdr_len;
1609 return offset;
1610 }
1611
1612 /* --- followed by +++ ? */
1613 if (memcmp("--- ", line, 4) || memcmp("+++ ", line + len, 4))
1614 continue;
1615
1616 /*
1617 * We only accept unified patches, so we want it to
1618 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
1619 * minimum ("@@ -0,0 +1 @@\n" is the shortest).
1620 */
1621 nextlen = linelen(line + len, size - len);
1622 if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4))
1623 continue;
1624
1625 /* Ok, we'll consider it a patch */
1626 if (parse_traditional_patch(state, line, line+len, patch))
1627 return -128;
1628 *hdrsize = len + nextlen;
1629 state->linenr += 2;
1630 return offset;
1631 }
1632 return -1;
1633}
1634
1635static void record_ws_error(struct apply_state *state,
1636 unsigned result,
1637 const char *line,
1638 int len,
1639 int linenr)
1640{
1641 char *err;
1642
1643 if (!result)
1644 return;
1645
1646 state->whitespace_error++;
1647 if (state->squelch_whitespace_errors &&
1648 state->squelch_whitespace_errors < state->whitespace_error)
1649 return;
1650
1651 err = whitespace_error_string(result);
a46160d2
CC
1652 if (state->apply_verbosity > verbosity_silent)
1653 fprintf(stderr, "%s:%d: %s.\n%.*s\n",
1654 state->patch_input_file, linenr, err, len, line);
13b5af22
CC
1655 free(err);
1656}
1657
1658static void check_whitespace(struct apply_state *state,
1659 const char *line,
1660 int len,
1661 unsigned ws_rule)
1662{
1663 unsigned result = ws_check(line + 1, len - 1, ws_rule);
1664
1665 record_ws_error(state, result, line + 1, len - 2, state->linenr);
1666}
1667
c24f3aba
TB
1668/*
1669 * Check if the patch has context lines with CRLF or
1670 * the patch wants to remove lines with CRLF.
1671 */
1672static void check_old_for_crlf(struct patch *patch, const char *line, int len)
1673{
1674 if (len >= 2 && line[len-1] == '\n' && line[len-2] == '\r') {
1675 patch->ws_rule |= WS_CR_AT_EOL;
1676 patch->crlf_in_old = 1;
1677 }
1678}
1679
1680
13b5af22
CC
1681/*
1682 * Parse a unified diff. Note that this really needs to parse each
1683 * fragment separately, since the only way to know the difference
1684 * between a "---" that is part of a patch, and a "---" that starts
1685 * the next patch is to look at the line counts..
1686 */
1687static int parse_fragment(struct apply_state *state,
1688 const char *line,
1689 unsigned long size,
1690 struct patch *patch,
1691 struct fragment *fragment)
1692{
1693 int added, deleted;
1694 int len = linelen(line, size), offset;
1695 unsigned long oldlines, newlines;
1696 unsigned long leading, trailing;
1697
1698 offset = parse_fragment_header(line, len, fragment);
1699 if (offset < 0)
1700 return -1;
1701 if (offset > 0 && patch->recount)
1702 recount_diff(line + offset, size - offset, fragment);
1703 oldlines = fragment->oldlines;
1704 newlines = fragment->newlines;
1705 leading = 0;
1706 trailing = 0;
1707
1708 /* Parse the thing.. */
1709 line += len;
1710 size -= len;
1711 state->linenr++;
1712 added = deleted = 0;
1713 for (offset = len;
1714 0 < size;
1715 offset += len, size -= len, line += len, state->linenr++) {
1716 if (!oldlines && !newlines)
1717 break;
1718 len = linelen(line, size);
1719 if (!len || line[len-1] != '\n')
1720 return -1;
1721 switch (*line) {
1722 default:
1723 return -1;
1724 case '\n': /* newer GNU diff, an empty context line */
1725 case ' ':
1726 oldlines--;
1727 newlines--;
1728 if (!deleted && !added)
1729 leading++;
1730 trailing++;
c24f3aba 1731 check_old_for_crlf(patch, line, len);
13b5af22
CC
1732 if (!state->apply_in_reverse &&
1733 state->ws_error_action == correct_ws_error)
1734 check_whitespace(state, line, len, patch->ws_rule);
1735 break;
1736 case '-':
c24f3aba
TB
1737 if (!state->apply_in_reverse)
1738 check_old_for_crlf(patch, line, len);
13b5af22
CC
1739 if (state->apply_in_reverse &&
1740 state->ws_error_action != nowarn_ws_error)
1741 check_whitespace(state, line, len, patch->ws_rule);
1742 deleted++;
1743 oldlines--;
1744 trailing = 0;
1745 break;
1746 case '+':
c24f3aba
TB
1747 if (state->apply_in_reverse)
1748 check_old_for_crlf(patch, line, len);
13b5af22
CC
1749 if (!state->apply_in_reverse &&
1750 state->ws_error_action != nowarn_ws_error)
1751 check_whitespace(state, line, len, patch->ws_rule);
1752 added++;
1753 newlines--;
1754 trailing = 0;
1755 break;
1756
1757 /*
1758 * We allow "\ No newline at end of file". Depending
1759 * on locale settings when the patch was produced we
1760 * don't know what this line looks like. The only
1761 * thing we do know is that it begins with "\ ".
1762 * Checking for 12 is just for sanity check -- any
1763 * l10n of "\ No newline..." is at least that long.
1764 */
1765 case '\\':
1766 if (len < 12 || memcmp(line, "\\ ", 2))
1767 return -1;
1768 break;
1769 }
1770 }
1771 if (oldlines || newlines)
1772 return -1;
22cb3835 1773 if (!patch->recount && !deleted && !added)
13b5af22
CC
1774 return -1;
1775
1776 fragment->leading = leading;
1777 fragment->trailing = trailing;
1778
1779 /*
1780 * If a fragment ends with an incomplete line, we failed to include
1781 * it in the above loop because we hit oldlines == newlines == 0
1782 * before seeing it.
1783 */
1784 if (12 < size && !memcmp(line, "\\ ", 2))
1785 offset += linelen(line, size);
1786
1787 patch->lines_added += added;
1788 patch->lines_deleted += deleted;
1789
1790 if (0 < patch->is_new && oldlines)
1791 return error(_("new file depends on old contents"));
1792 if (0 < patch->is_delete && newlines)
1793 return error(_("deleted file still has contents"));
1794 return offset;
1795}
1796
1797/*
1798 * We have seen "diff --git a/... b/..." header (or a traditional patch
1799 * header). Read hunks that belong to this patch into fragments and hang
1800 * them to the given patch structure.
1801 *
1802 * The (fragment->patch, fragment->size) pair points into the memory given
1803 * by the caller, not a copy, when we return.
1804 *
1805 * Returns:
1806 * -1 in case of error,
1807 * the number of bytes in the patch otherwise.
1808 */
1809static int parse_single_patch(struct apply_state *state,
1810 const char *line,
1811 unsigned long size,
1812 struct patch *patch)
1813{
1814 unsigned long offset = 0;
1815 unsigned long oldlines = 0, newlines = 0, context = 0;
1816 struct fragment **fragp = &patch->fragments;
1817
1818 while (size > 4 && !memcmp(line, "@@ -", 4)) {
1819 struct fragment *fragment;
1820 int len;
1821
ca56dadb 1822 CALLOC_ARRAY(fragment, 1);
13b5af22
CC
1823 fragment->linenr = state->linenr;
1824 len = parse_fragment(state, line, size, patch, fragment);
1825 if (len <= 0) {
1826 free(fragment);
1827 return error(_("corrupt patch at line %d"), state->linenr);
1828 }
1829 fragment->patch = line;
1830 fragment->size = len;
1831 oldlines += fragment->oldlines;
1832 newlines += fragment->newlines;
1833 context += fragment->leading + fragment->trailing;
1834
1835 *fragp = fragment;
1836 fragp = &fragment->next;
1837
1838 offset += len;
1839 line += len;
1840 size -= len;
1841 }
1842
1843 /*
1844 * If something was removed (i.e. we have old-lines) it cannot
1845 * be creation, and if something was added it cannot be
1846 * deletion. However, the reverse is not true; --unified=0
1847 * patches that only add are not necessarily creation even
1848 * though they do not have any old lines, and ones that only
1849 * delete are not necessarily deletion.
1850 *
1851 * Unfortunately, a real creation/deletion patch do _not_ have
1852 * any context line by definition, so we cannot safely tell it
1853 * apart with --unified=0 insanity. At least if the patch has
1854 * more than one hunk it is not creation or deletion.
1855 */
1856 if (patch->is_new < 0 &&
1857 (oldlines || (patch->fragments && patch->fragments->next)))
1858 patch->is_new = 0;
1859 if (patch->is_delete < 0 &&
1860 (newlines || (patch->fragments && patch->fragments->next)))
1861 patch->is_delete = 0;
1862
1863 if (0 < patch->is_new && oldlines)
1864 return error(_("new file %s depends on old contents"), patch->new_name);
1865 if (0 < patch->is_delete && newlines)
1866 return error(_("deleted file %s still has contents"), patch->old_name);
a46160d2 1867 if (!patch->is_delete && !newlines && context && state->apply_verbosity > verbosity_silent)
13b5af22
CC
1868 fprintf_ln(stderr,
1869 _("** warning: "
1870 "file %s becomes empty but is not deleted"),
1871 patch->new_name);
1872
1873 return offset;
1874}
1875
1876static inline int metadata_changes(struct patch *patch)
1877{
1878 return patch->is_rename > 0 ||
1879 patch->is_copy > 0 ||
1880 patch->is_new > 0 ||
1881 patch->is_delete ||
1882 (patch->old_mode && patch->new_mode &&
1883 patch->old_mode != patch->new_mode);
1884}
1885
1886static char *inflate_it(const void *data, unsigned long size,
1887 unsigned long inflated_size)
1888{
1889 git_zstream stream;
1890 void *out;
1891 int st;
1892
1893 memset(&stream, 0, sizeof(stream));
1894
1895 stream.next_in = (unsigned char *)data;
1896 stream.avail_in = size;
1897 stream.next_out = out = xmalloc(inflated_size);
1898 stream.avail_out = inflated_size;
1899 git_inflate_init(&stream);
1900 st = git_inflate(&stream, Z_FINISH);
1901 git_inflate_end(&stream);
1902 if ((st != Z_STREAM_END) || stream.total_out != inflated_size) {
1903 free(out);
1904 return NULL;
1905 }
1906 return out;
1907}
1908
1909/*
1910 * Read a binary hunk and return a new fragment; fragment->patch
1911 * points at an allocated memory that the caller must free, so
1912 * it is marked as "->free_patch = 1".
1913 */
1914static struct fragment *parse_binary_hunk(struct apply_state *state,
1915 char **buf_p,
1916 unsigned long *sz_p,
1917 int *status_p,
1918 int *used_p)
1919{
1920 /*
1921 * Expect a line that begins with binary patch method ("literal"
1922 * or "delta"), followed by the length of data before deflating.
1923 * a sequence of 'length-byte' followed by base-85 encoded data
1924 * should follow, terminated by a newline.
1925 *
1926 * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1927 * and we would limit the patch line to 66 characters,
1928 * so one line can fit up to 13 groups that would decode
1929 * to 52 bytes max. The length byte 'A'-'Z' corresponds
1930 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
1931 */
1932 int llen, used;
1933 unsigned long size = *sz_p;
1934 char *buffer = *buf_p;
1935 int patch_method;
1936 unsigned long origlen;
1937 char *data = NULL;
1938 int hunk_size = 0;
1939 struct fragment *frag;
1940
1941 llen = linelen(buffer, size);
1942 used = llen;
1943
1944 *status_p = 0;
1945
1946 if (starts_with(buffer, "delta ")) {
1947 patch_method = BINARY_DELTA_DEFLATED;
1948 origlen = strtoul(buffer + 6, NULL, 10);
1949 }
1950 else if (starts_with(buffer, "literal ")) {
1951 patch_method = BINARY_LITERAL_DEFLATED;
1952 origlen = strtoul(buffer + 8, NULL, 10);
1953 }
1954 else
1955 return NULL;
1956
1957 state->linenr++;
1958 buffer += llen;
46d723ce 1959 size -= llen;
13b5af22
CC
1960 while (1) {
1961 int byte_length, max_byte_length, newsize;
1962 llen = linelen(buffer, size);
1963 used += llen;
1964 state->linenr++;
1965 if (llen == 1) {
1966 /* consume the blank line */
1967 buffer++;
1968 size--;
1969 break;
1970 }
1971 /*
1972 * Minimum line is "A00000\n" which is 7-byte long,
1973 * and the line length must be multiple of 5 plus 2.
1974 */
1975 if ((llen < 7) || (llen-2) % 5)
1976 goto corrupt;
1977 max_byte_length = (llen - 2) / 5 * 4;
1978 byte_length = *buffer;
1979 if ('A' <= byte_length && byte_length <= 'Z')
1980 byte_length = byte_length - 'A' + 1;
1981 else if ('a' <= byte_length && byte_length <= 'z')
1982 byte_length = byte_length - 'a' + 27;
1983 else
1984 goto corrupt;
1985 /* if the input length was not multiple of 4, we would
1986 * have filler at the end but the filler should never
1987 * exceed 3 bytes
1988 */
1989 if (max_byte_length < byte_length ||
1990 byte_length <= max_byte_length - 4)
1991 goto corrupt;
1992 newsize = hunk_size + byte_length;
1993 data = xrealloc(data, newsize);
1994 if (decode_85(data + hunk_size, buffer + 1, byte_length))
1995 goto corrupt;
1996 hunk_size = newsize;
1997 buffer += llen;
1998 size -= llen;
1999 }
2000
ca56dadb 2001 CALLOC_ARRAY(frag, 1);
13b5af22
CC
2002 frag->patch = inflate_it(data, hunk_size, origlen);
2003 frag->free_patch = 1;
2004 if (!frag->patch)
2005 goto corrupt;
2006 free(data);
2007 frag->size = origlen;
2008 *buf_p = buffer;
2009 *sz_p = size;
2010 *used_p = used;
2011 frag->binary_patch_method = patch_method;
2012 return frag;
2013
2014 corrupt:
2015 free(data);
2016 *status_p = -1;
2017 error(_("corrupt binary patch at line %d: %.*s"),
2018 state->linenr-1, llen-1, buffer);
2019 return NULL;
2020}
2021
2022/*
2023 * Returns:
2024 * -1 in case of error,
2025 * the length of the parsed binary patch otherwise
2026 */
2027static int parse_binary(struct apply_state *state,
2028 char *buffer,
2029 unsigned long size,
2030 struct patch *patch)
2031{
2032 /*
2033 * We have read "GIT binary patch\n"; what follows is a line
2034 * that says the patch method (currently, either "literal" or
2035 * "delta") and the length of data before deflating; a
2036 * sequence of 'length-byte' followed by base-85 encoded data
2037 * follows.
2038 *
2039 * When a binary patch is reversible, there is another binary
2040 * hunk in the same format, starting with patch method (either
2041 * "literal" or "delta") with the length of data, and a sequence
2042 * of length-byte + base-85 encoded data, terminated with another
2043 * empty line. This data, when applied to the postimage, produces
2044 * the preimage.
2045 */
2046 struct fragment *forward;
2047 struct fragment *reverse;
2048 int status;
2049 int used, used_1;
2050
2051 forward = parse_binary_hunk(state, &buffer, &size, &status, &used);
2052 if (!forward && !status)
2053 /* there has to be one hunk (forward hunk) */
2054 return error(_("unrecognized binary patch at line %d"), state->linenr-1);
2055 if (status)
2056 /* otherwise we already gave an error message */
2057 return status;
2058
2059 reverse = parse_binary_hunk(state, &buffer, &size, &status, &used_1);
2060 if (reverse)
2061 used += used_1;
2062 else if (status) {
2063 /*
2064 * Not having reverse hunk is not an error, but having
2065 * a corrupt reverse hunk is.
2066 */
2067 free((void*) forward->patch);
2068 free(forward);
2069 return status;
2070 }
2071 forward->next = reverse;
2072 patch->fragments = forward;
2073 patch->is_binary = 1;
2074 return used;
2075}
2076
2077static void prefix_one(struct apply_state *state, char **name)
2078{
2079 char *old_name = *name;
2080 if (!old_name)
2081 return;
e4da43b1 2082 *name = prefix_filename(state->prefix, *name);
13b5af22
CC
2083 free(old_name);
2084}
2085
2086static void prefix_patch(struct apply_state *state, struct patch *p)
2087{
2088 if (!state->prefix || p->is_toplevel_relative)
2089 return;
2090 prefix_one(state, &p->new_name);
2091 prefix_one(state, &p->old_name);
2092}
2093
2094/*
2095 * include/exclude
2096 */
2097
2098static void add_name_limit(struct apply_state *state,
2099 const char *name,
2100 int exclude)
2101{
2102 struct string_list_item *it;
2103
2104 it = string_list_append(&state->limit_by_name, name);
2105 it->util = exclude ? NULL : (void *) 1;
2106}
2107
2108static int use_patch(struct apply_state *state, struct patch *p)
2109{
2110 const char *pathname = p->new_name ? p->new_name : p->old_name;
2111 int i;
2112
2113 /* Paths outside are not touched regardless of "--include" */
881529c8
RS
2114 if (state->prefix && *state->prefix) {
2115 const char *rest;
2116 if (!skip_prefix(pathname, state->prefix, &rest) || !*rest)
13b5af22
CC
2117 return 0;
2118 }
2119
2120 /* See if it matches any of exclude/include rule */
2121 for (i = 0; i < state->limit_by_name.nr; i++) {
2122 struct string_list_item *it = &state->limit_by_name.items[i];
55d34269 2123 if (!wildmatch(it->string, pathname, 0))
13b5af22
CC
2124 return (it->util != NULL);
2125 }
2126
2127 /*
2128 * If we had any include, a path that does not match any rule is
2129 * not used. Otherwise, we saw bunch of exclude rules (or none)
2130 * and such a path is used.
2131 */
2132 return !state->has_include;
2133}
2134
2135/*
2136 * Read the patch text in "buffer" that extends for "size" bytes; stop
2137 * reading after seeing a single patch (i.e. changes to a single file).
2138 * Create fragments (i.e. patch hunks) and hang them to the given patch.
2139 *
2140 * Returns:
2141 * -1 if no header was found or parse_binary() failed,
2142 * -128 on another error,
2143 * the number of bytes consumed otherwise,
2144 * so that the caller can call us again for the next patch.
2145 */
2146static int parse_chunk(struct apply_state *state, char *buffer, unsigned long size, struct patch *patch)
2147{
2148 int hdrsize, patchsize;
2149 int offset = find_header(state, buffer, size, &hdrsize, patch);
2150
2151 if (offset < 0)
2152 return offset;
2153
2154 prefix_patch(state, patch);
2155
2156 if (!use_patch(state, patch))
2157 patch->ws_rule = 0;
26d024ec
NTND
2158 else if (patch->new_name)
2159 patch->ws_rule = whitespace_rule(state->repo->index,
2160 patch->new_name);
13b5af22 2161 else
26d024ec
NTND
2162 patch->ws_rule = whitespace_rule(state->repo->index,
2163 patch->old_name);
13b5af22
CC
2164
2165 patchsize = parse_single_patch(state,
2166 buffer + offset + hdrsize,
2167 size - offset - hdrsize,
2168 patch);
2169
2170 if (patchsize < 0)
2171 return -128;
2172
2173 if (!patchsize) {
2174 static const char git_binary[] = "GIT binary patch\n";
2175 int hd = hdrsize + offset;
2176 unsigned long llen = linelen(buffer + hd, size - hd);
2177
2178 if (llen == sizeof(git_binary) - 1 &&
2179 !memcmp(git_binary, buffer + hd, llen)) {
2180 int used;
2181 state->linenr++;
2182 used = parse_binary(state, buffer + hd + llen,
2183 size - hd - llen, patch);
2184 if (used < 0)
2185 return -1;
2186 if (used)
2187 patchsize = used + llen;
2188 else
2189 patchsize = 0;
2190 }
2191 else if (!memcmp(" differ\n", buffer + hd + llen - 8, 8)) {
2192 static const char *binhdr[] = {
2193 "Binary files ",
2194 "Files ",
2195 NULL,
2196 };
2197 int i;
2198 for (i = 0; binhdr[i]; i++) {
2199 int len = strlen(binhdr[i]);
2200 if (len < size - hd &&
2201 !memcmp(binhdr[i], buffer + hd, len)) {
2202 state->linenr++;
2203 patch->is_binary = 1;
2204 patchsize = llen;
2205 break;
2206 }
2207 }
2208 }
2209
2210 /* Empty patch cannot be applied if it is a text patch
2211 * without metadata change. A binary patch appears
2212 * empty to us here.
2213 */
2214 if ((state->apply || state->check) &&
2215 (!patch->is_binary && !metadata_changes(patch))) {
2216 error(_("patch with only garbage at line %d"), state->linenr);
2217 return -128;
2218 }
2219 }
2220
2221 return offset + hdrsize + patchsize;
2222}
2223
13b5af22
CC
2224static void reverse_patches(struct patch *p)
2225{
2226 for (; p; p = p->next) {
2227 struct fragment *frag = p->fragments;
2228
db101991 2229 SWAP(p->new_name, p->old_name);
01aff0ae
JH
2230 if (p->new_mode)
2231 SWAP(p->new_mode, p->old_mode);
db101991
RS
2232 SWAP(p->is_new, p->is_delete);
2233 SWAP(p->lines_added, p->lines_deleted);
eccb5a5f 2234 SWAP(p->old_oid_prefix, p->new_oid_prefix);
13b5af22
CC
2235
2236 for (; frag; frag = frag->next) {
db101991
RS
2237 SWAP(frag->newpos, frag->oldpos);
2238 SWAP(frag->newlines, frag->oldlines);
13b5af22
CC
2239 }
2240 }
2241}
2242
2243static const char pluses[] =
2244"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
2245static const char minuses[]=
2246"----------------------------------------------------------------------";
2247
2248static void show_stats(struct apply_state *state, struct patch *patch)
2249{
2250 struct strbuf qname = STRBUF_INIT;
2251 char *cp = patch->new_name ? patch->new_name : patch->old_name;
2252 int max, add, del;
2253
2254 quote_c_style(cp, &qname, NULL, 0);
2255
2256 /*
2257 * "scale" the filename
2258 */
2259 max = state->max_len;
2260 if (max > 50)
2261 max = 50;
2262
2263 if (qname.len > max) {
2264 cp = strchr(qname.buf + qname.len + 3 - max, '/');
2265 if (!cp)
2266 cp = qname.buf + qname.len + 3 - max;
2267 strbuf_splice(&qname, 0, cp - qname.buf, "...", 3);
2268 }
2269
2270 if (patch->is_binary) {
2271 printf(" %-*s | Bin\n", max, qname.buf);
2272 strbuf_release(&qname);
2273 return;
2274 }
2275
2276 printf(" %-*s |", max, qname.buf);
2277 strbuf_release(&qname);
2278
2279 /*
2280 * scale the add/delete
2281 */
2282 max = max + state->max_change > 70 ? 70 - max : state->max_change;
2283 add = patch->lines_added;
2284 del = patch->lines_deleted;
2285
2286 if (state->max_change > 0) {
2287 int total = ((add + del) * max + state->max_change / 2) / state->max_change;
2288 add = (add * max + state->max_change / 2) / state->max_change;
2289 del = total - add;
2290 }
2291 printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,
2292 add, pluses, del, minuses);
2293}
2294
c24f3aba
TB
2295static int read_old_data(struct stat *st, struct patch *patch,
2296 const char *path, struct strbuf *buf)
13b5af22 2297{
8462ff43
TB
2298 int conv_flags = patch->crlf_in_old ?
2299 CONV_EOL_KEEP_CRLF : CONV_EOL_RENORMALIZE;
13b5af22
CC
2300 switch (st->st_mode & S_IFMT) {
2301 case S_IFLNK:
2302 if (strbuf_readlink(buf, path, st->st_size) < 0)
2303 return error(_("unable to read symlink %s"), path);
2304 return 0;
2305 case S_IFREG:
2306 if (strbuf_read_file(buf, path, st->st_size) != st->st_size)
2307 return error(_("unable to open or read %s"), path);
c24f3aba
TB
2308 /*
2309 * "git apply" without "--index/--cached" should never look
2310 * at the index; the target file may not have been added to
2311 * the index yet, and we may not even be in any Git repository.
2312 * Pass NULL to convert_to_git() to stress this; the function
2313 * should never look at the index when explicit crlf option
2314 * is given.
2315 */
8462ff43 2316 convert_to_git(NULL, path, buf->buf, buf->len, buf, conv_flags);
13b5af22
CC
2317 return 0;
2318 default:
2319 return -1;
2320 }
2321}
2322
2323/*
2324 * Update the preimage, and the common lines in postimage,
2325 * from buffer buf of length len. If postlen is 0 the postimage
2326 * is updated in place, otherwise it's updated on a new buffer
2327 * of length postlen
2328 */
2329
2330static void update_pre_post_images(struct image *preimage,
2331 struct image *postimage,
2332 char *buf,
2333 size_t len, size_t postlen)
2334{
2335 int i, ctx, reduced;
f1ae97d3 2336 char *new_buf, *old_buf, *fixed;
13b5af22
CC
2337 struct image fixed_preimage;
2338
2339 /*
2340 * Update the preimage with whitespace fixes. Note that we
2341 * are not losing preimage->buf -- apply_one_fragment() will
2342 * free "oldlines".
2343 */
2344 prepare_image(&fixed_preimage, buf, len, 1);
2345 assert(postlen
2346 ? fixed_preimage.nr == preimage->nr
2347 : fixed_preimage.nr <= preimage->nr);
2348 for (i = 0; i < fixed_preimage.nr; i++)
2349 fixed_preimage.line[i].flag = preimage->line[i].flag;
2350 free(preimage->line_allocated);
2351 *preimage = fixed_preimage;
2352
2353 /*
2354 * Adjust the common context lines in postimage. This can be
2355 * done in-place when we are shrinking it with whitespace
2356 * fixing, but needs a new buffer when ignoring whitespace or
2357 * expanding leading tabs to spaces.
2358 *
2359 * We trust the caller to tell us if the update can be done
2360 * in place (postlen==0) or not.
2361 */
f1ae97d3 2362 old_buf = postimage->buf;
13b5af22 2363 if (postlen)
f1ae97d3 2364 new_buf = postimage->buf = xmalloc(postlen);
13b5af22 2365 else
f1ae97d3 2366 new_buf = old_buf;
13b5af22
CC
2367 fixed = preimage->buf;
2368
2369 for (i = reduced = ctx = 0; i < postimage->nr; i++) {
2370 size_t l_len = postimage->line[i].len;
2371 if (!(postimage->line[i].flag & LINE_COMMON)) {
2372 /* an added line -- no counterparts in preimage */
f1ae97d3
BW
2373 memmove(new_buf, old_buf, l_len);
2374 old_buf += l_len;
2375 new_buf += l_len;
13b5af22
CC
2376 continue;
2377 }
2378
2379 /* a common context -- skip it in the original postimage */
f1ae97d3 2380 old_buf += l_len;
13b5af22
CC
2381
2382 /* and find the corresponding one in the fixed preimage */
2383 while (ctx < preimage->nr &&
2384 !(preimage->line[ctx].flag & LINE_COMMON)) {
2385 fixed += preimage->line[ctx].len;
2386 ctx++;
2387 }
2388
2389 /*
2390 * preimage is expected to run out, if the caller
2391 * fixed addition of trailing blank lines.
2392 */
2393 if (preimage->nr <= ctx) {
2394 reduced++;
2395 continue;
2396 }
2397
2398 /* and copy it in, while fixing the line length */
2399 l_len = preimage->line[ctx].len;
f1ae97d3
BW
2400 memcpy(new_buf, fixed, l_len);
2401 new_buf += l_len;
13b5af22
CC
2402 fixed += l_len;
2403 postimage->line[i].len = l_len;
2404 ctx++;
2405 }
2406
2407 if (postlen
f1ae97d3
BW
2408 ? postlen < new_buf - postimage->buf
2409 : postimage->len < new_buf - postimage->buf)
033abf97 2410 BUG("caller miscounted postlen: asked %d, orig = %d, used = %d",
f1ae97d3 2411 (int)postlen, (int) postimage->len, (int)(new_buf - postimage->buf));
13b5af22
CC
2412
2413 /* Fix the length of the whole thing */
f1ae97d3 2414 postimage->len = new_buf - postimage->buf;
13b5af22
CC
2415 postimage->nr -= reduced;
2416}
2417
2418static int line_by_line_fuzzy_match(struct image *img,
2419 struct image *preimage,
2420 struct image *postimage,
6cbc7cfd
BW
2421 unsigned long current,
2422 int current_lno,
13b5af22
CC
2423 int preimage_limit)
2424{
2425 int i;
2426 size_t imgoff = 0;
2427 size_t preoff = 0;
2428 size_t postlen = postimage->len;
2429 size_t extra_chars;
2430 char *buf;
2431 char *preimage_eof;
2432 char *preimage_end;
2433 struct strbuf fixed;
2434 char *fixed_buf;
2435 size_t fixed_len;
2436
2437 for (i = 0; i < preimage_limit; i++) {
2438 size_t prelen = preimage->line[i].len;
6cbc7cfd 2439 size_t imglen = img->line[current_lno+i].len;
13b5af22 2440
6cbc7cfd 2441 if (!fuzzy_matchlines(img->buf + current + imgoff, imglen,
13b5af22
CC
2442 preimage->buf + preoff, prelen))
2443 return 0;
2444 if (preimage->line[i].flag & LINE_COMMON)
2445 postlen += imglen - prelen;
2446 imgoff += imglen;
2447 preoff += prelen;
2448 }
2449
2450 /*
2451 * Ok, the preimage matches with whitespace fuzz.
2452 *
2453 * imgoff now holds the true length of the target that
2454 * matches the preimage before the end of the file.
2455 *
2456 * Count the number of characters in the preimage that fall
2457 * beyond the end of the file and make sure that all of them
2458 * are whitespace characters. (This can only happen if
2459 * we are removing blank lines at the end of the file.)
2460 */
2461 buf = preimage_eof = preimage->buf + preoff;
2462 for ( ; i < preimage->nr; i++)
2463 preoff += preimage->line[i].len;
2464 preimage_end = preimage->buf + preoff;
2465 for ( ; buf < preimage_end; buf++)
2466 if (!isspace(*buf))
2467 return 0;
2468
2469 /*
2470 * Update the preimage and the common postimage context
2471 * lines to use the same whitespace as the target.
2472 * If whitespace is missing in the target (i.e.
2473 * if the preimage extends beyond the end of the file),
2474 * use the whitespace from the preimage.
2475 */
2476 extra_chars = preimage_end - preimage_eof;
2477 strbuf_init(&fixed, imgoff + extra_chars);
6cbc7cfd 2478 strbuf_add(&fixed, img->buf + current, imgoff);
13b5af22
CC
2479 strbuf_add(&fixed, preimage_eof, extra_chars);
2480 fixed_buf = strbuf_detach(&fixed, &fixed_len);
2481 update_pre_post_images(preimage, postimage,
2482 fixed_buf, fixed_len, postlen);
2483 return 1;
2484}
2485
2486static int match_fragment(struct apply_state *state,
2487 struct image *img,
2488 struct image *preimage,
2489 struct image *postimage,
6cbc7cfd
BW
2490 unsigned long current,
2491 int current_lno,
13b5af22
CC
2492 unsigned ws_rule,
2493 int match_beginning, int match_end)
2494{
2495 int i;
2496 char *fixed_buf, *buf, *orig, *target;
2497 struct strbuf fixed;
2498 size_t fixed_len, postlen;
2499 int preimage_limit;
2500
6cbc7cfd 2501 if (preimage->nr + current_lno <= img->nr) {
13b5af22
CC
2502 /*
2503 * The hunk falls within the boundaries of img.
2504 */
2505 preimage_limit = preimage->nr;
6cbc7cfd 2506 if (match_end && (preimage->nr + current_lno != img->nr))
13b5af22
CC
2507 return 0;
2508 } else if (state->ws_error_action == correct_ws_error &&
2509 (ws_rule & WS_BLANK_AT_EOF)) {
2510 /*
2511 * This hunk extends beyond the end of img, and we are
2512 * removing blank lines at the end of the file. This
2513 * many lines from the beginning of the preimage must
2514 * match with img, and the remainder of the preimage
2515 * must be blank.
2516 */
6cbc7cfd 2517 preimage_limit = img->nr - current_lno;
13b5af22
CC
2518 } else {
2519 /*
2520 * The hunk extends beyond the end of the img and
2521 * we are not removing blanks at the end, so we
2522 * should reject the hunk at this position.
2523 */
2524 return 0;
2525 }
2526
6cbc7cfd 2527 if (match_beginning && current_lno)
13b5af22
CC
2528 return 0;
2529
2530 /* Quick hash check */
2531 for (i = 0; i < preimage_limit; i++)
6cbc7cfd
BW
2532 if ((img->line[current_lno + i].flag & LINE_PATCHED) ||
2533 (preimage->line[i].hash != img->line[current_lno + i].hash))
13b5af22
CC
2534 return 0;
2535
2536 if (preimage_limit == preimage->nr) {
2537 /*
2538 * Do we have an exact match? If we were told to match
6cbc7cfd
BW
2539 * at the end, size must be exactly at current+fragsize,
2540 * otherwise current+fragsize must be still within the preimage,
13b5af22
CC
2541 * and either case, the old piece should match the preimage
2542 * exactly.
2543 */
2544 if ((match_end
6cbc7cfd
BW
2545 ? (current + preimage->len == img->len)
2546 : (current + preimage->len <= img->len)) &&
2547 !memcmp(img->buf + current, preimage->buf, preimage->len))
13b5af22
CC
2548 return 1;
2549 } else {
2550 /*
2551 * The preimage extends beyond the end of img, so
2552 * there cannot be an exact match.
2553 *
2554 * There must be one non-blank context line that match
2555 * a line before the end of img.
2556 */
2557 char *buf_end;
2558
2559 buf = preimage->buf;
2560 buf_end = buf;
2561 for (i = 0; i < preimage_limit; i++)
2562 buf_end += preimage->line[i].len;
2563
2564 for ( ; buf < buf_end; buf++)
2565 if (!isspace(*buf))
2566 break;
2567 if (buf == buf_end)
2568 return 0;
2569 }
2570
2571 /*
2572 * No exact match. If we are ignoring whitespace, run a line-by-line
2573 * fuzzy matching. We collect all the line length information because
2574 * we need it to adjust whitespace if we match.
2575 */
2576 if (state->ws_ignore_action == ignore_ws_change)
2577 return line_by_line_fuzzy_match(img, preimage, postimage,
6cbc7cfd 2578 current, current_lno, preimage_limit);
13b5af22
CC
2579
2580 if (state->ws_error_action != correct_ws_error)
2581 return 0;
2582
2583 /*
2584 * The hunk does not apply byte-by-byte, but the hash says
2585 * it might with whitespace fuzz. We weren't asked to
2586 * ignore whitespace, we were asked to correct whitespace
2587 * errors, so let's try matching after whitespace correction.
2588 *
2589 * While checking the preimage against the target, whitespace
2590 * errors in both fixed, we count how large the corresponding
2591 * postimage needs to be. The postimage prepared by
2592 * apply_one_fragment() has whitespace errors fixed on added
2593 * lines already, but the common lines were propagated as-is,
2594 * which may become longer when their whitespace errors are
2595 * fixed.
2596 */
2597
2598 /* First count added lines in postimage */
2599 postlen = 0;
2600 for (i = 0; i < postimage->nr; i++) {
2601 if (!(postimage->line[i].flag & LINE_COMMON))
2602 postlen += postimage->line[i].len;
2603 }
2604
2605 /*
2606 * The preimage may extend beyond the end of the file,
2607 * but in this loop we will only handle the part of the
2608 * preimage that falls within the file.
2609 */
2610 strbuf_init(&fixed, preimage->len + 1);
2611 orig = preimage->buf;
6cbc7cfd 2612 target = img->buf + current;
13b5af22
CC
2613 for (i = 0; i < preimage_limit; i++) {
2614 size_t oldlen = preimage->line[i].len;
6cbc7cfd 2615 size_t tgtlen = img->line[current_lno + i].len;
13b5af22
CC
2616 size_t fixstart = fixed.len;
2617 struct strbuf tgtfix;
2618 int match;
2619
2620 /* Try fixing the line in the preimage */
2621 ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);
2622
2623 /* Try fixing the line in the target */
2624 strbuf_init(&tgtfix, tgtlen);
2625 ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);
2626
2627 /*
2628 * If they match, either the preimage was based on
2629 * a version before our tree fixed whitespace breakage,
2630 * or we are lacking a whitespace-fix patch the tree
2631 * the preimage was based on already had (i.e. target
2632 * has whitespace breakage, the preimage doesn't).
2633 * In either case, we are fixing the whitespace breakages
2634 * so we might as well take the fix together with their
2635 * real change.
2636 */
2637 match = (tgtfix.len == fixed.len - fixstart &&
2638 !memcmp(tgtfix.buf, fixed.buf + fixstart,
2639 fixed.len - fixstart));
2640
2641 /* Add the length if this is common with the postimage */
2642 if (preimage->line[i].flag & LINE_COMMON)
2643 postlen += tgtfix.len;
2644
2645 strbuf_release(&tgtfix);
2646 if (!match)
2647 goto unmatch_exit;
2648
2649 orig += oldlen;
2650 target += tgtlen;
2651 }
2652
2653
2654 /*
2655 * Now handle the lines in the preimage that falls beyond the
2656 * end of the file (if any). They will only match if they are
2657 * empty or only contain whitespace (if WS_BLANK_AT_EOL is
2658 * false).
2659 */
2660 for ( ; i < preimage->nr; i++) {
2661 size_t fixstart = fixed.len; /* start of the fixed preimage */
2662 size_t oldlen = preimage->line[i].len;
2663 int j;
2664
2665 /* Try fixing the line in the preimage */
2666 ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);
2667
2668 for (j = fixstart; j < fixed.len; j++)
2669 if (!isspace(fixed.buf[j]))
2670 goto unmatch_exit;
2671
2672 orig += oldlen;
2673 }
2674
2675 /*
2676 * Yes, the preimage is based on an older version that still
2677 * has whitespace breakages unfixed, and fixing them makes the
2678 * hunk match. Update the context lines in the postimage.
2679 */
2680 fixed_buf = strbuf_detach(&fixed, &fixed_len);
2681 if (postlen < postimage->len)
2682 postlen = 0;
2683 update_pre_post_images(preimage, postimage,
2684 fixed_buf, fixed_len, postlen);
2685 return 1;
2686
2687 unmatch_exit:
2688 strbuf_release(&fixed);
2689 return 0;
2690}
2691
2692static int find_pos(struct apply_state *state,
2693 struct image *img,
2694 struct image *preimage,
2695 struct image *postimage,
2696 int line,
2697 unsigned ws_rule,
2698 int match_beginning, int match_end)
2699{
2700 int i;
6cbc7cfd
BW
2701 unsigned long backwards, forwards, current;
2702 int backwards_lno, forwards_lno, current_lno;
13b5af22 2703
b4bbbbd5
JS
2704 /*
2705 * When running with --allow-overlap, it is possible that a hunk is
2706 * seen that pretends to start at the beginning (but no longer does),
2707 * and that *still* needs to match the end. So trust `match_end` more
2708 * than `match_beginning`.
2709 */
2710 if (state->allow_overlap && match_beginning && match_end &&
2711 img->nr - preimage->nr != 0)
2712 match_beginning = 0;
2713
13b5af22
CC
2714 /*
2715 * If match_beginning or match_end is specified, there is no
2716 * point starting from a wrong line that will never match and
2717 * wander around and wait for a match at the specified end.
2718 */
2719 if (match_beginning)
2720 line = 0;
2721 else if (match_end)
2722 line = img->nr - preimage->nr;
2723
2724 /*
2725 * Because the comparison is unsigned, the following test
2726 * will also take care of a negative line number that can
2727 * result when match_end and preimage is larger than the target.
2728 */
2729 if ((size_t) line > img->nr)
2730 line = img->nr;
2731
6cbc7cfd 2732 current = 0;
13b5af22 2733 for (i = 0; i < line; i++)
6cbc7cfd 2734 current += img->line[i].len;
13b5af22
CC
2735
2736 /*
2737 * There's probably some smart way to do this, but I'll leave
2738 * that to the smart and beautiful people. I'm simple and stupid.
2739 */
6cbc7cfd 2740 backwards = current;
13b5af22 2741 backwards_lno = line;
6cbc7cfd 2742 forwards = current;
13b5af22 2743 forwards_lno = line;
6cbc7cfd 2744 current_lno = line;
13b5af22
CC
2745
2746 for (i = 0; ; i++) {
2747 if (match_fragment(state, img, preimage, postimage,
6cbc7cfd 2748 current, current_lno, ws_rule,
13b5af22 2749 match_beginning, match_end))
6cbc7cfd 2750 return current_lno;
13b5af22
CC
2751
2752 again:
2753 if (backwards_lno == 0 && forwards_lno == img->nr)
2754 break;
2755
2756 if (i & 1) {
2757 if (backwards_lno == 0) {
2758 i++;
2759 goto again;
2760 }
2761 backwards_lno--;
2762 backwards -= img->line[backwards_lno].len;
6cbc7cfd
BW
2763 current = backwards;
2764 current_lno = backwards_lno;
13b5af22
CC
2765 } else {
2766 if (forwards_lno == img->nr) {
2767 i++;
2768 goto again;
2769 }
2770 forwards += img->line[forwards_lno].len;
2771 forwards_lno++;
6cbc7cfd
BW
2772 current = forwards;
2773 current_lno = forwards_lno;
13b5af22
CC
2774 }
2775
2776 }
2777 return -1;
2778}
2779
2780static void remove_first_line(struct image *img)
2781{
2782 img->buf += img->line[0].len;
2783 img->len -= img->line[0].len;
2784 img->line++;
2785 img->nr--;
2786}
2787
2788static void remove_last_line(struct image *img)
2789{
2790 img->len -= img->line[--img->nr].len;
2791}
2792
2793/*
2794 * The change from "preimage" and "postimage" has been found to
2795 * apply at applied_pos (counts in line numbers) in "img".
2796 * Update "img" to remove "preimage" and replace it with "postimage".
2797 */
2798static void update_image(struct apply_state *state,
2799 struct image *img,
2800 int applied_pos,
2801 struct image *preimage,
2802 struct image *postimage)
2803{
2804 /*
2805 * remove the copy of preimage at offset in img
2806 * and replace it with postimage
2807 */
2808 int i, nr;
2809 size_t remove_count, insert_count, applied_at = 0;
2810 char *result;
2811 int preimage_limit;
2812
2813 /*
2814 * If we are removing blank lines at the end of img,
2815 * the preimage may extend beyond the end.
2816 * If that is the case, we must be careful only to
2817 * remove the part of the preimage that falls within
2818 * the boundaries of img. Initialize preimage_limit
2819 * to the number of lines in the preimage that falls
2820 * within the boundaries.
2821 */
2822 preimage_limit = preimage->nr;
2823 if (preimage_limit > img->nr - applied_pos)
2824 preimage_limit = img->nr - applied_pos;
2825
2826 for (i = 0; i < applied_pos; i++)
2827 applied_at += img->line[i].len;
2828
2829 remove_count = 0;
2830 for (i = 0; i < preimage_limit; i++)
2831 remove_count += img->line[applied_pos + i].len;
2832 insert_count = postimage->len;
2833
2834 /* Adjust the contents */
2835 result = xmalloc(st_add3(st_sub(img->len, remove_count), insert_count, 1));
2836 memcpy(result, img->buf, applied_at);
2837 memcpy(result + applied_at, postimage->buf, postimage->len);
2838 memcpy(result + applied_at + postimage->len,
2839 img->buf + (applied_at + remove_count),
2840 img->len - (applied_at + remove_count));
2841 free(img->buf);
2842 img->buf = result;
2843 img->len += insert_count - remove_count;
2844 result[img->len] = '\0';
2845
2846 /* Adjust the line table */
2847 nr = img->nr + postimage->nr - preimage_limit;
2848 if (preimage_limit < postimage->nr) {
2849 /*
2850 * NOTE: this knows that we never call remove_first_line()
2851 * on anything other than pre/post image.
2852 */
2853 REALLOC_ARRAY(img->line, nr);
2854 img->line_allocated = img->line;
2855 }
2856 if (preimage_limit != postimage->nr)
17736641
RS
2857 MOVE_ARRAY(img->line + applied_pos + postimage->nr,
2858 img->line + applied_pos + preimage_limit,
2859 img->nr - (applied_pos + preimage_limit));
2860 COPY_ARRAY(img->line + applied_pos, postimage->line, postimage->nr);
13b5af22
CC
2861 if (!state->allow_overlap)
2862 for (i = 0; i < postimage->nr; i++)
2863 img->line[applied_pos + i].flag |= LINE_PATCHED;
2864 img->nr = nr;
2865}
2866
2867/*
2868 * Use the patch-hunk text in "frag" to prepare two images (preimage and
2869 * postimage) for the hunk. Find lines that match "preimage" in "img" and
2870 * replace the part of "img" with "postimage" text.
2871 */
2872static int apply_one_fragment(struct apply_state *state,
2873 struct image *img, struct fragment *frag,
2874 int inaccurate_eof, unsigned ws_rule,
2875 int nth_fragment)
2876{
2877 int match_beginning, match_end;
2878 const char *patch = frag->patch;
2879 int size = frag->size;
2880 char *old, *oldlines;
2881 struct strbuf newlines;
2882 int new_blank_lines_at_end = 0;
2883 int found_new_blank_lines_at_end = 0;
2884 int hunk_linenr = frag->linenr;
2885 unsigned long leading, trailing;
2886 int pos, applied_pos;
2887 struct image preimage;
2888 struct image postimage;
2889
2890 memset(&preimage, 0, sizeof(preimage));
2891 memset(&postimage, 0, sizeof(postimage));
2892 oldlines = xmalloc(size);
2893 strbuf_init(&newlines, size);
2894
2895 old = oldlines;
2896 while (size > 0) {
2897 char first;
2898 int len = linelen(patch, size);
2899 int plen;
2900 int added_blank_line = 0;
2901 int is_blank_context = 0;
2902 size_t start;
2903
2904 if (!len)
2905 break;
2906
2907 /*
2908 * "plen" is how much of the line we should use for
2909 * the actual patch data. Normally we just remove the
2910 * first character on the line, but if the line is
2911 * followed by "\ No newline", then we also remove the
2912 * last one (which is the newline, of course).
2913 */
2914 plen = len - 1;
2915 if (len < size && patch[len] == '\\')
2916 plen--;
2917 first = *patch;
2918 if (state->apply_in_reverse) {
2919 if (first == '-')
2920 first = '+';
2921 else if (first == '+')
2922 first = '-';
2923 }
2924
2925 switch (first) {
2926 case '\n':
2927 /* Newer GNU diff, empty context line */
2928 if (plen < 0)
2929 /* ... followed by '\No newline'; nothing */
2930 break;
2931 *old++ = '\n';
2932 strbuf_addch(&newlines, '\n');
2933 add_line_info(&preimage, "\n", 1, LINE_COMMON);
2934 add_line_info(&postimage, "\n", 1, LINE_COMMON);
2935 is_blank_context = 1;
2936 break;
2937 case ' ':
2938 if (plen && (ws_rule & WS_BLANK_AT_EOF) &&
c5224f0f 2939 ws_blank_line(patch + 1, plen))
13b5af22 2940 is_blank_context = 1;
1cf01a34 2941 /* fallthrough */
13b5af22
CC
2942 case '-':
2943 memcpy(old, patch + 1, plen);
2944 add_line_info(&preimage, old, plen,
2945 (first == ' ' ? LINE_COMMON : 0));
2946 old += plen;
2947 if (first == '-')
2948 break;
1cf01a34 2949 /* fallthrough */
13b5af22
CC
2950 case '+':
2951 /* --no-add does not add new lines */
2952 if (first == '+' && state->no_add)
2953 break;
2954
2955 start = newlines.len;
2956 if (first != '+' ||
2957 !state->whitespace_error ||
2958 state->ws_error_action != correct_ws_error) {
2959 strbuf_add(&newlines, patch + 1, plen);
2960 }
2961 else {
2962 ws_fix_copy(&newlines, patch + 1, plen, ws_rule, &state->applied_after_fixing_ws);
2963 }
2964 add_line_info(&postimage, newlines.buf + start, newlines.len - start,
2965 (first == '+' ? 0 : LINE_COMMON));
2966 if (first == '+' &&
2967 (ws_rule & WS_BLANK_AT_EOF) &&
c5224f0f 2968 ws_blank_line(patch + 1, plen))
13b5af22
CC
2969 added_blank_line = 1;
2970 break;
2971 case '@': case '\\':
2972 /* Ignore it, we already handled it */
2973 break;
2974 default:
a46160d2 2975 if (state->apply_verbosity > verbosity_normal)
13b5af22
CC
2976 error(_("invalid start of line: '%c'"), first);
2977 applied_pos = -1;
2978 goto out;
2979 }
2980 if (added_blank_line) {
2981 if (!new_blank_lines_at_end)
2982 found_new_blank_lines_at_end = hunk_linenr;
2983 new_blank_lines_at_end++;
2984 }
2985 else if (is_blank_context)
2986 ;
2987 else
2988 new_blank_lines_at_end = 0;
2989 patch += len;
2990 size -= len;
2991 hunk_linenr++;
2992 }
2993 if (inaccurate_eof &&
2994 old > oldlines && old[-1] == '\n' &&
2995 newlines.len > 0 && newlines.buf[newlines.len - 1] == '\n') {
2996 old--;
2997 strbuf_setlen(&newlines, newlines.len - 1);
4855de12
RS
2998 preimage.line_allocated[preimage.nr - 1].len--;
2999 postimage.line_allocated[postimage.nr - 1].len--;
13b5af22
CC
3000 }
3001
3002 leading = frag->leading;
3003 trailing = frag->trailing;
3004
3005 /*
3006 * A hunk to change lines at the beginning would begin with
3007 * @@ -1,L +N,M @@
3008 * but we need to be careful. -U0 that inserts before the second
3009 * line also has this pattern.
3010 *
3011 * And a hunk to add to an empty file would begin with
3012 * @@ -0,0 +N,M @@
3013 *
3014 * In other words, a hunk that is (frag->oldpos <= 1) with or
3015 * without leading context must match at the beginning.
3016 */
3017 match_beginning = (!frag->oldpos ||
3018 (frag->oldpos == 1 && !state->unidiff_zero));
3019
3020 /*
3021 * A hunk without trailing lines must match at the end.
3022 * However, we simply cannot tell if a hunk must match end
3023 * from the lack of trailing lines if the patch was generated
3024 * with unidiff without any context.
3025 */
3026 match_end = !state->unidiff_zero && !trailing;
3027
3028 pos = frag->newpos ? (frag->newpos - 1) : 0;
3029 preimage.buf = oldlines;
3030 preimage.len = old - oldlines;
3031 postimage.buf = newlines.buf;
3032 postimage.len = newlines.len;
3033 preimage.line = preimage.line_allocated;
3034 postimage.line = postimage.line_allocated;
3035
3036 for (;;) {
3037
3038 applied_pos = find_pos(state, img, &preimage, &postimage, pos,
3039 ws_rule, match_beginning, match_end);
3040
3041 if (applied_pos >= 0)
3042 break;
3043
3044 /* Am I at my context limits? */
3045 if ((leading <= state->p_context) && (trailing <= state->p_context))
3046 break;
3047 if (match_beginning || match_end) {
3048 match_beginning = match_end = 0;
3049 continue;
3050 }
3051
3052 /*
3053 * Reduce the number of context lines; reduce both
3054 * leading and trailing if they are equal otherwise
3055 * just reduce the larger context.
3056 */
3057 if (leading >= trailing) {
3058 remove_first_line(&preimage);
3059 remove_first_line(&postimage);
3060 pos--;
3061 leading--;
3062 }
3063 if (trailing > leading) {
3064 remove_last_line(&preimage);
3065 remove_last_line(&postimage);
3066 trailing--;
3067 }
3068 }
3069
3070 if (applied_pos >= 0) {
3071 if (new_blank_lines_at_end &&
3072 preimage.nr + applied_pos >= img->nr &&
3073 (ws_rule & WS_BLANK_AT_EOF) &&
3074 state->ws_error_action != nowarn_ws_error) {
3075 record_ws_error(state, WS_BLANK_AT_EOF, "+", 1,
3076 found_new_blank_lines_at_end);
3077 if (state->ws_error_action == correct_ws_error) {
3078 while (new_blank_lines_at_end--)
3079 remove_last_line(&postimage);
3080 }
3081 /*
3082 * We would want to prevent write_out_results()
3083 * from taking place in apply_patch() that follows
3084 * the callchain led us here, which is:
3085 * apply_patch->check_patch_list->check_patch->
3086 * apply_data->apply_fragments->apply_one_fragment
3087 */
3088 if (state->ws_error_action == die_on_ws_error)
3089 state->apply = 0;
3090 }
3091
a46160d2 3092 if (state->apply_verbosity > verbosity_normal && applied_pos != pos) {
13b5af22
CC
3093 int offset = applied_pos - pos;
3094 if (state->apply_in_reverse)
3095 offset = 0 - offset;
3096 fprintf_ln(stderr,
3097 Q_("Hunk #%d succeeded at %d (offset %d line).",
3098 "Hunk #%d succeeded at %d (offset %d lines).",
3099 offset),
3100 nth_fragment, applied_pos + 1, offset);
3101 }
3102
3103 /*
3104 * Warn if it was necessary to reduce the number
3105 * of context lines.
3106 */
a46160d2
CC
3107 if ((leading != frag->leading ||
3108 trailing != frag->trailing) && state->apply_verbosity > verbosity_silent)
13b5af22
CC
3109 fprintf_ln(stderr, _("Context reduced to (%ld/%ld)"
3110 " to apply fragment at %d"),
3111 leading, trailing, applied_pos+1);
3112 update_image(state, img, applied_pos, &preimage, &postimage);
3113 } else {
a46160d2 3114 if (state->apply_verbosity > verbosity_normal)
13b5af22
CC
3115 error(_("while searching for:\n%.*s"),
3116 (int)(old - oldlines), oldlines);
3117 }
3118
3119out:
3120 free(oldlines);
3121 strbuf_release(&newlines);
3122 free(preimage.line_allocated);
3123 free(postimage.line_allocated);
3124
3125 return (applied_pos < 0);
3126}
3127
3128static int apply_binary_fragment(struct apply_state *state,
3129 struct image *img,
3130 struct patch *patch)
3131{
3132 struct fragment *fragment = patch->fragments;
3133 unsigned long len;
3134 void *dst;
3135
3136 if (!fragment)
3137 return error(_("missing binary patch data for '%s'"),
3138 patch->new_name ?
3139 patch->new_name :
3140 patch->old_name);
3141
3142 /* Binary patch is irreversible without the optional second hunk */
3143 if (state->apply_in_reverse) {
3144 if (!fragment->next)
d1d42bf5
VA
3145 return error(_("cannot reverse-apply a binary patch "
3146 "without the reverse hunk to '%s'"),
13b5af22
CC
3147 patch->new_name
3148 ? patch->new_name : patch->old_name);
3149 fragment = fragment->next;
3150 }
3151 switch (fragment->binary_patch_method) {
3152 case BINARY_DELTA_DEFLATED:
3153 dst = patch_delta(img->buf, img->len, fragment->patch,
3154 fragment->size, &len);
3155 if (!dst)
3156 return -1;
3157 clear_image(img);
3158 img->buf = dst;
3159 img->len = len;
3160 return 0;
3161 case BINARY_LITERAL_DEFLATED:
3162 clear_image(img);
3163 img->len = fragment->size;
3164 img->buf = xmemdupz(fragment->patch, img->len);
3165 return 0;
3166 }
3167 return -1;
3168}
3169
3170/*
3171 * Replace "img" with the result of applying the binary patch.
3172 * The binary patch data itself in patch->fragment is still kept
3173 * but the preimage prepared by the caller in "img" is freed here
3174 * or in the helper function apply_binary_fragment() this calls.
3175 */
3176static int apply_binary(struct apply_state *state,
3177 struct image *img,
3178 struct patch *patch)
3179{
3180 const char *name = patch->old_name ? patch->old_name : patch->new_name;
4af9a7d3 3181 struct object_id oid;
93eb00f7 3182 const unsigned hexsz = the_hash_algo->hexsz;
13b5af22
CC
3183
3184 /*
3185 * For safety, we require patch index line to contain
93eb00f7 3186 * full hex textual object ID for old and new, at least for now.
13b5af22 3187 */
eccb5a5f 3188 if (strlen(patch->old_oid_prefix) != hexsz ||
3189 strlen(patch->new_oid_prefix) != hexsz ||
3190 get_oid_hex(patch->old_oid_prefix, &oid) ||
3191 get_oid_hex(patch->new_oid_prefix, &oid))
d1d42bf5
VA
3192 return error(_("cannot apply binary patch to '%s' "
3193 "without full index line"), name);
13b5af22
CC
3194
3195 if (patch->old_name) {
3196 /*
3197 * See if the old one matches what the patch
3198 * applies to.
3199 */
44439c1c 3200 hash_object_file(the_hash_algo, img->buf, img->len, OBJ_BLOB,
2dcde20e 3201 &oid);
eccb5a5f 3202 if (strcmp(oid_to_hex(&oid), patch->old_oid_prefix))
d1d42bf5
VA
3203 return error(_("the patch applies to '%s' (%s), "
3204 "which does not match the "
3205 "current contents."),
4af9a7d3 3206 name, oid_to_hex(&oid));
13b5af22
CC
3207 }
3208 else {
3209 /* Otherwise, the old one must be empty. */
3210 if (img->len)
d1d42bf5
VA
3211 return error(_("the patch applies to an empty "
3212 "'%s' but it is not empty"), name);
13b5af22
CC
3213 }
3214
eccb5a5f 3215 get_oid_hex(patch->new_oid_prefix, &oid);
4af9a7d3 3216 if (is_null_oid(&oid)) {
13b5af22
CC
3217 clear_image(img);
3218 return 0; /* deletion patch */
3219 }
3220
3318238d 3221 if (has_object(the_repository, &oid, 0)) {
13b5af22
CC
3222 /* We already have the postimage */
3223 enum object_type type;
3224 unsigned long size;
3225 char *result;
3226
bc726bd0
ÆAB
3227 result = repo_read_object_file(the_repository, &oid, &type,
3228 &size);
13b5af22 3229 if (!result)
d1d42bf5
VA
3230 return error(_("the necessary postimage %s for "
3231 "'%s' cannot be read"),
eccb5a5f 3232 patch->new_oid_prefix, name);
13b5af22
CC
3233 clear_image(img);
3234 img->buf = result;
3235 img->len = size;
3236 } else {
3237 /*
3238 * We have verified buf matches the preimage;
3239 * apply the patch data to it, which is stored
3240 * in the patch->fragments->{patch,size}.
3241 */
3242 if (apply_binary_fragment(state, img, patch))
3243 return error(_("binary patch does not apply to '%s'"),
3244 name);
3245
3246 /* verify that the result matches */
44439c1c 3247 hash_object_file(the_hash_algo, img->buf, img->len, OBJ_BLOB,
2dcde20e 3248 &oid);
eccb5a5f 3249 if (strcmp(oid_to_hex(&oid), patch->new_oid_prefix))
13b5af22 3250 return error(_("binary patch to '%s' creates incorrect result (expecting %s, got %s)"),
eccb5a5f 3251 name, patch->new_oid_prefix, oid_to_hex(&oid));
13b5af22
CC
3252 }
3253
3254 return 0;
3255}
3256
3257static int apply_fragments(struct apply_state *state, struct image *img, struct patch *patch)
3258{
3259 struct fragment *frag = patch->fragments;
3260 const char *name = patch->old_name ? patch->old_name : patch->new_name;
3261 unsigned ws_rule = patch->ws_rule;
3262 unsigned inaccurate_eof = patch->inaccurate_eof;
3263 int nth = 0;
3264
3265 if (patch->is_binary)
3266 return apply_binary(state, img, patch);
3267
3268 while (frag) {
3269 nth++;
3270 if (apply_one_fragment(state, img, frag, inaccurate_eof, ws_rule, nth)) {
3271 error(_("patch failed: %s:%ld"), name, frag->oldpos);
3272 if (!state->apply_with_reject)
3273 return -1;
3274 frag->rejected = 1;
3275 }
3276 frag = frag->next;
3277 }
3278 return 0;
3279}
3280
4af9a7d3 3281static int read_blob_object(struct strbuf *buf, const struct object_id *oid, unsigned mode)
13b5af22
CC
3282{
3283 if (S_ISGITLINK(mode)) {
3284 strbuf_grow(buf, 100);
4af9a7d3 3285 strbuf_addf(buf, "Subproject commit %s\n", oid_to_hex(oid));
13b5af22
CC
3286 } else {
3287 enum object_type type;
3288 unsigned long sz;
3289 char *result;
3290
bc726bd0
ÆAB
3291 result = repo_read_object_file(the_repository, oid, &type,
3292 &sz);
13b5af22
CC
3293 if (!result)
3294 return -1;
3295 /* XXX read_sha1_file NUL-terminates */
3296 strbuf_attach(buf, result, sz, sz + 1);
3297 }
3298 return 0;
3299}
3300
3301static int read_file_or_gitlink(const struct cache_entry *ce, struct strbuf *buf)
3302{
3303 if (!ce)
3304 return 0;
4af9a7d3 3305 return read_blob_object(buf, &ce->oid, ce->ce_mode);
13b5af22
CC
3306}
3307
3308static struct patch *in_fn_table(struct apply_state *state, const char *name)
3309{
3310 struct string_list_item *item;
3311
afe8a907 3312 if (!name)
13b5af22
CC
3313 return NULL;
3314
3315 item = string_list_lookup(&state->fn_table, name);
afe8a907 3316 if (item)
13b5af22
CC
3317 return (struct patch *)item->util;
3318
3319 return NULL;
3320}
3321
3322/*
3323 * item->util in the filename table records the status of the path.
3324 * Usually it points at a patch (whose result records the contents
3325 * of it after applying it), but it could be PATH_WAS_DELETED for a
3326 * path that a previously applied patch has already removed, or
3327 * PATH_TO_BE_DELETED for a path that a later patch would remove.
3328 *
3329 * The latter is needed to deal with a case where two paths A and B
3330 * are swapped by first renaming A to B and then renaming B to A;
3331 * moving A to B should not be prevented due to presence of B as we
3332 * will remove it in a later patch.
3333 */
3334#define PATH_TO_BE_DELETED ((struct patch *) -2)
3335#define PATH_WAS_DELETED ((struct patch *) -1)
3336
3337static int to_be_deleted(struct patch *patch)
3338{
3339 return patch == PATH_TO_BE_DELETED;
3340}
3341
3342static int was_deleted(struct patch *patch)
3343{
3344 return patch == PATH_WAS_DELETED;
3345}
3346
3347static void add_to_fn_table(struct apply_state *state, struct patch *patch)
3348{
3349 struct string_list_item *item;
3350
3351 /*
3352 * Always add new_name unless patch is a deletion
3353 * This should cover the cases for normal diffs,
3354 * file creations and copies
3355 */
afe8a907 3356 if (patch->new_name) {
13b5af22
CC
3357 item = string_list_insert(&state->fn_table, patch->new_name);
3358 item->util = patch;
3359 }
3360
3361 /*
3362 * store a failure on rename/deletion cases because
3363 * later chunks shouldn't patch old names
3364 */
3365 if ((patch->new_name == NULL) || (patch->is_rename)) {
3366 item = string_list_insert(&state->fn_table, patch->old_name);
3367 item->util = PATH_WAS_DELETED;
3368 }
3369}
3370
3371static void prepare_fn_table(struct apply_state *state, struct patch *patch)
3372{
3373 /*
3374 * store information about incoming file deletion
3375 */
3376 while (patch) {
3377 if ((patch->new_name == NULL) || (patch->is_rename)) {
3378 struct string_list_item *item;
3379 item = string_list_insert(&state->fn_table, patch->old_name);
3380 item->util = PATH_TO_BE_DELETED;
3381 }
3382 patch = patch->next;
3383 }
3384}
3385
3386static int checkout_target(struct index_state *istate,
3387 struct cache_entry *ce, struct stat *st)
3388{
68e3d629 3389 struct checkout costate = CHECKOUT_INIT;
13b5af22 3390
13b5af22
CC
3391 costate.refresh_cache = 1;
3392 costate.istate = istate;
0f086e6d
NTND
3393 if (checkout_entry(ce, &costate, NULL, NULL) ||
3394 lstat(ce->name, st))
13b5af22
CC
3395 return error(_("cannot checkout %s"), ce->name);
3396 return 0;
3397}
3398
3399static struct patch *previous_patch(struct apply_state *state,
3400 struct patch *patch,
3401 int *gone)
3402{
3403 struct patch *previous;
3404
3405 *gone = 0;
3406 if (patch->is_copy || patch->is_rename)
3407 return NULL; /* "git" patches do not depend on the order */
3408
3409 previous = in_fn_table(state, patch->old_name);
3410 if (!previous)
3411 return NULL;
3412
3413 if (to_be_deleted(previous))
3414 return NULL; /* the deletion hasn't happened yet */
3415
3416 if (was_deleted(previous))
3417 *gone = 1;
3418
3419 return previous;
3420}
3421
332a82a5
NTND
3422static int verify_index_match(struct apply_state *state,
3423 const struct cache_entry *ce,
3424 struct stat *st)
13b5af22
CC
3425{
3426 if (S_ISGITLINK(ce->ce_mode)) {
3427 if (!S_ISDIR(st->st_mode))
3428 return -1;
3429 return 0;
3430 }
1b5c6c1e
NTND
3431 return ie_match_stat(state->repo->index, ce, st,
3432 CE_MATCH_IGNORE_VALID | CE_MATCH_IGNORE_SKIP_WORKTREE);
13b5af22
CC
3433}
3434
3435#define SUBMODULE_PATCH_WITHOUT_INDEX 1
3436
3437static int load_patch_target(struct apply_state *state,
3438 struct strbuf *buf,
3439 const struct cache_entry *ce,
3440 struct stat *st,
c24f3aba 3441 struct patch *patch,
13b5af22
CC
3442 const char *name,
3443 unsigned expected_mode)
3444{
3445 if (state->cached || state->check_index) {
3446 if (read_file_or_gitlink(ce, buf))
3447 return error(_("failed to read %s"), name);
3448 } else if (name) {
3449 if (S_ISGITLINK(expected_mode)) {
3450 if (ce)
3451 return read_file_or_gitlink(ce, buf);
3452 else
3453 return SUBMODULE_PATCH_WITHOUT_INDEX;
3454 } else if (has_symlink_leading_path(name, strlen(name))) {
3455 return error(_("reading from '%s' beyond a symbolic link"), name);
3456 } else {
c24f3aba 3457 if (read_old_data(st, patch, name, buf))
13b5af22
CC
3458 return error(_("failed to read %s"), name);
3459 }
3460 }
3461 return 0;
3462}
3463
3464/*
3465 * We are about to apply "patch"; populate the "image" with the
3466 * current version we have, from the working tree or from the index,
3467 * depending on the situation e.g. --cached/--index. If we are
3468 * applying a non-git patch that incrementally updates the tree,
3469 * we read from the result of a previous diff.
3470 */
3471static int load_preimage(struct apply_state *state,
3472 struct image *image,
3473 struct patch *patch, struct stat *st,
3474 const struct cache_entry *ce)
3475{
3476 struct strbuf buf = STRBUF_INIT;
3477 size_t len;
3478 char *img;
3479 struct patch *previous;
3480 int status;
3481
3482 previous = previous_patch(state, patch, &status);
3483 if (status)
3484 return error(_("path %s has been renamed/deleted"),
3485 patch->old_name);
3486 if (previous) {
3487 /* We have a patched copy in memory; use that. */
3488 strbuf_add(&buf, previous->result, previous->resultsize);
3489 } else {
c24f3aba 3490 status = load_patch_target(state, &buf, ce, st, patch,
13b5af22
CC
3491 patch->old_name, patch->old_mode);
3492 if (status < 0)
3493 return status;
3494 else if (status == SUBMODULE_PATCH_WITHOUT_INDEX) {
3495 /*
3496 * There is no way to apply subproject
3497 * patch without looking at the index.
3498 * NEEDSWORK: shouldn't this be flagged
3499 * as an error???
3500 */
3501 free_fragment_list(patch->fragments);
3502 patch->fragments = NULL;
3503 } else if (status) {
3504 return error(_("failed to read %s"), patch->old_name);
3505 }
3506 }
3507
3508 img = strbuf_detach(&buf, &len);
3509 prepare_image(image, img, len, !patch->is_binary);
3510 return 0;
3511}
3512
57f183b6
JH
3513static int resolve_to(struct image *image, const struct object_id *result_id)
3514{
3515 unsigned long size;
3516 enum object_type type;
3517
3518 clear_image(image);
3519
bc726bd0
ÆAB
3520 image->buf = repo_read_object_file(the_repository, result_id, &type,
3521 &size);
57f183b6
JH
3522 if (!image->buf || type != OBJ_BLOB)
3523 die("unable to read blob object %s", oid_to_hex(result_id));
3524 image->len = size;
3525
3526 return 0;
3527}
3528
32eaa468
NTND
3529static int three_way_merge(struct apply_state *state,
3530 struct image *image,
13b5af22 3531 char *path,
4af9a7d3
JH
3532 const struct object_id *base,
3533 const struct object_id *ours,
3534 const struct object_id *theirs)
13b5af22
CC
3535{
3536 mmfile_t base_file, our_file, their_file;
3537 mmbuffer_t result = { NULL };
35f69671 3538 enum ll_merge_result status;
13b5af22 3539
57f183b6
JH
3540 /* resolve trivial cases first */
3541 if (oideq(base, ours))
3542 return resolve_to(image, theirs);
3543 else if (oideq(base, theirs) || oideq(ours, theirs))
3544 return resolve_to(image, ours);
3545
13b5af22
CC
3546 read_mmblob(&base_file, base);
3547 read_mmblob(&our_file, ours);
3548 read_mmblob(&their_file, theirs);
3549 status = ll_merge(&result, path,
3550 &base_file, "base",
3551 &our_file, "ours",
32eaa468
NTND
3552 &their_file, "theirs",
3553 state->repo->index,
3554 NULL);
35f69671
EN
3555 if (status == LL_MERGE_BINARY_CONFLICT)
3556 warning("Cannot merge binary files: %s (%s vs. %s)",
3557 path, "ours", "theirs");
13b5af22
CC
3558 free(base_file.ptr);
3559 free(our_file.ptr);
3560 free(their_file.ptr);
3561 if (status < 0 || !result.ptr) {
3562 free(result.ptr);
3563 return -1;
3564 }
3565 clear_image(image);
3566 image->buf = result.ptr;
3567 image->len = result.size;
3568
3569 return status;
3570}
3571
3572/*
3573 * When directly falling back to add/add three-way merge, we read from
3574 * the current contents of the new_name. In no cases other than that
3575 * this function will be called.
3576 */
3577static int load_current(struct apply_state *state,
3578 struct image *image,
3579 struct patch *patch)
3580{
3581 struct strbuf buf = STRBUF_INIT;
3582 int status, pos;
3583 size_t len;
3584 char *img;
3585 struct stat st;
3586 struct cache_entry *ce;
3587 char *name = patch->new_name;
3588 unsigned mode = patch->new_mode;
3589
3590 if (!patch->is_new)
033abf97 3591 BUG("patch to %s is not a creation", patch->old_name);
13b5af22 3592
1b5c6c1e 3593 pos = index_name_pos(state->repo->index, name, strlen(name));
13b5af22
CC
3594 if (pos < 0)
3595 return error(_("%s: does not exist in index"), name);
1b5c6c1e 3596 ce = state->repo->index->cache[pos];
13b5af22
CC
3597 if (lstat(name, &st)) {
3598 if (errno != ENOENT)
90875eca 3599 return error_errno("%s", name);
1b5c6c1e 3600 if (checkout_target(state->repo->index, ce, &st))
13b5af22
CC
3601 return -1;
3602 }
332a82a5 3603 if (verify_index_match(state, ce, &st))
13b5af22
CC
3604 return error(_("%s: does not match index"), name);
3605
c24f3aba 3606 status = load_patch_target(state, &buf, ce, &st, patch, name, mode);
13b5af22
CC
3607 if (status < 0)
3608 return status;
3609 else if (status)
3610 return -1;
3611 img = strbuf_detach(&buf, &len);
3612 prepare_image(image, img, len, !patch->is_binary);
3613 return 0;
3614}
3615
3616static int try_threeway(struct apply_state *state,
3617 struct image *image,
3618 struct patch *patch,
3619 struct stat *st,
3620 const struct cache_entry *ce)
3621{
4af9a7d3 3622 struct object_id pre_oid, post_oid, our_oid;
13b5af22
CC
3623 struct strbuf buf = STRBUF_INIT;
3624 size_t len;
3625 int status;
3626 char *img;
3627 struct image tmp_image;
3628
3629 /* No point falling back to 3-way merge in these cases */
3630 if (patch->is_delete ||
34d60703
JZ
3631 S_ISGITLINK(patch->old_mode) || S_ISGITLINK(patch->new_mode) ||
3632 (patch->is_new && !patch->direct_to_threeway) ||
3633 (patch->is_rename && !patch->lines_added && !patch->lines_deleted))
13b5af22
CC
3634 return -1;
3635
3636 /* Preimage the patch was prepared for */
3637 if (patch->is_new)
c80d226a 3638 write_object_file("", 0, OBJ_BLOB, &pre_oid);
d850b7a5 3639 else if (repo_get_oid(the_repository, patch->old_oid_prefix, &pre_oid) ||
4af9a7d3 3640 read_blob_object(&buf, &pre_oid, patch->old_mode))
923cd87a 3641 return error(_("repository lacks the necessary blob to perform 3-way merge."));
13b5af22 3642
526705fd 3643 if (state->apply_verbosity > verbosity_silent && patch->direct_to_threeway)
923cd87a 3644 fprintf(stderr, _("Performing three-way merge...\n"));
13b5af22
CC
3645
3646 img = strbuf_detach(&buf, &len);
3647 prepare_image(&tmp_image, img, len, 1);
3648 /* Apply the patch to get the post image */
3649 if (apply_fragments(state, &tmp_image, patch) < 0) {
3650 clear_image(&tmp_image);
3651 return -1;
3652 }
4af9a7d3 3653 /* post_oid is theirs */
c80d226a 3654 write_object_file(tmp_image.buf, tmp_image.len, OBJ_BLOB, &post_oid);
13b5af22
CC
3655 clear_image(&tmp_image);
3656
4af9a7d3 3657 /* our_oid is ours */
13b5af22
CC
3658 if (patch->is_new) {
3659 if (load_current(state, &tmp_image, patch))
d1d42bf5 3660 return error(_("cannot read the current contents of '%s'"),
13b5af22
CC
3661 patch->new_name);
3662 } else {
3663 if (load_preimage(state, &tmp_image, patch, st, ce))
d1d42bf5 3664 return error(_("cannot read the current contents of '%s'"),
13b5af22
CC
3665 patch->old_name);
3666 }
c80d226a 3667 write_object_file(tmp_image.buf, tmp_image.len, OBJ_BLOB, &our_oid);
13b5af22
CC
3668 clear_image(&tmp_image);
3669
3670 /* in-core three-way merge between post and our using pre as base */
32eaa468 3671 status = three_way_merge(state, image, patch->new_name,
4af9a7d3 3672 &pre_oid, &our_oid, &post_oid);
13b5af22 3673 if (status < 0) {
a46160d2
CC
3674 if (state->apply_verbosity > verbosity_silent)
3675 fprintf(stderr,
923cd87a 3676 _("Failed to perform three-way merge...\n"));
13b5af22
CC
3677 return status;
3678 }
3679
3680 if (status) {
3681 patch->conflicted_threeway = 1;
3682 if (patch->is_new)
3683 oidclr(&patch->threeway_stage[0]);
3684 else
4af9a7d3
JH
3685 oidcpy(&patch->threeway_stage[0], &pre_oid);
3686 oidcpy(&patch->threeway_stage[1], &our_oid);
3687 oidcpy(&patch->threeway_stage[2], &post_oid);
a46160d2
CC
3688 if (state->apply_verbosity > verbosity_silent)
3689 fprintf(stderr,
5886637a 3690 _("Applied patch to '%s' with conflicts.\n"),
a46160d2 3691 patch->new_name);
13b5af22 3692 } else {
a46160d2
CC
3693 if (state->apply_verbosity > verbosity_silent)
3694 fprintf(stderr,
5886637a 3695 _("Applied patch to '%s' cleanly.\n"),
a46160d2 3696 patch->new_name);
13b5af22
CC
3697 }
3698 return 0;
3699}
3700
3701static int apply_data(struct apply_state *state, struct patch *patch,
3702 struct stat *st, const struct cache_entry *ce)
3703{
3704 struct image image;
3705
3706 if (load_preimage(state, &image, patch, st, ce) < 0)
3707 return -1;
3708
923cd87a 3709 if (!state->threeway || try_threeway(state, &image, patch, st, ce) < 0) {
526705fd
JZ
3710 if (state->apply_verbosity > verbosity_silent &&
3711 state->threeway && !patch->direct_to_threeway)
3712 fprintf(stderr, _("Falling back to direct application...\n"));
3713
13b5af22 3714 /* Note: with --reject, apply_fragments() returns 0 */
923cd87a 3715 if (patch->direct_to_threeway || apply_fragments(state, &image, patch) < 0)
13b5af22
CC
3716 return -1;
3717 }
3718 patch->result = image.buf;
3719 patch->resultsize = image.len;
3720 add_to_fn_table(state, patch);
3721 free(image.line_allocated);
3722
3723 if (0 < patch->is_delete && patch->resultsize)
3724 return error(_("removal patch leaves file contents"));
3725
3726 return 0;
3727}
3728
3729/*
3730 * If "patch" that we are looking at modifies or deletes what we have,
3731 * we would want it not to lose any local modification we have, either
3732 * in the working tree or in the index.
3733 *
3734 * This also decides if a non-git patch is a creation patch or a
3735 * modification to an existing empty file. We do not check the state
3736 * of the current tree for a creation patch in this function; the caller
3737 * check_patch() separately makes sure (and errors out otherwise) that
3738 * the path the patch creates does not exist in the current tree.
3739 */
3740static int check_preimage(struct apply_state *state,
3741 struct patch *patch,
3742 struct cache_entry **ce,
3743 struct stat *st)
3744{
3745 const char *old_name = patch->old_name;
3746 struct patch *previous = NULL;
3747 int stat_ret = 0, status;
3748 unsigned st_mode = 0;
3749
3750 if (!old_name)
3751 return 0;
3752
3753 assert(patch->is_new <= 0);
3754 previous = previous_patch(state, patch, &status);
3755
3756 if (status)
3757 return error(_("path %s has been renamed/deleted"), old_name);
3758 if (previous) {
3759 st_mode = previous->new_mode;
3760 } else if (!state->cached) {
3761 stat_ret = lstat(old_name, st);
3762 if (stat_ret && errno != ENOENT)
90875eca 3763 return error_errno("%s", old_name);
13b5af22
CC
3764 }
3765
3766 if (state->check_index && !previous) {
1b5c6c1e
NTND
3767 int pos = index_name_pos(state->repo->index, old_name,
3768 strlen(old_name));
13b5af22
CC
3769 if (pos < 0) {
3770 if (patch->is_new < 0)
3771 goto is_new;
3772 return error(_("%s: does not exist in index"), old_name);
3773 }
1b5c6c1e 3774 *ce = state->repo->index->cache[pos];
13b5af22 3775 if (stat_ret < 0) {
1b5c6c1e 3776 if (checkout_target(state->repo->index, *ce, st))
13b5af22
CC
3777 return -1;
3778 }
332a82a5 3779 if (!state->cached && verify_index_match(state, *ce, st))
13b5af22
CC
3780 return error(_("%s: does not match index"), old_name);
3781 if (state->cached)
3782 st_mode = (*ce)->ce_mode;
3783 } else if (stat_ret < 0) {
3784 if (patch->is_new < 0)
3785 goto is_new;
90875eca 3786 return error_errno("%s", old_name);
13b5af22
CC
3787 }
3788
0482c32c 3789 if (!state->cached && !previous) {
45b62514
JH
3790 if (*ce && !(*ce)->ce_mode)
3791 BUG("ce_mode == 0 for path '%s'", old_name);
3792
3793 if (trust_executable_bit)
0482c32c 3794 st_mode = ce_mode_from_stat(*ce, st->st_mode);
45b62514
JH
3795 else if (*ce)
3796 st_mode = (*ce)->ce_mode;
3797 else
3798 st_mode = patch->old_mode;
0482c32c 3799 }
13b5af22
CC
3800
3801 if (patch->is_new < 0)
3802 patch->is_new = 0;
3803 if (!patch->old_mode)
3804 patch->old_mode = st_mode;
3805 if ((st_mode ^ patch->old_mode) & S_IFMT)
3806 return error(_("%s: wrong type"), old_name);
3807 if (st_mode != patch->old_mode)
3808 warning(_("%s has type %o, expected %o"),
3809 old_name, st_mode, patch->old_mode);
3810 if (!patch->new_mode && !patch->is_delete)
3811 patch->new_mode = st_mode;
3812 return 0;
3813
3814 is_new:
3815 patch->is_new = 1;
3816 patch->is_delete = 0;
6a83d902 3817 FREE_AND_NULL(patch->old_name);
13b5af22
CC
3818 return 0;
3819}
3820
3821
3822#define EXISTS_IN_INDEX 1
3823#define EXISTS_IN_WORKTREE 2
e3cc41b4 3824#define EXISTS_IN_INDEX_AS_ITA 3
13b5af22
CC
3825
3826static int check_to_create(struct apply_state *state,
3827 const char *new_name,
3828 int ok_if_exists)
3829{
3830 struct stat nst;
3831
e3cc41b4
RP
3832 if (state->check_index && (!ok_if_exists || !state->cached)) {
3833 int pos;
3834
3835 pos = index_name_pos(state->repo->index, new_name, strlen(new_name));
3836 if (pos >= 0) {
3837 struct cache_entry *ce = state->repo->index->cache[pos];
3838
3839 /* allow ITA, as they do not yet exist in the index */
3840 if (!ok_if_exists && !(ce->ce_flags & CE_INTENT_TO_ADD))
3841 return EXISTS_IN_INDEX;
3842
3843 /* ITA entries can never match working tree files */
3844 if (!state->cached && (ce->ce_flags & CE_INTENT_TO_ADD))
3845 return EXISTS_IN_INDEX_AS_ITA;
3846 }
7cfde3fa
RP
3847 }
3848
13b5af22
CC
3849 if (state->cached)
3850 return 0;
3851
3852 if (!lstat(new_name, &nst)) {
3853 if (S_ISDIR(nst.st_mode) || ok_if_exists)
3854 return 0;
3855 /*
3856 * A leading component of new_name might be a symlink
3857 * that is going to be removed with this patch, but
3858 * still pointing at somewhere that has the path.
3859 * In such a case, path "new_name" does not exist as
3860 * far as git is concerned.
3861 */
3862 if (has_symlink_leading_path(new_name, strlen(new_name)))
3863 return 0;
3864
3865 return EXISTS_IN_WORKTREE;
c7054209 3866 } else if (!is_missing_file_error(errno)) {
90875eca 3867 return error_errno("%s", new_name);
13b5af22
CC
3868 }
3869 return 0;
3870}
3871
13b5af22
CC
3872static void prepare_symlink_changes(struct apply_state *state, struct patch *patch)
3873{
3874 for ( ; patch; patch = patch->next) {
3875 if ((patch->old_name && S_ISLNK(patch->old_mode)) &&
3876 (patch->is_rename || patch->is_delete))
3877 /* the symlink at patch->old_name is removed */
4e9a3252 3878 strset_add(&state->removed_symlinks, patch->old_name);
13b5af22
CC
3879
3880 if (patch->new_name && S_ISLNK(patch->new_mode))
3881 /* the symlink at patch->new_name is created or remains */
4e9a3252 3882 strset_add(&state->kept_symlinks, patch->new_name);
13b5af22
CC
3883 }
3884}
3885
3886static int path_is_beyond_symlink_1(struct apply_state *state, struct strbuf *name)
3887{
3888 do {
13b5af22
CC
3889 while (--name->len && name->buf[name->len] != '/')
3890 ; /* scan backwards */
3891 if (!name->len)
3892 break;
3893 name->buf[name->len] = '\0';
4e9a3252 3894 if (strset_contains(&state->kept_symlinks, name->buf))
13b5af22 3895 return 1;
4e9a3252 3896 if (strset_contains(&state->removed_symlinks, name->buf))
13b5af22
CC
3897 /*
3898 * This cannot be "return 0", because we may
3899 * see a new one created at a higher level.
3900 */
3901 continue;
3902
3903 /* otherwise, check the preimage */
3904 if (state->check_index) {
3905 struct cache_entry *ce;
3906
1b5c6c1e
NTND
3907 ce = index_file_exists(state->repo->index, name->buf,
3908 name->len, ignore_case);
13b5af22
CC
3909 if (ce && S_ISLNK(ce->ce_mode))
3910 return 1;
3911 } else {
3912 struct stat st;
3913 if (!lstat(name->buf, &st) && S_ISLNK(st.st_mode))
3914 return 1;
3915 }
3916 } while (1);
3917 return 0;
3918}
3919
3920static int path_is_beyond_symlink(struct apply_state *state, const char *name_)
3921{
3922 int ret;
3923 struct strbuf name = STRBUF_INIT;
3924
3925 assert(*name_ != '\0');
3926 strbuf_addstr(&name, name_);
3927 ret = path_is_beyond_symlink_1(state, &name);
3928 strbuf_release(&name);
3929
3930 return ret;
3931}
3932
3933static int check_unsafe_path(struct patch *patch)
3934{
3935 const char *old_name = NULL;
3936 const char *new_name = NULL;
3937 if (patch->is_delete)
3938 old_name = patch->old_name;
3939 else if (!patch->is_new && !patch->is_copy)
3940 old_name = patch->old_name;
3941 if (!patch->is_delete)
3942 new_name = patch->new_name;
3943
10ecfa76 3944 if (old_name && !verify_path(old_name, patch->old_mode))
13b5af22 3945 return error(_("invalid path '%s'"), old_name);
10ecfa76 3946 if (new_name && !verify_path(new_name, patch->new_mode))
13b5af22
CC
3947 return error(_("invalid path '%s'"), new_name);
3948 return 0;
3949}
3950
3951/*
3952 * Check and apply the patch in-core; leave the result in patch->result
3953 * for the caller to write it out to the final destination.
3954 */
3955static int check_patch(struct apply_state *state, struct patch *patch)
3956{
3957 struct stat st;
3958 const char *old_name = patch->old_name;
3959 const char *new_name = patch->new_name;
3960 const char *name = old_name ? old_name : new_name;
3961 struct cache_entry *ce = NULL;
3962 struct patch *tpatch;
3963 int ok_if_exists;
3964 int status;
3965
3966 patch->rejected = 1; /* we will drop this after we succeed */
3967
3968 status = check_preimage(state, patch, &ce, &st);
3969 if (status)
3970 return status;
3971 old_name = patch->old_name;
3972
3973 /*
3974 * A type-change diff is always split into a patch to delete
3975 * old, immediately followed by a patch to create new (see
3976 * diff.c::run_diff()); in such a case it is Ok that the entry
3977 * to be deleted by the previous patch is still in the working
3978 * tree and in the index.
3979 *
3980 * A patch to swap-rename between A and B would first rename A
3981 * to B and then rename B to A. While applying the first one,
3982 * the presence of B should not stop A from getting renamed to
3983 * B; ask to_be_deleted() about the later rename. Removal of
3984 * B and rename from A to B is handled the same way by asking
3985 * was_deleted().
3986 */
3987 if ((tpatch = in_fn_table(state, new_name)) &&
3988 (was_deleted(tpatch) || to_be_deleted(tpatch)))
3989 ok_if_exists = 1;
3990 else
3991 ok_if_exists = 0;
3992
3993 if (new_name &&
3994 ((0 < patch->is_new) || patch->is_rename || patch->is_copy)) {
3995 int err = check_to_create(state, new_name, ok_if_exists);
3996
3997 if (err && state->threeway) {
3998 patch->direct_to_threeway = 1;
3999 } else switch (err) {
4000 case 0:
4001 break; /* happy */
4002 case EXISTS_IN_INDEX:
4003 return error(_("%s: already exists in index"), new_name);
e3cc41b4
RP
4004 case EXISTS_IN_INDEX_AS_ITA:
4005 return error(_("%s: does not match index"), new_name);
13b5af22
CC
4006 case EXISTS_IN_WORKTREE:
4007 return error(_("%s: already exists in working directory"),
4008 new_name);
4009 default:
4010 return err;
4011 }
4012
4013 if (!patch->new_mode) {
4014 if (0 < patch->is_new)
4015 patch->new_mode = S_IFREG | 0644;
4016 else
4017 patch->new_mode = patch->old_mode;
4018 }
4019 }
4020
4021 if (new_name && old_name) {
4022 int same = !strcmp(old_name, new_name);
4023 if (!patch->new_mode)
4024 patch->new_mode = patch->old_mode;
4025 if ((patch->old_mode ^ patch->new_mode) & S_IFMT) {
4026 if (same)
4027 return error(_("new mode (%o) of %s does not "
4028 "match old mode (%o)"),
4029 patch->new_mode, new_name,
4030 patch->old_mode);
4031 else
4032 return error(_("new mode (%o) of %s does not "
4033 "match old mode (%o) of %s"),
4034 patch->new_mode, new_name,
4035 patch->old_mode, old_name);
4036 }
4037 }
4038
4039 if (!state->unsafe_paths && check_unsafe_path(patch))
4040 return -128;
4041
4042 /*
4043 * An attempt to read from or delete a path that is beyond a
4044 * symbolic link will be prevented by load_patch_target() that
4045 * is called at the beginning of apply_data() so we do not
4046 * have to worry about a patch marked with "is_delete" bit
4047 * here. We however need to make sure that the patch result
4048 * is not deposited to a path that is beyond a symbolic link
4049 * here.
4050 */
4051 if (!patch->is_delete && path_is_beyond_symlink(state, patch->new_name))
4052 return error(_("affected file '%s' is beyond a symbolic link"),
4053 patch->new_name);
4054
4055 if (apply_data(state, patch, &st, ce) < 0)
4056 return error(_("%s: patch does not apply"), name);
4057 patch->rejected = 0;
4058 return 0;
4059}
4060
4061static int check_patch_list(struct apply_state *state, struct patch *patch)
4062{
4063 int err = 0;
4064
4065 prepare_symlink_changes(state, patch);
4066 prepare_fn_table(state, patch);
4067 while (patch) {
4068 int res;
a46160d2 4069 if (state->apply_verbosity > verbosity_normal)
13b5af22
CC
4070 say_patch_name(stderr,
4071 _("Checking patch %s..."), patch);
4072 res = check_patch(state, patch);
4073 if (res == -128)
4074 return -128;
4075 err |= res;
4076 patch = patch->next;
4077 }
4078 return err;
4079}
4080
5b0b57fd
CC
4081static int read_apply_cache(struct apply_state *state)
4082{
4083 if (state->index_file)
1b5c6c1e
NTND
4084 return read_index_from(state->repo->index, state->index_file,
4085 get_git_dir());
5b0b57fd 4086 else
e1ff0a32 4087 return repo_read_index(state->repo);
5b0b57fd
CC
4088}
4089
4af9a7d3
JH
4090/* This function tries to read the object name from the current index */
4091static int get_current_oid(struct apply_state *state, const char *path,
4092 struct object_id *oid)
13b5af22
CC
4093{
4094 int pos;
4095
5b0b57fd 4096 if (read_apply_cache(state) < 0)
13b5af22 4097 return -1;
1b5c6c1e 4098 pos = index_name_pos(state->repo->index, path, strlen(path));
13b5af22
CC
4099 if (pos < 0)
4100 return -1;
1b5c6c1e 4101 oidcpy(oid, &state->repo->index->cache[pos]->oid);
13b5af22
CC
4102 return 0;
4103}
4104
4af9a7d3 4105static int preimage_oid_in_gitlink_patch(struct patch *p, struct object_id *oid)
13b5af22
CC
4106{
4107 /*
4108 * A usable gitlink patch has only one fragment (hunk) that looks like:
4109 * @@ -1 +1 @@
4110 * -Subproject commit <old sha1>
4111 * +Subproject commit <new sha1>
4112 * or
4113 * @@ -1 +0,0 @@
4114 * -Subproject commit <old sha1>
4115 * for a removal patch.
4116 */
4117 struct fragment *hunk = p->fragments;
4118 static const char heading[] = "-Subproject commit ";
4119 char *preimage;
4120
4121 if (/* does the patch have only one hunk? */
4122 hunk && !hunk->next &&
4123 /* is its preimage one line? */
4124 hunk->oldpos == 1 && hunk->oldlines == 1 &&
4125 /* does preimage begin with the heading? */
4126 (preimage = memchr(hunk->patch, '\n', hunk->size)) != NULL &&
4127 starts_with(++preimage, heading) &&
4128 /* does it record full SHA-1? */
4af9a7d3 4129 !get_oid_hex(preimage + sizeof(heading) - 1, oid) &&
93eb00f7 4130 preimage[sizeof(heading) + the_hash_algo->hexsz - 1] == '\n' &&
13b5af22 4131 /* does the abbreviated name on the index line agree with it? */
eccb5a5f 4132 starts_with(preimage + sizeof(heading) - 1, p->old_oid_prefix))
13b5af22
CC
4133 return 0; /* it all looks fine */
4134
4135 /* we may have full object name on the index line */
eccb5a5f 4136 return get_oid_hex(p->old_oid_prefix, oid);
13b5af22
CC
4137}
4138
59caacab 4139/* Build an index that contains just the files needed for a 3way merge */
b4290342 4140static int build_fake_ancestor(struct apply_state *state, struct patch *list)
13b5af22
CC
4141{
4142 struct patch *patch;
6269f8ea 4143 struct index_state result = INDEX_STATE_INIT(state->repo);
b2275868 4144 struct lock_file lock = LOCK_INIT;
13b5af22
CC
4145 int res;
4146
4147 /* Once we start supporting the reverse patch, it may be
4148 * worth showing the new sha1 prefix, but until then...
4149 */
4150 for (patch = list; patch; patch = patch->next) {
4af9a7d3 4151 struct object_id oid;
13b5af22
CC
4152 struct cache_entry *ce;
4153 const char *name;
4154
4155 name = patch->old_name ? patch->old_name : patch->new_name;
4156 if (0 < patch->is_new)
4157 continue;
4158
4159 if (S_ISGITLINK(patch->old_mode)) {
4af9a7d3 4160 if (!preimage_oid_in_gitlink_patch(patch, &oid))
13b5af22
CC
4161 ; /* ok, the textual part looks sane */
4162 else
d1d42bf5
VA
4163 return error(_("sha1 information is lacking or "
4164 "useless for submodule %s"), name);
d850b7a5 4165 } else if (!repo_get_oid_blob(the_repository, patch->old_oid_prefix, &oid)) {
13b5af22
CC
4166 ; /* ok */
4167 } else if (!patch->lines_added && !patch->lines_deleted) {
4168 /* mode-only change: update the current */
4af9a7d3 4169 if (get_current_oid(state, patch->old_name, &oid))
d1d42bf5
VA
4170 return error(_("mode change for %s, which is not "
4171 "in current HEAD"), name);
13b5af22 4172 } else
d1d42bf5
VA
4173 return error(_("sha1 information is lacking or useless "
4174 "(%s)."), name);
13b5af22 4175
a849735b 4176 ce = make_cache_entry(&result, patch->old_mode, &oid, name, 0, 0);
13b5af22
CC
4177 if (!ce)
4178 return error(_("make_cache_entry failed for path '%s'"),
4179 name);
4180 if (add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD)) {
a849735b 4181 discard_cache_entry(ce);
d1d42bf5 4182 return error(_("could not add %s to temporary index"),
13b5af22
CC
4183 name);
4184 }
4185 }
4186
b4290342 4187 hold_lock_file_for_update(&lock, state->fake_ancestor, LOCK_DIE_ON_ERROR);
13b5af22
CC
4188 res = write_locked_index(&result, &lock, COMMIT_LOCK);
4189 discard_index(&result);
4190
e294e895
JH
4191 if (res)
4192 return error(_("could not write temporary index to %s"),
4193 state->fake_ancestor);
13b5af22 4194
e294e895
JH
4195 return 0;
4196}
13b5af22 4197
e294e895
JH
4198static void stat_patch_list(struct apply_state *state, struct patch *patch)
4199{
4200 int files, adds, dels;
13b5af22 4201
e294e895
JH
4202 for (files = adds = dels = 0 ; patch ; patch = patch->next) {
4203 files++;
4204 adds += patch->lines_added;
4205 dels += patch->lines_deleted;
4206 show_stats(state, patch);
4207 }
13b5af22 4208
e294e895
JH
4209 print_stat_summary(stdout, files, adds, dels);
4210}
13b5af22 4211
e294e895
JH
4212static void numstat_patch_list(struct apply_state *state,
4213 struct patch *patch)
4214{
4215 for ( ; patch; patch = patch->next) {
4216 const char *name;
4217 name = patch->new_name ? patch->new_name : patch->old_name;
4218 if (patch->is_binary)
4219 printf("-\t-\t");
4220 else
4221 printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);
4222 write_name_quoted(name, stdout, state->line_termination);
4223 }
4224}
4225
4226static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
4227{
4228 if (mode)
4229 printf(" %s mode %06o %s\n", newdelete, mode, name);
4230 else
4231 printf(" %s %s\n", newdelete, name);
4232}
4233
4234static void show_mode_change(struct patch *p, int show_name)
4235{
4236 if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
4237 if (show_name)
4238 printf(" mode change %06o => %06o %s\n",
4239 p->old_mode, p->new_mode, p->new_name);
4240 else
4241 printf(" mode change %06o => %06o\n",
4242 p->old_mode, p->new_mode);
4243 }
4244}
4245
4246static void show_rename_copy(struct patch *p)
4247{
4248 const char *renamecopy = p->is_rename ? "rename" : "copy";
f1ae97d3 4249 const char *old_name, *new_name;
e294e895
JH
4250
4251 /* Find common prefix */
f1ae97d3
BW
4252 old_name = p->old_name;
4253 new_name = p->new_name;
e294e895
JH
4254 while (1) {
4255 const char *slash_old, *slash_new;
f1ae97d3
BW
4256 slash_old = strchr(old_name, '/');
4257 slash_new = strchr(new_name, '/');
e294e895
JH
4258 if (!slash_old ||
4259 !slash_new ||
f1ae97d3
BW
4260 slash_old - old_name != slash_new - new_name ||
4261 memcmp(old_name, new_name, slash_new - new_name))
e294e895 4262 break;
f1ae97d3
BW
4263 old_name = slash_old + 1;
4264 new_name = slash_new + 1;
e294e895 4265 }
15beaaa3
EN
4266 /* p->old_name through old_name is the common prefix, and old_name and
4267 * new_name through the end of names are renames
e294e895 4268 */
f1ae97d3 4269 if (old_name != p->old_name)
e294e895 4270 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
f1ae97d3
BW
4271 (int)(old_name - p->old_name), p->old_name,
4272 old_name, new_name, p->score);
e294e895
JH
4273 else
4274 printf(" %s %s => %s (%d%%)\n", renamecopy,
4275 p->old_name, p->new_name, p->score);
4276 show_mode_change(p, 0);
4277}
4278
4279static void summary_patch_list(struct patch *patch)
4280{
4281 struct patch *p;
4282
4283 for (p = patch; p; p = p->next) {
4284 if (p->is_new)
4285 show_file_mode_name("create", p->new_mode, p->new_name);
4286 else if (p->is_delete)
4287 show_file_mode_name("delete", p->old_mode, p->old_name);
4288 else {
4289 if (p->is_rename || p->is_copy)
4290 show_rename_copy(p);
4291 else {
4292 if (p->score) {
4293 printf(" rewrite %s (%d%%)\n",
4294 p->new_name, p->score);
4295 show_mode_change(p, 0);
4296 }
4297 else
4298 show_mode_change(p, 1);
4299 }
4300 }
4301 }
4302}
4303
4304static void patch_stats(struct apply_state *state, struct patch *patch)
4305{
4306 int lines = patch->lines_added + patch->lines_deleted;
4307
4308 if (lines > state->max_change)
4309 state->max_change = lines;
4310 if (patch->old_name) {
4311 int len = quote_c_style(patch->old_name, NULL, NULL, 0);
4312 if (!len)
4313 len = strlen(patch->old_name);
4314 if (len > state->max_len)
4315 state->max_len = len;
4316 }
4317 if (patch->new_name) {
4318 int len = quote_c_style(patch->new_name, NULL, NULL, 0);
4319 if (!len)
4320 len = strlen(patch->new_name);
4321 if (len > state->max_len)
4322 state->max_len = len;
4323 }
4324}
4325
4326static int remove_file(struct apply_state *state, struct patch *patch, int rmdir_empty)
4327{
cff5dc09 4328 if (state->update_index && !state->ita_only) {
1b5c6c1e 4329 if (remove_file_from_index(state->repo->index, patch->old_name) < 0)
e294e895
JH
4330 return error(_("unable to remove %s from index"), patch->old_name);
4331 }
4332 if (!state->cached) {
4333 if (!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {
4334 remove_path(patch->old_name);
4335 }
4336 }
4337 return 0;
4338}
4339
4340static int add_index_file(struct apply_state *state,
4341 const char *path,
4342 unsigned mode,
4343 void *buf,
4344 unsigned long size)
4345{
4346 struct stat st;
4347 struct cache_entry *ce;
4348 int namelen = strlen(path);
e294e895 4349
1b5c6c1e 4350 ce = make_empty_cache_entry(state->repo->index, namelen);
e294e895
JH
4351 memcpy(ce->name, path, namelen);
4352 ce->ce_mode = create_ce_mode(mode);
4353 ce->ce_flags = create_ce_flags(0);
4354 ce->ce_namelen = namelen;
cff5dc09
NTND
4355 if (state->ita_only) {
4356 ce->ce_flags |= CE_INTENT_TO_ADD;
4357 set_object_name_for_intent_to_add_entry(ce);
4358 } else if (S_ISGITLINK(mode)) {
e294e895
JH
4359 const char *s;
4360
4361 if (!skip_prefix(buf, "Subproject commit ", &s) ||
4362 get_oid_hex(s, &ce->oid)) {
a849735b
JM
4363 discard_cache_entry(ce);
4364 return error(_("corrupt patch for submodule %s"), path);
13b5af22
CC
4365 }
4366 } else {
4367 if (!state->cached) {
4368 if (lstat(path, &st) < 0) {
a849735b 4369 discard_cache_entry(ce);
90875eca
CC
4370 return error_errno(_("unable to stat newly "
4371 "created file '%s'"),
4372 path);
13b5af22 4373 }
d4c0a3ac 4374 fill_stat_cache_info(state->repo->index, ce, &st);
13b5af22 4375 }
c80d226a 4376 if (write_object_file(buf, size, OBJ_BLOB, &ce->oid) < 0) {
a849735b 4377 discard_cache_entry(ce);
13b5af22
CC
4378 return error(_("unable to create backing store "
4379 "for newly created file %s"), path);
4380 }
4381 }
1b5c6c1e 4382 if (add_index_entry(state->repo->index, ce, ADD_CACHE_OK_TO_ADD) < 0) {
a849735b 4383 discard_cache_entry(ce);
13b5af22
CC
4384 return error(_("unable to add cache entry for %s"), path);
4385 }
4386
4387 return 0;
4388}
4389
4390/*
4391 * Returns:
4392 * -1 if an unrecoverable error happened
4393 * 0 if everything went well
4394 * 1 if a recoverable error happened
4395 */
332a82a5
NTND
4396static int try_create_file(struct apply_state *state, const char *path,
4397 unsigned int mode, const char *buf,
4398 unsigned long size)
13b5af22
CC
4399{
4400 int fd, res;
4401 struct strbuf nbuf = STRBUF_INIT;
4402
4403 if (S_ISGITLINK(mode)) {
4404 struct stat st;
4405 if (!lstat(path, &st) && S_ISDIR(st.st_mode))
4406 return 0;
4407 return !!mkdir(path, 0777);
4408 }
4409
4410 if (has_symlinks && S_ISLNK(mode))
4411 /* Although buf:size is counted string, it also is NUL
4412 * terminated.
4413 */
4414 return !!symlink(buf, path);
4415
4416 fd = open(path, O_CREAT | O_EXCL | O_WRONLY, (mode & 0100) ? 0777 : 0666);
4417 if (fd < 0)
4418 return 1;
4419
ab90ecae 4420 if (convert_to_working_tree(state->repo->index, path, buf, size, &nbuf, NULL)) {
13b5af22
CC
4421 size = nbuf.len;
4422 buf = nbuf.buf;
4423 }
4424
4425 res = write_in_full(fd, buf, size) < 0;
4426 if (res)
4427 error_errno(_("failed to write to '%s'"), path);
4428 strbuf_release(&nbuf);
4429
4430 if (close(fd) < 0 && !res)
4431 return error_errno(_("closing file '%s'"), path);
4432
4433 return res ? -1 : 0;
4434}
4435
4436/*
4437 * We optimistically assume that the directories exist,
4438 * which is true 99% of the time anyway. If they don't,
4439 * we create them and try again.
4440 *
4441 * Returns:
4442 * -1 on error
4443 * 0 otherwise
4444 */
4445static int create_one_file(struct apply_state *state,
4446 char *path,
4447 unsigned mode,
4448 const char *buf,
4449 unsigned long size)
4450{
9126cb31 4451 char *newpath = NULL;
13b5af22
CC
4452 int res;
4453
4454 if (state->cached)
4455 return 0;
4456
fade728d
PS
4457 /*
4458 * We already try to detect whether files are beyond a symlink in our
4459 * up-front checks. But in the case where symlinks are created by any
4460 * of the intermediate hunks it can happen that our up-front checks
4461 * didn't yet see the symlink, but at the point of arriving here there
4462 * in fact is one. We thus repeat the check for symlinks here.
4463 *
4464 * Note that this does not make the up-front check obsolete as the
4465 * failure mode is different:
4466 *
4467 * - The up-front checks cause us to abort before we have written
4468 * anything into the working directory. So when we exit this way the
4469 * working directory remains clean.
4470 *
4471 * - The checks here happen in the middle of the action where we have
4472 * already started to apply the patch. The end result will be a dirty
4473 * working directory.
4474 *
4475 * Ideally, we should update the up-front checks to catch what would
4476 * happen when we apply the patch before we damage the working tree.
4477 * We have all the information necessary to do so. But for now, as a
4478 * part of embargoed security work, having this check would serve as a
4479 * reasonable first step.
4480 */
4481 if (path_is_beyond_symlink(state, path))
4482 return error(_("affected file '%s' is beyond a symbolic link"), path);
4483
332a82a5 4484 res = try_create_file(state, path, mode, buf, size);
13b5af22
CC
4485 if (res < 0)
4486 return -1;
4487 if (!res)
4488 return 0;
4489
4490 if (errno == ENOENT) {
eb3c027e 4491 if (safe_create_leading_directories_no_share(path))
13b5af22 4492 return 0;
332a82a5 4493 res = try_create_file(state, path, mode, buf, size);
13b5af22
CC
4494 if (res < 0)
4495 return -1;
4496 if (!res)
4497 return 0;
4498 }
4499
4500 if (errno == EEXIST || errno == EACCES) {
4501 /* We may be trying to create a file where a directory
4502 * used to be.
4503 */
4504 struct stat st;
4505 if (!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))
4506 errno = EEXIST;
4507 }
4508
4509 if (errno == EEXIST) {
4510 unsigned int nr = getpid();
4511
4512 for (;;) {
9126cb31 4513 newpath = mkpathdup("%s~%u", path, nr);
332a82a5 4514 res = try_create_file(state, newpath, mode, buf, size);
13b5af22 4515 if (res < 0)
9126cb31 4516 goto out;
13b5af22
CC
4517 if (!res) {
4518 if (!rename(newpath, path))
9126cb31 4519 goto out;
13b5af22
CC
4520 unlink_or_warn(newpath);
4521 break;
4522 }
4523 if (errno != EEXIST)
4524 break;
4525 ++nr;
9126cb31 4526 FREE_AND_NULL(newpath);
13b5af22
CC
4527 }
4528 }
9126cb31
RS
4529 res = error_errno(_("unable to write file '%s' mode %o"), path, mode);
4530out:
4531 free(newpath);
4532 return res;
13b5af22
CC
4533}
4534
4535static int add_conflicted_stages_file(struct apply_state *state,
4536 struct patch *patch)
4537{
4538 int stage, namelen;
a849735b 4539 unsigned mode;
13b5af22
CC
4540 struct cache_entry *ce;
4541
4542 if (!state->update_index)
4543 return 0;
4544 namelen = strlen(patch->new_name);
13b5af22
CC
4545 mode = patch->new_mode ? patch->new_mode : (S_IFREG | 0644);
4546
1b5c6c1e 4547 remove_file_from_index(state->repo->index, patch->new_name);
13b5af22
CC
4548 for (stage = 1; stage < 4; stage++) {
4549 if (is_null_oid(&patch->threeway_stage[stage - 1]))
4550 continue;
1b5c6c1e 4551 ce = make_empty_cache_entry(state->repo->index, namelen);
13b5af22
CC
4552 memcpy(ce->name, patch->new_name, namelen);
4553 ce->ce_mode = create_ce_mode(mode);
4554 ce->ce_flags = create_ce_flags(stage);
4555 ce->ce_namelen = namelen;
4af9a7d3 4556 oidcpy(&ce->oid, &patch->threeway_stage[stage - 1]);
1b5c6c1e 4557 if (add_index_entry(state->repo->index, ce, ADD_CACHE_OK_TO_ADD) < 0) {
a849735b 4558 discard_cache_entry(ce);
13b5af22
CC
4559 return error(_("unable to add cache entry for %s"),
4560 patch->new_name);
4561 }
4562 }
4563
4564 return 0;
4565}
4566
4567static int create_file(struct apply_state *state, struct patch *patch)
4568{
4569 char *path = patch->new_name;
4570 unsigned mode = patch->new_mode;
4571 unsigned long size = patch->resultsize;
4572 char *buf = patch->result;
4573
4574 if (!mode)
4575 mode = S_IFREG | 0644;
4576 if (create_one_file(state, path, mode, buf, size))
4577 return -1;
4578
4579 if (patch->conflicted_threeway)
4580 return add_conflicted_stages_file(state, patch);
cff5dc09 4581 else if (state->update_index)
13b5af22 4582 return add_index_file(state, path, mode, buf, size);
cff5dc09 4583 return 0;
13b5af22
CC
4584}
4585
4586/* phase zero is to remove, phase one is to create */
4587static int write_out_one_result(struct apply_state *state,
4588 struct patch *patch,
4589 int phase)
4590{
4591 if (patch->is_delete > 0) {
4592 if (phase == 0)
4593 return remove_file(state, patch, 1);
4594 return 0;
4595 }
4596 if (patch->is_new > 0 || patch->is_copy) {
4597 if (phase == 1)
4598 return create_file(state, patch);
4599 return 0;
4600 }
4601 /*
4602 * Rename or modification boils down to the same
4603 * thing: remove the old, write the new
4604 */
4605 if (phase == 0)
4606 return remove_file(state, patch, patch->is_rename);
4607 if (phase == 1)
4608 return create_file(state, patch);
4609 return 0;
4610}
4611
4612static int write_out_one_reject(struct apply_state *state, struct patch *patch)
4613{
4614 FILE *rej;
4615 char namebuf[PATH_MAX];
4616 struct fragment *frag;
9db05711 4617 int fd, cnt = 0;
13b5af22
CC
4618 struct strbuf sb = STRBUF_INIT;
4619
4620 for (cnt = 0, frag = patch->fragments; frag; frag = frag->next) {
4621 if (!frag->rejected)
4622 continue;
4623 cnt++;
4624 }
4625
4626 if (!cnt) {
a46160d2 4627 if (state->apply_verbosity > verbosity_normal)
13b5af22
CC
4628 say_patch_name(stderr,
4629 _("Applied patch %s cleanly."), patch);
4630 return 0;
4631 }
4632
4633 /* This should not happen, because a removal patch that leaves
4634 * contents are marked "rejected" at the patch level.
4635 */
4636 if (!patch->new_name)
4637 die(_("internal error"));
4638
4639 /* Say this even without --verbose */
4640 strbuf_addf(&sb, Q_("Applying patch %%s with %d reject...",
4641 "Applying patch %%s with %d rejects...",
4642 cnt),
4643 cnt);
a46160d2
CC
4644 if (state->apply_verbosity > verbosity_silent)
4645 say_patch_name(stderr, sb.buf, patch);
13b5af22
CC
4646 strbuf_release(&sb);
4647
4648 cnt = strlen(patch->new_name);
4649 if (ARRAY_SIZE(namebuf) <= cnt + 5) {
4650 cnt = ARRAY_SIZE(namebuf) - 5;
4651 warning(_("truncating .rej filename to %.*s.rej"),
4652 cnt - 1, patch->new_name);
4653 }
4654 memcpy(namebuf, patch->new_name, cnt);
4655 memcpy(namebuf + cnt, ".rej", 5);
4656
9db05711
JS
4657 fd = open(namebuf, O_CREAT | O_EXCL | O_WRONLY, 0666);
4658 if (fd < 0) {
4659 if (errno != EEXIST)
4660 return error_errno(_("cannot open %s"), namebuf);
4661 if (unlink(namebuf))
4662 return error_errno(_("cannot unlink '%s'"), namebuf);
4663 fd = open(namebuf, O_CREAT | O_EXCL | O_WRONLY, 0666);
4664 if (fd < 0)
4665 return error_errno(_("cannot open %s"), namebuf);
4666 }
4667 rej = fdopen(fd, "w");
2b1f456a
RS
4668 if (!rej) {
4669 error_errno(_("cannot open %s"), namebuf);
4670 close(fd);
4671 return -1;
4672 }
13b5af22
CC
4673
4674 /* Normal git tools never deal with .rej, so do not pretend
4675 * this is a git patch by saying --git or giving extended
4676 * headers. While at it, maybe please "kompare" that wants
4677 * the trailing TAB and some garbage at the end of line ;-).
4678 */
4679 fprintf(rej, "diff a/%s b/%s\t(rejected hunks)\n",
4680 patch->new_name, patch->new_name);
4681 for (cnt = 1, frag = patch->fragments;
4682 frag;
4683 cnt++, frag = frag->next) {
4684 if (!frag->rejected) {
a46160d2
CC
4685 if (state->apply_verbosity > verbosity_silent)
4686 fprintf_ln(stderr, _("Hunk #%d applied cleanly."), cnt);
13b5af22
CC
4687 continue;
4688 }
a46160d2
CC
4689 if (state->apply_verbosity > verbosity_silent)
4690 fprintf_ln(stderr, _("Rejected hunk #%d."), cnt);
13b5af22
CC
4691 fprintf(rej, "%.*s", frag->size, frag->patch);
4692 if (frag->patch[frag->size-1] != '\n')
4693 fputc('\n', rej);
4694 }
4695 fclose(rej);
4696 return -1;
4697}
4698
4699/*
4700 * Returns:
4701 * -1 if an error happened
4702 * 0 if the patch applied cleanly
4703 * 1 if the patch did not apply cleanly
4704 */
4705static int write_out_results(struct apply_state *state, struct patch *list)
4706{
4707 int phase;
4708 int errs = 0;
4709 struct patch *l;
4710 struct string_list cpath = STRING_LIST_INIT_DUP;
4711
4712 for (phase = 0; phase < 2; phase++) {
4713 l = list;
4714 while (l) {
4715 if (l->rejected)
4716 errs = 1;
4717 else {
4718 if (write_out_one_result(state, l, phase)) {
4719 string_list_clear(&cpath, 0);
4720 return -1;
4721 }
4722 if (phase == 1) {
4723 if (write_out_one_reject(state, l))
4724 errs = 1;
4725 if (l->conflicted_threeway) {
4726 string_list_append(&cpath, l->new_name);
4727 errs = 1;
4728 }
4729 }
4730 }
4731 l = l->next;
4732 }
4733 }
4734
4735 if (cpath.nr) {
4736 struct string_list_item *item;
4737
4738 string_list_sort(&cpath);
a46160d2
CC
4739 if (state->apply_verbosity > verbosity_silent) {
4740 for_each_string_list_item(item, &cpath)
4741 fprintf(stderr, "U %s\n", item->string);
4742 }
13b5af22
CC
4743 string_list_clear(&cpath, 0);
4744
c0c2a37a
JZ
4745 /*
4746 * rerere relies on the partially merged result being in the working
4747 * tree with conflict markers, but that isn't written with --cached.
4748 */
4749 if (!state->cached)
4750 repo_rerere(state->repo, 0);
13b5af22
CC
4751 }
4752
4753 return errs;
4754}
4755
4756/*
4757 * Try to apply a patch.
4758 *
4759 * Returns:
4760 * -128 if a bad error happened (like patch unreadable)
4761 * -1 if patch did not apply and user cannot deal with it
4762 * 0 if the patch applied
4763 * 1 if the patch did not apply but user might fix it
4764 */
4765static int apply_patch(struct apply_state *state,
4766 int fd,
4767 const char *filename,
4768 int options)
4769{
4770 size_t offset;
4771 struct strbuf buf = STRBUF_INIT; /* owns the patch text */
4772 struct patch *list = NULL, **listp = &list;
4773 int skipped_patch = 0;
4774 int res = 0;
2c65d90f 4775 int flush_attributes = 0;
13b5af22
CC
4776
4777 state->patch_input_file = filename;
4778 if (read_patch_file(&buf, fd) < 0)
4779 return -128;
4780 offset = 0;
4781 while (offset < buf.len) {
4782 struct patch *patch;
4783 int nr;
4784
ca56dadb 4785 CALLOC_ARRAY(patch, 1);
13b5af22
CC
4786 patch->inaccurate_eof = !!(options & APPLY_OPT_INACCURATE_EOF);
4787 patch->recount = !!(options & APPLY_OPT_RECOUNT);
4788 nr = parse_chunk(state, buf.buf + offset, buf.len - offset, patch);
4789 if (nr < 0) {
4790 free_patch(patch);
4791 if (nr == -128) {
4792 res = -128;
4793 goto end;
4794 }
4795 break;
4796 }
4797 if (state->apply_in_reverse)
4798 reverse_patches(patch);
4799 if (use_patch(state, patch)) {
4800 patch_stats(state, patch);
b0f266de
JT
4801 if (!list || !state->apply_in_reverse) {
4802 *listp = patch;
4803 listp = &patch->next;
4804 } else {
4805 patch->next = list;
4806 list = patch;
4807 }
2c65d90f 4808
4809 if ((patch->new_name &&
4810 ends_with_path_components(patch->new_name,
4811 GITATTRIBUTES_FILE)) ||
4812 (patch->old_name &&
4813 ends_with_path_components(patch->old_name,
4814 GITATTRIBUTES_FILE)))
4815 flush_attributes = 1;
13b5af22
CC
4816 }
4817 else {
a46160d2 4818 if (state->apply_verbosity > verbosity_normal)
13b5af22
CC
4819 say_patch_name(stderr, _("Skipped patch '%s'."), patch);
4820 free_patch(patch);
4821 skipped_patch++;
4822 }
4823 offset += nr;
4824 }
4825
4826 if (!list && !skipped_patch) {
324eb77e
JZ
4827 if (!state->allow_empty) {
4828 error(_("No valid patches in input (allow with \"--allow-empty\")"));
4829 res = -128;
4830 }
13b5af22
CC
4831 goto end;
4832 }
4833
4834 if (state->whitespace_error && (state->ws_error_action == die_on_ws_error))
4835 state->apply = 0;
4836
cff5dc09 4837 state->update_index = (state->check_index || state->ita_only) && state->apply;
d13cd4c9 4838 if (state->update_index && !is_lock_file_locked(&state->lock_file)) {
5b0b57fd 4839 if (state->index_file)
d13cd4c9
4840 hold_lock_file_for_update(&state->lock_file,
4841 state->index_file,
4842 LOCK_DIE_ON_ERROR);
5b0b57fd 4843 else
3a95f31d
NTND
4844 repo_hold_locked_index(state->repo, &state->lock_file,
4845 LOCK_DIE_ON_ERROR);
5b0b57fd 4846 }
13b5af22 4847
5b0b57fd 4848 if (state->check_index && read_apply_cache(state) < 0) {
13b5af22
CC
4849 error(_("unable to read index file"));
4850 res = -128;
4851 goto end;
4852 }
4853
4854 if (state->check || state->apply) {
4855 int r = check_patch_list(state, list);
4856 if (r == -128) {
4857 res = -128;
4858 goto end;
4859 }
4860 if (r < 0 && !state->apply_with_reject) {
4861 res = -1;
4862 goto end;
4863 }
4864 }
4865
4866 if (state->apply) {
4867 int write_res = write_out_results(state, list);
4868 if (write_res < 0) {
4869 res = -128;
4870 goto end;
4871 }
4872 if (write_res > 0) {
4873 /* with --3way, we still need to write the index out */
4874 res = state->apply_with_reject ? -1 : 1;
4875 goto end;
4876 }
4877 }
4878
4879 if (state->fake_ancestor &&
b4290342 4880 build_fake_ancestor(state, list)) {
13b5af22
CC
4881 res = -128;
4882 goto end;
4883 }
4884
487beee0 4885 if (state->diffstat && state->apply_verbosity > verbosity_silent)
13b5af22
CC
4886 stat_patch_list(state, list);
4887
487beee0 4888 if (state->numstat && state->apply_verbosity > verbosity_silent)
13b5af22
CC
4889 numstat_patch_list(state, list);
4890
487beee0 4891 if (state->summary && state->apply_verbosity > verbosity_silent)
13b5af22
CC
4892 summary_patch_list(list);
4893
2c65d90f 4894 if (flush_attributes)
4895 reset_parsed_attributes();
13b5af22
CC
4896end:
4897 free_patch_list(list);
4898 strbuf_release(&buf);
4899 string_list_clear(&state->fn_table, 0);
4900 return res;
4901}
4902
7e1bad24
CC
4903static int apply_option_parse_exclude(const struct option *opt,
4904 const char *arg, int unset)
13b5af22
CC
4905{
4906 struct apply_state *state = opt->value;
517fe807
JK
4907
4908 BUG_ON_OPT_NEG(unset);
4909
13b5af22
CC
4910 add_name_limit(state, arg, 1);
4911 return 0;
4912}
4913
7e1bad24
CC
4914static int apply_option_parse_include(const struct option *opt,
4915 const char *arg, int unset)
13b5af22
CC
4916{
4917 struct apply_state *state = opt->value;
517fe807
JK
4918
4919 BUG_ON_OPT_NEG(unset);
4920
13b5af22
CC
4921 add_name_limit(state, arg, 0);
4922 state->has_include = 1;
4923 return 0;
4924}
4925
7e1bad24
CC
4926static int apply_option_parse_p(const struct option *opt,
4927 const char *arg,
4928 int unset)
13b5af22
CC
4929{
4930 struct apply_state *state = opt->value;
517fe807
JK
4931
4932 BUG_ON_OPT_NEG(unset);
4933
13b5af22
CC
4934 state->p_value = atoi(arg);
4935 state->p_value_known = 1;
4936 return 0;
4937}
4938
7e1bad24
CC
4939static int apply_option_parse_space_change(const struct option *opt,
4940 const char *arg, int unset)
13b5af22
CC
4941{
4942 struct apply_state *state = opt->value;
517fe807
JK
4943
4944 BUG_ON_OPT_ARG(arg);
4945
13b5af22
CC
4946 if (unset)
4947 state->ws_ignore_action = ignore_ws_none;
4948 else
4949 state->ws_ignore_action = ignore_ws_change;
4950 return 0;
4951}
4952
7e1bad24
CC
4953static int apply_option_parse_whitespace(const struct option *opt,
4954 const char *arg, int unset)
13b5af22
CC
4955{
4956 struct apply_state *state = opt->value;
517fe807
JK
4957
4958 BUG_ON_OPT_NEG(unset);
4959
13b5af22
CC
4960 state->whitespace_option = arg;
4961 if (parse_whitespace_option(state, arg))
735ca208 4962 return -1;
13b5af22
CC
4963 return 0;
4964}
4965
7e1bad24
CC
4966static int apply_option_parse_directory(const struct option *opt,
4967 const char *arg, int unset)
13b5af22
CC
4968{
4969 struct apply_state *state = opt->value;
517fe807
JK
4970
4971 BUG_ON_OPT_NEG(unset);
4972
13b5af22
CC
4973 strbuf_reset(&state->root);
4974 strbuf_addstr(&state->root, arg);
4975 strbuf_complete(&state->root, '/');
4976 return 0;
4977}
4978
4979int apply_all_patches(struct apply_state *state,
4980 int argc,
4981 const char **argv,
4982 int options)
4983{
4984 int i;
4985 int res;
4986 int errs = 0;
4987 int read_stdin = 1;
4988
4989 for (i = 0; i < argc; i++) {
4990 const char *arg = argv[i];
e4da43b1 4991 char *to_free = NULL;
13b5af22
CC
4992 int fd;
4993
4994 if (!strcmp(arg, "-")) {
4995 res = apply_patch(state, 0, "<stdin>", options);
4996 if (res < 0)
4997 goto end;
4998 errs |= res;
4999 read_stdin = 0;
5000 continue;
e4da43b1
JK
5001 } else
5002 arg = to_free = prefix_filename(state->prefix, arg);
13b5af22
CC
5003
5004 fd = open(arg, O_RDONLY);
5005 if (fd < 0) {
5006 error(_("can't open patch '%s': %s"), arg, strerror(errno));
5007 res = -128;
e4da43b1 5008 free(to_free);
13b5af22
CC
5009 goto end;
5010 }
5011 read_stdin = 0;
5012 set_default_whitespace_mode(state);
5013 res = apply_patch(state, fd, arg, options);
5014 close(fd);
e4da43b1 5015 free(to_free);
13b5af22
CC
5016 if (res < 0)
5017 goto end;
5018 errs |= res;
5019 }
5020 set_default_whitespace_mode(state);
5021 if (read_stdin) {
5022 res = apply_patch(state, 0, "<stdin>", options);
5023 if (res < 0)
5024 goto end;
5025 errs |= res;
5026 }
5027
5028 if (state->whitespace_error) {
5029 if (state->squelch_whitespace_errors &&
5030 state->squelch_whitespace_errors < state->whitespace_error) {
5031 int squelched =
5032 state->whitespace_error - state->squelch_whitespace_errors;
5033 warning(Q_("squelched %d whitespace error",
5034 "squelched %d whitespace errors",
5035 squelched),
5036 squelched);
5037 }
5038 if (state->ws_error_action == die_on_ws_error) {
5039 error(Q_("%d line adds whitespace errors.",
5040 "%d lines add whitespace errors.",
5041 state->whitespace_error),
5042 state->whitespace_error);
5043 res = -128;
5044 goto end;
5045 }
5046 if (state->applied_after_fixing_ws && state->apply)
965d5c85
VA
5047 warning(Q_("%d line applied after"
5048 " fixing whitespace errors.",
5049 "%d lines applied after"
5050 " fixing whitespace errors.",
5051 state->applied_after_fixing_ws),
5052 state->applied_after_fixing_ws);
13b5af22
CC
5053 else if (state->whitespace_error)
5054 warning(Q_("%d line adds whitespace errors.",
5055 "%d lines add whitespace errors.",
5056 state->whitespace_error),
5057 state->whitespace_error);
5058 }
5059
5060 if (state->update_index) {
1b5c6c1e 5061 res = write_locked_index(state->repo->index, &state->lock_file, COMMIT_LOCK);
13b5af22
CC
5062 if (res) {
5063 error(_("Unable to write new index file"));
5064 res = -128;
5065 goto end;
5066 }
13b5af22
CC
5067 }
5068
45b78d8b 5069 res = !!errs;
13b5af22
CC
5070
5071end:
d13cd4c9 5072 rollback_lock_file(&state->lock_file);
13b5af22 5073
45b78d8b
CC
5074 if (state->apply_verbosity <= verbosity_silent) {
5075 set_error_routine(state->saved_error_routine);
5076 set_warn_routine(state->saved_warn_routine);
5077 }
5078
5079 if (res > -1)
5080 return res;
13b5af22
CC
5081 return (res == -1 ? 1 : 128);
5082}
7e1bad24
CC
5083
5084int apply_parse_options(int argc, const char **argv,
5085 struct apply_state *state,
5086 int *force_apply, int *options,
5087 const char * const *apply_usage)
5088{
5089 struct option builtin_apply_options[] = {
203c8533 5090 OPT_CALLBACK_F(0, "exclude", state, N_("path"),
7e1bad24 5091 N_("don't apply changes matching the given path"),
203c8533
DL
5092 PARSE_OPT_NONEG, apply_option_parse_exclude),
5093 OPT_CALLBACK_F(0, "include", state, N_("path"),
7e1bad24 5094 N_("apply changes matching the given path"),
203c8533
DL
5095 PARSE_OPT_NONEG, apply_option_parse_include),
5096 OPT_CALLBACK('p', NULL, state, N_("num"),
7e1bad24 5097 N_("remove <num> leading slashes from traditional diff paths"),
203c8533 5098 apply_option_parse_p),
7e1bad24
CC
5099 OPT_BOOL(0, "no-add", &state->no_add,
5100 N_("ignore additions made by the patch")),
5101 OPT_BOOL(0, "stat", &state->diffstat,
5102 N_("instead of applying the patch, output diffstat for the input")),
5103 OPT_NOOP_NOARG(0, "allow-binary-replacement"),
5104 OPT_NOOP_NOARG(0, "binary"),
5105 OPT_BOOL(0, "numstat", &state->numstat,
5106 N_("show number of added and deleted lines in decimal notation")),
5107 OPT_BOOL(0, "summary", &state->summary,
5108 N_("instead of applying the patch, output a summary for the input")),
5109 OPT_BOOL(0, "check", &state->check,
5110 N_("instead of applying the patch, see if the patch is applicable")),
5111 OPT_BOOL(0, "index", &state->check_index,
5112 N_("make sure the patch is applicable to the current index")),
cff5dc09
NTND
5113 OPT_BOOL('N', "intent-to-add", &state->ita_only,
5114 N_("mark new files with `git add --intent-to-add`")),
7e1bad24
CC
5115 OPT_BOOL(0, "cached", &state->cached,
5116 N_("apply a patch without touching the working tree")),
b8e9d662
NTND
5117 OPT_BOOL_F(0, "unsafe-paths", &state->unsafe_paths,
5118 N_("accept a patch that touches outside the working area"),
5119 PARSE_OPT_NOCOMPLETE),
7e1bad24
CC
5120 OPT_BOOL(0, "apply", force_apply,
5121 N_("also apply the patch (use with --stat/--summary/--check)")),
5122 OPT_BOOL('3', "3way", &state->threeway,
923cd87a 5123 N_( "attempt three-way merge, fall back on normal patch if that fails")),
7e1bad24
CC
5124 OPT_FILENAME(0, "build-fake-ancestor", &state->fake_ancestor,
5125 N_("build a temporary index based on embedded index information")),
5126 /* Think twice before adding "--nul" synonym to this */
5127 OPT_SET_INT('z', NULL, &state->line_termination,
5128 N_("paths are separated with NUL character"), '\0'),
5129 OPT_INTEGER('C', NULL, &state->p_context,
5130 N_("ensure at least <n> lines of context match")),
203c8533 5131 OPT_CALLBACK(0, "whitespace", state, N_("action"),
7e1bad24 5132 N_("detect new or modified lines that have whitespace errors"),
203c8533
DL
5133 apply_option_parse_whitespace),
5134 OPT_CALLBACK_F(0, "ignore-space-change", state, NULL,
7e1bad24 5135 N_("ignore changes in whitespace when finding context"),
203c8533
DL
5136 PARSE_OPT_NOARG, apply_option_parse_space_change),
5137 OPT_CALLBACK_F(0, "ignore-whitespace", state, NULL,
7e1bad24 5138 N_("ignore changes in whitespace when finding context"),
203c8533 5139 PARSE_OPT_NOARG, apply_option_parse_space_change),
7e1bad24
CC
5140 OPT_BOOL('R', "reverse", &state->apply_in_reverse,
5141 N_("apply the patch in reverse")),
5142 OPT_BOOL(0, "unidiff-zero", &state->unidiff_zero,
5143 N_("don't expect at least one line of context")),
5144 OPT_BOOL(0, "reject", &state->apply_with_reject,
5145 N_("leave the rejected hunks in corresponding *.rej files")),
5146 OPT_BOOL(0, "allow-overlap", &state->allow_overlap,
5147 N_("allow overlapping hunks")),
c21b8ae8 5148 OPT__VERBOSITY(&state->apply_verbosity),
7e1bad24
CC
5149 OPT_BIT(0, "inaccurate-eof", options,
5150 N_("tolerate incorrectly detected missing new-line at the end of file"),
5151 APPLY_OPT_INACCURATE_EOF),
5152 OPT_BIT(0, "recount", options,
5153 N_("do not trust the line counts in the hunk headers"),
5154 APPLY_OPT_RECOUNT),
203c8533 5155 OPT_CALLBACK(0, "directory", state, N_("root"),
7e1bad24 5156 N_("prepend <root> to all filenames"),
203c8533 5157 apply_option_parse_directory),
324eb77e
JZ
5158 OPT_BOOL(0, "allow-empty", &state->allow_empty,
5159 N_("don't return error for empty patches")),
7e1bad24
CC
5160 OPT_END()
5161 };
5162
5163 return parse_options(argc, argv, state->prefix, builtin_apply_options, apply_usage, 0);
5164}