4 * Copyright (C) Linus Torvalds, 2005
6 * This applies patches on top of some (arbitrary) version of the SCM.
11 #include "cache-tree.h"
18 * --check turns on checking that the working tree matches the
19 * files that are being modified, but doesn't apply the patch
20 * --stat does just a diffstat, and doesn't actually apply
21 * --numstat does numeric diffstat, and doesn't actually apply
22 * --index-info shows the old and new index info for paths if available.
23 * --index updates the cache as well.
24 * --cached updates only the cache without ever touching the working tree.
26 static const char *prefix
;
27 static int prefix_length
= -1;
28 static int newfd
= -1;
30 static int p_value
= 1;
31 static int allow_binary_replacement
= 0;
32 static int check_index
= 0;
33 static int write_index
= 0;
34 static int cached
= 0;
35 static int diffstat
= 0;
36 static int numstat
= 0;
37 static int summary
= 0;
40 static int apply_in_reverse
= 0;
41 static int no_add
= 0;
42 static int show_index_info
= 0;
43 static int line_termination
= '\n';
44 static unsigned long p_context
= -1;
45 static const char apply_usage
[] =
46 "git-apply [--stat] [--numstat] [--summary] [--check] [--index] [--cached] [--apply] [--no-add] [--index-info] [--allow-binary-replacement] [-z] [-pNUM] [-CNUM] [--whitespace=<nowarn|warn|error|error-all|strip>] <patch>...";
48 static enum whitespace_eol
{
53 } new_whitespace
= warn_on_whitespace
;
54 static int whitespace_error
= 0;
55 static int squelch_whitespace_errors
= 5;
56 static int applied_after_stripping
= 0;
57 static const char *patch_input_file
= NULL
;
59 static void parse_whitespace_option(const char *option
)
62 new_whitespace
= warn_on_whitespace
;
65 if (!strcmp(option
, "warn")) {
66 new_whitespace
= warn_on_whitespace
;
69 if (!strcmp(option
, "nowarn")) {
70 new_whitespace
= nowarn_whitespace
;
73 if (!strcmp(option
, "error")) {
74 new_whitespace
= error_on_whitespace
;
77 if (!strcmp(option
, "error-all")) {
78 new_whitespace
= error_on_whitespace
;
79 squelch_whitespace_errors
= 0;
82 if (!strcmp(option
, "strip")) {
83 new_whitespace
= strip_whitespace
;
86 die("unrecognized whitespace option '%s'", option
);
89 static void set_default_whitespace_mode(const char *whitespace_option
)
91 if (!whitespace_option
&& !apply_default_whitespace
) {
92 new_whitespace
= (apply
99 * For "diff-stat" like behaviour, we keep track of the biggest change
100 * we've seen, and the longest filename. That allows us to do simple
103 static int max_change
, max_len
;
106 * Various "current state", notably line numbers and what
107 * file (and how) we're patching right now.. The "is_xxxx"
108 * things are flags, where -1 means "don't know yet".
110 static int linenr
= 1;
113 * This represents one "hunk" from a patch, starting with
114 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The
115 * patch text is pointed at by patch, and its byte length
116 * is stored in size. leading and trailing are the number
120 unsigned long leading
, trailing
;
121 unsigned long oldpos
, oldlines
;
122 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 char *new_name
, *old_name
, *def_name
;
139 unsigned int old_mode
, new_mode
;
140 int is_rename
, is_copy
, is_new
, is_delete
, is_binary
;
141 unsigned long deflate_origlen
;
142 int lines_added
, lines_deleted
;
144 int inaccurate_eof
:1;
145 struct fragment
*fragments
;
147 unsigned long resultsize
;
148 char old_sha1_prefix
[41];
149 char new_sha1_prefix
[41];
153 #define CHUNKSIZE (8192)
156 static void *read_patch_file(int fd
, unsigned long *sizep
)
158 unsigned long size
= 0, alloc
= CHUNKSIZE
;
159 void *buffer
= xmalloc(alloc
);
162 int nr
= alloc
- size
;
165 buffer
= xrealloc(buffer
, alloc
);
168 nr
= xread(fd
, (char *) buffer
+ size
, nr
);
172 die("git-apply: read returned %s", strerror(errno
));
178 * Make sure that we have some slop in the buffer
179 * so that we can do speculative "memcmp" etc, and
180 * see to it that it is NUL-filled.
182 if (alloc
< size
+ SLOP
)
183 buffer
= xrealloc(buffer
, size
+ SLOP
);
184 memset((char *) buffer
+ size
, 0, SLOP
);
188 static unsigned long linelen(const char *buffer
, unsigned long size
)
190 unsigned long len
= 0;
193 if (*buffer
++ == '\n')
199 static int is_dev_null(const char *str
)
201 return !memcmp("/dev/null", str
, 9) && isspace(str
[9]);
207 static int name_terminate(const char *name
, int namelen
, int c
, int terminate
)
209 if (c
== ' ' && !(terminate
& TERM_SPACE
))
211 if (c
== '\t' && !(terminate
& TERM_TAB
))
217 static char * find_name(const char *line
, char *def
, int p_value
, int terminate
)
220 const char *start
= line
;
224 /* Proposed "new-style" GNU patch/diff format; see
225 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
227 name
= unquote_c_style(line
, NULL
);
231 cp
= strchr(name
, '/');
238 /* name can later be freed, so we need
239 * to memmove, not just return cp
241 memmove(name
, cp
, strlen(cp
) + 1);
258 if (name_terminate(start
, line
-start
, c
, terminate
))
262 if (c
== '/' && !--p_value
)
272 * Generally we prefer the shorter name, especially
273 * if the other one is just a variation of that with
274 * something else tacked on to the end (ie "file.orig"
278 int deflen
= strlen(def
);
279 if (deflen
< len
&& !strncmp(start
, def
, deflen
))
283 name
= xmalloc(len
+ 1);
284 memcpy(name
, start
, len
);
291 * Get the name etc info from the --/+++ lines of a traditional patch header
293 * NOTE! This hardcodes "-p1" behaviour in filename detection.
295 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
296 * files, we can happily check the index for a match, but for creating a
297 * new file we should try to match whatever "patch" does. I have no idea.
299 static void parse_traditional_patch(const char *first
, const char *second
, struct patch
*patch
)
303 first
+= 4; /* skip "--- " */
304 second
+= 4; /* skip "+++ " */
305 if (is_dev_null(first
)) {
307 patch
->is_delete
= 0;
308 name
= find_name(second
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
309 patch
->new_name
= name
;
310 } else if (is_dev_null(second
)) {
312 patch
->is_delete
= 1;
313 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
314 patch
->old_name
= name
;
316 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
317 name
= find_name(second
, name
, p_value
, TERM_SPACE
| TERM_TAB
);
318 patch
->old_name
= patch
->new_name
= name
;
321 die("unable to find filename in patch at line %d", linenr
);
324 static int gitdiff_hdrend(const char *line
, struct patch
*patch
)
330 * We're anal about diff header consistency, to make
331 * sure that we don't end up having strange ambiguous
332 * patches floating around.
334 * As a result, gitdiff_{old|new}name() will check
335 * their names against any previous information, just
338 static char *gitdiff_verify_name(const char *line
, int isnull
, char *orig_name
, const char *oldnew
)
340 if (!orig_name
&& !isnull
)
341 return find_name(line
, NULL
, 1, 0);
350 die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name
, linenr
);
351 another
= find_name(line
, NULL
, 1, 0);
352 if (!another
|| memcmp(another
, name
, len
))
353 die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew
, linenr
);
358 /* expect "/dev/null" */
359 if (memcmp("/dev/null", line
, 9) || line
[9] != '\n')
360 die("git-apply: bad git-diff - expected /dev/null on line %d", linenr
);
365 static int gitdiff_oldname(const char *line
, struct patch
*patch
)
367 patch
->old_name
= gitdiff_verify_name(line
, patch
->is_new
, patch
->old_name
, "old");
371 static int gitdiff_newname(const char *line
, struct patch
*patch
)
373 patch
->new_name
= gitdiff_verify_name(line
, patch
->is_delete
, patch
->new_name
, "new");
377 static int gitdiff_oldmode(const char *line
, struct patch
*patch
)
379 patch
->old_mode
= strtoul(line
, NULL
, 8);
383 static int gitdiff_newmode(const char *line
, struct patch
*patch
)
385 patch
->new_mode
= strtoul(line
, NULL
, 8);
389 static int gitdiff_delete(const char *line
, struct patch
*patch
)
391 patch
->is_delete
= 1;
392 patch
->old_name
= patch
->def_name
;
393 return gitdiff_oldmode(line
, patch
);
396 static int gitdiff_newfile(const char *line
, struct patch
*patch
)
399 patch
->new_name
= patch
->def_name
;
400 return gitdiff_newmode(line
, patch
);
403 static int gitdiff_copysrc(const char *line
, struct patch
*patch
)
406 patch
->old_name
= find_name(line
, NULL
, 0, 0);
410 static int gitdiff_copydst(const char *line
, struct patch
*patch
)
413 patch
->new_name
= find_name(line
, NULL
, 0, 0);
417 static int gitdiff_renamesrc(const char *line
, struct patch
*patch
)
419 patch
->is_rename
= 1;
420 patch
->old_name
= find_name(line
, NULL
, 0, 0);
424 static int gitdiff_renamedst(const char *line
, struct patch
*patch
)
426 patch
->is_rename
= 1;
427 patch
->new_name
= find_name(line
, NULL
, 0, 0);
431 static int gitdiff_similarity(const char *line
, struct patch
*patch
)
433 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
438 static int gitdiff_dissimilarity(const char *line
, struct patch
*patch
)
440 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
445 static int gitdiff_index(const char *line
, struct patch
*patch
)
447 /* index line is N hexadecimal, "..", N hexadecimal,
448 * and optional space with octal mode.
450 const char *ptr
, *eol
;
453 ptr
= strchr(line
, '.');
454 if (!ptr
|| ptr
[1] != '.' || 40 < ptr
- line
)
457 memcpy(patch
->old_sha1_prefix
, line
, len
);
458 patch
->old_sha1_prefix
[len
] = 0;
461 ptr
= strchr(line
, ' ');
462 eol
= strchr(line
, '\n');
464 if (!ptr
|| eol
< ptr
)
470 memcpy(patch
->new_sha1_prefix
, line
, len
);
471 patch
->new_sha1_prefix
[len
] = 0;
473 patch
->new_mode
= patch
->old_mode
= strtoul(ptr
+1, NULL
, 8);
478 * This is normal for a diff that doesn't change anything: we'll fall through
479 * into the next diff. Tell the parser to break out.
481 static int gitdiff_unrecognized(const char *line
, struct patch
*patch
)
486 static const char *stop_at_slash(const char *line
, int llen
)
490 for (i
= 0; i
< llen
; i
++) {
498 /* This is to extract the same name that appears on "diff --git"
499 * line. We do not find and return anything if it is a rename
500 * patch, and it is OK because we will find the name elsewhere.
501 * We need to reliably find name only when it is mode-change only,
502 * creation or deletion of an empty file. In any of these cases,
503 * both sides are the same name under a/ and b/ respectively.
505 static char *git_header_name(char *line
, int llen
)
509 const char *second
= NULL
;
511 line
+= strlen("diff --git ");
512 llen
-= strlen("diff --git ");
516 char *first
= unquote_c_style(line
, &second
);
520 /* advance to the first slash */
521 cp
= stop_at_slash(first
, strlen(first
));
522 if (!cp
|| cp
== first
) {
523 /* we do not accept absolute paths */
529 memmove(first
, cp
+1, len
+1); /* including NUL */
531 /* second points at one past closing dq of name.
532 * find the second name.
534 while ((second
< line
+ llen
) && isspace(*second
))
537 if (line
+ llen
<= second
)
538 goto free_first_and_fail
;
539 if (*second
== '"') {
540 char *sp
= unquote_c_style(second
, NULL
);
542 goto free_first_and_fail
;
543 cp
= stop_at_slash(sp
, strlen(sp
));
544 if (!cp
|| cp
== sp
) {
547 goto free_first_and_fail
;
549 /* They must match, otherwise ignore */
550 if (strcmp(cp
+1, first
))
551 goto free_both_and_fail
;
556 /* unquoted second */
557 cp
= stop_at_slash(second
, line
+ llen
- second
);
558 if (!cp
|| cp
== second
)
559 goto free_first_and_fail
;
561 if (line
+ llen
- cp
!= len
+ 1 ||
562 memcmp(first
, cp
, len
))
563 goto free_first_and_fail
;
567 /* unquoted first name */
568 name
= stop_at_slash(line
, llen
);
569 if (!name
|| name
== line
)
574 /* since the first name is unquoted, a dq if exists must be
575 * the beginning of the second name.
577 for (second
= name
; second
< line
+ llen
; second
++) {
578 if (*second
== '"') {
579 const char *cp
= second
;
581 char *sp
= unquote_c_style(second
, NULL
);
585 np
= stop_at_slash(sp
, strlen(sp
));
586 if (!np
|| np
== sp
) {
587 free_second_and_fail
:
593 if (len
< cp
- name
&&
594 !strncmp(np
, name
, len
) &&
595 isspace(name
[len
])) {
597 memmove(sp
, np
, len
+ 1);
600 goto free_second_and_fail
;
605 * Accept a name only if it shows up twice, exactly the same
608 for (len
= 0 ; ; len
++) {
625 if (second
[len
] == '\n' && !memcmp(name
, second
, len
)) {
626 char *ret
= xmalloc(len
+ 1);
627 memcpy(ret
, name
, len
);
636 /* Verify that we recognize the lines following a git header */
637 static int parse_git_header(char *line
, int len
, unsigned int size
, struct patch
*patch
)
639 unsigned long offset
;
641 /* A git diff has explicit new/delete information, so we don't guess */
643 patch
->is_delete
= 0;
646 * Some things may not have the old name in the
647 * rest of the headers anywhere (pure mode changes,
648 * or removing or adding empty files), so we get
649 * the default name from the header.
651 patch
->def_name
= git_header_name(line
, len
);
656 for (offset
= len
; size
> 0 ; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
657 static const struct opentry
{
659 int (*fn
)(const char *, struct patch
*);
661 { "@@ -", gitdiff_hdrend
},
662 { "--- ", gitdiff_oldname
},
663 { "+++ ", gitdiff_newname
},
664 { "old mode ", gitdiff_oldmode
},
665 { "new mode ", gitdiff_newmode
},
666 { "deleted file mode ", gitdiff_delete
},
667 { "new file mode ", gitdiff_newfile
},
668 { "copy from ", gitdiff_copysrc
},
669 { "copy to ", gitdiff_copydst
},
670 { "rename old ", gitdiff_renamesrc
},
671 { "rename new ", gitdiff_renamedst
},
672 { "rename from ", gitdiff_renamesrc
},
673 { "rename to ", gitdiff_renamedst
},
674 { "similarity index ", gitdiff_similarity
},
675 { "dissimilarity index ", gitdiff_dissimilarity
},
676 { "index ", gitdiff_index
},
677 { "", gitdiff_unrecognized
},
681 len
= linelen(line
, size
);
682 if (!len
|| line
[len
-1] != '\n')
684 for (i
= 0; i
< ARRAY_SIZE(optable
); i
++) {
685 const struct opentry
*p
= optable
+ i
;
686 int oplen
= strlen(p
->str
);
687 if (len
< oplen
|| memcmp(p
->str
, line
, oplen
))
689 if (p
->fn(line
+ oplen
, patch
) < 0)
698 static int parse_num(const char *line
, unsigned long *p
)
704 *p
= strtoul(line
, &ptr
, 10);
708 static int parse_range(const char *line
, int len
, int offset
, const char *expect
,
709 unsigned long *p1
, unsigned long *p2
)
713 if (offset
< 0 || offset
>= len
)
718 digits
= parse_num(line
, p1
);
728 digits
= parse_num(line
+1, p2
);
740 if (memcmp(line
, expect
, ex
))
747 * Parse a unified diff fragment header of the
748 * form "@@ -a,b +c,d @@"
750 static int parse_fragment_header(char *line
, int len
, struct fragment
*fragment
)
754 if (!len
|| line
[len
-1] != '\n')
757 /* Figure out the number of lines in a fragment */
758 offset
= parse_range(line
, len
, 4, " +", &fragment
->oldpos
, &fragment
->oldlines
);
759 offset
= parse_range(line
, len
, offset
, " @@", &fragment
->newpos
, &fragment
->newlines
);
764 static int find_header(char *line
, unsigned long size
, int *hdrsize
, struct patch
*patch
)
766 unsigned long offset
, len
;
768 patch
->is_rename
= patch
->is_copy
= 0;
769 patch
->is_new
= patch
->is_delete
= -1;
770 patch
->old_mode
= patch
->new_mode
= 0;
771 patch
->old_name
= patch
->new_name
= NULL
;
772 for (offset
= 0; size
> 0; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
773 unsigned long nextlen
;
775 len
= linelen(line
, size
);
779 /* Testing this early allows us to take a few shortcuts.. */
784 * Make sure we don't find any unconnected patch fragments.
785 * That's a sign that we didn't find a header, and that a
786 * patch has become corrupted/broken up.
788 if (!memcmp("@@ -", line
, 4)) {
789 struct fragment dummy
;
790 if (parse_fragment_header(line
, len
, &dummy
) < 0)
792 error("patch fragment without header at line %d: %.*s", linenr
, (int)len
-1, line
);
799 * Git patch? It might not have a real patch, just a rename
800 * or mode change, so we handle that specially
802 if (!memcmp("diff --git ", line
, 11)) {
803 int git_hdr_len
= parse_git_header(line
, len
, size
, patch
);
804 if (git_hdr_len
<= len
)
806 if (!patch
->old_name
&& !patch
->new_name
) {
807 if (!patch
->def_name
)
808 die("git diff header lacks filename information (line %d)", linenr
);
809 patch
->old_name
= patch
->new_name
= patch
->def_name
;
811 *hdrsize
= git_hdr_len
;
815 /** --- followed by +++ ? */
816 if (memcmp("--- ", line
, 4) || memcmp("+++ ", line
+ len
, 4))
820 * We only accept unified patches, so we want it to
821 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
824 nextlen
= linelen(line
+ len
, size
- len
);
825 if (size
< nextlen
+ 14 || memcmp("@@ -", line
+ len
+ nextlen
, 4))
828 /* Ok, we'll consider it a patch */
829 parse_traditional_patch(line
, line
+len
, patch
);
830 *hdrsize
= len
+ nextlen
;
838 * Parse a unified diff. Note that this really needs
839 * to parse each fragment separately, since the only
840 * way to know the difference between a "---" that is
841 * part of a patch, and a "---" that starts the next
842 * patch is to look at the line counts..
844 static int parse_fragment(char *line
, unsigned long size
, struct patch
*patch
, struct fragment
*fragment
)
847 int len
= linelen(line
, size
), offset
;
848 unsigned long oldlines
, newlines
;
849 unsigned long leading
, trailing
;
851 offset
= parse_fragment_header(line
, len
, fragment
);
854 oldlines
= fragment
->oldlines
;
855 newlines
= fragment
->newlines
;
859 if (patch
->is_new
< 0) {
860 patch
->is_new
= !oldlines
;
862 patch
->old_name
= NULL
;
864 if (patch
->is_delete
< 0) {
865 patch
->is_delete
= !newlines
;
867 patch
->new_name
= NULL
;
870 if (patch
->is_new
&& oldlines
)
871 return error("new file depends on old contents");
872 if (patch
->is_delete
!= !newlines
) {
874 return error("deleted file still has contents");
875 fprintf(stderr
, "** warning: file %s becomes empty but is not deleted\n", patch
->new_name
);
878 /* Parse the thing.. */
883 for (offset
= len
; size
> 0; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
884 if (!oldlines
&& !newlines
)
886 len
= linelen(line
, size
);
887 if (!len
|| line
[len
-1] != '\n')
895 if (!deleted
&& !added
)
906 * We know len is at least two, since we have a '+' and
907 * we checked that the last character was a '\n' above.
908 * That is, an addition of an empty line would check
909 * the '+' here. Sneaky...
911 if ((new_whitespace
!= nowarn_whitespace
) &&
912 isspace(line
[len
-2])) {
914 if (squelch_whitespace_errors
&&
915 squelch_whitespace_errors
<
919 fprintf(stderr
, "Adds trailing whitespace.\n%s:%d:%.*s\n",
921 linenr
, len
-2, line
+1);
929 /* We allow "\ No newline at end of file". Depending
930 * on locale settings when the patch was produced we
931 * don't know what this line looks like. The only
932 * thing we do know is that it begins with "\ ".
933 * Checking for 12 is just for sanity check -- any
934 * l10n of "\ No newline..." is at least that long.
937 if (len
< 12 || memcmp(line
, "\\ ", 2))
942 if (oldlines
|| newlines
)
944 fragment
->leading
= leading
;
945 fragment
->trailing
= trailing
;
947 /* If a fragment ends with an incomplete line, we failed to include
948 * it in the above loop because we hit oldlines == newlines == 0
951 if (12 < size
&& !memcmp(line
, "\\ ", 2))
952 offset
+= linelen(line
, size
);
954 patch
->lines_added
+= added
;
955 patch
->lines_deleted
+= deleted
;
959 static int parse_single_patch(char *line
, unsigned long size
, struct patch
*patch
)
961 unsigned long offset
= 0;
962 struct fragment
**fragp
= &patch
->fragments
;
964 while (size
> 4 && !memcmp(line
, "@@ -", 4)) {
965 struct fragment
*fragment
;
968 fragment
= xcalloc(1, sizeof(*fragment
));
969 len
= parse_fragment(line
, size
, patch
, fragment
);
971 die("corrupt patch at line %d", linenr
);
973 fragment
->patch
= line
;
974 fragment
->size
= len
;
977 fragp
= &fragment
->next
;
986 static inline int metadata_changes(struct patch
*patch
)
988 return patch
->is_rename
> 0 ||
989 patch
->is_copy
> 0 ||
992 (patch
->old_mode
&& patch
->new_mode
&&
993 patch
->old_mode
!= patch
->new_mode
);
996 static char *inflate_it(const void *data
, unsigned long size
,
997 unsigned long inflated_size
)
1003 memset(&stream
, 0, sizeof(stream
));
1005 stream
.next_in
= (unsigned char *)data
;
1006 stream
.avail_in
= size
;
1007 stream
.next_out
= out
= xmalloc(inflated_size
);
1008 stream
.avail_out
= inflated_size
;
1009 inflateInit(&stream
);
1010 st
= inflate(&stream
, Z_FINISH
);
1011 if ((st
!= Z_STREAM_END
) || stream
.total_out
!= inflated_size
) {
1018 static struct fragment
*parse_binary_hunk(char **buf_p
,
1019 unsigned long *sz_p
,
1023 /* Expect a line that begins with binary patch method ("literal"
1024 * or "delta"), followed by the length of data before deflating.
1025 * a sequence of 'length-byte' followed by base-85 encoded data
1026 * should follow, terminated by a newline.
1028 * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1029 * and we would limit the patch line to 66 characters,
1030 * so one line can fit up to 13 groups that would decode
1031 * to 52 bytes max. The length byte 'A'-'Z' corresponds
1032 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
1035 unsigned long size
= *sz_p
;
1036 char *buffer
= *buf_p
;
1038 unsigned long origlen
;
1041 struct fragment
*frag
;
1043 llen
= linelen(buffer
, size
);
1048 if (!strncmp(buffer
, "delta ", 6)) {
1049 patch_method
= BINARY_DELTA_DEFLATED
;
1050 origlen
= strtoul(buffer
+ 6, NULL
, 10);
1052 else if (!strncmp(buffer
, "literal ", 8)) {
1053 patch_method
= BINARY_LITERAL_DEFLATED
;
1054 origlen
= strtoul(buffer
+ 8, NULL
, 10);
1062 int byte_length
, max_byte_length
, newsize
;
1063 llen
= linelen(buffer
, size
);
1068 /* Minimum line is "A00000\n" which is 7-byte long,
1069 * and the line length must be multiple of 5 plus 2.
1071 if ((llen
< 7) || (llen
-2) % 5)
1073 max_byte_length
= (llen
- 2) / 5 * 4;
1074 byte_length
= *buffer
;
1075 if ('A' <= byte_length
&& byte_length
<= 'Z')
1076 byte_length
= byte_length
- 'A' + 1;
1077 else if ('a' <= byte_length
&& byte_length
<= 'z')
1078 byte_length
= byte_length
- 'a' + 27;
1081 /* if the input length was not multiple of 4, we would
1082 * have filler at the end but the filler should never
1085 if (max_byte_length
< byte_length
||
1086 byte_length
<= max_byte_length
- 4)
1088 newsize
= hunk_size
+ byte_length
;
1089 data
= xrealloc(data
, newsize
);
1090 if (decode_85(data
+ hunk_size
, buffer
+ 1, byte_length
))
1092 hunk_size
= newsize
;
1097 frag
= xcalloc(1, sizeof(*frag
));
1098 frag
->patch
= inflate_it(data
, hunk_size
, origlen
);
1102 frag
->size
= origlen
;
1106 frag
->binary_patch_method
= patch_method
;
1113 error("corrupt binary patch at line %d: %.*s",
1114 linenr
-1, llen
-1, buffer
);
1118 static int parse_binary(char *buffer
, unsigned long size
, struct patch
*patch
)
1120 /* We have read "GIT binary patch\n"; what follows is a line
1121 * that says the patch method (currently, either "literal" or
1122 * "delta") and the length of data before deflating; a
1123 * sequence of 'length-byte' followed by base-85 encoded data
1126 * When a binary patch is reversible, there is another binary
1127 * hunk in the same format, starting with patch method (either
1128 * "literal" or "delta") with the length of data, and a sequence
1129 * of length-byte + base-85 encoded data, terminated with another
1130 * empty line. This data, when applied to the postimage, produces
1133 struct fragment
*forward
;
1134 struct fragment
*reverse
;
1138 forward
= parse_binary_hunk(&buffer
, &size
, &status
, &used
);
1139 if (!forward
&& !status
)
1140 /* there has to be one hunk (forward hunk) */
1141 return error("unrecognized binary patch at line %d", linenr
-1);
1143 /* otherwise we already gave an error message */
1146 reverse
= parse_binary_hunk(&buffer
, &size
, &status
, &used_1
);
1150 /* not having reverse hunk is not an error, but having
1151 * a corrupt reverse hunk is.
1153 free((void*) forward
->patch
);
1157 forward
->next
= reverse
;
1158 patch
->fragments
= forward
;
1159 patch
->is_binary
= 1;
1163 static int parse_chunk(char *buffer
, unsigned long size
, struct patch
*patch
)
1165 int hdrsize
, patchsize
;
1166 int offset
= find_header(buffer
, size
, &hdrsize
, patch
);
1171 patchsize
= parse_single_patch(buffer
+ offset
+ hdrsize
, size
- offset
- hdrsize
, patch
);
1174 static const char *binhdr
[] = {
1179 static const char git_binary
[] = "GIT binary patch\n";
1181 int hd
= hdrsize
+ offset
;
1182 unsigned long llen
= linelen(buffer
+ hd
, size
- hd
);
1184 if (llen
== sizeof(git_binary
) - 1 &&
1185 !memcmp(git_binary
, buffer
+ hd
, llen
)) {
1188 used
= parse_binary(buffer
+ hd
+ llen
,
1189 size
- hd
- llen
, patch
);
1191 patchsize
= used
+ llen
;
1195 else if (!memcmp(" differ\n", buffer
+ hd
+ llen
- 8, 8)) {
1196 for (i
= 0; binhdr
[i
]; i
++) {
1197 int len
= strlen(binhdr
[i
]);
1198 if (len
< size
- hd
&&
1199 !memcmp(binhdr
[i
], buffer
+ hd
, len
)) {
1201 patch
->is_binary
= 1;
1208 /* Empty patch cannot be applied if:
1209 * - it is a binary patch and we do not do binary_replace, or
1210 * - text patch without metadata change
1212 if ((apply
|| check
) &&
1214 ? !allow_binary_replacement
1215 : !metadata_changes(patch
)))
1216 die("patch with only garbage at line %d", linenr
);
1219 return offset
+ hdrsize
+ patchsize
;
1222 #define swap(a,b) myswap((a),(b),sizeof(a))
1224 #define myswap(a, b, size) do { \
1225 unsigned char mytmp[size]; \
1226 memcpy(mytmp, &a, size); \
1227 memcpy(&a, &b, size); \
1228 memcpy(&b, mytmp, size); \
1231 static void reverse_patches(struct patch
*p
)
1233 for (; p
; p
= p
->next
) {
1234 struct fragment
*frag
= p
->fragments
;
1236 swap(p
->new_name
, p
->old_name
);
1237 swap(p
->new_mode
, p
->old_mode
);
1238 swap(p
->is_new
, p
->is_delete
);
1239 swap(p
->lines_added
, p
->lines_deleted
);
1240 swap(p
->old_sha1_prefix
, p
->new_sha1_prefix
);
1242 for (; frag
; frag
= frag
->next
) {
1243 swap(frag
->newpos
, frag
->oldpos
);
1244 swap(frag
->newlines
, frag
->oldlines
);
1249 static const char pluses
[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
1250 static const char minuses
[]= "----------------------------------------------------------------------";
1252 static void show_stats(struct patch
*patch
)
1254 const char *prefix
= "";
1255 char *name
= patch
->new_name
;
1257 int len
, max
, add
, del
, total
;
1260 name
= patch
->old_name
;
1262 if (0 < (len
= quote_c_style(name
, NULL
, NULL
, 0))) {
1263 qname
= xmalloc(len
+ 1);
1264 quote_c_style(name
, qname
, NULL
, 0);
1269 * "scale" the filename
1280 slash
= strchr(name
, '/');
1287 * scale the add/delete
1293 add
= patch
->lines_added
;
1294 del
= patch
->lines_deleted
;
1297 if (max_change
> 0) {
1298 total
= (total
* max
+ max_change
/ 2) / max_change
;
1299 add
= (add
* max
+ max_change
/ 2) / max_change
;
1302 if (patch
->is_binary
)
1303 printf(" %s%-*s | Bin\n", prefix
, len
, name
);
1305 printf(" %s%-*s |%5d %.*s%.*s\n", prefix
,
1306 len
, name
, patch
->lines_added
+ patch
->lines_deleted
,
1307 add
, pluses
, del
, minuses
);
1312 static int read_old_data(struct stat
*st
, const char *path
, void *buf
, unsigned long size
)
1317 switch (st
->st_mode
& S_IFMT
) {
1319 return readlink(path
, buf
, size
);
1321 fd
= open(path
, O_RDONLY
);
1323 return error("unable to open %s", path
);
1326 int ret
= xread(fd
, (char *) buf
+ got
, size
- got
);
1339 static int find_offset(const char *buf
, unsigned long size
, const char *fragment
, unsigned long fragsize
, int line
, int *lines
)
1342 unsigned long start
, backwards
, forwards
;
1344 if (fragsize
> size
)
1349 unsigned long offset
= 0;
1351 while (offset
+ fragsize
<= size
) {
1352 if (buf
[offset
++] == '\n') {
1360 /* Exact line number? */
1361 if (!memcmp(buf
+ start
, fragment
, fragsize
))
1365 * There's probably some smart way to do this, but I'll leave
1366 * that to the smart and beautiful people. I'm simple and stupid.
1370 for (i
= 0; ; i
++) {
1377 if (forwards
+ fragsize
> size
)
1383 } while (backwards
&& buf
[backwards
-1] != '\n');
1386 while (forwards
+ fragsize
<= size
) {
1387 if (buf
[forwards
++] == '\n')
1393 if (try + fragsize
> size
)
1395 if (memcmp(buf
+ try, fragment
, fragsize
))
1405 * We should start searching forward and backward.
1410 static void remove_first_line(const char **rbuf
, int *rsize
)
1412 const char *buf
= *rbuf
;
1414 unsigned long offset
;
1416 while (offset
<= size
) {
1417 if (buf
[offset
++] == '\n')
1420 *rsize
= size
- offset
;
1421 *rbuf
= buf
+ offset
;
1424 static void remove_last_line(const char **rbuf
, int *rsize
)
1426 const char *buf
= *rbuf
;
1428 unsigned long offset
;
1430 while (offset
> 0) {
1431 if (buf
[--offset
] == '\n')
1434 *rsize
= offset
+ 1;
1437 struct buffer_desc
{
1440 unsigned long alloc
;
1443 static int apply_line(char *output
, const char *patch
, int plen
)
1445 /* plen is number of bytes to be copied from patch,
1446 * starting at patch+1 (patch[0] is '+'). Typically
1447 * patch[plen] is '\n'.
1449 int add_nl_to_tail
= 0;
1450 if ((new_whitespace
== strip_whitespace
) &&
1451 1 < plen
&& isspace(patch
[plen
-1])) {
1452 if (patch
[plen
] == '\n')
1455 while (0 < plen
&& isspace(patch
[plen
]))
1457 applied_after_stripping
++;
1459 memcpy(output
, patch
+ 1, plen
);
1461 output
[plen
++] = '\n';
1465 static int apply_one_fragment(struct buffer_desc
*desc
, struct fragment
*frag
, int inaccurate_eof
)
1467 int match_beginning
, match_end
;
1468 char *buf
= desc
->buffer
;
1469 const char *patch
= frag
->patch
;
1470 int offset
, size
= frag
->size
;
1471 char *old
= xmalloc(size
);
1472 char *new = xmalloc(size
);
1473 const char *oldlines
, *newlines
;
1474 int oldsize
= 0, newsize
= 0;
1475 unsigned long leading
, trailing
;
1480 int len
= linelen(patch
, size
);
1487 * "plen" is how much of the line we should use for
1488 * the actual patch data. Normally we just remove the
1489 * first character on the line, but if the line is
1490 * followed by "\ No newline", then we also remove the
1491 * last one (which is the newline, of course).
1494 if (len
< size
&& patch
[len
] == '\\')
1497 if (apply_in_reverse
) {
1500 else if (first
== '+')
1506 memcpy(old
+ oldsize
, patch
+ 1, plen
);
1510 /* Fall-through for ' ' */
1512 if (first
!= '+' || !no_add
)
1513 newsize
+= apply_line(new + newsize
, patch
,
1516 case '@': case '\\':
1517 /* Ignore it, we already handled it */
1526 if (inaccurate_eof
&& oldsize
> 0 && old
[oldsize
- 1] == '\n' &&
1527 newsize
> 0 && new[newsize
- 1] == '\n') {
1534 leading
= frag
->leading
;
1535 trailing
= frag
->trailing
;
1538 * If we don't have any leading/trailing data in the patch,
1539 * we want it to match at the beginning/end of the file.
1541 match_beginning
= !leading
&& (frag
->oldpos
== 1);
1542 match_end
= !trailing
;
1547 offset
= find_offset(buf
, desc
->size
, oldlines
, oldsize
, pos
, &lines
);
1548 if (match_end
&& offset
+ oldsize
!= desc
->size
)
1550 if (match_beginning
&& offset
)
1553 int diff
= newsize
- oldsize
;
1554 unsigned long size
= desc
->size
+ diff
;
1555 unsigned long alloc
= desc
->alloc
;
1557 /* Warn if it was necessary to reduce the number
1560 if ((leading
!= frag
->leading
) || (trailing
!= frag
->trailing
))
1561 fprintf(stderr
, "Context reduced to (%ld/%ld) to apply fragment at %d\n",
1562 leading
, trailing
, pos
+ lines
);
1565 alloc
= size
+ 8192;
1566 desc
->alloc
= alloc
;
1567 buf
= xrealloc(buf
, alloc
);
1571 memmove(buf
+ offset
+ newsize
, buf
+ offset
+ oldsize
, size
- offset
- newsize
);
1572 memcpy(buf
+ offset
, newlines
, newsize
);
1578 /* Am I at my context limits? */
1579 if ((leading
<= p_context
) && (trailing
<= p_context
))
1581 if (match_beginning
|| match_end
) {
1582 match_beginning
= match_end
= 0;
1585 /* Reduce the number of context lines
1586 * Reduce both leading and trailing if they are equal
1587 * otherwise just reduce the larger context.
1589 if (leading
>= trailing
) {
1590 remove_first_line(&oldlines
, &oldsize
);
1591 remove_first_line(&newlines
, &newsize
);
1595 if (trailing
> leading
) {
1596 remove_last_line(&oldlines
, &oldsize
);
1597 remove_last_line(&newlines
, &newsize
);
1607 static int apply_binary_fragment(struct buffer_desc
*desc
, struct patch
*patch
)
1609 unsigned long dst_size
;
1610 struct fragment
*fragment
= patch
->fragments
;
1614 /* Binary patch is irreversible without the optional second hunk */
1615 if (apply_in_reverse
) {
1616 if (!fragment
->next
)
1617 return error("cannot reverse-apply a binary patch "
1618 "without the reverse hunk to '%s'",
1620 ? patch
->new_name
: patch
->old_name
);
1621 fragment
= fragment
;
1623 data
= (void*) fragment
->patch
;
1624 switch (fragment
->binary_patch_method
) {
1625 case BINARY_DELTA_DEFLATED
:
1626 result
= patch_delta(desc
->buffer
, desc
->size
,
1631 desc
->buffer
= result
;
1633 case BINARY_LITERAL_DEFLATED
:
1635 desc
->buffer
= data
;
1636 dst_size
= fragment
->size
;
1641 desc
->size
= desc
->alloc
= dst_size
;
1645 static int apply_binary(struct buffer_desc
*desc
, struct patch
*patch
)
1647 const char *name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
1648 unsigned char sha1
[20];
1649 unsigned char hdr
[50];
1652 if (!allow_binary_replacement
)
1653 return error("cannot apply binary patch to '%s' "
1654 "without --allow-binary-replacement",
1657 /* For safety, we require patch index line to contain
1658 * full 40-byte textual SHA1 for old and new, at least for now.
1660 if (strlen(patch
->old_sha1_prefix
) != 40 ||
1661 strlen(patch
->new_sha1_prefix
) != 40 ||
1662 get_sha1_hex(patch
->old_sha1_prefix
, sha1
) ||
1663 get_sha1_hex(patch
->new_sha1_prefix
, sha1
))
1664 return error("cannot apply binary patch to '%s' "
1665 "without full index line", name
);
1667 if (patch
->old_name
) {
1668 /* See if the old one matches what the patch
1671 write_sha1_file_prepare(desc
->buffer
, desc
->size
,
1672 blob_type
, sha1
, hdr
, &hdrlen
);
1673 if (strcmp(sha1_to_hex(sha1
), patch
->old_sha1_prefix
))
1674 return error("the patch applies to '%s' (%s), "
1675 "which does not match the "
1676 "current contents.",
1677 name
, sha1_to_hex(sha1
));
1680 /* Otherwise, the old one must be empty. */
1682 return error("the patch applies to an empty "
1683 "'%s' but it is not empty", name
);
1686 get_sha1_hex(patch
->new_sha1_prefix
, sha1
);
1687 if (!memcmp(sha1
, null_sha1
, 20)) {
1689 desc
->alloc
= desc
->size
= 0;
1690 desc
->buffer
= NULL
;
1691 return 0; /* deletion patch */
1694 if (has_sha1_file(sha1
)) {
1695 /* We already have the postimage */
1700 desc
->buffer
= read_sha1_file(sha1
, type
, &size
);
1702 return error("the necessary postimage %s for "
1703 "'%s' cannot be read",
1704 patch
->new_sha1_prefix
, name
);
1705 desc
->alloc
= desc
->size
= size
;
1708 /* We have verified desc matches the preimage;
1709 * apply the patch data to it, which is stored
1710 * in the patch->fragments->{patch,size}.
1712 if (apply_binary_fragment(desc
, patch
))
1713 return error("binary patch does not apply to '%s'",
1716 /* verify that the result matches */
1717 write_sha1_file_prepare(desc
->buffer
, desc
->size
, blob_type
,
1718 sha1
, hdr
, &hdrlen
);
1719 if (strcmp(sha1_to_hex(sha1
), patch
->new_sha1_prefix
))
1720 return error("binary patch to '%s' creates incorrect result", name
);
1726 static int apply_fragments(struct buffer_desc
*desc
, struct patch
*patch
)
1728 struct fragment
*frag
= patch
->fragments
;
1729 const char *name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
1731 if (patch
->is_binary
)
1732 return apply_binary(desc
, patch
);
1735 if (apply_one_fragment(desc
, frag
, patch
->inaccurate_eof
) < 0)
1736 return error("patch failed: %s:%ld",
1737 name
, frag
->oldpos
);
1743 static int apply_data(struct patch
*patch
, struct stat
*st
, struct cache_entry
*ce
)
1746 unsigned long size
, alloc
;
1747 struct buffer_desc desc
;
1755 buf
= read_sha1_file(ce
->sha1
, type
, &size
);
1757 return error("read of %s failed",
1762 else if (patch
->old_name
) {
1764 alloc
= size
+ 8192;
1765 buf
= xmalloc(alloc
);
1766 if (read_old_data(st
, patch
->old_name
, buf
, alloc
) != size
)
1767 return error("read of %s failed", patch
->old_name
);
1773 if (apply_fragments(&desc
, patch
) < 0)
1776 /* NUL terminate the result */
1777 if (desc
.alloc
<= desc
.size
)
1778 desc
.buffer
= xrealloc(desc
.buffer
, desc
.size
+ 1);
1779 desc
.buffer
[desc
.size
] = 0;
1781 patch
->result
= desc
.buffer
;
1782 patch
->resultsize
= desc
.size
;
1784 if (patch
->is_delete
&& patch
->resultsize
)
1785 return error("removal patch leaves file contents");
1790 static int check_patch(struct patch
*patch
, struct patch
*prev_patch
)
1793 const char *old_name
= patch
->old_name
;
1794 const char *new_name
= patch
->new_name
;
1795 const char *name
= old_name
? old_name
: new_name
;
1796 struct cache_entry
*ce
= NULL
;
1802 unsigned st_mode
= 0;
1805 stat_ret
= lstat(old_name
, &st
);
1807 int pos
= cache_name_pos(old_name
, strlen(old_name
));
1809 return error("%s: does not exist in index",
1811 ce
= active_cache
[pos
];
1813 struct checkout costate
;
1814 if (errno
!= ENOENT
)
1815 return error("%s: %s", old_name
,
1818 costate
.base_dir
= "";
1819 costate
.base_dir_len
= 0;
1822 costate
.not_new
= 0;
1823 costate
.refresh_cache
= 1;
1824 if (checkout_entry(ce
,
1827 lstat(old_name
, &st
))
1831 changed
= ce_match_stat(ce
, &st
, 1);
1833 return error("%s: does not match index",
1836 st_mode
= ntohl(ce
->ce_mode
);
1838 else if (stat_ret
< 0)
1839 return error("%s: %s", old_name
, strerror(errno
));
1842 st_mode
= ntohl(create_ce_mode(st
.st_mode
));
1844 if (patch
->is_new
< 0)
1846 if (!patch
->old_mode
)
1847 patch
->old_mode
= st_mode
;
1848 if ((st_mode
^ patch
->old_mode
) & S_IFMT
)
1849 return error("%s: wrong type", old_name
);
1850 if (st_mode
!= patch
->old_mode
)
1851 fprintf(stderr
, "warning: %s has type %o, expected %o\n",
1852 old_name
, st_mode
, patch
->old_mode
);
1855 if (new_name
&& prev_patch
&& prev_patch
->is_delete
&&
1856 !strcmp(prev_patch
->old_name
, new_name
))
1857 /* A type-change diff is always split into a patch to
1858 * delete old, immediately followed by a patch to
1859 * create new (see diff.c::run_diff()); in such a case
1860 * it is Ok that the entry to be deleted by the
1861 * previous patch is still in the working tree and in
1868 if (new_name
&& (patch
->is_new
| patch
->is_rename
| patch
->is_copy
)) {
1870 cache_name_pos(new_name
, strlen(new_name
)) >= 0 &&
1872 return error("%s: already exists in index", new_name
);
1875 if (!lstat(new_name
, &nst
)) {
1876 if (S_ISDIR(nst
.st_mode
) || ok_if_exists
)
1879 return error("%s: already exists in working directory", new_name
);
1881 else if ((errno
!= ENOENT
) && (errno
!= ENOTDIR
))
1882 return error("%s: %s", new_name
, strerror(errno
));
1884 if (!patch
->new_mode
) {
1886 patch
->new_mode
= S_IFREG
| 0644;
1888 patch
->new_mode
= patch
->old_mode
;
1892 if (new_name
&& old_name
) {
1893 int same
= !strcmp(old_name
, new_name
);
1894 if (!patch
->new_mode
)
1895 patch
->new_mode
= patch
->old_mode
;
1896 if ((patch
->old_mode
^ patch
->new_mode
) & S_IFMT
)
1897 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
1898 patch
->new_mode
, new_name
, patch
->old_mode
,
1899 same
? "" : " of ", same
? "" : old_name
);
1902 if (apply_data(patch
, &st
, ce
) < 0)
1903 return error("%s: patch does not apply", name
);
1907 static int check_patch_list(struct patch
*patch
)
1909 struct patch
*prev_patch
= NULL
;
1912 for (prev_patch
= NULL
; patch
; patch
= patch
->next
) {
1913 error
|= check_patch(patch
, prev_patch
);
1919 static inline int is_null_sha1(const unsigned char *sha1
)
1921 return !memcmp(sha1
, null_sha1
, 20);
1924 static void show_index_list(struct patch
*list
)
1926 struct patch
*patch
;
1928 /* Once we start supporting the reverse patch, it may be
1929 * worth showing the new sha1 prefix, but until then...
1931 for (patch
= list
; patch
; patch
= patch
->next
) {
1932 const unsigned char *sha1_ptr
;
1933 unsigned char sha1
[20];
1936 name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
1938 sha1_ptr
= null_sha1
;
1939 else if (get_sha1(patch
->old_sha1_prefix
, sha1
))
1940 die("sha1 information is lacking or useless (%s).",
1945 printf("%06o %s ",patch
->old_mode
, sha1_to_hex(sha1_ptr
));
1946 if (line_termination
&& quote_c_style(name
, NULL
, NULL
, 0))
1947 quote_c_style(name
, NULL
, stdout
, 0);
1949 fputs(name
, stdout
);
1950 putchar(line_termination
);
1954 static void stat_patch_list(struct patch
*patch
)
1956 int files
, adds
, dels
;
1958 for (files
= adds
= dels
= 0 ; patch
; patch
= patch
->next
) {
1960 adds
+= patch
->lines_added
;
1961 dels
+= patch
->lines_deleted
;
1965 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files
, adds
, dels
);
1968 static void numstat_patch_list(struct patch
*patch
)
1970 for ( ; patch
; patch
= patch
->next
) {
1972 name
= patch
->new_name
? patch
->new_name
: patch
->old_name
;
1973 printf("%d\t%d\t", patch
->lines_added
, patch
->lines_deleted
);
1974 if (line_termination
&& quote_c_style(name
, NULL
, NULL
, 0))
1975 quote_c_style(name
, NULL
, stdout
, 0);
1977 fputs(name
, stdout
);
1982 static void show_file_mode_name(const char *newdelete
, unsigned int mode
, const char *name
)
1985 printf(" %s mode %06o %s\n", newdelete
, mode
, name
);
1987 printf(" %s %s\n", newdelete
, name
);
1990 static void show_mode_change(struct patch
*p
, int show_name
)
1992 if (p
->old_mode
&& p
->new_mode
&& p
->old_mode
!= p
->new_mode
) {
1994 printf(" mode change %06o => %06o %s\n",
1995 p
->old_mode
, p
->new_mode
, p
->new_name
);
1997 printf(" mode change %06o => %06o\n",
1998 p
->old_mode
, p
->new_mode
);
2002 static void show_rename_copy(struct patch
*p
)
2004 const char *renamecopy
= p
->is_rename
? "rename" : "copy";
2005 const char *old
, *new;
2007 /* Find common prefix */
2011 const char *slash_old
, *slash_new
;
2012 slash_old
= strchr(old
, '/');
2013 slash_new
= strchr(new, '/');
2016 slash_old
- old
!= slash_new
- new ||
2017 memcmp(old
, new, slash_new
- new))
2019 old
= slash_old
+ 1;
2020 new = slash_new
+ 1;
2022 /* p->old_name thru old is the common prefix, and old and new
2023 * through the end of names are renames
2025 if (old
!= p
->old_name
)
2026 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy
,
2027 (int)(old
- p
->old_name
), p
->old_name
,
2028 old
, new, p
->score
);
2030 printf(" %s %s => %s (%d%%)\n", renamecopy
,
2031 p
->old_name
, p
->new_name
, p
->score
);
2032 show_mode_change(p
, 0);
2035 static void summary_patch_list(struct patch
*patch
)
2039 for (p
= patch
; p
; p
= p
->next
) {
2041 show_file_mode_name("create", p
->new_mode
, p
->new_name
);
2042 else if (p
->is_delete
)
2043 show_file_mode_name("delete", p
->old_mode
, p
->old_name
);
2045 if (p
->is_rename
|| p
->is_copy
)
2046 show_rename_copy(p
);
2049 printf(" rewrite %s (%d%%)\n",
2050 p
->new_name
, p
->score
);
2051 show_mode_change(p
, 0);
2054 show_mode_change(p
, 1);
2060 static void patch_stats(struct patch
*patch
)
2062 int lines
= patch
->lines_added
+ patch
->lines_deleted
;
2064 if (lines
> max_change
)
2066 if (patch
->old_name
) {
2067 int len
= quote_c_style(patch
->old_name
, NULL
, NULL
, 0);
2069 len
= strlen(patch
->old_name
);
2073 if (patch
->new_name
) {
2074 int len
= quote_c_style(patch
->new_name
, NULL
, NULL
, 0);
2076 len
= strlen(patch
->new_name
);
2082 static void remove_file(struct patch
*patch
)
2085 if (remove_file_from_cache(patch
->old_name
) < 0)
2086 die("unable to remove %s from index", patch
->old_name
);
2087 cache_tree_invalidate_path(active_cache_tree
, patch
->old_name
);
2090 unlink(patch
->old_name
);
2093 static void add_index_file(const char *path
, unsigned mode
, void *buf
, unsigned long size
)
2096 struct cache_entry
*ce
;
2097 int namelen
= strlen(path
);
2098 unsigned ce_size
= cache_entry_size(namelen
);
2103 ce
= xcalloc(1, ce_size
);
2104 memcpy(ce
->name
, path
, namelen
);
2105 ce
->ce_mode
= create_ce_mode(mode
);
2106 ce
->ce_flags
= htons(namelen
);
2108 if (lstat(path
, &st
) < 0)
2109 die("unable to stat newly created file %s", path
);
2110 fill_stat_cache_info(ce
, &st
);
2112 if (write_sha1_file(buf
, size
, blob_type
, ce
->sha1
) < 0)
2113 die("unable to create backing store for newly created file %s", path
);
2114 if (add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
) < 0)
2115 die("unable to add cache entry for %s", path
);
2118 static int try_create_file(const char *path
, unsigned int mode
, const char *buf
, unsigned long size
)
2123 /* Although buf:size is counted string, it also is NUL
2126 return symlink(buf
, path
);
2127 fd
= open(path
, O_CREAT
| O_EXCL
| O_WRONLY
, (mode
& 0100) ? 0777 : 0666);
2131 int written
= xwrite(fd
, buf
, size
);
2133 die("writing file %s: %s", path
, strerror(errno
));
2135 die("out of space writing file %s", path
);
2140 die("closing file %s: %s", path
, strerror(errno
));
2145 * We optimistically assume that the directories exist,
2146 * which is true 99% of the time anyway. If they don't,
2147 * we create them and try again.
2149 static void create_one_file(char *path
, unsigned mode
, const char *buf
, unsigned long size
)
2153 if (!try_create_file(path
, mode
, buf
, size
))
2156 if (errno
== ENOENT
) {
2157 if (safe_create_leading_directories(path
))
2159 if (!try_create_file(path
, mode
, buf
, size
))
2163 if (errno
== EEXIST
|| errno
== EACCES
) {
2164 /* We may be trying to create a file where a directory
2169 if (!lstat(path
, &st
) && S_ISDIR(st
.st_mode
) && !rmdir(path
))
2173 if (errno
== EEXIST
) {
2174 unsigned int nr
= getpid();
2177 const char *newpath
;
2178 newpath
= mkpath("%s~%u", path
, nr
);
2179 if (!try_create_file(newpath
, mode
, buf
, size
)) {
2180 if (!rename(newpath
, path
))
2185 if (errno
!= EEXIST
)
2190 die("unable to write file %s mode %o", path
, mode
);
2193 static void create_file(struct patch
*patch
)
2195 char *path
= patch
->new_name
;
2196 unsigned mode
= patch
->new_mode
;
2197 unsigned long size
= patch
->resultsize
;
2198 char *buf
= patch
->result
;
2201 mode
= S_IFREG
| 0644;
2202 create_one_file(path
, mode
, buf
, size
);
2203 add_index_file(path
, mode
, buf
, size
);
2204 cache_tree_invalidate_path(active_cache_tree
, path
);
2207 /* phase zero is to remove, phase one is to create */
2208 static void write_out_one_result(struct patch
*patch
, int phase
)
2210 if (patch
->is_delete
> 0) {
2215 if (patch
->is_new
> 0 || patch
->is_copy
) {
2221 * Rename or modification boils down to the same
2222 * thing: remove the old, write the new
2230 static void write_out_results(struct patch
*list
, int skipped_patch
)
2234 if (!list
&& !skipped_patch
)
2237 for (phase
= 0; phase
< 2; phase
++) {
2238 struct patch
*l
= list
;
2240 write_out_one_result(l
, phase
);
2246 static struct lock_file lock_file
;
2248 static struct excludes
{
2249 struct excludes
*next
;
2253 static int use_patch(struct patch
*p
)
2255 const char *pathname
= p
->new_name
? p
->new_name
: p
->old_name
;
2256 struct excludes
*x
= excludes
;
2258 if (fnmatch(x
->path
, pathname
, 0) == 0)
2262 if (0 < prefix_length
) {
2263 int pathlen
= strlen(pathname
);
2264 if (pathlen
<= prefix_length
||
2265 memcmp(prefix
, pathname
, prefix_length
))
2271 static int apply_patch(int fd
, const char *filename
, int inaccurate_eof
)
2273 unsigned long offset
, size
;
2274 char *buffer
= read_patch_file(fd
, &size
);
2275 struct patch
*list
= NULL
, **listp
= &list
;
2276 int skipped_patch
= 0;
2278 patch_input_file
= filename
;
2283 struct patch
*patch
;
2286 patch
= xcalloc(1, sizeof(*patch
));
2287 patch
->inaccurate_eof
= inaccurate_eof
;
2288 nr
= parse_chunk(buffer
+ offset
, size
, patch
);
2291 if (apply_in_reverse
)
2292 reverse_patches(patch
);
2293 if (use_patch(patch
)) {
2296 listp
= &patch
->next
;
2298 /* perhaps free it a bit better? */
2306 if (whitespace_error
&& (new_whitespace
== error_on_whitespace
))
2309 write_index
= check_index
&& apply
;
2310 if (write_index
&& newfd
< 0)
2311 newfd
= hold_lock_file_for_update(&lock_file
,
2312 get_index_file(), 1);
2314 if (read_cache() < 0)
2315 die("unable to read index file");
2318 if ((check
|| apply
) && check_patch_list(list
) < 0)
2322 write_out_results(list
, skipped_patch
);
2324 if (show_index_info
)
2325 show_index_list(list
);
2328 stat_patch_list(list
);
2331 numstat_patch_list(list
);
2334 summary_patch_list(list
);
2340 static int git_apply_config(const char *var
, const char *value
)
2342 if (!strcmp(var
, "apply.whitespace")) {
2343 apply_default_whitespace
= strdup(value
);
2346 return git_default_config(var
, value
);
2350 int cmd_apply(int argc
, const char **argv
, const char *prefix
)
2354 int inaccurate_eof
= 0;
2356 const char *whitespace_option
= NULL
;
2358 for (i
= 1; i
< argc
; i
++) {
2359 const char *arg
= argv
[i
];
2363 if (!strcmp(arg
, "-")) {
2364 apply_patch(0, "<stdin>", inaccurate_eof
);
2368 if (!strncmp(arg
, "--exclude=", 10)) {
2369 struct excludes
*x
= xmalloc(sizeof(*x
));
2375 if (!strncmp(arg
, "-p", 2)) {
2376 p_value
= atoi(arg
+ 2);
2379 if (!strcmp(arg
, "--no-add")) {
2383 if (!strcmp(arg
, "--stat")) {
2388 if (!strcmp(arg
, "--allow-binary-replacement") ||
2389 !strcmp(arg
, "--binary")) {
2390 allow_binary_replacement
= 1;
2393 if (!strcmp(arg
, "--numstat")) {
2398 if (!strcmp(arg
, "--summary")) {
2403 if (!strcmp(arg
, "--check")) {
2408 if (!strcmp(arg
, "--index")) {
2412 if (!strcmp(arg
, "--cached")) {
2417 if (!strcmp(arg
, "--apply")) {
2421 if (!strcmp(arg
, "--index-info")) {
2423 show_index_info
= 1;
2426 if (!strcmp(arg
, "-z")) {
2427 line_termination
= 0;
2430 if (!strncmp(arg
, "-C", 2)) {
2431 p_context
= strtoul(arg
+ 2, &end
, 0);
2433 die("unrecognized context count '%s'", arg
+ 2);
2436 if (!strncmp(arg
, "--whitespace=", 13)) {
2437 whitespace_option
= arg
+ 13;
2438 parse_whitespace_option(arg
+ 13);
2441 if (!strcmp(arg
, "-R") || !strcmp(arg
, "--reverse")) {
2442 apply_in_reverse
= 1;
2445 if (!strcmp(arg
, "--inaccurate-eof")) {
2450 if (check_index
&& prefix_length
< 0) {
2451 prefix
= setup_git_directory();
2452 prefix_length
= prefix
? strlen(prefix
) : 0;
2453 git_config(git_apply_config
);
2454 if (!whitespace_option
&& apply_default_whitespace
)
2455 parse_whitespace_option(apply_default_whitespace
);
2457 if (0 < prefix_length
)
2458 arg
= prefix_filename(prefix
, prefix_length
, arg
);
2460 fd
= open(arg
, O_RDONLY
);
2464 set_default_whitespace_mode(whitespace_option
);
2465 apply_patch(fd
, arg
, inaccurate_eof
);
2468 set_default_whitespace_mode(whitespace_option
);
2470 apply_patch(0, "<stdin>", inaccurate_eof
);
2471 if (whitespace_error
) {
2472 if (squelch_whitespace_errors
&&
2473 squelch_whitespace_errors
< whitespace_error
) {
2475 whitespace_error
- squelch_whitespace_errors
;
2476 fprintf(stderr
, "warning: squelched %d whitespace error%s\n",
2478 squelched
== 1 ? "" : "s");
2480 if (new_whitespace
== error_on_whitespace
)
2481 die("%d line%s add%s trailing whitespaces.",
2483 whitespace_error
== 1 ? "" : "s",
2484 whitespace_error
== 1 ? "s" : "");
2485 if (applied_after_stripping
)
2486 fprintf(stderr
, "warning: %d line%s applied after"
2487 " stripping trailing whitespaces.\n",
2488 applied_after_stripping
,
2489 applied_after_stripping
== 1 ? "" : "s");
2490 else if (whitespace_error
)
2491 fprintf(stderr
, "warning: %d line%s add%s trailing"
2494 whitespace_error
== 1 ? "" : "s",
2495 whitespace_error
== 1 ? "s" : "");
2499 if (write_cache(newfd
, active_cache
, active_nr
) ||
2500 close(newfd
) || commit_lock_file(&lock_file
))
2501 die("Unable to write new index file");