4 * Copyright (C) Linus Torvalds, 2005
6 * This applies patches on top of some (arbitrary) version of the SCM.
10 #include "cache-tree.h"
15 #include "string-list.h"
17 #include "parse-options.h"
20 * --check turns on checking that the working tree matches the
21 * files that are being modified, but doesn't apply the patch
22 * --stat does just a diffstat, and doesn't actually apply
23 * --numstat does numeric diffstat, and doesn't actually apply
24 * --index-info shows the old and new index info for paths if available.
25 * --index updates the cache as well.
26 * --cached updates only the cache without ever touching the working tree.
28 static const char *prefix
;
29 static int prefix_length
= -1;
30 static int newfd
= -1;
32 static int unidiff_zero
;
33 static int p_value
= 1;
34 static int p_value_known
;
35 static int check_index
;
36 static int update_index
;
43 static int apply_in_reverse
;
44 static int apply_with_reject
;
45 static int apply_verbosely
;
47 static const char *fake_ancestor
;
48 static int line_termination
= '\n';
49 static unsigned int p_context
= UINT_MAX
;
50 static const char * const apply_usage
[] = {
51 "git apply [options] [<patch>...]",
55 static enum ws_error_action
{
60 } ws_error_action
= warn_on_ws_error
;
61 static int whitespace_error
;
62 static int squelch_whitespace_errors
= 5;
63 static int applied_after_fixing_ws
;
65 static enum ws_ignore
{
68 } ws_ignore_action
= ignore_ws_none
;
71 static const char *patch_input_file
;
72 static const char *root
;
74 static int read_stdin
= 1;
77 static void parse_whitespace_option(const char *option
)
80 ws_error_action
= warn_on_ws_error
;
83 if (!strcmp(option
, "warn")) {
84 ws_error_action
= warn_on_ws_error
;
87 if (!strcmp(option
, "nowarn")) {
88 ws_error_action
= nowarn_ws_error
;
91 if (!strcmp(option
, "error")) {
92 ws_error_action
= die_on_ws_error
;
95 if (!strcmp(option
, "error-all")) {
96 ws_error_action
= die_on_ws_error
;
97 squelch_whitespace_errors
= 0;
100 if (!strcmp(option
, "strip") || !strcmp(option
, "fix")) {
101 ws_error_action
= correct_ws_error
;
104 die("unrecognized whitespace option '%s'", option
);
107 static void parse_ignorewhitespace_option(const char *option
)
109 if (!option
|| !strcmp(option
, "no") ||
110 !strcmp(option
, "false") || !strcmp(option
, "never") ||
111 !strcmp(option
, "none")) {
112 ws_ignore_action
= ignore_ws_none
;
115 if (!strcmp(option
, "change")) {
116 ws_ignore_action
= ignore_ws_change
;
119 die("unrecognized whitespace ignore option '%s'", option
);
122 static void set_default_whitespace_mode(const char *whitespace_option
)
124 if (!whitespace_option
&& !apply_default_whitespace
)
125 ws_error_action
= (apply
? warn_on_ws_error
: nowarn_ws_error
);
129 * For "diff-stat" like behaviour, we keep track of the biggest change
130 * we've seen, and the longest filename. That allows us to do simple
133 static int max_change
, max_len
;
136 * Various "current state", notably line numbers and what
137 * file (and how) we're patching right now.. The "is_xxxx"
138 * things are flags, where -1 means "don't know yet".
140 static int linenr
= 1;
143 * This represents one "hunk" from a patch, starting with
144 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The
145 * patch text is pointed at by patch, and its byte length
146 * is stored in size. leading and trailing are the number
150 unsigned long leading
, trailing
;
151 unsigned long oldpos
, oldlines
;
152 unsigned long newpos
, newlines
;
157 struct fragment
*next
;
161 * When dealing with a binary patch, we reuse "leading" field
162 * to store the type of the binary hunk, either deflated "delta"
163 * or deflated "literal".
165 #define binary_patch_method leading
166 #define BINARY_DELTA_DEFLATED 1
167 #define BINARY_LITERAL_DEFLATED 2
170 * This represents a "patch" to a file, both metainfo changes
171 * such as creation/deletion, filemode and content changes represented
172 * as a series of fragments.
175 char *new_name
, *old_name
, *def_name
;
176 unsigned int old_mode
, new_mode
;
177 int is_new
, is_delete
; /* -1 = unknown, 0 = false, 1 = true */
180 unsigned long deflate_origlen
;
181 int lines_added
, lines_deleted
;
183 unsigned int is_toplevel_relative
:1;
184 unsigned int inaccurate_eof
:1;
185 unsigned int is_binary
:1;
186 unsigned int is_copy
:1;
187 unsigned int is_rename
:1;
188 unsigned int recount
:1;
189 struct fragment
*fragments
;
192 char old_sha1_prefix
[41];
193 char new_sha1_prefix
[41];
198 * A line in a file, len-bytes long (includes the terminating LF,
199 * except for an incomplete line at the end if the file ends with
200 * one), and its contents hashes to 'hash'.
206 #define LINE_COMMON 1
210 * This represents a "file", which is an array of "lines".
217 struct line
*line_allocated
;
222 * Records filenames that have been touched, in order to handle
223 * the case where more than one patches touch the same file.
226 static struct string_list fn_table
;
228 static uint32_t hash_line(const char *cp
, size_t len
)
232 for (i
= 0, h
= 0; i
< len
; i
++) {
233 if (!isspace(cp
[i
])) {
234 h
= h
* 3 + (cp
[i
] & 0xff);
241 * Compare lines s1 of length n1 and s2 of length n2, ignoring
242 * whitespace difference. Returns 1 if they match, 0 otherwise
244 static int fuzzy_matchlines(const char *s1
, size_t n1
,
245 const char *s2
, size_t n2
)
247 const char *last1
= s1
+ n1
- 1;
248 const char *last2
= s2
+ n2
- 1;
251 if (n1
< 0 || n2
< 0)
254 /* ignore line endings */
255 while ((*last1
== '\r') || (*last1
== '\n'))
257 while ((*last2
== '\r') || (*last2
== '\n'))
260 /* skip leading whitespace */
261 while (isspace(*s1
) && (s1
<= last1
))
263 while (isspace(*s2
) && (s2
<= last2
))
265 /* early return if both lines are empty */
266 if ((s1
> last1
) && (s2
> last2
))
269 result
= *s1
++ - *s2
++;
271 * Skip whitespace inside. We check for whitespace on
272 * both buffers because we don't want "a b" to match
275 if (isspace(*s1
) && isspace(*s2
)) {
276 while (isspace(*s1
) && s1
<= last1
)
278 while (isspace(*s2
) && s2
<= last2
)
282 * If we reached the end on one side only,
286 ((s2
> last2
) && (s1
<= last1
)) ||
287 ((s1
> last1
) && (s2
<= last2
)))
289 if ((s1
> last1
) && (s2
> last2
))
296 static void add_line_info(struct image
*img
, const char *bol
, size_t len
, unsigned flag
)
298 ALLOC_GROW(img
->line_allocated
, img
->nr
+ 1, img
->alloc
);
299 img
->line_allocated
[img
->nr
].len
= len
;
300 img
->line_allocated
[img
->nr
].hash
= hash_line(bol
, len
);
301 img
->line_allocated
[img
->nr
].flag
= flag
;
305 static void prepare_image(struct image
*image
, char *buf
, size_t len
,
306 int prepare_linetable
)
310 memset(image
, 0, sizeof(*image
));
314 if (!prepare_linetable
)
317 ep
= image
->buf
+ image
->len
;
321 for (next
= cp
; next
< ep
&& *next
!= '\n'; next
++)
325 add_line_info(image
, cp
, next
- cp
, 0);
328 image
->line
= image
->line_allocated
;
331 static void clear_image(struct image
*image
)
338 static void say_patch_name(FILE *output
, const char *pre
,
339 struct patch
*patch
, const char *post
)
342 if (patch
->old_name
&& patch
->new_name
&&
343 strcmp(patch
->old_name
, patch
->new_name
)) {
344 quote_c_style(patch
->old_name
, NULL
, output
, 0);
345 fputs(" => ", output
);
346 quote_c_style(patch
->new_name
, NULL
, output
, 0);
348 const char *n
= patch
->new_name
;
351 quote_c_style(n
, NULL
, output
, 0);
356 #define CHUNKSIZE (8192)
359 static void read_patch_file(struct strbuf
*sb
, int fd
)
361 if (strbuf_read(sb
, fd
, 0) < 0)
362 die_errno("git apply: failed to read");
365 * Make sure that we have some slop in the buffer
366 * so that we can do speculative "memcmp" etc, and
367 * see to it that it is NUL-filled.
369 strbuf_grow(sb
, SLOP
);
370 memset(sb
->buf
+ sb
->len
, 0, SLOP
);
373 static unsigned long linelen(const char *buffer
, unsigned long size
)
375 unsigned long len
= 0;
378 if (*buffer
++ == '\n')
384 static int is_dev_null(const char *str
)
386 return !memcmp("/dev/null", str
, 9) && isspace(str
[9]);
392 static int name_terminate(const char *name
, int namelen
, int c
, int terminate
)
394 if (c
== ' ' && !(terminate
& TERM_SPACE
))
396 if (c
== '\t' && !(terminate
& TERM_TAB
))
402 /* remove double slashes to make --index work with such filenames */
403 static char *squash_slash(char *name
)
411 if ((name
[j
++] = name
[i
++]) == '/')
412 while (name
[i
] == '/')
419 static char *find_name(const char *line
, char *def
, int p_value
, int terminate
)
422 const char *start
= NULL
;
428 struct strbuf name
= STRBUF_INIT
;
431 * Proposed "new-style" GNU patch/diff format; see
432 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
434 if (!unquote_c_style(&name
, line
, NULL
)) {
437 for (cp
= name
.buf
; p_value
; p_value
--) {
438 cp
= strchr(cp
, '/');
444 /* name can later be freed, so we need
445 * to memmove, not just return cp
447 strbuf_remove(&name
, 0, cp
- name
.buf
);
450 strbuf_insert(&name
, 0, root
, root_len
);
451 return squash_slash(strbuf_detach(&name
, NULL
));
454 strbuf_release(&name
);
463 if (name_terminate(start
, line
-start
, c
, terminate
))
467 if (c
== '/' && !--p_value
)
471 return squash_slash(def
);
474 return squash_slash(def
);
477 * Generally we prefer the shorter name, especially
478 * if the other one is just a variation of that with
479 * something else tacked on to the end (ie "file.orig"
483 int deflen
= strlen(def
);
484 if (deflen
< len
&& !strncmp(start
, def
, deflen
))
485 return squash_slash(def
);
490 char *ret
= xmalloc(root_len
+ len
+ 1);
492 memcpy(ret
+ root_len
, start
, len
);
493 ret
[root_len
+ len
] = '\0';
494 return squash_slash(ret
);
497 return squash_slash(xmemdupz(start
, len
));
500 static int count_slashes(const char *cp
)
512 * Given the string after "--- " or "+++ ", guess the appropriate
513 * p_value for the given patch.
515 static int guess_p_value(const char *nameline
)
520 if (is_dev_null(nameline
))
522 name
= find_name(nameline
, NULL
, 0, TERM_SPACE
| TERM_TAB
);
525 cp
= strchr(name
, '/');
530 * Does it begin with "a/$our-prefix" and such? Then this is
531 * very likely to apply to our directory.
533 if (!strncmp(name
, prefix
, prefix_length
))
534 val
= count_slashes(prefix
);
537 if (!strncmp(cp
, prefix
, prefix_length
))
538 val
= count_slashes(prefix
) + 1;
546 * Does the ---/+++ line has the POSIX timestamp after the last HT?
547 * GNU diff puts epoch there to signal a creation/deletion event. Is
548 * this such a timestamp?
550 static int has_epoch_timestamp(const char *nameline
)
553 * We are only interested in epoch timestamp; any non-zero
554 * fraction cannot be one, hence "(\.0+)?" in the regexp below.
555 * For the same reason, the date must be either 1969-12-31 or
556 * 1970-01-01, and the seconds part must be "00".
558 const char stamp_regexp
[] =
559 "^(1969-12-31|1970-01-01)"
561 "[0-2][0-9]:[0-5][0-9]:00(\\.0+)?"
563 "([-+][0-2][0-9][0-5][0-9])\n";
564 const char *timestamp
= NULL
, *cp
;
565 static regex_t
*stamp
;
571 for (cp
= nameline
; *cp
!= '\n'; cp
++) {
578 stamp
= xmalloc(sizeof(*stamp
));
579 if (regcomp(stamp
, stamp_regexp
, REG_EXTENDED
)) {
580 warning("Cannot prepare timestamp regexp %s",
586 status
= regexec(stamp
, timestamp
, ARRAY_SIZE(m
), m
, 0);
588 if (status
!= REG_NOMATCH
)
589 warning("regexec returned %d for input: %s",
594 zoneoffset
= strtol(timestamp
+ m
[3].rm_so
+ 1, NULL
, 10);
595 zoneoffset
= (zoneoffset
/ 100) * 60 + (zoneoffset
% 100);
596 if (timestamp
[m
[3].rm_so
] == '-')
597 zoneoffset
= -zoneoffset
;
600 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31
601 * (west of GMT) or 1970-01-01 (east of GMT)
603 if ((zoneoffset
< 0 && memcmp(timestamp
, "1969-12-31", 10)) ||
604 (0 <= zoneoffset
&& memcmp(timestamp
, "1970-01-01", 10)))
607 hourminute
= (strtol(timestamp
+ 11, NULL
, 10) * 60 +
608 strtol(timestamp
+ 14, NULL
, 10) -
611 return ((zoneoffset
< 0 && hourminute
== 1440) ||
612 (0 <= zoneoffset
&& !hourminute
));
616 * Get the name etc info from the ---/+++ lines of a traditional patch header
618 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
619 * files, we can happily check the index for a match, but for creating a
620 * new file we should try to match whatever "patch" does. I have no idea.
622 static void parse_traditional_patch(const char *first
, const char *second
, struct patch
*patch
)
626 first
+= 4; /* skip "--- " */
627 second
+= 4; /* skip "+++ " */
628 if (!p_value_known
) {
630 p
= guess_p_value(first
);
631 q
= guess_p_value(second
);
633 if (0 <= p
&& p
== q
) {
638 if (is_dev_null(first
)) {
640 patch
->is_delete
= 0;
641 name
= find_name(second
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
642 patch
->new_name
= name
;
643 } else if (is_dev_null(second
)) {
645 patch
->is_delete
= 1;
646 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
647 patch
->old_name
= name
;
649 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
650 name
= find_name(second
, name
, p_value
, TERM_SPACE
| TERM_TAB
);
651 if (has_epoch_timestamp(first
)) {
653 patch
->is_delete
= 0;
654 patch
->new_name
= name
;
655 } else if (has_epoch_timestamp(second
)) {
657 patch
->is_delete
= 1;
658 patch
->old_name
= name
;
660 patch
->old_name
= patch
->new_name
= name
;
664 die("unable to find filename in patch at line %d", linenr
);
667 static int gitdiff_hdrend(const char *line
, struct patch
*patch
)
673 * We're anal about diff header consistency, to make
674 * sure that we don't end up having strange ambiguous
675 * patches floating around.
677 * As a result, gitdiff_{old|new}name() will check
678 * their names against any previous information, just
681 static char *gitdiff_verify_name(const char *line
, int isnull
, char *orig_name
, const char *oldnew
)
683 if (!orig_name
&& !isnull
)
684 return find_name(line
, NULL
, p_value
, TERM_TAB
);
693 die("git apply: bad git-diff - expected /dev/null, got %s on line %d", name
, linenr
);
694 another
= find_name(line
, NULL
, p_value
, TERM_TAB
);
695 if (!another
|| memcmp(another
, name
, len
+ 1))
696 die("git apply: bad git-diff - inconsistent %s filename on line %d", oldnew
, linenr
);
701 /* expect "/dev/null" */
702 if (memcmp("/dev/null", line
, 9) || line
[9] != '\n')
703 die("git apply: bad git-diff - expected /dev/null on line %d", linenr
);
708 static int gitdiff_oldname(const char *line
, struct patch
*patch
)
710 patch
->old_name
= gitdiff_verify_name(line
, patch
->is_new
, patch
->old_name
, "old");
714 static int gitdiff_newname(const char *line
, struct patch
*patch
)
716 patch
->new_name
= gitdiff_verify_name(line
, patch
->is_delete
, patch
->new_name
, "new");
720 static int gitdiff_oldmode(const char *line
, struct patch
*patch
)
722 patch
->old_mode
= strtoul(line
, NULL
, 8);
726 static int gitdiff_newmode(const char *line
, struct patch
*patch
)
728 patch
->new_mode
= strtoul(line
, NULL
, 8);
732 static int gitdiff_delete(const char *line
, struct patch
*patch
)
734 patch
->is_delete
= 1;
735 patch
->old_name
= patch
->def_name
;
736 return gitdiff_oldmode(line
, patch
);
739 static int gitdiff_newfile(const char *line
, struct patch
*patch
)
742 patch
->new_name
= patch
->def_name
;
743 return gitdiff_newmode(line
, patch
);
746 static int gitdiff_copysrc(const char *line
, struct patch
*patch
)
749 patch
->old_name
= find_name(line
, NULL
, 0, 0);
753 static int gitdiff_copydst(const char *line
, struct patch
*patch
)
756 patch
->new_name
= find_name(line
, NULL
, 0, 0);
760 static int gitdiff_renamesrc(const char *line
, struct patch
*patch
)
762 patch
->is_rename
= 1;
763 patch
->old_name
= find_name(line
, NULL
, 0, 0);
767 static int gitdiff_renamedst(const char *line
, struct patch
*patch
)
769 patch
->is_rename
= 1;
770 patch
->new_name
= find_name(line
, NULL
, 0, 0);
774 static int gitdiff_similarity(const char *line
, struct patch
*patch
)
776 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
781 static int gitdiff_dissimilarity(const char *line
, struct patch
*patch
)
783 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
788 static int gitdiff_index(const char *line
, struct patch
*patch
)
791 * index line is N hexadecimal, "..", N hexadecimal,
792 * and optional space with octal mode.
794 const char *ptr
, *eol
;
797 ptr
= strchr(line
, '.');
798 if (!ptr
|| ptr
[1] != '.' || 40 < ptr
- line
)
801 memcpy(patch
->old_sha1_prefix
, line
, len
);
802 patch
->old_sha1_prefix
[len
] = 0;
805 ptr
= strchr(line
, ' ');
806 eol
= strchr(line
, '\n');
808 if (!ptr
|| eol
< ptr
)
814 memcpy(patch
->new_sha1_prefix
, line
, len
);
815 patch
->new_sha1_prefix
[len
] = 0;
817 patch
->old_mode
= strtoul(ptr
+1, NULL
, 8);
822 * This is normal for a diff that doesn't change anything: we'll fall through
823 * into the next diff. Tell the parser to break out.
825 static int gitdiff_unrecognized(const char *line
, struct patch
*patch
)
830 static const char *stop_at_slash(const char *line
, int llen
)
832 int nslash
= p_value
;
835 for (i
= 0; i
< llen
; i
++) {
837 if (ch
== '/' && --nslash
<= 0)
844 * This is to extract the same name that appears on "diff --git"
845 * line. We do not find and return anything if it is a rename
846 * patch, and it is OK because we will find the name elsewhere.
847 * We need to reliably find name only when it is mode-change only,
848 * creation or deletion of an empty file. In any of these cases,
849 * both sides are the same name under a/ and b/ respectively.
851 static char *git_header_name(char *line
, int llen
)
854 const char *second
= NULL
;
857 line
+= strlen("diff --git ");
858 llen
-= strlen("diff --git ");
862 struct strbuf first
= STRBUF_INIT
;
863 struct strbuf sp
= STRBUF_INIT
;
865 if (unquote_c_style(&first
, line
, &second
))
868 /* advance to the first slash */
869 cp
= stop_at_slash(first
.buf
, first
.len
);
870 /* we do not accept absolute paths */
871 if (!cp
|| cp
== first
.buf
)
873 strbuf_remove(&first
, 0, cp
+ 1 - first
.buf
);
876 * second points at one past closing dq of name.
877 * find the second name.
879 while ((second
< line
+ llen
) && isspace(*second
))
882 if (line
+ llen
<= second
)
884 if (*second
== '"') {
885 if (unquote_c_style(&sp
, second
, NULL
))
887 cp
= stop_at_slash(sp
.buf
, sp
.len
);
888 if (!cp
|| cp
== sp
.buf
)
890 /* They must match, otherwise ignore */
891 if (strcmp(cp
+ 1, first
.buf
))
894 return strbuf_detach(&first
, NULL
);
897 /* unquoted second */
898 cp
= stop_at_slash(second
, line
+ llen
- second
);
899 if (!cp
|| cp
== second
)
902 if (line
+ llen
- cp
!= first
.len
+ 1 ||
903 memcmp(first
.buf
, cp
, first
.len
))
905 return strbuf_detach(&first
, NULL
);
908 strbuf_release(&first
);
913 /* unquoted first name */
914 name
= stop_at_slash(line
, llen
);
915 if (!name
|| name
== line
)
920 * since the first name is unquoted, a dq if exists must be
921 * the beginning of the second name.
923 for (second
= name
; second
< line
+ llen
; second
++) {
924 if (*second
== '"') {
925 struct strbuf sp
= STRBUF_INIT
;
928 if (unquote_c_style(&sp
, second
, NULL
))
931 np
= stop_at_slash(sp
.buf
, sp
.len
);
932 if (!np
|| np
== sp
.buf
)
936 len
= sp
.buf
+ sp
.len
- np
;
937 if (len
< second
- name
&&
938 !strncmp(np
, name
, len
) &&
939 isspace(name
[len
])) {
941 strbuf_remove(&sp
, 0, np
- sp
.buf
);
942 return strbuf_detach(&sp
, NULL
);
952 * Accept a name only if it shows up twice, exactly the same
955 for (len
= 0 ; ; len
++) {
970 if (second
[len
] == '\n' && !memcmp(name
, second
, len
)) {
971 return xmemdupz(name
, len
);
977 /* Verify that we recognize the lines following a git header */
978 static int parse_git_header(char *line
, int len
, unsigned int size
, struct patch
*patch
)
980 unsigned long offset
;
982 /* A git diff has explicit new/delete information, so we don't guess */
984 patch
->is_delete
= 0;
987 * Some things may not have the old name in the
988 * rest of the headers anywhere (pure mode changes,
989 * or removing or adding empty files), so we get
990 * the default name from the header.
992 patch
->def_name
= git_header_name(line
, len
);
993 if (patch
->def_name
&& root
) {
994 char *s
= xmalloc(root_len
+ strlen(patch
->def_name
) + 1);
996 strcpy(s
+ root_len
, patch
->def_name
);
997 free(patch
->def_name
);
1004 for (offset
= len
; size
> 0 ; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
1005 static const struct opentry
{
1007 int (*fn
)(const char *, struct patch
*);
1009 { "@@ -", gitdiff_hdrend
},
1010 { "--- ", gitdiff_oldname
},
1011 { "+++ ", gitdiff_newname
},
1012 { "old mode ", gitdiff_oldmode
},
1013 { "new mode ", gitdiff_newmode
},
1014 { "deleted file mode ", gitdiff_delete
},
1015 { "new file mode ", gitdiff_newfile
},
1016 { "copy from ", gitdiff_copysrc
},
1017 { "copy to ", gitdiff_copydst
},
1018 { "rename old ", gitdiff_renamesrc
},
1019 { "rename new ", gitdiff_renamedst
},
1020 { "rename from ", gitdiff_renamesrc
},
1021 { "rename to ", gitdiff_renamedst
},
1022 { "similarity index ", gitdiff_similarity
},
1023 { "dissimilarity index ", gitdiff_dissimilarity
},
1024 { "index ", gitdiff_index
},
1025 { "", gitdiff_unrecognized
},
1029 len
= linelen(line
, size
);
1030 if (!len
|| line
[len
-1] != '\n')
1032 for (i
= 0; i
< ARRAY_SIZE(optable
); i
++) {
1033 const struct opentry
*p
= optable
+ i
;
1034 int oplen
= strlen(p
->str
);
1035 if (len
< oplen
|| memcmp(p
->str
, line
, oplen
))
1037 if (p
->fn(line
+ oplen
, patch
) < 0)
1046 static int parse_num(const char *line
, unsigned long *p
)
1050 if (!isdigit(*line
))
1052 *p
= strtoul(line
, &ptr
, 10);
1056 static int parse_range(const char *line
, int len
, int offset
, const char *expect
,
1057 unsigned long *p1
, unsigned long *p2
)
1061 if (offset
< 0 || offset
>= len
)
1066 digits
= parse_num(line
, p1
);
1076 digits
= parse_num(line
+1, p2
);
1085 ex
= strlen(expect
);
1088 if (memcmp(line
, expect
, ex
))
1094 static void recount_diff(char *line
, int size
, struct fragment
*fragment
)
1096 int oldlines
= 0, newlines
= 0, ret
= 0;
1099 warning("recount: ignore empty hunk");
1104 int len
= linelen(line
, size
);
1112 case ' ': case '\n':
1124 ret
= size
< 3 || prefixcmp(line
, "@@ ");
1127 ret
= size
< 5 || prefixcmp(line
, "diff ");
1134 warning("recount: unexpected line: %.*s",
1135 (int)linelen(line
, size
), line
);
1140 fragment
->oldlines
= oldlines
;
1141 fragment
->newlines
= newlines
;
1145 * Parse a unified diff fragment header of the
1146 * form "@@ -a,b +c,d @@"
1148 static int parse_fragment_header(char *line
, int len
, struct fragment
*fragment
)
1152 if (!len
|| line
[len
-1] != '\n')
1155 /* Figure out the number of lines in a fragment */
1156 offset
= parse_range(line
, len
, 4, " +", &fragment
->oldpos
, &fragment
->oldlines
);
1157 offset
= parse_range(line
, len
, offset
, " @@", &fragment
->newpos
, &fragment
->newlines
);
1162 static int find_header(char *line
, unsigned long size
, int *hdrsize
, struct patch
*patch
)
1164 unsigned long offset
, len
;
1166 patch
->is_toplevel_relative
= 0;
1167 patch
->is_rename
= patch
->is_copy
= 0;
1168 patch
->is_new
= patch
->is_delete
= -1;
1169 patch
->old_mode
= patch
->new_mode
= 0;
1170 patch
->old_name
= patch
->new_name
= NULL
;
1171 for (offset
= 0; size
> 0; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
1172 unsigned long nextlen
;
1174 len
= linelen(line
, size
);
1178 /* Testing this early allows us to take a few shortcuts.. */
1183 * Make sure we don't find any unconnected patch fragments.
1184 * That's a sign that we didn't find a header, and that a
1185 * patch has become corrupted/broken up.
1187 if (!memcmp("@@ -", line
, 4)) {
1188 struct fragment dummy
;
1189 if (parse_fragment_header(line
, len
, &dummy
) < 0)
1191 die("patch fragment without header at line %d: %.*s",
1192 linenr
, (int)len
-1, line
);
1199 * Git patch? It might not have a real patch, just a rename
1200 * or mode change, so we handle that specially
1202 if (!memcmp("diff --git ", line
, 11)) {
1203 int git_hdr_len
= parse_git_header(line
, len
, size
, patch
);
1204 if (git_hdr_len
<= len
)
1206 if (!patch
->old_name
&& !patch
->new_name
) {
1207 if (!patch
->def_name
)
1208 die("git diff header lacks filename information when removing "
1209 "%d leading pathname components (line %d)" , p_value
, linenr
);
1210 patch
->old_name
= patch
->new_name
= patch
->def_name
;
1212 patch
->is_toplevel_relative
= 1;
1213 *hdrsize
= git_hdr_len
;
1217 /* --- followed by +++ ? */
1218 if (memcmp("--- ", line
, 4) || memcmp("+++ ", line
+ len
, 4))
1222 * We only accept unified patches, so we want it to
1223 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
1224 * minimum ("@@ -0,0 +1 @@\n" is the shortest).
1226 nextlen
= linelen(line
+ len
, size
- len
);
1227 if (size
< nextlen
+ 14 || memcmp("@@ -", line
+ len
+ nextlen
, 4))
1230 /* Ok, we'll consider it a patch */
1231 parse_traditional_patch(line
, line
+len
, patch
);
1232 *hdrsize
= len
+ nextlen
;
1239 static void record_ws_error(unsigned result
, const char *line
, int len
, int linenr
)
1247 if (squelch_whitespace_errors
&&
1248 squelch_whitespace_errors
< whitespace_error
)
1251 err
= whitespace_error_string(result
);
1252 fprintf(stderr
, "%s:%d: %s.\n%.*s\n",
1253 patch_input_file
, linenr
, err
, len
, line
);
1257 static void check_whitespace(const char *line
, int len
, unsigned ws_rule
)
1259 unsigned result
= ws_check(line
+ 1, len
- 1, ws_rule
);
1261 record_ws_error(result
, line
+ 1, len
- 2, linenr
);
1265 * Parse a unified diff. Note that this really needs to parse each
1266 * fragment separately, since the only way to know the difference
1267 * between a "---" that is part of a patch, and a "---" that starts
1268 * the next patch is to look at the line counts..
1270 static int parse_fragment(char *line
, unsigned long size
,
1271 struct patch
*patch
, struct fragment
*fragment
)
1274 int len
= linelen(line
, size
), offset
;
1275 unsigned long oldlines
, newlines
;
1276 unsigned long leading
, trailing
;
1278 offset
= parse_fragment_header(line
, len
, fragment
);
1281 if (offset
> 0 && patch
->recount
)
1282 recount_diff(line
+ offset
, size
- offset
, fragment
);
1283 oldlines
= fragment
->oldlines
;
1284 newlines
= fragment
->newlines
;
1288 /* Parse the thing.. */
1292 added
= deleted
= 0;
1295 offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
1296 if (!oldlines
&& !newlines
)
1298 len
= linelen(line
, size
);
1299 if (!len
|| line
[len
-1] != '\n')
1304 case '\n': /* newer GNU diff, an empty context line */
1308 if (!deleted
&& !added
)
1313 if (apply_in_reverse
&&
1314 ws_error_action
!= nowarn_ws_error
)
1315 check_whitespace(line
, len
, patch
->ws_rule
);
1321 if (!apply_in_reverse
&&
1322 ws_error_action
!= nowarn_ws_error
)
1323 check_whitespace(line
, len
, patch
->ws_rule
);
1330 * We allow "\ No newline at end of file". Depending
1331 * on locale settings when the patch was produced we
1332 * don't know what this line looks like. The only
1333 * thing we do know is that it begins with "\ ".
1334 * Checking for 12 is just for sanity check -- any
1335 * l10n of "\ No newline..." is at least that long.
1338 if (len
< 12 || memcmp(line
, "\\ ", 2))
1343 if (oldlines
|| newlines
)
1345 fragment
->leading
= leading
;
1346 fragment
->trailing
= trailing
;
1349 * If a fragment ends with an incomplete line, we failed to include
1350 * it in the above loop because we hit oldlines == newlines == 0
1353 if (12 < size
&& !memcmp(line
, "\\ ", 2))
1354 offset
+= linelen(line
, size
);
1356 patch
->lines_added
+= added
;
1357 patch
->lines_deleted
+= deleted
;
1359 if (0 < patch
->is_new
&& oldlines
)
1360 return error("new file depends on old contents");
1361 if (0 < patch
->is_delete
&& newlines
)
1362 return error("deleted file still has contents");
1366 static int parse_single_patch(char *line
, unsigned long size
, struct patch
*patch
)
1368 unsigned long offset
= 0;
1369 unsigned long oldlines
= 0, newlines
= 0, context
= 0;
1370 struct fragment
**fragp
= &patch
->fragments
;
1372 while (size
> 4 && !memcmp(line
, "@@ -", 4)) {
1373 struct fragment
*fragment
;
1376 fragment
= xcalloc(1, sizeof(*fragment
));
1377 fragment
->linenr
= linenr
;
1378 len
= parse_fragment(line
, size
, patch
, fragment
);
1380 die("corrupt patch at line %d", linenr
);
1381 fragment
->patch
= line
;
1382 fragment
->size
= len
;
1383 oldlines
+= fragment
->oldlines
;
1384 newlines
+= fragment
->newlines
;
1385 context
+= fragment
->leading
+ fragment
->trailing
;
1388 fragp
= &fragment
->next
;
1396 * If something was removed (i.e. we have old-lines) it cannot
1397 * be creation, and if something was added it cannot be
1398 * deletion. However, the reverse is not true; --unified=0
1399 * patches that only add are not necessarily creation even
1400 * though they do not have any old lines, and ones that only
1401 * delete are not necessarily deletion.
1403 * Unfortunately, a real creation/deletion patch do _not_ have
1404 * any context line by definition, so we cannot safely tell it
1405 * apart with --unified=0 insanity. At least if the patch has
1406 * more than one hunk it is not creation or deletion.
1408 if (patch
->is_new
< 0 &&
1409 (oldlines
|| (patch
->fragments
&& patch
->fragments
->next
)))
1411 if (patch
->is_delete
< 0 &&
1412 (newlines
|| (patch
->fragments
&& patch
->fragments
->next
)))
1413 patch
->is_delete
= 0;
1415 if (0 < patch
->is_new
&& oldlines
)
1416 die("new file %s depends on old contents", patch
->new_name
);
1417 if (0 < patch
->is_delete
&& newlines
)
1418 die("deleted file %s still has contents", patch
->old_name
);
1419 if (!patch
->is_delete
&& !newlines
&& context
)
1420 fprintf(stderr
, "** warning: file %s becomes empty but "
1421 "is not deleted\n", patch
->new_name
);
1426 static inline int metadata_changes(struct patch
*patch
)
1428 return patch
->is_rename
> 0 ||
1429 patch
->is_copy
> 0 ||
1430 patch
->is_new
> 0 ||
1432 (patch
->old_mode
&& patch
->new_mode
&&
1433 patch
->old_mode
!= patch
->new_mode
);
1436 static char *inflate_it(const void *data
, unsigned long size
,
1437 unsigned long inflated_size
)
1443 memset(&stream
, 0, sizeof(stream
));
1445 stream
.next_in
= (unsigned char *)data
;
1446 stream
.avail_in
= size
;
1447 stream
.next_out
= out
= xmalloc(inflated_size
);
1448 stream
.avail_out
= inflated_size
;
1449 git_inflate_init(&stream
);
1450 st
= git_inflate(&stream
, Z_FINISH
);
1451 git_inflate_end(&stream
);
1452 if ((st
!= Z_STREAM_END
) || stream
.total_out
!= inflated_size
) {
1459 static struct fragment
*parse_binary_hunk(char **buf_p
,
1460 unsigned long *sz_p
,
1465 * Expect a line that begins with binary patch method ("literal"
1466 * or "delta"), followed by the length of data before deflating.
1467 * a sequence of 'length-byte' followed by base-85 encoded data
1468 * should follow, terminated by a newline.
1470 * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1471 * and we would limit the patch line to 66 characters,
1472 * so one line can fit up to 13 groups that would decode
1473 * to 52 bytes max. The length byte 'A'-'Z' corresponds
1474 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
1477 unsigned long size
= *sz_p
;
1478 char *buffer
= *buf_p
;
1480 unsigned long origlen
;
1483 struct fragment
*frag
;
1485 llen
= linelen(buffer
, size
);
1490 if (!prefixcmp(buffer
, "delta ")) {
1491 patch_method
= BINARY_DELTA_DEFLATED
;
1492 origlen
= strtoul(buffer
+ 6, NULL
, 10);
1494 else if (!prefixcmp(buffer
, "literal ")) {
1495 patch_method
= BINARY_LITERAL_DEFLATED
;
1496 origlen
= strtoul(buffer
+ 8, NULL
, 10);
1504 int byte_length
, max_byte_length
, newsize
;
1505 llen
= linelen(buffer
, size
);
1509 /* consume the blank line */
1515 * Minimum line is "A00000\n" which is 7-byte long,
1516 * and the line length must be multiple of 5 plus 2.
1518 if ((llen
< 7) || (llen
-2) % 5)
1520 max_byte_length
= (llen
- 2) / 5 * 4;
1521 byte_length
= *buffer
;
1522 if ('A' <= byte_length
&& byte_length
<= 'Z')
1523 byte_length
= byte_length
- 'A' + 1;
1524 else if ('a' <= byte_length
&& byte_length
<= 'z')
1525 byte_length
= byte_length
- 'a' + 27;
1528 /* if the input length was not multiple of 4, we would
1529 * have filler at the end but the filler should never
1532 if (max_byte_length
< byte_length
||
1533 byte_length
<= max_byte_length
- 4)
1535 newsize
= hunk_size
+ byte_length
;
1536 data
= xrealloc(data
, newsize
);
1537 if (decode_85(data
+ hunk_size
, buffer
+ 1, byte_length
))
1539 hunk_size
= newsize
;
1544 frag
= xcalloc(1, sizeof(*frag
));
1545 frag
->patch
= inflate_it(data
, hunk_size
, origlen
);
1549 frag
->size
= origlen
;
1553 frag
->binary_patch_method
= patch_method
;
1559 error("corrupt binary patch at line %d: %.*s",
1560 linenr
-1, llen
-1, buffer
);
1564 static int parse_binary(char *buffer
, unsigned long size
, struct patch
*patch
)
1567 * We have read "GIT binary patch\n"; what follows is a line
1568 * that says the patch method (currently, either "literal" or
1569 * "delta") and the length of data before deflating; a
1570 * sequence of 'length-byte' followed by base-85 encoded data
1573 * When a binary patch is reversible, there is another binary
1574 * hunk in the same format, starting with patch method (either
1575 * "literal" or "delta") with the length of data, and a sequence
1576 * of length-byte + base-85 encoded data, terminated with another
1577 * empty line. This data, when applied to the postimage, produces
1580 struct fragment
*forward
;
1581 struct fragment
*reverse
;
1585 forward
= parse_binary_hunk(&buffer
, &size
, &status
, &used
);
1586 if (!forward
&& !status
)
1587 /* there has to be one hunk (forward hunk) */
1588 return error("unrecognized binary patch at line %d", linenr
-1);
1590 /* otherwise we already gave an error message */
1593 reverse
= parse_binary_hunk(&buffer
, &size
, &status
, &used_1
);
1598 * Not having reverse hunk is not an error, but having
1599 * a corrupt reverse hunk is.
1601 free((void*) forward
->patch
);
1605 forward
->next
= reverse
;
1606 patch
->fragments
= forward
;
1607 patch
->is_binary
= 1;
1611 static int parse_chunk(char *buffer
, unsigned long size
, struct patch
*patch
)
1613 int hdrsize
, patchsize
;
1614 int offset
= find_header(buffer
, size
, &hdrsize
, patch
);
1619 patch
->ws_rule
= whitespace_rule(patch
->new_name
1623 patchsize
= parse_single_patch(buffer
+ offset
+ hdrsize
,
1624 size
- offset
- hdrsize
, patch
);
1627 static const char *binhdr
[] = {
1632 static const char git_binary
[] = "GIT binary patch\n";
1634 int hd
= hdrsize
+ offset
;
1635 unsigned long llen
= linelen(buffer
+ hd
, size
- hd
);
1637 if (llen
== sizeof(git_binary
) - 1 &&
1638 !memcmp(git_binary
, buffer
+ hd
, llen
)) {
1641 used
= parse_binary(buffer
+ hd
+ llen
,
1642 size
- hd
- llen
, patch
);
1644 patchsize
= used
+ llen
;
1648 else if (!memcmp(" differ\n", buffer
+ hd
+ llen
- 8, 8)) {
1649 for (i
= 0; binhdr
[i
]; i
++) {
1650 int len
= strlen(binhdr
[i
]);
1651 if (len
< size
- hd
&&
1652 !memcmp(binhdr
[i
], buffer
+ hd
, len
)) {
1654 patch
->is_binary
= 1;
1661 /* Empty patch cannot be applied if it is a text patch
1662 * without metadata change. A binary patch appears
1665 if ((apply
|| check
) &&
1666 (!patch
->is_binary
&& !metadata_changes(patch
)))
1667 die("patch with only garbage at line %d", linenr
);
1670 return offset
+ hdrsize
+ patchsize
;
1673 #define swap(a,b) myswap((a),(b),sizeof(a))
1675 #define myswap(a, b, size) do { \
1676 unsigned char mytmp[size]; \
1677 memcpy(mytmp, &a, size); \
1678 memcpy(&a, &b, size); \
1679 memcpy(&b, mytmp, size); \
1682 static void reverse_patches(struct patch
*p
)
1684 for (; p
; p
= p
->next
) {
1685 struct fragment
*frag
= p
->fragments
;
1687 swap(p
->new_name
, p
->old_name
);
1688 swap(p
->new_mode
, p
->old_mode
);
1689 swap(p
->is_new
, p
->is_delete
);
1690 swap(p
->lines_added
, p
->lines_deleted
);
1691 swap(p
->old_sha1_prefix
, p
->new_sha1_prefix
);
1693 for (; frag
; frag
= frag
->next
) {
1694 swap(frag
->newpos
, frag
->oldpos
);
1695 swap(frag
->newlines
, frag
->oldlines
);
1700 static const char pluses
[] =
1701 "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
1702 static const char minuses
[]=
1703 "----------------------------------------------------------------------";
1705 static void show_stats(struct patch
*patch
)
1707 struct strbuf qname
= STRBUF_INIT
;
1708 char *cp
= patch
->new_name
? patch
->new_name
: patch
->old_name
;
1711 quote_c_style(cp
, &qname
, NULL
, 0);
1714 * "scale" the filename
1720 if (qname
.len
> max
) {
1721 cp
= strchr(qname
.buf
+ qname
.len
+ 3 - max
, '/');
1723 cp
= qname
.buf
+ qname
.len
+ 3 - max
;
1724 strbuf_splice(&qname
, 0, cp
- qname
.buf
, "...", 3);
1727 if (patch
->is_binary
) {
1728 printf(" %-*s | Bin\n", max
, qname
.buf
);
1729 strbuf_release(&qname
);
1733 printf(" %-*s |", max
, qname
.buf
);
1734 strbuf_release(&qname
);
1737 * scale the add/delete
1739 max
= max
+ max_change
> 70 ? 70 - max
: max_change
;
1740 add
= patch
->lines_added
;
1741 del
= patch
->lines_deleted
;
1743 if (max_change
> 0) {
1744 int total
= ((add
+ del
) * max
+ max_change
/ 2) / max_change
;
1745 add
= (add
* max
+ max_change
/ 2) / max_change
;
1748 printf("%5d %.*s%.*s\n", patch
->lines_added
+ patch
->lines_deleted
,
1749 add
, pluses
, del
, minuses
);
1752 static int read_old_data(struct stat
*st
, const char *path
, struct strbuf
*buf
)
1754 switch (st
->st_mode
& S_IFMT
) {
1756 if (strbuf_readlink(buf
, path
, st
->st_size
) < 0)
1757 return error("unable to read symlink %s", path
);
1760 if (strbuf_read_file(buf
, path
, st
->st_size
) != st
->st_size
)
1761 return error("unable to open or read %s", path
);
1762 convert_to_git(path
, buf
->buf
, buf
->len
, buf
, 0);
1770 * Update the preimage, and the common lines in postimage,
1771 * from buffer buf of length len. If postlen is 0 the postimage
1772 * is updated in place, otherwise it's updated on a new buffer
1776 static void update_pre_post_images(struct image
*preimage
,
1777 struct image
*postimage
,
1779 size_t len
, size_t postlen
)
1782 char *new, *old
, *fixed
;
1783 struct image fixed_preimage
;
1786 * Update the preimage with whitespace fixes. Note that we
1787 * are not losing preimage->buf -- apply_one_fragment() will
1790 prepare_image(&fixed_preimage
, buf
, len
, 1);
1791 assert(fixed_preimage
.nr
== preimage
->nr
);
1792 for (i
= 0; i
< preimage
->nr
; i
++)
1793 fixed_preimage
.line
[i
].flag
= preimage
->line
[i
].flag
;
1794 free(preimage
->line_allocated
);
1795 *preimage
= fixed_preimage
;
1798 * Adjust the common context lines in postimage. This can be
1799 * done in-place when we are just doing whitespace fixing,
1800 * which does not make the string grow, but needs a new buffer
1801 * when ignoring whitespace causes the update, since in this case
1802 * we could have e.g. tabs converted to multiple spaces.
1803 * We trust the caller to tell us if the update can be done
1804 * in place (postlen==0) or not.
1806 old
= postimage
->buf
;
1808 new = postimage
->buf
= xmalloc(postlen
);
1811 fixed
= preimage
->buf
;
1812 for (i
= ctx
= 0; i
< postimage
->nr
; i
++) {
1813 size_t len
= postimage
->line
[i
].len
;
1814 if (!(postimage
->line
[i
].flag
& LINE_COMMON
)) {
1815 /* an added line -- no counterparts in preimage */
1816 memmove(new, old
, len
);
1822 /* a common context -- skip it in the original postimage */
1825 /* and find the corresponding one in the fixed preimage */
1826 while (ctx
< preimage
->nr
&&
1827 !(preimage
->line
[ctx
].flag
& LINE_COMMON
)) {
1828 fixed
+= preimage
->line
[ctx
].len
;
1831 if (preimage
->nr
<= ctx
)
1834 /* and copy it in, while fixing the line length */
1835 len
= preimage
->line
[ctx
].len
;
1836 memcpy(new, fixed
, len
);
1839 postimage
->line
[i
].len
= len
;
1843 /* Fix the length of the whole thing */
1844 postimage
->len
= new - postimage
->buf
;
1847 static int match_fragment(struct image
*img
,
1848 struct image
*preimage
,
1849 struct image
*postimage
,
1853 int match_beginning
, int match_end
)
1856 char *fixed_buf
, *buf
, *orig
, *target
;
1858 if (preimage
->nr
+ try_lno
> img
->nr
)
1861 if (match_beginning
&& try_lno
)
1864 if (match_end
&& preimage
->nr
+ try_lno
!= img
->nr
)
1867 /* Quick hash check */
1868 for (i
= 0; i
< preimage
->nr
; i
++)
1869 if (preimage
->line
[i
].hash
!= img
->line
[try_lno
+ i
].hash
)
1873 * Do we have an exact match? If we were told to match
1874 * at the end, size must be exactly at try+fragsize,
1875 * otherwise try+fragsize must be still within the preimage,
1876 * and either case, the old piece should match the preimage
1880 ? (try + preimage
->len
== img
->len
)
1881 : (try + preimage
->len
<= img
->len
)) &&
1882 !memcmp(img
->buf
+ try, preimage
->buf
, preimage
->len
))
1886 * No exact match. If we are ignoring whitespace, run a line-by-line
1887 * fuzzy matching. We collect all the line length information because
1888 * we need it to adjust whitespace if we match.
1890 if (ws_ignore_action
== ignore_ws_change
) {
1893 size_t postlen
= postimage
->len
;
1894 for (i
= 0; i
< preimage
->nr
; i
++) {
1895 size_t prelen
= preimage
->line
[i
].len
;
1896 size_t imglen
= img
->line
[try_lno
+i
].len
;
1898 if (!fuzzy_matchlines(img
->buf
+ try + imgoff
, imglen
,
1899 preimage
->buf
+ preoff
, prelen
))
1901 if (preimage
->line
[i
].flag
& LINE_COMMON
)
1902 postlen
+= imglen
- prelen
;
1908 * Ok, the preimage matches with whitespace fuzz. Update it and
1909 * the common postimage lines to use the same whitespace as the
1910 * target. imgoff now holds the true length of the target that
1911 * matches the preimage, and we need to update the line lengths
1912 * of the preimage to match the target ones.
1914 fixed_buf
= xmalloc(imgoff
);
1915 memcpy(fixed_buf
, img
->buf
+ try, imgoff
);
1916 for (i
= 0; i
< preimage
->nr
; i
++)
1917 preimage
->line
[i
].len
= img
->line
[try_lno
+i
].len
;
1920 * Update the preimage buffer and the postimage context lines.
1922 update_pre_post_images(preimage
, postimage
,
1923 fixed_buf
, imgoff
, postlen
);
1927 if (ws_error_action
!= correct_ws_error
)
1931 * The hunk does not apply byte-by-byte, but the hash says
1932 * it might with whitespace fuzz. We haven't been asked to
1933 * ignore whitespace, we were asked to correct whitespace
1934 * errors, so let's try matching after whitespace correction.
1936 fixed_buf
= xmalloc(preimage
->len
+ 1);
1938 orig
= preimage
->buf
;
1939 target
= img
->buf
+ try;
1940 for (i
= 0; i
< preimage
->nr
; i
++) {
1941 size_t fixlen
; /* length after fixing the preimage */
1942 size_t oldlen
= preimage
->line
[i
].len
;
1943 size_t tgtlen
= img
->line
[try_lno
+ i
].len
;
1944 size_t tgtfixlen
; /* length after fixing the target line */
1945 char tgtfixbuf
[1024], *tgtfix
;
1948 /* Try fixing the line in the preimage */
1949 fixlen
= ws_fix_copy(buf
, orig
, oldlen
, ws_rule
, NULL
);
1951 /* Try fixing the line in the target */
1952 if (sizeof(tgtfixbuf
) > tgtlen
)
1955 tgtfix
= xmalloc(tgtlen
);
1956 tgtfixlen
= ws_fix_copy(tgtfix
, target
, tgtlen
, ws_rule
, NULL
);
1959 * If they match, either the preimage was based on
1960 * a version before our tree fixed whitespace breakage,
1961 * or we are lacking a whitespace-fix patch the tree
1962 * the preimage was based on already had (i.e. target
1963 * has whitespace breakage, the preimage doesn't).
1964 * In either case, we are fixing the whitespace breakages
1965 * so we might as well take the fix together with their
1968 match
= (tgtfixlen
== fixlen
&& !memcmp(tgtfix
, buf
, fixlen
));
1970 if (tgtfix
!= tgtfixbuf
)
1981 * Yes, the preimage is based on an older version that still
1982 * has whitespace breakages unfixed, and fixing them makes the
1983 * hunk match. Update the context lines in the postimage.
1985 update_pre_post_images(preimage
, postimage
,
1986 fixed_buf
, buf
- fixed_buf
, 0);
1994 static int find_pos(struct image
*img
,
1995 struct image
*preimage
,
1996 struct image
*postimage
,
1999 int match_beginning
, int match_end
)
2002 unsigned long backwards
, forwards
, try;
2003 int backwards_lno
, forwards_lno
, try_lno
;
2005 if (preimage
->nr
> img
->nr
)
2009 * If match_beginning or match_end is specified, there is no
2010 * point starting from a wrong line that will never match and
2011 * wander around and wait for a match at the specified end.
2013 if (match_beginning
)
2016 line
= img
->nr
- preimage
->nr
;
2022 for (i
= 0; i
< line
; i
++)
2023 try += img
->line
[i
].len
;
2026 * There's probably some smart way to do this, but I'll leave
2027 * that to the smart and beautiful people. I'm simple and stupid.
2030 backwards_lno
= line
;
2032 forwards_lno
= line
;
2035 for (i
= 0; ; i
++) {
2036 if (match_fragment(img
, preimage
, postimage
,
2037 try, try_lno
, ws_rule
,
2038 match_beginning
, match_end
))
2042 if (backwards_lno
== 0 && forwards_lno
== img
->nr
)
2046 if (backwards_lno
== 0) {
2051 backwards
-= img
->line
[backwards_lno
].len
;
2053 try_lno
= backwards_lno
;
2055 if (forwards_lno
== img
->nr
) {
2059 forwards
+= img
->line
[forwards_lno
].len
;
2062 try_lno
= forwards_lno
;
2069 static void remove_first_line(struct image
*img
)
2071 img
->buf
+= img
->line
[0].len
;
2072 img
->len
-= img
->line
[0].len
;
2077 static void remove_last_line(struct image
*img
)
2079 img
->len
-= img
->line
[--img
->nr
].len
;
2082 static void update_image(struct image
*img
,
2084 struct image
*preimage
,
2085 struct image
*postimage
)
2088 * remove the copy of preimage at offset in img
2089 * and replace it with postimage
2092 size_t remove_count
, insert_count
, applied_at
= 0;
2095 for (i
= 0; i
< applied_pos
; i
++)
2096 applied_at
+= img
->line
[i
].len
;
2099 for (i
= 0; i
< preimage
->nr
; i
++)
2100 remove_count
+= img
->line
[applied_pos
+ i
].len
;
2101 insert_count
= postimage
->len
;
2103 /* Adjust the contents */
2104 result
= xmalloc(img
->len
+ insert_count
- remove_count
+ 1);
2105 memcpy(result
, img
->buf
, applied_at
);
2106 memcpy(result
+ applied_at
, postimage
->buf
, postimage
->len
);
2107 memcpy(result
+ applied_at
+ postimage
->len
,
2108 img
->buf
+ (applied_at
+ remove_count
),
2109 img
->len
- (applied_at
+ remove_count
));
2112 img
->len
+= insert_count
- remove_count
;
2113 result
[img
->len
] = '\0';
2115 /* Adjust the line table */
2116 nr
= img
->nr
+ postimage
->nr
- preimage
->nr
;
2117 if (preimage
->nr
< postimage
->nr
) {
2119 * NOTE: this knows that we never call remove_first_line()
2120 * on anything other than pre/post image.
2122 img
->line
= xrealloc(img
->line
, nr
* sizeof(*img
->line
));
2123 img
->line_allocated
= img
->line
;
2125 if (preimage
->nr
!= postimage
->nr
)
2126 memmove(img
->line
+ applied_pos
+ postimage
->nr
,
2127 img
->line
+ applied_pos
+ preimage
->nr
,
2128 (img
->nr
- (applied_pos
+ preimage
->nr
)) *
2129 sizeof(*img
->line
));
2130 memcpy(img
->line
+ applied_pos
,
2132 postimage
->nr
* sizeof(*img
->line
));
2136 static int apply_one_fragment(struct image
*img
, struct fragment
*frag
,
2137 int inaccurate_eof
, unsigned ws_rule
)
2139 int match_beginning
, match_end
;
2140 const char *patch
= frag
->patch
;
2141 int size
= frag
->size
;
2142 char *old
, *new, *oldlines
, *newlines
;
2143 int new_blank_lines_at_end
= 0;
2144 unsigned long leading
, trailing
;
2145 int pos
, applied_pos
;
2146 struct image preimage
;
2147 struct image postimage
;
2149 memset(&preimage
, 0, sizeof(preimage
));
2150 memset(&postimage
, 0, sizeof(postimage
));
2151 oldlines
= xmalloc(size
);
2152 newlines
= xmalloc(size
);
2158 int len
= linelen(patch
, size
);
2160 int added_blank_line
= 0;
2161 int is_blank_context
= 0;
2167 * "plen" is how much of the line we should use for
2168 * the actual patch data. Normally we just remove the
2169 * first character on the line, but if the line is
2170 * followed by "\ No newline", then we also remove the
2171 * last one (which is the newline, of course).
2174 if (len
< size
&& patch
[len
] == '\\')
2177 if (apply_in_reverse
) {
2180 else if (first
== '+')
2186 /* Newer GNU diff, empty context line */
2188 /* ... followed by '\No newline'; nothing */
2192 add_line_info(&preimage
, "\n", 1, LINE_COMMON
);
2193 add_line_info(&postimage
, "\n", 1, LINE_COMMON
);
2194 is_blank_context
= 1;
2197 if (plen
&& (ws_rule
& WS_BLANK_AT_EOF
) &&
2198 ws_blank_line(patch
+ 1, plen
, ws_rule
))
2199 is_blank_context
= 1;
2201 memcpy(old
, patch
+ 1, plen
);
2202 add_line_info(&preimage
, old
, plen
,
2203 (first
== ' ' ? LINE_COMMON
: 0));
2207 /* Fall-through for ' ' */
2209 /* --no-add does not add new lines */
2210 if (first
== '+' && no_add
)
2214 !whitespace_error
||
2215 ws_error_action
!= correct_ws_error
) {
2216 memcpy(new, patch
+ 1, plen
);
2220 added
= ws_fix_copy(new, patch
+ 1, plen
, ws_rule
, &applied_after_fixing_ws
);
2222 add_line_info(&postimage
, new, added
,
2223 (first
== '+' ? 0 : LINE_COMMON
));
2226 (ws_rule
& WS_BLANK_AT_EOF
) &&
2227 ws_blank_line(patch
+ 1, plen
, ws_rule
))
2228 added_blank_line
= 1;
2230 case '@': case '\\':
2231 /* Ignore it, we already handled it */
2234 if (apply_verbosely
)
2235 error("invalid start of line: '%c'", first
);
2238 if (added_blank_line
)
2239 new_blank_lines_at_end
++;
2240 else if (is_blank_context
)
2243 new_blank_lines_at_end
= 0;
2247 if (inaccurate_eof
&&
2248 old
> oldlines
&& old
[-1] == '\n' &&
2249 new > newlines
&& new[-1] == '\n') {
2254 leading
= frag
->leading
;
2255 trailing
= frag
->trailing
;
2258 * A hunk to change lines at the beginning would begin with
2260 * but we need to be careful. -U0 that inserts before the second
2261 * line also has this pattern.
2263 * And a hunk to add to an empty file would begin with
2266 * In other words, a hunk that is (frag->oldpos <= 1) with or
2267 * without leading context must match at the beginning.
2269 match_beginning
= (!frag
->oldpos
||
2270 (frag
->oldpos
== 1 && !unidiff_zero
));
2273 * A hunk without trailing lines must match at the end.
2274 * However, we simply cannot tell if a hunk must match end
2275 * from the lack of trailing lines if the patch was generated
2276 * with unidiff without any context.
2278 match_end
= !unidiff_zero
&& !trailing
;
2280 pos
= frag
->newpos
? (frag
->newpos
- 1) : 0;
2281 preimage
.buf
= oldlines
;
2282 preimage
.len
= old
- oldlines
;
2283 postimage
.buf
= newlines
;
2284 postimage
.len
= new - newlines
;
2285 preimage
.line
= preimage
.line_allocated
;
2286 postimage
.line
= postimage
.line_allocated
;
2290 applied_pos
= find_pos(img
, &preimage
, &postimage
, pos
,
2291 ws_rule
, match_beginning
, match_end
);
2293 if (applied_pos
>= 0)
2296 /* Am I at my context limits? */
2297 if ((leading
<= p_context
) && (trailing
<= p_context
))
2299 if (match_beginning
|| match_end
) {
2300 match_beginning
= match_end
= 0;
2305 * Reduce the number of context lines; reduce both
2306 * leading and trailing if they are equal otherwise
2307 * just reduce the larger context.
2309 if (leading
>= trailing
) {
2310 remove_first_line(&preimage
);
2311 remove_first_line(&postimage
);
2315 if (trailing
> leading
) {
2316 remove_last_line(&preimage
);
2317 remove_last_line(&postimage
);
2322 if (applied_pos
>= 0) {
2323 if (new_blank_lines_at_end
&&
2324 preimage
.nr
+ applied_pos
== img
->nr
&&
2325 (ws_rule
& WS_BLANK_AT_EOF
) &&
2326 ws_error_action
!= nowarn_ws_error
) {
2327 record_ws_error(WS_BLANK_AT_EOF
, "+", 1, frag
->linenr
);
2328 if (ws_error_action
== correct_ws_error
) {
2329 while (new_blank_lines_at_end
--)
2330 remove_last_line(&postimage
);
2333 * We would want to prevent write_out_results()
2334 * from taking place in apply_patch() that follows
2335 * the callchain led us here, which is:
2336 * apply_patch->check_patch_list->check_patch->
2337 * apply_data->apply_fragments->apply_one_fragment
2339 if (ws_error_action
== die_on_ws_error
)
2344 * Warn if it was necessary to reduce the number
2347 if ((leading
!= frag
->leading
) ||
2348 (trailing
!= frag
->trailing
))
2349 fprintf(stderr
, "Context reduced to (%ld/%ld)"
2350 " to apply fragment at %d\n",
2351 leading
, trailing
, applied_pos
+1);
2352 update_image(img
, applied_pos
, &preimage
, &postimage
);
2354 if (apply_verbosely
)
2355 error("while searching for:\n%.*s",
2356 (int)(old
- oldlines
), oldlines
);
2361 free(preimage
.line_allocated
);
2362 free(postimage
.line_allocated
);
2364 return (applied_pos
< 0);
2367 static int apply_binary_fragment(struct image
*img
, struct patch
*patch
)
2369 struct fragment
*fragment
= patch
->fragments
;
2373 /* Binary patch is irreversible without the optional second hunk */
2374 if (apply_in_reverse
) {
2375 if (!fragment
->next
)
2376 return error("cannot reverse-apply a binary patch "
2377 "without the reverse hunk to '%s'",
2379 ? patch
->new_name
: patch
->old_name
);
2380 fragment
= fragment
->next
;
2382 switch (fragment
->binary_patch_method
) {
2383 case BINARY_DELTA_DEFLATED
:
2384 dst
= patch_delta(img
->buf
, img
->len
, fragment
->patch
,
2385 fragment
->size
, &len
);
2392 case BINARY_LITERAL_DEFLATED
:
2394 img
->len
= fragment
->size
;
2395 img
->buf
= xmalloc(img
->len
+1);
2396 memcpy(img
->buf
, fragment
->patch
, img
->len
);
2397 img
->buf
[img
->len
] = '\0';
2403 static int apply_binary(struct image
*img
, struct patch
*patch
)
2405 const char *name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
2406 unsigned char sha1
[20];
2409 * For safety, we require patch index line to contain
2410 * full 40-byte textual SHA1 for old and new, at least for now.
2412 if (strlen(patch
->old_sha1_prefix
) != 40 ||
2413 strlen(patch
->new_sha1_prefix
) != 40 ||
2414 get_sha1_hex(patch
->old_sha1_prefix
, sha1
) ||
2415 get_sha1_hex(patch
->new_sha1_prefix
, sha1
))
2416 return error("cannot apply binary patch to '%s' "
2417 "without full index line", name
);
2419 if (patch
->old_name
) {
2421 * See if the old one matches what the patch
2424 hash_sha1_file(img
->buf
, img
->len
, blob_type
, sha1
);
2425 if (strcmp(sha1_to_hex(sha1
), patch
->old_sha1_prefix
))
2426 return error("the patch applies to '%s' (%s), "
2427 "which does not match the "
2428 "current contents.",
2429 name
, sha1_to_hex(sha1
));
2432 /* Otherwise, the old one must be empty. */
2434 return error("the patch applies to an empty "
2435 "'%s' but it is not empty", name
);
2438 get_sha1_hex(patch
->new_sha1_prefix
, sha1
);
2439 if (is_null_sha1(sha1
)) {
2441 return 0; /* deletion patch */
2444 if (has_sha1_file(sha1
)) {
2445 /* We already have the postimage */
2446 enum object_type type
;
2450 result
= read_sha1_file(sha1
, &type
, &size
);
2452 return error("the necessary postimage %s for "
2453 "'%s' cannot be read",
2454 patch
->new_sha1_prefix
, name
);
2460 * We have verified buf matches the preimage;
2461 * apply the patch data to it, which is stored
2462 * in the patch->fragments->{patch,size}.
2464 if (apply_binary_fragment(img
, patch
))
2465 return error("binary patch does not apply to '%s'",
2468 /* verify that the result matches */
2469 hash_sha1_file(img
->buf
, img
->len
, blob_type
, sha1
);
2470 if (strcmp(sha1_to_hex(sha1
), patch
->new_sha1_prefix
))
2471 return error("binary patch to '%s' creates incorrect result (expecting %s, got %s)",
2472 name
, patch
->new_sha1_prefix
, sha1_to_hex(sha1
));
2478 static int apply_fragments(struct image
*img
, struct patch
*patch
)
2480 struct fragment
*frag
= patch
->fragments
;
2481 const char *name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
2482 unsigned ws_rule
= patch
->ws_rule
;
2483 unsigned inaccurate_eof
= patch
->inaccurate_eof
;
2485 if (patch
->is_binary
)
2486 return apply_binary(img
, patch
);
2489 if (apply_one_fragment(img
, frag
, inaccurate_eof
, ws_rule
)) {
2490 error("patch failed: %s:%ld", name
, frag
->oldpos
);
2491 if (!apply_with_reject
)
2500 static int read_file_or_gitlink(struct cache_entry
*ce
, struct strbuf
*buf
)
2505 if (S_ISGITLINK(ce
->ce_mode
)) {
2506 strbuf_grow(buf
, 100);
2507 strbuf_addf(buf
, "Subproject commit %s\n", sha1_to_hex(ce
->sha1
));
2509 enum object_type type
;
2513 result
= read_sha1_file(ce
->sha1
, &type
, &sz
);
2516 /* XXX read_sha1_file NUL-terminates */
2517 strbuf_attach(buf
, result
, sz
, sz
+ 1);
2522 static struct patch
*in_fn_table(const char *name
)
2524 struct string_list_item
*item
;
2529 item
= string_list_lookup(name
, &fn_table
);
2531 return (struct patch
*)item
->util
;
2537 * item->util in the filename table records the status of the path.
2538 * Usually it points at a patch (whose result records the contents
2539 * of it after applying it), but it could be PATH_WAS_DELETED for a
2540 * path that a previously applied patch has already removed.
2542 #define PATH_TO_BE_DELETED ((struct patch *) -2)
2543 #define PATH_WAS_DELETED ((struct patch *) -1)
2545 static int to_be_deleted(struct patch
*patch
)
2547 return patch
== PATH_TO_BE_DELETED
;
2550 static int was_deleted(struct patch
*patch
)
2552 return patch
== PATH_WAS_DELETED
;
2555 static void add_to_fn_table(struct patch
*patch
)
2557 struct string_list_item
*item
;
2560 * Always add new_name unless patch is a deletion
2561 * This should cover the cases for normal diffs,
2562 * file creations and copies
2564 if (patch
->new_name
!= NULL
) {
2565 item
= string_list_insert(patch
->new_name
, &fn_table
);
2570 * store a failure on rename/deletion cases because
2571 * later chunks shouldn't patch old names
2573 if ((patch
->new_name
== NULL
) || (patch
->is_rename
)) {
2574 item
= string_list_insert(patch
->old_name
, &fn_table
);
2575 item
->util
= PATH_WAS_DELETED
;
2579 static void prepare_fn_table(struct patch
*patch
)
2582 * store information about incoming file deletion
2585 if ((patch
->new_name
== NULL
) || (patch
->is_rename
)) {
2586 struct string_list_item
*item
;
2587 item
= string_list_insert(patch
->old_name
, &fn_table
);
2588 item
->util
= PATH_TO_BE_DELETED
;
2590 patch
= patch
->next
;
2594 static int apply_data(struct patch
*patch
, struct stat
*st
, struct cache_entry
*ce
)
2596 struct strbuf buf
= STRBUF_INIT
;
2600 struct patch
*tpatch
;
2602 if (!(patch
->is_copy
|| patch
->is_rename
) &&
2603 (tpatch
= in_fn_table(patch
->old_name
)) != NULL
&& !to_be_deleted(tpatch
)) {
2604 if (was_deleted(tpatch
)) {
2605 return error("patch %s has been renamed/deleted",
2608 /* We have a patched copy in memory use that */
2609 strbuf_add(&buf
, tpatch
->result
, tpatch
->resultsize
);
2610 } else if (cached
) {
2611 if (read_file_or_gitlink(ce
, &buf
))
2612 return error("read of %s failed", patch
->old_name
);
2613 } else if (patch
->old_name
) {
2614 if (S_ISGITLINK(patch
->old_mode
)) {
2616 read_file_or_gitlink(ce
, &buf
);
2619 * There is no way to apply subproject
2620 * patch without looking at the index.
2622 patch
->fragments
= NULL
;
2625 if (read_old_data(st
, patch
->old_name
, &buf
))
2626 return error("read of %s failed", patch
->old_name
);
2630 img
= strbuf_detach(&buf
, &len
);
2631 prepare_image(&image
, img
, len
, !patch
->is_binary
);
2633 if (apply_fragments(&image
, patch
) < 0)
2634 return -1; /* note with --reject this succeeds. */
2635 patch
->result
= image
.buf
;
2636 patch
->resultsize
= image
.len
;
2637 add_to_fn_table(patch
);
2638 free(image
.line_allocated
);
2640 if (0 < patch
->is_delete
&& patch
->resultsize
)
2641 return error("removal patch leaves file contents");
2646 static int check_to_create_blob(const char *new_name
, int ok_if_exists
)
2649 if (!lstat(new_name
, &nst
)) {
2650 if (S_ISDIR(nst
.st_mode
) || ok_if_exists
)
2653 * A leading component of new_name might be a symlink
2654 * that is going to be removed with this patch, but
2655 * still pointing at somewhere that has the path.
2656 * In such a case, path "new_name" does not exist as
2657 * far as git is concerned.
2659 if (has_symlink_leading_path(new_name
, strlen(new_name
)))
2662 return error("%s: already exists in working directory", new_name
);
2664 else if ((errno
!= ENOENT
) && (errno
!= ENOTDIR
))
2665 return error("%s: %s", new_name
, strerror(errno
));
2669 static int verify_index_match(struct cache_entry
*ce
, struct stat
*st
)
2671 if (S_ISGITLINK(ce
->ce_mode
)) {
2672 if (!S_ISDIR(st
->st_mode
))
2676 return ce_match_stat(ce
, st
, CE_MATCH_IGNORE_VALID
|CE_MATCH_IGNORE_SKIP_WORKTREE
);
2679 static int check_preimage(struct patch
*patch
, struct cache_entry
**ce
, struct stat
*st
)
2681 const char *old_name
= patch
->old_name
;
2682 struct patch
*tpatch
= NULL
;
2684 unsigned st_mode
= 0;
2687 * Make sure that we do not have local modifications from the
2688 * index when we are looking at the index. Also make sure
2689 * we have the preimage file to be patched in the work tree,
2690 * unless --cached, which tells git to apply only in the index.
2695 assert(patch
->is_new
<= 0);
2697 if (!(patch
->is_copy
|| patch
->is_rename
) &&
2698 (tpatch
= in_fn_table(old_name
)) != NULL
&& !to_be_deleted(tpatch
)) {
2699 if (was_deleted(tpatch
))
2700 return error("%s: has been deleted/renamed", old_name
);
2701 st_mode
= tpatch
->new_mode
;
2702 } else if (!cached
) {
2703 stat_ret
= lstat(old_name
, st
);
2704 if (stat_ret
&& errno
!= ENOENT
)
2705 return error("%s: %s", old_name
, strerror(errno
));
2708 if (to_be_deleted(tpatch
))
2711 if (check_index
&& !tpatch
) {
2712 int pos
= cache_name_pos(old_name
, strlen(old_name
));
2714 if (patch
->is_new
< 0)
2716 return error("%s: does not exist in index", old_name
);
2718 *ce
= active_cache
[pos
];
2720 struct checkout costate
;
2722 costate
.base_dir
= "";
2723 costate
.base_dir_len
= 0;
2726 costate
.not_new
= 0;
2727 costate
.refresh_cache
= 1;
2728 if (checkout_entry(*ce
, &costate
, NULL
) ||
2729 lstat(old_name
, st
))
2732 if (!cached
&& verify_index_match(*ce
, st
))
2733 return error("%s: does not match index", old_name
);
2735 st_mode
= (*ce
)->ce_mode
;
2736 } else if (stat_ret
< 0) {
2737 if (patch
->is_new
< 0)
2739 return error("%s: %s", old_name
, strerror(errno
));
2742 if (!cached
&& !tpatch
)
2743 st_mode
= ce_mode_from_stat(*ce
, st
->st_mode
);
2745 if (patch
->is_new
< 0)
2747 if (!patch
->old_mode
)
2748 patch
->old_mode
= st_mode
;
2749 if ((st_mode
^ patch
->old_mode
) & S_IFMT
)
2750 return error("%s: wrong type", old_name
);
2751 if (st_mode
!= patch
->old_mode
)
2752 warning("%s has type %o, expected %o",
2753 old_name
, st_mode
, patch
->old_mode
);
2754 if (!patch
->new_mode
&& !patch
->is_delete
)
2755 patch
->new_mode
= st_mode
;
2760 patch
->is_delete
= 0;
2761 patch
->old_name
= NULL
;
2765 static int check_patch(struct patch
*patch
)
2768 const char *old_name
= patch
->old_name
;
2769 const char *new_name
= patch
->new_name
;
2770 const char *name
= old_name
? old_name
: new_name
;
2771 struct cache_entry
*ce
= NULL
;
2772 struct patch
*tpatch
;
2776 patch
->rejected
= 1; /* we will drop this after we succeed */
2778 status
= check_preimage(patch
, &ce
, &st
);
2781 old_name
= patch
->old_name
;
2783 if ((tpatch
= in_fn_table(new_name
)) &&
2784 (was_deleted(tpatch
) || to_be_deleted(tpatch
)))
2786 * A type-change diff is always split into a patch to
2787 * delete old, immediately followed by a patch to
2788 * create new (see diff.c::run_diff()); in such a case
2789 * it is Ok that the entry to be deleted by the
2790 * previous patch is still in the working tree and in
2798 ((0 < patch
->is_new
) | (0 < patch
->is_rename
) | patch
->is_copy
)) {
2800 cache_name_pos(new_name
, strlen(new_name
)) >= 0 &&
2802 return error("%s: already exists in index", new_name
);
2804 int err
= check_to_create_blob(new_name
, ok_if_exists
);
2808 if (!patch
->new_mode
) {
2809 if (0 < patch
->is_new
)
2810 patch
->new_mode
= S_IFREG
| 0644;
2812 patch
->new_mode
= patch
->old_mode
;
2816 if (new_name
&& old_name
) {
2817 int same
= !strcmp(old_name
, new_name
);
2818 if (!patch
->new_mode
)
2819 patch
->new_mode
= patch
->old_mode
;
2820 if ((patch
->old_mode
^ patch
->new_mode
) & S_IFMT
)
2821 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
2822 patch
->new_mode
, new_name
, patch
->old_mode
,
2823 same
? "" : " of ", same
? "" : old_name
);
2826 if (apply_data(patch
, &st
, ce
) < 0)
2827 return error("%s: patch does not apply", name
);
2828 patch
->rejected
= 0;
2832 static int check_patch_list(struct patch
*patch
)
2836 prepare_fn_table(patch
);
2838 if (apply_verbosely
)
2839 say_patch_name(stderr
,
2840 "Checking patch ", patch
, "...\n");
2841 err
|= check_patch(patch
);
2842 patch
= patch
->next
;
2847 /* This function tries to read the sha1 from the current index */
2848 static int get_current_sha1(const char *path
, unsigned char *sha1
)
2852 if (read_cache() < 0)
2854 pos
= cache_name_pos(path
, strlen(path
));
2857 hashcpy(sha1
, active_cache
[pos
]->sha1
);
2861 /* Build an index that contains the just the files needed for a 3way merge */
2862 static void build_fake_ancestor(struct patch
*list
, const char *filename
)
2864 struct patch
*patch
;
2865 struct index_state result
= { NULL
};
2868 /* Once we start supporting the reverse patch, it may be
2869 * worth showing the new sha1 prefix, but until then...
2871 for (patch
= list
; patch
; patch
= patch
->next
) {
2872 const unsigned char *sha1_ptr
;
2873 unsigned char sha1
[20];
2874 struct cache_entry
*ce
;
2877 name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
2878 if (0 < patch
->is_new
)
2880 else if (get_sha1(patch
->old_sha1_prefix
, sha1
))
2881 /* git diff has no index line for mode/type changes */
2882 if (!patch
->lines_added
&& !patch
->lines_deleted
) {
2883 if (get_current_sha1(patch
->new_name
, sha1
) ||
2884 get_current_sha1(patch
->old_name
, sha1
))
2885 die("mode change for %s, which is not "
2886 "in current HEAD", name
);
2889 die("sha1 information is lacking or useless "
2894 ce
= make_cache_entry(patch
->old_mode
, sha1_ptr
, name
, 0, 0);
2896 die("make_cache_entry failed for path '%s'", name
);
2897 if (add_index_entry(&result
, ce
, ADD_CACHE_OK_TO_ADD
))
2898 die ("Could not add %s to temporary index", name
);
2901 fd
= open(filename
, O_WRONLY
| O_CREAT
, 0666);
2902 if (fd
< 0 || write_index(&result
, fd
) || close(fd
))
2903 die ("Could not write temporary index to %s", filename
);
2905 discard_index(&result
);
2908 static void stat_patch_list(struct patch
*patch
)
2910 int files
, adds
, dels
;
2912 for (files
= adds
= dels
= 0 ; patch
; patch
= patch
->next
) {
2914 adds
+= patch
->lines_added
;
2915 dels
+= patch
->lines_deleted
;
2919 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files
, adds
, dels
);
2922 static void numstat_patch_list(struct patch
*patch
)
2924 for ( ; patch
; patch
= patch
->next
) {
2926 name
= patch
->new_name
? patch
->new_name
: patch
->old_name
;
2927 if (patch
->is_binary
)
2930 printf("%d\t%d\t", patch
->lines_added
, patch
->lines_deleted
);
2931 write_name_quoted(name
, stdout
, line_termination
);
2935 static void show_file_mode_name(const char *newdelete
, unsigned int mode
, const char *name
)
2938 printf(" %s mode %06o %s\n", newdelete
, mode
, name
);
2940 printf(" %s %s\n", newdelete
, name
);
2943 static void show_mode_change(struct patch
*p
, int show_name
)
2945 if (p
->old_mode
&& p
->new_mode
&& p
->old_mode
!= p
->new_mode
) {
2947 printf(" mode change %06o => %06o %s\n",
2948 p
->old_mode
, p
->new_mode
, p
->new_name
);
2950 printf(" mode change %06o => %06o\n",
2951 p
->old_mode
, p
->new_mode
);
2955 static void show_rename_copy(struct patch
*p
)
2957 const char *renamecopy
= p
->is_rename
? "rename" : "copy";
2958 const char *old
, *new;
2960 /* Find common prefix */
2964 const char *slash_old
, *slash_new
;
2965 slash_old
= strchr(old
, '/');
2966 slash_new
= strchr(new, '/');
2969 slash_old
- old
!= slash_new
- new ||
2970 memcmp(old
, new, slash_new
- new))
2972 old
= slash_old
+ 1;
2973 new = slash_new
+ 1;
2975 /* p->old_name thru old is the common prefix, and old and new
2976 * through the end of names are renames
2978 if (old
!= p
->old_name
)
2979 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy
,
2980 (int)(old
- p
->old_name
), p
->old_name
,
2981 old
, new, p
->score
);
2983 printf(" %s %s => %s (%d%%)\n", renamecopy
,
2984 p
->old_name
, p
->new_name
, p
->score
);
2985 show_mode_change(p
, 0);
2988 static void summary_patch_list(struct patch
*patch
)
2992 for (p
= patch
; p
; p
= p
->next
) {
2994 show_file_mode_name("create", p
->new_mode
, p
->new_name
);
2995 else if (p
->is_delete
)
2996 show_file_mode_name("delete", p
->old_mode
, p
->old_name
);
2998 if (p
->is_rename
|| p
->is_copy
)
2999 show_rename_copy(p
);
3002 printf(" rewrite %s (%d%%)\n",
3003 p
->new_name
, p
->score
);
3004 show_mode_change(p
, 0);
3007 show_mode_change(p
, 1);
3013 static void patch_stats(struct patch
*patch
)
3015 int lines
= patch
->lines_added
+ patch
->lines_deleted
;
3017 if (lines
> max_change
)
3019 if (patch
->old_name
) {
3020 int len
= quote_c_style(patch
->old_name
, NULL
, NULL
, 0);
3022 len
= strlen(patch
->old_name
);
3026 if (patch
->new_name
) {
3027 int len
= quote_c_style(patch
->new_name
, NULL
, NULL
, 0);
3029 len
= strlen(patch
->new_name
);
3035 static void remove_file(struct patch
*patch
, int rmdir_empty
)
3038 if (remove_file_from_cache(patch
->old_name
) < 0)
3039 die("unable to remove %s from index", patch
->old_name
);
3042 if (S_ISGITLINK(patch
->old_mode
)) {
3043 if (rmdir(patch
->old_name
))
3044 warning("unable to remove submodule %s",
3046 } else if (!unlink_or_warn(patch
->old_name
) && rmdir_empty
) {
3047 remove_path(patch
->old_name
);
3052 static void add_index_file(const char *path
, unsigned mode
, void *buf
, unsigned long size
)
3055 struct cache_entry
*ce
;
3056 int namelen
= strlen(path
);
3057 unsigned ce_size
= cache_entry_size(namelen
);
3062 ce
= xcalloc(1, ce_size
);
3063 memcpy(ce
->name
, path
, namelen
);
3064 ce
->ce_mode
= create_ce_mode(mode
);
3065 ce
->ce_flags
= namelen
;
3066 if (S_ISGITLINK(mode
)) {
3067 const char *s
= buf
;
3069 if (get_sha1_hex(s
+ strlen("Subproject commit "), ce
->sha1
))
3070 die("corrupt patch for subproject %s", path
);
3073 if (lstat(path
, &st
) < 0)
3074 die_errno("unable to stat newly created file '%s'",
3076 fill_stat_cache_info(ce
, &st
);
3078 if (write_sha1_file(buf
, size
, blob_type
, ce
->sha1
) < 0)
3079 die("unable to create backing store for newly created file %s", path
);
3081 if (add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
) < 0)
3082 die("unable to add cache entry for %s", path
);
3085 static int try_create_file(const char *path
, unsigned int mode
, const char *buf
, unsigned long size
)
3088 struct strbuf nbuf
= STRBUF_INIT
;
3090 if (S_ISGITLINK(mode
)) {
3092 if (!lstat(path
, &st
) && S_ISDIR(st
.st_mode
))
3094 return mkdir(path
, 0777);
3097 if (has_symlinks
&& S_ISLNK(mode
))
3098 /* Although buf:size is counted string, it also is NUL
3101 return symlink(buf
, path
);
3103 fd
= open(path
, O_CREAT
| O_EXCL
| O_WRONLY
, (mode
& 0100) ? 0777 : 0666);
3107 if (convert_to_working_tree(path
, buf
, size
, &nbuf
)) {
3111 write_or_die(fd
, buf
, size
);
3112 strbuf_release(&nbuf
);
3115 die_errno("closing file '%s'", path
);
3120 * We optimistically assume that the directories exist,
3121 * which is true 99% of the time anyway. If they don't,
3122 * we create them and try again.
3124 static void create_one_file(char *path
, unsigned mode
, const char *buf
, unsigned long size
)
3128 if (!try_create_file(path
, mode
, buf
, size
))
3131 if (errno
== ENOENT
) {
3132 if (safe_create_leading_directories(path
))
3134 if (!try_create_file(path
, mode
, buf
, size
))
3138 if (errno
== EEXIST
|| errno
== EACCES
) {
3139 /* We may be trying to create a file where a directory
3143 if (!lstat(path
, &st
) && (!S_ISDIR(st
.st_mode
) || !rmdir(path
)))
3147 if (errno
== EEXIST
) {
3148 unsigned int nr
= getpid();
3151 char newpath
[PATH_MAX
];
3152 mksnpath(newpath
, sizeof(newpath
), "%s~%u", path
, nr
);
3153 if (!try_create_file(newpath
, mode
, buf
, size
)) {
3154 if (!rename(newpath
, path
))
3156 unlink_or_warn(newpath
);
3159 if (errno
!= EEXIST
)
3164 die_errno("unable to write file '%s' mode %o", path
, mode
);
3167 static void create_file(struct patch
*patch
)
3169 char *path
= patch
->new_name
;
3170 unsigned mode
= patch
->new_mode
;
3171 unsigned long size
= patch
->resultsize
;
3172 char *buf
= patch
->result
;
3175 mode
= S_IFREG
| 0644;
3176 create_one_file(path
, mode
, buf
, size
);
3177 add_index_file(path
, mode
, buf
, size
);
3180 /* phase zero is to remove, phase one is to create */
3181 static void write_out_one_result(struct patch
*patch
, int phase
)
3183 if (patch
->is_delete
> 0) {
3185 remove_file(patch
, 1);
3188 if (patch
->is_new
> 0 || patch
->is_copy
) {
3194 * Rename or modification boils down to the same
3195 * thing: remove the old, write the new
3198 remove_file(patch
, patch
->is_rename
);
3203 static int write_out_one_reject(struct patch
*patch
)
3206 char namebuf
[PATH_MAX
];
3207 struct fragment
*frag
;
3210 for (cnt
= 0, frag
= patch
->fragments
; frag
; frag
= frag
->next
) {
3211 if (!frag
->rejected
)
3217 if (apply_verbosely
)
3218 say_patch_name(stderr
,
3219 "Applied patch ", patch
, " cleanly.\n");
3223 /* This should not happen, because a removal patch that leaves
3224 * contents are marked "rejected" at the patch level.
3226 if (!patch
->new_name
)
3227 die("internal error");
3229 /* Say this even without --verbose */
3230 say_patch_name(stderr
, "Applying patch ", patch
, " with");
3231 fprintf(stderr
, " %d rejects...\n", cnt
);
3233 cnt
= strlen(patch
->new_name
);
3234 if (ARRAY_SIZE(namebuf
) <= cnt
+ 5) {
3235 cnt
= ARRAY_SIZE(namebuf
) - 5;
3236 warning("truncating .rej filename to %.*s.rej",
3237 cnt
- 1, patch
->new_name
);
3239 memcpy(namebuf
, patch
->new_name
, cnt
);
3240 memcpy(namebuf
+ cnt
, ".rej", 5);
3242 rej
= fopen(namebuf
, "w");
3244 return error("cannot open %s: %s", namebuf
, strerror(errno
));
3246 /* Normal git tools never deal with .rej, so do not pretend
3247 * this is a git patch by saying --git nor give extended
3248 * headers. While at it, maybe please "kompare" that wants
3249 * the trailing TAB and some garbage at the end of line ;-).
3251 fprintf(rej
, "diff a/%s b/%s\t(rejected hunks)\n",
3252 patch
->new_name
, patch
->new_name
);
3253 for (cnt
= 1, frag
= patch
->fragments
;
3255 cnt
++, frag
= frag
->next
) {
3256 if (!frag
->rejected
) {
3257 fprintf(stderr
, "Hunk #%d applied cleanly.\n", cnt
);
3260 fprintf(stderr
, "Rejected hunk #%d.\n", cnt
);
3261 fprintf(rej
, "%.*s", frag
->size
, frag
->patch
);
3262 if (frag
->patch
[frag
->size
-1] != '\n')
3269 static int write_out_results(struct patch
*list
, int skipped_patch
)
3275 if (!list
&& !skipped_patch
)
3276 return error("No changes");
3278 for (phase
= 0; phase
< 2; phase
++) {
3284 write_out_one_result(l
, phase
);
3285 if (phase
== 1 && write_out_one_reject(l
))
3294 static struct lock_file lock_file
;
3296 static struct string_list limit_by_name
;
3297 static int has_include
;
3298 static void add_name_limit(const char *name
, int exclude
)
3300 struct string_list_item
*it
;
3302 it
= string_list_append(name
, &limit_by_name
);
3303 it
->util
= exclude
? NULL
: (void *) 1;
3306 static int use_patch(struct patch
*p
)
3308 const char *pathname
= p
->new_name
? p
->new_name
: p
->old_name
;
3311 /* Paths outside are not touched regardless of "--include" */
3312 if (0 < prefix_length
) {
3313 int pathlen
= strlen(pathname
);
3314 if (pathlen
<= prefix_length
||
3315 memcmp(prefix
, pathname
, prefix_length
))
3319 /* See if it matches any of exclude/include rule */
3320 for (i
= 0; i
< limit_by_name
.nr
; i
++) {
3321 struct string_list_item
*it
= &limit_by_name
.items
[i
];
3322 if (!fnmatch(it
->string
, pathname
, 0))
3323 return (it
->util
!= NULL
);
3327 * If we had any include, a path that does not match any rule is
3328 * not used. Otherwise, we saw bunch of exclude rules (or none)
3329 * and such a path is used.
3331 return !has_include
;
3335 static void prefix_one(char **name
)
3337 char *old_name
= *name
;
3340 *name
= xstrdup(prefix_filename(prefix
, prefix_length
, *name
));
3344 static void prefix_patches(struct patch
*p
)
3346 if (!prefix
|| p
->is_toplevel_relative
)
3348 for ( ; p
; p
= p
->next
) {
3349 if (p
->new_name
== p
->old_name
) {
3350 char *prefixed
= p
->new_name
;
3351 prefix_one(&prefixed
);
3352 p
->new_name
= p
->old_name
= prefixed
;
3355 prefix_one(&p
->new_name
);
3356 prefix_one(&p
->old_name
);
3361 #define INACCURATE_EOF (1<<0)
3362 #define RECOUNT (1<<1)
3364 static int apply_patch(int fd
, const char *filename
, int options
)
3367 struct strbuf buf
= STRBUF_INIT
;
3368 struct patch
*list
= NULL
, **listp
= &list
;
3369 int skipped_patch
= 0;
3371 /* FIXME - memory leak when using multiple patch files as inputs */
3372 memset(&fn_table
, 0, sizeof(struct string_list
));
3373 patch_input_file
= filename
;
3374 read_patch_file(&buf
, fd
);
3376 while (offset
< buf
.len
) {
3377 struct patch
*patch
;
3380 patch
= xcalloc(1, sizeof(*patch
));
3381 patch
->inaccurate_eof
= !!(options
& INACCURATE_EOF
);
3382 patch
->recount
= !!(options
& RECOUNT
);
3383 nr
= parse_chunk(buf
.buf
+ offset
, buf
.len
- offset
, patch
);
3386 if (apply_in_reverse
)
3387 reverse_patches(patch
);
3389 prefix_patches(patch
);
3390 if (use_patch(patch
)) {
3393 listp
= &patch
->next
;
3396 /* perhaps free it a bit better? */
3403 if (whitespace_error
&& (ws_error_action
== die_on_ws_error
))
3406 update_index
= check_index
&& apply
;
3407 if (update_index
&& newfd
< 0)
3408 newfd
= hold_locked_index(&lock_file
, 1);
3411 if (read_cache() < 0)
3412 die("unable to read index file");
3415 if ((check
|| apply
) &&
3416 check_patch_list(list
) < 0 &&
3420 if (apply
&& write_out_results(list
, skipped_patch
))
3424 build_fake_ancestor(list
, fake_ancestor
);
3427 stat_patch_list(list
);
3430 numstat_patch_list(list
);
3433 summary_patch_list(list
);
3435 strbuf_release(&buf
);
3439 static int git_apply_config(const char *var
, const char *value
, void *cb
)
3441 if (!strcmp(var
, "apply.whitespace"))
3442 return git_config_string(&apply_default_whitespace
, var
, value
);
3443 else if (!strcmp(var
, "apply.ignorewhitespace"))
3444 return git_config_string(&apply_default_ignorewhitespace
, var
, value
);
3445 return git_default_config(var
, value
, cb
);
3448 static int option_parse_exclude(const struct option
*opt
,
3449 const char *arg
, int unset
)
3451 add_name_limit(arg
, 1);
3455 static int option_parse_include(const struct option
*opt
,
3456 const char *arg
, int unset
)
3458 add_name_limit(arg
, 0);
3463 static int option_parse_p(const struct option
*opt
,
3464 const char *arg
, int unset
)
3466 p_value
= atoi(arg
);
3471 static int option_parse_z(const struct option
*opt
,
3472 const char *arg
, int unset
)
3475 line_termination
= '\n';
3477 line_termination
= 0;
3481 static int option_parse_space_change(const struct option
*opt
,
3482 const char *arg
, int unset
)
3485 ws_ignore_action
= ignore_ws_none
;
3487 ws_ignore_action
= ignore_ws_change
;
3491 static int option_parse_whitespace(const struct option
*opt
,
3492 const char *arg
, int unset
)
3494 const char **whitespace_option
= opt
->value
;
3496 *whitespace_option
= arg
;
3497 parse_whitespace_option(arg
);
3501 static int option_parse_directory(const struct option
*opt
,
3502 const char *arg
, int unset
)
3504 root_len
= strlen(arg
);
3505 if (root_len
&& arg
[root_len
- 1] != '/') {
3507 root
= new_root
= xmalloc(root_len
+ 2);
3508 strcpy(new_root
, arg
);
3509 strcpy(new_root
+ root_len
++, "/");
3515 int cmd_apply(int argc
, const char **argv
, const char *unused_prefix
)
3521 int force_apply
= 0;
3523 const char *whitespace_option
= NULL
;
3525 struct option builtin_apply_options
[] = {
3526 { OPTION_CALLBACK
, 0, "exclude", NULL
, "path",
3527 "don't apply changes matching the given path",
3528 0, option_parse_exclude
},
3529 { OPTION_CALLBACK
, 0, "include", NULL
, "path",
3530 "apply changes matching the given path",
3531 0, option_parse_include
},
3532 { OPTION_CALLBACK
, 'p', NULL
, NULL
, "num",
3533 "remove <num> leading slashes from traditional diff paths",
3534 0, option_parse_p
},
3535 OPT_BOOLEAN(0, "no-add", &no_add
,
3536 "ignore additions made by the patch"),
3537 OPT_BOOLEAN(0, "stat", &diffstat
,
3538 "instead of applying the patch, output diffstat for the input"),
3539 { OPTION_BOOLEAN
, 0, "allow-binary-replacement", &binary
,
3540 NULL
, "old option, now no-op",
3541 PARSE_OPT_HIDDEN
| PARSE_OPT_NOARG
},
3542 { OPTION_BOOLEAN
, 0, "binary", &binary
,
3543 NULL
, "old option, now no-op",
3544 PARSE_OPT_HIDDEN
| PARSE_OPT_NOARG
},
3545 OPT_BOOLEAN(0, "numstat", &numstat
,
3546 "shows number of added and deleted lines in decimal notation"),
3547 OPT_BOOLEAN(0, "summary", &summary
,
3548 "instead of applying the patch, output a summary for the input"),
3549 OPT_BOOLEAN(0, "check", &check
,
3550 "instead of applying the patch, see if the patch is applicable"),
3551 OPT_BOOLEAN(0, "index", &check_index
,
3552 "make sure the patch is applicable to the current index"),
3553 OPT_BOOLEAN(0, "cached", &cached
,
3554 "apply a patch without touching the working tree"),
3555 OPT_BOOLEAN(0, "apply", &force_apply
,
3556 "also apply the patch (use with --stat/--summary/--check)"),
3557 OPT_FILENAME(0, "build-fake-ancestor", &fake_ancestor
,
3558 "build a temporary index based on embedded index information"),
3559 { OPTION_CALLBACK
, 'z', NULL
, NULL
, NULL
,
3560 "paths are separated with NUL character",
3561 PARSE_OPT_NOARG
, option_parse_z
},
3562 OPT_INTEGER('C', NULL
, &p_context
,
3563 "ensure at least <n> lines of context match"),
3564 { OPTION_CALLBACK
, 0, "whitespace", &whitespace_option
, "action",
3565 "detect new or modified lines that have whitespace errors",
3566 0, option_parse_whitespace
},
3567 { OPTION_CALLBACK
, 0, "ignore-space-change", NULL
, NULL
,
3568 "ignore changes in whitespace when finding context",
3569 PARSE_OPT_NOARG
, option_parse_space_change
},
3570 { OPTION_CALLBACK
, 0, "ignore-whitespace", NULL
, NULL
,
3571 "ignore changes in whitespace when finding context",
3572 PARSE_OPT_NOARG
, option_parse_space_change
},
3573 OPT_BOOLEAN('R', "reverse", &apply_in_reverse
,
3574 "apply the patch in reverse"),
3575 OPT_BOOLEAN(0, "unidiff-zero", &unidiff_zero
,
3576 "don't expect at least one line of context"),
3577 OPT_BOOLEAN(0, "reject", &apply_with_reject
,
3578 "leave the rejected hunks in corresponding *.rej files"),
3579 OPT__VERBOSE(&apply_verbosely
),
3580 OPT_BIT(0, "inaccurate-eof", &options
,
3581 "tolerate incorrectly detected missing new-line at the end of file",
3583 OPT_BIT(0, "recount", &options
,
3584 "do not trust the line counts in the hunk headers",
3586 { OPTION_CALLBACK
, 0, "directory", NULL
, "root",
3587 "prepend <root> to all filenames",
3588 0, option_parse_directory
},
3592 prefix
= setup_git_directory_gently(&is_not_gitdir
);
3593 prefix_length
= prefix
? strlen(prefix
) : 0;
3594 git_config(git_apply_config
, NULL
);
3595 if (apply_default_whitespace
)
3596 parse_whitespace_option(apply_default_whitespace
);
3597 if (apply_default_ignorewhitespace
)
3598 parse_ignorewhitespace_option(apply_default_ignorewhitespace
);
3600 argc
= parse_options(argc
, argv
, prefix
, builtin_apply_options
,
3603 if (apply_with_reject
)
3604 apply
= apply_verbosely
= 1;
3605 if (!force_apply
&& (diffstat
|| numstat
|| summary
|| check
|| fake_ancestor
))
3607 if (check_index
&& is_not_gitdir
)
3608 die("--index outside a repository");
3611 die("--cached outside a repository");
3614 for (i
= 0; i
< argc
; i
++) {
3615 const char *arg
= argv
[i
];
3618 if (!strcmp(arg
, "-")) {
3619 errs
|= apply_patch(0, "<stdin>", options
);
3622 } else if (0 < prefix_length
)
3623 arg
= prefix_filename(prefix
, prefix_length
, arg
);
3625 fd
= open(arg
, O_RDONLY
);
3627 die_errno("can't open patch '%s'", arg
);
3629 set_default_whitespace_mode(whitespace_option
);
3630 errs
|= apply_patch(fd
, arg
, options
);
3633 set_default_whitespace_mode(whitespace_option
);
3635 errs
|= apply_patch(0, "<stdin>", options
);
3636 if (whitespace_error
) {
3637 if (squelch_whitespace_errors
&&
3638 squelch_whitespace_errors
< whitespace_error
) {
3640 whitespace_error
- squelch_whitespace_errors
;
3641 warning("squelched %d "
3642 "whitespace error%s",
3644 squelched
== 1 ? "" : "s");
3646 if (ws_error_action
== die_on_ws_error
)
3647 die("%d line%s add%s whitespace errors.",
3649 whitespace_error
== 1 ? "" : "s",
3650 whitespace_error
== 1 ? "s" : "");
3651 if (applied_after_fixing_ws
&& apply
)
3652 warning("%d line%s applied after"
3653 " fixing whitespace errors.",
3654 applied_after_fixing_ws
,
3655 applied_after_fixing_ws
== 1 ? "" : "s");
3656 else if (whitespace_error
)
3657 warning("%d line%s add%s whitespace errors.",
3659 whitespace_error
== 1 ? "" : "s",
3660 whitespace_error
== 1 ? "s" : "");
3664 if (write_cache(newfd
, active_cache
, active_nr
) ||
3665 commit_locked_index(&lock_file
))
3666 die("Unable to write new index file");