4 * Copyright (C) Linus Torvalds, 2005
6 * This applies patches on top of some (arbitrary) version of the SCM.
15 #include "xdiff-interface.h"
18 #include "parse-options.h"
23 static void git_apply_config(void)
25 git_config_get_string_const("apply.whitespace", &apply_default_whitespace
);
26 git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace
);
27 git_config(git_default_config
, NULL
);
30 static int parse_whitespace_option(struct apply_state
*state
, const char *option
)
33 state
->ws_error_action
= warn_on_ws_error
;
36 if (!strcmp(option
, "warn")) {
37 state
->ws_error_action
= warn_on_ws_error
;
40 if (!strcmp(option
, "nowarn")) {
41 state
->ws_error_action
= nowarn_ws_error
;
44 if (!strcmp(option
, "error")) {
45 state
->ws_error_action
= die_on_ws_error
;
48 if (!strcmp(option
, "error-all")) {
49 state
->ws_error_action
= die_on_ws_error
;
50 state
->squelch_whitespace_errors
= 0;
53 if (!strcmp(option
, "strip") || !strcmp(option
, "fix")) {
54 state
->ws_error_action
= correct_ws_error
;
57 return error(_("unrecognized whitespace option '%s'"), option
);
60 static int parse_ignorewhitespace_option(struct apply_state
*state
,
63 if (!option
|| !strcmp(option
, "no") ||
64 !strcmp(option
, "false") || !strcmp(option
, "never") ||
65 !strcmp(option
, "none")) {
66 state
->ws_ignore_action
= ignore_ws_none
;
69 if (!strcmp(option
, "change")) {
70 state
->ws_ignore_action
= ignore_ws_change
;
73 return error(_("unrecognized whitespace ignore option '%s'"), option
);
76 int init_apply_state(struct apply_state
*state
,
78 struct lock_file
*lock_file
)
80 memset(state
, 0, sizeof(*state
));
81 state
->prefix
= prefix
;
82 state
->prefix_length
= state
->prefix
? strlen(state
->prefix
) : 0;
83 state
->lock_file
= lock_file
;
86 state
->line_termination
= '\n';
88 state
->p_context
= UINT_MAX
;
89 state
->squelch_whitespace_errors
= 5;
90 state
->ws_error_action
= warn_on_ws_error
;
91 state
->ws_ignore_action
= ignore_ws_none
;
93 string_list_init(&state
->fn_table
, 0);
94 string_list_init(&state
->limit_by_name
, 0);
95 string_list_init(&state
->symlink_changes
, 0);
96 strbuf_init(&state
->root
, 0);
99 if (apply_default_whitespace
&& parse_whitespace_option(state
, apply_default_whitespace
))
101 if (apply_default_ignorewhitespace
&& parse_ignorewhitespace_option(state
, apply_default_ignorewhitespace
))
106 void clear_apply_state(struct apply_state
*state
)
108 string_list_clear(&state
->limit_by_name
, 0);
109 string_list_clear(&state
->symlink_changes
, 0);
110 strbuf_release(&state
->root
);
112 /* &state->fn_table is cleared at the end of apply_patch() */
115 static void mute_routine(const char *msg
, va_list params
)
120 int check_apply_state(struct apply_state
*state
, int force_apply
)
122 int is_not_gitdir
= !startup_info
->have_repository
;
124 if (state
->apply_with_reject
&& state
->threeway
)
125 return error(_("--reject and --3way cannot be used together."));
126 if (state
->cached
&& state
->threeway
)
127 return error(_("--cached and --3way cannot be used together."));
128 if (state
->threeway
) {
130 return error(_("--3way outside a repository"));
131 state
->check_index
= 1;
133 if (state
->apply_with_reject
) {
135 if (state
->apply_verbosity
== verbosity_normal
)
136 state
->apply_verbosity
= verbosity_verbose
;
138 if (!force_apply
&& (state
->diffstat
|| state
->numstat
|| state
->summary
|| state
->check
|| state
->fake_ancestor
))
140 if (state
->check_index
&& is_not_gitdir
)
141 return error(_("--index outside a repository"));
144 return error(_("--cached outside a repository"));
145 state
->check_index
= 1;
147 if (state
->check_index
)
148 state
->unsafe_paths
= 0;
149 if (!state
->lock_file
)
150 return error("BUG: state->lock_file should not be NULL");
152 if (state
->apply_verbosity
<= verbosity_silent
) {
153 state
->saved_error_routine
= get_error_routine();
154 state
->saved_warn_routine
= get_warn_routine();
155 set_error_routine(mute_routine
);
156 set_warn_routine(mute_routine
);
162 static void set_default_whitespace_mode(struct apply_state
*state
)
164 if (!state
->whitespace_option
&& !apply_default_whitespace
)
165 state
->ws_error_action
= (state
->apply
? warn_on_ws_error
: nowarn_ws_error
);
169 * This represents one "hunk" from a patch, starting with
170 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The
171 * patch text is pointed at by patch, and its byte length
172 * is stored in size. leading and trailing are the number
176 unsigned long leading
, trailing
;
177 unsigned long oldpos
, oldlines
;
178 unsigned long newpos
, newlines
;
180 * 'patch' is usually borrowed from buf in apply_patch(),
181 * but some codepaths store an allocated buffer.
184 unsigned free_patch
:1,
188 struct fragment
*next
;
192 * When dealing with a binary patch, we reuse "leading" field
193 * to store the type of the binary hunk, either deflated "delta"
194 * or deflated "literal".
196 #define binary_patch_method leading
197 #define BINARY_DELTA_DEFLATED 1
198 #define BINARY_LITERAL_DEFLATED 2
201 * This represents a "patch" to a file, both metainfo changes
202 * such as creation/deletion, filemode and content changes represented
203 * as a series of fragments.
206 char *new_name
, *old_name
, *def_name
;
207 unsigned int old_mode
, new_mode
;
208 int is_new
, is_delete
; /* -1 = unknown, 0 = false, 1 = true */
211 int lines_added
, lines_deleted
;
213 int extension_linenr
; /* first line specifying delete/new/rename/copy */
214 unsigned int is_toplevel_relative
:1;
215 unsigned int inaccurate_eof
:1;
216 unsigned int is_binary
:1;
217 unsigned int is_copy
:1;
218 unsigned int is_rename
:1;
219 unsigned int recount
:1;
220 unsigned int conflicted_threeway
:1;
221 unsigned int direct_to_threeway
:1;
222 struct fragment
*fragments
;
225 char old_sha1_prefix
[41];
226 char new_sha1_prefix
[41];
229 /* three-way fallback result */
230 struct object_id threeway_stage
[3];
233 static void free_fragment_list(struct fragment
*list
)
236 struct fragment
*next
= list
->next
;
237 if (list
->free_patch
)
238 free((char *)list
->patch
);
244 static void free_patch(struct patch
*patch
)
246 free_fragment_list(patch
->fragments
);
247 free(patch
->def_name
);
248 free(patch
->old_name
);
249 free(patch
->new_name
);
254 static void free_patch_list(struct patch
*list
)
257 struct patch
*next
= list
->next
;
264 * A line in a file, len-bytes long (includes the terminating LF,
265 * except for an incomplete line at the end if the file ends with
266 * one), and its contents hashes to 'hash'.
272 #define LINE_COMMON 1
273 #define LINE_PATCHED 2
277 * This represents a "file", which is an array of "lines".
284 struct line
*line_allocated
;
288 static uint32_t hash_line(const char *cp
, size_t len
)
292 for (i
= 0, h
= 0; i
< len
; i
++) {
293 if (!isspace(cp
[i
])) {
294 h
= h
* 3 + (cp
[i
] & 0xff);
301 * Compare lines s1 of length n1 and s2 of length n2, ignoring
302 * whitespace difference. Returns 1 if they match, 0 otherwise
304 static int fuzzy_matchlines(const char *s1
, size_t n1
,
305 const char *s2
, size_t n2
)
307 const char *last1
= s1
+ n1
- 1;
308 const char *last2
= s2
+ n2
- 1;
311 /* ignore line endings */
312 while ((*last1
== '\r') || (*last1
== '\n'))
314 while ((*last2
== '\r') || (*last2
== '\n'))
317 /* skip leading whitespaces, if both begin with whitespace */
318 if (s1
<= last1
&& s2
<= last2
&& isspace(*s1
) && isspace(*s2
)) {
319 while (isspace(*s1
) && (s1
<= last1
))
321 while (isspace(*s2
) && (s2
<= last2
))
324 /* early return if both lines are empty */
325 if ((s1
> last1
) && (s2
> last2
))
328 result
= *s1
++ - *s2
++;
330 * Skip whitespace inside. We check for whitespace on
331 * both buffers because we don't want "a b" to match
334 if (isspace(*s1
) && isspace(*s2
)) {
335 while (isspace(*s1
) && s1
<= last1
)
337 while (isspace(*s2
) && s2
<= last2
)
341 * If we reached the end on one side only,
345 ((s2
> last2
) && (s1
<= last1
)) ||
346 ((s1
> last1
) && (s2
<= last2
)))
348 if ((s1
> last1
) && (s2
> last2
))
355 static void add_line_info(struct image
*img
, const char *bol
, size_t len
, unsigned flag
)
357 ALLOC_GROW(img
->line_allocated
, img
->nr
+ 1, img
->alloc
);
358 img
->line_allocated
[img
->nr
].len
= len
;
359 img
->line_allocated
[img
->nr
].hash
= hash_line(bol
, len
);
360 img
->line_allocated
[img
->nr
].flag
= flag
;
365 * "buf" has the file contents to be patched (read from various sources).
366 * attach it to "image" and add line-based index to it.
367 * "image" now owns the "buf".
369 static void prepare_image(struct image
*image
, char *buf
, size_t len
,
370 int prepare_linetable
)
374 memset(image
, 0, sizeof(*image
));
378 if (!prepare_linetable
)
381 ep
= image
->buf
+ image
->len
;
385 for (next
= cp
; next
< ep
&& *next
!= '\n'; next
++)
389 add_line_info(image
, cp
, next
- cp
, 0);
392 image
->line
= image
->line_allocated
;
395 static void clear_image(struct image
*image
)
398 free(image
->line_allocated
);
399 memset(image
, 0, sizeof(*image
));
402 /* fmt must contain _one_ %s and no other substitution */
403 static void say_patch_name(FILE *output
, const char *fmt
, struct patch
*patch
)
405 struct strbuf sb
= STRBUF_INIT
;
407 if (patch
->old_name
&& patch
->new_name
&&
408 strcmp(patch
->old_name
, patch
->new_name
)) {
409 quote_c_style(patch
->old_name
, &sb
, NULL
, 0);
410 strbuf_addstr(&sb
, " => ");
411 quote_c_style(patch
->new_name
, &sb
, NULL
, 0);
413 const char *n
= patch
->new_name
;
416 quote_c_style(n
, &sb
, NULL
, 0);
418 fprintf(output
, fmt
, sb
.buf
);
425 static int read_patch_file(struct strbuf
*sb
, int fd
)
427 if (strbuf_read(sb
, fd
, 0) < 0)
428 return error_errno("git apply: failed to read");
431 * Make sure that we have some slop in the buffer
432 * so that we can do speculative "memcmp" etc, and
433 * see to it that it is NUL-filled.
435 strbuf_grow(sb
, SLOP
);
436 memset(sb
->buf
+ sb
->len
, 0, SLOP
);
440 static unsigned long linelen(const char *buffer
, unsigned long size
)
442 unsigned long len
= 0;
445 if (*buffer
++ == '\n')
451 static int is_dev_null(const char *str
)
453 return skip_prefix(str
, "/dev/null", &str
) && isspace(*str
);
459 static int name_terminate(int c
, int terminate
)
461 if (c
== ' ' && !(terminate
& TERM_SPACE
))
463 if (c
== '\t' && !(terminate
& TERM_TAB
))
469 /* remove double slashes to make --index work with such filenames */
470 static char *squash_slash(char *name
)
478 if ((name
[j
++] = name
[i
++]) == '/')
479 while (name
[i
] == '/')
486 static char *find_name_gnu(struct apply_state
*state
,
491 struct strbuf name
= STRBUF_INIT
;
495 * Proposed "new-style" GNU patch/diff format; see
496 * http://marc.info/?l=git&m=112927316408690&w=2
498 if (unquote_c_style(&name
, line
, NULL
)) {
499 strbuf_release(&name
);
503 for (cp
= name
.buf
; p_value
; p_value
--) {
504 cp
= strchr(cp
, '/');
506 strbuf_release(&name
);
512 strbuf_remove(&name
, 0, cp
- name
.buf
);
514 strbuf_insert(&name
, 0, state
->root
.buf
, state
->root
.len
);
515 return squash_slash(strbuf_detach(&name
, NULL
));
518 static size_t sane_tz_len(const char *line
, size_t len
)
522 if (len
< strlen(" +0500") || line
[len
-strlen(" +0500")] != ' ')
524 tz
= line
+ len
- strlen(" +0500");
526 if (tz
[1] != '+' && tz
[1] != '-')
529 for (p
= tz
+ 2; p
!= line
+ len
; p
++)
533 return line
+ len
- tz
;
536 static size_t tz_with_colon_len(const char *line
, size_t len
)
540 if (len
< strlen(" +08:00") || line
[len
- strlen(":00")] != ':')
542 tz
= line
+ len
- strlen(" +08:00");
544 if (tz
[0] != ' ' || (tz
[1] != '+' && tz
[1] != '-'))
547 if (!isdigit(*p
++) || !isdigit(*p
++) || *p
++ != ':' ||
548 !isdigit(*p
++) || !isdigit(*p
++))
551 return line
+ len
- tz
;
554 static size_t date_len(const char *line
, size_t len
)
556 const char *date
, *p
;
558 if (len
< strlen("72-02-05") || line
[len
-strlen("-05")] != '-')
560 p
= date
= line
+ len
- strlen("72-02-05");
562 if (!isdigit(*p
++) || !isdigit(*p
++) || *p
++ != '-' ||
563 !isdigit(*p
++) || !isdigit(*p
++) || *p
++ != '-' ||
564 !isdigit(*p
++) || !isdigit(*p
++)) /* Not a date. */
567 if (date
- line
>= strlen("19") &&
568 isdigit(date
[-1]) && isdigit(date
[-2])) /* 4-digit year */
569 date
-= strlen("19");
571 return line
+ len
- date
;
574 static size_t short_time_len(const char *line
, size_t len
)
576 const char *time
, *p
;
578 if (len
< strlen(" 07:01:32") || line
[len
-strlen(":32")] != ':')
580 p
= time
= line
+ len
- strlen(" 07:01:32");
582 /* Permit 1-digit hours? */
584 !isdigit(*p
++) || !isdigit(*p
++) || *p
++ != ':' ||
585 !isdigit(*p
++) || !isdigit(*p
++) || *p
++ != ':' ||
586 !isdigit(*p
++) || !isdigit(*p
++)) /* Not a time. */
589 return line
+ len
- time
;
592 static size_t fractional_time_len(const char *line
, size_t len
)
597 /* Expected format: 19:41:17.620000023 */
598 if (!len
|| !isdigit(line
[len
- 1]))
602 /* Fractional seconds. */
603 while (p
> line
&& isdigit(*p
))
608 /* Hours, minutes, and whole seconds. */
609 n
= short_time_len(line
, p
- line
);
613 return line
+ len
- p
+ n
;
616 static size_t trailing_spaces_len(const char *line
, size_t len
)
620 /* Expected format: ' ' x (1 or more) */
621 if (!len
|| line
[len
- 1] != ' ')
628 return line
+ len
- (p
+ 1);
635 static size_t diff_timestamp_len(const char *line
, size_t len
)
637 const char *end
= line
+ len
;
641 * Posix: 2010-07-05 19:41:17
642 * GNU: 2010-07-05 19:41:17.620000023 -0500
645 if (!isdigit(end
[-1]))
648 n
= sane_tz_len(line
, end
- line
);
650 n
= tz_with_colon_len(line
, end
- line
);
653 n
= short_time_len(line
, end
- line
);
655 n
= fractional_time_len(line
, end
- line
);
658 n
= date_len(line
, end
- line
);
659 if (!n
) /* No date. Too bad. */
663 if (end
== line
) /* No space before date. */
665 if (end
[-1] == '\t') { /* Success! */
667 return line
+ len
- end
;
669 if (end
[-1] != ' ') /* No space before date. */
672 /* Whitespace damage. */
673 end
-= trailing_spaces_len(line
, end
- line
);
674 return line
+ len
- end
;
677 static char *find_name_common(struct apply_state
*state
,
685 const char *start
= NULL
;
689 while (line
!= end
) {
692 if (!end
&& isspace(c
)) {
695 if (name_terminate(c
, terminate
))
699 if (c
== '/' && !--p_value
)
703 return squash_slash(xstrdup_or_null(def
));
706 return squash_slash(xstrdup_or_null(def
));
709 * Generally we prefer the shorter name, especially
710 * if the other one is just a variation of that with
711 * something else tacked on to the end (ie "file.orig"
715 int deflen
= strlen(def
);
716 if (deflen
< len
&& !strncmp(start
, def
, deflen
))
717 return squash_slash(xstrdup(def
));
720 if (state
->root
.len
) {
721 char *ret
= xstrfmt("%s%.*s", state
->root
.buf
, len
, start
);
722 return squash_slash(ret
);
725 return squash_slash(xmemdupz(start
, len
));
728 static char *find_name(struct apply_state
*state
,
735 char *name
= find_name_gnu(state
, line
, def
, p_value
);
740 return find_name_common(state
, line
, def
, p_value
, NULL
, terminate
);
743 static char *find_name_traditional(struct apply_state
*state
,
752 char *name
= find_name_gnu(state
, line
, def
, p_value
);
757 len
= strchrnul(line
, '\n') - line
;
758 date_len
= diff_timestamp_len(line
, len
);
760 return find_name_common(state
, line
, def
, p_value
, NULL
, TERM_TAB
);
763 return find_name_common(state
, line
, def
, p_value
, line
+ len
, 0);
766 static int count_slashes(const char *cp
)
778 * Given the string after "--- " or "+++ ", guess the appropriate
779 * p_value for the given patch.
781 static int guess_p_value(struct apply_state
*state
, const char *nameline
)
786 if (is_dev_null(nameline
))
788 name
= find_name_traditional(state
, nameline
, NULL
, 0);
791 cp
= strchr(name
, '/');
794 else if (state
->prefix
) {
796 * Does it begin with "a/$our-prefix" and such? Then this is
797 * very likely to apply to our directory.
799 if (!strncmp(name
, state
->prefix
, state
->prefix_length
))
800 val
= count_slashes(state
->prefix
);
803 if (!strncmp(cp
, state
->prefix
, state
->prefix_length
))
804 val
= count_slashes(state
->prefix
) + 1;
812 * Does the ---/+++ line have the POSIX timestamp after the last HT?
813 * GNU diff puts epoch there to signal a creation/deletion event. Is
814 * this such a timestamp?
816 static int has_epoch_timestamp(const char *nameline
)
819 * We are only interested in epoch timestamp; any non-zero
820 * fraction cannot be one, hence "(\.0+)?" in the regexp below.
821 * For the same reason, the date must be either 1969-12-31 or
822 * 1970-01-01, and the seconds part must be "00".
824 const char stamp_regexp
[] =
825 "^(1969-12-31|1970-01-01)"
827 "[0-2][0-9]:[0-5][0-9]:00(\\.0+)?"
829 "([-+][0-2][0-9]:?[0-5][0-9])\n";
830 const char *timestamp
= NULL
, *cp
, *colon
;
831 static regex_t
*stamp
;
837 for (cp
= nameline
; *cp
!= '\n'; cp
++) {
844 stamp
= xmalloc(sizeof(*stamp
));
845 if (regcomp(stamp
, stamp_regexp
, REG_EXTENDED
)) {
846 warning(_("Cannot prepare timestamp regexp %s"),
852 status
= regexec(stamp
, timestamp
, ARRAY_SIZE(m
), m
, 0);
854 if (status
!= REG_NOMATCH
)
855 warning(_("regexec returned %d for input: %s"),
860 zoneoffset
= strtol(timestamp
+ m
[3].rm_so
+ 1, (char **) &colon
, 10);
862 zoneoffset
= zoneoffset
* 60 + strtol(colon
+ 1, NULL
, 10);
864 zoneoffset
= (zoneoffset
/ 100) * 60 + (zoneoffset
% 100);
865 if (timestamp
[m
[3].rm_so
] == '-')
866 zoneoffset
= -zoneoffset
;
869 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31
870 * (west of GMT) or 1970-01-01 (east of GMT)
872 if ((zoneoffset
< 0 && memcmp(timestamp
, "1969-12-31", 10)) ||
873 (0 <= zoneoffset
&& memcmp(timestamp
, "1970-01-01", 10)))
876 hourminute
= (strtol(timestamp
+ 11, NULL
, 10) * 60 +
877 strtol(timestamp
+ 14, NULL
, 10) -
880 return ((zoneoffset
< 0 && hourminute
== 1440) ||
881 (0 <= zoneoffset
&& !hourminute
));
885 * Get the name etc info from the ---/+++ lines of a traditional patch header
887 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
888 * files, we can happily check the index for a match, but for creating a
889 * new file we should try to match whatever "patch" does. I have no idea.
891 static int parse_traditional_patch(struct apply_state
*state
,
898 first
+= 4; /* skip "--- " */
899 second
+= 4; /* skip "+++ " */
900 if (!state
->p_value_known
) {
902 p
= guess_p_value(state
, first
);
903 q
= guess_p_value(state
, second
);
905 if (0 <= p
&& p
== q
) {
907 state
->p_value_known
= 1;
910 if (is_dev_null(first
)) {
912 patch
->is_delete
= 0;
913 name
= find_name_traditional(state
, second
, NULL
, state
->p_value
);
914 patch
->new_name
= name
;
915 } else if (is_dev_null(second
)) {
917 patch
->is_delete
= 1;
918 name
= find_name_traditional(state
, first
, NULL
, state
->p_value
);
919 patch
->old_name
= name
;
922 first_name
= find_name_traditional(state
, first
, NULL
, state
->p_value
);
923 name
= find_name_traditional(state
, second
, first_name
, state
->p_value
);
925 if (has_epoch_timestamp(first
)) {
927 patch
->is_delete
= 0;
928 patch
->new_name
= name
;
929 } else if (has_epoch_timestamp(second
)) {
931 patch
->is_delete
= 1;
932 patch
->old_name
= name
;
934 patch
->old_name
= name
;
935 patch
->new_name
= xstrdup_or_null(name
);
939 return error(_("unable to find filename in patch at line %d"), state
->linenr
);
944 static int gitdiff_hdrend(struct apply_state
*state
,
952 * We're anal about diff header consistency, to make
953 * sure that we don't end up having strange ambiguous
954 * patches floating around.
956 * As a result, gitdiff_{old|new}name() will check
957 * their names against any previous information, just
960 #define DIFF_OLD_NAME 0
961 #define DIFF_NEW_NAME 1
963 static int gitdiff_verify_name(struct apply_state
*state
,
969 if (!*name
&& !isnull
) {
970 *name
= find_name(state
, line
, NULL
, state
->p_value
, TERM_TAB
);
975 int len
= strlen(*name
);
978 return error(_("git apply: bad git-diff - expected /dev/null, got %s on line %d"),
979 *name
, state
->linenr
);
980 another
= find_name(state
, line
, NULL
, state
->p_value
, TERM_TAB
);
981 if (!another
|| memcmp(another
, *name
, len
+ 1)) {
983 return error((side
== DIFF_NEW_NAME
) ?
984 _("git apply: bad git-diff - inconsistent new filename on line %d") :
985 _("git apply: bad git-diff - inconsistent old filename on line %d"), state
->linenr
);
989 /* expect "/dev/null" */
990 if (memcmp("/dev/null", line
, 9) || line
[9] != '\n')
991 return error(_("git apply: bad git-diff - expected /dev/null on line %d"), state
->linenr
);
997 static int gitdiff_oldname(struct apply_state
*state
,
1001 return gitdiff_verify_name(state
, line
,
1002 patch
->is_new
, &patch
->old_name
,
1006 static int gitdiff_newname(struct apply_state
*state
,
1008 struct patch
*patch
)
1010 return gitdiff_verify_name(state
, line
,
1011 patch
->is_delete
, &patch
->new_name
,
1015 static int parse_mode_line(const char *line
, int linenr
, unsigned int *mode
)
1018 *mode
= strtoul(line
, &end
, 8);
1019 if (end
== line
|| !isspace(*end
))
1020 return error(_("invalid mode on line %d: %s"), linenr
, line
);
1024 static int gitdiff_oldmode(struct apply_state
*state
,
1026 struct patch
*patch
)
1028 return parse_mode_line(line
, state
->linenr
, &patch
->old_mode
);
1031 static int gitdiff_newmode(struct apply_state
*state
,
1033 struct patch
*patch
)
1035 return parse_mode_line(line
, state
->linenr
, &patch
->new_mode
);
1038 static int gitdiff_delete(struct apply_state
*state
,
1040 struct patch
*patch
)
1042 patch
->is_delete
= 1;
1043 free(patch
->old_name
);
1044 patch
->old_name
= xstrdup_or_null(patch
->def_name
);
1045 return gitdiff_oldmode(state
, line
, patch
);
1048 static int gitdiff_newfile(struct apply_state
*state
,
1050 struct patch
*patch
)
1053 free(patch
->new_name
);
1054 patch
->new_name
= xstrdup_or_null(patch
->def_name
);
1055 return gitdiff_newmode(state
, line
, patch
);
1058 static int gitdiff_copysrc(struct apply_state
*state
,
1060 struct patch
*patch
)
1063 free(patch
->old_name
);
1064 patch
->old_name
= find_name(state
, line
, NULL
, state
->p_value
? state
->p_value
- 1 : 0, 0);
1068 static int gitdiff_copydst(struct apply_state
*state
,
1070 struct patch
*patch
)
1073 free(patch
->new_name
);
1074 patch
->new_name
= find_name(state
, line
, NULL
, state
->p_value
? state
->p_value
- 1 : 0, 0);
1078 static int gitdiff_renamesrc(struct apply_state
*state
,
1080 struct patch
*patch
)
1082 patch
->is_rename
= 1;
1083 free(patch
->old_name
);
1084 patch
->old_name
= find_name(state
, line
, NULL
, state
->p_value
? state
->p_value
- 1 : 0, 0);
1088 static int gitdiff_renamedst(struct apply_state
*state
,
1090 struct patch
*patch
)
1092 patch
->is_rename
= 1;
1093 free(patch
->new_name
);
1094 patch
->new_name
= find_name(state
, line
, NULL
, state
->p_value
? state
->p_value
- 1 : 0, 0);
1098 static int gitdiff_similarity(struct apply_state
*state
,
1100 struct patch
*patch
)
1102 unsigned long val
= strtoul(line
, NULL
, 10);
1108 static int gitdiff_dissimilarity(struct apply_state
*state
,
1110 struct patch
*patch
)
1112 unsigned long val
= strtoul(line
, NULL
, 10);
1118 static int gitdiff_index(struct apply_state
*state
,
1120 struct patch
*patch
)
1123 * index line is N hexadecimal, "..", N hexadecimal,
1124 * and optional space with octal mode.
1126 const char *ptr
, *eol
;
1129 ptr
= strchr(line
, '.');
1130 if (!ptr
|| ptr
[1] != '.' || 40 < ptr
- line
)
1133 memcpy(patch
->old_sha1_prefix
, line
, len
);
1134 patch
->old_sha1_prefix
[len
] = 0;
1137 ptr
= strchr(line
, ' ');
1138 eol
= strchrnul(line
, '\n');
1140 if (!ptr
|| eol
< ptr
)
1146 memcpy(patch
->new_sha1_prefix
, line
, len
);
1147 patch
->new_sha1_prefix
[len
] = 0;
1149 return gitdiff_oldmode(state
, ptr
+ 1, patch
);
1154 * This is normal for a diff that doesn't change anything: we'll fall through
1155 * into the next diff. Tell the parser to break out.
1157 static int gitdiff_unrecognized(struct apply_state
*state
,
1159 struct patch
*patch
)
1165 * Skip p_value leading components from "line"; as we do not accept
1166 * absolute paths, return NULL in that case.
1168 static const char *skip_tree_prefix(struct apply_state
*state
,
1175 if (!state
->p_value
)
1176 return (llen
&& line
[0] == '/') ? NULL
: line
;
1178 nslash
= state
->p_value
;
1179 for (i
= 0; i
< llen
; i
++) {
1181 if (ch
== '/' && --nslash
<= 0)
1182 return (i
== 0) ? NULL
: &line
[i
+ 1];
1188 * This is to extract the same name that appears on "diff --git"
1189 * line. We do not find and return anything if it is a rename
1190 * patch, and it is OK because we will find the name elsewhere.
1191 * We need to reliably find name only when it is mode-change only,
1192 * creation or deletion of an empty file. In any of these cases,
1193 * both sides are the same name under a/ and b/ respectively.
1195 static char *git_header_name(struct apply_state
*state
,
1200 const char *second
= NULL
;
1201 size_t len
, line_len
;
1203 line
+= strlen("diff --git ");
1204 llen
-= strlen("diff --git ");
1208 struct strbuf first
= STRBUF_INIT
;
1209 struct strbuf sp
= STRBUF_INIT
;
1211 if (unquote_c_style(&first
, line
, &second
))
1212 goto free_and_fail1
;
1214 /* strip the a/b prefix including trailing slash */
1215 cp
= skip_tree_prefix(state
, first
.buf
, first
.len
);
1217 goto free_and_fail1
;
1218 strbuf_remove(&first
, 0, cp
- first
.buf
);
1221 * second points at one past closing dq of name.
1222 * find the second name.
1224 while ((second
< line
+ llen
) && isspace(*second
))
1227 if (line
+ llen
<= second
)
1228 goto free_and_fail1
;
1229 if (*second
== '"') {
1230 if (unquote_c_style(&sp
, second
, NULL
))
1231 goto free_and_fail1
;
1232 cp
= skip_tree_prefix(state
, sp
.buf
, sp
.len
);
1234 goto free_and_fail1
;
1235 /* They must match, otherwise ignore */
1236 if (strcmp(cp
, first
.buf
))
1237 goto free_and_fail1
;
1238 strbuf_release(&sp
);
1239 return strbuf_detach(&first
, NULL
);
1242 /* unquoted second */
1243 cp
= skip_tree_prefix(state
, second
, line
+ llen
- second
);
1245 goto free_and_fail1
;
1246 if (line
+ llen
- cp
!= first
.len
||
1247 memcmp(first
.buf
, cp
, first
.len
))
1248 goto free_and_fail1
;
1249 return strbuf_detach(&first
, NULL
);
1252 strbuf_release(&first
);
1253 strbuf_release(&sp
);
1257 /* unquoted first name */
1258 name
= skip_tree_prefix(state
, line
, llen
);
1263 * since the first name is unquoted, a dq if exists must be
1264 * the beginning of the second name.
1266 for (second
= name
; second
< line
+ llen
; second
++) {
1267 if (*second
== '"') {
1268 struct strbuf sp
= STRBUF_INIT
;
1271 if (unquote_c_style(&sp
, second
, NULL
))
1272 goto free_and_fail2
;
1274 np
= skip_tree_prefix(state
, sp
.buf
, sp
.len
);
1276 goto free_and_fail2
;
1278 len
= sp
.buf
+ sp
.len
- np
;
1279 if (len
< second
- name
&&
1280 !strncmp(np
, name
, len
) &&
1281 isspace(name
[len
])) {
1283 strbuf_remove(&sp
, 0, np
- sp
.buf
);
1284 return strbuf_detach(&sp
, NULL
);
1288 strbuf_release(&sp
);
1294 * Accept a name only if it shows up twice, exactly the same
1297 second
= strchr(name
, '\n');
1300 line_len
= second
- name
;
1301 for (len
= 0 ; ; len
++) {
1302 switch (name
[len
]) {
1307 case '\t': case ' ':
1309 * Is this the separator between the preimage
1310 * and the postimage pathname? Again, we are
1311 * only interested in the case where there is
1312 * no rename, as this is only to set def_name
1313 * and a rename patch has the names elsewhere
1314 * in an unambiguous form.
1317 return NULL
; /* no postimage name */
1318 second
= skip_tree_prefix(state
, name
+ len
+ 1,
1319 line_len
- (len
+ 1));
1323 * Does len bytes starting at "name" and "second"
1324 * (that are separated by one HT or SP we just
1325 * found) exactly match?
1327 if (second
[len
] == '\n' && !strncmp(name
, second
, len
))
1328 return xmemdupz(name
, len
);
1333 static int check_header_line(struct apply_state
*state
, struct patch
*patch
)
1335 int extensions
= (patch
->is_delete
== 1) + (patch
->is_new
== 1) +
1336 (patch
->is_rename
== 1) + (patch
->is_copy
== 1);
1338 return error(_("inconsistent header lines %d and %d"),
1339 patch
->extension_linenr
, state
->linenr
);
1340 if (extensions
&& !patch
->extension_linenr
)
1341 patch
->extension_linenr
= state
->linenr
;
1345 /* Verify that we recognize the lines following a git header */
1346 static int parse_git_header(struct apply_state
*state
,
1350 struct patch
*patch
)
1352 unsigned long offset
;
1354 /* A git diff has explicit new/delete information, so we don't guess */
1356 patch
->is_delete
= 0;
1359 * Some things may not have the old name in the
1360 * rest of the headers anywhere (pure mode changes,
1361 * or removing or adding empty files), so we get
1362 * the default name from the header.
1364 patch
->def_name
= git_header_name(state
, line
, len
);
1365 if (patch
->def_name
&& state
->root
.len
) {
1366 char *s
= xstrfmt("%s%s", state
->root
.buf
, patch
->def_name
);
1367 free(patch
->def_name
);
1368 patch
->def_name
= s
;
1374 for (offset
= len
; size
> 0 ; offset
+= len
, size
-= len
, line
+= len
, state
->linenr
++) {
1375 static const struct opentry
{
1377 int (*fn
)(struct apply_state
*, const char *, struct patch
*);
1379 { "@@ -", gitdiff_hdrend
},
1380 { "--- ", gitdiff_oldname
},
1381 { "+++ ", gitdiff_newname
},
1382 { "old mode ", gitdiff_oldmode
},
1383 { "new mode ", gitdiff_newmode
},
1384 { "deleted file mode ", gitdiff_delete
},
1385 { "new file mode ", gitdiff_newfile
},
1386 { "copy from ", gitdiff_copysrc
},
1387 { "copy to ", gitdiff_copydst
},
1388 { "rename old ", gitdiff_renamesrc
},
1389 { "rename new ", gitdiff_renamedst
},
1390 { "rename from ", gitdiff_renamesrc
},
1391 { "rename to ", gitdiff_renamedst
},
1392 { "similarity index ", gitdiff_similarity
},
1393 { "dissimilarity index ", gitdiff_dissimilarity
},
1394 { "index ", gitdiff_index
},
1395 { "", gitdiff_unrecognized
},
1399 len
= linelen(line
, size
);
1400 if (!len
|| line
[len
-1] != '\n')
1402 for (i
= 0; i
< ARRAY_SIZE(optable
); i
++) {
1403 const struct opentry
*p
= optable
+ i
;
1404 int oplen
= strlen(p
->str
);
1406 if (len
< oplen
|| memcmp(p
->str
, line
, oplen
))
1408 res
= p
->fn(state
, line
+ oplen
, patch
);
1411 if (check_header_line(state
, patch
))
1422 static int parse_num(const char *line
, unsigned long *p
)
1426 if (!isdigit(*line
))
1428 *p
= strtoul(line
, &ptr
, 10);
1432 static int parse_range(const char *line
, int len
, int offset
, const char *expect
,
1433 unsigned long *p1
, unsigned long *p2
)
1437 if (offset
< 0 || offset
>= len
)
1442 digits
= parse_num(line
, p1
);
1452 digits
= parse_num(line
+1, p2
);
1461 ex
= strlen(expect
);
1464 if (memcmp(line
, expect
, ex
))
1470 static void recount_diff(const char *line
, int size
, struct fragment
*fragment
)
1472 int oldlines
= 0, newlines
= 0, ret
= 0;
1475 warning("recount: ignore empty hunk");
1480 int len
= linelen(line
, size
);
1488 case ' ': case '\n':
1500 ret
= size
< 3 || !starts_with(line
, "@@ ");
1503 ret
= size
< 5 || !starts_with(line
, "diff ");
1510 warning(_("recount: unexpected line: %.*s"),
1511 (int)linelen(line
, size
), line
);
1516 fragment
->oldlines
= oldlines
;
1517 fragment
->newlines
= newlines
;
1521 * Parse a unified diff fragment header of the
1522 * form "@@ -a,b +c,d @@"
1524 static int parse_fragment_header(const char *line
, int len
, struct fragment
*fragment
)
1528 if (!len
|| line
[len
-1] != '\n')
1531 /* Figure out the number of lines in a fragment */
1532 offset
= parse_range(line
, len
, 4, " +", &fragment
->oldpos
, &fragment
->oldlines
);
1533 offset
= parse_range(line
, len
, offset
, " @@", &fragment
->newpos
, &fragment
->newlines
);
1539 * Find file diff header
1542 * -1 if no header was found
1543 * -128 in case of error
1544 * the size of the header in bytes (called "offset") otherwise
1546 static int find_header(struct apply_state
*state
,
1550 struct patch
*patch
)
1552 unsigned long offset
, len
;
1554 patch
->is_toplevel_relative
= 0;
1555 patch
->is_rename
= patch
->is_copy
= 0;
1556 patch
->is_new
= patch
->is_delete
= -1;
1557 patch
->old_mode
= patch
->new_mode
= 0;
1558 patch
->old_name
= patch
->new_name
= NULL
;
1559 for (offset
= 0; size
> 0; offset
+= len
, size
-= len
, line
+= len
, state
->linenr
++) {
1560 unsigned long nextlen
;
1562 len
= linelen(line
, size
);
1566 /* Testing this early allows us to take a few shortcuts.. */
1571 * Make sure we don't find any unconnected patch fragments.
1572 * That's a sign that we didn't find a header, and that a
1573 * patch has become corrupted/broken up.
1575 if (!memcmp("@@ -", line
, 4)) {
1576 struct fragment dummy
;
1577 if (parse_fragment_header(line
, len
, &dummy
) < 0)
1579 error(_("patch fragment without header at line %d: %.*s"),
1580 state
->linenr
, (int)len
-1, line
);
1588 * Git patch? It might not have a real patch, just a rename
1589 * or mode change, so we handle that specially
1591 if (!memcmp("diff --git ", line
, 11)) {
1592 int git_hdr_len
= parse_git_header(state
, line
, len
, size
, patch
);
1593 if (git_hdr_len
< 0)
1595 if (git_hdr_len
<= len
)
1597 if (!patch
->old_name
&& !patch
->new_name
) {
1598 if (!patch
->def_name
) {
1599 error(Q_("git diff header lacks filename information when removing "
1600 "%d leading pathname component (line %d)",
1601 "git diff header lacks filename information when removing "
1602 "%d leading pathname components (line %d)",
1604 state
->p_value
, state
->linenr
);
1607 patch
->old_name
= xstrdup(patch
->def_name
);
1608 patch
->new_name
= xstrdup(patch
->def_name
);
1610 if ((!patch
->new_name
&& !patch
->is_delete
) ||
1611 (!patch
->old_name
&& !patch
->is_new
)) {
1612 error(_("git diff header lacks filename information "
1613 "(line %d)"), state
->linenr
);
1616 patch
->is_toplevel_relative
= 1;
1617 *hdrsize
= git_hdr_len
;
1621 /* --- followed by +++ ? */
1622 if (memcmp("--- ", line
, 4) || memcmp("+++ ", line
+ len
, 4))
1626 * We only accept unified patches, so we want it to
1627 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
1628 * minimum ("@@ -0,0 +1 @@\n" is the shortest).
1630 nextlen
= linelen(line
+ len
, size
- len
);
1631 if (size
< nextlen
+ 14 || memcmp("@@ -", line
+ len
+ nextlen
, 4))
1634 /* Ok, we'll consider it a patch */
1635 if (parse_traditional_patch(state
, line
, line
+len
, patch
))
1637 *hdrsize
= len
+ nextlen
;
1644 static void record_ws_error(struct apply_state
*state
,
1655 state
->whitespace_error
++;
1656 if (state
->squelch_whitespace_errors
&&
1657 state
->squelch_whitespace_errors
< state
->whitespace_error
)
1660 err
= whitespace_error_string(result
);
1661 if (state
->apply_verbosity
> verbosity_silent
)
1662 fprintf(stderr
, "%s:%d: %s.\n%.*s\n",
1663 state
->patch_input_file
, linenr
, err
, len
, line
);
1667 static void check_whitespace(struct apply_state
*state
,
1672 unsigned result
= ws_check(line
+ 1, len
- 1, ws_rule
);
1674 record_ws_error(state
, result
, line
+ 1, len
- 2, state
->linenr
);
1678 * Parse a unified diff. Note that this really needs to parse each
1679 * fragment separately, since the only way to know the difference
1680 * between a "---" that is part of a patch, and a "---" that starts
1681 * the next patch is to look at the line counts..
1683 static int parse_fragment(struct apply_state
*state
,
1686 struct patch
*patch
,
1687 struct fragment
*fragment
)
1690 int len
= linelen(line
, size
), offset
;
1691 unsigned long oldlines
, newlines
;
1692 unsigned long leading
, trailing
;
1694 offset
= parse_fragment_header(line
, len
, fragment
);
1697 if (offset
> 0 && patch
->recount
)
1698 recount_diff(line
+ offset
, size
- offset
, fragment
);
1699 oldlines
= fragment
->oldlines
;
1700 newlines
= fragment
->newlines
;
1704 /* Parse the thing.. */
1708 added
= deleted
= 0;
1711 offset
+= len
, size
-= len
, line
+= len
, state
->linenr
++) {
1712 if (!oldlines
&& !newlines
)
1714 len
= linelen(line
, size
);
1715 if (!len
|| line
[len
-1] != '\n')
1720 case '\n': /* newer GNU diff, an empty context line */
1724 if (!deleted
&& !added
)
1727 if (!state
->apply_in_reverse
&&
1728 state
->ws_error_action
== correct_ws_error
)
1729 check_whitespace(state
, line
, len
, patch
->ws_rule
);
1732 if (state
->apply_in_reverse
&&
1733 state
->ws_error_action
!= nowarn_ws_error
)
1734 check_whitespace(state
, line
, len
, patch
->ws_rule
);
1740 if (!state
->apply_in_reverse
&&
1741 state
->ws_error_action
!= nowarn_ws_error
)
1742 check_whitespace(state
, line
, len
, patch
->ws_rule
);
1749 * We allow "\ No newline at end of file". Depending
1750 * on locale settings when the patch was produced we
1751 * don't know what this line looks like. The only
1752 * thing we do know is that it begins with "\ ".
1753 * Checking for 12 is just for sanity check -- any
1754 * l10n of "\ No newline..." is at least that long.
1757 if (len
< 12 || memcmp(line
, "\\ ", 2))
1762 if (oldlines
|| newlines
)
1764 if (!deleted
&& !added
)
1767 fragment
->leading
= leading
;
1768 fragment
->trailing
= trailing
;
1771 * If a fragment ends with an incomplete line, we failed to include
1772 * it in the above loop because we hit oldlines == newlines == 0
1775 if (12 < size
&& !memcmp(line
, "\\ ", 2))
1776 offset
+= linelen(line
, size
);
1778 patch
->lines_added
+= added
;
1779 patch
->lines_deleted
+= deleted
;
1781 if (0 < patch
->is_new
&& oldlines
)
1782 return error(_("new file depends on old contents"));
1783 if (0 < patch
->is_delete
&& newlines
)
1784 return error(_("deleted file still has contents"));
1789 * We have seen "diff --git a/... b/..." header (or a traditional patch
1790 * header). Read hunks that belong to this patch into fragments and hang
1791 * them to the given patch structure.
1793 * The (fragment->patch, fragment->size) pair points into the memory given
1794 * by the caller, not a copy, when we return.
1797 * -1 in case of error,
1798 * the number of bytes in the patch otherwise.
1800 static int parse_single_patch(struct apply_state
*state
,
1803 struct patch
*patch
)
1805 unsigned long offset
= 0;
1806 unsigned long oldlines
= 0, newlines
= 0, context
= 0;
1807 struct fragment
**fragp
= &patch
->fragments
;
1809 while (size
> 4 && !memcmp(line
, "@@ -", 4)) {
1810 struct fragment
*fragment
;
1813 fragment
= xcalloc(1, sizeof(*fragment
));
1814 fragment
->linenr
= state
->linenr
;
1815 len
= parse_fragment(state
, line
, size
, patch
, fragment
);
1818 return error(_("corrupt patch at line %d"), state
->linenr
);
1820 fragment
->patch
= line
;
1821 fragment
->size
= len
;
1822 oldlines
+= fragment
->oldlines
;
1823 newlines
+= fragment
->newlines
;
1824 context
+= fragment
->leading
+ fragment
->trailing
;
1827 fragp
= &fragment
->next
;
1835 * If something was removed (i.e. we have old-lines) it cannot
1836 * be creation, and if something was added it cannot be
1837 * deletion. However, the reverse is not true; --unified=0
1838 * patches that only add are not necessarily creation even
1839 * though they do not have any old lines, and ones that only
1840 * delete are not necessarily deletion.
1842 * Unfortunately, a real creation/deletion patch do _not_ have
1843 * any context line by definition, so we cannot safely tell it
1844 * apart with --unified=0 insanity. At least if the patch has
1845 * more than one hunk it is not creation or deletion.
1847 if (patch
->is_new
< 0 &&
1848 (oldlines
|| (patch
->fragments
&& patch
->fragments
->next
)))
1850 if (patch
->is_delete
< 0 &&
1851 (newlines
|| (patch
->fragments
&& patch
->fragments
->next
)))
1852 patch
->is_delete
= 0;
1854 if (0 < patch
->is_new
&& oldlines
)
1855 return error(_("new file %s depends on old contents"), patch
->new_name
);
1856 if (0 < patch
->is_delete
&& newlines
)
1857 return error(_("deleted file %s still has contents"), patch
->old_name
);
1858 if (!patch
->is_delete
&& !newlines
&& context
&& state
->apply_verbosity
> verbosity_silent
)
1861 "file %s becomes empty but is not deleted"),
1867 static inline int metadata_changes(struct patch
*patch
)
1869 return patch
->is_rename
> 0 ||
1870 patch
->is_copy
> 0 ||
1871 patch
->is_new
> 0 ||
1873 (patch
->old_mode
&& patch
->new_mode
&&
1874 patch
->old_mode
!= patch
->new_mode
);
1877 static char *inflate_it(const void *data
, unsigned long size
,
1878 unsigned long inflated_size
)
1884 memset(&stream
, 0, sizeof(stream
));
1886 stream
.next_in
= (unsigned char *)data
;
1887 stream
.avail_in
= size
;
1888 stream
.next_out
= out
= xmalloc(inflated_size
);
1889 stream
.avail_out
= inflated_size
;
1890 git_inflate_init(&stream
);
1891 st
= git_inflate(&stream
, Z_FINISH
);
1892 git_inflate_end(&stream
);
1893 if ((st
!= Z_STREAM_END
) || stream
.total_out
!= inflated_size
) {
1901 * Read a binary hunk and return a new fragment; fragment->patch
1902 * points at an allocated memory that the caller must free, so
1903 * it is marked as "->free_patch = 1".
1905 static struct fragment
*parse_binary_hunk(struct apply_state
*state
,
1907 unsigned long *sz_p
,
1912 * Expect a line that begins with binary patch method ("literal"
1913 * or "delta"), followed by the length of data before deflating.
1914 * a sequence of 'length-byte' followed by base-85 encoded data
1915 * should follow, terminated by a newline.
1917 * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1918 * and we would limit the patch line to 66 characters,
1919 * so one line can fit up to 13 groups that would decode
1920 * to 52 bytes max. The length byte 'A'-'Z' corresponds
1921 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
1924 unsigned long size
= *sz_p
;
1925 char *buffer
= *buf_p
;
1927 unsigned long origlen
;
1930 struct fragment
*frag
;
1932 llen
= linelen(buffer
, size
);
1937 if (starts_with(buffer
, "delta ")) {
1938 patch_method
= BINARY_DELTA_DEFLATED
;
1939 origlen
= strtoul(buffer
+ 6, NULL
, 10);
1941 else if (starts_with(buffer
, "literal ")) {
1942 patch_method
= BINARY_LITERAL_DEFLATED
;
1943 origlen
= strtoul(buffer
+ 8, NULL
, 10);
1951 int byte_length
, max_byte_length
, newsize
;
1952 llen
= linelen(buffer
, size
);
1956 /* consume the blank line */
1962 * Minimum line is "A00000\n" which is 7-byte long,
1963 * and the line length must be multiple of 5 plus 2.
1965 if ((llen
< 7) || (llen
-2) % 5)
1967 max_byte_length
= (llen
- 2) / 5 * 4;
1968 byte_length
= *buffer
;
1969 if ('A' <= byte_length
&& byte_length
<= 'Z')
1970 byte_length
= byte_length
- 'A' + 1;
1971 else if ('a' <= byte_length
&& byte_length
<= 'z')
1972 byte_length
= byte_length
- 'a' + 27;
1975 /* if the input length was not multiple of 4, we would
1976 * have filler at the end but the filler should never
1979 if (max_byte_length
< byte_length
||
1980 byte_length
<= max_byte_length
- 4)
1982 newsize
= hunk_size
+ byte_length
;
1983 data
= xrealloc(data
, newsize
);
1984 if (decode_85(data
+ hunk_size
, buffer
+ 1, byte_length
))
1986 hunk_size
= newsize
;
1991 frag
= xcalloc(1, sizeof(*frag
));
1992 frag
->patch
= inflate_it(data
, hunk_size
, origlen
);
1993 frag
->free_patch
= 1;
1997 frag
->size
= origlen
;
2001 frag
->binary_patch_method
= patch_method
;
2007 error(_("corrupt binary patch at line %d: %.*s"),
2008 state
->linenr
-1, llen
-1, buffer
);
2014 * -1 in case of error,
2015 * the length of the parsed binary patch otherwise
2017 static int parse_binary(struct apply_state
*state
,
2020 struct patch
*patch
)
2023 * We have read "GIT binary patch\n"; what follows is a line
2024 * that says the patch method (currently, either "literal" or
2025 * "delta") and the length of data before deflating; a
2026 * sequence of 'length-byte' followed by base-85 encoded data
2029 * When a binary patch is reversible, there is another binary
2030 * hunk in the same format, starting with patch method (either
2031 * "literal" or "delta") with the length of data, and a sequence
2032 * of length-byte + base-85 encoded data, terminated with another
2033 * empty line. This data, when applied to the postimage, produces
2036 struct fragment
*forward
;
2037 struct fragment
*reverse
;
2041 forward
= parse_binary_hunk(state
, &buffer
, &size
, &status
, &used
);
2042 if (!forward
&& !status
)
2043 /* there has to be one hunk (forward hunk) */
2044 return error(_("unrecognized binary patch at line %d"), state
->linenr
-1);
2046 /* otherwise we already gave an error message */
2049 reverse
= parse_binary_hunk(state
, &buffer
, &size
, &status
, &used_1
);
2054 * Not having reverse hunk is not an error, but having
2055 * a corrupt reverse hunk is.
2057 free((void*) forward
->patch
);
2061 forward
->next
= reverse
;
2062 patch
->fragments
= forward
;
2063 patch
->is_binary
= 1;
2067 static void prefix_one(struct apply_state
*state
, char **name
)
2069 char *old_name
= *name
;
2072 *name
= prefix_filename(state
->prefix
, *name
);
2076 static void prefix_patch(struct apply_state
*state
, struct patch
*p
)
2078 if (!state
->prefix
|| p
->is_toplevel_relative
)
2080 prefix_one(state
, &p
->new_name
);
2081 prefix_one(state
, &p
->old_name
);
2088 static void add_name_limit(struct apply_state
*state
,
2092 struct string_list_item
*it
;
2094 it
= string_list_append(&state
->limit_by_name
, name
);
2095 it
->util
= exclude
? NULL
: (void *) 1;
2098 static int use_patch(struct apply_state
*state
, struct patch
*p
)
2100 const char *pathname
= p
->new_name
? p
->new_name
: p
->old_name
;
2103 /* Paths outside are not touched regardless of "--include" */
2104 if (0 < state
->prefix_length
) {
2105 int pathlen
= strlen(pathname
);
2106 if (pathlen
<= state
->prefix_length
||
2107 memcmp(state
->prefix
, pathname
, state
->prefix_length
))
2111 /* See if it matches any of exclude/include rule */
2112 for (i
= 0; i
< state
->limit_by_name
.nr
; i
++) {
2113 struct string_list_item
*it
= &state
->limit_by_name
.items
[i
];
2114 if (!wildmatch(it
->string
, pathname
, 0, NULL
))
2115 return (it
->util
!= NULL
);
2119 * If we had any include, a path that does not match any rule is
2120 * not used. Otherwise, we saw bunch of exclude rules (or none)
2121 * and such a path is used.
2123 return !state
->has_include
;
2127 * Read the patch text in "buffer" that extends for "size" bytes; stop
2128 * reading after seeing a single patch (i.e. changes to a single file).
2129 * Create fragments (i.e. patch hunks) and hang them to the given patch.
2132 * -1 if no header was found or parse_binary() failed,
2133 * -128 on another error,
2134 * the number of bytes consumed otherwise,
2135 * so that the caller can call us again for the next patch.
2137 static int parse_chunk(struct apply_state
*state
, char *buffer
, unsigned long size
, struct patch
*patch
)
2139 int hdrsize
, patchsize
;
2140 int offset
= find_header(state
, buffer
, size
, &hdrsize
, patch
);
2145 prefix_patch(state
, patch
);
2147 if (!use_patch(state
, patch
))
2150 patch
->ws_rule
= whitespace_rule(patch
->new_name
2154 patchsize
= parse_single_patch(state
,
2155 buffer
+ offset
+ hdrsize
,
2156 size
- offset
- hdrsize
,
2163 static const char git_binary
[] = "GIT binary patch\n";
2164 int hd
= hdrsize
+ offset
;
2165 unsigned long llen
= linelen(buffer
+ hd
, size
- hd
);
2167 if (llen
== sizeof(git_binary
) - 1 &&
2168 !memcmp(git_binary
, buffer
+ hd
, llen
)) {
2171 used
= parse_binary(state
, buffer
+ hd
+ llen
,
2172 size
- hd
- llen
, patch
);
2176 patchsize
= used
+ llen
;
2180 else if (!memcmp(" differ\n", buffer
+ hd
+ llen
- 8, 8)) {
2181 static const char *binhdr
[] = {
2187 for (i
= 0; binhdr
[i
]; i
++) {
2188 int len
= strlen(binhdr
[i
]);
2189 if (len
< size
- hd
&&
2190 !memcmp(binhdr
[i
], buffer
+ hd
, len
)) {
2192 patch
->is_binary
= 1;
2199 /* Empty patch cannot be applied if it is a text patch
2200 * without metadata change. A binary patch appears
2203 if ((state
->apply
|| state
->check
) &&
2204 (!patch
->is_binary
&& !metadata_changes(patch
))) {
2205 error(_("patch with only garbage at line %d"), state
->linenr
);
2210 return offset
+ hdrsize
+ patchsize
;
2213 static void reverse_patches(struct patch
*p
)
2215 for (; p
; p
= p
->next
) {
2216 struct fragment
*frag
= p
->fragments
;
2218 SWAP(p
->new_name
, p
->old_name
);
2219 SWAP(p
->new_mode
, p
->old_mode
);
2220 SWAP(p
->is_new
, p
->is_delete
);
2221 SWAP(p
->lines_added
, p
->lines_deleted
);
2222 SWAP(p
->old_sha1_prefix
, p
->new_sha1_prefix
);
2224 for (; frag
; frag
= frag
->next
) {
2225 SWAP(frag
->newpos
, frag
->oldpos
);
2226 SWAP(frag
->newlines
, frag
->oldlines
);
2231 static const char pluses
[] =
2232 "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
2233 static const char minuses
[]=
2234 "----------------------------------------------------------------------";
2236 static void show_stats(struct apply_state
*state
, struct patch
*patch
)
2238 struct strbuf qname
= STRBUF_INIT
;
2239 char *cp
= patch
->new_name
? patch
->new_name
: patch
->old_name
;
2242 quote_c_style(cp
, &qname
, NULL
, 0);
2245 * "scale" the filename
2247 max
= state
->max_len
;
2251 if (qname
.len
> max
) {
2252 cp
= strchr(qname
.buf
+ qname
.len
+ 3 - max
, '/');
2254 cp
= qname
.buf
+ qname
.len
+ 3 - max
;
2255 strbuf_splice(&qname
, 0, cp
- qname
.buf
, "...", 3);
2258 if (patch
->is_binary
) {
2259 printf(" %-*s | Bin\n", max
, qname
.buf
);
2260 strbuf_release(&qname
);
2264 printf(" %-*s |", max
, qname
.buf
);
2265 strbuf_release(&qname
);
2268 * scale the add/delete
2270 max
= max
+ state
->max_change
> 70 ? 70 - max
: state
->max_change
;
2271 add
= patch
->lines_added
;
2272 del
= patch
->lines_deleted
;
2274 if (state
->max_change
> 0) {
2275 int total
= ((add
+ del
) * max
+ state
->max_change
/ 2) / state
->max_change
;
2276 add
= (add
* max
+ state
->max_change
/ 2) / state
->max_change
;
2279 printf("%5d %.*s%.*s\n", patch
->lines_added
+ patch
->lines_deleted
,
2280 add
, pluses
, del
, minuses
);
2283 static int read_old_data(struct stat
*st
, const char *path
, struct strbuf
*buf
)
2285 switch (st
->st_mode
& S_IFMT
) {
2287 if (strbuf_readlink(buf
, path
, st
->st_size
) < 0)
2288 return error(_("unable to read symlink %s"), path
);
2291 if (strbuf_read_file(buf
, path
, st
->st_size
) != st
->st_size
)
2292 return error(_("unable to open or read %s"), path
);
2293 convert_to_git(path
, buf
->buf
, buf
->len
, buf
, 0);
2301 * Update the preimage, and the common lines in postimage,
2302 * from buffer buf of length len. If postlen is 0 the postimage
2303 * is updated in place, otherwise it's updated on a new buffer
2307 static void update_pre_post_images(struct image
*preimage
,
2308 struct image
*postimage
,
2310 size_t len
, size_t postlen
)
2312 int i
, ctx
, reduced
;
2313 char *new, *old
, *fixed
;
2314 struct image fixed_preimage
;
2317 * Update the preimage with whitespace fixes. Note that we
2318 * are not losing preimage->buf -- apply_one_fragment() will
2321 prepare_image(&fixed_preimage
, buf
, len
, 1);
2323 ? fixed_preimage
.nr
== preimage
->nr
2324 : fixed_preimage
.nr
<= preimage
->nr
);
2325 for (i
= 0; i
< fixed_preimage
.nr
; i
++)
2326 fixed_preimage
.line
[i
].flag
= preimage
->line
[i
].flag
;
2327 free(preimage
->line_allocated
);
2328 *preimage
= fixed_preimage
;
2331 * Adjust the common context lines in postimage. This can be
2332 * done in-place when we are shrinking it with whitespace
2333 * fixing, but needs a new buffer when ignoring whitespace or
2334 * expanding leading tabs to spaces.
2336 * We trust the caller to tell us if the update can be done
2337 * in place (postlen==0) or not.
2339 old
= postimage
->buf
;
2341 new = postimage
->buf
= xmalloc(postlen
);
2344 fixed
= preimage
->buf
;
2346 for (i
= reduced
= ctx
= 0; i
< postimage
->nr
; i
++) {
2347 size_t l_len
= postimage
->line
[i
].len
;
2348 if (!(postimage
->line
[i
].flag
& LINE_COMMON
)) {
2349 /* an added line -- no counterparts in preimage */
2350 memmove(new, old
, l_len
);
2356 /* a common context -- skip it in the original postimage */
2359 /* and find the corresponding one in the fixed preimage */
2360 while (ctx
< preimage
->nr
&&
2361 !(preimage
->line
[ctx
].flag
& LINE_COMMON
)) {
2362 fixed
+= preimage
->line
[ctx
].len
;
2367 * preimage is expected to run out, if the caller
2368 * fixed addition of trailing blank lines.
2370 if (preimage
->nr
<= ctx
) {
2375 /* and copy it in, while fixing the line length */
2376 l_len
= preimage
->line
[ctx
].len
;
2377 memcpy(new, fixed
, l_len
);
2380 postimage
->line
[i
].len
= l_len
;
2385 ? postlen
< new - postimage
->buf
2386 : postimage
->len
< new - postimage
->buf
)
2387 die("BUG: caller miscounted postlen: asked %d, orig = %d, used = %d",
2388 (int)postlen
, (int) postimage
->len
, (int)(new - postimage
->buf
));
2390 /* Fix the length of the whole thing */
2391 postimage
->len
= new - postimage
->buf
;
2392 postimage
->nr
-= reduced
;
2395 static int line_by_line_fuzzy_match(struct image
*img
,
2396 struct image
*preimage
,
2397 struct image
*postimage
,
2405 size_t postlen
= postimage
->len
;
2410 struct strbuf fixed
;
2414 for (i
= 0; i
< preimage_limit
; i
++) {
2415 size_t prelen
= preimage
->line
[i
].len
;
2416 size_t imglen
= img
->line
[try_lno
+i
].len
;
2418 if (!fuzzy_matchlines(img
->buf
+ try + imgoff
, imglen
,
2419 preimage
->buf
+ preoff
, prelen
))
2421 if (preimage
->line
[i
].flag
& LINE_COMMON
)
2422 postlen
+= imglen
- prelen
;
2428 * Ok, the preimage matches with whitespace fuzz.
2430 * imgoff now holds the true length of the target that
2431 * matches the preimage before the end of the file.
2433 * Count the number of characters in the preimage that fall
2434 * beyond the end of the file and make sure that all of them
2435 * are whitespace characters. (This can only happen if
2436 * we are removing blank lines at the end of the file.)
2438 buf
= preimage_eof
= preimage
->buf
+ preoff
;
2439 for ( ; i
< preimage
->nr
; i
++)
2440 preoff
+= preimage
->line
[i
].len
;
2441 preimage_end
= preimage
->buf
+ preoff
;
2442 for ( ; buf
< preimage_end
; buf
++)
2447 * Update the preimage and the common postimage context
2448 * lines to use the same whitespace as the target.
2449 * If whitespace is missing in the target (i.e.
2450 * if the preimage extends beyond the end of the file),
2451 * use the whitespace from the preimage.
2453 extra_chars
= preimage_end
- preimage_eof
;
2454 strbuf_init(&fixed
, imgoff
+ extra_chars
);
2455 strbuf_add(&fixed
, img
->buf
+ try, imgoff
);
2456 strbuf_add(&fixed
, preimage_eof
, extra_chars
);
2457 fixed_buf
= strbuf_detach(&fixed
, &fixed_len
);
2458 update_pre_post_images(preimage
, postimage
,
2459 fixed_buf
, fixed_len
, postlen
);
2463 static int match_fragment(struct apply_state
*state
,
2465 struct image
*preimage
,
2466 struct image
*postimage
,
2470 int match_beginning
, int match_end
)
2473 char *fixed_buf
, *buf
, *orig
, *target
;
2474 struct strbuf fixed
;
2475 size_t fixed_len
, postlen
;
2478 if (preimage
->nr
+ try_lno
<= img
->nr
) {
2480 * The hunk falls within the boundaries of img.
2482 preimage_limit
= preimage
->nr
;
2483 if (match_end
&& (preimage
->nr
+ try_lno
!= img
->nr
))
2485 } else if (state
->ws_error_action
== correct_ws_error
&&
2486 (ws_rule
& WS_BLANK_AT_EOF
)) {
2488 * This hunk extends beyond the end of img, and we are
2489 * removing blank lines at the end of the file. This
2490 * many lines from the beginning of the preimage must
2491 * match with img, and the remainder of the preimage
2494 preimage_limit
= img
->nr
- try_lno
;
2497 * The hunk extends beyond the end of the img and
2498 * we are not removing blanks at the end, so we
2499 * should reject the hunk at this position.
2504 if (match_beginning
&& try_lno
)
2507 /* Quick hash check */
2508 for (i
= 0; i
< preimage_limit
; i
++)
2509 if ((img
->line
[try_lno
+ i
].flag
& LINE_PATCHED
) ||
2510 (preimage
->line
[i
].hash
!= img
->line
[try_lno
+ i
].hash
))
2513 if (preimage_limit
== preimage
->nr
) {
2515 * Do we have an exact match? If we were told to match
2516 * at the end, size must be exactly at try+fragsize,
2517 * otherwise try+fragsize must be still within the preimage,
2518 * and either case, the old piece should match the preimage
2522 ? (try + preimage
->len
== img
->len
)
2523 : (try + preimage
->len
<= img
->len
)) &&
2524 !memcmp(img
->buf
+ try, preimage
->buf
, preimage
->len
))
2528 * The preimage extends beyond the end of img, so
2529 * there cannot be an exact match.
2531 * There must be one non-blank context line that match
2532 * a line before the end of img.
2536 buf
= preimage
->buf
;
2538 for (i
= 0; i
< preimage_limit
; i
++)
2539 buf_end
+= preimage
->line
[i
].len
;
2541 for ( ; buf
< buf_end
; buf
++)
2549 * No exact match. If we are ignoring whitespace, run a line-by-line
2550 * fuzzy matching. We collect all the line length information because
2551 * we need it to adjust whitespace if we match.
2553 if (state
->ws_ignore_action
== ignore_ws_change
)
2554 return line_by_line_fuzzy_match(img
, preimage
, postimage
,
2555 try, try_lno
, preimage_limit
);
2557 if (state
->ws_error_action
!= correct_ws_error
)
2561 * The hunk does not apply byte-by-byte, but the hash says
2562 * it might with whitespace fuzz. We weren't asked to
2563 * ignore whitespace, we were asked to correct whitespace
2564 * errors, so let's try matching after whitespace correction.
2566 * While checking the preimage against the target, whitespace
2567 * errors in both fixed, we count how large the corresponding
2568 * postimage needs to be. The postimage prepared by
2569 * apply_one_fragment() has whitespace errors fixed on added
2570 * lines already, but the common lines were propagated as-is,
2571 * which may become longer when their whitespace errors are
2575 /* First count added lines in postimage */
2577 for (i
= 0; i
< postimage
->nr
; i
++) {
2578 if (!(postimage
->line
[i
].flag
& LINE_COMMON
))
2579 postlen
+= postimage
->line
[i
].len
;
2583 * The preimage may extend beyond the end of the file,
2584 * but in this loop we will only handle the part of the
2585 * preimage that falls within the file.
2587 strbuf_init(&fixed
, preimage
->len
+ 1);
2588 orig
= preimage
->buf
;
2589 target
= img
->buf
+ try;
2590 for (i
= 0; i
< preimage_limit
; i
++) {
2591 size_t oldlen
= preimage
->line
[i
].len
;
2592 size_t tgtlen
= img
->line
[try_lno
+ i
].len
;
2593 size_t fixstart
= fixed
.len
;
2594 struct strbuf tgtfix
;
2597 /* Try fixing the line in the preimage */
2598 ws_fix_copy(&fixed
, orig
, oldlen
, ws_rule
, NULL
);
2600 /* Try fixing the line in the target */
2601 strbuf_init(&tgtfix
, tgtlen
);
2602 ws_fix_copy(&tgtfix
, target
, tgtlen
, ws_rule
, NULL
);
2605 * If they match, either the preimage was based on
2606 * a version before our tree fixed whitespace breakage,
2607 * or we are lacking a whitespace-fix patch the tree
2608 * the preimage was based on already had (i.e. target
2609 * has whitespace breakage, the preimage doesn't).
2610 * In either case, we are fixing the whitespace breakages
2611 * so we might as well take the fix together with their
2614 match
= (tgtfix
.len
== fixed
.len
- fixstart
&&
2615 !memcmp(tgtfix
.buf
, fixed
.buf
+ fixstart
,
2616 fixed
.len
- fixstart
));
2618 /* Add the length if this is common with the postimage */
2619 if (preimage
->line
[i
].flag
& LINE_COMMON
)
2620 postlen
+= tgtfix
.len
;
2622 strbuf_release(&tgtfix
);
2632 * Now handle the lines in the preimage that falls beyond the
2633 * end of the file (if any). They will only match if they are
2634 * empty or only contain whitespace (if WS_BLANK_AT_EOL is
2637 for ( ; i
< preimage
->nr
; i
++) {
2638 size_t fixstart
= fixed
.len
; /* start of the fixed preimage */
2639 size_t oldlen
= preimage
->line
[i
].len
;
2642 /* Try fixing the line in the preimage */
2643 ws_fix_copy(&fixed
, orig
, oldlen
, ws_rule
, NULL
);
2645 for (j
= fixstart
; j
< fixed
.len
; j
++)
2646 if (!isspace(fixed
.buf
[j
]))
2653 * Yes, the preimage is based on an older version that still
2654 * has whitespace breakages unfixed, and fixing them makes the
2655 * hunk match. Update the context lines in the postimage.
2657 fixed_buf
= strbuf_detach(&fixed
, &fixed_len
);
2658 if (postlen
< postimage
->len
)
2660 update_pre_post_images(preimage
, postimage
,
2661 fixed_buf
, fixed_len
, postlen
);
2665 strbuf_release(&fixed
);
2669 static int find_pos(struct apply_state
*state
,
2671 struct image
*preimage
,
2672 struct image
*postimage
,
2675 int match_beginning
, int match_end
)
2678 unsigned long backwards
, forwards
, try;
2679 int backwards_lno
, forwards_lno
, try_lno
;
2682 * If match_beginning or match_end is specified, there is no
2683 * point starting from a wrong line that will never match and
2684 * wander around and wait for a match at the specified end.
2686 if (match_beginning
)
2689 line
= img
->nr
- preimage
->nr
;
2692 * Because the comparison is unsigned, the following test
2693 * will also take care of a negative line number that can
2694 * result when match_end and preimage is larger than the target.
2696 if ((size_t) line
> img
->nr
)
2700 for (i
= 0; i
< line
; i
++)
2701 try += img
->line
[i
].len
;
2704 * There's probably some smart way to do this, but I'll leave
2705 * that to the smart and beautiful people. I'm simple and stupid.
2708 backwards_lno
= line
;
2710 forwards_lno
= line
;
2713 for (i
= 0; ; i
++) {
2714 if (match_fragment(state
, img
, preimage
, postimage
,
2715 try, try_lno
, ws_rule
,
2716 match_beginning
, match_end
))
2720 if (backwards_lno
== 0 && forwards_lno
== img
->nr
)
2724 if (backwards_lno
== 0) {
2729 backwards
-= img
->line
[backwards_lno
].len
;
2731 try_lno
= backwards_lno
;
2733 if (forwards_lno
== img
->nr
) {
2737 forwards
+= img
->line
[forwards_lno
].len
;
2740 try_lno
= forwards_lno
;
2747 static void remove_first_line(struct image
*img
)
2749 img
->buf
+= img
->line
[0].len
;
2750 img
->len
-= img
->line
[0].len
;
2755 static void remove_last_line(struct image
*img
)
2757 img
->len
-= img
->line
[--img
->nr
].len
;
2761 * The change from "preimage" and "postimage" has been found to
2762 * apply at applied_pos (counts in line numbers) in "img".
2763 * Update "img" to remove "preimage" and replace it with "postimage".
2765 static void update_image(struct apply_state
*state
,
2768 struct image
*preimage
,
2769 struct image
*postimage
)
2772 * remove the copy of preimage at offset in img
2773 * and replace it with postimage
2776 size_t remove_count
, insert_count
, applied_at
= 0;
2781 * If we are removing blank lines at the end of img,
2782 * the preimage may extend beyond the end.
2783 * If that is the case, we must be careful only to
2784 * remove the part of the preimage that falls within
2785 * the boundaries of img. Initialize preimage_limit
2786 * to the number of lines in the preimage that falls
2787 * within the boundaries.
2789 preimage_limit
= preimage
->nr
;
2790 if (preimage_limit
> img
->nr
- applied_pos
)
2791 preimage_limit
= img
->nr
- applied_pos
;
2793 for (i
= 0; i
< applied_pos
; i
++)
2794 applied_at
+= img
->line
[i
].len
;
2797 for (i
= 0; i
< preimage_limit
; i
++)
2798 remove_count
+= img
->line
[applied_pos
+ i
].len
;
2799 insert_count
= postimage
->len
;
2801 /* Adjust the contents */
2802 result
= xmalloc(st_add3(st_sub(img
->len
, remove_count
), insert_count
, 1));
2803 memcpy(result
, img
->buf
, applied_at
);
2804 memcpy(result
+ applied_at
, postimage
->buf
, postimage
->len
);
2805 memcpy(result
+ applied_at
+ postimage
->len
,
2806 img
->buf
+ (applied_at
+ remove_count
),
2807 img
->len
- (applied_at
+ remove_count
));
2810 img
->len
+= insert_count
- remove_count
;
2811 result
[img
->len
] = '\0';
2813 /* Adjust the line table */
2814 nr
= img
->nr
+ postimage
->nr
- preimage_limit
;
2815 if (preimage_limit
< postimage
->nr
) {
2817 * NOTE: this knows that we never call remove_first_line()
2818 * on anything other than pre/post image.
2820 REALLOC_ARRAY(img
->line
, nr
);
2821 img
->line_allocated
= img
->line
;
2823 if (preimage_limit
!= postimage
->nr
)
2824 memmove(img
->line
+ applied_pos
+ postimage
->nr
,
2825 img
->line
+ applied_pos
+ preimage_limit
,
2826 (img
->nr
- (applied_pos
+ preimage_limit
)) *
2827 sizeof(*img
->line
));
2828 memcpy(img
->line
+ applied_pos
,
2830 postimage
->nr
* sizeof(*img
->line
));
2831 if (!state
->allow_overlap
)
2832 for (i
= 0; i
< postimage
->nr
; i
++)
2833 img
->line
[applied_pos
+ i
].flag
|= LINE_PATCHED
;
2838 * Use the patch-hunk text in "frag" to prepare two images (preimage and
2839 * postimage) for the hunk. Find lines that match "preimage" in "img" and
2840 * replace the part of "img" with "postimage" text.
2842 static int apply_one_fragment(struct apply_state
*state
,
2843 struct image
*img
, struct fragment
*frag
,
2844 int inaccurate_eof
, unsigned ws_rule
,
2847 int match_beginning
, match_end
;
2848 const char *patch
= frag
->patch
;
2849 int size
= frag
->size
;
2850 char *old
, *oldlines
;
2851 struct strbuf newlines
;
2852 int new_blank_lines_at_end
= 0;
2853 int found_new_blank_lines_at_end
= 0;
2854 int hunk_linenr
= frag
->linenr
;
2855 unsigned long leading
, trailing
;
2856 int pos
, applied_pos
;
2857 struct image preimage
;
2858 struct image postimage
;
2860 memset(&preimage
, 0, sizeof(preimage
));
2861 memset(&postimage
, 0, sizeof(postimage
));
2862 oldlines
= xmalloc(size
);
2863 strbuf_init(&newlines
, size
);
2868 int len
= linelen(patch
, size
);
2870 int added_blank_line
= 0;
2871 int is_blank_context
= 0;
2878 * "plen" is how much of the line we should use for
2879 * the actual patch data. Normally we just remove the
2880 * first character on the line, but if the line is
2881 * followed by "\ No newline", then we also remove the
2882 * last one (which is the newline, of course).
2885 if (len
< size
&& patch
[len
] == '\\')
2888 if (state
->apply_in_reverse
) {
2891 else if (first
== '+')
2897 /* Newer GNU diff, empty context line */
2899 /* ... followed by '\No newline'; nothing */
2902 strbuf_addch(&newlines
, '\n');
2903 add_line_info(&preimage
, "\n", 1, LINE_COMMON
);
2904 add_line_info(&postimage
, "\n", 1, LINE_COMMON
);
2905 is_blank_context
= 1;
2908 if (plen
&& (ws_rule
& WS_BLANK_AT_EOF
) &&
2909 ws_blank_line(patch
+ 1, plen
, ws_rule
))
2910 is_blank_context
= 1;
2912 memcpy(old
, patch
+ 1, plen
);
2913 add_line_info(&preimage
, old
, plen
,
2914 (first
== ' ' ? LINE_COMMON
: 0));
2918 /* Fall-through for ' ' */
2920 /* --no-add does not add new lines */
2921 if (first
== '+' && state
->no_add
)
2924 start
= newlines
.len
;
2926 !state
->whitespace_error
||
2927 state
->ws_error_action
!= correct_ws_error
) {
2928 strbuf_add(&newlines
, patch
+ 1, plen
);
2931 ws_fix_copy(&newlines
, patch
+ 1, plen
, ws_rule
, &state
->applied_after_fixing_ws
);
2933 add_line_info(&postimage
, newlines
.buf
+ start
, newlines
.len
- start
,
2934 (first
== '+' ? 0 : LINE_COMMON
));
2936 (ws_rule
& WS_BLANK_AT_EOF
) &&
2937 ws_blank_line(patch
+ 1, plen
, ws_rule
))
2938 added_blank_line
= 1;
2940 case '@': case '\\':
2941 /* Ignore it, we already handled it */
2944 if (state
->apply_verbosity
> verbosity_normal
)
2945 error(_("invalid start of line: '%c'"), first
);
2949 if (added_blank_line
) {
2950 if (!new_blank_lines_at_end
)
2951 found_new_blank_lines_at_end
= hunk_linenr
;
2952 new_blank_lines_at_end
++;
2954 else if (is_blank_context
)
2957 new_blank_lines_at_end
= 0;
2962 if (inaccurate_eof
&&
2963 old
> oldlines
&& old
[-1] == '\n' &&
2964 newlines
.len
> 0 && newlines
.buf
[newlines
.len
- 1] == '\n') {
2966 strbuf_setlen(&newlines
, newlines
.len
- 1);
2969 leading
= frag
->leading
;
2970 trailing
= frag
->trailing
;
2973 * A hunk to change lines at the beginning would begin with
2975 * but we need to be careful. -U0 that inserts before the second
2976 * line also has this pattern.
2978 * And a hunk to add to an empty file would begin with
2981 * In other words, a hunk that is (frag->oldpos <= 1) with or
2982 * without leading context must match at the beginning.
2984 match_beginning
= (!frag
->oldpos
||
2985 (frag
->oldpos
== 1 && !state
->unidiff_zero
));
2988 * A hunk without trailing lines must match at the end.
2989 * However, we simply cannot tell if a hunk must match end
2990 * from the lack of trailing lines if the patch was generated
2991 * with unidiff without any context.
2993 match_end
= !state
->unidiff_zero
&& !trailing
;
2995 pos
= frag
->newpos
? (frag
->newpos
- 1) : 0;
2996 preimage
.buf
= oldlines
;
2997 preimage
.len
= old
- oldlines
;
2998 postimage
.buf
= newlines
.buf
;
2999 postimage
.len
= newlines
.len
;
3000 preimage
.line
= preimage
.line_allocated
;
3001 postimage
.line
= postimage
.line_allocated
;
3005 applied_pos
= find_pos(state
, img
, &preimage
, &postimage
, pos
,
3006 ws_rule
, match_beginning
, match_end
);
3008 if (applied_pos
>= 0)
3011 /* Am I at my context limits? */
3012 if ((leading
<= state
->p_context
) && (trailing
<= state
->p_context
))
3014 if (match_beginning
|| match_end
) {
3015 match_beginning
= match_end
= 0;
3020 * Reduce the number of context lines; reduce both
3021 * leading and trailing if they are equal otherwise
3022 * just reduce the larger context.
3024 if (leading
>= trailing
) {
3025 remove_first_line(&preimage
);
3026 remove_first_line(&postimage
);
3030 if (trailing
> leading
) {
3031 remove_last_line(&preimage
);
3032 remove_last_line(&postimage
);
3037 if (applied_pos
>= 0) {
3038 if (new_blank_lines_at_end
&&
3039 preimage
.nr
+ applied_pos
>= img
->nr
&&
3040 (ws_rule
& WS_BLANK_AT_EOF
) &&
3041 state
->ws_error_action
!= nowarn_ws_error
) {
3042 record_ws_error(state
, WS_BLANK_AT_EOF
, "+", 1,
3043 found_new_blank_lines_at_end
);
3044 if (state
->ws_error_action
== correct_ws_error
) {
3045 while (new_blank_lines_at_end
--)
3046 remove_last_line(&postimage
);
3049 * We would want to prevent write_out_results()
3050 * from taking place in apply_patch() that follows
3051 * the callchain led us here, which is:
3052 * apply_patch->check_patch_list->check_patch->
3053 * apply_data->apply_fragments->apply_one_fragment
3055 if (state
->ws_error_action
== die_on_ws_error
)
3059 if (state
->apply_verbosity
> verbosity_normal
&& applied_pos
!= pos
) {
3060 int offset
= applied_pos
- pos
;
3061 if (state
->apply_in_reverse
)
3062 offset
= 0 - offset
;
3064 Q_("Hunk #%d succeeded at %d (offset %d line).",
3065 "Hunk #%d succeeded at %d (offset %d lines).",
3067 nth_fragment
, applied_pos
+ 1, offset
);
3071 * Warn if it was necessary to reduce the number
3074 if ((leading
!= frag
->leading
||
3075 trailing
!= frag
->trailing
) && state
->apply_verbosity
> verbosity_silent
)
3076 fprintf_ln(stderr
, _("Context reduced to (%ld/%ld)"
3077 " to apply fragment at %d"),
3078 leading
, trailing
, applied_pos
+1);
3079 update_image(state
, img
, applied_pos
, &preimage
, &postimage
);
3081 if (state
->apply_verbosity
> verbosity_normal
)
3082 error(_("while searching for:\n%.*s"),
3083 (int)(old
- oldlines
), oldlines
);
3088 strbuf_release(&newlines
);
3089 free(preimage
.line_allocated
);
3090 free(postimage
.line_allocated
);
3092 return (applied_pos
< 0);
3095 static int apply_binary_fragment(struct apply_state
*state
,
3097 struct patch
*patch
)
3099 struct fragment
*fragment
= patch
->fragments
;
3104 return error(_("missing binary patch data for '%s'"),
3109 /* Binary patch is irreversible without the optional second hunk */
3110 if (state
->apply_in_reverse
) {
3111 if (!fragment
->next
)
3112 return error(_("cannot reverse-apply a binary patch "
3113 "without the reverse hunk to '%s'"),
3115 ? patch
->new_name
: patch
->old_name
);
3116 fragment
= fragment
->next
;
3118 switch (fragment
->binary_patch_method
) {
3119 case BINARY_DELTA_DEFLATED
:
3120 dst
= patch_delta(img
->buf
, img
->len
, fragment
->patch
,
3121 fragment
->size
, &len
);
3128 case BINARY_LITERAL_DEFLATED
:
3130 img
->len
= fragment
->size
;
3131 img
->buf
= xmemdupz(fragment
->patch
, img
->len
);
3138 * Replace "img" with the result of applying the binary patch.
3139 * The binary patch data itself in patch->fragment is still kept
3140 * but the preimage prepared by the caller in "img" is freed here
3141 * or in the helper function apply_binary_fragment() this calls.
3143 static int apply_binary(struct apply_state
*state
,
3145 struct patch
*patch
)
3147 const char *name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
3148 struct object_id oid
;
3151 * For safety, we require patch index line to contain
3152 * full 40-byte textual SHA1 for old and new, at least for now.
3154 if (strlen(patch
->old_sha1_prefix
) != 40 ||
3155 strlen(patch
->new_sha1_prefix
) != 40 ||
3156 get_oid_hex(patch
->old_sha1_prefix
, &oid
) ||
3157 get_oid_hex(patch
->new_sha1_prefix
, &oid
))
3158 return error(_("cannot apply binary patch to '%s' "
3159 "without full index line"), name
);
3161 if (patch
->old_name
) {
3163 * See if the old one matches what the patch
3166 hash_sha1_file(img
->buf
, img
->len
, blob_type
, oid
.hash
);
3167 if (strcmp(oid_to_hex(&oid
), patch
->old_sha1_prefix
))
3168 return error(_("the patch applies to '%s' (%s), "
3169 "which does not match the "
3170 "current contents."),
3171 name
, oid_to_hex(&oid
));
3174 /* Otherwise, the old one must be empty. */
3176 return error(_("the patch applies to an empty "
3177 "'%s' but it is not empty"), name
);
3180 get_oid_hex(patch
->new_sha1_prefix
, &oid
);
3181 if (is_null_oid(&oid
)) {
3183 return 0; /* deletion patch */
3186 if (has_sha1_file(oid
.hash
)) {
3187 /* We already have the postimage */
3188 enum object_type type
;
3192 result
= read_sha1_file(oid
.hash
, &type
, &size
);
3194 return error(_("the necessary postimage %s for "
3195 "'%s' cannot be read"),
3196 patch
->new_sha1_prefix
, name
);
3202 * We have verified buf matches the preimage;
3203 * apply the patch data to it, which is stored
3204 * in the patch->fragments->{patch,size}.
3206 if (apply_binary_fragment(state
, img
, patch
))
3207 return error(_("binary patch does not apply to '%s'"),
3210 /* verify that the result matches */
3211 hash_sha1_file(img
->buf
, img
->len
, blob_type
, oid
.hash
);
3212 if (strcmp(oid_to_hex(&oid
), patch
->new_sha1_prefix
))
3213 return error(_("binary patch to '%s' creates incorrect result (expecting %s, got %s)"),
3214 name
, patch
->new_sha1_prefix
, oid_to_hex(&oid
));
3220 static int apply_fragments(struct apply_state
*state
, struct image
*img
, struct patch
*patch
)
3222 struct fragment
*frag
= patch
->fragments
;
3223 const char *name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
3224 unsigned ws_rule
= patch
->ws_rule
;
3225 unsigned inaccurate_eof
= patch
->inaccurate_eof
;
3228 if (patch
->is_binary
)
3229 return apply_binary(state
, img
, patch
);
3233 if (apply_one_fragment(state
, img
, frag
, inaccurate_eof
, ws_rule
, nth
)) {
3234 error(_("patch failed: %s:%ld"), name
, frag
->oldpos
);
3235 if (!state
->apply_with_reject
)
3244 static int read_blob_object(struct strbuf
*buf
, const struct object_id
*oid
, unsigned mode
)
3246 if (S_ISGITLINK(mode
)) {
3247 strbuf_grow(buf
, 100);
3248 strbuf_addf(buf
, "Subproject commit %s\n", oid_to_hex(oid
));
3250 enum object_type type
;
3254 result
= read_sha1_file(oid
->hash
, &type
, &sz
);
3257 /* XXX read_sha1_file NUL-terminates */
3258 strbuf_attach(buf
, result
, sz
, sz
+ 1);
3263 static int read_file_or_gitlink(const struct cache_entry
*ce
, struct strbuf
*buf
)
3267 return read_blob_object(buf
, &ce
->oid
, ce
->ce_mode
);
3270 static struct patch
*in_fn_table(struct apply_state
*state
, const char *name
)
3272 struct string_list_item
*item
;
3277 item
= string_list_lookup(&state
->fn_table
, name
);
3279 return (struct patch
*)item
->util
;
3285 * item->util in the filename table records the status of the path.
3286 * Usually it points at a patch (whose result records the contents
3287 * of it after applying it), but it could be PATH_WAS_DELETED for a
3288 * path that a previously applied patch has already removed, or
3289 * PATH_TO_BE_DELETED for a path that a later patch would remove.
3291 * The latter is needed to deal with a case where two paths A and B
3292 * are swapped by first renaming A to B and then renaming B to A;
3293 * moving A to B should not be prevented due to presence of B as we
3294 * will remove it in a later patch.
3296 #define PATH_TO_BE_DELETED ((struct patch *) -2)
3297 #define PATH_WAS_DELETED ((struct patch *) -1)
3299 static int to_be_deleted(struct patch
*patch
)
3301 return patch
== PATH_TO_BE_DELETED
;
3304 static int was_deleted(struct patch
*patch
)
3306 return patch
== PATH_WAS_DELETED
;
3309 static void add_to_fn_table(struct apply_state
*state
, struct patch
*patch
)
3311 struct string_list_item
*item
;
3314 * Always add new_name unless patch is a deletion
3315 * This should cover the cases for normal diffs,
3316 * file creations and copies
3318 if (patch
->new_name
!= NULL
) {
3319 item
= string_list_insert(&state
->fn_table
, patch
->new_name
);
3324 * store a failure on rename/deletion cases because
3325 * later chunks shouldn't patch old names
3327 if ((patch
->new_name
== NULL
) || (patch
->is_rename
)) {
3328 item
= string_list_insert(&state
->fn_table
, patch
->old_name
);
3329 item
->util
= PATH_WAS_DELETED
;
3333 static void prepare_fn_table(struct apply_state
*state
, struct patch
*patch
)
3336 * store information about incoming file deletion
3339 if ((patch
->new_name
== NULL
) || (patch
->is_rename
)) {
3340 struct string_list_item
*item
;
3341 item
= string_list_insert(&state
->fn_table
, patch
->old_name
);
3342 item
->util
= PATH_TO_BE_DELETED
;
3344 patch
= patch
->next
;
3348 static int checkout_target(struct index_state
*istate
,
3349 struct cache_entry
*ce
, struct stat
*st
)
3351 struct checkout costate
= CHECKOUT_INIT
;
3353 costate
.refresh_cache
= 1;
3354 costate
.istate
= istate
;
3355 if (checkout_entry(ce
, &costate
, NULL
) || lstat(ce
->name
, st
))
3356 return error(_("cannot checkout %s"), ce
->name
);
3360 static struct patch
*previous_patch(struct apply_state
*state
,
3361 struct patch
*patch
,
3364 struct patch
*previous
;
3367 if (patch
->is_copy
|| patch
->is_rename
)
3368 return NULL
; /* "git" patches do not depend on the order */
3370 previous
= in_fn_table(state
, patch
->old_name
);
3374 if (to_be_deleted(previous
))
3375 return NULL
; /* the deletion hasn't happened yet */
3377 if (was_deleted(previous
))
3383 static int verify_index_match(const struct cache_entry
*ce
, struct stat
*st
)
3385 if (S_ISGITLINK(ce
->ce_mode
)) {
3386 if (!S_ISDIR(st
->st_mode
))
3390 return ce_match_stat(ce
, st
, CE_MATCH_IGNORE_VALID
|CE_MATCH_IGNORE_SKIP_WORKTREE
);
3393 #define SUBMODULE_PATCH_WITHOUT_INDEX 1
3395 static int load_patch_target(struct apply_state
*state
,
3397 const struct cache_entry
*ce
,
3400 unsigned expected_mode
)
3402 if (state
->cached
|| state
->check_index
) {
3403 if (read_file_or_gitlink(ce
, buf
))
3404 return error(_("failed to read %s"), name
);
3406 if (S_ISGITLINK(expected_mode
)) {
3408 return read_file_or_gitlink(ce
, buf
);
3410 return SUBMODULE_PATCH_WITHOUT_INDEX
;
3411 } else if (has_symlink_leading_path(name
, strlen(name
))) {
3412 return error(_("reading from '%s' beyond a symbolic link"), name
);
3414 if (read_old_data(st
, name
, buf
))
3415 return error(_("failed to read %s"), name
);
3422 * We are about to apply "patch"; populate the "image" with the
3423 * current version we have, from the working tree or from the index,
3424 * depending on the situation e.g. --cached/--index. If we are
3425 * applying a non-git patch that incrementally updates the tree,
3426 * we read from the result of a previous diff.
3428 static int load_preimage(struct apply_state
*state
,
3429 struct image
*image
,
3430 struct patch
*patch
, struct stat
*st
,
3431 const struct cache_entry
*ce
)
3433 struct strbuf buf
= STRBUF_INIT
;
3436 struct patch
*previous
;
3439 previous
= previous_patch(state
, patch
, &status
);
3441 return error(_("path %s has been renamed/deleted"),
3444 /* We have a patched copy in memory; use that. */
3445 strbuf_add(&buf
, previous
->result
, previous
->resultsize
);
3447 status
= load_patch_target(state
, &buf
, ce
, st
,
3448 patch
->old_name
, patch
->old_mode
);
3451 else if (status
== SUBMODULE_PATCH_WITHOUT_INDEX
) {
3453 * There is no way to apply subproject
3454 * patch without looking at the index.
3455 * NEEDSWORK: shouldn't this be flagged
3458 free_fragment_list(patch
->fragments
);
3459 patch
->fragments
= NULL
;
3460 } else if (status
) {
3461 return error(_("failed to read %s"), patch
->old_name
);
3465 img
= strbuf_detach(&buf
, &len
);
3466 prepare_image(image
, img
, len
, !patch
->is_binary
);
3470 static int three_way_merge(struct image
*image
,
3472 const struct object_id
*base
,
3473 const struct object_id
*ours
,
3474 const struct object_id
*theirs
)
3476 mmfile_t base_file
, our_file
, their_file
;
3477 mmbuffer_t result
= { NULL
};
3480 read_mmblob(&base_file
, base
);
3481 read_mmblob(&our_file
, ours
);
3482 read_mmblob(&their_file
, theirs
);
3483 status
= ll_merge(&result
, path
,
3486 &their_file
, "theirs", NULL
);
3487 free(base_file
.ptr
);
3489 free(their_file
.ptr
);
3490 if (status
< 0 || !result
.ptr
) {
3495 image
->buf
= result
.ptr
;
3496 image
->len
= result
.size
;
3502 * When directly falling back to add/add three-way merge, we read from
3503 * the current contents of the new_name. In no cases other than that
3504 * this function will be called.
3506 static int load_current(struct apply_state
*state
,
3507 struct image
*image
,
3508 struct patch
*patch
)
3510 struct strbuf buf
= STRBUF_INIT
;
3515 struct cache_entry
*ce
;
3516 char *name
= patch
->new_name
;
3517 unsigned mode
= patch
->new_mode
;
3520 die("BUG: patch to %s is not a creation", patch
->old_name
);
3522 pos
= cache_name_pos(name
, strlen(name
));
3524 return error(_("%s: does not exist in index"), name
);
3525 ce
= active_cache
[pos
];
3526 if (lstat(name
, &st
)) {
3527 if (errno
!= ENOENT
)
3528 return error_errno("%s", name
);
3529 if (checkout_target(&the_index
, ce
, &st
))
3532 if (verify_index_match(ce
, &st
))
3533 return error(_("%s: does not match index"), name
);
3535 status
= load_patch_target(state
, &buf
, ce
, &st
, name
, mode
);
3540 img
= strbuf_detach(&buf
, &len
);
3541 prepare_image(image
, img
, len
, !patch
->is_binary
);
3545 static int try_threeway(struct apply_state
*state
,
3546 struct image
*image
,
3547 struct patch
*patch
,
3549 const struct cache_entry
*ce
)
3551 struct object_id pre_oid
, post_oid
, our_oid
;
3552 struct strbuf buf
= STRBUF_INIT
;
3556 struct image tmp_image
;
3558 /* No point falling back to 3-way merge in these cases */
3559 if (patch
->is_delete
||
3560 S_ISGITLINK(patch
->old_mode
) || S_ISGITLINK(patch
->new_mode
))
3563 /* Preimage the patch was prepared for */
3565 write_sha1_file("", 0, blob_type
, pre_oid
.hash
);
3566 else if (get_sha1(patch
->old_sha1_prefix
, pre_oid
.hash
) ||
3567 read_blob_object(&buf
, &pre_oid
, patch
->old_mode
))
3568 return error(_("repository lacks the necessary blob to fall back on 3-way merge."));
3570 if (state
->apply_verbosity
> verbosity_silent
)
3571 fprintf(stderr
, _("Falling back to three-way merge...\n"));
3573 img
= strbuf_detach(&buf
, &len
);
3574 prepare_image(&tmp_image
, img
, len
, 1);
3575 /* Apply the patch to get the post image */
3576 if (apply_fragments(state
, &tmp_image
, patch
) < 0) {
3577 clear_image(&tmp_image
);
3580 /* post_oid is theirs */
3581 write_sha1_file(tmp_image
.buf
, tmp_image
.len
, blob_type
, post_oid
.hash
);
3582 clear_image(&tmp_image
);
3584 /* our_oid is ours */
3585 if (patch
->is_new
) {
3586 if (load_current(state
, &tmp_image
, patch
))
3587 return error(_("cannot read the current contents of '%s'"),
3590 if (load_preimage(state
, &tmp_image
, patch
, st
, ce
))
3591 return error(_("cannot read the current contents of '%s'"),
3594 write_sha1_file(tmp_image
.buf
, tmp_image
.len
, blob_type
, our_oid
.hash
);
3595 clear_image(&tmp_image
);
3597 /* in-core three-way merge between post and our using pre as base */
3598 status
= three_way_merge(image
, patch
->new_name
,
3599 &pre_oid
, &our_oid
, &post_oid
);
3601 if (state
->apply_verbosity
> verbosity_silent
)
3603 _("Failed to fall back on three-way merge...\n"));
3608 patch
->conflicted_threeway
= 1;
3610 oidclr(&patch
->threeway_stage
[0]);
3612 oidcpy(&patch
->threeway_stage
[0], &pre_oid
);
3613 oidcpy(&patch
->threeway_stage
[1], &our_oid
);
3614 oidcpy(&patch
->threeway_stage
[2], &post_oid
);
3615 if (state
->apply_verbosity
> verbosity_silent
)
3617 _("Applied patch to '%s' with conflicts.\n"),
3620 if (state
->apply_verbosity
> verbosity_silent
)
3622 _("Applied patch to '%s' cleanly.\n"),
3628 static int apply_data(struct apply_state
*state
, struct patch
*patch
,
3629 struct stat
*st
, const struct cache_entry
*ce
)
3633 if (load_preimage(state
, &image
, patch
, st
, ce
) < 0)
3636 if (patch
->direct_to_threeway
||
3637 apply_fragments(state
, &image
, patch
) < 0) {
3638 /* Note: with --reject, apply_fragments() returns 0 */
3639 if (!state
->threeway
|| try_threeway(state
, &image
, patch
, st
, ce
) < 0)
3642 patch
->result
= image
.buf
;
3643 patch
->resultsize
= image
.len
;
3644 add_to_fn_table(state
, patch
);
3645 free(image
.line_allocated
);
3647 if (0 < patch
->is_delete
&& patch
->resultsize
)
3648 return error(_("removal patch leaves file contents"));
3654 * If "patch" that we are looking at modifies or deletes what we have,
3655 * we would want it not to lose any local modification we have, either
3656 * in the working tree or in the index.
3658 * This also decides if a non-git patch is a creation patch or a
3659 * modification to an existing empty file. We do not check the state
3660 * of the current tree for a creation patch in this function; the caller
3661 * check_patch() separately makes sure (and errors out otherwise) that
3662 * the path the patch creates does not exist in the current tree.
3664 static int check_preimage(struct apply_state
*state
,
3665 struct patch
*patch
,
3666 struct cache_entry
**ce
,
3669 const char *old_name
= patch
->old_name
;
3670 struct patch
*previous
= NULL
;
3671 int stat_ret
= 0, status
;
3672 unsigned st_mode
= 0;
3677 assert(patch
->is_new
<= 0);
3678 previous
= previous_patch(state
, patch
, &status
);
3681 return error(_("path %s has been renamed/deleted"), old_name
);
3683 st_mode
= previous
->new_mode
;
3684 } else if (!state
->cached
) {
3685 stat_ret
= lstat(old_name
, st
);
3686 if (stat_ret
&& errno
!= ENOENT
)
3687 return error_errno("%s", old_name
);
3690 if (state
->check_index
&& !previous
) {
3691 int pos
= cache_name_pos(old_name
, strlen(old_name
));
3693 if (patch
->is_new
< 0)
3695 return error(_("%s: does not exist in index"), old_name
);
3697 *ce
= active_cache
[pos
];
3699 if (checkout_target(&the_index
, *ce
, st
))
3702 if (!state
->cached
&& verify_index_match(*ce
, st
))
3703 return error(_("%s: does not match index"), old_name
);
3705 st_mode
= (*ce
)->ce_mode
;
3706 } else if (stat_ret
< 0) {
3707 if (patch
->is_new
< 0)
3709 return error_errno("%s", old_name
);
3712 if (!state
->cached
&& !previous
)
3713 st_mode
= ce_mode_from_stat(*ce
, st
->st_mode
);
3715 if (patch
->is_new
< 0)
3717 if (!patch
->old_mode
)
3718 patch
->old_mode
= st_mode
;
3719 if ((st_mode
^ patch
->old_mode
) & S_IFMT
)
3720 return error(_("%s: wrong type"), old_name
);
3721 if (st_mode
!= patch
->old_mode
)
3722 warning(_("%s has type %o, expected %o"),
3723 old_name
, st_mode
, patch
->old_mode
);
3724 if (!patch
->new_mode
&& !patch
->is_delete
)
3725 patch
->new_mode
= st_mode
;
3730 patch
->is_delete
= 0;
3731 free(patch
->old_name
);
3732 patch
->old_name
= NULL
;
3737 #define EXISTS_IN_INDEX 1
3738 #define EXISTS_IN_WORKTREE 2
3740 static int check_to_create(struct apply_state
*state
,
3741 const char *new_name
,
3746 if (state
->check_index
&&
3747 cache_name_pos(new_name
, strlen(new_name
)) >= 0 &&
3749 return EXISTS_IN_INDEX
;
3753 if (!lstat(new_name
, &nst
)) {
3754 if (S_ISDIR(nst
.st_mode
) || ok_if_exists
)
3757 * A leading component of new_name might be a symlink
3758 * that is going to be removed with this patch, but
3759 * still pointing at somewhere that has the path.
3760 * In such a case, path "new_name" does not exist as
3761 * far as git is concerned.
3763 if (has_symlink_leading_path(new_name
, strlen(new_name
)))
3766 return EXISTS_IN_WORKTREE
;
3767 } else if ((errno
!= ENOENT
) && (errno
!= ENOTDIR
)) {
3768 return error_errno("%s", new_name
);
3773 static uintptr_t register_symlink_changes(struct apply_state
*state
,
3777 struct string_list_item
*ent
;
3779 ent
= string_list_lookup(&state
->symlink_changes
, path
);
3781 ent
= string_list_insert(&state
->symlink_changes
, path
);
3782 ent
->util
= (void *)0;
3784 ent
->util
= (void *)(what
| ((uintptr_t)ent
->util
));
3785 return (uintptr_t)ent
->util
;
3788 static uintptr_t check_symlink_changes(struct apply_state
*state
, const char *path
)
3790 struct string_list_item
*ent
;
3792 ent
= string_list_lookup(&state
->symlink_changes
, path
);
3795 return (uintptr_t)ent
->util
;
3798 static void prepare_symlink_changes(struct apply_state
*state
, struct patch
*patch
)
3800 for ( ; patch
; patch
= patch
->next
) {
3801 if ((patch
->old_name
&& S_ISLNK(patch
->old_mode
)) &&
3802 (patch
->is_rename
|| patch
->is_delete
))
3803 /* the symlink at patch->old_name is removed */
3804 register_symlink_changes(state
, patch
->old_name
, APPLY_SYMLINK_GOES_AWAY
);
3806 if (patch
->new_name
&& S_ISLNK(patch
->new_mode
))
3807 /* the symlink at patch->new_name is created or remains */
3808 register_symlink_changes(state
, patch
->new_name
, APPLY_SYMLINK_IN_RESULT
);
3812 static int path_is_beyond_symlink_1(struct apply_state
*state
, struct strbuf
*name
)
3815 unsigned int change
;
3817 while (--name
->len
&& name
->buf
[name
->len
] != '/')
3818 ; /* scan backwards */
3821 name
->buf
[name
->len
] = '\0';
3822 change
= check_symlink_changes(state
, name
->buf
);
3823 if (change
& APPLY_SYMLINK_IN_RESULT
)
3825 if (change
& APPLY_SYMLINK_GOES_AWAY
)
3827 * This cannot be "return 0", because we may
3828 * see a new one created at a higher level.
3832 /* otherwise, check the preimage */
3833 if (state
->check_index
) {
3834 struct cache_entry
*ce
;
3836 ce
= cache_file_exists(name
->buf
, name
->len
, ignore_case
);
3837 if (ce
&& S_ISLNK(ce
->ce_mode
))
3841 if (!lstat(name
->buf
, &st
) && S_ISLNK(st
.st_mode
))
3848 static int path_is_beyond_symlink(struct apply_state
*state
, const char *name_
)
3851 struct strbuf name
= STRBUF_INIT
;
3853 assert(*name_
!= '\0');
3854 strbuf_addstr(&name
, name_
);
3855 ret
= path_is_beyond_symlink_1(state
, &name
);
3856 strbuf_release(&name
);
3861 static int check_unsafe_path(struct patch
*patch
)
3863 const char *old_name
= NULL
;
3864 const char *new_name
= NULL
;
3865 if (patch
->is_delete
)
3866 old_name
= patch
->old_name
;
3867 else if (!patch
->is_new
&& !patch
->is_copy
)
3868 old_name
= patch
->old_name
;
3869 if (!patch
->is_delete
)
3870 new_name
= patch
->new_name
;
3872 if (old_name
&& !verify_path(old_name
))
3873 return error(_("invalid path '%s'"), old_name
);
3874 if (new_name
&& !verify_path(new_name
))
3875 return error(_("invalid path '%s'"), new_name
);
3880 * Check and apply the patch in-core; leave the result in patch->result
3881 * for the caller to write it out to the final destination.
3883 static int check_patch(struct apply_state
*state
, struct patch
*patch
)
3886 const char *old_name
= patch
->old_name
;
3887 const char *new_name
= patch
->new_name
;
3888 const char *name
= old_name
? old_name
: new_name
;
3889 struct cache_entry
*ce
= NULL
;
3890 struct patch
*tpatch
;
3894 patch
->rejected
= 1; /* we will drop this after we succeed */
3896 status
= check_preimage(state
, patch
, &ce
, &st
);
3899 old_name
= patch
->old_name
;
3902 * A type-change diff is always split into a patch to delete
3903 * old, immediately followed by a patch to create new (see
3904 * diff.c::run_diff()); in such a case it is Ok that the entry
3905 * to be deleted by the previous patch is still in the working
3906 * tree and in the index.
3908 * A patch to swap-rename between A and B would first rename A
3909 * to B and then rename B to A. While applying the first one,
3910 * the presence of B should not stop A from getting renamed to
3911 * B; ask to_be_deleted() about the later rename. Removal of
3912 * B and rename from A to B is handled the same way by asking
3915 if ((tpatch
= in_fn_table(state
, new_name
)) &&
3916 (was_deleted(tpatch
) || to_be_deleted(tpatch
)))
3922 ((0 < patch
->is_new
) || patch
->is_rename
|| patch
->is_copy
)) {
3923 int err
= check_to_create(state
, new_name
, ok_if_exists
);
3925 if (err
&& state
->threeway
) {
3926 patch
->direct_to_threeway
= 1;
3927 } else switch (err
) {
3930 case EXISTS_IN_INDEX
:
3931 return error(_("%s: already exists in index"), new_name
);
3933 case EXISTS_IN_WORKTREE
:
3934 return error(_("%s: already exists in working directory"),
3940 if (!patch
->new_mode
) {
3941 if (0 < patch
->is_new
)
3942 patch
->new_mode
= S_IFREG
| 0644;
3944 patch
->new_mode
= patch
->old_mode
;
3948 if (new_name
&& old_name
) {
3949 int same
= !strcmp(old_name
, new_name
);
3950 if (!patch
->new_mode
)
3951 patch
->new_mode
= patch
->old_mode
;
3952 if ((patch
->old_mode
^ patch
->new_mode
) & S_IFMT
) {
3954 return error(_("new mode (%o) of %s does not "
3955 "match old mode (%o)"),
3956 patch
->new_mode
, new_name
,
3959 return error(_("new mode (%o) of %s does not "
3960 "match old mode (%o) of %s"),
3961 patch
->new_mode
, new_name
,
3962 patch
->old_mode
, old_name
);
3966 if (!state
->unsafe_paths
&& check_unsafe_path(patch
))
3970 * An attempt to read from or delete a path that is beyond a
3971 * symbolic link will be prevented by load_patch_target() that
3972 * is called at the beginning of apply_data() so we do not
3973 * have to worry about a patch marked with "is_delete" bit
3974 * here. We however need to make sure that the patch result
3975 * is not deposited to a path that is beyond a symbolic link
3978 if (!patch
->is_delete
&& path_is_beyond_symlink(state
, patch
->new_name
))
3979 return error(_("affected file '%s' is beyond a symbolic link"),
3982 if (apply_data(state
, patch
, &st
, ce
) < 0)
3983 return error(_("%s: patch does not apply"), name
);
3984 patch
->rejected
= 0;
3988 static int check_patch_list(struct apply_state
*state
, struct patch
*patch
)
3992 prepare_symlink_changes(state
, patch
);
3993 prepare_fn_table(state
, patch
);
3996 if (state
->apply_verbosity
> verbosity_normal
)
3997 say_patch_name(stderr
,
3998 _("Checking patch %s..."), patch
);
3999 res
= check_patch(state
, patch
);
4003 patch
= patch
->next
;
4008 static int read_apply_cache(struct apply_state
*state
)
4010 if (state
->index_file
)
4011 return read_cache_from(state
->index_file
);
4013 return read_cache();
4016 /* This function tries to read the object name from the current index */
4017 static int get_current_oid(struct apply_state
*state
, const char *path
,
4018 struct object_id
*oid
)
4022 if (read_apply_cache(state
) < 0)
4024 pos
= cache_name_pos(path
, strlen(path
));
4027 oidcpy(oid
, &active_cache
[pos
]->oid
);
4031 static int preimage_oid_in_gitlink_patch(struct patch
*p
, struct object_id
*oid
)
4034 * A usable gitlink patch has only one fragment (hunk) that looks like:
4036 * -Subproject commit <old sha1>
4037 * +Subproject commit <new sha1>
4040 * -Subproject commit <old sha1>
4041 * for a removal patch.
4043 struct fragment
*hunk
= p
->fragments
;
4044 static const char heading
[] = "-Subproject commit ";
4047 if (/* does the patch have only one hunk? */
4048 hunk
&& !hunk
->next
&&
4049 /* is its preimage one line? */
4050 hunk
->oldpos
== 1 && hunk
->oldlines
== 1 &&
4051 /* does preimage begin with the heading? */
4052 (preimage
= memchr(hunk
->patch
, '\n', hunk
->size
)) != NULL
&&
4053 starts_with(++preimage
, heading
) &&
4054 /* does it record full SHA-1? */
4055 !get_oid_hex(preimage
+ sizeof(heading
) - 1, oid
) &&
4056 preimage
[sizeof(heading
) + GIT_SHA1_HEXSZ
- 1] == '\n' &&
4057 /* does the abbreviated name on the index line agree with it? */
4058 starts_with(preimage
+ sizeof(heading
) - 1, p
->old_sha1_prefix
))
4059 return 0; /* it all looks fine */
4061 /* we may have full object name on the index line */
4062 return get_oid_hex(p
->old_sha1_prefix
, oid
);
4065 /* Build an index that contains the just the files needed for a 3way merge */
4066 static int build_fake_ancestor(struct apply_state
*state
, struct patch
*list
)
4068 struct patch
*patch
;
4069 struct index_state result
= { NULL
};
4070 static struct lock_file lock
;
4073 /* Once we start supporting the reverse patch, it may be
4074 * worth showing the new sha1 prefix, but until then...
4076 for (patch
= list
; patch
; patch
= patch
->next
) {
4077 struct object_id oid
;
4078 struct cache_entry
*ce
;
4081 name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
4082 if (0 < patch
->is_new
)
4085 if (S_ISGITLINK(patch
->old_mode
)) {
4086 if (!preimage_oid_in_gitlink_patch(patch
, &oid
))
4087 ; /* ok, the textual part looks sane */
4089 return error(_("sha1 information is lacking or "
4090 "useless for submodule %s"), name
);
4091 } else if (!get_sha1_blob(patch
->old_sha1_prefix
, oid
.hash
)) {
4093 } else if (!patch
->lines_added
&& !patch
->lines_deleted
) {
4094 /* mode-only change: update the current */
4095 if (get_current_oid(state
, patch
->old_name
, &oid
))
4096 return error(_("mode change for %s, which is not "
4097 "in current HEAD"), name
);
4099 return error(_("sha1 information is lacking or useless "
4102 ce
= make_cache_entry(patch
->old_mode
, oid
.hash
, name
, 0, 0);
4104 return error(_("make_cache_entry failed for path '%s'"),
4106 if (add_index_entry(&result
, ce
, ADD_CACHE_OK_TO_ADD
)) {
4108 return error(_("could not add %s to temporary index"),
4113 hold_lock_file_for_update(&lock
, state
->fake_ancestor
, LOCK_DIE_ON_ERROR
);
4114 res
= write_locked_index(&result
, &lock
, COMMIT_LOCK
);
4115 discard_index(&result
);
4118 return error(_("could not write temporary index to %s"),
4119 state
->fake_ancestor
);
4124 static void stat_patch_list(struct apply_state
*state
, struct patch
*patch
)
4126 int files
, adds
, dels
;
4128 for (files
= adds
= dels
= 0 ; patch
; patch
= patch
->next
) {
4130 adds
+= patch
->lines_added
;
4131 dels
+= patch
->lines_deleted
;
4132 show_stats(state
, patch
);
4135 print_stat_summary(stdout
, files
, adds
, dels
);
4138 static void numstat_patch_list(struct apply_state
*state
,
4139 struct patch
*patch
)
4141 for ( ; patch
; patch
= patch
->next
) {
4143 name
= patch
->new_name
? patch
->new_name
: patch
->old_name
;
4144 if (patch
->is_binary
)
4147 printf("%d\t%d\t", patch
->lines_added
, patch
->lines_deleted
);
4148 write_name_quoted(name
, stdout
, state
->line_termination
);
4152 static void show_file_mode_name(const char *newdelete
, unsigned int mode
, const char *name
)
4155 printf(" %s mode %06o %s\n", newdelete
, mode
, name
);
4157 printf(" %s %s\n", newdelete
, name
);
4160 static void show_mode_change(struct patch
*p
, int show_name
)
4162 if (p
->old_mode
&& p
->new_mode
&& p
->old_mode
!= p
->new_mode
) {
4164 printf(" mode change %06o => %06o %s\n",
4165 p
->old_mode
, p
->new_mode
, p
->new_name
);
4167 printf(" mode change %06o => %06o\n",
4168 p
->old_mode
, p
->new_mode
);
4172 static void show_rename_copy(struct patch
*p
)
4174 const char *renamecopy
= p
->is_rename
? "rename" : "copy";
4175 const char *old
, *new;
4177 /* Find common prefix */
4181 const char *slash_old
, *slash_new
;
4182 slash_old
= strchr(old
, '/');
4183 slash_new
= strchr(new, '/');
4186 slash_old
- old
!= slash_new
- new ||
4187 memcmp(old
, new, slash_new
- new))
4189 old
= slash_old
+ 1;
4190 new = slash_new
+ 1;
4192 /* p->old_name thru old is the common prefix, and old and new
4193 * through the end of names are renames
4195 if (old
!= p
->old_name
)
4196 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy
,
4197 (int)(old
- p
->old_name
), p
->old_name
,
4198 old
, new, p
->score
);
4200 printf(" %s %s => %s (%d%%)\n", renamecopy
,
4201 p
->old_name
, p
->new_name
, p
->score
);
4202 show_mode_change(p
, 0);
4205 static void summary_patch_list(struct patch
*patch
)
4209 for (p
= patch
; p
; p
= p
->next
) {
4211 show_file_mode_name("create", p
->new_mode
, p
->new_name
);
4212 else if (p
->is_delete
)
4213 show_file_mode_name("delete", p
->old_mode
, p
->old_name
);
4215 if (p
->is_rename
|| p
->is_copy
)
4216 show_rename_copy(p
);
4219 printf(" rewrite %s (%d%%)\n",
4220 p
->new_name
, p
->score
);
4221 show_mode_change(p
, 0);
4224 show_mode_change(p
, 1);
4230 static void patch_stats(struct apply_state
*state
, struct patch
*patch
)
4232 int lines
= patch
->lines_added
+ patch
->lines_deleted
;
4234 if (lines
> state
->max_change
)
4235 state
->max_change
= lines
;
4236 if (patch
->old_name
) {
4237 int len
= quote_c_style(patch
->old_name
, NULL
, NULL
, 0);
4239 len
= strlen(patch
->old_name
);
4240 if (len
> state
->max_len
)
4241 state
->max_len
= len
;
4243 if (patch
->new_name
) {
4244 int len
= quote_c_style(patch
->new_name
, NULL
, NULL
, 0);
4246 len
= strlen(patch
->new_name
);
4247 if (len
> state
->max_len
)
4248 state
->max_len
= len
;
4252 static int remove_file(struct apply_state
*state
, struct patch
*patch
, int rmdir_empty
)
4254 if (state
->update_index
) {
4255 if (remove_file_from_cache(patch
->old_name
) < 0)
4256 return error(_("unable to remove %s from index"), patch
->old_name
);
4258 if (!state
->cached
) {
4259 if (!remove_or_warn(patch
->old_mode
, patch
->old_name
) && rmdir_empty
) {
4260 remove_path(patch
->old_name
);
4266 static int add_index_file(struct apply_state
*state
,
4273 struct cache_entry
*ce
;
4274 int namelen
= strlen(path
);
4275 unsigned ce_size
= cache_entry_size(namelen
);
4277 if (!state
->update_index
)
4280 ce
= xcalloc(1, ce_size
);
4281 memcpy(ce
->name
, path
, namelen
);
4282 ce
->ce_mode
= create_ce_mode(mode
);
4283 ce
->ce_flags
= create_ce_flags(0);
4284 ce
->ce_namelen
= namelen
;
4285 if (S_ISGITLINK(mode
)) {
4288 if (!skip_prefix(buf
, "Subproject commit ", &s
) ||
4289 get_oid_hex(s
, &ce
->oid
)) {
4291 return error(_("corrupt patch for submodule %s"), path
);
4294 if (!state
->cached
) {
4295 if (lstat(path
, &st
) < 0) {
4297 return error_errno(_("unable to stat newly "
4298 "created file '%s'"),
4301 fill_stat_cache_info(ce
, &st
);
4303 if (write_sha1_file(buf
, size
, blob_type
, ce
->oid
.hash
) < 0) {
4305 return error(_("unable to create backing store "
4306 "for newly created file %s"), path
);
4309 if (add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
) < 0) {
4311 return error(_("unable to add cache entry for %s"), path
);
4319 * -1 if an unrecoverable error happened
4320 * 0 if everything went well
4321 * 1 if a recoverable error happened
4323 static int try_create_file(const char *path
, unsigned int mode
, const char *buf
, unsigned long size
)
4326 struct strbuf nbuf
= STRBUF_INIT
;
4328 if (S_ISGITLINK(mode
)) {
4330 if (!lstat(path
, &st
) && S_ISDIR(st
.st_mode
))
4332 return !!mkdir(path
, 0777);
4335 if (has_symlinks
&& S_ISLNK(mode
))
4336 /* Although buf:size is counted string, it also is NUL
4339 return !!symlink(buf
, path
);
4341 fd
= open(path
, O_CREAT
| O_EXCL
| O_WRONLY
, (mode
& 0100) ? 0777 : 0666);
4345 if (convert_to_working_tree(path
, buf
, size
, &nbuf
)) {
4350 res
= write_in_full(fd
, buf
, size
) < 0;
4352 error_errno(_("failed to write to '%s'"), path
);
4353 strbuf_release(&nbuf
);
4355 if (close(fd
) < 0 && !res
)
4356 return error_errno(_("closing file '%s'"), path
);
4358 return res
? -1 : 0;
4362 * We optimistically assume that the directories exist,
4363 * which is true 99% of the time anyway. If they don't,
4364 * we create them and try again.
4370 static int create_one_file(struct apply_state
*state
,
4381 res
= try_create_file(path
, mode
, buf
, size
);
4387 if (errno
== ENOENT
) {
4388 if (safe_create_leading_directories(path
))
4390 res
= try_create_file(path
, mode
, buf
, size
);
4397 if (errno
== EEXIST
|| errno
== EACCES
) {
4398 /* We may be trying to create a file where a directory
4402 if (!lstat(path
, &st
) && (!S_ISDIR(st
.st_mode
) || !rmdir(path
)))
4406 if (errno
== EEXIST
) {
4407 unsigned int nr
= getpid();
4410 char newpath
[PATH_MAX
];
4411 mksnpath(newpath
, sizeof(newpath
), "%s~%u", path
, nr
);
4412 res
= try_create_file(newpath
, mode
, buf
, size
);
4416 if (!rename(newpath
, path
))
4418 unlink_or_warn(newpath
);
4421 if (errno
!= EEXIST
)
4426 return error_errno(_("unable to write file '%s' mode %o"),
4430 static int add_conflicted_stages_file(struct apply_state
*state
,
4431 struct patch
*patch
)
4434 unsigned ce_size
, mode
;
4435 struct cache_entry
*ce
;
4437 if (!state
->update_index
)
4439 namelen
= strlen(patch
->new_name
);
4440 ce_size
= cache_entry_size(namelen
);
4441 mode
= patch
->new_mode
? patch
->new_mode
: (S_IFREG
| 0644);
4443 remove_file_from_cache(patch
->new_name
);
4444 for (stage
= 1; stage
< 4; stage
++) {
4445 if (is_null_oid(&patch
->threeway_stage
[stage
- 1]))
4447 ce
= xcalloc(1, ce_size
);
4448 memcpy(ce
->name
, patch
->new_name
, namelen
);
4449 ce
->ce_mode
= create_ce_mode(mode
);
4450 ce
->ce_flags
= create_ce_flags(stage
);
4451 ce
->ce_namelen
= namelen
;
4452 oidcpy(&ce
->oid
, &patch
->threeway_stage
[stage
- 1]);
4453 if (add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
) < 0) {
4455 return error(_("unable to add cache entry for %s"),
4463 static int create_file(struct apply_state
*state
, struct patch
*patch
)
4465 char *path
= patch
->new_name
;
4466 unsigned mode
= patch
->new_mode
;
4467 unsigned long size
= patch
->resultsize
;
4468 char *buf
= patch
->result
;
4471 mode
= S_IFREG
| 0644;
4472 if (create_one_file(state
, path
, mode
, buf
, size
))
4475 if (patch
->conflicted_threeway
)
4476 return add_conflicted_stages_file(state
, patch
);
4478 return add_index_file(state
, path
, mode
, buf
, size
);
4481 /* phase zero is to remove, phase one is to create */
4482 static int write_out_one_result(struct apply_state
*state
,
4483 struct patch
*patch
,
4486 if (patch
->is_delete
> 0) {
4488 return remove_file(state
, patch
, 1);
4491 if (patch
->is_new
> 0 || patch
->is_copy
) {
4493 return create_file(state
, patch
);
4497 * Rename or modification boils down to the same
4498 * thing: remove the old, write the new
4501 return remove_file(state
, patch
, patch
->is_rename
);
4503 return create_file(state
, patch
);
4507 static int write_out_one_reject(struct apply_state
*state
, struct patch
*patch
)
4510 char namebuf
[PATH_MAX
];
4511 struct fragment
*frag
;
4513 struct strbuf sb
= STRBUF_INIT
;
4515 for (cnt
= 0, frag
= patch
->fragments
; frag
; frag
= frag
->next
) {
4516 if (!frag
->rejected
)
4522 if (state
->apply_verbosity
> verbosity_normal
)
4523 say_patch_name(stderr
,
4524 _("Applied patch %s cleanly."), patch
);
4528 /* This should not happen, because a removal patch that leaves
4529 * contents are marked "rejected" at the patch level.
4531 if (!patch
->new_name
)
4532 die(_("internal error"));
4534 /* Say this even without --verbose */
4535 strbuf_addf(&sb
, Q_("Applying patch %%s with %d reject...",
4536 "Applying patch %%s with %d rejects...",
4539 if (state
->apply_verbosity
> verbosity_silent
)
4540 say_patch_name(stderr
, sb
.buf
, patch
);
4541 strbuf_release(&sb
);
4543 cnt
= strlen(patch
->new_name
);
4544 if (ARRAY_SIZE(namebuf
) <= cnt
+ 5) {
4545 cnt
= ARRAY_SIZE(namebuf
) - 5;
4546 warning(_("truncating .rej filename to %.*s.rej"),
4547 cnt
- 1, patch
->new_name
);
4549 memcpy(namebuf
, patch
->new_name
, cnt
);
4550 memcpy(namebuf
+ cnt
, ".rej", 5);
4552 rej
= fopen(namebuf
, "w");
4554 return error_errno(_("cannot open %s"), namebuf
);
4556 /* Normal git tools never deal with .rej, so do not pretend
4557 * this is a git patch by saying --git or giving extended
4558 * headers. While at it, maybe please "kompare" that wants
4559 * the trailing TAB and some garbage at the end of line ;-).
4561 fprintf(rej
, "diff a/%s b/%s\t(rejected hunks)\n",
4562 patch
->new_name
, patch
->new_name
);
4563 for (cnt
= 1, frag
= patch
->fragments
;
4565 cnt
++, frag
= frag
->next
) {
4566 if (!frag
->rejected
) {
4567 if (state
->apply_verbosity
> verbosity_silent
)
4568 fprintf_ln(stderr
, _("Hunk #%d applied cleanly."), cnt
);
4571 if (state
->apply_verbosity
> verbosity_silent
)
4572 fprintf_ln(stderr
, _("Rejected hunk #%d."), cnt
);
4573 fprintf(rej
, "%.*s", frag
->size
, frag
->patch
);
4574 if (frag
->patch
[frag
->size
-1] != '\n')
4583 * -1 if an error happened
4584 * 0 if the patch applied cleanly
4585 * 1 if the patch did not apply cleanly
4587 static int write_out_results(struct apply_state
*state
, struct patch
*list
)
4592 struct string_list cpath
= STRING_LIST_INIT_DUP
;
4594 for (phase
= 0; phase
< 2; phase
++) {
4600 if (write_out_one_result(state
, l
, phase
)) {
4601 string_list_clear(&cpath
, 0);
4605 if (write_out_one_reject(state
, l
))
4607 if (l
->conflicted_threeway
) {
4608 string_list_append(&cpath
, l
->new_name
);
4618 struct string_list_item
*item
;
4620 string_list_sort(&cpath
);
4621 if (state
->apply_verbosity
> verbosity_silent
) {
4622 for_each_string_list_item(item
, &cpath
)
4623 fprintf(stderr
, "U %s\n", item
->string
);
4625 string_list_clear(&cpath
, 0);
4634 * Try to apply a patch.
4637 * -128 if a bad error happened (like patch unreadable)
4638 * -1 if patch did not apply and user cannot deal with it
4639 * 0 if the patch applied
4640 * 1 if the patch did not apply but user might fix it
4642 static int apply_patch(struct apply_state
*state
,
4644 const char *filename
,
4648 struct strbuf buf
= STRBUF_INIT
; /* owns the patch text */
4649 struct patch
*list
= NULL
, **listp
= &list
;
4650 int skipped_patch
= 0;
4653 state
->patch_input_file
= filename
;
4654 if (read_patch_file(&buf
, fd
) < 0)
4657 while (offset
< buf
.len
) {
4658 struct patch
*patch
;
4661 patch
= xcalloc(1, sizeof(*patch
));
4662 patch
->inaccurate_eof
= !!(options
& APPLY_OPT_INACCURATE_EOF
);
4663 patch
->recount
= !!(options
& APPLY_OPT_RECOUNT
);
4664 nr
= parse_chunk(state
, buf
.buf
+ offset
, buf
.len
- offset
, patch
);
4673 if (state
->apply_in_reverse
)
4674 reverse_patches(patch
);
4675 if (use_patch(state
, patch
)) {
4676 patch_stats(state
, patch
);
4678 listp
= &patch
->next
;
4681 if (state
->apply_verbosity
> verbosity_normal
)
4682 say_patch_name(stderr
, _("Skipped patch '%s'."), patch
);
4689 if (!list
&& !skipped_patch
) {
4690 error(_("unrecognized input"));
4695 if (state
->whitespace_error
&& (state
->ws_error_action
== die_on_ws_error
))
4698 state
->update_index
= state
->check_index
&& state
->apply
;
4699 if (state
->update_index
&& state
->newfd
< 0) {
4700 if (state
->index_file
)
4701 state
->newfd
= hold_lock_file_for_update(state
->lock_file
,
4705 state
->newfd
= hold_locked_index(state
->lock_file
, LOCK_DIE_ON_ERROR
);
4708 if (state
->check_index
&& read_apply_cache(state
) < 0) {
4709 error(_("unable to read index file"));
4714 if (state
->check
|| state
->apply
) {
4715 int r
= check_patch_list(state
, list
);
4720 if (r
< 0 && !state
->apply_with_reject
) {
4727 int write_res
= write_out_results(state
, list
);
4728 if (write_res
< 0) {
4732 if (write_res
> 0) {
4733 /* with --3way, we still need to write the index out */
4734 res
= state
->apply_with_reject
? -1 : 1;
4739 if (state
->fake_ancestor
&&
4740 build_fake_ancestor(state
, list
)) {
4745 if (state
->diffstat
&& state
->apply_verbosity
> verbosity_silent
)
4746 stat_patch_list(state
, list
);
4748 if (state
->numstat
&& state
->apply_verbosity
> verbosity_silent
)
4749 numstat_patch_list(state
, list
);
4751 if (state
->summary
&& state
->apply_verbosity
> verbosity_silent
)
4752 summary_patch_list(list
);
4755 free_patch_list(list
);
4756 strbuf_release(&buf
);
4757 string_list_clear(&state
->fn_table
, 0);
4761 static int apply_option_parse_exclude(const struct option
*opt
,
4762 const char *arg
, int unset
)
4764 struct apply_state
*state
= opt
->value
;
4765 add_name_limit(state
, arg
, 1);
4769 static int apply_option_parse_include(const struct option
*opt
,
4770 const char *arg
, int unset
)
4772 struct apply_state
*state
= opt
->value
;
4773 add_name_limit(state
, arg
, 0);
4774 state
->has_include
= 1;
4778 static int apply_option_parse_p(const struct option
*opt
,
4782 struct apply_state
*state
= opt
->value
;
4783 state
->p_value
= atoi(arg
);
4784 state
->p_value_known
= 1;
4788 static int apply_option_parse_space_change(const struct option
*opt
,
4789 const char *arg
, int unset
)
4791 struct apply_state
*state
= opt
->value
;
4793 state
->ws_ignore_action
= ignore_ws_none
;
4795 state
->ws_ignore_action
= ignore_ws_change
;
4799 static int apply_option_parse_whitespace(const struct option
*opt
,
4800 const char *arg
, int unset
)
4802 struct apply_state
*state
= opt
->value
;
4803 state
->whitespace_option
= arg
;
4804 if (parse_whitespace_option(state
, arg
))
4809 static int apply_option_parse_directory(const struct option
*opt
,
4810 const char *arg
, int unset
)
4812 struct apply_state
*state
= opt
->value
;
4813 strbuf_reset(&state
->root
);
4814 strbuf_addstr(&state
->root
, arg
);
4815 strbuf_complete(&state
->root
, '/');
4819 int apply_all_patches(struct apply_state
*state
,
4829 for (i
= 0; i
< argc
; i
++) {
4830 const char *arg
= argv
[i
];
4831 char *to_free
= NULL
;
4834 if (!strcmp(arg
, "-")) {
4835 res
= apply_patch(state
, 0, "<stdin>", options
);
4842 arg
= to_free
= prefix_filename(state
->prefix
, arg
);
4844 fd
= open(arg
, O_RDONLY
);
4846 error(_("can't open patch '%s': %s"), arg
, strerror(errno
));
4852 set_default_whitespace_mode(state
);
4853 res
= apply_patch(state
, fd
, arg
, options
);
4860 set_default_whitespace_mode(state
);
4862 res
= apply_patch(state
, 0, "<stdin>", options
);
4868 if (state
->whitespace_error
) {
4869 if (state
->squelch_whitespace_errors
&&
4870 state
->squelch_whitespace_errors
< state
->whitespace_error
) {
4872 state
->whitespace_error
- state
->squelch_whitespace_errors
;
4873 warning(Q_("squelched %d whitespace error",
4874 "squelched %d whitespace errors",
4878 if (state
->ws_error_action
== die_on_ws_error
) {
4879 error(Q_("%d line adds whitespace errors.",
4880 "%d lines add whitespace errors.",
4881 state
->whitespace_error
),
4882 state
->whitespace_error
);
4886 if (state
->applied_after_fixing_ws
&& state
->apply
)
4887 warning(Q_("%d line applied after"
4888 " fixing whitespace errors.",
4889 "%d lines applied after"
4890 " fixing whitespace errors.",
4891 state
->applied_after_fixing_ws
),
4892 state
->applied_after_fixing_ws
);
4893 else if (state
->whitespace_error
)
4894 warning(Q_("%d line adds whitespace errors.",
4895 "%d lines add whitespace errors.",
4896 state
->whitespace_error
),
4897 state
->whitespace_error
);
4900 if (state
->update_index
) {
4901 res
= write_locked_index(&the_index
, state
->lock_file
, COMMIT_LOCK
);
4903 error(_("Unable to write new index file"));
4913 if (state
->newfd
>= 0) {
4914 rollback_lock_file(state
->lock_file
);
4918 if (state
->apply_verbosity
<= verbosity_silent
) {
4919 set_error_routine(state
->saved_error_routine
);
4920 set_warn_routine(state
->saved_warn_routine
);
4925 return (res
== -1 ? 1 : 128);
4928 int apply_parse_options(int argc
, const char **argv
,
4929 struct apply_state
*state
,
4930 int *force_apply
, int *options
,
4931 const char * const *apply_usage
)
4933 struct option builtin_apply_options
[] = {
4934 { OPTION_CALLBACK
, 0, "exclude", state
, N_("path"),
4935 N_("don't apply changes matching the given path"),
4936 0, apply_option_parse_exclude
},
4937 { OPTION_CALLBACK
, 0, "include", state
, N_("path"),
4938 N_("apply changes matching the given path"),
4939 0, apply_option_parse_include
},
4940 { OPTION_CALLBACK
, 'p', NULL
, state
, N_("num"),
4941 N_("remove <num> leading slashes from traditional diff paths"),
4942 0, apply_option_parse_p
},
4943 OPT_BOOL(0, "no-add", &state
->no_add
,
4944 N_("ignore additions made by the patch")),
4945 OPT_BOOL(0, "stat", &state
->diffstat
,
4946 N_("instead of applying the patch, output diffstat for the input")),
4947 OPT_NOOP_NOARG(0, "allow-binary-replacement"),
4948 OPT_NOOP_NOARG(0, "binary"),
4949 OPT_BOOL(0, "numstat", &state
->numstat
,
4950 N_("show number of added and deleted lines in decimal notation")),
4951 OPT_BOOL(0, "summary", &state
->summary
,
4952 N_("instead of applying the patch, output a summary for the input")),
4953 OPT_BOOL(0, "check", &state
->check
,
4954 N_("instead of applying the patch, see if the patch is applicable")),
4955 OPT_BOOL(0, "index", &state
->check_index
,
4956 N_("make sure the patch is applicable to the current index")),
4957 OPT_BOOL(0, "cached", &state
->cached
,
4958 N_("apply a patch without touching the working tree")),
4959 OPT_BOOL(0, "unsafe-paths", &state
->unsafe_paths
,
4960 N_("accept a patch that touches outside the working area")),
4961 OPT_BOOL(0, "apply", force_apply
,
4962 N_("also apply the patch (use with --stat/--summary/--check)")),
4963 OPT_BOOL('3', "3way", &state
->threeway
,
4964 N_( "attempt three-way merge if a patch does not apply")),
4965 OPT_FILENAME(0, "build-fake-ancestor", &state
->fake_ancestor
,
4966 N_("build a temporary index based on embedded index information")),
4967 /* Think twice before adding "--nul" synonym to this */
4968 OPT_SET_INT('z', NULL
, &state
->line_termination
,
4969 N_("paths are separated with NUL character"), '\0'),
4970 OPT_INTEGER('C', NULL
, &state
->p_context
,
4971 N_("ensure at least <n> lines of context match")),
4972 { OPTION_CALLBACK
, 0, "whitespace", state
, N_("action"),
4973 N_("detect new or modified lines that have whitespace errors"),
4974 0, apply_option_parse_whitespace
},
4975 { OPTION_CALLBACK
, 0, "ignore-space-change", state
, NULL
,
4976 N_("ignore changes in whitespace when finding context"),
4977 PARSE_OPT_NOARG
, apply_option_parse_space_change
},
4978 { OPTION_CALLBACK
, 0, "ignore-whitespace", state
, NULL
,
4979 N_("ignore changes in whitespace when finding context"),
4980 PARSE_OPT_NOARG
, apply_option_parse_space_change
},
4981 OPT_BOOL('R', "reverse", &state
->apply_in_reverse
,
4982 N_("apply the patch in reverse")),
4983 OPT_BOOL(0, "unidiff-zero", &state
->unidiff_zero
,
4984 N_("don't expect at least one line of context")),
4985 OPT_BOOL(0, "reject", &state
->apply_with_reject
,
4986 N_("leave the rejected hunks in corresponding *.rej files")),
4987 OPT_BOOL(0, "allow-overlap", &state
->allow_overlap
,
4988 N_("allow overlapping hunks")),
4989 OPT__VERBOSE(&state
->apply_verbosity
, N_("be verbose")),
4990 OPT_BIT(0, "inaccurate-eof", options
,
4991 N_("tolerate incorrectly detected missing new-line at the end of file"),
4992 APPLY_OPT_INACCURATE_EOF
),
4993 OPT_BIT(0, "recount", options
,
4994 N_("do not trust the line counts in the hunk headers"),
4996 { OPTION_CALLBACK
, 0, "directory", state
, N_("root"),
4997 N_("prepend <root> to all filenames"),
4998 0, apply_option_parse_directory
},
5002 return parse_options(argc
, argv
, state
->prefix
, builtin_apply_options
, apply_usage
, 0);