apply: file commited with CRLF should roundtrip diff and apply
[git.git] / apply.c
blob66c68f193a5e1dd35d3540144ec698bf5ce49634
1 /*
2 * apply.c
4 * Copyright (C) Linus Torvalds, 2005
6 * This applies patches on top of some (arbitrary) version of the SCM.
8 */
10 #include "cache.h"
11 #include "config.h"
12 #include "blob.h"
13 #include "delta.h"
14 #include "diff.h"
15 #include "dir.h"
16 #include "xdiff-interface.h"
17 #include "ll-merge.h"
18 #include "lockfile.h"
19 #include "parse-options.h"
20 #include "quote.h"
21 #include "rerere.h"
22 #include "apply.h"
24 static void git_apply_config(void)
26 git_config_get_string_const("apply.whitespace", &apply_default_whitespace);
27 git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace);
28 git_config(git_default_config, NULL);
31 static int parse_whitespace_option(struct apply_state *state, const char *option)
33 if (!option) {
34 state->ws_error_action = warn_on_ws_error;
35 return 0;
37 if (!strcmp(option, "warn")) {
38 state->ws_error_action = warn_on_ws_error;
39 return 0;
41 if (!strcmp(option, "nowarn")) {
42 state->ws_error_action = nowarn_ws_error;
43 return 0;
45 if (!strcmp(option, "error")) {
46 state->ws_error_action = die_on_ws_error;
47 return 0;
49 if (!strcmp(option, "error-all")) {
50 state->ws_error_action = die_on_ws_error;
51 state->squelch_whitespace_errors = 0;
52 return 0;
54 if (!strcmp(option, "strip") || !strcmp(option, "fix")) {
55 state->ws_error_action = correct_ws_error;
56 return 0;
58 return error(_("unrecognized whitespace option '%s'"), option);
61 static int parse_ignorewhitespace_option(struct apply_state *state,
62 const char *option)
64 if (!option || !strcmp(option, "no") ||
65 !strcmp(option, "false") || !strcmp(option, "never") ||
66 !strcmp(option, "none")) {
67 state->ws_ignore_action = ignore_ws_none;
68 return 0;
70 if (!strcmp(option, "change")) {
71 state->ws_ignore_action = ignore_ws_change;
72 return 0;
74 return error(_("unrecognized whitespace ignore option '%s'"), option);
77 int init_apply_state(struct apply_state *state,
78 const char *prefix,
79 struct lock_file *lock_file)
81 memset(state, 0, sizeof(*state));
82 state->prefix = prefix;
83 state->prefix_length = state->prefix ? strlen(state->prefix) : 0;
84 state->lock_file = lock_file;
85 state->newfd = -1;
86 state->apply = 1;
87 state->line_termination = '\n';
88 state->p_value = 1;
89 state->p_context = UINT_MAX;
90 state->squelch_whitespace_errors = 5;
91 state->ws_error_action = warn_on_ws_error;
92 state->ws_ignore_action = ignore_ws_none;
93 state->linenr = 1;
94 string_list_init(&state->fn_table, 0);
95 string_list_init(&state->limit_by_name, 0);
96 string_list_init(&state->symlink_changes, 0);
97 strbuf_init(&state->root, 0);
99 git_apply_config();
100 if (apply_default_whitespace && parse_whitespace_option(state, apply_default_whitespace))
101 return -1;
102 if (apply_default_ignorewhitespace && parse_ignorewhitespace_option(state, apply_default_ignorewhitespace))
103 return -1;
104 return 0;
107 void clear_apply_state(struct apply_state *state)
109 string_list_clear(&state->limit_by_name, 0);
110 string_list_clear(&state->symlink_changes, 0);
111 strbuf_release(&state->root);
113 /* &state->fn_table is cleared at the end of apply_patch() */
116 static void mute_routine(const char *msg, va_list params)
118 /* do nothing */
121 int check_apply_state(struct apply_state *state, int force_apply)
123 int is_not_gitdir = !startup_info->have_repository;
125 if (state->apply_with_reject && state->threeway)
126 return error(_("--reject and --3way cannot be used together."));
127 if (state->cached && state->threeway)
128 return error(_("--cached and --3way cannot be used together."));
129 if (state->threeway) {
130 if (is_not_gitdir)
131 return error(_("--3way outside a repository"));
132 state->check_index = 1;
134 if (state->apply_with_reject) {
135 state->apply = 1;
136 if (state->apply_verbosity == verbosity_normal)
137 state->apply_verbosity = verbosity_verbose;
139 if (!force_apply && (state->diffstat || state->numstat || state->summary || state->check || state->fake_ancestor))
140 state->apply = 0;
141 if (state->check_index && is_not_gitdir)
142 return error(_("--index outside a repository"));
143 if (state->cached) {
144 if (is_not_gitdir)
145 return error(_("--cached outside a repository"));
146 state->check_index = 1;
148 if (state->check_index)
149 state->unsafe_paths = 0;
150 if (!state->lock_file)
151 return error("BUG: state->lock_file should not be NULL");
153 if (state->apply_verbosity <= verbosity_silent) {
154 state->saved_error_routine = get_error_routine();
155 state->saved_warn_routine = get_warn_routine();
156 set_error_routine(mute_routine);
157 set_warn_routine(mute_routine);
160 return 0;
163 static void set_default_whitespace_mode(struct apply_state *state)
165 if (!state->whitespace_option && !apply_default_whitespace)
166 state->ws_error_action = (state->apply ? warn_on_ws_error : nowarn_ws_error);
170 * This represents one "hunk" from a patch, starting with
171 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The
172 * patch text is pointed at by patch, and its byte length
173 * is stored in size. leading and trailing are the number
174 * of context lines.
176 struct fragment {
177 unsigned long leading, trailing;
178 unsigned long oldpos, oldlines;
179 unsigned long newpos, newlines;
181 * 'patch' is usually borrowed from buf in apply_patch(),
182 * but some codepaths store an allocated buffer.
184 const char *patch;
185 unsigned free_patch:1,
186 rejected:1;
187 int size;
188 int linenr;
189 struct fragment *next;
193 * When dealing with a binary patch, we reuse "leading" field
194 * to store the type of the binary hunk, either deflated "delta"
195 * or deflated "literal".
197 #define binary_patch_method leading
198 #define BINARY_DELTA_DEFLATED 1
199 #define BINARY_LITERAL_DEFLATED 2
202 * This represents a "patch" to a file, both metainfo changes
203 * such as creation/deletion, filemode and content changes represented
204 * as a series of fragments.
206 struct patch {
207 char *new_name, *old_name, *def_name;
208 unsigned int old_mode, new_mode;
209 int is_new, is_delete; /* -1 = unknown, 0 = false, 1 = true */
210 int rejected;
211 unsigned ws_rule;
212 int lines_added, lines_deleted;
213 int score;
214 int extension_linenr; /* first line specifying delete/new/rename/copy */
215 unsigned int is_toplevel_relative:1;
216 unsigned int inaccurate_eof:1;
217 unsigned int is_binary:1;
218 unsigned int is_copy:1;
219 unsigned int is_rename:1;
220 unsigned int recount:1;
221 unsigned int conflicted_threeway:1;
222 unsigned int direct_to_threeway:1;
223 unsigned int crlf_in_old:1;
224 struct fragment *fragments;
225 char *result;
226 size_t resultsize;
227 char old_sha1_prefix[41];
228 char new_sha1_prefix[41];
229 struct patch *next;
231 /* three-way fallback result */
232 struct object_id threeway_stage[3];
235 static void free_fragment_list(struct fragment *list)
237 while (list) {
238 struct fragment *next = list->next;
239 if (list->free_patch)
240 free((char *)list->patch);
241 free(list);
242 list = next;
246 static void free_patch(struct patch *patch)
248 free_fragment_list(patch->fragments);
249 free(patch->def_name);
250 free(patch->old_name);
251 free(patch->new_name);
252 free(patch->result);
253 free(patch);
256 static void free_patch_list(struct patch *list)
258 while (list) {
259 struct patch *next = list->next;
260 free_patch(list);
261 list = next;
266 * A line in a file, len-bytes long (includes the terminating LF,
267 * except for an incomplete line at the end if the file ends with
268 * one), and its contents hashes to 'hash'.
270 struct line {
271 size_t len;
272 unsigned hash : 24;
273 unsigned flag : 8;
274 #define LINE_COMMON 1
275 #define LINE_PATCHED 2
279 * This represents a "file", which is an array of "lines".
281 struct image {
282 char *buf;
283 size_t len;
284 size_t nr;
285 size_t alloc;
286 struct line *line_allocated;
287 struct line *line;
290 static uint32_t hash_line(const char *cp, size_t len)
292 size_t i;
293 uint32_t h;
294 for (i = 0, h = 0; i < len; i++) {
295 if (!isspace(cp[i])) {
296 h = h * 3 + (cp[i] & 0xff);
299 return h;
303 * Compare lines s1 of length n1 and s2 of length n2, ignoring
304 * whitespace difference. Returns 1 if they match, 0 otherwise
306 static int fuzzy_matchlines(const char *s1, size_t n1,
307 const char *s2, size_t n2)
309 const char *last1 = s1 + n1 - 1;
310 const char *last2 = s2 + n2 - 1;
311 int result = 0;
313 /* ignore line endings */
314 while ((*last1 == '\r') || (*last1 == '\n'))
315 last1--;
316 while ((*last2 == '\r') || (*last2 == '\n'))
317 last2--;
319 /* skip leading whitespaces, if both begin with whitespace */
320 if (s1 <= last1 && s2 <= last2 && isspace(*s1) && isspace(*s2)) {
321 while (isspace(*s1) && (s1 <= last1))
322 s1++;
323 while (isspace(*s2) && (s2 <= last2))
324 s2++;
326 /* early return if both lines are empty */
327 if ((s1 > last1) && (s2 > last2))
328 return 1;
329 while (!result) {
330 result = *s1++ - *s2++;
332 * Skip whitespace inside. We check for whitespace on
333 * both buffers because we don't want "a b" to match
334 * "ab"
336 if (isspace(*s1) && isspace(*s2)) {
337 while (isspace(*s1) && s1 <= last1)
338 s1++;
339 while (isspace(*s2) && s2 <= last2)
340 s2++;
343 * If we reached the end on one side only,
344 * lines don't match
346 if (
347 ((s2 > last2) && (s1 <= last1)) ||
348 ((s1 > last1) && (s2 <= last2)))
349 return 0;
350 if ((s1 > last1) && (s2 > last2))
351 break;
354 return !result;
357 static void add_line_info(struct image *img, const char *bol, size_t len, unsigned flag)
359 ALLOC_GROW(img->line_allocated, img->nr + 1, img->alloc);
360 img->line_allocated[img->nr].len = len;
361 img->line_allocated[img->nr].hash = hash_line(bol, len);
362 img->line_allocated[img->nr].flag = flag;
363 img->nr++;
367 * "buf" has the file contents to be patched (read from various sources).
368 * attach it to "image" and add line-based index to it.
369 * "image" now owns the "buf".
371 static void prepare_image(struct image *image, char *buf, size_t len,
372 int prepare_linetable)
374 const char *cp, *ep;
376 memset(image, 0, sizeof(*image));
377 image->buf = buf;
378 image->len = len;
380 if (!prepare_linetable)
381 return;
383 ep = image->buf + image->len;
384 cp = image->buf;
385 while (cp < ep) {
386 const char *next;
387 for (next = cp; next < ep && *next != '\n'; next++)
389 if (next < ep)
390 next++;
391 add_line_info(image, cp, next - cp, 0);
392 cp = next;
394 image->line = image->line_allocated;
397 static void clear_image(struct image *image)
399 free(image->buf);
400 free(image->line_allocated);
401 memset(image, 0, sizeof(*image));
404 /* fmt must contain _one_ %s and no other substitution */
405 static void say_patch_name(FILE *output, const char *fmt, struct patch *patch)
407 struct strbuf sb = STRBUF_INIT;
409 if (patch->old_name && patch->new_name &&
410 strcmp(patch->old_name, patch->new_name)) {
411 quote_c_style(patch->old_name, &sb, NULL, 0);
412 strbuf_addstr(&sb, " => ");
413 quote_c_style(patch->new_name, &sb, NULL, 0);
414 } else {
415 const char *n = patch->new_name;
416 if (!n)
417 n = patch->old_name;
418 quote_c_style(n, &sb, NULL, 0);
420 fprintf(output, fmt, sb.buf);
421 fputc('\n', output);
422 strbuf_release(&sb);
425 #define SLOP (16)
427 static int read_patch_file(struct strbuf *sb, int fd)
429 if (strbuf_read(sb, fd, 0) < 0)
430 return error_errno("git apply: failed to read");
433 * Make sure that we have some slop in the buffer
434 * so that we can do speculative "memcmp" etc, and
435 * see to it that it is NUL-filled.
437 strbuf_grow(sb, SLOP);
438 memset(sb->buf + sb->len, 0, SLOP);
439 return 0;
442 static unsigned long linelen(const char *buffer, unsigned long size)
444 unsigned long len = 0;
445 while (size--) {
446 len++;
447 if (*buffer++ == '\n')
448 break;
450 return len;
453 static int is_dev_null(const char *str)
455 return skip_prefix(str, "/dev/null", &str) && isspace(*str);
458 #define TERM_SPACE 1
459 #define TERM_TAB 2
461 static int name_terminate(int c, int terminate)
463 if (c == ' ' && !(terminate & TERM_SPACE))
464 return 0;
465 if (c == '\t' && !(terminate & TERM_TAB))
466 return 0;
468 return 1;
471 /* remove double slashes to make --index work with such filenames */
472 static char *squash_slash(char *name)
474 int i = 0, j = 0;
476 if (!name)
477 return NULL;
479 while (name[i]) {
480 if ((name[j++] = name[i++]) == '/')
481 while (name[i] == '/')
482 i++;
484 name[j] = '\0';
485 return name;
488 static char *find_name_gnu(struct apply_state *state,
489 const char *line,
490 const char *def,
491 int p_value)
493 struct strbuf name = STRBUF_INIT;
494 char *cp;
497 * Proposed "new-style" GNU patch/diff format; see
498 * http://marc.info/?l=git&m=112927316408690&w=2
500 if (unquote_c_style(&name, line, NULL)) {
501 strbuf_release(&name);
502 return NULL;
505 for (cp = name.buf; p_value; p_value--) {
506 cp = strchr(cp, '/');
507 if (!cp) {
508 strbuf_release(&name);
509 return NULL;
511 cp++;
514 strbuf_remove(&name, 0, cp - name.buf);
515 if (state->root.len)
516 strbuf_insert(&name, 0, state->root.buf, state->root.len);
517 return squash_slash(strbuf_detach(&name, NULL));
520 static size_t sane_tz_len(const char *line, size_t len)
522 const char *tz, *p;
524 if (len < strlen(" +0500") || line[len-strlen(" +0500")] != ' ')
525 return 0;
526 tz = line + len - strlen(" +0500");
528 if (tz[1] != '+' && tz[1] != '-')
529 return 0;
531 for (p = tz + 2; p != line + len; p++)
532 if (!isdigit(*p))
533 return 0;
535 return line + len - tz;
538 static size_t tz_with_colon_len(const char *line, size_t len)
540 const char *tz, *p;
542 if (len < strlen(" +08:00") || line[len - strlen(":00")] != ':')
543 return 0;
544 tz = line + len - strlen(" +08:00");
546 if (tz[0] != ' ' || (tz[1] != '+' && tz[1] != '-'))
547 return 0;
548 p = tz + 2;
549 if (!isdigit(*p++) || !isdigit(*p++) || *p++ != ':' ||
550 !isdigit(*p++) || !isdigit(*p++))
551 return 0;
553 return line + len - tz;
556 static size_t date_len(const char *line, size_t len)
558 const char *date, *p;
560 if (len < strlen("72-02-05") || line[len-strlen("-05")] != '-')
561 return 0;
562 p = date = line + len - strlen("72-02-05");
564 if (!isdigit(*p++) || !isdigit(*p++) || *p++ != '-' ||
565 !isdigit(*p++) || !isdigit(*p++) || *p++ != '-' ||
566 !isdigit(*p++) || !isdigit(*p++)) /* Not a date. */
567 return 0;
569 if (date - line >= strlen("19") &&
570 isdigit(date[-1]) && isdigit(date[-2])) /* 4-digit year */
571 date -= strlen("19");
573 return line + len - date;
576 static size_t short_time_len(const char *line, size_t len)
578 const char *time, *p;
580 if (len < strlen(" 07:01:32") || line[len-strlen(":32")] != ':')
581 return 0;
582 p = time = line + len - strlen(" 07:01:32");
584 /* Permit 1-digit hours? */
585 if (*p++ != ' ' ||
586 !isdigit(*p++) || !isdigit(*p++) || *p++ != ':' ||
587 !isdigit(*p++) || !isdigit(*p++) || *p++ != ':' ||
588 !isdigit(*p++) || !isdigit(*p++)) /* Not a time. */
589 return 0;
591 return line + len - time;
594 static size_t fractional_time_len(const char *line, size_t len)
596 const char *p;
597 size_t n;
599 /* Expected format: 19:41:17.620000023 */
600 if (!len || !isdigit(line[len - 1]))
601 return 0;
602 p = line + len - 1;
604 /* Fractional seconds. */
605 while (p > line && isdigit(*p))
606 p--;
607 if (*p != '.')
608 return 0;
610 /* Hours, minutes, and whole seconds. */
611 n = short_time_len(line, p - line);
612 if (!n)
613 return 0;
615 return line + len - p + n;
618 static size_t trailing_spaces_len(const char *line, size_t len)
620 const char *p;
622 /* Expected format: ' ' x (1 or more) */
623 if (!len || line[len - 1] != ' ')
624 return 0;
626 p = line + len;
627 while (p != line) {
628 p--;
629 if (*p != ' ')
630 return line + len - (p + 1);
633 /* All spaces! */
634 return len;
637 static size_t diff_timestamp_len(const char *line, size_t len)
639 const char *end = line + len;
640 size_t n;
643 * Posix: 2010-07-05 19:41:17
644 * GNU: 2010-07-05 19:41:17.620000023 -0500
647 if (!isdigit(end[-1]))
648 return 0;
650 n = sane_tz_len(line, end - line);
651 if (!n)
652 n = tz_with_colon_len(line, end - line);
653 end -= n;
655 n = short_time_len(line, end - line);
656 if (!n)
657 n = fractional_time_len(line, end - line);
658 end -= n;
660 n = date_len(line, end - line);
661 if (!n) /* No date. Too bad. */
662 return 0;
663 end -= n;
665 if (end == line) /* No space before date. */
666 return 0;
667 if (end[-1] == '\t') { /* Success! */
668 end--;
669 return line + len - end;
671 if (end[-1] != ' ') /* No space before date. */
672 return 0;
674 /* Whitespace damage. */
675 end -= trailing_spaces_len(line, end - line);
676 return line + len - end;
679 static char *find_name_common(struct apply_state *state,
680 const char *line,
681 const char *def,
682 int p_value,
683 const char *end,
684 int terminate)
686 int len;
687 const char *start = NULL;
689 if (p_value == 0)
690 start = line;
691 while (line != end) {
692 char c = *line;
694 if (!end && isspace(c)) {
695 if (c == '\n')
696 break;
697 if (name_terminate(c, terminate))
698 break;
700 line++;
701 if (c == '/' && !--p_value)
702 start = line;
704 if (!start)
705 return squash_slash(xstrdup_or_null(def));
706 len = line - start;
707 if (!len)
708 return squash_slash(xstrdup_or_null(def));
711 * Generally we prefer the shorter name, especially
712 * if the other one is just a variation of that with
713 * something else tacked on to the end (ie "file.orig"
714 * or "file~").
716 if (def) {
717 int deflen = strlen(def);
718 if (deflen < len && !strncmp(start, def, deflen))
719 return squash_slash(xstrdup(def));
722 if (state->root.len) {
723 char *ret = xstrfmt("%s%.*s", state->root.buf, len, start);
724 return squash_slash(ret);
727 return squash_slash(xmemdupz(start, len));
730 static char *find_name(struct apply_state *state,
731 const char *line,
732 char *def,
733 int p_value,
734 int terminate)
736 if (*line == '"') {
737 char *name = find_name_gnu(state, line, def, p_value);
738 if (name)
739 return name;
742 return find_name_common(state, line, def, p_value, NULL, terminate);
745 static char *find_name_traditional(struct apply_state *state,
746 const char *line,
747 char *def,
748 int p_value)
750 size_t len;
751 size_t date_len;
753 if (*line == '"') {
754 char *name = find_name_gnu(state, line, def, p_value);
755 if (name)
756 return name;
759 len = strchrnul(line, '\n') - line;
760 date_len = diff_timestamp_len(line, len);
761 if (!date_len)
762 return find_name_common(state, line, def, p_value, NULL, TERM_TAB);
763 len -= date_len;
765 return find_name_common(state, line, def, p_value, line + len, 0);
769 * Given the string after "--- " or "+++ ", guess the appropriate
770 * p_value for the given patch.
772 static int guess_p_value(struct apply_state *state, const char *nameline)
774 char *name, *cp;
775 int val = -1;
777 if (is_dev_null(nameline))
778 return -1;
779 name = find_name_traditional(state, nameline, NULL, 0);
780 if (!name)
781 return -1;
782 cp = strchr(name, '/');
783 if (!cp)
784 val = 0;
785 else if (state->prefix) {
787 * Does it begin with "a/$our-prefix" and such? Then this is
788 * very likely to apply to our directory.
790 if (!strncmp(name, state->prefix, state->prefix_length))
791 val = count_slashes(state->prefix);
792 else {
793 cp++;
794 if (!strncmp(cp, state->prefix, state->prefix_length))
795 val = count_slashes(state->prefix) + 1;
798 free(name);
799 return val;
803 * Does the ---/+++ line have the POSIX timestamp after the last HT?
804 * GNU diff puts epoch there to signal a creation/deletion event. Is
805 * this such a timestamp?
807 static int has_epoch_timestamp(const char *nameline)
810 * We are only interested in epoch timestamp; any non-zero
811 * fraction cannot be one, hence "(\.0+)?" in the regexp below.
812 * For the same reason, the date must be either 1969-12-31 or
813 * 1970-01-01, and the seconds part must be "00".
815 const char stamp_regexp[] =
816 "^(1969-12-31|1970-01-01)"
818 "[0-2][0-9]:[0-5][0-9]:00(\\.0+)?"
820 "([-+][0-2][0-9]:?[0-5][0-9])\n";
821 const char *timestamp = NULL, *cp, *colon;
822 static regex_t *stamp;
823 regmatch_t m[10];
824 int zoneoffset;
825 int hourminute;
826 int status;
828 for (cp = nameline; *cp != '\n'; cp++) {
829 if (*cp == '\t')
830 timestamp = cp + 1;
832 if (!timestamp)
833 return 0;
834 if (!stamp) {
835 stamp = xmalloc(sizeof(*stamp));
836 if (regcomp(stamp, stamp_regexp, REG_EXTENDED)) {
837 warning(_("Cannot prepare timestamp regexp %s"),
838 stamp_regexp);
839 return 0;
843 status = regexec(stamp, timestamp, ARRAY_SIZE(m), m, 0);
844 if (status) {
845 if (status != REG_NOMATCH)
846 warning(_("regexec returned %d for input: %s"),
847 status, timestamp);
848 return 0;
851 zoneoffset = strtol(timestamp + m[3].rm_so + 1, (char **) &colon, 10);
852 if (*colon == ':')
853 zoneoffset = zoneoffset * 60 + strtol(colon + 1, NULL, 10);
854 else
855 zoneoffset = (zoneoffset / 100) * 60 + (zoneoffset % 100);
856 if (timestamp[m[3].rm_so] == '-')
857 zoneoffset = -zoneoffset;
860 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31
861 * (west of GMT) or 1970-01-01 (east of GMT)
863 if ((zoneoffset < 0 && memcmp(timestamp, "1969-12-31", 10)) ||
864 (0 <= zoneoffset && memcmp(timestamp, "1970-01-01", 10)))
865 return 0;
867 hourminute = (strtol(timestamp + 11, NULL, 10) * 60 +
868 strtol(timestamp + 14, NULL, 10) -
869 zoneoffset);
871 return ((zoneoffset < 0 && hourminute == 1440) ||
872 (0 <= zoneoffset && !hourminute));
876 * Get the name etc info from the ---/+++ lines of a traditional patch header
878 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
879 * files, we can happily check the index for a match, but for creating a
880 * new file we should try to match whatever "patch" does. I have no idea.
882 static int parse_traditional_patch(struct apply_state *state,
883 const char *first,
884 const char *second,
885 struct patch *patch)
887 char *name;
889 first += 4; /* skip "--- " */
890 second += 4; /* skip "+++ " */
891 if (!state->p_value_known) {
892 int p, q;
893 p = guess_p_value(state, first);
894 q = guess_p_value(state, second);
895 if (p < 0) p = q;
896 if (0 <= p && p == q) {
897 state->p_value = p;
898 state->p_value_known = 1;
901 if (is_dev_null(first)) {
902 patch->is_new = 1;
903 patch->is_delete = 0;
904 name = find_name_traditional(state, second, NULL, state->p_value);
905 patch->new_name = name;
906 } else if (is_dev_null(second)) {
907 patch->is_new = 0;
908 patch->is_delete = 1;
909 name = find_name_traditional(state, first, NULL, state->p_value);
910 patch->old_name = name;
911 } else {
912 char *first_name;
913 first_name = find_name_traditional(state, first, NULL, state->p_value);
914 name = find_name_traditional(state, second, first_name, state->p_value);
915 free(first_name);
916 if (has_epoch_timestamp(first)) {
917 patch->is_new = 1;
918 patch->is_delete = 0;
919 patch->new_name = name;
920 } else if (has_epoch_timestamp(second)) {
921 patch->is_new = 0;
922 patch->is_delete = 1;
923 patch->old_name = name;
924 } else {
925 patch->old_name = name;
926 patch->new_name = xstrdup_or_null(name);
929 if (!name)
930 return error(_("unable to find filename in patch at line %d"), state->linenr);
932 return 0;
935 static int gitdiff_hdrend(struct apply_state *state,
936 const char *line,
937 struct patch *patch)
939 return 1;
943 * We're anal about diff header consistency, to make
944 * sure that we don't end up having strange ambiguous
945 * patches floating around.
947 * As a result, gitdiff_{old|new}name() will check
948 * their names against any previous information, just
949 * to make sure..
951 #define DIFF_OLD_NAME 0
952 #define DIFF_NEW_NAME 1
954 static int gitdiff_verify_name(struct apply_state *state,
955 const char *line,
956 int isnull,
957 char **name,
958 int side)
960 if (!*name && !isnull) {
961 *name = find_name(state, line, NULL, state->p_value, TERM_TAB);
962 return 0;
965 if (*name) {
966 char *another;
967 if (isnull)
968 return error(_("git apply: bad git-diff - expected /dev/null, got %s on line %d"),
969 *name, state->linenr);
970 another = find_name(state, line, NULL, state->p_value, TERM_TAB);
971 if (!another || strcmp(another, *name)) {
972 free(another);
973 return error((side == DIFF_NEW_NAME) ?
974 _("git apply: bad git-diff - inconsistent new filename on line %d") :
975 _("git apply: bad git-diff - inconsistent old filename on line %d"), state->linenr);
977 free(another);
978 } else {
979 if (!starts_with(line, "/dev/null\n"))
980 return error(_("git apply: bad git-diff - expected /dev/null on line %d"), state->linenr);
983 return 0;
986 static int gitdiff_oldname(struct apply_state *state,
987 const char *line,
988 struct patch *patch)
990 return gitdiff_verify_name(state, line,
991 patch->is_new, &patch->old_name,
992 DIFF_OLD_NAME);
995 static int gitdiff_newname(struct apply_state *state,
996 const char *line,
997 struct patch *patch)
999 return gitdiff_verify_name(state, line,
1000 patch->is_delete, &patch->new_name,
1001 DIFF_NEW_NAME);
1004 static int parse_mode_line(const char *line, int linenr, unsigned int *mode)
1006 char *end;
1007 *mode = strtoul(line, &end, 8);
1008 if (end == line || !isspace(*end))
1009 return error(_("invalid mode on line %d: %s"), linenr, line);
1010 return 0;
1013 static int gitdiff_oldmode(struct apply_state *state,
1014 const char *line,
1015 struct patch *patch)
1017 return parse_mode_line(line, state->linenr, &patch->old_mode);
1020 static int gitdiff_newmode(struct apply_state *state,
1021 const char *line,
1022 struct patch *patch)
1024 return parse_mode_line(line, state->linenr, &patch->new_mode);
1027 static int gitdiff_delete(struct apply_state *state,
1028 const char *line,
1029 struct patch *patch)
1031 patch->is_delete = 1;
1032 free(patch->old_name);
1033 patch->old_name = xstrdup_or_null(patch->def_name);
1034 return gitdiff_oldmode(state, line, patch);
1037 static int gitdiff_newfile(struct apply_state *state,
1038 const char *line,
1039 struct patch *patch)
1041 patch->is_new = 1;
1042 free(patch->new_name);
1043 patch->new_name = xstrdup_or_null(patch->def_name);
1044 return gitdiff_newmode(state, line, patch);
1047 static int gitdiff_copysrc(struct apply_state *state,
1048 const char *line,
1049 struct patch *patch)
1051 patch->is_copy = 1;
1052 free(patch->old_name);
1053 patch->old_name = find_name(state, line, NULL, state->p_value ? state->p_value - 1 : 0, 0);
1054 return 0;
1057 static int gitdiff_copydst(struct apply_state *state,
1058 const char *line,
1059 struct patch *patch)
1061 patch->is_copy = 1;
1062 free(patch->new_name);
1063 patch->new_name = find_name(state, line, NULL, state->p_value ? state->p_value - 1 : 0, 0);
1064 return 0;
1067 static int gitdiff_renamesrc(struct apply_state *state,
1068 const char *line,
1069 struct patch *patch)
1071 patch->is_rename = 1;
1072 free(patch->old_name);
1073 patch->old_name = find_name(state, line, NULL, state->p_value ? state->p_value - 1 : 0, 0);
1074 return 0;
1077 static int gitdiff_renamedst(struct apply_state *state,
1078 const char *line,
1079 struct patch *patch)
1081 patch->is_rename = 1;
1082 free(patch->new_name);
1083 patch->new_name = find_name(state, line, NULL, state->p_value ? state->p_value - 1 : 0, 0);
1084 return 0;
1087 static int gitdiff_similarity(struct apply_state *state,
1088 const char *line,
1089 struct patch *patch)
1091 unsigned long val = strtoul(line, NULL, 10);
1092 if (val <= 100)
1093 patch->score = val;
1094 return 0;
1097 static int gitdiff_dissimilarity(struct apply_state *state,
1098 const char *line,
1099 struct patch *patch)
1101 unsigned long val = strtoul(line, NULL, 10);
1102 if (val <= 100)
1103 patch->score = val;
1104 return 0;
1107 static int gitdiff_index(struct apply_state *state,
1108 const char *line,
1109 struct patch *patch)
1112 * index line is N hexadecimal, "..", N hexadecimal,
1113 * and optional space with octal mode.
1115 const char *ptr, *eol;
1116 int len;
1118 ptr = strchr(line, '.');
1119 if (!ptr || ptr[1] != '.' || 40 < ptr - line)
1120 return 0;
1121 len = ptr - line;
1122 memcpy(patch->old_sha1_prefix, line, len);
1123 patch->old_sha1_prefix[len] = 0;
1125 line = ptr + 2;
1126 ptr = strchr(line, ' ');
1127 eol = strchrnul(line, '\n');
1129 if (!ptr || eol < ptr)
1130 ptr = eol;
1131 len = ptr - line;
1133 if (40 < len)
1134 return 0;
1135 memcpy(patch->new_sha1_prefix, line, len);
1136 patch->new_sha1_prefix[len] = 0;
1137 if (*ptr == ' ')
1138 return gitdiff_oldmode(state, ptr + 1, patch);
1139 return 0;
1143 * This is normal for a diff that doesn't change anything: we'll fall through
1144 * into the next diff. Tell the parser to break out.
1146 static int gitdiff_unrecognized(struct apply_state *state,
1147 const char *line,
1148 struct patch *patch)
1150 return 1;
1154 * Skip p_value leading components from "line"; as we do not accept
1155 * absolute paths, return NULL in that case.
1157 static const char *skip_tree_prefix(struct apply_state *state,
1158 const char *line,
1159 int llen)
1161 int nslash;
1162 int i;
1164 if (!state->p_value)
1165 return (llen && line[0] == '/') ? NULL : line;
1167 nslash = state->p_value;
1168 for (i = 0; i < llen; i++) {
1169 int ch = line[i];
1170 if (ch == '/' && --nslash <= 0)
1171 return (i == 0) ? NULL : &line[i + 1];
1173 return NULL;
1177 * This is to extract the same name that appears on "diff --git"
1178 * line. We do not find and return anything if it is a rename
1179 * patch, and it is OK because we will find the name elsewhere.
1180 * We need to reliably find name only when it is mode-change only,
1181 * creation or deletion of an empty file. In any of these cases,
1182 * both sides are the same name under a/ and b/ respectively.
1184 static char *git_header_name(struct apply_state *state,
1185 const char *line,
1186 int llen)
1188 const char *name;
1189 const char *second = NULL;
1190 size_t len, line_len;
1192 line += strlen("diff --git ");
1193 llen -= strlen("diff --git ");
1195 if (*line == '"') {
1196 const char *cp;
1197 struct strbuf first = STRBUF_INIT;
1198 struct strbuf sp = STRBUF_INIT;
1200 if (unquote_c_style(&first, line, &second))
1201 goto free_and_fail1;
1203 /* strip the a/b prefix including trailing slash */
1204 cp = skip_tree_prefix(state, first.buf, first.len);
1205 if (!cp)
1206 goto free_and_fail1;
1207 strbuf_remove(&first, 0, cp - first.buf);
1210 * second points at one past closing dq of name.
1211 * find the second name.
1213 while ((second < line + llen) && isspace(*second))
1214 second++;
1216 if (line + llen <= second)
1217 goto free_and_fail1;
1218 if (*second == '"') {
1219 if (unquote_c_style(&sp, second, NULL))
1220 goto free_and_fail1;
1221 cp = skip_tree_prefix(state, sp.buf, sp.len);
1222 if (!cp)
1223 goto free_and_fail1;
1224 /* They must match, otherwise ignore */
1225 if (strcmp(cp, first.buf))
1226 goto free_and_fail1;
1227 strbuf_release(&sp);
1228 return strbuf_detach(&first, NULL);
1231 /* unquoted second */
1232 cp = skip_tree_prefix(state, second, line + llen - second);
1233 if (!cp)
1234 goto free_and_fail1;
1235 if (line + llen - cp != first.len ||
1236 memcmp(first.buf, cp, first.len))
1237 goto free_and_fail1;
1238 return strbuf_detach(&first, NULL);
1240 free_and_fail1:
1241 strbuf_release(&first);
1242 strbuf_release(&sp);
1243 return NULL;
1246 /* unquoted first name */
1247 name = skip_tree_prefix(state, line, llen);
1248 if (!name)
1249 return NULL;
1252 * since the first name is unquoted, a dq if exists must be
1253 * the beginning of the second name.
1255 for (second = name; second < line + llen; second++) {
1256 if (*second == '"') {
1257 struct strbuf sp = STRBUF_INIT;
1258 const char *np;
1260 if (unquote_c_style(&sp, second, NULL))
1261 goto free_and_fail2;
1263 np = skip_tree_prefix(state, sp.buf, sp.len);
1264 if (!np)
1265 goto free_and_fail2;
1267 len = sp.buf + sp.len - np;
1268 if (len < second - name &&
1269 !strncmp(np, name, len) &&
1270 isspace(name[len])) {
1271 /* Good */
1272 strbuf_remove(&sp, 0, np - sp.buf);
1273 return strbuf_detach(&sp, NULL);
1276 free_and_fail2:
1277 strbuf_release(&sp);
1278 return NULL;
1283 * Accept a name only if it shows up twice, exactly the same
1284 * form.
1286 second = strchr(name, '\n');
1287 if (!second)
1288 return NULL;
1289 line_len = second - name;
1290 for (len = 0 ; ; len++) {
1291 switch (name[len]) {
1292 default:
1293 continue;
1294 case '\n':
1295 return NULL;
1296 case '\t': case ' ':
1298 * Is this the separator between the preimage
1299 * and the postimage pathname? Again, we are
1300 * only interested in the case where there is
1301 * no rename, as this is only to set def_name
1302 * and a rename patch has the names elsewhere
1303 * in an unambiguous form.
1305 if (!name[len + 1])
1306 return NULL; /* no postimage name */
1307 second = skip_tree_prefix(state, name + len + 1,
1308 line_len - (len + 1));
1309 if (!second)
1310 return NULL;
1312 * Does len bytes starting at "name" and "second"
1313 * (that are separated by one HT or SP we just
1314 * found) exactly match?
1316 if (second[len] == '\n' && !strncmp(name, second, len))
1317 return xmemdupz(name, len);
1322 static int check_header_line(struct apply_state *state, struct patch *patch)
1324 int extensions = (patch->is_delete == 1) + (patch->is_new == 1) +
1325 (patch->is_rename == 1) + (patch->is_copy == 1);
1326 if (extensions > 1)
1327 return error(_("inconsistent header lines %d and %d"),
1328 patch->extension_linenr, state->linenr);
1329 if (extensions && !patch->extension_linenr)
1330 patch->extension_linenr = state->linenr;
1331 return 0;
1334 /* Verify that we recognize the lines following a git header */
1335 static int parse_git_header(struct apply_state *state,
1336 const char *line,
1337 int len,
1338 unsigned int size,
1339 struct patch *patch)
1341 unsigned long offset;
1343 /* A git diff has explicit new/delete information, so we don't guess */
1344 patch->is_new = 0;
1345 patch->is_delete = 0;
1348 * Some things may not have the old name in the
1349 * rest of the headers anywhere (pure mode changes,
1350 * or removing or adding empty files), so we get
1351 * the default name from the header.
1353 patch->def_name = git_header_name(state, line, len);
1354 if (patch->def_name && state->root.len) {
1355 char *s = xstrfmt("%s%s", state->root.buf, patch->def_name);
1356 free(patch->def_name);
1357 patch->def_name = s;
1360 line += len;
1361 size -= len;
1362 state->linenr++;
1363 for (offset = len ; size > 0 ; offset += len, size -= len, line += len, state->linenr++) {
1364 static const struct opentry {
1365 const char *str;
1366 int (*fn)(struct apply_state *, const char *, struct patch *);
1367 } optable[] = {
1368 { "@@ -", gitdiff_hdrend },
1369 { "--- ", gitdiff_oldname },
1370 { "+++ ", gitdiff_newname },
1371 { "old mode ", gitdiff_oldmode },
1372 { "new mode ", gitdiff_newmode },
1373 { "deleted file mode ", gitdiff_delete },
1374 { "new file mode ", gitdiff_newfile },
1375 { "copy from ", gitdiff_copysrc },
1376 { "copy to ", gitdiff_copydst },
1377 { "rename old ", gitdiff_renamesrc },
1378 { "rename new ", gitdiff_renamedst },
1379 { "rename from ", gitdiff_renamesrc },
1380 { "rename to ", gitdiff_renamedst },
1381 { "similarity index ", gitdiff_similarity },
1382 { "dissimilarity index ", gitdiff_dissimilarity },
1383 { "index ", gitdiff_index },
1384 { "", gitdiff_unrecognized },
1386 int i;
1388 len = linelen(line, size);
1389 if (!len || line[len-1] != '\n')
1390 break;
1391 for (i = 0; i < ARRAY_SIZE(optable); i++) {
1392 const struct opentry *p = optable + i;
1393 int oplen = strlen(p->str);
1394 int res;
1395 if (len < oplen || memcmp(p->str, line, oplen))
1396 continue;
1397 res = p->fn(state, line + oplen, patch);
1398 if (res < 0)
1399 return -1;
1400 if (check_header_line(state, patch))
1401 return -1;
1402 if (res > 0)
1403 return offset;
1404 break;
1408 return offset;
1411 static int parse_num(const char *line, unsigned long *p)
1413 char *ptr;
1415 if (!isdigit(*line))
1416 return 0;
1417 *p = strtoul(line, &ptr, 10);
1418 return ptr - line;
1421 static int parse_range(const char *line, int len, int offset, const char *expect,
1422 unsigned long *p1, unsigned long *p2)
1424 int digits, ex;
1426 if (offset < 0 || offset >= len)
1427 return -1;
1428 line += offset;
1429 len -= offset;
1431 digits = parse_num(line, p1);
1432 if (!digits)
1433 return -1;
1435 offset += digits;
1436 line += digits;
1437 len -= digits;
1439 *p2 = 1;
1440 if (*line == ',') {
1441 digits = parse_num(line+1, p2);
1442 if (!digits)
1443 return -1;
1445 offset += digits+1;
1446 line += digits+1;
1447 len -= digits+1;
1450 ex = strlen(expect);
1451 if (ex > len)
1452 return -1;
1453 if (memcmp(line, expect, ex))
1454 return -1;
1456 return offset + ex;
1459 static void recount_diff(const char *line, int size, struct fragment *fragment)
1461 int oldlines = 0, newlines = 0, ret = 0;
1463 if (size < 1) {
1464 warning("recount: ignore empty hunk");
1465 return;
1468 for (;;) {
1469 int len = linelen(line, size);
1470 size -= len;
1471 line += len;
1473 if (size < 1)
1474 break;
1476 switch (*line) {
1477 case ' ': case '\n':
1478 newlines++;
1479 /* fall through */
1480 case '-':
1481 oldlines++;
1482 continue;
1483 case '+':
1484 newlines++;
1485 continue;
1486 case '\\':
1487 continue;
1488 case '@':
1489 ret = size < 3 || !starts_with(line, "@@ ");
1490 break;
1491 case 'd':
1492 ret = size < 5 || !starts_with(line, "diff ");
1493 break;
1494 default:
1495 ret = -1;
1496 break;
1498 if (ret) {
1499 warning(_("recount: unexpected line: %.*s"),
1500 (int)linelen(line, size), line);
1501 return;
1503 break;
1505 fragment->oldlines = oldlines;
1506 fragment->newlines = newlines;
1510 * Parse a unified diff fragment header of the
1511 * form "@@ -a,b +c,d @@"
1513 static int parse_fragment_header(const char *line, int len, struct fragment *fragment)
1515 int offset;
1517 if (!len || line[len-1] != '\n')
1518 return -1;
1520 /* Figure out the number of lines in a fragment */
1521 offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);
1522 offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);
1524 return offset;
1528 * Find file diff header
1530 * Returns:
1531 * -1 if no header was found
1532 * -128 in case of error
1533 * the size of the header in bytes (called "offset") otherwise
1535 static int find_header(struct apply_state *state,
1536 const char *line,
1537 unsigned long size,
1538 int *hdrsize,
1539 struct patch *patch)
1541 unsigned long offset, len;
1543 patch->is_toplevel_relative = 0;
1544 patch->is_rename = patch->is_copy = 0;
1545 patch->is_new = patch->is_delete = -1;
1546 patch->old_mode = patch->new_mode = 0;
1547 patch->old_name = patch->new_name = NULL;
1548 for (offset = 0; size > 0; offset += len, size -= len, line += len, state->linenr++) {
1549 unsigned long nextlen;
1551 len = linelen(line, size);
1552 if (!len)
1553 break;
1555 /* Testing this early allows us to take a few shortcuts.. */
1556 if (len < 6)
1557 continue;
1560 * Make sure we don't find any unconnected patch fragments.
1561 * That's a sign that we didn't find a header, and that a
1562 * patch has become corrupted/broken up.
1564 if (!memcmp("@@ -", line, 4)) {
1565 struct fragment dummy;
1566 if (parse_fragment_header(line, len, &dummy) < 0)
1567 continue;
1568 error(_("patch fragment without header at line %d: %.*s"),
1569 state->linenr, (int)len-1, line);
1570 return -128;
1573 if (size < len + 6)
1574 break;
1577 * Git patch? It might not have a real patch, just a rename
1578 * or mode change, so we handle that specially
1580 if (!memcmp("diff --git ", line, 11)) {
1581 int git_hdr_len = parse_git_header(state, line, len, size, patch);
1582 if (git_hdr_len < 0)
1583 return -128;
1584 if (git_hdr_len <= len)
1585 continue;
1586 if (!patch->old_name && !patch->new_name) {
1587 if (!patch->def_name) {
1588 error(Q_("git diff header lacks filename information when removing "
1589 "%d leading pathname component (line %d)",
1590 "git diff header lacks filename information when removing "
1591 "%d leading pathname components (line %d)",
1592 state->p_value),
1593 state->p_value, state->linenr);
1594 return -128;
1596 patch->old_name = xstrdup(patch->def_name);
1597 patch->new_name = xstrdup(patch->def_name);
1599 if ((!patch->new_name && !patch->is_delete) ||
1600 (!patch->old_name && !patch->is_new)) {
1601 error(_("git diff header lacks filename information "
1602 "(line %d)"), state->linenr);
1603 return -128;
1605 patch->is_toplevel_relative = 1;
1606 *hdrsize = git_hdr_len;
1607 return offset;
1610 /* --- followed by +++ ? */
1611 if (memcmp("--- ", line, 4) || memcmp("+++ ", line + len, 4))
1612 continue;
1615 * We only accept unified patches, so we want it to
1616 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
1617 * minimum ("@@ -0,0 +1 @@\n" is the shortest).
1619 nextlen = linelen(line + len, size - len);
1620 if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4))
1621 continue;
1623 /* Ok, we'll consider it a patch */
1624 if (parse_traditional_patch(state, line, line+len, patch))
1625 return -128;
1626 *hdrsize = len + nextlen;
1627 state->linenr += 2;
1628 return offset;
1630 return -1;
1633 static void record_ws_error(struct apply_state *state,
1634 unsigned result,
1635 const char *line,
1636 int len,
1637 int linenr)
1639 char *err;
1641 if (!result)
1642 return;
1644 state->whitespace_error++;
1645 if (state->squelch_whitespace_errors &&
1646 state->squelch_whitespace_errors < state->whitespace_error)
1647 return;
1649 err = whitespace_error_string(result);
1650 if (state->apply_verbosity > verbosity_silent)
1651 fprintf(stderr, "%s:%d: %s.\n%.*s\n",
1652 state->patch_input_file, linenr, err, len, line);
1653 free(err);
1656 static void check_whitespace(struct apply_state *state,
1657 const char *line,
1658 int len,
1659 unsigned ws_rule)
1661 unsigned result = ws_check(line + 1, len - 1, ws_rule);
1663 record_ws_error(state, result, line + 1, len - 2, state->linenr);
1667 * Check if the patch has context lines with CRLF or
1668 * the patch wants to remove lines with CRLF.
1670 static void check_old_for_crlf(struct patch *patch, const char *line, int len)
1672 if (len >= 2 && line[len-1] == '\n' && line[len-2] == '\r') {
1673 patch->ws_rule |= WS_CR_AT_EOL;
1674 patch->crlf_in_old = 1;
1680 * Parse a unified diff. Note that this really needs to parse each
1681 * fragment separately, since the only way to know the difference
1682 * between a "---" that is part of a patch, and a "---" that starts
1683 * the next patch is to look at the line counts..
1685 static int parse_fragment(struct apply_state *state,
1686 const char *line,
1687 unsigned long size,
1688 struct patch *patch,
1689 struct fragment *fragment)
1691 int added, deleted;
1692 int len = linelen(line, size), offset;
1693 unsigned long oldlines, newlines;
1694 unsigned long leading, trailing;
1696 offset = parse_fragment_header(line, len, fragment);
1697 if (offset < 0)
1698 return -1;
1699 if (offset > 0 && patch->recount)
1700 recount_diff(line + offset, size - offset, fragment);
1701 oldlines = fragment->oldlines;
1702 newlines = fragment->newlines;
1703 leading = 0;
1704 trailing = 0;
1706 /* Parse the thing.. */
1707 line += len;
1708 size -= len;
1709 state->linenr++;
1710 added = deleted = 0;
1711 for (offset = len;
1712 0 < size;
1713 offset += len, size -= len, line += len, state->linenr++) {
1714 if (!oldlines && !newlines)
1715 break;
1716 len = linelen(line, size);
1717 if (!len || line[len-1] != '\n')
1718 return -1;
1719 switch (*line) {
1720 default:
1721 return -1;
1722 case '\n': /* newer GNU diff, an empty context line */
1723 case ' ':
1724 oldlines--;
1725 newlines--;
1726 if (!deleted && !added)
1727 leading++;
1728 trailing++;
1729 check_old_for_crlf(patch, line, len);
1730 if (!state->apply_in_reverse &&
1731 state->ws_error_action == correct_ws_error)
1732 check_whitespace(state, line, len, patch->ws_rule);
1733 break;
1734 case '-':
1735 if (!state->apply_in_reverse)
1736 check_old_for_crlf(patch, line, len);
1737 if (state->apply_in_reverse &&
1738 state->ws_error_action != nowarn_ws_error)
1739 check_whitespace(state, line, len, patch->ws_rule);
1740 deleted++;
1741 oldlines--;
1742 trailing = 0;
1743 break;
1744 case '+':
1745 if (state->apply_in_reverse)
1746 check_old_for_crlf(patch, line, len);
1747 if (!state->apply_in_reverse &&
1748 state->ws_error_action != nowarn_ws_error)
1749 check_whitespace(state, line, len, patch->ws_rule);
1750 added++;
1751 newlines--;
1752 trailing = 0;
1753 break;
1756 * We allow "\ No newline at end of file". Depending
1757 * on locale settings when the patch was produced we
1758 * don't know what this line looks like. The only
1759 * thing we do know is that it begins with "\ ".
1760 * Checking for 12 is just for sanity check -- any
1761 * l10n of "\ No newline..." is at least that long.
1763 case '\\':
1764 if (len < 12 || memcmp(line, "\\ ", 2))
1765 return -1;
1766 break;
1769 if (oldlines || newlines)
1770 return -1;
1771 if (!deleted && !added)
1772 return -1;
1774 fragment->leading = leading;
1775 fragment->trailing = trailing;
1778 * If a fragment ends with an incomplete line, we failed to include
1779 * it in the above loop because we hit oldlines == newlines == 0
1780 * before seeing it.
1782 if (12 < size && !memcmp(line, "\\ ", 2))
1783 offset += linelen(line, size);
1785 patch->lines_added += added;
1786 patch->lines_deleted += deleted;
1788 if (0 < patch->is_new && oldlines)
1789 return error(_("new file depends on old contents"));
1790 if (0 < patch->is_delete && newlines)
1791 return error(_("deleted file still has contents"));
1792 return offset;
1796 * We have seen "diff --git a/... b/..." header (or a traditional patch
1797 * header). Read hunks that belong to this patch into fragments and hang
1798 * them to the given patch structure.
1800 * The (fragment->patch, fragment->size) pair points into the memory given
1801 * by the caller, not a copy, when we return.
1803 * Returns:
1804 * -1 in case of error,
1805 * the number of bytes in the patch otherwise.
1807 static int parse_single_patch(struct apply_state *state,
1808 const char *line,
1809 unsigned long size,
1810 struct patch *patch)
1812 unsigned long offset = 0;
1813 unsigned long oldlines = 0, newlines = 0, context = 0;
1814 struct fragment **fragp = &patch->fragments;
1816 while (size > 4 && !memcmp(line, "@@ -", 4)) {
1817 struct fragment *fragment;
1818 int len;
1820 fragment = xcalloc(1, sizeof(*fragment));
1821 fragment->linenr = state->linenr;
1822 len = parse_fragment(state, line, size, patch, fragment);
1823 if (len <= 0) {
1824 free(fragment);
1825 return error(_("corrupt patch at line %d"), state->linenr);
1827 fragment->patch = line;
1828 fragment->size = len;
1829 oldlines += fragment->oldlines;
1830 newlines += fragment->newlines;
1831 context += fragment->leading + fragment->trailing;
1833 *fragp = fragment;
1834 fragp = &fragment->next;
1836 offset += len;
1837 line += len;
1838 size -= len;
1842 * If something was removed (i.e. we have old-lines) it cannot
1843 * be creation, and if something was added it cannot be
1844 * deletion. However, the reverse is not true; --unified=0
1845 * patches that only add are not necessarily creation even
1846 * though they do not have any old lines, and ones that only
1847 * delete are not necessarily deletion.
1849 * Unfortunately, a real creation/deletion patch do _not_ have
1850 * any context line by definition, so we cannot safely tell it
1851 * apart with --unified=0 insanity. At least if the patch has
1852 * more than one hunk it is not creation or deletion.
1854 if (patch->is_new < 0 &&
1855 (oldlines || (patch->fragments && patch->fragments->next)))
1856 patch->is_new = 0;
1857 if (patch->is_delete < 0 &&
1858 (newlines || (patch->fragments && patch->fragments->next)))
1859 patch->is_delete = 0;
1861 if (0 < patch->is_new && oldlines)
1862 return error(_("new file %s depends on old contents"), patch->new_name);
1863 if (0 < patch->is_delete && newlines)
1864 return error(_("deleted file %s still has contents"), patch->old_name);
1865 if (!patch->is_delete && !newlines && context && state->apply_verbosity > verbosity_silent)
1866 fprintf_ln(stderr,
1867 _("** warning: "
1868 "file %s becomes empty but is not deleted"),
1869 patch->new_name);
1871 return offset;
1874 static inline int metadata_changes(struct patch *patch)
1876 return patch->is_rename > 0 ||
1877 patch->is_copy > 0 ||
1878 patch->is_new > 0 ||
1879 patch->is_delete ||
1880 (patch->old_mode && patch->new_mode &&
1881 patch->old_mode != patch->new_mode);
1884 static char *inflate_it(const void *data, unsigned long size,
1885 unsigned long inflated_size)
1887 git_zstream stream;
1888 void *out;
1889 int st;
1891 memset(&stream, 0, sizeof(stream));
1893 stream.next_in = (unsigned char *)data;
1894 stream.avail_in = size;
1895 stream.next_out = out = xmalloc(inflated_size);
1896 stream.avail_out = inflated_size;
1897 git_inflate_init(&stream);
1898 st = git_inflate(&stream, Z_FINISH);
1899 git_inflate_end(&stream);
1900 if ((st != Z_STREAM_END) || stream.total_out != inflated_size) {
1901 free(out);
1902 return NULL;
1904 return out;
1908 * Read a binary hunk and return a new fragment; fragment->patch
1909 * points at an allocated memory that the caller must free, so
1910 * it is marked as "->free_patch = 1".
1912 static struct fragment *parse_binary_hunk(struct apply_state *state,
1913 char **buf_p,
1914 unsigned long *sz_p,
1915 int *status_p,
1916 int *used_p)
1919 * Expect a line that begins with binary patch method ("literal"
1920 * or "delta"), followed by the length of data before deflating.
1921 * a sequence of 'length-byte' followed by base-85 encoded data
1922 * should follow, terminated by a newline.
1924 * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1925 * and we would limit the patch line to 66 characters,
1926 * so one line can fit up to 13 groups that would decode
1927 * to 52 bytes max. The length byte 'A'-'Z' corresponds
1928 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
1930 int llen, used;
1931 unsigned long size = *sz_p;
1932 char *buffer = *buf_p;
1933 int patch_method;
1934 unsigned long origlen;
1935 char *data = NULL;
1936 int hunk_size = 0;
1937 struct fragment *frag;
1939 llen = linelen(buffer, size);
1940 used = llen;
1942 *status_p = 0;
1944 if (starts_with(buffer, "delta ")) {
1945 patch_method = BINARY_DELTA_DEFLATED;
1946 origlen = strtoul(buffer + 6, NULL, 10);
1948 else if (starts_with(buffer, "literal ")) {
1949 patch_method = BINARY_LITERAL_DEFLATED;
1950 origlen = strtoul(buffer + 8, NULL, 10);
1952 else
1953 return NULL;
1955 state->linenr++;
1956 buffer += llen;
1957 while (1) {
1958 int byte_length, max_byte_length, newsize;
1959 llen = linelen(buffer, size);
1960 used += llen;
1961 state->linenr++;
1962 if (llen == 1) {
1963 /* consume the blank line */
1964 buffer++;
1965 size--;
1966 break;
1969 * Minimum line is "A00000\n" which is 7-byte long,
1970 * and the line length must be multiple of 5 plus 2.
1972 if ((llen < 7) || (llen-2) % 5)
1973 goto corrupt;
1974 max_byte_length = (llen - 2) / 5 * 4;
1975 byte_length = *buffer;
1976 if ('A' <= byte_length && byte_length <= 'Z')
1977 byte_length = byte_length - 'A' + 1;
1978 else if ('a' <= byte_length && byte_length <= 'z')
1979 byte_length = byte_length - 'a' + 27;
1980 else
1981 goto corrupt;
1982 /* if the input length was not multiple of 4, we would
1983 * have filler at the end but the filler should never
1984 * exceed 3 bytes
1986 if (max_byte_length < byte_length ||
1987 byte_length <= max_byte_length - 4)
1988 goto corrupt;
1989 newsize = hunk_size + byte_length;
1990 data = xrealloc(data, newsize);
1991 if (decode_85(data + hunk_size, buffer + 1, byte_length))
1992 goto corrupt;
1993 hunk_size = newsize;
1994 buffer += llen;
1995 size -= llen;
1998 frag = xcalloc(1, sizeof(*frag));
1999 frag->patch = inflate_it(data, hunk_size, origlen);
2000 frag->free_patch = 1;
2001 if (!frag->patch)
2002 goto corrupt;
2003 free(data);
2004 frag->size = origlen;
2005 *buf_p = buffer;
2006 *sz_p = size;
2007 *used_p = used;
2008 frag->binary_patch_method = patch_method;
2009 return frag;
2011 corrupt:
2012 free(data);
2013 *status_p = -1;
2014 error(_("corrupt binary patch at line %d: %.*s"),
2015 state->linenr-1, llen-1, buffer);
2016 return NULL;
2020 * Returns:
2021 * -1 in case of error,
2022 * the length of the parsed binary patch otherwise
2024 static int parse_binary(struct apply_state *state,
2025 char *buffer,
2026 unsigned long size,
2027 struct patch *patch)
2030 * We have read "GIT binary patch\n"; what follows is a line
2031 * that says the patch method (currently, either "literal" or
2032 * "delta") and the length of data before deflating; a
2033 * sequence of 'length-byte' followed by base-85 encoded data
2034 * follows.
2036 * When a binary patch is reversible, there is another binary
2037 * hunk in the same format, starting with patch method (either
2038 * "literal" or "delta") with the length of data, and a sequence
2039 * of length-byte + base-85 encoded data, terminated with another
2040 * empty line. This data, when applied to the postimage, produces
2041 * the preimage.
2043 struct fragment *forward;
2044 struct fragment *reverse;
2045 int status;
2046 int used, used_1;
2048 forward = parse_binary_hunk(state, &buffer, &size, &status, &used);
2049 if (!forward && !status)
2050 /* there has to be one hunk (forward hunk) */
2051 return error(_("unrecognized binary patch at line %d"), state->linenr-1);
2052 if (status)
2053 /* otherwise we already gave an error message */
2054 return status;
2056 reverse = parse_binary_hunk(state, &buffer, &size, &status, &used_1);
2057 if (reverse)
2058 used += used_1;
2059 else if (status) {
2061 * Not having reverse hunk is not an error, but having
2062 * a corrupt reverse hunk is.
2064 free((void*) forward->patch);
2065 free(forward);
2066 return status;
2068 forward->next = reverse;
2069 patch->fragments = forward;
2070 patch->is_binary = 1;
2071 return used;
2074 static void prefix_one(struct apply_state *state, char **name)
2076 char *old_name = *name;
2077 if (!old_name)
2078 return;
2079 *name = prefix_filename(state->prefix, *name);
2080 free(old_name);
2083 static void prefix_patch(struct apply_state *state, struct patch *p)
2085 if (!state->prefix || p->is_toplevel_relative)
2086 return;
2087 prefix_one(state, &p->new_name);
2088 prefix_one(state, &p->old_name);
2092 * include/exclude
2095 static void add_name_limit(struct apply_state *state,
2096 const char *name,
2097 int exclude)
2099 struct string_list_item *it;
2101 it = string_list_append(&state->limit_by_name, name);
2102 it->util = exclude ? NULL : (void *) 1;
2105 static int use_patch(struct apply_state *state, struct patch *p)
2107 const char *pathname = p->new_name ? p->new_name : p->old_name;
2108 int i;
2110 /* Paths outside are not touched regardless of "--include" */
2111 if (0 < state->prefix_length) {
2112 int pathlen = strlen(pathname);
2113 if (pathlen <= state->prefix_length ||
2114 memcmp(state->prefix, pathname, state->prefix_length))
2115 return 0;
2118 /* See if it matches any of exclude/include rule */
2119 for (i = 0; i < state->limit_by_name.nr; i++) {
2120 struct string_list_item *it = &state->limit_by_name.items[i];
2121 if (!wildmatch(it->string, pathname, 0))
2122 return (it->util != NULL);
2126 * If we had any include, a path that does not match any rule is
2127 * not used. Otherwise, we saw bunch of exclude rules (or none)
2128 * and such a path is used.
2130 return !state->has_include;
2134 * Read the patch text in "buffer" that extends for "size" bytes; stop
2135 * reading after seeing a single patch (i.e. changes to a single file).
2136 * Create fragments (i.e. patch hunks) and hang them to the given patch.
2138 * Returns:
2139 * -1 if no header was found or parse_binary() failed,
2140 * -128 on another error,
2141 * the number of bytes consumed otherwise,
2142 * so that the caller can call us again for the next patch.
2144 static int parse_chunk(struct apply_state *state, char *buffer, unsigned long size, struct patch *patch)
2146 int hdrsize, patchsize;
2147 int offset = find_header(state, buffer, size, &hdrsize, patch);
2149 if (offset < 0)
2150 return offset;
2152 prefix_patch(state, patch);
2154 if (!use_patch(state, patch))
2155 patch->ws_rule = 0;
2156 else
2157 patch->ws_rule = whitespace_rule(patch->new_name
2158 ? patch->new_name
2159 : patch->old_name);
2161 patchsize = parse_single_patch(state,
2162 buffer + offset + hdrsize,
2163 size - offset - hdrsize,
2164 patch);
2166 if (patchsize < 0)
2167 return -128;
2169 if (!patchsize) {
2170 static const char git_binary[] = "GIT binary patch\n";
2171 int hd = hdrsize + offset;
2172 unsigned long llen = linelen(buffer + hd, size - hd);
2174 if (llen == sizeof(git_binary) - 1 &&
2175 !memcmp(git_binary, buffer + hd, llen)) {
2176 int used;
2177 state->linenr++;
2178 used = parse_binary(state, buffer + hd + llen,
2179 size - hd - llen, patch);
2180 if (used < 0)
2181 return -1;
2182 if (used)
2183 patchsize = used + llen;
2184 else
2185 patchsize = 0;
2187 else if (!memcmp(" differ\n", buffer + hd + llen - 8, 8)) {
2188 static const char *binhdr[] = {
2189 "Binary files ",
2190 "Files ",
2191 NULL,
2193 int i;
2194 for (i = 0; binhdr[i]; i++) {
2195 int len = strlen(binhdr[i]);
2196 if (len < size - hd &&
2197 !memcmp(binhdr[i], buffer + hd, len)) {
2198 state->linenr++;
2199 patch->is_binary = 1;
2200 patchsize = llen;
2201 break;
2206 /* Empty patch cannot be applied if it is a text patch
2207 * without metadata change. A binary patch appears
2208 * empty to us here.
2210 if ((state->apply || state->check) &&
2211 (!patch->is_binary && !metadata_changes(patch))) {
2212 error(_("patch with only garbage at line %d"), state->linenr);
2213 return -128;
2217 return offset + hdrsize + patchsize;
2220 static void reverse_patches(struct patch *p)
2222 for (; p; p = p->next) {
2223 struct fragment *frag = p->fragments;
2225 SWAP(p->new_name, p->old_name);
2226 SWAP(p->new_mode, p->old_mode);
2227 SWAP(p->is_new, p->is_delete);
2228 SWAP(p->lines_added, p->lines_deleted);
2229 SWAP(p->old_sha1_prefix, p->new_sha1_prefix);
2231 for (; frag; frag = frag->next) {
2232 SWAP(frag->newpos, frag->oldpos);
2233 SWAP(frag->newlines, frag->oldlines);
2238 static const char pluses[] =
2239 "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
2240 static const char minuses[]=
2241 "----------------------------------------------------------------------";
2243 static void show_stats(struct apply_state *state, struct patch *patch)
2245 struct strbuf qname = STRBUF_INIT;
2246 char *cp = patch->new_name ? patch->new_name : patch->old_name;
2247 int max, add, del;
2249 quote_c_style(cp, &qname, NULL, 0);
2252 * "scale" the filename
2254 max = state->max_len;
2255 if (max > 50)
2256 max = 50;
2258 if (qname.len > max) {
2259 cp = strchr(qname.buf + qname.len + 3 - max, '/');
2260 if (!cp)
2261 cp = qname.buf + qname.len + 3 - max;
2262 strbuf_splice(&qname, 0, cp - qname.buf, "...", 3);
2265 if (patch->is_binary) {
2266 printf(" %-*s | Bin\n", max, qname.buf);
2267 strbuf_release(&qname);
2268 return;
2271 printf(" %-*s |", max, qname.buf);
2272 strbuf_release(&qname);
2275 * scale the add/delete
2277 max = max + state->max_change > 70 ? 70 - max : state->max_change;
2278 add = patch->lines_added;
2279 del = patch->lines_deleted;
2281 if (state->max_change > 0) {
2282 int total = ((add + del) * max + state->max_change / 2) / state->max_change;
2283 add = (add * max + state->max_change / 2) / state->max_change;
2284 del = total - add;
2286 printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,
2287 add, pluses, del, minuses);
2290 static int read_old_data(struct stat *st, struct patch *patch,
2291 const char *path, struct strbuf *buf)
2293 enum safe_crlf safe_crlf = patch->crlf_in_old ?
2294 SAFE_CRLF_KEEP_CRLF : SAFE_CRLF_RENORMALIZE;
2295 switch (st->st_mode & S_IFMT) {
2296 case S_IFLNK:
2297 if (strbuf_readlink(buf, path, st->st_size) < 0)
2298 return error(_("unable to read symlink %s"), path);
2299 return 0;
2300 case S_IFREG:
2301 if (strbuf_read_file(buf, path, st->st_size) != st->st_size)
2302 return error(_("unable to open or read %s"), path);
2304 * "git apply" without "--index/--cached" should never look
2305 * at the index; the target file may not have been added to
2306 * the index yet, and we may not even be in any Git repository.
2307 * Pass NULL to convert_to_git() to stress this; the function
2308 * should never look at the index when explicit crlf option
2309 * is given.
2311 convert_to_git(NULL, path, buf->buf, buf->len, buf, safe_crlf);
2312 return 0;
2313 default:
2314 return -1;
2319 * Update the preimage, and the common lines in postimage,
2320 * from buffer buf of length len. If postlen is 0 the postimage
2321 * is updated in place, otherwise it's updated on a new buffer
2322 * of length postlen
2325 static void update_pre_post_images(struct image *preimage,
2326 struct image *postimage,
2327 char *buf,
2328 size_t len, size_t postlen)
2330 int i, ctx, reduced;
2331 char *new, *old, *fixed;
2332 struct image fixed_preimage;
2335 * Update the preimage with whitespace fixes. Note that we
2336 * are not losing preimage->buf -- apply_one_fragment() will
2337 * free "oldlines".
2339 prepare_image(&fixed_preimage, buf, len, 1);
2340 assert(postlen
2341 ? fixed_preimage.nr == preimage->nr
2342 : fixed_preimage.nr <= preimage->nr);
2343 for (i = 0; i < fixed_preimage.nr; i++)
2344 fixed_preimage.line[i].flag = preimage->line[i].flag;
2345 free(preimage->line_allocated);
2346 *preimage = fixed_preimage;
2349 * Adjust the common context lines in postimage. This can be
2350 * done in-place when we are shrinking it with whitespace
2351 * fixing, but needs a new buffer when ignoring whitespace or
2352 * expanding leading tabs to spaces.
2354 * We trust the caller to tell us if the update can be done
2355 * in place (postlen==0) or not.
2357 old = postimage->buf;
2358 if (postlen)
2359 new = postimage->buf = xmalloc(postlen);
2360 else
2361 new = old;
2362 fixed = preimage->buf;
2364 for (i = reduced = ctx = 0; i < postimage->nr; i++) {
2365 size_t l_len = postimage->line[i].len;
2366 if (!(postimage->line[i].flag & LINE_COMMON)) {
2367 /* an added line -- no counterparts in preimage */
2368 memmove(new, old, l_len);
2369 old += l_len;
2370 new += l_len;
2371 continue;
2374 /* a common context -- skip it in the original postimage */
2375 old += l_len;
2377 /* and find the corresponding one in the fixed preimage */
2378 while (ctx < preimage->nr &&
2379 !(preimage->line[ctx].flag & LINE_COMMON)) {
2380 fixed += preimage->line[ctx].len;
2381 ctx++;
2385 * preimage is expected to run out, if the caller
2386 * fixed addition of trailing blank lines.
2388 if (preimage->nr <= ctx) {
2389 reduced++;
2390 continue;
2393 /* and copy it in, while fixing the line length */
2394 l_len = preimage->line[ctx].len;
2395 memcpy(new, fixed, l_len);
2396 new += l_len;
2397 fixed += l_len;
2398 postimage->line[i].len = l_len;
2399 ctx++;
2402 if (postlen
2403 ? postlen < new - postimage->buf
2404 : postimage->len < new - postimage->buf)
2405 die("BUG: caller miscounted postlen: asked %d, orig = %d, used = %d",
2406 (int)postlen, (int) postimage->len, (int)(new - postimage->buf));
2408 /* Fix the length of the whole thing */
2409 postimage->len = new - postimage->buf;
2410 postimage->nr -= reduced;
2413 static int line_by_line_fuzzy_match(struct image *img,
2414 struct image *preimage,
2415 struct image *postimage,
2416 unsigned long try,
2417 int try_lno,
2418 int preimage_limit)
2420 int i;
2421 size_t imgoff = 0;
2422 size_t preoff = 0;
2423 size_t postlen = postimage->len;
2424 size_t extra_chars;
2425 char *buf;
2426 char *preimage_eof;
2427 char *preimage_end;
2428 struct strbuf fixed;
2429 char *fixed_buf;
2430 size_t fixed_len;
2432 for (i = 0; i < preimage_limit; i++) {
2433 size_t prelen = preimage->line[i].len;
2434 size_t imglen = img->line[try_lno+i].len;
2436 if (!fuzzy_matchlines(img->buf + try + imgoff, imglen,
2437 preimage->buf + preoff, prelen))
2438 return 0;
2439 if (preimage->line[i].flag & LINE_COMMON)
2440 postlen += imglen - prelen;
2441 imgoff += imglen;
2442 preoff += prelen;
2446 * Ok, the preimage matches with whitespace fuzz.
2448 * imgoff now holds the true length of the target that
2449 * matches the preimage before the end of the file.
2451 * Count the number of characters in the preimage that fall
2452 * beyond the end of the file and make sure that all of them
2453 * are whitespace characters. (This can only happen if
2454 * we are removing blank lines at the end of the file.)
2456 buf = preimage_eof = preimage->buf + preoff;
2457 for ( ; i < preimage->nr; i++)
2458 preoff += preimage->line[i].len;
2459 preimage_end = preimage->buf + preoff;
2460 for ( ; buf < preimage_end; buf++)
2461 if (!isspace(*buf))
2462 return 0;
2465 * Update the preimage and the common postimage context
2466 * lines to use the same whitespace as the target.
2467 * If whitespace is missing in the target (i.e.
2468 * if the preimage extends beyond the end of the file),
2469 * use the whitespace from the preimage.
2471 extra_chars = preimage_end - preimage_eof;
2472 strbuf_init(&fixed, imgoff + extra_chars);
2473 strbuf_add(&fixed, img->buf + try, imgoff);
2474 strbuf_add(&fixed, preimage_eof, extra_chars);
2475 fixed_buf = strbuf_detach(&fixed, &fixed_len);
2476 update_pre_post_images(preimage, postimage,
2477 fixed_buf, fixed_len, postlen);
2478 return 1;
2481 static int match_fragment(struct apply_state *state,
2482 struct image *img,
2483 struct image *preimage,
2484 struct image *postimage,
2485 unsigned long try,
2486 int try_lno,
2487 unsigned ws_rule,
2488 int match_beginning, int match_end)
2490 int i;
2491 char *fixed_buf, *buf, *orig, *target;
2492 struct strbuf fixed;
2493 size_t fixed_len, postlen;
2494 int preimage_limit;
2496 if (preimage->nr + try_lno <= img->nr) {
2498 * The hunk falls within the boundaries of img.
2500 preimage_limit = preimage->nr;
2501 if (match_end && (preimage->nr + try_lno != img->nr))
2502 return 0;
2503 } else if (state->ws_error_action == correct_ws_error &&
2504 (ws_rule & WS_BLANK_AT_EOF)) {
2506 * This hunk extends beyond the end of img, and we are
2507 * removing blank lines at the end of the file. This
2508 * many lines from the beginning of the preimage must
2509 * match with img, and the remainder of the preimage
2510 * must be blank.
2512 preimage_limit = img->nr - try_lno;
2513 } else {
2515 * The hunk extends beyond the end of the img and
2516 * we are not removing blanks at the end, so we
2517 * should reject the hunk at this position.
2519 return 0;
2522 if (match_beginning && try_lno)
2523 return 0;
2525 /* Quick hash check */
2526 for (i = 0; i < preimage_limit; i++)
2527 if ((img->line[try_lno + i].flag & LINE_PATCHED) ||
2528 (preimage->line[i].hash != img->line[try_lno + i].hash))
2529 return 0;
2531 if (preimage_limit == preimage->nr) {
2533 * Do we have an exact match? If we were told to match
2534 * at the end, size must be exactly at try+fragsize,
2535 * otherwise try+fragsize must be still within the preimage,
2536 * and either case, the old piece should match the preimage
2537 * exactly.
2539 if ((match_end
2540 ? (try + preimage->len == img->len)
2541 : (try + preimage->len <= img->len)) &&
2542 !memcmp(img->buf + try, preimage->buf, preimage->len))
2543 return 1;
2544 } else {
2546 * The preimage extends beyond the end of img, so
2547 * there cannot be an exact match.
2549 * There must be one non-blank context line that match
2550 * a line before the end of img.
2552 char *buf_end;
2554 buf = preimage->buf;
2555 buf_end = buf;
2556 for (i = 0; i < preimage_limit; i++)
2557 buf_end += preimage->line[i].len;
2559 for ( ; buf < buf_end; buf++)
2560 if (!isspace(*buf))
2561 break;
2562 if (buf == buf_end)
2563 return 0;
2567 * No exact match. If we are ignoring whitespace, run a line-by-line
2568 * fuzzy matching. We collect all the line length information because
2569 * we need it to adjust whitespace if we match.
2571 if (state->ws_ignore_action == ignore_ws_change)
2572 return line_by_line_fuzzy_match(img, preimage, postimage,
2573 try, try_lno, preimage_limit);
2575 if (state->ws_error_action != correct_ws_error)
2576 return 0;
2579 * The hunk does not apply byte-by-byte, but the hash says
2580 * it might with whitespace fuzz. We weren't asked to
2581 * ignore whitespace, we were asked to correct whitespace
2582 * errors, so let's try matching after whitespace correction.
2584 * While checking the preimage against the target, whitespace
2585 * errors in both fixed, we count how large the corresponding
2586 * postimage needs to be. The postimage prepared by
2587 * apply_one_fragment() has whitespace errors fixed on added
2588 * lines already, but the common lines were propagated as-is,
2589 * which may become longer when their whitespace errors are
2590 * fixed.
2593 /* First count added lines in postimage */
2594 postlen = 0;
2595 for (i = 0; i < postimage->nr; i++) {
2596 if (!(postimage->line[i].flag & LINE_COMMON))
2597 postlen += postimage->line[i].len;
2601 * The preimage may extend beyond the end of the file,
2602 * but in this loop we will only handle the part of the
2603 * preimage that falls within the file.
2605 strbuf_init(&fixed, preimage->len + 1);
2606 orig = preimage->buf;
2607 target = img->buf + try;
2608 for (i = 0; i < preimage_limit; i++) {
2609 size_t oldlen = preimage->line[i].len;
2610 size_t tgtlen = img->line[try_lno + i].len;
2611 size_t fixstart = fixed.len;
2612 struct strbuf tgtfix;
2613 int match;
2615 /* Try fixing the line in the preimage */
2616 ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);
2618 /* Try fixing the line in the target */
2619 strbuf_init(&tgtfix, tgtlen);
2620 ws_fix_copy(&tgtfix, target, tgtlen, ws_rule, NULL);
2623 * If they match, either the preimage was based on
2624 * a version before our tree fixed whitespace breakage,
2625 * or we are lacking a whitespace-fix patch the tree
2626 * the preimage was based on already had (i.e. target
2627 * has whitespace breakage, the preimage doesn't).
2628 * In either case, we are fixing the whitespace breakages
2629 * so we might as well take the fix together with their
2630 * real change.
2632 match = (tgtfix.len == fixed.len - fixstart &&
2633 !memcmp(tgtfix.buf, fixed.buf + fixstart,
2634 fixed.len - fixstart));
2636 /* Add the length if this is common with the postimage */
2637 if (preimage->line[i].flag & LINE_COMMON)
2638 postlen += tgtfix.len;
2640 strbuf_release(&tgtfix);
2641 if (!match)
2642 goto unmatch_exit;
2644 orig += oldlen;
2645 target += tgtlen;
2650 * Now handle the lines in the preimage that falls beyond the
2651 * end of the file (if any). They will only match if they are
2652 * empty or only contain whitespace (if WS_BLANK_AT_EOL is
2653 * false).
2655 for ( ; i < preimage->nr; i++) {
2656 size_t fixstart = fixed.len; /* start of the fixed preimage */
2657 size_t oldlen = preimage->line[i].len;
2658 int j;
2660 /* Try fixing the line in the preimage */
2661 ws_fix_copy(&fixed, orig, oldlen, ws_rule, NULL);
2663 for (j = fixstart; j < fixed.len; j++)
2664 if (!isspace(fixed.buf[j]))
2665 goto unmatch_exit;
2667 orig += oldlen;
2671 * Yes, the preimage is based on an older version that still
2672 * has whitespace breakages unfixed, and fixing them makes the
2673 * hunk match. Update the context lines in the postimage.
2675 fixed_buf = strbuf_detach(&fixed, &fixed_len);
2676 if (postlen < postimage->len)
2677 postlen = 0;
2678 update_pre_post_images(preimage, postimage,
2679 fixed_buf, fixed_len, postlen);
2680 return 1;
2682 unmatch_exit:
2683 strbuf_release(&fixed);
2684 return 0;
2687 static int find_pos(struct apply_state *state,
2688 struct image *img,
2689 struct image *preimage,
2690 struct image *postimage,
2691 int line,
2692 unsigned ws_rule,
2693 int match_beginning, int match_end)
2695 int i;
2696 unsigned long backwards, forwards, try;
2697 int backwards_lno, forwards_lno, try_lno;
2700 * If match_beginning or match_end is specified, there is no
2701 * point starting from a wrong line that will never match and
2702 * wander around and wait for a match at the specified end.
2704 if (match_beginning)
2705 line = 0;
2706 else if (match_end)
2707 line = img->nr - preimage->nr;
2710 * Because the comparison is unsigned, the following test
2711 * will also take care of a negative line number that can
2712 * result when match_end and preimage is larger than the target.
2714 if ((size_t) line > img->nr)
2715 line = img->nr;
2717 try = 0;
2718 for (i = 0; i < line; i++)
2719 try += img->line[i].len;
2722 * There's probably some smart way to do this, but I'll leave
2723 * that to the smart and beautiful people. I'm simple and stupid.
2725 backwards = try;
2726 backwards_lno = line;
2727 forwards = try;
2728 forwards_lno = line;
2729 try_lno = line;
2731 for (i = 0; ; i++) {
2732 if (match_fragment(state, img, preimage, postimage,
2733 try, try_lno, ws_rule,
2734 match_beginning, match_end))
2735 return try_lno;
2737 again:
2738 if (backwards_lno == 0 && forwards_lno == img->nr)
2739 break;
2741 if (i & 1) {
2742 if (backwards_lno == 0) {
2743 i++;
2744 goto again;
2746 backwards_lno--;
2747 backwards -= img->line[backwards_lno].len;
2748 try = backwards;
2749 try_lno = backwards_lno;
2750 } else {
2751 if (forwards_lno == img->nr) {
2752 i++;
2753 goto again;
2755 forwards += img->line[forwards_lno].len;
2756 forwards_lno++;
2757 try = forwards;
2758 try_lno = forwards_lno;
2762 return -1;
2765 static void remove_first_line(struct image *img)
2767 img->buf += img->line[0].len;
2768 img->len -= img->line[0].len;
2769 img->line++;
2770 img->nr--;
2773 static void remove_last_line(struct image *img)
2775 img->len -= img->line[--img->nr].len;
2779 * The change from "preimage" and "postimage" has been found to
2780 * apply at applied_pos (counts in line numbers) in "img".
2781 * Update "img" to remove "preimage" and replace it with "postimage".
2783 static void update_image(struct apply_state *state,
2784 struct image *img,
2785 int applied_pos,
2786 struct image *preimage,
2787 struct image *postimage)
2790 * remove the copy of preimage at offset in img
2791 * and replace it with postimage
2793 int i, nr;
2794 size_t remove_count, insert_count, applied_at = 0;
2795 char *result;
2796 int preimage_limit;
2799 * If we are removing blank lines at the end of img,
2800 * the preimage may extend beyond the end.
2801 * If that is the case, we must be careful only to
2802 * remove the part of the preimage that falls within
2803 * the boundaries of img. Initialize preimage_limit
2804 * to the number of lines in the preimage that falls
2805 * within the boundaries.
2807 preimage_limit = preimage->nr;
2808 if (preimage_limit > img->nr - applied_pos)
2809 preimage_limit = img->nr - applied_pos;
2811 for (i = 0; i < applied_pos; i++)
2812 applied_at += img->line[i].len;
2814 remove_count = 0;
2815 for (i = 0; i < preimage_limit; i++)
2816 remove_count += img->line[applied_pos + i].len;
2817 insert_count = postimage->len;
2819 /* Adjust the contents */
2820 result = xmalloc(st_add3(st_sub(img->len, remove_count), insert_count, 1));
2821 memcpy(result, img->buf, applied_at);
2822 memcpy(result + applied_at, postimage->buf, postimage->len);
2823 memcpy(result + applied_at + postimage->len,
2824 img->buf + (applied_at + remove_count),
2825 img->len - (applied_at + remove_count));
2826 free(img->buf);
2827 img->buf = result;
2828 img->len += insert_count - remove_count;
2829 result[img->len] = '\0';
2831 /* Adjust the line table */
2832 nr = img->nr + postimage->nr - preimage_limit;
2833 if (preimage_limit < postimage->nr) {
2835 * NOTE: this knows that we never call remove_first_line()
2836 * on anything other than pre/post image.
2838 REALLOC_ARRAY(img->line, nr);
2839 img->line_allocated = img->line;
2841 if (preimage_limit != postimage->nr)
2842 memmove(img->line + applied_pos + postimage->nr,
2843 img->line + applied_pos + preimage_limit,
2844 (img->nr - (applied_pos + preimage_limit)) *
2845 sizeof(*img->line));
2846 memcpy(img->line + applied_pos,
2847 postimage->line,
2848 postimage->nr * sizeof(*img->line));
2849 if (!state->allow_overlap)
2850 for (i = 0; i < postimage->nr; i++)
2851 img->line[applied_pos + i].flag |= LINE_PATCHED;
2852 img->nr = nr;
2856 * Use the patch-hunk text in "frag" to prepare two images (preimage and
2857 * postimage) for the hunk. Find lines that match "preimage" in "img" and
2858 * replace the part of "img" with "postimage" text.
2860 static int apply_one_fragment(struct apply_state *state,
2861 struct image *img, struct fragment *frag,
2862 int inaccurate_eof, unsigned ws_rule,
2863 int nth_fragment)
2865 int match_beginning, match_end;
2866 const char *patch = frag->patch;
2867 int size = frag->size;
2868 char *old, *oldlines;
2869 struct strbuf newlines;
2870 int new_blank_lines_at_end = 0;
2871 int found_new_blank_lines_at_end = 0;
2872 int hunk_linenr = frag->linenr;
2873 unsigned long leading, trailing;
2874 int pos, applied_pos;
2875 struct image preimage;
2876 struct image postimage;
2878 memset(&preimage, 0, sizeof(preimage));
2879 memset(&postimage, 0, sizeof(postimage));
2880 oldlines = xmalloc(size);
2881 strbuf_init(&newlines, size);
2883 old = oldlines;
2884 while (size > 0) {
2885 char first;
2886 int len = linelen(patch, size);
2887 int plen;
2888 int added_blank_line = 0;
2889 int is_blank_context = 0;
2890 size_t start;
2892 if (!len)
2893 break;
2896 * "plen" is how much of the line we should use for
2897 * the actual patch data. Normally we just remove the
2898 * first character on the line, but if the line is
2899 * followed by "\ No newline", then we also remove the
2900 * last one (which is the newline, of course).
2902 plen = len - 1;
2903 if (len < size && patch[len] == '\\')
2904 plen--;
2905 first = *patch;
2906 if (state->apply_in_reverse) {
2907 if (first == '-')
2908 first = '+';
2909 else if (first == '+')
2910 first = '-';
2913 switch (first) {
2914 case '\n':
2915 /* Newer GNU diff, empty context line */
2916 if (plen < 0)
2917 /* ... followed by '\No newline'; nothing */
2918 break;
2919 *old++ = '\n';
2920 strbuf_addch(&newlines, '\n');
2921 add_line_info(&preimage, "\n", 1, LINE_COMMON);
2922 add_line_info(&postimage, "\n", 1, LINE_COMMON);
2923 is_blank_context = 1;
2924 break;
2925 case ' ':
2926 if (plen && (ws_rule & WS_BLANK_AT_EOF) &&
2927 ws_blank_line(patch + 1, plen, ws_rule))
2928 is_blank_context = 1;
2929 case '-':
2930 memcpy(old, patch + 1, plen);
2931 add_line_info(&preimage, old, plen,
2932 (first == ' ' ? LINE_COMMON : 0));
2933 old += plen;
2934 if (first == '-')
2935 break;
2936 /* Fall-through for ' ' */
2937 case '+':
2938 /* --no-add does not add new lines */
2939 if (first == '+' && state->no_add)
2940 break;
2942 start = newlines.len;
2943 if (first != '+' ||
2944 !state->whitespace_error ||
2945 state->ws_error_action != correct_ws_error) {
2946 strbuf_add(&newlines, patch + 1, plen);
2948 else {
2949 ws_fix_copy(&newlines, patch + 1, plen, ws_rule, &state->applied_after_fixing_ws);
2951 add_line_info(&postimage, newlines.buf + start, newlines.len - start,
2952 (first == '+' ? 0 : LINE_COMMON));
2953 if (first == '+' &&
2954 (ws_rule & WS_BLANK_AT_EOF) &&
2955 ws_blank_line(patch + 1, plen, ws_rule))
2956 added_blank_line = 1;
2957 break;
2958 case '@': case '\\':
2959 /* Ignore it, we already handled it */
2960 break;
2961 default:
2962 if (state->apply_verbosity > verbosity_normal)
2963 error(_("invalid start of line: '%c'"), first);
2964 applied_pos = -1;
2965 goto out;
2967 if (added_blank_line) {
2968 if (!new_blank_lines_at_end)
2969 found_new_blank_lines_at_end = hunk_linenr;
2970 new_blank_lines_at_end++;
2972 else if (is_blank_context)
2974 else
2975 new_blank_lines_at_end = 0;
2976 patch += len;
2977 size -= len;
2978 hunk_linenr++;
2980 if (inaccurate_eof &&
2981 old > oldlines && old[-1] == '\n' &&
2982 newlines.len > 0 && newlines.buf[newlines.len - 1] == '\n') {
2983 old--;
2984 strbuf_setlen(&newlines, newlines.len - 1);
2987 leading = frag->leading;
2988 trailing = frag->trailing;
2991 * A hunk to change lines at the beginning would begin with
2992 * @@ -1,L +N,M @@
2993 * but we need to be careful. -U0 that inserts before the second
2994 * line also has this pattern.
2996 * And a hunk to add to an empty file would begin with
2997 * @@ -0,0 +N,M @@
2999 * In other words, a hunk that is (frag->oldpos <= 1) with or
3000 * without leading context must match at the beginning.
3002 match_beginning = (!frag->oldpos ||
3003 (frag->oldpos == 1 && !state->unidiff_zero));
3006 * A hunk without trailing lines must match at the end.
3007 * However, we simply cannot tell if a hunk must match end
3008 * from the lack of trailing lines if the patch was generated
3009 * with unidiff without any context.
3011 match_end = !state->unidiff_zero && !trailing;
3013 pos = frag->newpos ? (frag->newpos - 1) : 0;
3014 preimage.buf = oldlines;
3015 preimage.len = old - oldlines;
3016 postimage.buf = newlines.buf;
3017 postimage.len = newlines.len;
3018 preimage.line = preimage.line_allocated;
3019 postimage.line = postimage.line_allocated;
3021 for (;;) {
3023 applied_pos = find_pos(state, img, &preimage, &postimage, pos,
3024 ws_rule, match_beginning, match_end);
3026 if (applied_pos >= 0)
3027 break;
3029 /* Am I at my context limits? */
3030 if ((leading <= state->p_context) && (trailing <= state->p_context))
3031 break;
3032 if (match_beginning || match_end) {
3033 match_beginning = match_end = 0;
3034 continue;
3038 * Reduce the number of context lines; reduce both
3039 * leading and trailing if they are equal otherwise
3040 * just reduce the larger context.
3042 if (leading >= trailing) {
3043 remove_first_line(&preimage);
3044 remove_first_line(&postimage);
3045 pos--;
3046 leading--;
3048 if (trailing > leading) {
3049 remove_last_line(&preimage);
3050 remove_last_line(&postimage);
3051 trailing--;
3055 if (applied_pos >= 0) {
3056 if (new_blank_lines_at_end &&
3057 preimage.nr + applied_pos >= img->nr &&
3058 (ws_rule & WS_BLANK_AT_EOF) &&
3059 state->ws_error_action != nowarn_ws_error) {
3060 record_ws_error(state, WS_BLANK_AT_EOF, "+", 1,
3061 found_new_blank_lines_at_end);
3062 if (state->ws_error_action == correct_ws_error) {
3063 while (new_blank_lines_at_end--)
3064 remove_last_line(&postimage);
3067 * We would want to prevent write_out_results()
3068 * from taking place in apply_patch() that follows
3069 * the callchain led us here, which is:
3070 * apply_patch->check_patch_list->check_patch->
3071 * apply_data->apply_fragments->apply_one_fragment
3073 if (state->ws_error_action == die_on_ws_error)
3074 state->apply = 0;
3077 if (state->apply_verbosity > verbosity_normal && applied_pos != pos) {
3078 int offset = applied_pos - pos;
3079 if (state->apply_in_reverse)
3080 offset = 0 - offset;
3081 fprintf_ln(stderr,
3082 Q_("Hunk #%d succeeded at %d (offset %d line).",
3083 "Hunk #%d succeeded at %d (offset %d lines).",
3084 offset),
3085 nth_fragment, applied_pos + 1, offset);
3089 * Warn if it was necessary to reduce the number
3090 * of context lines.
3092 if ((leading != frag->leading ||
3093 trailing != frag->trailing) && state->apply_verbosity > verbosity_silent)
3094 fprintf_ln(stderr, _("Context reduced to (%ld/%ld)"
3095 " to apply fragment at %d"),
3096 leading, trailing, applied_pos+1);
3097 update_image(state, img, applied_pos, &preimage, &postimage);
3098 } else {
3099 if (state->apply_verbosity > verbosity_normal)
3100 error(_("while searching for:\n%.*s"),
3101 (int)(old - oldlines), oldlines);
3104 out:
3105 free(oldlines);
3106 strbuf_release(&newlines);
3107 free(preimage.line_allocated);
3108 free(postimage.line_allocated);
3110 return (applied_pos < 0);
3113 static int apply_binary_fragment(struct apply_state *state,
3114 struct image *img,
3115 struct patch *patch)
3117 struct fragment *fragment = patch->fragments;
3118 unsigned long len;
3119 void *dst;
3121 if (!fragment)
3122 return error(_("missing binary patch data for '%s'"),
3123 patch->new_name ?
3124 patch->new_name :
3125 patch->old_name);
3127 /* Binary patch is irreversible without the optional second hunk */
3128 if (state->apply_in_reverse) {
3129 if (!fragment->next)
3130 return error(_("cannot reverse-apply a binary patch "
3131 "without the reverse hunk to '%s'"),
3132 patch->new_name
3133 ? patch->new_name : patch->old_name);
3134 fragment = fragment->next;
3136 switch (fragment->binary_patch_method) {
3137 case BINARY_DELTA_DEFLATED:
3138 dst = patch_delta(img->buf, img->len, fragment->patch,
3139 fragment->size, &len);
3140 if (!dst)
3141 return -1;
3142 clear_image(img);
3143 img->buf = dst;
3144 img->len = len;
3145 return 0;
3146 case BINARY_LITERAL_DEFLATED:
3147 clear_image(img);
3148 img->len = fragment->size;
3149 img->buf = xmemdupz(fragment->patch, img->len);
3150 return 0;
3152 return -1;
3156 * Replace "img" with the result of applying the binary patch.
3157 * The binary patch data itself in patch->fragment is still kept
3158 * but the preimage prepared by the caller in "img" is freed here
3159 * or in the helper function apply_binary_fragment() this calls.
3161 static int apply_binary(struct apply_state *state,
3162 struct image *img,
3163 struct patch *patch)
3165 const char *name = patch->old_name ? patch->old_name : patch->new_name;
3166 struct object_id oid;
3169 * For safety, we require patch index line to contain
3170 * full 40-byte textual SHA1 for old and new, at least for now.
3172 if (strlen(patch->old_sha1_prefix) != 40 ||
3173 strlen(patch->new_sha1_prefix) != 40 ||
3174 get_oid_hex(patch->old_sha1_prefix, &oid) ||
3175 get_oid_hex(patch->new_sha1_prefix, &oid))
3176 return error(_("cannot apply binary patch to '%s' "
3177 "without full index line"), name);
3179 if (patch->old_name) {
3181 * See if the old one matches what the patch
3182 * applies to.
3184 hash_sha1_file(img->buf, img->len, blob_type, oid.hash);
3185 if (strcmp(oid_to_hex(&oid), patch->old_sha1_prefix))
3186 return error(_("the patch applies to '%s' (%s), "
3187 "which does not match the "
3188 "current contents."),
3189 name, oid_to_hex(&oid));
3191 else {
3192 /* Otherwise, the old one must be empty. */
3193 if (img->len)
3194 return error(_("the patch applies to an empty "
3195 "'%s' but it is not empty"), name);
3198 get_oid_hex(patch->new_sha1_prefix, &oid);
3199 if (is_null_oid(&oid)) {
3200 clear_image(img);
3201 return 0; /* deletion patch */
3204 if (has_sha1_file(oid.hash)) {
3205 /* We already have the postimage */
3206 enum object_type type;
3207 unsigned long size;
3208 char *result;
3210 result = read_sha1_file(oid.hash, &type, &size);
3211 if (!result)
3212 return error(_("the necessary postimage %s for "
3213 "'%s' cannot be read"),
3214 patch->new_sha1_prefix, name);
3215 clear_image(img);
3216 img->buf = result;
3217 img->len = size;
3218 } else {
3220 * We have verified buf matches the preimage;
3221 * apply the patch data to it, which is stored
3222 * in the patch->fragments->{patch,size}.
3224 if (apply_binary_fragment(state, img, patch))
3225 return error(_("binary patch does not apply to '%s'"),
3226 name);
3228 /* verify that the result matches */
3229 hash_sha1_file(img->buf, img->len, blob_type, oid.hash);
3230 if (strcmp(oid_to_hex(&oid), patch->new_sha1_prefix))
3231 return error(_("binary patch to '%s' creates incorrect result (expecting %s, got %s)"),
3232 name, patch->new_sha1_prefix, oid_to_hex(&oid));
3235 return 0;
3238 static int apply_fragments(struct apply_state *state, struct image *img, struct patch *patch)
3240 struct fragment *frag = patch->fragments;
3241 const char *name = patch->old_name ? patch->old_name : patch->new_name;
3242 unsigned ws_rule = patch->ws_rule;
3243 unsigned inaccurate_eof = patch->inaccurate_eof;
3244 int nth = 0;
3246 if (patch->is_binary)
3247 return apply_binary(state, img, patch);
3249 while (frag) {
3250 nth++;
3251 if (apply_one_fragment(state, img, frag, inaccurate_eof, ws_rule, nth)) {
3252 error(_("patch failed: %s:%ld"), name, frag->oldpos);
3253 if (!state->apply_with_reject)
3254 return -1;
3255 frag->rejected = 1;
3257 frag = frag->next;
3259 return 0;
3262 static int read_blob_object(struct strbuf *buf, const struct object_id *oid, unsigned mode)
3264 if (S_ISGITLINK(mode)) {
3265 strbuf_grow(buf, 100);
3266 strbuf_addf(buf, "Subproject commit %s\n", oid_to_hex(oid));
3267 } else {
3268 enum object_type type;
3269 unsigned long sz;
3270 char *result;
3272 result = read_sha1_file(oid->hash, &type, &sz);
3273 if (!result)
3274 return -1;
3275 /* XXX read_sha1_file NUL-terminates */
3276 strbuf_attach(buf, result, sz, sz + 1);
3278 return 0;
3281 static int read_file_or_gitlink(const struct cache_entry *ce, struct strbuf *buf)
3283 if (!ce)
3284 return 0;
3285 return read_blob_object(buf, &ce->oid, ce->ce_mode);
3288 static struct patch *in_fn_table(struct apply_state *state, const char *name)
3290 struct string_list_item *item;
3292 if (name == NULL)
3293 return NULL;
3295 item = string_list_lookup(&state->fn_table, name);
3296 if (item != NULL)
3297 return (struct patch *)item->util;
3299 return NULL;
3303 * item->util in the filename table records the status of the path.
3304 * Usually it points at a patch (whose result records the contents
3305 * of it after applying it), but it could be PATH_WAS_DELETED for a
3306 * path that a previously applied patch has already removed, or
3307 * PATH_TO_BE_DELETED for a path that a later patch would remove.
3309 * The latter is needed to deal with a case where two paths A and B
3310 * are swapped by first renaming A to B and then renaming B to A;
3311 * moving A to B should not be prevented due to presence of B as we
3312 * will remove it in a later patch.
3314 #define PATH_TO_BE_DELETED ((struct patch *) -2)
3315 #define PATH_WAS_DELETED ((struct patch *) -1)
3317 static int to_be_deleted(struct patch *patch)
3319 return patch == PATH_TO_BE_DELETED;
3322 static int was_deleted(struct patch *patch)
3324 return patch == PATH_WAS_DELETED;
3327 static void add_to_fn_table(struct apply_state *state, struct patch *patch)
3329 struct string_list_item *item;
3332 * Always add new_name unless patch is a deletion
3333 * This should cover the cases for normal diffs,
3334 * file creations and copies
3336 if (patch->new_name != NULL) {
3337 item = string_list_insert(&state->fn_table, patch->new_name);
3338 item->util = patch;
3342 * store a failure on rename/deletion cases because
3343 * later chunks shouldn't patch old names
3345 if ((patch->new_name == NULL) || (patch->is_rename)) {
3346 item = string_list_insert(&state->fn_table, patch->old_name);
3347 item->util = PATH_WAS_DELETED;
3351 static void prepare_fn_table(struct apply_state *state, struct patch *patch)
3354 * store information about incoming file deletion
3356 while (patch) {
3357 if ((patch->new_name == NULL) || (patch->is_rename)) {
3358 struct string_list_item *item;
3359 item = string_list_insert(&state->fn_table, patch->old_name);
3360 item->util = PATH_TO_BE_DELETED;
3362 patch = patch->next;
3366 static int checkout_target(struct index_state *istate,
3367 struct cache_entry *ce, struct stat *st)
3369 struct checkout costate = CHECKOUT_INIT;
3371 costate.refresh_cache = 1;
3372 costate.istate = istate;
3373 if (checkout_entry(ce, &costate, NULL) || lstat(ce->name, st))
3374 return error(_("cannot checkout %s"), ce->name);
3375 return 0;
3378 static struct patch *previous_patch(struct apply_state *state,
3379 struct patch *patch,
3380 int *gone)
3382 struct patch *previous;
3384 *gone = 0;
3385 if (patch->is_copy || patch->is_rename)
3386 return NULL; /* "git" patches do not depend on the order */
3388 previous = in_fn_table(state, patch->old_name);
3389 if (!previous)
3390 return NULL;
3392 if (to_be_deleted(previous))
3393 return NULL; /* the deletion hasn't happened yet */
3395 if (was_deleted(previous))
3396 *gone = 1;
3398 return previous;
3401 static int verify_index_match(const struct cache_entry *ce, struct stat *st)
3403 if (S_ISGITLINK(ce->ce_mode)) {
3404 if (!S_ISDIR(st->st_mode))
3405 return -1;
3406 return 0;
3408 return ce_match_stat(ce, st, CE_MATCH_IGNORE_VALID|CE_MATCH_IGNORE_SKIP_WORKTREE);
3411 #define SUBMODULE_PATCH_WITHOUT_INDEX 1
3413 static int load_patch_target(struct apply_state *state,
3414 struct strbuf *buf,
3415 const struct cache_entry *ce,
3416 struct stat *st,
3417 struct patch *patch,
3418 const char *name,
3419 unsigned expected_mode)
3421 if (state->cached || state->check_index) {
3422 if (read_file_or_gitlink(ce, buf))
3423 return error(_("failed to read %s"), name);
3424 } else if (name) {
3425 if (S_ISGITLINK(expected_mode)) {
3426 if (ce)
3427 return read_file_or_gitlink(ce, buf);
3428 else
3429 return SUBMODULE_PATCH_WITHOUT_INDEX;
3430 } else if (has_symlink_leading_path(name, strlen(name))) {
3431 return error(_("reading from '%s' beyond a symbolic link"), name);
3432 } else {
3433 if (read_old_data(st, patch, name, buf))
3434 return error(_("failed to read %s"), name);
3437 return 0;
3441 * We are about to apply "patch"; populate the "image" with the
3442 * current version we have, from the working tree or from the index,
3443 * depending on the situation e.g. --cached/--index. If we are
3444 * applying a non-git patch that incrementally updates the tree,
3445 * we read from the result of a previous diff.
3447 static int load_preimage(struct apply_state *state,
3448 struct image *image,
3449 struct patch *patch, struct stat *st,
3450 const struct cache_entry *ce)
3452 struct strbuf buf = STRBUF_INIT;
3453 size_t len;
3454 char *img;
3455 struct patch *previous;
3456 int status;
3458 previous = previous_patch(state, patch, &status);
3459 if (status)
3460 return error(_("path %s has been renamed/deleted"),
3461 patch->old_name);
3462 if (previous) {
3463 /* We have a patched copy in memory; use that. */
3464 strbuf_add(&buf, previous->result, previous->resultsize);
3465 } else {
3466 status = load_patch_target(state, &buf, ce, st, patch,
3467 patch->old_name, patch->old_mode);
3468 if (status < 0)
3469 return status;
3470 else if (status == SUBMODULE_PATCH_WITHOUT_INDEX) {
3472 * There is no way to apply subproject
3473 * patch without looking at the index.
3474 * NEEDSWORK: shouldn't this be flagged
3475 * as an error???
3477 free_fragment_list(patch->fragments);
3478 patch->fragments = NULL;
3479 } else if (status) {
3480 return error(_("failed to read %s"), patch->old_name);
3484 img = strbuf_detach(&buf, &len);
3485 prepare_image(image, img, len, !patch->is_binary);
3486 return 0;
3489 static int three_way_merge(struct image *image,
3490 char *path,
3491 const struct object_id *base,
3492 const struct object_id *ours,
3493 const struct object_id *theirs)
3495 mmfile_t base_file, our_file, their_file;
3496 mmbuffer_t result = { NULL };
3497 int status;
3499 read_mmblob(&base_file, base);
3500 read_mmblob(&our_file, ours);
3501 read_mmblob(&their_file, theirs);
3502 status = ll_merge(&result, path,
3503 &base_file, "base",
3504 &our_file, "ours",
3505 &their_file, "theirs", NULL);
3506 free(base_file.ptr);
3507 free(our_file.ptr);
3508 free(their_file.ptr);
3509 if (status < 0 || !result.ptr) {
3510 free(result.ptr);
3511 return -1;
3513 clear_image(image);
3514 image->buf = result.ptr;
3515 image->len = result.size;
3517 return status;
3521 * When directly falling back to add/add three-way merge, we read from
3522 * the current contents of the new_name. In no cases other than that
3523 * this function will be called.
3525 static int load_current(struct apply_state *state,
3526 struct image *image,
3527 struct patch *patch)
3529 struct strbuf buf = STRBUF_INIT;
3530 int status, pos;
3531 size_t len;
3532 char *img;
3533 struct stat st;
3534 struct cache_entry *ce;
3535 char *name = patch->new_name;
3536 unsigned mode = patch->new_mode;
3538 if (!patch->is_new)
3539 die("BUG: patch to %s is not a creation", patch->old_name);
3541 pos = cache_name_pos(name, strlen(name));
3542 if (pos < 0)
3543 return error(_("%s: does not exist in index"), name);
3544 ce = active_cache[pos];
3545 if (lstat(name, &st)) {
3546 if (errno != ENOENT)
3547 return error_errno("%s", name);
3548 if (checkout_target(&the_index, ce, &st))
3549 return -1;
3551 if (verify_index_match(ce, &st))
3552 return error(_("%s: does not match index"), name);
3554 status = load_patch_target(state, &buf, ce, &st, patch, name, mode);
3555 if (status < 0)
3556 return status;
3557 else if (status)
3558 return -1;
3559 img = strbuf_detach(&buf, &len);
3560 prepare_image(image, img, len, !patch->is_binary);
3561 return 0;
3564 static int try_threeway(struct apply_state *state,
3565 struct image *image,
3566 struct patch *patch,
3567 struct stat *st,
3568 const struct cache_entry *ce)
3570 struct object_id pre_oid, post_oid, our_oid;
3571 struct strbuf buf = STRBUF_INIT;
3572 size_t len;
3573 int status;
3574 char *img;
3575 struct image tmp_image;
3577 /* No point falling back to 3-way merge in these cases */
3578 if (patch->is_delete ||
3579 S_ISGITLINK(patch->old_mode) || S_ISGITLINK(patch->new_mode))
3580 return -1;
3582 /* Preimage the patch was prepared for */
3583 if (patch->is_new)
3584 write_sha1_file("", 0, blob_type, pre_oid.hash);
3585 else if (get_sha1(patch->old_sha1_prefix, pre_oid.hash) ||
3586 read_blob_object(&buf, &pre_oid, patch->old_mode))
3587 return error(_("repository lacks the necessary blob to fall back on 3-way merge."));
3589 if (state->apply_verbosity > verbosity_silent)
3590 fprintf(stderr, _("Falling back to three-way merge...\n"));
3592 img = strbuf_detach(&buf, &len);
3593 prepare_image(&tmp_image, img, len, 1);
3594 /* Apply the patch to get the post image */
3595 if (apply_fragments(state, &tmp_image, patch) < 0) {
3596 clear_image(&tmp_image);
3597 return -1;
3599 /* post_oid is theirs */
3600 write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, post_oid.hash);
3601 clear_image(&tmp_image);
3603 /* our_oid is ours */
3604 if (patch->is_new) {
3605 if (load_current(state, &tmp_image, patch))
3606 return error(_("cannot read the current contents of '%s'"),
3607 patch->new_name);
3608 } else {
3609 if (load_preimage(state, &tmp_image, patch, st, ce))
3610 return error(_("cannot read the current contents of '%s'"),
3611 patch->old_name);
3613 write_sha1_file(tmp_image.buf, tmp_image.len, blob_type, our_oid.hash);
3614 clear_image(&tmp_image);
3616 /* in-core three-way merge between post and our using pre as base */
3617 status = three_way_merge(image, patch->new_name,
3618 &pre_oid, &our_oid, &post_oid);
3619 if (status < 0) {
3620 if (state->apply_verbosity > verbosity_silent)
3621 fprintf(stderr,
3622 _("Failed to fall back on three-way merge...\n"));
3623 return status;
3626 if (status) {
3627 patch->conflicted_threeway = 1;
3628 if (patch->is_new)
3629 oidclr(&patch->threeway_stage[0]);
3630 else
3631 oidcpy(&patch->threeway_stage[0], &pre_oid);
3632 oidcpy(&patch->threeway_stage[1], &our_oid);
3633 oidcpy(&patch->threeway_stage[2], &post_oid);
3634 if (state->apply_verbosity > verbosity_silent)
3635 fprintf(stderr,
3636 _("Applied patch to '%s' with conflicts.\n"),
3637 patch->new_name);
3638 } else {
3639 if (state->apply_verbosity > verbosity_silent)
3640 fprintf(stderr,
3641 _("Applied patch to '%s' cleanly.\n"),
3642 patch->new_name);
3644 return 0;
3647 static int apply_data(struct apply_state *state, struct patch *patch,
3648 struct stat *st, const struct cache_entry *ce)
3650 struct image image;
3652 if (load_preimage(state, &image, patch, st, ce) < 0)
3653 return -1;
3655 if (patch->direct_to_threeway ||
3656 apply_fragments(state, &image, patch) < 0) {
3657 /* Note: with --reject, apply_fragments() returns 0 */
3658 if (!state->threeway || try_threeway(state, &image, patch, st, ce) < 0)
3659 return -1;
3661 patch->result = image.buf;
3662 patch->resultsize = image.len;
3663 add_to_fn_table(state, patch);
3664 free(image.line_allocated);
3666 if (0 < patch->is_delete && patch->resultsize)
3667 return error(_("removal patch leaves file contents"));
3669 return 0;
3673 * If "patch" that we are looking at modifies or deletes what we have,
3674 * we would want it not to lose any local modification we have, either
3675 * in the working tree or in the index.
3677 * This also decides if a non-git patch is a creation patch or a
3678 * modification to an existing empty file. We do not check the state
3679 * of the current tree for a creation patch in this function; the caller
3680 * check_patch() separately makes sure (and errors out otherwise) that
3681 * the path the patch creates does not exist in the current tree.
3683 static int check_preimage(struct apply_state *state,
3684 struct patch *patch,
3685 struct cache_entry **ce,
3686 struct stat *st)
3688 const char *old_name = patch->old_name;
3689 struct patch *previous = NULL;
3690 int stat_ret = 0, status;
3691 unsigned st_mode = 0;
3693 if (!old_name)
3694 return 0;
3696 assert(patch->is_new <= 0);
3697 previous = previous_patch(state, patch, &status);
3699 if (status)
3700 return error(_("path %s has been renamed/deleted"), old_name);
3701 if (previous) {
3702 st_mode = previous->new_mode;
3703 } else if (!state->cached) {
3704 stat_ret = lstat(old_name, st);
3705 if (stat_ret && errno != ENOENT)
3706 return error_errno("%s", old_name);
3709 if (state->check_index && !previous) {
3710 int pos = cache_name_pos(old_name, strlen(old_name));
3711 if (pos < 0) {
3712 if (patch->is_new < 0)
3713 goto is_new;
3714 return error(_("%s: does not exist in index"), old_name);
3716 *ce = active_cache[pos];
3717 if (stat_ret < 0) {
3718 if (checkout_target(&the_index, *ce, st))
3719 return -1;
3721 if (!state->cached && verify_index_match(*ce, st))
3722 return error(_("%s: does not match index"), old_name);
3723 if (state->cached)
3724 st_mode = (*ce)->ce_mode;
3725 } else if (stat_ret < 0) {
3726 if (patch->is_new < 0)
3727 goto is_new;
3728 return error_errno("%s", old_name);
3731 if (!state->cached && !previous)
3732 st_mode = ce_mode_from_stat(*ce, st->st_mode);
3734 if (patch->is_new < 0)
3735 patch->is_new = 0;
3736 if (!patch->old_mode)
3737 patch->old_mode = st_mode;
3738 if ((st_mode ^ patch->old_mode) & S_IFMT)
3739 return error(_("%s: wrong type"), old_name);
3740 if (st_mode != patch->old_mode)
3741 warning(_("%s has type %o, expected %o"),
3742 old_name, st_mode, patch->old_mode);
3743 if (!patch->new_mode && !patch->is_delete)
3744 patch->new_mode = st_mode;
3745 return 0;
3747 is_new:
3748 patch->is_new = 1;
3749 patch->is_delete = 0;
3750 FREE_AND_NULL(patch->old_name);
3751 return 0;
3755 #define EXISTS_IN_INDEX 1
3756 #define EXISTS_IN_WORKTREE 2
3758 static int check_to_create(struct apply_state *state,
3759 const char *new_name,
3760 int ok_if_exists)
3762 struct stat nst;
3764 if (state->check_index &&
3765 cache_name_pos(new_name, strlen(new_name)) >= 0 &&
3766 !ok_if_exists)
3767 return EXISTS_IN_INDEX;
3768 if (state->cached)
3769 return 0;
3771 if (!lstat(new_name, &nst)) {
3772 if (S_ISDIR(nst.st_mode) || ok_if_exists)
3773 return 0;
3775 * A leading component of new_name might be a symlink
3776 * that is going to be removed with this patch, but
3777 * still pointing at somewhere that has the path.
3778 * In such a case, path "new_name" does not exist as
3779 * far as git is concerned.
3781 if (has_symlink_leading_path(new_name, strlen(new_name)))
3782 return 0;
3784 return EXISTS_IN_WORKTREE;
3785 } else if (!is_missing_file_error(errno)) {
3786 return error_errno("%s", new_name);
3788 return 0;
3791 static uintptr_t register_symlink_changes(struct apply_state *state,
3792 const char *path,
3793 uintptr_t what)
3795 struct string_list_item *ent;
3797 ent = string_list_lookup(&state->symlink_changes, path);
3798 if (!ent) {
3799 ent = string_list_insert(&state->symlink_changes, path);
3800 ent->util = (void *)0;
3802 ent->util = (void *)(what | ((uintptr_t)ent->util));
3803 return (uintptr_t)ent->util;
3806 static uintptr_t check_symlink_changes(struct apply_state *state, const char *path)
3808 struct string_list_item *ent;
3810 ent = string_list_lookup(&state->symlink_changes, path);
3811 if (!ent)
3812 return 0;
3813 return (uintptr_t)ent->util;
3816 static void prepare_symlink_changes(struct apply_state *state, struct patch *patch)
3818 for ( ; patch; patch = patch->next) {
3819 if ((patch->old_name && S_ISLNK(patch->old_mode)) &&
3820 (patch->is_rename || patch->is_delete))
3821 /* the symlink at patch->old_name is removed */
3822 register_symlink_changes(state, patch->old_name, APPLY_SYMLINK_GOES_AWAY);
3824 if (patch->new_name && S_ISLNK(patch->new_mode))
3825 /* the symlink at patch->new_name is created or remains */
3826 register_symlink_changes(state, patch->new_name, APPLY_SYMLINK_IN_RESULT);
3830 static int path_is_beyond_symlink_1(struct apply_state *state, struct strbuf *name)
3832 do {
3833 unsigned int change;
3835 while (--name->len && name->buf[name->len] != '/')
3836 ; /* scan backwards */
3837 if (!name->len)
3838 break;
3839 name->buf[name->len] = '\0';
3840 change = check_symlink_changes(state, name->buf);
3841 if (change & APPLY_SYMLINK_IN_RESULT)
3842 return 1;
3843 if (change & APPLY_SYMLINK_GOES_AWAY)
3845 * This cannot be "return 0", because we may
3846 * see a new one created at a higher level.
3848 continue;
3850 /* otherwise, check the preimage */
3851 if (state->check_index) {
3852 struct cache_entry *ce;
3854 ce = cache_file_exists(name->buf, name->len, ignore_case);
3855 if (ce && S_ISLNK(ce->ce_mode))
3856 return 1;
3857 } else {
3858 struct stat st;
3859 if (!lstat(name->buf, &st) && S_ISLNK(st.st_mode))
3860 return 1;
3862 } while (1);
3863 return 0;
3866 static int path_is_beyond_symlink(struct apply_state *state, const char *name_)
3868 int ret;
3869 struct strbuf name = STRBUF_INIT;
3871 assert(*name_ != '\0');
3872 strbuf_addstr(&name, name_);
3873 ret = path_is_beyond_symlink_1(state, &name);
3874 strbuf_release(&name);
3876 return ret;
3879 static int check_unsafe_path(struct patch *patch)
3881 const char *old_name = NULL;
3882 const char *new_name = NULL;
3883 if (patch->is_delete)
3884 old_name = patch->old_name;
3885 else if (!patch->is_new && !patch->is_copy)
3886 old_name = patch->old_name;
3887 if (!patch->is_delete)
3888 new_name = patch->new_name;
3890 if (old_name && !verify_path(old_name))
3891 return error(_("invalid path '%s'"), old_name);
3892 if (new_name && !verify_path(new_name))
3893 return error(_("invalid path '%s'"), new_name);
3894 return 0;
3898 * Check and apply the patch in-core; leave the result in patch->result
3899 * for the caller to write it out to the final destination.
3901 static int check_patch(struct apply_state *state, struct patch *patch)
3903 struct stat st;
3904 const char *old_name = patch->old_name;
3905 const char *new_name = patch->new_name;
3906 const char *name = old_name ? old_name : new_name;
3907 struct cache_entry *ce = NULL;
3908 struct patch *tpatch;
3909 int ok_if_exists;
3910 int status;
3912 patch->rejected = 1; /* we will drop this after we succeed */
3914 status = check_preimage(state, patch, &ce, &st);
3915 if (status)
3916 return status;
3917 old_name = patch->old_name;
3920 * A type-change diff is always split into a patch to delete
3921 * old, immediately followed by a patch to create new (see
3922 * diff.c::run_diff()); in such a case it is Ok that the entry
3923 * to be deleted by the previous patch is still in the working
3924 * tree and in the index.
3926 * A patch to swap-rename between A and B would first rename A
3927 * to B and then rename B to A. While applying the first one,
3928 * the presence of B should not stop A from getting renamed to
3929 * B; ask to_be_deleted() about the later rename. Removal of
3930 * B and rename from A to B is handled the same way by asking
3931 * was_deleted().
3933 if ((tpatch = in_fn_table(state, new_name)) &&
3934 (was_deleted(tpatch) || to_be_deleted(tpatch)))
3935 ok_if_exists = 1;
3936 else
3937 ok_if_exists = 0;
3939 if (new_name &&
3940 ((0 < patch->is_new) || patch->is_rename || patch->is_copy)) {
3941 int err = check_to_create(state, new_name, ok_if_exists);
3943 if (err && state->threeway) {
3944 patch->direct_to_threeway = 1;
3945 } else switch (err) {
3946 case 0:
3947 break; /* happy */
3948 case EXISTS_IN_INDEX:
3949 return error(_("%s: already exists in index"), new_name);
3950 break;
3951 case EXISTS_IN_WORKTREE:
3952 return error(_("%s: already exists in working directory"),
3953 new_name);
3954 default:
3955 return err;
3958 if (!patch->new_mode) {
3959 if (0 < patch->is_new)
3960 patch->new_mode = S_IFREG | 0644;
3961 else
3962 patch->new_mode = patch->old_mode;
3966 if (new_name && old_name) {
3967 int same = !strcmp(old_name, new_name);
3968 if (!patch->new_mode)
3969 patch->new_mode = patch->old_mode;
3970 if ((patch->old_mode ^ patch->new_mode) & S_IFMT) {
3971 if (same)
3972 return error(_("new mode (%o) of %s does not "
3973 "match old mode (%o)"),
3974 patch->new_mode, new_name,
3975 patch->old_mode);
3976 else
3977 return error(_("new mode (%o) of %s does not "
3978 "match old mode (%o) of %s"),
3979 patch->new_mode, new_name,
3980 patch->old_mode, old_name);
3984 if (!state->unsafe_paths && check_unsafe_path(patch))
3985 return -128;
3988 * An attempt to read from or delete a path that is beyond a
3989 * symbolic link will be prevented by load_patch_target() that
3990 * is called at the beginning of apply_data() so we do not
3991 * have to worry about a patch marked with "is_delete" bit
3992 * here. We however need to make sure that the patch result
3993 * is not deposited to a path that is beyond a symbolic link
3994 * here.
3996 if (!patch->is_delete && path_is_beyond_symlink(state, patch->new_name))
3997 return error(_("affected file '%s' is beyond a symbolic link"),
3998 patch->new_name);
4000 if (apply_data(state, patch, &st, ce) < 0)
4001 return error(_("%s: patch does not apply"), name);
4002 patch->rejected = 0;
4003 return 0;
4006 static int check_patch_list(struct apply_state *state, struct patch *patch)
4008 int err = 0;
4010 prepare_symlink_changes(state, patch);
4011 prepare_fn_table(state, patch);
4012 while (patch) {
4013 int res;
4014 if (state->apply_verbosity > verbosity_normal)
4015 say_patch_name(stderr,
4016 _("Checking patch %s..."), patch);
4017 res = check_patch(state, patch);
4018 if (res == -128)
4019 return -128;
4020 err |= res;
4021 patch = patch->next;
4023 return err;
4026 static int read_apply_cache(struct apply_state *state)
4028 if (state->index_file)
4029 return read_cache_from(state->index_file);
4030 else
4031 return read_cache();
4034 /* This function tries to read the object name from the current index */
4035 static int get_current_oid(struct apply_state *state, const char *path,
4036 struct object_id *oid)
4038 int pos;
4040 if (read_apply_cache(state) < 0)
4041 return -1;
4042 pos = cache_name_pos(path, strlen(path));
4043 if (pos < 0)
4044 return -1;
4045 oidcpy(oid, &active_cache[pos]->oid);
4046 return 0;
4049 static int preimage_oid_in_gitlink_patch(struct patch *p, struct object_id *oid)
4052 * A usable gitlink patch has only one fragment (hunk) that looks like:
4053 * @@ -1 +1 @@
4054 * -Subproject commit <old sha1>
4055 * +Subproject commit <new sha1>
4056 * or
4057 * @@ -1 +0,0 @@
4058 * -Subproject commit <old sha1>
4059 * for a removal patch.
4061 struct fragment *hunk = p->fragments;
4062 static const char heading[] = "-Subproject commit ";
4063 char *preimage;
4065 if (/* does the patch have only one hunk? */
4066 hunk && !hunk->next &&
4067 /* is its preimage one line? */
4068 hunk->oldpos == 1 && hunk->oldlines == 1 &&
4069 /* does preimage begin with the heading? */
4070 (preimage = memchr(hunk->patch, '\n', hunk->size)) != NULL &&
4071 starts_with(++preimage, heading) &&
4072 /* does it record full SHA-1? */
4073 !get_oid_hex(preimage + sizeof(heading) - 1, oid) &&
4074 preimage[sizeof(heading) + GIT_SHA1_HEXSZ - 1] == '\n' &&
4075 /* does the abbreviated name on the index line agree with it? */
4076 starts_with(preimage + sizeof(heading) - 1, p->old_sha1_prefix))
4077 return 0; /* it all looks fine */
4079 /* we may have full object name on the index line */
4080 return get_oid_hex(p->old_sha1_prefix, oid);
4083 /* Build an index that contains the just the files needed for a 3way merge */
4084 static int build_fake_ancestor(struct apply_state *state, struct patch *list)
4086 struct patch *patch;
4087 struct index_state result = { NULL };
4088 static struct lock_file lock;
4089 int res;
4091 /* Once we start supporting the reverse patch, it may be
4092 * worth showing the new sha1 prefix, but until then...
4094 for (patch = list; patch; patch = patch->next) {
4095 struct object_id oid;
4096 struct cache_entry *ce;
4097 const char *name;
4099 name = patch->old_name ? patch->old_name : patch->new_name;
4100 if (0 < patch->is_new)
4101 continue;
4103 if (S_ISGITLINK(patch->old_mode)) {
4104 if (!preimage_oid_in_gitlink_patch(patch, &oid))
4105 ; /* ok, the textual part looks sane */
4106 else
4107 return error(_("sha1 information is lacking or "
4108 "useless for submodule %s"), name);
4109 } else if (!get_sha1_blob(patch->old_sha1_prefix, oid.hash)) {
4110 ; /* ok */
4111 } else if (!patch->lines_added && !patch->lines_deleted) {
4112 /* mode-only change: update the current */
4113 if (get_current_oid(state, patch->old_name, &oid))
4114 return error(_("mode change for %s, which is not "
4115 "in current HEAD"), name);
4116 } else
4117 return error(_("sha1 information is lacking or useless "
4118 "(%s)."), name);
4120 ce = make_cache_entry(patch->old_mode, oid.hash, name, 0, 0);
4121 if (!ce)
4122 return error(_("make_cache_entry failed for path '%s'"),
4123 name);
4124 if (add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD)) {
4125 free(ce);
4126 return error(_("could not add %s to temporary index"),
4127 name);
4131 hold_lock_file_for_update(&lock, state->fake_ancestor, LOCK_DIE_ON_ERROR);
4132 res = write_locked_index(&result, &lock, COMMIT_LOCK);
4133 discard_index(&result);
4135 if (res)
4136 return error(_("could not write temporary index to %s"),
4137 state->fake_ancestor);
4139 return 0;
4142 static void stat_patch_list(struct apply_state *state, struct patch *patch)
4144 int files, adds, dels;
4146 for (files = adds = dels = 0 ; patch ; patch = patch->next) {
4147 files++;
4148 adds += patch->lines_added;
4149 dels += patch->lines_deleted;
4150 show_stats(state, patch);
4153 print_stat_summary(stdout, files, adds, dels);
4156 static void numstat_patch_list(struct apply_state *state,
4157 struct patch *patch)
4159 for ( ; patch; patch = patch->next) {
4160 const char *name;
4161 name = patch->new_name ? patch->new_name : patch->old_name;
4162 if (patch->is_binary)
4163 printf("-\t-\t");
4164 else
4165 printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);
4166 write_name_quoted(name, stdout, state->line_termination);
4170 static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
4172 if (mode)
4173 printf(" %s mode %06o %s\n", newdelete, mode, name);
4174 else
4175 printf(" %s %s\n", newdelete, name);
4178 static void show_mode_change(struct patch *p, int show_name)
4180 if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
4181 if (show_name)
4182 printf(" mode change %06o => %06o %s\n",
4183 p->old_mode, p->new_mode, p->new_name);
4184 else
4185 printf(" mode change %06o => %06o\n",
4186 p->old_mode, p->new_mode);
4190 static void show_rename_copy(struct patch *p)
4192 const char *renamecopy = p->is_rename ? "rename" : "copy";
4193 const char *old, *new;
4195 /* Find common prefix */
4196 old = p->old_name;
4197 new = p->new_name;
4198 while (1) {
4199 const char *slash_old, *slash_new;
4200 slash_old = strchr(old, '/');
4201 slash_new = strchr(new, '/');
4202 if (!slash_old ||
4203 !slash_new ||
4204 slash_old - old != slash_new - new ||
4205 memcmp(old, new, slash_new - new))
4206 break;
4207 old = slash_old + 1;
4208 new = slash_new + 1;
4210 /* p->old_name thru old is the common prefix, and old and new
4211 * through the end of names are renames
4213 if (old != p->old_name)
4214 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
4215 (int)(old - p->old_name), p->old_name,
4216 old, new, p->score);
4217 else
4218 printf(" %s %s => %s (%d%%)\n", renamecopy,
4219 p->old_name, p->new_name, p->score);
4220 show_mode_change(p, 0);
4223 static void summary_patch_list(struct patch *patch)
4225 struct patch *p;
4227 for (p = patch; p; p = p->next) {
4228 if (p->is_new)
4229 show_file_mode_name("create", p->new_mode, p->new_name);
4230 else if (p->is_delete)
4231 show_file_mode_name("delete", p->old_mode, p->old_name);
4232 else {
4233 if (p->is_rename || p->is_copy)
4234 show_rename_copy(p);
4235 else {
4236 if (p->score) {
4237 printf(" rewrite %s (%d%%)\n",
4238 p->new_name, p->score);
4239 show_mode_change(p, 0);
4241 else
4242 show_mode_change(p, 1);
4248 static void patch_stats(struct apply_state *state, struct patch *patch)
4250 int lines = patch->lines_added + patch->lines_deleted;
4252 if (lines > state->max_change)
4253 state->max_change = lines;
4254 if (patch->old_name) {
4255 int len = quote_c_style(patch->old_name, NULL, NULL, 0);
4256 if (!len)
4257 len = strlen(patch->old_name);
4258 if (len > state->max_len)
4259 state->max_len = len;
4261 if (patch->new_name) {
4262 int len = quote_c_style(patch->new_name, NULL, NULL, 0);
4263 if (!len)
4264 len = strlen(patch->new_name);
4265 if (len > state->max_len)
4266 state->max_len = len;
4270 static int remove_file(struct apply_state *state, struct patch *patch, int rmdir_empty)
4272 if (state->update_index) {
4273 if (remove_file_from_cache(patch->old_name) < 0)
4274 return error(_("unable to remove %s from index"), patch->old_name);
4276 if (!state->cached) {
4277 if (!remove_or_warn(patch->old_mode, patch->old_name) && rmdir_empty) {
4278 remove_path(patch->old_name);
4281 return 0;
4284 static int add_index_file(struct apply_state *state,
4285 const char *path,
4286 unsigned mode,
4287 void *buf,
4288 unsigned long size)
4290 struct stat st;
4291 struct cache_entry *ce;
4292 int namelen = strlen(path);
4293 unsigned ce_size = cache_entry_size(namelen);
4295 if (!state->update_index)
4296 return 0;
4298 ce = xcalloc(1, ce_size);
4299 memcpy(ce->name, path, namelen);
4300 ce->ce_mode = create_ce_mode(mode);
4301 ce->ce_flags = create_ce_flags(0);
4302 ce->ce_namelen = namelen;
4303 if (S_ISGITLINK(mode)) {
4304 const char *s;
4306 if (!skip_prefix(buf, "Subproject commit ", &s) ||
4307 get_oid_hex(s, &ce->oid)) {
4308 free(ce);
4309 return error(_("corrupt patch for submodule %s"), path);
4311 } else {
4312 if (!state->cached) {
4313 if (lstat(path, &st) < 0) {
4314 free(ce);
4315 return error_errno(_("unable to stat newly "
4316 "created file '%s'"),
4317 path);
4319 fill_stat_cache_info(ce, &st);
4321 if (write_sha1_file(buf, size, blob_type, ce->oid.hash) < 0) {
4322 free(ce);
4323 return error(_("unable to create backing store "
4324 "for newly created file %s"), path);
4327 if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0) {
4328 free(ce);
4329 return error(_("unable to add cache entry for %s"), path);
4332 return 0;
4336 * Returns:
4337 * -1 if an unrecoverable error happened
4338 * 0 if everything went well
4339 * 1 if a recoverable error happened
4341 static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)
4343 int fd, res;
4344 struct strbuf nbuf = STRBUF_INIT;
4346 if (S_ISGITLINK(mode)) {
4347 struct stat st;
4348 if (!lstat(path, &st) && S_ISDIR(st.st_mode))
4349 return 0;
4350 return !!mkdir(path, 0777);
4353 if (has_symlinks && S_ISLNK(mode))
4354 /* Although buf:size is counted string, it also is NUL
4355 * terminated.
4357 return !!symlink(buf, path);
4359 fd = open(path, O_CREAT | O_EXCL | O_WRONLY, (mode & 0100) ? 0777 : 0666);
4360 if (fd < 0)
4361 return 1;
4363 if (convert_to_working_tree(path, buf, size, &nbuf)) {
4364 size = nbuf.len;
4365 buf = nbuf.buf;
4368 res = write_in_full(fd, buf, size) < 0;
4369 if (res)
4370 error_errno(_("failed to write to '%s'"), path);
4371 strbuf_release(&nbuf);
4373 if (close(fd) < 0 && !res)
4374 return error_errno(_("closing file '%s'"), path);
4376 return res ? -1 : 0;
4380 * We optimistically assume that the directories exist,
4381 * which is true 99% of the time anyway. If they don't,
4382 * we create them and try again.
4384 * Returns:
4385 * -1 on error
4386 * 0 otherwise
4388 static int create_one_file(struct apply_state *state,
4389 char *path,
4390 unsigned mode,
4391 const char *buf,
4392 unsigned long size)
4394 int res;
4396 if (state->cached)
4397 return 0;
4399 res = try_create_file(path, mode, buf, size);
4400 if (res < 0)
4401 return -1;
4402 if (!res)
4403 return 0;
4405 if (errno == ENOENT) {
4406 if (safe_create_leading_directories(path))
4407 return 0;
4408 res = try_create_file(path, mode, buf, size);
4409 if (res < 0)
4410 return -1;
4411 if (!res)
4412 return 0;
4415 if (errno == EEXIST || errno == EACCES) {
4416 /* We may be trying to create a file where a directory
4417 * used to be.
4419 struct stat st;
4420 if (!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))
4421 errno = EEXIST;
4424 if (errno == EEXIST) {
4425 unsigned int nr = getpid();
4427 for (;;) {
4428 char newpath[PATH_MAX];
4429 mksnpath(newpath, sizeof(newpath), "%s~%u", path, nr);
4430 res = try_create_file(newpath, mode, buf, size);
4431 if (res < 0)
4432 return -1;
4433 if (!res) {
4434 if (!rename(newpath, path))
4435 return 0;
4436 unlink_or_warn(newpath);
4437 break;
4439 if (errno != EEXIST)
4440 break;
4441 ++nr;
4444 return error_errno(_("unable to write file '%s' mode %o"),
4445 path, mode);
4448 static int add_conflicted_stages_file(struct apply_state *state,
4449 struct patch *patch)
4451 int stage, namelen;
4452 unsigned ce_size, mode;
4453 struct cache_entry *ce;
4455 if (!state->update_index)
4456 return 0;
4457 namelen = strlen(patch->new_name);
4458 ce_size = cache_entry_size(namelen);
4459 mode = patch->new_mode ? patch->new_mode : (S_IFREG | 0644);
4461 remove_file_from_cache(patch->new_name);
4462 for (stage = 1; stage < 4; stage++) {
4463 if (is_null_oid(&patch->threeway_stage[stage - 1]))
4464 continue;
4465 ce = xcalloc(1, ce_size);
4466 memcpy(ce->name, patch->new_name, namelen);
4467 ce->ce_mode = create_ce_mode(mode);
4468 ce->ce_flags = create_ce_flags(stage);
4469 ce->ce_namelen = namelen;
4470 oidcpy(&ce->oid, &patch->threeway_stage[stage - 1]);
4471 if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0) {
4472 free(ce);
4473 return error(_("unable to add cache entry for %s"),
4474 patch->new_name);
4478 return 0;
4481 static int create_file(struct apply_state *state, struct patch *patch)
4483 char *path = patch->new_name;
4484 unsigned mode = patch->new_mode;
4485 unsigned long size = patch->resultsize;
4486 char *buf = patch->result;
4488 if (!mode)
4489 mode = S_IFREG | 0644;
4490 if (create_one_file(state, path, mode, buf, size))
4491 return -1;
4493 if (patch->conflicted_threeway)
4494 return add_conflicted_stages_file(state, patch);
4495 else
4496 return add_index_file(state, path, mode, buf, size);
4499 /* phase zero is to remove, phase one is to create */
4500 static int write_out_one_result(struct apply_state *state,
4501 struct patch *patch,
4502 int phase)
4504 if (patch->is_delete > 0) {
4505 if (phase == 0)
4506 return remove_file(state, patch, 1);
4507 return 0;
4509 if (patch->is_new > 0 || patch->is_copy) {
4510 if (phase == 1)
4511 return create_file(state, patch);
4512 return 0;
4515 * Rename or modification boils down to the same
4516 * thing: remove the old, write the new
4518 if (phase == 0)
4519 return remove_file(state, patch, patch->is_rename);
4520 if (phase == 1)
4521 return create_file(state, patch);
4522 return 0;
4525 static int write_out_one_reject(struct apply_state *state, struct patch *patch)
4527 FILE *rej;
4528 char namebuf[PATH_MAX];
4529 struct fragment *frag;
4530 int cnt = 0;
4531 struct strbuf sb = STRBUF_INIT;
4533 for (cnt = 0, frag = patch->fragments; frag; frag = frag->next) {
4534 if (!frag->rejected)
4535 continue;
4536 cnt++;
4539 if (!cnt) {
4540 if (state->apply_verbosity > verbosity_normal)
4541 say_patch_name(stderr,
4542 _("Applied patch %s cleanly."), patch);
4543 return 0;
4546 /* This should not happen, because a removal patch that leaves
4547 * contents are marked "rejected" at the patch level.
4549 if (!patch->new_name)
4550 die(_("internal error"));
4552 /* Say this even without --verbose */
4553 strbuf_addf(&sb, Q_("Applying patch %%s with %d reject...",
4554 "Applying patch %%s with %d rejects...",
4555 cnt),
4556 cnt);
4557 if (state->apply_verbosity > verbosity_silent)
4558 say_patch_name(stderr, sb.buf, patch);
4559 strbuf_release(&sb);
4561 cnt = strlen(patch->new_name);
4562 if (ARRAY_SIZE(namebuf) <= cnt + 5) {
4563 cnt = ARRAY_SIZE(namebuf) - 5;
4564 warning(_("truncating .rej filename to %.*s.rej"),
4565 cnt - 1, patch->new_name);
4567 memcpy(namebuf, patch->new_name, cnt);
4568 memcpy(namebuf + cnt, ".rej", 5);
4570 rej = fopen(namebuf, "w");
4571 if (!rej)
4572 return error_errno(_("cannot open %s"), namebuf);
4574 /* Normal git tools never deal with .rej, so do not pretend
4575 * this is a git patch by saying --git or giving extended
4576 * headers. While at it, maybe please "kompare" that wants
4577 * the trailing TAB and some garbage at the end of line ;-).
4579 fprintf(rej, "diff a/%s b/%s\t(rejected hunks)\n",
4580 patch->new_name, patch->new_name);
4581 for (cnt = 1, frag = patch->fragments;
4582 frag;
4583 cnt++, frag = frag->next) {
4584 if (!frag->rejected) {
4585 if (state->apply_verbosity > verbosity_silent)
4586 fprintf_ln(stderr, _("Hunk #%d applied cleanly."), cnt);
4587 continue;
4589 if (state->apply_verbosity > verbosity_silent)
4590 fprintf_ln(stderr, _("Rejected hunk #%d."), cnt);
4591 fprintf(rej, "%.*s", frag->size, frag->patch);
4592 if (frag->patch[frag->size-1] != '\n')
4593 fputc('\n', rej);
4595 fclose(rej);
4596 return -1;
4600 * Returns:
4601 * -1 if an error happened
4602 * 0 if the patch applied cleanly
4603 * 1 if the patch did not apply cleanly
4605 static int write_out_results(struct apply_state *state, struct patch *list)
4607 int phase;
4608 int errs = 0;
4609 struct patch *l;
4610 struct string_list cpath = STRING_LIST_INIT_DUP;
4612 for (phase = 0; phase < 2; phase++) {
4613 l = list;
4614 while (l) {
4615 if (l->rejected)
4616 errs = 1;
4617 else {
4618 if (write_out_one_result(state, l, phase)) {
4619 string_list_clear(&cpath, 0);
4620 return -1;
4622 if (phase == 1) {
4623 if (write_out_one_reject(state, l))
4624 errs = 1;
4625 if (l->conflicted_threeway) {
4626 string_list_append(&cpath, l->new_name);
4627 errs = 1;
4631 l = l->next;
4635 if (cpath.nr) {
4636 struct string_list_item *item;
4638 string_list_sort(&cpath);
4639 if (state->apply_verbosity > verbosity_silent) {
4640 for_each_string_list_item(item, &cpath)
4641 fprintf(stderr, "U %s\n", item->string);
4643 string_list_clear(&cpath, 0);
4645 rerere(0);
4648 return errs;
4652 * Try to apply a patch.
4654 * Returns:
4655 * -128 if a bad error happened (like patch unreadable)
4656 * -1 if patch did not apply and user cannot deal with it
4657 * 0 if the patch applied
4658 * 1 if the patch did not apply but user might fix it
4660 static int apply_patch(struct apply_state *state,
4661 int fd,
4662 const char *filename,
4663 int options)
4665 size_t offset;
4666 struct strbuf buf = STRBUF_INIT; /* owns the patch text */
4667 struct patch *list = NULL, **listp = &list;
4668 int skipped_patch = 0;
4669 int res = 0;
4671 state->patch_input_file = filename;
4672 if (read_patch_file(&buf, fd) < 0)
4673 return -128;
4674 offset = 0;
4675 while (offset < buf.len) {
4676 struct patch *patch;
4677 int nr;
4679 patch = xcalloc(1, sizeof(*patch));
4680 patch->inaccurate_eof = !!(options & APPLY_OPT_INACCURATE_EOF);
4681 patch->recount = !!(options & APPLY_OPT_RECOUNT);
4682 nr = parse_chunk(state, buf.buf + offset, buf.len - offset, patch);
4683 if (nr < 0) {
4684 free_patch(patch);
4685 if (nr == -128) {
4686 res = -128;
4687 goto end;
4689 break;
4691 if (state->apply_in_reverse)
4692 reverse_patches(patch);
4693 if (use_patch(state, patch)) {
4694 patch_stats(state, patch);
4695 *listp = patch;
4696 listp = &patch->next;
4698 else {
4699 if (state->apply_verbosity > verbosity_normal)
4700 say_patch_name(stderr, _("Skipped patch '%s'."), patch);
4701 free_patch(patch);
4702 skipped_patch++;
4704 offset += nr;
4707 if (!list && !skipped_patch) {
4708 error(_("unrecognized input"));
4709 res = -128;
4710 goto end;
4713 if (state->whitespace_error && (state->ws_error_action == die_on_ws_error))
4714 state->apply = 0;
4716 state->update_index = state->check_index && state->apply;
4717 if (state->update_index && state->newfd < 0) {
4718 if (state->index_file)
4719 state->newfd = hold_lock_file_for_update(state->lock_file,
4720 state->index_file,
4721 LOCK_DIE_ON_ERROR);
4722 else
4723 state->newfd = hold_locked_index(state->lock_file, LOCK_DIE_ON_ERROR);
4726 if (state->check_index && read_apply_cache(state) < 0) {
4727 error(_("unable to read index file"));
4728 res = -128;
4729 goto end;
4732 if (state->check || state->apply) {
4733 int r = check_patch_list(state, list);
4734 if (r == -128) {
4735 res = -128;
4736 goto end;
4738 if (r < 0 && !state->apply_with_reject) {
4739 res = -1;
4740 goto end;
4744 if (state->apply) {
4745 int write_res = write_out_results(state, list);
4746 if (write_res < 0) {
4747 res = -128;
4748 goto end;
4750 if (write_res > 0) {
4751 /* with --3way, we still need to write the index out */
4752 res = state->apply_with_reject ? -1 : 1;
4753 goto end;
4757 if (state->fake_ancestor &&
4758 build_fake_ancestor(state, list)) {
4759 res = -128;
4760 goto end;
4763 if (state->diffstat && state->apply_verbosity > verbosity_silent)
4764 stat_patch_list(state, list);
4766 if (state->numstat && state->apply_verbosity > verbosity_silent)
4767 numstat_patch_list(state, list);
4769 if (state->summary && state->apply_verbosity > verbosity_silent)
4770 summary_patch_list(list);
4772 end:
4773 free_patch_list(list);
4774 strbuf_release(&buf);
4775 string_list_clear(&state->fn_table, 0);
4776 return res;
4779 static int apply_option_parse_exclude(const struct option *opt,
4780 const char *arg, int unset)
4782 struct apply_state *state = opt->value;
4783 add_name_limit(state, arg, 1);
4784 return 0;
4787 static int apply_option_parse_include(const struct option *opt,
4788 const char *arg, int unset)
4790 struct apply_state *state = opt->value;
4791 add_name_limit(state, arg, 0);
4792 state->has_include = 1;
4793 return 0;
4796 static int apply_option_parse_p(const struct option *opt,
4797 const char *arg,
4798 int unset)
4800 struct apply_state *state = opt->value;
4801 state->p_value = atoi(arg);
4802 state->p_value_known = 1;
4803 return 0;
4806 static int apply_option_parse_space_change(const struct option *opt,
4807 const char *arg, int unset)
4809 struct apply_state *state = opt->value;
4810 if (unset)
4811 state->ws_ignore_action = ignore_ws_none;
4812 else
4813 state->ws_ignore_action = ignore_ws_change;
4814 return 0;
4817 static int apply_option_parse_whitespace(const struct option *opt,
4818 const char *arg, int unset)
4820 struct apply_state *state = opt->value;
4821 state->whitespace_option = arg;
4822 if (parse_whitespace_option(state, arg))
4823 exit(1);
4824 return 0;
4827 static int apply_option_parse_directory(const struct option *opt,
4828 const char *arg, int unset)
4830 struct apply_state *state = opt->value;
4831 strbuf_reset(&state->root);
4832 strbuf_addstr(&state->root, arg);
4833 strbuf_complete(&state->root, '/');
4834 return 0;
4837 int apply_all_patches(struct apply_state *state,
4838 int argc,
4839 const char **argv,
4840 int options)
4842 int i;
4843 int res;
4844 int errs = 0;
4845 int read_stdin = 1;
4847 for (i = 0; i < argc; i++) {
4848 const char *arg = argv[i];
4849 char *to_free = NULL;
4850 int fd;
4852 if (!strcmp(arg, "-")) {
4853 res = apply_patch(state, 0, "<stdin>", options);
4854 if (res < 0)
4855 goto end;
4856 errs |= res;
4857 read_stdin = 0;
4858 continue;
4859 } else
4860 arg = to_free = prefix_filename(state->prefix, arg);
4862 fd = open(arg, O_RDONLY);
4863 if (fd < 0) {
4864 error(_("can't open patch '%s': %s"), arg, strerror(errno));
4865 res = -128;
4866 free(to_free);
4867 goto end;
4869 read_stdin = 0;
4870 set_default_whitespace_mode(state);
4871 res = apply_patch(state, fd, arg, options);
4872 close(fd);
4873 free(to_free);
4874 if (res < 0)
4875 goto end;
4876 errs |= res;
4878 set_default_whitespace_mode(state);
4879 if (read_stdin) {
4880 res = apply_patch(state, 0, "<stdin>", options);
4881 if (res < 0)
4882 goto end;
4883 errs |= res;
4886 if (state->whitespace_error) {
4887 if (state->squelch_whitespace_errors &&
4888 state->squelch_whitespace_errors < state->whitespace_error) {
4889 int squelched =
4890 state->whitespace_error - state->squelch_whitespace_errors;
4891 warning(Q_("squelched %d whitespace error",
4892 "squelched %d whitespace errors",
4893 squelched),
4894 squelched);
4896 if (state->ws_error_action == die_on_ws_error) {
4897 error(Q_("%d line adds whitespace errors.",
4898 "%d lines add whitespace errors.",
4899 state->whitespace_error),
4900 state->whitespace_error);
4901 res = -128;
4902 goto end;
4904 if (state->applied_after_fixing_ws && state->apply)
4905 warning(Q_("%d line applied after"
4906 " fixing whitespace errors.",
4907 "%d lines applied after"
4908 " fixing whitespace errors.",
4909 state->applied_after_fixing_ws),
4910 state->applied_after_fixing_ws);
4911 else if (state->whitespace_error)
4912 warning(Q_("%d line adds whitespace errors.",
4913 "%d lines add whitespace errors.",
4914 state->whitespace_error),
4915 state->whitespace_error);
4918 if (state->update_index) {
4919 res = write_locked_index(&the_index, state->lock_file, COMMIT_LOCK);
4920 if (res) {
4921 error(_("Unable to write new index file"));
4922 res = -128;
4923 goto end;
4925 state->newfd = -1;
4928 res = !!errs;
4930 end:
4931 if (state->newfd >= 0) {
4932 rollback_lock_file(state->lock_file);
4933 state->newfd = -1;
4936 if (state->apply_verbosity <= verbosity_silent) {
4937 set_error_routine(state->saved_error_routine);
4938 set_warn_routine(state->saved_warn_routine);
4941 if (res > -1)
4942 return res;
4943 return (res == -1 ? 1 : 128);
4946 int apply_parse_options(int argc, const char **argv,
4947 struct apply_state *state,
4948 int *force_apply, int *options,
4949 const char * const *apply_usage)
4951 struct option builtin_apply_options[] = {
4952 { OPTION_CALLBACK, 0, "exclude", state, N_("path"),
4953 N_("don't apply changes matching the given path"),
4954 0, apply_option_parse_exclude },
4955 { OPTION_CALLBACK, 0, "include", state, N_("path"),
4956 N_("apply changes matching the given path"),
4957 0, apply_option_parse_include },
4958 { OPTION_CALLBACK, 'p', NULL, state, N_("num"),
4959 N_("remove <num> leading slashes from traditional diff paths"),
4960 0, apply_option_parse_p },
4961 OPT_BOOL(0, "no-add", &state->no_add,
4962 N_("ignore additions made by the patch")),
4963 OPT_BOOL(0, "stat", &state->diffstat,
4964 N_("instead of applying the patch, output diffstat for the input")),
4965 OPT_NOOP_NOARG(0, "allow-binary-replacement"),
4966 OPT_NOOP_NOARG(0, "binary"),
4967 OPT_BOOL(0, "numstat", &state->numstat,
4968 N_("show number of added and deleted lines in decimal notation")),
4969 OPT_BOOL(0, "summary", &state->summary,
4970 N_("instead of applying the patch, output a summary for the input")),
4971 OPT_BOOL(0, "check", &state->check,
4972 N_("instead of applying the patch, see if the patch is applicable")),
4973 OPT_BOOL(0, "index", &state->check_index,
4974 N_("make sure the patch is applicable to the current index")),
4975 OPT_BOOL(0, "cached", &state->cached,
4976 N_("apply a patch without touching the working tree")),
4977 OPT_BOOL(0, "unsafe-paths", &state->unsafe_paths,
4978 N_("accept a patch that touches outside the working area")),
4979 OPT_BOOL(0, "apply", force_apply,
4980 N_("also apply the patch (use with --stat/--summary/--check)")),
4981 OPT_BOOL('3', "3way", &state->threeway,
4982 N_( "attempt three-way merge if a patch does not apply")),
4983 OPT_FILENAME(0, "build-fake-ancestor", &state->fake_ancestor,
4984 N_("build a temporary index based on embedded index information")),
4985 /* Think twice before adding "--nul" synonym to this */
4986 OPT_SET_INT('z', NULL, &state->line_termination,
4987 N_("paths are separated with NUL character"), '\0'),
4988 OPT_INTEGER('C', NULL, &state->p_context,
4989 N_("ensure at least <n> lines of context match")),
4990 { OPTION_CALLBACK, 0, "whitespace", state, N_("action"),
4991 N_("detect new or modified lines that have whitespace errors"),
4992 0, apply_option_parse_whitespace },
4993 { OPTION_CALLBACK, 0, "ignore-space-change", state, NULL,
4994 N_("ignore changes in whitespace when finding context"),
4995 PARSE_OPT_NOARG, apply_option_parse_space_change },
4996 { OPTION_CALLBACK, 0, "ignore-whitespace", state, NULL,
4997 N_("ignore changes in whitespace when finding context"),
4998 PARSE_OPT_NOARG, apply_option_parse_space_change },
4999 OPT_BOOL('R', "reverse", &state->apply_in_reverse,
5000 N_("apply the patch in reverse")),
5001 OPT_BOOL(0, "unidiff-zero", &state->unidiff_zero,
5002 N_("don't expect at least one line of context")),
5003 OPT_BOOL(0, "reject", &state->apply_with_reject,
5004 N_("leave the rejected hunks in corresponding *.rej files")),
5005 OPT_BOOL(0, "allow-overlap", &state->allow_overlap,
5006 N_("allow overlapping hunks")),
5007 OPT__VERBOSE(&state->apply_verbosity, N_("be verbose")),
5008 OPT_BIT(0, "inaccurate-eof", options,
5009 N_("tolerate incorrectly detected missing new-line at the end of file"),
5010 APPLY_OPT_INACCURATE_EOF),
5011 OPT_BIT(0, "recount", options,
5012 N_("do not trust the line counts in the hunk headers"),
5013 APPLY_OPT_RECOUNT),
5014 { OPTION_CALLBACK, 0, "directory", state, N_("root"),
5015 N_("prepend <root> to all filenames"),
5016 0, apply_option_parse_directory },
5017 OPT_END()
5020 return parse_options(argc, argv, state->prefix, builtin_apply_options, apply_usage, 0);