4 * Copyright (C) Linus Torvalds, 2005
6 * This applies patches on top of some (arbitrary) version of the SCM.
10 #include "cache-tree.h"
17 * --check turns on checking that the working tree matches the
18 * files that are being modified, but doesn't apply the patch
19 * --stat does just a diffstat, and doesn't actually apply
20 * --numstat does numeric diffstat, and doesn't actually apply
21 * --index-info shows the old and new index info for paths if available.
22 * --index updates the cache as well.
23 * --cached updates only the cache without ever touching the working tree.
25 static const char *prefix;
26 static int prefix_length = -1;
27 static int newfd = -1;
29 static int unidiff_zero;
30 static int p_value = 1;
31 static int p_value_known;
32 static int check_index;
33 static int update_index;
40 static int apply_in_reverse;
41 static int apply_with_reject;
42 static int apply_verbosely;
44 static const char *fake_ancestor;
45 static int line_termination = '\n';
46 static unsigned long p_context = ULONG_MAX;
47 static const char apply_usage[] =
48 "git-apply [--stat] [--numstat] [--summary] [--check] [--index] [--cached] [--apply] [--no-add] [--index-info] [--allow-binary-replacement] [--reverse] [--reject] [--verbose] [-z] [-pNUM] [-CNUM] [--whitespace=<nowarn|warn|fix|error|error-all>] <patch>...";
50 static enum ws_error_action {
55 } ws_error_action = warn_on_ws_error;
56 static int whitespace_error;
57 static int squelch_whitespace_errors = 5;
58 static int applied_after_fixing_ws;
59 static const char *patch_input_file;
61 static void parse_whitespace_option(const char *option)
64 ws_error_action = warn_on_ws_error;
67 if (!strcmp(option, "warn")) {
68 ws_error_action = warn_on_ws_error;
71 if (!strcmp(option, "nowarn")) {
72 ws_error_action = nowarn_ws_error;
75 if (!strcmp(option, "error")) {
76 ws_error_action = die_on_ws_error;
79 if (!strcmp(option, "error-all")) {
80 ws_error_action = die_on_ws_error;
81 squelch_whitespace_errors = 0;
84 if (!strcmp(option, "strip") || !strcmp(option, "fix")) {
85 ws_error_action = correct_ws_error;
88 die("unrecognized whitespace option '%s'", option);
91 static void set_default_whitespace_mode(const char *whitespace_option)
93 if (!whitespace_option && !apply_default_whitespace)
94 ws_error_action = (apply ? warn_on_ws_error : nowarn_ws_error);
98 * For "diff-stat" like behaviour, we keep track of the biggest change
99 * we've seen, and the longest filename. That allows us to do simple
102 static int max_change, max_len;
105 * Various "current state", notably line numbers and what
106 * file (and how) we're patching right now.. The "is_xxxx"
107 * things are flags, where -1 means "don't know yet".
109 static int linenr = 1;
112 * This represents one "hunk" from a patch, starting with
113 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The
114 * patch text is pointed at by patch, and its byte length
115 * is stored in size. leading and trailing are the number
119 unsigned long leading, trailing;
120 unsigned long oldpos, oldlines;
121 unsigned long newpos, newlines;
125 struct fragment *next;
129 * When dealing with a binary patch, we reuse "leading" field
130 * to store the type of the binary hunk, either deflated "delta"
131 * or deflated "literal".
133 #define binary_patch_method leading
134 #define BINARY_DELTA_DEFLATED 1
135 #define BINARY_LITERAL_DEFLATED 2
138 * This represents a "patch" to a file, both metainfo changes
139 * such as creation/deletion, filemode and content changes represented
140 * as a series of fragments.
143 char *new_name, *old_name, *def_name;
144 unsigned int old_mode, new_mode;
145 int is_new, is_delete; /* -1 = unknown, 0 = false, 1 = true */
148 unsigned long deflate_origlen;
149 int lines_added, lines_deleted;
151 unsigned int is_toplevel_relative:1;
152 unsigned int inaccurate_eof:1;
153 unsigned int is_binary:1;
154 unsigned int is_copy:1;
155 unsigned int is_rename:1;
156 struct fragment *fragments;
159 char old_sha1_prefix[41];
160 char new_sha1_prefix[41];
165 * A line in a file, len-bytes long (includes the terminating LF,
166 * except for an incomplete line at the end if the file ends with
167 * one), and its contents hashes to 'hash'.
176 * This represents a "file", which is an array of "lines".
182 struct line *line_allocated;
186 static uint32_t hash_line(const char *cp, size_t len)
190 for (i = 0, h = 0; i < len; i++) {
191 if (!isspace(cp[i])) {
192 h = h * 3 + (cp[i] & 0xff);
198 static void prepare_image(struct image *image, char *buf, size_t len,
199 int prepare_linetable)
207 if (!prepare_linetable) {
209 image->line_allocated = NULL;
214 ep = image->buf + image->len;
216 /* First count lines */
220 cp = strchrnul(cp, '\n');
225 image->line_allocated = xcalloc(n, sizeof(struct line));
226 image->line = image->line_allocated;
232 for (next = cp; next < ep && *next != '\n'; next++)
236 image->line[n].len = next - cp;
237 image->line[n].hash = hash_line(cp, next - cp);
243 static void clear_image(struct image *image)
250 static void say_patch_name(FILE *output, const char *pre,
251 struct patch *patch, const char *post)
254 if (patch->old_name && patch->new_name &&
255 strcmp(patch->old_name, patch->new_name)) {
256 quote_c_style(patch->old_name, NULL, output, 0);
257 fputs(" => ", output);
258 quote_c_style(patch->new_name, NULL, output, 0);
260 const char *n = patch->new_name;
263 quote_c_style(n, NULL, output, 0);
268 #define CHUNKSIZE (8192)
271 static void read_patch_file(struct strbuf *sb, int fd)
273 if (strbuf_read(sb, fd, 0) < 0)
274 die("git-apply: read returned %s", strerror(errno));
277 * Make sure that we have some slop in the buffer
278 * so that we can do speculative "memcmp" etc, and
279 * see to it that it is NUL-filled.
281 strbuf_grow(sb, SLOP);
282 memset(sb->buf + sb->len, 0, SLOP);
285 static unsigned long linelen(const char *buffer, unsigned long size)
287 unsigned long len = 0;
290 if (*buffer++ == '\n')
296 static int is_dev_null(const char *str)
298 return !memcmp("/dev/null", str, 9) && isspace(str[9]);
304 static int name_terminate(const char *name, int namelen, int c, int terminate)
306 if (c == ' ' && !(terminate & TERM_SPACE))
308 if (c == '\t' && !(terminate & TERM_TAB))
314 static char *find_name(const char *line, char *def, int p_value, int terminate)
317 const char *start = line;
323 * Proposed "new-style" GNU patch/diff format; see
324 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
326 strbuf_init(&name, 0);
327 if (!unquote_c_style(&name, line, NULL)) {
330 for (cp = name.buf; p_value; p_value--) {
331 cp = strchr(cp, '/');
337 /* name can later be freed, so we need
338 * to memmove, not just return cp
340 strbuf_remove(&name, 0, cp - name.buf);
342 return strbuf_detach(&name, NULL);
345 strbuf_release(&name);
354 if (name_terminate(start, line-start, c, terminate))
358 if (c == '/' && !--p_value)
368 * Generally we prefer the shorter name, especially
369 * if the other one is just a variation of that with
370 * something else tacked on to the end (ie "file.orig"
374 int deflen = strlen(def);
375 if (deflen < len && !strncmp(start, def, deflen))
380 return xmemdupz(start, len);
383 static int count_slashes(const char *cp)
395 * Given the string after "--- " or "+++ ", guess the appropriate
396 * p_value for the given patch.
398 static int guess_p_value(const char *nameline)
403 if (is_dev_null(nameline))
405 name = find_name(nameline, NULL, 0, TERM_SPACE | TERM_TAB);
408 cp = strchr(name, '/');
413 * Does it begin with "a/$our-prefix" and such? Then this is
414 * very likely to apply to our directory.
416 if (!strncmp(name, prefix, prefix_length))
417 val = count_slashes(prefix);
420 if (!strncmp(cp, prefix, prefix_length))
421 val = count_slashes(prefix) + 1;
429 * Get the name etc info from the --/+++ lines of a traditional patch header
431 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
432 * files, we can happily check the index for a match, but for creating a
433 * new file we should try to match whatever "patch" does. I have no idea.
435 static void parse_traditional_patch(const char *first, const char *second, struct patch *patch)
439 first += 4; /* skip "--- " */
440 second += 4; /* skip "+++ " */
441 if (!p_value_known) {
443 p = guess_p_value(first);
444 q = guess_p_value(second);
446 if (0 <= p && p == q) {
451 if (is_dev_null(first)) {
453 patch->is_delete = 0;
454 name = find_name(second, NULL, p_value, TERM_SPACE | TERM_TAB);
455 patch->new_name = name;
456 } else if (is_dev_null(second)) {
458 patch->is_delete = 1;
459 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
460 patch->old_name = name;
462 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
463 name = find_name(second, name, p_value, TERM_SPACE | TERM_TAB);
464 patch->old_name = patch->new_name = name;
467 die("unable to find filename in patch at line %d", linenr);
470 static int gitdiff_hdrend(const char *line, struct patch *patch)
476 * We're anal about diff header consistency, to make
477 * sure that we don't end up having strange ambiguous
478 * patches floating around.
480 * As a result, gitdiff_{old|new}name() will check
481 * their names against any previous information, just
484 static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew)
486 if (!orig_name && !isnull)
487 return find_name(line, NULL, p_value, TERM_TAB);
496 die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr);
497 another = find_name(line, NULL, p_value, TERM_TAB);
498 if (!another || memcmp(another, name, len))
499 die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr);
504 /* expect "/dev/null" */
505 if (memcmp("/dev/null", line, 9) || line[9] != '\n')
506 die("git-apply: bad git-diff - expected /dev/null on line %d", linenr);
511 static int gitdiff_oldname(const char *line, struct patch *patch)
513 patch->old_name = gitdiff_verify_name(line, patch->is_new, patch->old_name, "old");
517 static int gitdiff_newname(const char *line, struct patch *patch)
519 patch->new_name = gitdiff_verify_name(line, patch->is_delete, patch->new_name, "new");
523 static int gitdiff_oldmode(const char *line, struct patch *patch)
525 patch->old_mode = strtoul(line, NULL, 8);
529 static int gitdiff_newmode(const char *line, struct patch *patch)
531 patch->new_mode = strtoul(line, NULL, 8);
535 static int gitdiff_delete(const char *line, struct patch *patch)
537 patch->is_delete = 1;
538 patch->old_name = patch->def_name;
539 return gitdiff_oldmode(line, patch);
542 static int gitdiff_newfile(const char *line, struct patch *patch)
545 patch->new_name = patch->def_name;
546 return gitdiff_newmode(line, patch);
549 static int gitdiff_copysrc(const char *line, struct patch *patch)
552 patch->old_name = find_name(line, NULL, 0, 0);
556 static int gitdiff_copydst(const char *line, struct patch *patch)
559 patch->new_name = find_name(line, NULL, 0, 0);
563 static int gitdiff_renamesrc(const char *line, struct patch *patch)
565 patch->is_rename = 1;
566 patch->old_name = find_name(line, NULL, 0, 0);
570 static int gitdiff_renamedst(const char *line, struct patch *patch)
572 patch->is_rename = 1;
573 patch->new_name = find_name(line, NULL, 0, 0);
577 static int gitdiff_similarity(const char *line, struct patch *patch)
579 if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
584 static int gitdiff_dissimilarity(const char *line, struct patch *patch)
586 if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
591 static int gitdiff_index(const char *line, struct patch *patch)
594 * index line is N hexadecimal, "..", N hexadecimal,
595 * and optional space with octal mode.
597 const char *ptr, *eol;
600 ptr = strchr(line, '.');
601 if (!ptr || ptr[1] != '.' || 40 < ptr - line)
604 memcpy(patch->old_sha1_prefix, line, len);
605 patch->old_sha1_prefix[len] = 0;
608 ptr = strchr(line, ' ');
609 eol = strchr(line, '\n');
611 if (!ptr || eol < ptr)
617 memcpy(patch->new_sha1_prefix, line, len);
618 patch->new_sha1_prefix[len] = 0;
620 patch->new_mode = patch->old_mode = strtoul(ptr+1, NULL, 8);
625 * This is normal for a diff that doesn't change anything: we'll fall through
626 * into the next diff. Tell the parser to break out.
628 static int gitdiff_unrecognized(const char *line, struct patch *patch)
633 static const char *stop_at_slash(const char *line, int llen)
637 for (i = 0; i < llen; i++) {
646 * This is to extract the same name that appears on "diff --git"
647 * line. We do not find and return anything if it is a rename
648 * patch, and it is OK because we will find the name elsewhere.
649 * We need to reliably find name only when it is mode-change only,
650 * creation or deletion of an empty file. In any of these cases,
651 * both sides are the same name under a/ and b/ respectively.
653 static char *git_header_name(char *line, int llen)
656 const char *second = NULL;
659 line += strlen("diff --git ");
660 llen -= strlen("diff --git ");
667 strbuf_init(&first, 0);
670 if (unquote_c_style(&first, line, &second))
673 /* advance to the first slash */
674 cp = stop_at_slash(first.buf, first.len);
675 /* we do not accept absolute paths */
676 if (!cp || cp == first.buf)
678 strbuf_remove(&first, 0, cp + 1 - first.buf);
681 * second points at one past closing dq of name.
682 * find the second name.
684 while ((second < line + llen) && isspace(*second))
687 if (line + llen <= second)
689 if (*second == '"') {
690 if (unquote_c_style(&sp, second, NULL))
692 cp = stop_at_slash(sp.buf, sp.len);
693 if (!cp || cp == sp.buf)
695 /* They must match, otherwise ignore */
696 if (strcmp(cp + 1, first.buf))
699 return strbuf_detach(&first, NULL);
702 /* unquoted second */
703 cp = stop_at_slash(second, line + llen - second);
704 if (!cp || cp == second)
707 if (line + llen - cp != first.len + 1 ||
708 memcmp(first.buf, cp, first.len))
710 return strbuf_detach(&first, NULL);
713 strbuf_release(&first);
718 /* unquoted first name */
719 name = stop_at_slash(line, llen);
720 if (!name || name == line)
725 * since the first name is unquoted, a dq if exists must be
726 * the beginning of the second name.
728 for (second = name; second < line + llen; second++) {
729 if (*second == '"') {
734 if (unquote_c_style(&sp, second, NULL))
737 np = stop_at_slash(sp.buf, sp.len);
738 if (!np || np == sp.buf)
742 len = sp.buf + sp.len - np;
743 if (len < second - name &&
744 !strncmp(np, name, len) &&
745 isspace(name[len])) {
747 strbuf_remove(&sp, 0, np - sp.buf);
748 return strbuf_detach(&sp, NULL);
758 * Accept a name only if it shows up twice, exactly the same
761 for (len = 0 ; ; len++) {
776 if (second[len] == '\n' && !memcmp(name, second, len)) {
777 return xmemdupz(name, len);
783 /* Verify that we recognize the lines following a git header */
784 static int parse_git_header(char *line, int len, unsigned int size, struct patch *patch)
786 unsigned long offset;
788 /* A git diff has explicit new/delete information, so we don't guess */
790 patch->is_delete = 0;
793 * Some things may not have the old name in the
794 * rest of the headers anywhere (pure mode changes,
795 * or removing or adding empty files), so we get
796 * the default name from the header.
798 patch->def_name = git_header_name(line, len);
803 for (offset = len ; size > 0 ; offset += len, size -= len, line += len, linenr++) {
804 static const struct opentry {
806 int (*fn)(const char *, struct patch *);
808 { "@@ -", gitdiff_hdrend },
809 { "--- ", gitdiff_oldname },
810 { "+++ ", gitdiff_newname },
811 { "old mode ", gitdiff_oldmode },
812 { "new mode ", gitdiff_newmode },
813 { "deleted file mode ", gitdiff_delete },
814 { "new file mode ", gitdiff_newfile },
815 { "copy from ", gitdiff_copysrc },
816 { "copy to ", gitdiff_copydst },
817 { "rename old ", gitdiff_renamesrc },
818 { "rename new ", gitdiff_renamedst },
819 { "rename from ", gitdiff_renamesrc },
820 { "rename to ", gitdiff_renamedst },
821 { "similarity index ", gitdiff_similarity },
822 { "dissimilarity index ", gitdiff_dissimilarity },
823 { "index ", gitdiff_index },
824 { "", gitdiff_unrecognized },
828 len = linelen(line, size);
829 if (!len || line[len-1] != '\n')
831 for (i = 0; i < ARRAY_SIZE(optable); i++) {
832 const struct opentry *p = optable + i;
833 int oplen = strlen(p->str);
834 if (len < oplen || memcmp(p->str, line, oplen))
836 if (p->fn(line + oplen, patch) < 0)
845 static int parse_num(const char *line, unsigned long *p)
851 *p = strtoul(line, &ptr, 10);
855 static int parse_range(const char *line, int len, int offset, const char *expect,
856 unsigned long *p1, unsigned long *p2)
860 if (offset < 0 || offset >= len)
865 digits = parse_num(line, p1);
875 digits = parse_num(line+1, p2);
887 if (memcmp(line, expect, ex))
894 * Parse a unified diff fragment header of the
895 * form "@@ -a,b +c,d @@"
897 static int parse_fragment_header(char *line, int len, struct fragment *fragment)
901 if (!len || line[len-1] != '\n')
904 /* Figure out the number of lines in a fragment */
905 offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);
906 offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);
911 static int find_header(char *line, unsigned long size, int *hdrsize, struct patch *patch)
913 unsigned long offset, len;
915 patch->is_toplevel_relative = 0;
916 patch->is_rename = patch->is_copy = 0;
917 patch->is_new = patch->is_delete = -1;
918 patch->old_mode = patch->new_mode = 0;
919 patch->old_name = patch->new_name = NULL;
920 for (offset = 0; size > 0; offset += len, size -= len, line += len, linenr++) {
921 unsigned long nextlen;
923 len = linelen(line, size);
927 /* Testing this early allows us to take a few shortcuts.. */
932 * Make sure we don't find any unconnected patch fragments.
933 * That's a sign that we didn't find a header, and that a
934 * patch has become corrupted/broken up.
936 if (!memcmp("@@ -", line, 4)) {
937 struct fragment dummy;
938 if (parse_fragment_header(line, len, &dummy) < 0)
940 die("patch fragment without header at line %d: %.*s",
941 linenr, (int)len-1, line);
948 * Git patch? It might not have a real patch, just a rename
949 * or mode change, so we handle that specially
951 if (!memcmp("diff --git ", line, 11)) {
952 int git_hdr_len = parse_git_header(line, len, size, patch);
953 if (git_hdr_len <= len)
955 if (!patch->old_name && !patch->new_name) {
956 if (!patch->def_name)
957 die("git diff header lacks filename information (line %d)", linenr);
958 patch->old_name = patch->new_name = patch->def_name;
960 patch->is_toplevel_relative = 1;
961 *hdrsize = git_hdr_len;
965 /* --- followed by +++ ? */
966 if (memcmp("--- ", line, 4) || memcmp("+++ ", line + len, 4))
970 * We only accept unified patches, so we want it to
971 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
972 * minimum ("@@ -0,0 +1 @@\n" is the shortest).
974 nextlen = linelen(line + len, size - len);
975 if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4))
978 /* Ok, we'll consider it a patch */
979 parse_traditional_patch(line, line+len, patch);
980 *hdrsize = len + nextlen;
987 static void check_whitespace(const char *line, int len, unsigned ws_rule)
990 unsigned result = check_and_emit_line(line + 1, len - 1, ws_rule,
991 NULL, NULL, NULL, NULL);
996 if (squelch_whitespace_errors &&
997 squelch_whitespace_errors < whitespace_error)
1000 err = whitespace_error_string(result);
1001 fprintf(stderr, "%s:%d: %s.\n%.*s\n",
1002 patch_input_file, linenr, err, len - 2, line + 1);
1008 * Parse a unified diff. Note that this really needs to parse each
1009 * fragment separately, since the only way to know the difference
1010 * between a "---" that is part of a patch, and a "---" that starts
1011 * the next patch is to look at the line counts..
1013 static int parse_fragment(char *line, unsigned long size,
1014 struct patch *patch, struct fragment *fragment)
1017 int len = linelen(line, size), offset;
1018 unsigned long oldlines, newlines;
1019 unsigned long leading, trailing;
1021 offset = parse_fragment_header(line, len, fragment);
1024 oldlines = fragment->oldlines;
1025 newlines = fragment->newlines;
1029 /* Parse the thing.. */
1033 added = deleted = 0;
1036 offset += len, size -= len, line += len, linenr++) {
1037 if (!oldlines && !newlines)
1039 len = linelen(line, size);
1040 if (!len || line[len-1] != '\n')
1045 case '\n': /* newer GNU diff, an empty context line */
1049 if (!deleted && !added)
1054 if (apply_in_reverse &&
1055 ws_error_action != nowarn_ws_error)
1056 check_whitespace(line, len, patch->ws_rule);
1062 if (!apply_in_reverse &&
1063 ws_error_action != nowarn_ws_error)
1064 check_whitespace(line, len, patch->ws_rule);
1071 * We allow "\ No newline at end of file". Depending
1072 * on locale settings when the patch was produced we
1073 * don't know what this line looks like. The only
1074 * thing we do know is that it begins with "\ ".
1075 * Checking for 12 is just for sanity check -- any
1076 * l10n of "\ No newline..." is at least that long.
1079 if (len < 12 || memcmp(line, "\\ ", 2))
1084 if (oldlines || newlines)
1086 fragment->leading = leading;
1087 fragment->trailing = trailing;
1090 * If a fragment ends with an incomplete line, we failed to include
1091 * it in the above loop because we hit oldlines == newlines == 0
1094 if (12 < size && !memcmp(line, "\\ ", 2))
1095 offset += linelen(line, size);
1097 patch->lines_added += added;
1098 patch->lines_deleted += deleted;
1100 if (0 < patch->is_new && oldlines)
1101 return error("new file depends on old contents");
1102 if (0 < patch->is_delete && newlines)
1103 return error("deleted file still has contents");
1107 static int parse_single_patch(char *line, unsigned long size, struct patch *patch)
1109 unsigned long offset = 0;
1110 unsigned long oldlines = 0, newlines = 0, context = 0;
1111 struct fragment **fragp = &patch->fragments;
1113 while (size > 4 && !memcmp(line, "@@ -", 4)) {
1114 struct fragment *fragment;
1117 fragment = xcalloc(1, sizeof(*fragment));
1118 len = parse_fragment(line, size, patch, fragment);
1120 die("corrupt patch at line %d", linenr);
1121 fragment->patch = line;
1122 fragment->size = len;
1123 oldlines += fragment->oldlines;
1124 newlines += fragment->newlines;
1125 context += fragment->leading + fragment->trailing;
1128 fragp = &fragment->next;
1136 * If something was removed (i.e. we have old-lines) it cannot
1137 * be creation, and if something was added it cannot be
1138 * deletion. However, the reverse is not true; --unified=0
1139 * patches that only add are not necessarily creation even
1140 * though they do not have any old lines, and ones that only
1141 * delete are not necessarily deletion.
1143 * Unfortunately, a real creation/deletion patch do _not_ have
1144 * any context line by definition, so we cannot safely tell it
1145 * apart with --unified=0 insanity. At least if the patch has
1146 * more than one hunk it is not creation or deletion.
1148 if (patch->is_new < 0 &&
1149 (oldlines || (patch->fragments && patch->fragments->next)))
1151 if (patch->is_delete < 0 &&
1152 (newlines || (patch->fragments && patch->fragments->next)))
1153 patch->is_delete = 0;
1154 if (!unidiff_zero || context) {
1155 /* If the user says the patch is not generated with
1156 * --unified=0, or if we have seen context lines,
1157 * then not having oldlines means the patch is creation,
1158 * and not having newlines means the patch is deletion.
1160 if (patch->is_new < 0 && !oldlines) {
1162 patch->old_name = NULL;
1164 if (patch->is_delete < 0 && !newlines) {
1165 patch->is_delete = 1;
1166 patch->new_name = NULL;
1170 if (0 < patch->is_new && oldlines)
1171 die("new file %s depends on old contents", patch->new_name);
1172 if (0 < patch->is_delete && newlines)
1173 die("deleted file %s still has contents", patch->old_name);
1174 if (!patch->is_delete && !newlines && context)
1175 fprintf(stderr, "** warning: file %s becomes empty but "
1176 "is not deleted\n", patch->new_name);
1181 static inline int metadata_changes(struct patch *patch)
1183 return patch->is_rename > 0 ||
1184 patch->is_copy > 0 ||
1185 patch->is_new > 0 ||
1187 (patch->old_mode && patch->new_mode &&
1188 patch->old_mode != patch->new_mode);
1191 static char *inflate_it(const void *data, unsigned long size,
1192 unsigned long inflated_size)
1198 memset(&stream, 0, sizeof(stream));
1200 stream.next_in = (unsigned char *)data;
1201 stream.avail_in = size;
1202 stream.next_out = out = xmalloc(inflated_size);
1203 stream.avail_out = inflated_size;
1204 inflateInit(&stream);
1205 st = inflate(&stream, Z_FINISH);
1206 if ((st != Z_STREAM_END) || stream.total_out != inflated_size) {
1213 static struct fragment *parse_binary_hunk(char **buf_p,
1214 unsigned long *sz_p,
1219 * Expect a line that begins with binary patch method ("literal"
1220 * or "delta"), followed by the length of data before deflating.
1221 * a sequence of 'length-byte' followed by base-85 encoded data
1222 * should follow, terminated by a newline.
1224 * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1225 * and we would limit the patch line to 66 characters,
1226 * so one line can fit up to 13 groups that would decode
1227 * to 52 bytes max. The length byte 'A'-'Z' corresponds
1228 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
1231 unsigned long size = *sz_p;
1232 char *buffer = *buf_p;
1234 unsigned long origlen;
1237 struct fragment *frag;
1239 llen = linelen(buffer, size);
1244 if (!prefixcmp(buffer, "delta ")) {
1245 patch_method = BINARY_DELTA_DEFLATED;
1246 origlen = strtoul(buffer + 6, NULL, 10);
1248 else if (!prefixcmp(buffer, "literal ")) {
1249 patch_method = BINARY_LITERAL_DEFLATED;
1250 origlen = strtoul(buffer + 8, NULL, 10);
1258 int byte_length, max_byte_length, newsize;
1259 llen = linelen(buffer, size);
1263 /* consume the blank line */
1269 * Minimum line is "A00000\n" which is 7-byte long,
1270 * and the line length must be multiple of 5 plus 2.
1272 if ((llen < 7) || (llen-2) % 5)
1274 max_byte_length = (llen - 2) / 5 * 4;
1275 byte_length = *buffer;
1276 if ('A' <= byte_length && byte_length <= 'Z')
1277 byte_length = byte_length - 'A' + 1;
1278 else if ('a' <= byte_length && byte_length <= 'z')
1279 byte_length = byte_length - 'a' + 27;
1282 /* if the input length was not multiple of 4, we would
1283 * have filler at the end but the filler should never
1286 if (max_byte_length < byte_length ||
1287 byte_length <= max_byte_length - 4)
1289 newsize = hunk_size + byte_length;
1290 data = xrealloc(data, newsize);
1291 if (decode_85(data + hunk_size, buffer + 1, byte_length))
1293 hunk_size = newsize;
1298 frag = xcalloc(1, sizeof(*frag));
1299 frag->patch = inflate_it(data, hunk_size, origlen);
1303 frag->size = origlen;
1307 frag->binary_patch_method = patch_method;
1313 error("corrupt binary patch at line %d: %.*s",
1314 linenr-1, llen-1, buffer);
1318 static int parse_binary(char *buffer, unsigned long size, struct patch *patch)
1321 * We have read "GIT binary patch\n"; what follows is a line
1322 * that says the patch method (currently, either "literal" or
1323 * "delta") and the length of data before deflating; a
1324 * sequence of 'length-byte' followed by base-85 encoded data
1327 * When a binary patch is reversible, there is another binary
1328 * hunk in the same format, starting with patch method (either
1329 * "literal" or "delta") with the length of data, and a sequence
1330 * of length-byte + base-85 encoded data, terminated with another
1331 * empty line. This data, when applied to the postimage, produces
1334 struct fragment *forward;
1335 struct fragment *reverse;
1339 forward = parse_binary_hunk(&buffer, &size, &status, &used);
1340 if (!forward && !status)
1341 /* there has to be one hunk (forward hunk) */
1342 return error("unrecognized binary patch at line %d", linenr-1);
1344 /* otherwise we already gave an error message */
1347 reverse = parse_binary_hunk(&buffer, &size, &status, &used_1);
1352 * Not having reverse hunk is not an error, but having
1353 * a corrupt reverse hunk is.
1355 free((void*) forward->patch);
1359 forward->next = reverse;
1360 patch->fragments = forward;
1361 patch->is_binary = 1;
1365 static int parse_chunk(char *buffer, unsigned long size, struct patch *patch)
1367 int hdrsize, patchsize;
1368 int offset = find_header(buffer, size, &hdrsize, patch);
1373 patch->ws_rule = whitespace_rule(patch->new_name
1377 patchsize = parse_single_patch(buffer + offset + hdrsize,
1378 size - offset - hdrsize, patch);
1381 static const char *binhdr[] = {
1386 static const char git_binary[] = "GIT binary patch\n";
1388 int hd = hdrsize + offset;
1389 unsigned long llen = linelen(buffer + hd, size - hd);
1391 if (llen == sizeof(git_binary) - 1 &&
1392 !memcmp(git_binary, buffer + hd, llen)) {
1395 used = parse_binary(buffer + hd + llen,
1396 size - hd - llen, patch);
1398 patchsize = used + llen;
1402 else if (!memcmp(" differ\n", buffer + hd + llen - 8, 8)) {
1403 for (i = 0; binhdr[i]; i++) {
1404 int len = strlen(binhdr[i]);
1405 if (len < size - hd &&
1406 !memcmp(binhdr[i], buffer + hd, len)) {
1408 patch->is_binary = 1;
1415 /* Empty patch cannot be applied if it is a text patch
1416 * without metadata change. A binary patch appears
1419 if ((apply || check) &&
1420 (!patch->is_binary && !metadata_changes(patch)))
1421 die("patch with only garbage at line %d", linenr);
1424 return offset + hdrsize + patchsize;
1427 #define swap(a,b) myswap((a),(b),sizeof(a))
1429 #define myswap(a, b, size) do { \
1430 unsigned char mytmp[size]; \
1431 memcpy(mytmp, &a, size); \
1432 memcpy(&a, &b, size); \
1433 memcpy(&b, mytmp, size); \
1436 static void reverse_patches(struct patch *p)
1438 for (; p; p = p->next) {
1439 struct fragment *frag = p->fragments;
1441 swap(p->new_name, p->old_name);
1442 swap(p->new_mode, p->old_mode);
1443 swap(p->is_new, p->is_delete);
1444 swap(p->lines_added, p->lines_deleted);
1445 swap(p->old_sha1_prefix, p->new_sha1_prefix);
1447 for (; frag; frag = frag->next) {
1448 swap(frag->newpos, frag->oldpos);
1449 swap(frag->newlines, frag->oldlines);
1454 static const char pluses[] =
1455 "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
1456 static const char minuses[]=
1457 "----------------------------------------------------------------------";
1459 static void show_stats(struct patch *patch)
1461 struct strbuf qname;
1462 char *cp = patch->new_name ? patch->new_name : patch->old_name;
1465 strbuf_init(&qname, 0);
1466 quote_c_style(cp, &qname, NULL, 0);
1469 * "scale" the filename
1475 if (qname.len > max) {
1476 cp = strchr(qname.buf + qname.len + 3 - max, '/');
1478 cp = qname.buf + qname.len + 3 - max;
1479 strbuf_splice(&qname, 0, cp - qname.buf, "...", 3);
1482 if (patch->is_binary) {
1483 printf(" %-*s | Bin\n", max, qname.buf);
1484 strbuf_release(&qname);
1488 printf(" %-*s |", max, qname.buf);
1489 strbuf_release(&qname);
1492 * scale the add/delete
1494 max = max + max_change > 70 ? 70 - max : max_change;
1495 add = patch->lines_added;
1496 del = patch->lines_deleted;
1498 if (max_change > 0) {
1499 int total = ((add + del) * max + max_change / 2) / max_change;
1500 add = (add * max + max_change / 2) / max_change;
1503 printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,
1504 add, pluses, del, minuses);
1507 static int read_old_data(struct stat *st, const char *path, struct strbuf *buf)
1509 switch (st->st_mode & S_IFMT) {
1511 strbuf_grow(buf, st->st_size);
1512 if (readlink(path, buf->buf, st->st_size) != st->st_size)
1514 strbuf_setlen(buf, st->st_size);
1517 if (strbuf_read_file(buf, path, st->st_size) != st->st_size)
1518 return error("unable to open or read %s", path);
1519 convert_to_git(path, buf->buf, buf->len, buf);
1526 static int match_fragment(struct image *img,
1527 struct image *preimage,
1528 struct image *postimage,
1531 int match_beginning, int match_end)
1535 if (preimage->nr + try_lno > img->nr)
1538 if (match_beginning && try_lno)
1541 if (match_end && preimage->nr + try_lno != img->nr)
1544 /* Quick hash check */
1545 for (i = 0; i < preimage->nr; i++)
1546 if (preimage->line[i].hash != img->line[try_lno + i].hash)
1550 * Do we have an exact match? If we were told to match
1551 * at the end, size must be exactly at try+fragsize,
1552 * otherwise try+fragsize must be still within the preimage,
1553 * and either case, the old piece should match the preimage
1557 ? (try + preimage->len == img->len)
1558 : (try + preimage->len <= img->len)) &&
1559 !memcmp(img->buf + try, preimage->buf, preimage->len))
1563 * NEEDSWORK: We can optionally match fuzzily here, but
1564 * that is for a later round.
1569 static int find_pos(struct image *img,
1570 struct image *preimage,
1571 struct image *postimage,
1573 int match_beginning, int match_end)
1576 unsigned long backwards, forwards, try;
1577 int backwards_lno, forwards_lno, try_lno;
1579 if (preimage->nr > img->nr)
1583 for (i = 0; i < line; i++)
1584 try += img->line[i].len;
1587 * There's probably some smart way to do this, but I'll leave
1588 * that to the smart and beautiful people. I'm simple and stupid.
1591 backwards_lno = line;
1593 forwards_lno = line;
1596 for (i = 0; ; i++) {
1597 if (match_fragment(img, preimage, postimage,
1599 match_beginning, match_end))
1603 if (backwards_lno == 0 && forwards_lno == img->nr)
1607 if (backwards_lno == 0) {
1612 backwards -= img->line[backwards_lno].len;
1614 try_lno = backwards_lno;
1616 if (forwards_lno == img->nr) {
1620 forwards += img->line[forwards_lno].len;
1623 try_lno = forwards_lno;
1630 static void remove_first_line(struct image *img)
1632 img->buf += img->line[0].len;
1633 img->len -= img->line[0].len;
1638 static void remove_last_line(struct image *img)
1640 img->len -= img->line[--img->nr].len;
1643 static int apply_line(char *output, const char *patch, int plen,
1647 * plen is number of bytes to be copied from patch,
1648 * starting at patch+1 (patch[0] is '+'). Typically
1649 * patch[plen] is '\n', unless this is the incomplete
1653 int add_nl_to_tail = 0;
1655 int last_tab_in_indent = 0;
1656 int last_space_in_indent = 0;
1657 int need_fix_leading_space = 0;
1660 if ((ws_error_action != correct_ws_error) || !whitespace_error ||
1662 memcpy(output, patch + 1, plen);
1667 * Strip trailing whitespace
1669 if ((ws_rule & WS_TRAILING_SPACE) &&
1670 (1 < plen && isspace(patch[plen-1]))) {
1671 if (patch[plen] == '\n')
1674 while (0 < plen && isspace(patch[plen]))
1680 * Check leading whitespaces (indent)
1682 for (i = 1; i < plen; i++) {
1685 last_tab_in_indent = i;
1686 if ((ws_rule & WS_SPACE_BEFORE_TAB) &&
1687 0 < last_space_in_indent)
1688 need_fix_leading_space = 1;
1689 } else if (ch == ' ') {
1690 last_space_in_indent = i;
1691 if ((ws_rule & WS_INDENT_WITH_NON_TAB) &&
1692 8 <= i - last_tab_in_indent)
1693 need_fix_leading_space = 1;
1700 if (need_fix_leading_space) {
1701 int consecutive_spaces = 0;
1702 int last = last_tab_in_indent + 1;
1704 if (ws_rule & WS_INDENT_WITH_NON_TAB) {
1705 /* have "last" point at one past the indent */
1706 if (last_tab_in_indent < last_space_in_indent)
1707 last = last_space_in_indent + 1;
1709 last = last_tab_in_indent + 1;
1713 * between patch[1..last], strip the funny spaces,
1714 * updating them to tab as needed.
1716 for (i = 1; i < last; i++, plen--) {
1719 consecutive_spaces = 0;
1722 consecutive_spaces++;
1723 if (consecutive_spaces == 8) {
1725 consecutive_spaces = 0;
1729 while (0 < consecutive_spaces--)
1737 memcpy(output, patch + i, plen);
1739 output[plen++] = '\n';
1741 applied_after_fixing_ws++;
1742 return output + plen - buf;
1745 static void update_image(struct image *img,
1747 struct image *preimage,
1748 struct image *postimage)
1751 * remove the copy of preimage at offset in img
1752 * and replace it with postimage
1755 size_t remove_count, insert_count, applied_at = 0;
1758 for (i = 0; i < applied_pos; i++)
1759 applied_at += img->line[i].len;
1762 for (i = 0; i < preimage->nr; i++)
1763 remove_count += img->line[applied_pos + i].len;
1764 insert_count = postimage->len;
1766 /* Adjust the contents */
1767 result = xmalloc(img->len + insert_count - remove_count + 1);
1768 memcpy(result, img->buf, applied_at);
1769 memcpy(result + applied_at, postimage->buf, postimage->len);
1770 memcpy(result + applied_at + postimage->len,
1771 img->buf + (applied_at + remove_count),
1772 img->len - (applied_at + remove_count));
1775 img->len += insert_count - remove_count;
1776 result[img->len] = '\0';
1778 /* Adjust the line table */
1779 nr = img->nr + postimage->nr - preimage->nr;
1780 if (preimage->nr < postimage->nr) {
1782 * NOTE: this knows that we never call remove_first_line()
1783 * on anything other than pre/post image.
1785 img->line = xrealloc(img->line, nr * sizeof(*img->line));
1786 img->line_allocated = img->line;
1788 if (preimage->nr != postimage->nr)
1789 memmove(img->line + applied_pos + postimage->nr,
1790 img->line + applied_pos + preimage->nr,
1791 (img->nr - (applied_pos + preimage->nr)) *
1792 sizeof(*img->line));
1793 memcpy(img->line + applied_pos,
1795 postimage->nr * sizeof(*img->line));
1799 static int apply_one_fragment(struct image *img, struct fragment *frag,
1800 int inaccurate_eof, unsigned ws_rule)
1802 int match_beginning, match_end;
1803 const char *patch = frag->patch;
1804 int size = frag->size;
1805 char *old = xmalloc(size);
1806 char *new = xmalloc(size);
1807 char *oldlines, *newlines;
1808 int oldsize = 0, newsize = 0;
1809 int new_blank_lines_at_end = 0;
1810 unsigned long leading, trailing;
1811 int pos, applied_pos;
1812 struct image preimage;
1813 struct image postimage;
1817 int len = linelen(patch, size);
1819 int added_blank_line = 0;
1825 * "plen" is how much of the line we should use for
1826 * the actual patch data. Normally we just remove the
1827 * first character on the line, but if the line is
1828 * followed by "\ No newline", then we also remove the
1829 * last one (which is the newline, of course).
1832 if (len < size && patch[len] == '\\')
1835 if (apply_in_reverse) {
1838 else if (first == '+')
1844 /* Newer GNU diff, empty context line */
1846 /* ... followed by '\No newline'; nothing */
1848 old[oldsize++] = '\n';
1849 new[newsize++] = '\n';
1853 memcpy(old + oldsize, patch + 1, plen);
1857 /* Fall-through for ' ' */
1859 if (first != '+' || !no_add) {
1860 int added = apply_line(new + newsize, patch,
1864 added == 1 && new[newsize-1] == '\n')
1865 added_blank_line = 1;
1868 case '@': case '\\':
1869 /* Ignore it, we already handled it */
1872 if (apply_verbosely)
1873 error("invalid start of line: '%c'", first);
1876 if (added_blank_line)
1877 new_blank_lines_at_end++;
1879 new_blank_lines_at_end = 0;
1884 if (inaccurate_eof &&
1885 oldsize > 0 && old[oldsize - 1] == '\n' &&
1886 newsize > 0 && new[newsize - 1] == '\n') {
1893 leading = frag->leading;
1894 trailing = frag->trailing;
1897 * If we don't have any leading/trailing data in the patch,
1898 * we want it to match at the beginning/end of the file.
1900 * But that would break if the patch is generated with
1901 * --unified=0; sane people wouldn't do that to cause us
1902 * trouble, but we try to please not so sane ones as well.
1905 match_beginning = (!leading && !frag->oldpos);
1909 match_beginning = !leading && (frag->oldpos == 1);
1910 match_end = !trailing;
1913 pos = frag->newpos ? (frag->newpos - 1) : 0;
1914 prepare_image(&preimage, oldlines, oldsize, 1);
1915 prepare_image(&postimage, newlines, newsize, 1);
1918 applied_pos = find_pos(img, &preimage, &postimage,
1919 pos, match_beginning, match_end);
1921 if (applied_pos >= 0)
1924 /* Am I at my context limits? */
1925 if ((leading <= p_context) && (trailing <= p_context))
1927 if (match_beginning || match_end) {
1928 match_beginning = match_end = 0;
1933 * Reduce the number of context lines; reduce both
1934 * leading and trailing if they are equal otherwise
1935 * just reduce the larger context.
1937 if (leading >= trailing) {
1938 remove_first_line(&preimage);
1939 remove_first_line(&postimage);
1943 if (trailing > leading) {
1944 remove_last_line(&preimage);
1945 remove_last_line(&postimage);
1950 if (applied_pos >= 0) {
1951 if (ws_error_action == correct_ws_error &&
1952 new_blank_lines_at_end &&
1953 postimage.nr + applied_pos == img->nr) {
1955 * If the patch application adds blank lines
1956 * at the end, and if the patch applies at the
1957 * end of the image, remove those added blank
1960 while (new_blank_lines_at_end--)
1961 remove_last_line(&postimage);
1965 * Warn if it was necessary to reduce the number
1968 if ((leading != frag->leading) ||
1969 (trailing != frag->trailing))
1970 fprintf(stderr, "Context reduced to (%ld/%ld)"
1971 " to apply fragment at %d\n",
1972 leading, trailing, applied_pos+1);
1973 update_image(img, applied_pos, &preimage, &postimage);
1975 if (apply_verbosely)
1976 error("while searching for:\n%.*s", oldsize, oldlines);
1981 free(preimage.line_allocated);
1982 free(postimage.line_allocated);
1984 return (applied_pos < 0);
1987 static int apply_binary_fragment(struct image *img, struct patch *patch)
1989 struct fragment *fragment = patch->fragments;
1993 /* Binary patch is irreversible without the optional second hunk */
1994 if (apply_in_reverse) {
1995 if (!fragment->next)
1996 return error("cannot reverse-apply a binary patch "
1997 "without the reverse hunk to '%s'",
1999 ? patch->new_name : patch->old_name);
2000 fragment = fragment->next;
2002 switch (fragment->binary_patch_method) {
2003 case BINARY_DELTA_DEFLATED:
2004 dst = patch_delta(img->buf, img->len, fragment->patch,
2005 fragment->size, &len);
2012 case BINARY_LITERAL_DEFLATED:
2014 img->len = fragment->size;
2015 img->buf = xmalloc(img->len+1);
2016 memcpy(img->buf, fragment->patch, img->len);
2017 img->buf[img->len] = '\0';
2023 static int apply_binary(struct image *img, struct patch *patch)
2025 const char *name = patch->old_name ? patch->old_name : patch->new_name;
2026 unsigned char sha1[20];
2029 * For safety, we require patch index line to contain
2030 * full 40-byte textual SHA1 for old and new, at least for now.
2032 if (strlen(patch->old_sha1_prefix) != 40 ||
2033 strlen(patch->new_sha1_prefix) != 40 ||
2034 get_sha1_hex(patch->old_sha1_prefix, sha1) ||
2035 get_sha1_hex(patch->new_sha1_prefix, sha1))
2036 return error("cannot apply binary patch to '%s' "
2037 "without full index line", name);
2039 if (patch->old_name) {
2041 * See if the old one matches what the patch
2044 hash_sha1_file(img->buf, img->len, blob_type, sha1);
2045 if (strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))
2046 return error("the patch applies to '%s' (%s), "
2047 "which does not match the "
2048 "current contents.",
2049 name, sha1_to_hex(sha1));
2052 /* Otherwise, the old one must be empty. */
2054 return error("the patch applies to an empty "
2055 "'%s' but it is not empty", name);
2058 get_sha1_hex(patch->new_sha1_prefix, sha1);
2059 if (is_null_sha1(sha1)) {
2061 return 0; /* deletion patch */
2064 if (has_sha1_file(sha1)) {
2065 /* We already have the postimage */
2066 enum object_type type;
2070 result = read_sha1_file(sha1, &type, &size);
2072 return error("the necessary postimage %s for "
2073 "'%s' cannot be read",
2074 patch->new_sha1_prefix, name);
2080 * We have verified buf matches the preimage;
2081 * apply the patch data to it, which is stored
2082 * in the patch->fragments->{patch,size}.
2084 if (apply_binary_fragment(img, patch))
2085 return error("binary patch does not apply to '%s'",
2088 /* verify that the result matches */
2089 hash_sha1_file(img->buf, img->len, blob_type, sha1);
2090 if (strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))
2091 return error("binary patch to '%s' creates incorrect result (expecting %s, got %s)",
2092 name, patch->new_sha1_prefix, sha1_to_hex(sha1));
2098 static int apply_fragments(struct image *img, struct patch *patch)
2100 struct fragment *frag = patch->fragments;
2101 const char *name = patch->old_name ? patch->old_name : patch->new_name;
2102 unsigned ws_rule = patch->ws_rule;
2103 unsigned inaccurate_eof = patch->inaccurate_eof;
2105 if (patch->is_binary)
2106 return apply_binary(img, patch);
2109 if (apply_one_fragment(img, frag, inaccurate_eof, ws_rule)) {
2110 error("patch failed: %s:%ld", name, frag->oldpos);
2111 if (!apply_with_reject)
2120 static int read_file_or_gitlink(struct cache_entry *ce, struct strbuf *buf)
2125 if (S_ISGITLINK(ntohl(ce->ce_mode))) {
2126 strbuf_grow(buf, 100);
2127 strbuf_addf(buf, "Subproject commit %s\n", sha1_to_hex(ce->sha1));
2129 enum object_type type;
2133 result = read_sha1_file(ce->sha1, &type, &sz);
2136 /* XXX read_sha1_file NUL-terminates */
2137 strbuf_attach(buf, result, sz, sz + 1);
2142 static int apply_data(struct patch *patch, struct stat *st, struct cache_entry *ce)
2149 strbuf_init(&buf, 0);
2151 if (read_file_or_gitlink(ce, &buf))
2152 return error("read of %s failed", patch->old_name);
2153 } else if (patch->old_name) {
2154 if (S_ISGITLINK(patch->old_mode)) {
2156 read_file_or_gitlink(ce, &buf);
2159 * There is no way to apply subproject
2160 * patch without looking at the index.
2162 patch->fragments = NULL;
2165 if (read_old_data(st, patch->old_name, &buf))
2166 return error("read of %s failed", patch->old_name);
2170 img = strbuf_detach(&buf, &len);
2171 prepare_image(&image, img, len, !patch->is_binary);
2173 if (apply_fragments(&image, patch) < 0)
2174 return -1; /* note with --reject this succeeds. */
2175 patch->result = image.buf;
2176 patch->resultsize = image.len;
2177 free(image.line_allocated);
2179 if (0 < patch->is_delete && patch->resultsize)
2180 return error("removal patch leaves file contents");
2185 static int check_to_create_blob(const char *new_name, int ok_if_exists)
2188 if (!lstat(new_name, &nst)) {
2189 if (S_ISDIR(nst.st_mode) || ok_if_exists)
2192 * A leading component of new_name might be a symlink
2193 * that is going to be removed with this patch, but
2194 * still pointing at somewhere that has the path.
2195 * In such a case, path "new_name" does not exist as
2196 * far as git is concerned.
2198 if (has_symlink_leading_path(new_name, NULL))
2201 return error("%s: already exists in working directory", new_name);
2203 else if ((errno != ENOENT) && (errno != ENOTDIR))
2204 return error("%s: %s", new_name, strerror(errno));
2208 static int verify_index_match(struct cache_entry *ce, struct stat *st)
2210 if (S_ISGITLINK(ntohl(ce->ce_mode))) {
2211 if (!S_ISDIR(st->st_mode))
2215 return ce_match_stat(ce, st, CE_MATCH_IGNORE_VALID);
2218 static int check_patch(struct patch *patch, struct patch *prev_patch)
2221 const char *old_name = patch->old_name;
2222 const char *new_name = patch->new_name;
2223 const char *name = old_name ? old_name : new_name;
2224 struct cache_entry *ce = NULL;
2227 patch->rejected = 1; /* we will drop this after we succeed */
2230 * Make sure that we do not have local modifications from the
2231 * index when we are looking at the index. Also make sure
2232 * we have the preimage file to be patched in the work tree,
2233 * unless --cached, which tells git to apply only in the index.
2237 unsigned st_mode = 0;
2240 stat_ret = lstat(old_name, &st);
2242 int pos = cache_name_pos(old_name, strlen(old_name));
2244 return error("%s: does not exist in index",
2246 ce = active_cache[pos];
2248 struct checkout costate;
2249 if (errno != ENOENT)
2250 return error("%s: %s", old_name,
2253 costate.base_dir = "";
2254 costate.base_dir_len = 0;
2257 costate.not_new = 0;
2258 costate.refresh_cache = 1;
2259 if (checkout_entry(ce,
2262 lstat(old_name, &st))
2265 if (!cached && verify_index_match(ce, &st))
2266 return error("%s: does not match index",
2269 st_mode = ntohl(ce->ce_mode);
2270 } else if (stat_ret < 0)
2271 return error("%s: %s", old_name, strerror(errno));
2274 st_mode = ntohl(ce_mode_from_stat(ce, st.st_mode));
2276 if (patch->is_new < 0)
2278 if (!patch->old_mode)
2279 patch->old_mode = st_mode;
2280 if ((st_mode ^ patch->old_mode) & S_IFMT)
2281 return error("%s: wrong type", old_name);
2282 if (st_mode != patch->old_mode)
2283 fprintf(stderr, "warning: %s has type %o, expected %o\n",
2284 old_name, st_mode, patch->old_mode);
2287 if (new_name && prev_patch && 0 < prev_patch->is_delete &&
2288 !strcmp(prev_patch->old_name, new_name))
2290 * A type-change diff is always split into a patch to
2291 * delete old, immediately followed by a patch to
2292 * create new (see diff.c::run_diff()); in such a case
2293 * it is Ok that the entry to be deleted by the
2294 * previous patch is still in the working tree and in
2302 ((0 < patch->is_new) | (0 < patch->is_rename) | patch->is_copy)) {
2304 cache_name_pos(new_name, strlen(new_name)) >= 0 &&
2306 return error("%s: already exists in index", new_name);
2308 int err = check_to_create_blob(new_name, ok_if_exists);
2312 if (!patch->new_mode) {
2313 if (0 < patch->is_new)
2314 patch->new_mode = S_IFREG | 0644;
2316 patch->new_mode = patch->old_mode;
2320 if (new_name && old_name) {
2321 int same = !strcmp(old_name, new_name);
2322 if (!patch->new_mode)
2323 patch->new_mode = patch->old_mode;
2324 if ((patch->old_mode ^ patch->new_mode) & S_IFMT)
2325 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
2326 patch->new_mode, new_name, patch->old_mode,
2327 same ? "" : " of ", same ? "" : old_name);
2330 if (apply_data(patch, &st, ce) < 0)
2331 return error("%s: patch does not apply", name);
2332 patch->rejected = 0;
2336 static int check_patch_list(struct patch *patch)
2338 struct patch *prev_patch = NULL;
2341 for (prev_patch = NULL; patch ; patch = patch->next) {
2342 if (apply_verbosely)
2343 say_patch_name(stderr,
2344 "Checking patch ", patch, "...\n");
2345 err |= check_patch(patch, prev_patch);
2351 /* This function tries to read the sha1 from the current index */
2352 static int get_current_sha1(const char *path, unsigned char *sha1)
2356 if (read_cache() < 0)
2358 pos = cache_name_pos(path, strlen(path));
2361 hashcpy(sha1, active_cache[pos]->sha1);
2365 /* Build an index that contains the just the files needed for a 3way merge */
2366 static void build_fake_ancestor(struct patch *list, const char *filename)
2368 struct patch *patch;
2369 struct index_state result = { 0 };
2372 /* Once we start supporting the reverse patch, it may be
2373 * worth showing the new sha1 prefix, but until then...
2375 for (patch = list; patch; patch = patch->next) {
2376 const unsigned char *sha1_ptr;
2377 unsigned char sha1[20];
2378 struct cache_entry *ce;
2381 name = patch->old_name ? patch->old_name : patch->new_name;
2382 if (0 < patch->is_new)
2384 else if (get_sha1(patch->old_sha1_prefix, sha1))
2385 /* git diff has no index line for mode/type changes */
2386 if (!patch->lines_added && !patch->lines_deleted) {
2387 if (get_current_sha1(patch->new_name, sha1) ||
2388 get_current_sha1(patch->old_name, sha1))
2389 die("mode change for %s, which is not "
2390 "in current HEAD", name);
2393 die("sha1 information is lacking or useless "
2398 ce = make_cache_entry(patch->old_mode, sha1_ptr, name, 0, 0);
2399 if (add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD))
2400 die ("Could not add %s to temporary index", name);
2403 fd = open(filename, O_WRONLY | O_CREAT, 0666);
2404 if (fd < 0 || write_index(&result, fd) || close(fd))
2405 die ("Could not write temporary index to %s", filename);
2407 discard_index(&result);
2410 static void stat_patch_list(struct patch *patch)
2412 int files, adds, dels;
2414 for (files = adds = dels = 0 ; patch ; patch = patch->next) {
2416 adds += patch->lines_added;
2417 dels += patch->lines_deleted;
2421 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels);
2424 static void numstat_patch_list(struct patch *patch)
2426 for ( ; patch; patch = patch->next) {
2428 name = patch->new_name ? patch->new_name : patch->old_name;
2429 if (patch->is_binary)
2432 printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);
2433 write_name_quoted(name, stdout, line_termination);
2437 static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
2440 printf(" %s mode %06o %s\n", newdelete, mode, name);
2442 printf(" %s %s\n", newdelete, name);
2445 static void show_mode_change(struct patch *p, int show_name)
2447 if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
2449 printf(" mode change %06o => %06o %s\n",
2450 p->old_mode, p->new_mode, p->new_name);
2452 printf(" mode change %06o => %06o\n",
2453 p->old_mode, p->new_mode);
2457 static void show_rename_copy(struct patch *p)
2459 const char *renamecopy = p->is_rename ? "rename" : "copy";
2460 const char *old, *new;
2462 /* Find common prefix */
2466 const char *slash_old, *slash_new;
2467 slash_old = strchr(old, '/');
2468 slash_new = strchr(new, '/');
2471 slash_old - old != slash_new - new ||
2472 memcmp(old, new, slash_new - new))
2474 old = slash_old + 1;
2475 new = slash_new + 1;
2477 /* p->old_name thru old is the common prefix, and old and new
2478 * through the end of names are renames
2480 if (old != p->old_name)
2481 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
2482 (int)(old - p->old_name), p->old_name,
2483 old, new, p->score);
2485 printf(" %s %s => %s (%d%%)\n", renamecopy,
2486 p->old_name, p->new_name, p->score);
2487 show_mode_change(p, 0);
2490 static void summary_patch_list(struct patch *patch)
2494 for (p = patch; p; p = p->next) {
2496 show_file_mode_name("create", p->new_mode, p->new_name);
2497 else if (p->is_delete)
2498 show_file_mode_name("delete", p->old_mode, p->old_name);
2500 if (p->is_rename || p->is_copy)
2501 show_rename_copy(p);
2504 printf(" rewrite %s (%d%%)\n",
2505 p->new_name, p->score);
2506 show_mode_change(p, 0);
2509 show_mode_change(p, 1);
2515 static void patch_stats(struct patch *patch)
2517 int lines = patch->lines_added + patch->lines_deleted;
2519 if (lines > max_change)
2521 if (patch->old_name) {
2522 int len = quote_c_style(patch->old_name, NULL, NULL, 0);
2524 len = strlen(patch->old_name);
2528 if (patch->new_name) {
2529 int len = quote_c_style(patch->new_name, NULL, NULL, 0);
2531 len = strlen(patch->new_name);
2537 static void remove_file(struct patch *patch, int rmdir_empty)
2540 if (remove_file_from_cache(patch->old_name) < 0)
2541 die("unable to remove %s from index", patch->old_name);
2544 if (S_ISGITLINK(patch->old_mode)) {
2545 if (rmdir(patch->old_name))
2546 warning("unable to remove submodule %s",
2548 } else if (!unlink(patch->old_name) && rmdir_empty) {
2549 char *name = xstrdup(patch->old_name);
2550 char *end = strrchr(name, '/');
2555 end = strrchr(name, '/');
2562 static void add_index_file(const char *path, unsigned mode, void *buf, unsigned long size)
2565 struct cache_entry *ce;
2566 int namelen = strlen(path);
2567 unsigned ce_size = cache_entry_size(namelen);
2572 ce = xcalloc(1, ce_size);
2573 memcpy(ce->name, path, namelen);
2574 ce->ce_mode = create_ce_mode(mode);
2575 ce->ce_flags = htons(namelen);
2576 if (S_ISGITLINK(mode)) {
2577 const char *s = buf;
2579 if (get_sha1_hex(s + strlen("Subproject commit "), ce->sha1))
2580 die("corrupt patch for subproject %s", path);
2583 if (lstat(path, &st) < 0)
2584 die("unable to stat newly created file %s",
2586 fill_stat_cache_info(ce, &st);
2588 if (write_sha1_file(buf, size, blob_type, ce->sha1) < 0)
2589 die("unable to create backing store for newly created file %s", path);
2591 if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)
2592 die("unable to add cache entry for %s", path);
2595 static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)
2600 if (S_ISGITLINK(mode)) {
2602 if (!lstat(path, &st) && S_ISDIR(st.st_mode))
2604 return mkdir(path, 0777);
2607 if (has_symlinks && S_ISLNK(mode))
2608 /* Although buf:size is counted string, it also is NUL
2611 return symlink(buf, path);
2613 fd = open(path, O_CREAT | O_EXCL | O_WRONLY, (mode & 0100) ? 0777 : 0666);
2617 strbuf_init(&nbuf, 0);
2618 if (convert_to_working_tree(path, buf, size, &nbuf)) {
2622 write_or_die(fd, buf, size);
2623 strbuf_release(&nbuf);
2626 die("closing file %s: %s", path, strerror(errno));
2631 * We optimistically assume that the directories exist,
2632 * which is true 99% of the time anyway. If they don't,
2633 * we create them and try again.
2635 static void create_one_file(char *path, unsigned mode, const char *buf, unsigned long size)
2639 if (!try_create_file(path, mode, buf, size))
2642 if (errno == ENOENT) {
2643 if (safe_create_leading_directories(path))
2645 if (!try_create_file(path, mode, buf, size))
2649 if (errno == EEXIST || errno == EACCES) {
2650 /* We may be trying to create a file where a directory
2654 if (!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))
2658 if (errno == EEXIST) {
2659 unsigned int nr = getpid();
2662 const char *newpath;
2663 newpath = mkpath("%s~%u", path, nr);
2664 if (!try_create_file(newpath, mode, buf, size)) {
2665 if (!rename(newpath, path))
2670 if (errno != EEXIST)
2675 die("unable to write file %s mode %o", path, mode);
2678 static void create_file(struct patch *patch)
2680 char *path = patch->new_name;
2681 unsigned mode = patch->new_mode;
2682 unsigned long size = patch->resultsize;
2683 char *buf = patch->result;
2686 mode = S_IFREG | 0644;
2687 create_one_file(path, mode, buf, size);
2688 add_index_file(path, mode, buf, size);
2691 /* phase zero is to remove, phase one is to create */
2692 static void write_out_one_result(struct patch *patch, int phase)
2694 if (patch->is_delete > 0) {
2696 remove_file(patch, 1);
2699 if (patch->is_new > 0 || patch->is_copy) {
2705 * Rename or modification boils down to the same
2706 * thing: remove the old, write the new
2709 remove_file(patch, patch->is_rename);
2714 static int write_out_one_reject(struct patch *patch)
2717 char namebuf[PATH_MAX];
2718 struct fragment *frag;
2721 for (cnt = 0, frag = patch->fragments; frag; frag = frag->next) {
2722 if (!frag->rejected)
2728 if (apply_verbosely)
2729 say_patch_name(stderr,
2730 "Applied patch ", patch, " cleanly.\n");
2734 /* This should not happen, because a removal patch that leaves
2735 * contents are marked "rejected" at the patch level.
2737 if (!patch->new_name)
2738 die("internal error");
2740 /* Say this even without --verbose */
2741 say_patch_name(stderr, "Applying patch ", patch, " with");
2742 fprintf(stderr, " %d rejects...\n", cnt);
2744 cnt = strlen(patch->new_name);
2745 if (ARRAY_SIZE(namebuf) <= cnt + 5) {
2746 cnt = ARRAY_SIZE(namebuf) - 5;
2748 "warning: truncating .rej filename to %.*s.rej",
2749 cnt - 1, patch->new_name);
2751 memcpy(namebuf, patch->new_name, cnt);
2752 memcpy(namebuf + cnt, ".rej", 5);
2754 rej = fopen(namebuf, "w");
2756 return error("cannot open %s: %s", namebuf, strerror(errno));
2758 /* Normal git tools never deal with .rej, so do not pretend
2759 * this is a git patch by saying --git nor give extended
2760 * headers. While at it, maybe please "kompare" that wants
2761 * the trailing TAB and some garbage at the end of line ;-).
2763 fprintf(rej, "diff a/%s b/%s\t(rejected hunks)\n",
2764 patch->new_name, patch->new_name);
2765 for (cnt = 1, frag = patch->fragments;
2767 cnt++, frag = frag->next) {
2768 if (!frag->rejected) {
2769 fprintf(stderr, "Hunk #%d applied cleanly.\n", cnt);
2772 fprintf(stderr, "Rejected hunk #%d.\n", cnt);
2773 fprintf(rej, "%.*s", frag->size, frag->patch);
2774 if (frag->patch[frag->size-1] != '\n')
2781 static int write_out_results(struct patch *list, int skipped_patch)
2787 if (!list && !skipped_patch)
2788 return error("No changes");
2790 for (phase = 0; phase < 2; phase++) {
2796 write_out_one_result(l, phase);
2797 if (phase == 1 && write_out_one_reject(l))
2806 static struct lock_file lock_file;
2808 static struct excludes {
2809 struct excludes *next;
2813 static int use_patch(struct patch *p)
2815 const char *pathname = p->new_name ? p->new_name : p->old_name;
2816 struct excludes *x = excludes;
2818 if (fnmatch(x->path, pathname, 0) == 0)
2822 if (0 < prefix_length) {
2823 int pathlen = strlen(pathname);
2824 if (pathlen <= prefix_length ||
2825 memcmp(prefix, pathname, prefix_length))
2831 static void prefix_one(char **name)
2833 char *old_name = *name;
2836 *name = xstrdup(prefix_filename(prefix, prefix_length, *name));
2840 static void prefix_patches(struct patch *p)
2842 if (!prefix || p->is_toplevel_relative)
2844 for ( ; p; p = p->next) {
2845 if (p->new_name == p->old_name) {
2846 char *prefixed = p->new_name;
2847 prefix_one(&prefixed);
2848 p->new_name = p->old_name = prefixed;
2851 prefix_one(&p->new_name);
2852 prefix_one(&p->old_name);
2857 static int apply_patch(int fd, const char *filename, int inaccurate_eof)
2861 struct patch *list = NULL, **listp = &list;
2862 int skipped_patch = 0;
2864 strbuf_init(&buf, 0);
2865 patch_input_file = filename;
2866 read_patch_file(&buf, fd);
2868 while (offset < buf.len) {
2869 struct patch *patch;
2872 patch = xcalloc(1, sizeof(*patch));
2873 patch->inaccurate_eof = inaccurate_eof;
2874 nr = parse_chunk(buf.buf + offset, buf.len - offset, patch);
2877 if (apply_in_reverse)
2878 reverse_patches(patch);
2880 prefix_patches(patch);
2881 if (use_patch(patch)) {
2884 listp = &patch->next;
2887 /* perhaps free it a bit better? */
2894 if (whitespace_error && (ws_error_action == die_on_ws_error))
2897 update_index = check_index && apply;
2898 if (update_index && newfd < 0)
2899 newfd = hold_locked_index(&lock_file, 1);
2902 if (read_cache() < 0)
2903 die("unable to read index file");
2906 if ((check || apply) &&
2907 check_patch_list(list) < 0 &&
2911 if (apply && write_out_results(list, skipped_patch))
2915 build_fake_ancestor(list, fake_ancestor);
2918 stat_patch_list(list);
2921 numstat_patch_list(list);
2924 summary_patch_list(list);
2926 strbuf_release(&buf);
2930 static int git_apply_config(const char *var, const char *value)
2932 if (!strcmp(var, "apply.whitespace")) {
2933 apply_default_whitespace = xstrdup(value);
2936 return git_default_config(var, value);
2940 int cmd_apply(int argc, const char **argv, const char *unused_prefix)
2944 int inaccurate_eof = 0;
2946 int is_not_gitdir = 0;
2948 const char *whitespace_option = NULL;
2950 prefix = setup_git_directory_gently(&is_not_gitdir);
2951 prefix_length = prefix ? strlen(prefix) : 0;
2952 git_config(git_apply_config);
2953 if (apply_default_whitespace)
2954 parse_whitespace_option(apply_default_whitespace);
2956 for (i = 1; i < argc; i++) {
2957 const char *arg = argv[i];
2961 if (!strcmp(arg, "-")) {
2962 errs |= apply_patch(0, "<stdin>", inaccurate_eof);
2966 if (!prefixcmp(arg, "--exclude=")) {
2967 struct excludes *x = xmalloc(sizeof(*x));
2973 if (!prefixcmp(arg, "-p")) {
2974 p_value = atoi(arg + 2);
2978 if (!strcmp(arg, "--no-add")) {
2982 if (!strcmp(arg, "--stat")) {
2987 if (!strcmp(arg, "--allow-binary-replacement") ||
2988 !strcmp(arg, "--binary")) {
2989 continue; /* now no-op */
2991 if (!strcmp(arg, "--numstat")) {
2996 if (!strcmp(arg, "--summary")) {
3001 if (!strcmp(arg, "--check")) {
3006 if (!strcmp(arg, "--index")) {
3008 die("--index outside a repository");
3012 if (!strcmp(arg, "--cached")) {
3014 die("--cached outside a repository");
3019 if (!strcmp(arg, "--apply")) {
3023 if (!strcmp(arg, "--build-fake-ancestor")) {
3026 die ("need a filename");
3027 fake_ancestor = argv[i];
3030 if (!strcmp(arg, "-z")) {
3031 line_termination = 0;
3034 if (!prefixcmp(arg, "-C")) {
3035 p_context = strtoul(arg + 2, &end, 0);
3037 die("unrecognized context count '%s'", arg + 2);
3040 if (!prefixcmp(arg, "--whitespace=")) {
3041 whitespace_option = arg + 13;
3042 parse_whitespace_option(arg + 13);
3045 if (!strcmp(arg, "-R") || !strcmp(arg, "--reverse")) {
3046 apply_in_reverse = 1;
3049 if (!strcmp(arg, "--unidiff-zero")) {
3053 if (!strcmp(arg, "--reject")) {
3054 apply = apply_with_reject = apply_verbosely = 1;
3057 if (!strcmp(arg, "-v") || !strcmp(arg, "--verbose")) {
3058 apply_verbosely = 1;
3061 if (!strcmp(arg, "--inaccurate-eof")) {
3065 if (0 < prefix_length)
3066 arg = prefix_filename(prefix, prefix_length, arg);
3068 fd = open(arg, O_RDONLY);
3072 set_default_whitespace_mode(whitespace_option);
3073 errs |= apply_patch(fd, arg, inaccurate_eof);
3076 set_default_whitespace_mode(whitespace_option);
3078 errs |= apply_patch(0, "<stdin>", inaccurate_eof);
3079 if (whitespace_error) {
3080 if (squelch_whitespace_errors &&
3081 squelch_whitespace_errors < whitespace_error) {
3083 whitespace_error - squelch_whitespace_errors;
3084 fprintf(stderr, "warning: squelched %d "
3085 "whitespace error%s\n",
3087 squelched == 1 ? "" : "s");
3089 if (ws_error_action == die_on_ws_error)
3090 die("%d line%s add%s whitespace errors.",
3092 whitespace_error == 1 ? "" : "s",
3093 whitespace_error == 1 ? "s" : "");
3094 if (applied_after_fixing_ws && apply)
3095 fprintf(stderr, "warning: %d line%s applied after"
3096 " fixing whitespace errors.\n",
3097 applied_after_fixing_ws,
3098 applied_after_fixing_ws == 1 ? "" : "s");
3099 else if (whitespace_error)
3100 fprintf(stderr, "warning: %d line%s add%s whitespace errors.\n",
3102 whitespace_error == 1 ? "" : "s",
3103 whitespace_error == 1 ? "s" : "");
3107 if (write_cache(newfd, active_cache, active_nr) ||
3108 commit_locked_index(&lock_file))
3109 die("Unable to write new index file");