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