4 * Copyright (C) Linus Torvalds, 2005
6 * This applies patches on top of some (arbitrary) version of the SCM.
12 #include "object-store.h"
17 #include "xdiff-interface.h"
20 #include "parse-options.h"
25 static void git_apply_config(void)
27 git_config_get_string_const("apply.whitespace", &apply_default_whitespace
);
28 git_config_get_string_const("apply.ignorewhitespace", &apply_default_ignorewhitespace
);
29 git_config(git_default_config
, NULL
);
32 static int parse_whitespace_option(struct apply_state
*state
, const char *option
)
35 state
->ws_error_action
= warn_on_ws_error
;
38 if (!strcmp(option
, "warn")) {
39 state
->ws_error_action
= warn_on_ws_error
;
42 if (!strcmp(option
, "nowarn")) {
43 state
->ws_error_action
= nowarn_ws_error
;
46 if (!strcmp(option
, "error")) {
47 state
->ws_error_action
= die_on_ws_error
;
50 if (!strcmp(option
, "error-all")) {
51 state
->ws_error_action
= die_on_ws_error
;
52 state
->squelch_whitespace_errors
= 0;
55 if (!strcmp(option
, "strip") || !strcmp(option
, "fix")) {
56 state
->ws_error_action
= correct_ws_error
;
59 return error(_("unrecognized whitespace option '%s'"), option
);
62 static int parse_ignorewhitespace_option(struct apply_state
*state
,
65 if (!option
|| !strcmp(option
, "no") ||
66 !strcmp(option
, "false") || !strcmp(option
, "never") ||
67 !strcmp(option
, "none")) {
68 state
->ws_ignore_action
= ignore_ws_none
;
71 if (!strcmp(option
, "change")) {
72 state
->ws_ignore_action
= ignore_ws_change
;
75 return error(_("unrecognized whitespace ignore option '%s'"), option
);
78 int init_apply_state(struct apply_state
*state
,
79 struct repository
*repo
,
82 memset(state
, 0, sizeof(*state
));
83 state
->prefix
= prefix
;
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
->ita_only
&& (state
->check_index
|| is_not_gitdir
))
149 if (state
->check_index
)
150 state
->unsafe_paths
= 0;
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 unsigned int crlf_in_old
:1;
223 struct fragment
*fragments
;
226 char old_oid_prefix
[GIT_MAX_HEXSZ
+ 1];
227 char new_oid_prefix
[GIT_MAX_HEXSZ
+ 1];
230 /* three-way fallback result */
231 struct object_id threeway_stage
[3];
234 static void free_fragment_list(struct fragment
*list
)
237 struct fragment
*next
= list
->next
;
238 if (list
->free_patch
)
239 free((char *)list
->patch
);
245 static void free_patch(struct patch
*patch
)
247 free_fragment_list(patch
->fragments
);
248 free(patch
->def_name
);
249 free(patch
->old_name
);
250 free(patch
->new_name
);
255 static void free_patch_list(struct patch
*list
)
258 struct patch
*next
= list
->next
;
265 * A line in a file, len-bytes long (includes the terminating LF,
266 * except for an incomplete line at the end if the file ends with
267 * one), and its contents hashes to 'hash'.
273 #define LINE_COMMON 1
274 #define LINE_PATCHED 2
278 * This represents a "file", which is an array of "lines".
285 struct line
*line_allocated
;
289 static uint32_t hash_line(const char *cp
, size_t len
)
293 for (i
= 0, h
= 0; i
< len
; i
++) {
294 if (!isspace(cp
[i
])) {
295 h
= h
* 3 + (cp
[i
] & 0xff);
302 * Compare lines s1 of length n1 and s2 of length n2, ignoring
303 * whitespace difference. Returns 1 if they match, 0 otherwise
305 static int fuzzy_matchlines(const char *s1
, size_t n1
,
306 const char *s2
, size_t n2
)
308 const char *end1
= s1
+ n1
;
309 const char *end2
= s2
+ n2
;
311 /* ignore line endings */
312 while (s1
< end1
&& (end1
[-1] == '\r' || end1
[-1] == '\n'))
314 while (s2
< end2
&& (end2
[-1] == '\r' || end2
[-1] == '\n'))
317 while (s1
< end1
&& s2
< end2
) {
320 * Skip whitespace. We check on both buffers
321 * because we don't want "a b" to match "ab".
325 while (s1
< end1
&& isspace(*s1
))
327 while (s2
< end2
&& isspace(*s2
))
329 } else if (*s1
++ != *s2
++)
333 /* If we reached the end on one side only, lines don't match. */
334 return s1
== end1
&& s2
== end2
;
337 static void add_line_info(struct image
*img
, const char *bol
, size_t len
, unsigned flag
)
339 ALLOC_GROW(img
->line_allocated
, img
->nr
+ 1, img
->alloc
);
340 img
->line_allocated
[img
->nr
].len
= len
;
341 img
->line_allocated
[img
->nr
].hash
= hash_line(bol
, len
);
342 img
->line_allocated
[img
->nr
].flag
= flag
;
347 * "buf" has the file contents to be patched (read from various sources).
348 * attach it to "image" and add line-based index to it.
349 * "image" now owns the "buf".
351 static void prepare_image(struct image
*image
, char *buf
, size_t len
,
352 int prepare_linetable
)
356 memset(image
, 0, sizeof(*image
));
360 if (!prepare_linetable
)
363 ep
= image
->buf
+ image
->len
;
367 for (next
= cp
; next
< ep
&& *next
!= '\n'; next
++)
371 add_line_info(image
, cp
, next
- cp
, 0);
374 image
->line
= image
->line_allocated
;
377 static void clear_image(struct image
*image
)
380 free(image
->line_allocated
);
381 memset(image
, 0, sizeof(*image
));
384 /* fmt must contain _one_ %s and no other substitution */
385 static void say_patch_name(FILE *output
, const char *fmt
, struct patch
*patch
)
387 struct strbuf sb
= STRBUF_INIT
;
389 if (patch
->old_name
&& patch
->new_name
&&
390 strcmp(patch
->old_name
, patch
->new_name
)) {
391 quote_c_style(patch
->old_name
, &sb
, NULL
, 0);
392 strbuf_addstr(&sb
, " => ");
393 quote_c_style(patch
->new_name
, &sb
, NULL
, 0);
395 const char *n
= patch
->new_name
;
398 quote_c_style(n
, &sb
, NULL
, 0);
400 fprintf(output
, fmt
, sb
.buf
);
407 static int read_patch_file(struct strbuf
*sb
, int fd
)
409 if (strbuf_read(sb
, fd
, 0) < 0)
410 return error_errno("git apply: failed to read");
413 * Make sure that we have some slop in the buffer
414 * so that we can do speculative "memcmp" etc, and
415 * see to it that it is NUL-filled.
417 strbuf_grow(sb
, SLOP
);
418 memset(sb
->buf
+ sb
->len
, 0, SLOP
);
422 static unsigned long linelen(const char *buffer
, unsigned long size
)
424 unsigned long len
= 0;
427 if (*buffer
++ == '\n')
433 static int is_dev_null(const char *str
)
435 return skip_prefix(str
, "/dev/null", &str
) && isspace(*str
);
441 static int name_terminate(int c
, int terminate
)
443 if (c
== ' ' && !(terminate
& TERM_SPACE
))
445 if (c
== '\t' && !(terminate
& TERM_TAB
))
451 /* remove double slashes to make --index work with such filenames */
452 static char *squash_slash(char *name
)
460 if ((name
[j
++] = name
[i
++]) == '/')
461 while (name
[i
] == '/')
468 static char *find_name_gnu(struct apply_state
*state
,
473 struct strbuf name
= STRBUF_INIT
;
477 * Proposed "new-style" GNU patch/diff format; see
478 * http://marc.info/?l=git&m=112927316408690&w=2
480 if (unquote_c_style(&name
, line
, NULL
)) {
481 strbuf_release(&name
);
485 for (cp
= name
.buf
; p_value
; p_value
--) {
486 cp
= strchr(cp
, '/');
488 strbuf_release(&name
);
494 strbuf_remove(&name
, 0, cp
- name
.buf
);
496 strbuf_insert(&name
, 0, state
->root
.buf
, state
->root
.len
);
497 return squash_slash(strbuf_detach(&name
, NULL
));
500 static size_t sane_tz_len(const char *line
, size_t len
)
504 if (len
< strlen(" +0500") || line
[len
-strlen(" +0500")] != ' ')
506 tz
= line
+ len
- strlen(" +0500");
508 if (tz
[1] != '+' && tz
[1] != '-')
511 for (p
= tz
+ 2; p
!= line
+ len
; p
++)
515 return line
+ len
- tz
;
518 static size_t tz_with_colon_len(const char *line
, size_t len
)
522 if (len
< strlen(" +08:00") || line
[len
- strlen(":00")] != ':')
524 tz
= line
+ len
- strlen(" +08:00");
526 if (tz
[0] != ' ' || (tz
[1] != '+' && tz
[1] != '-'))
529 if (!isdigit(*p
++) || !isdigit(*p
++) || *p
++ != ':' ||
530 !isdigit(*p
++) || !isdigit(*p
++))
533 return line
+ len
- tz
;
536 static size_t date_len(const char *line
, size_t len
)
538 const char *date
, *p
;
540 if (len
< strlen("72-02-05") || line
[len
-strlen("-05")] != '-')
542 p
= date
= line
+ len
- strlen("72-02-05");
544 if (!isdigit(*p
++) || !isdigit(*p
++) || *p
++ != '-' ||
545 !isdigit(*p
++) || !isdigit(*p
++) || *p
++ != '-' ||
546 !isdigit(*p
++) || !isdigit(*p
++)) /* Not a date. */
549 if (date
- line
>= strlen("19") &&
550 isdigit(date
[-1]) && isdigit(date
[-2])) /* 4-digit year */
551 date
-= strlen("19");
553 return line
+ len
- date
;
556 static size_t short_time_len(const char *line
, size_t len
)
558 const char *time
, *p
;
560 if (len
< strlen(" 07:01:32") || line
[len
-strlen(":32")] != ':')
562 p
= time
= line
+ len
- strlen(" 07:01:32");
564 /* Permit 1-digit hours? */
566 !isdigit(*p
++) || !isdigit(*p
++) || *p
++ != ':' ||
567 !isdigit(*p
++) || !isdigit(*p
++) || *p
++ != ':' ||
568 !isdigit(*p
++) || !isdigit(*p
++)) /* Not a time. */
571 return line
+ len
- time
;
574 static size_t fractional_time_len(const char *line
, size_t len
)
579 /* Expected format: 19:41:17.620000023 */
580 if (!len
|| !isdigit(line
[len
- 1]))
584 /* Fractional seconds. */
585 while (p
> line
&& isdigit(*p
))
590 /* Hours, minutes, and whole seconds. */
591 n
= short_time_len(line
, p
- line
);
595 return line
+ len
- p
+ n
;
598 static size_t trailing_spaces_len(const char *line
, size_t len
)
602 /* Expected format: ' ' x (1 or more) */
603 if (!len
|| line
[len
- 1] != ' ')
610 return line
+ len
- (p
+ 1);
617 static size_t diff_timestamp_len(const char *line
, size_t len
)
619 const char *end
= line
+ len
;
623 * Posix: 2010-07-05 19:41:17
624 * GNU: 2010-07-05 19:41:17.620000023 -0500
627 if (!isdigit(end
[-1]))
630 n
= sane_tz_len(line
, end
- line
);
632 n
= tz_with_colon_len(line
, end
- line
);
635 n
= short_time_len(line
, end
- line
);
637 n
= fractional_time_len(line
, end
- line
);
640 n
= date_len(line
, end
- line
);
641 if (!n
) /* No date. Too bad. */
645 if (end
== line
) /* No space before date. */
647 if (end
[-1] == '\t') { /* Success! */
649 return line
+ len
- end
;
651 if (end
[-1] != ' ') /* No space before date. */
654 /* Whitespace damage. */
655 end
-= trailing_spaces_len(line
, end
- line
);
656 return line
+ len
- end
;
659 static char *find_name_common(struct apply_state
*state
,
667 const char *start
= NULL
;
671 while (line
!= end
) {
674 if (!end
&& isspace(c
)) {
677 if (name_terminate(c
, terminate
))
681 if (c
== '/' && !--p_value
)
685 return squash_slash(xstrdup_or_null(def
));
688 return squash_slash(xstrdup_or_null(def
));
691 * Generally we prefer the shorter name, especially
692 * if the other one is just a variation of that with
693 * something else tacked on to the end (ie "file.orig"
697 int deflen
= strlen(def
);
698 if (deflen
< len
&& !strncmp(start
, def
, deflen
))
699 return squash_slash(xstrdup(def
));
702 if (state
->root
.len
) {
703 char *ret
= xstrfmt("%s%.*s", state
->root
.buf
, len
, start
);
704 return squash_slash(ret
);
707 return squash_slash(xmemdupz(start
, len
));
710 static char *find_name(struct apply_state
*state
,
717 char *name
= find_name_gnu(state
, line
, def
, p_value
);
722 return find_name_common(state
, line
, def
, p_value
, NULL
, terminate
);
725 static char *find_name_traditional(struct apply_state
*state
,
734 char *name
= find_name_gnu(state
, line
, def
, p_value
);
739 len
= strchrnul(line
, '\n') - line
;
740 date_len
= diff_timestamp_len(line
, len
);
742 return find_name_common(state
, line
, def
, p_value
, NULL
, TERM_TAB
);
745 return find_name_common(state
, line
, def
, p_value
, line
+ len
, 0);
749 * Given the string after "--- " or "+++ ", guess the appropriate
750 * p_value for the given patch.
752 static int guess_p_value(struct apply_state
*state
, const char *nameline
)
757 if (is_dev_null(nameline
))
759 name
= find_name_traditional(state
, nameline
, NULL
, 0);
762 cp
= strchr(name
, '/');
765 else if (state
->prefix
) {
767 * Does it begin with "a/$our-prefix" and such? Then this is
768 * very likely to apply to our directory.
770 if (starts_with(name
, state
->prefix
))
771 val
= count_slashes(state
->prefix
);
774 if (starts_with(cp
, state
->prefix
))
775 val
= count_slashes(state
->prefix
) + 1;
783 * Does the ---/+++ line have the POSIX timestamp after the last HT?
784 * GNU diff puts epoch there to signal a creation/deletion event. Is
785 * this such a timestamp?
787 static int has_epoch_timestamp(const char *nameline
)
790 * We are only interested in epoch timestamp; any non-zero
791 * fraction cannot be one, hence "(\.0+)?" in the regexp below.
792 * For the same reason, the date must be either 1969-12-31 or
793 * 1970-01-01, and the seconds part must be "00".
795 const char stamp_regexp
[] =
796 "^[0-2][0-9]:([0-5][0-9]):00(\\.0+)?"
798 "([-+][0-2][0-9]:?[0-5][0-9])\n";
799 const char *timestamp
= NULL
, *cp
, *colon
;
800 static regex_t
*stamp
;
802 int zoneoffset
, epoch_hour
, hour
, minute
;
805 for (cp
= nameline
; *cp
!= '\n'; cp
++) {
813 * YYYY-MM-DD hh:mm:ss must be from either 1969-12-31
814 * (west of GMT) or 1970-01-01 (east of GMT)
816 if (skip_prefix(timestamp
, "1969-12-31 ", ×tamp
))
818 else if (skip_prefix(timestamp
, "1970-01-01 ", ×tamp
))
824 stamp
= xmalloc(sizeof(*stamp
));
825 if (regcomp(stamp
, stamp_regexp
, REG_EXTENDED
)) {
826 warning(_("Cannot prepare timestamp regexp %s"),
832 status
= regexec(stamp
, timestamp
, ARRAY_SIZE(m
), m
, 0);
834 if (status
!= REG_NOMATCH
)
835 warning(_("regexec returned %d for input: %s"),
840 hour
= strtol(timestamp
, NULL
, 10);
841 minute
= strtol(timestamp
+ m
[1].rm_so
, NULL
, 10);
843 zoneoffset
= strtol(timestamp
+ m
[3].rm_so
+ 1, (char **) &colon
, 10);
845 zoneoffset
= zoneoffset
* 60 + strtol(colon
+ 1, NULL
, 10);
847 zoneoffset
= (zoneoffset
/ 100) * 60 + (zoneoffset
% 100);
848 if (timestamp
[m
[3].rm_so
] == '-')
849 zoneoffset
= -zoneoffset
;
851 return hour
* 60 + minute
- zoneoffset
== epoch_hour
* 60;
855 * Get the name etc info from the ---/+++ lines of a traditional patch header
857 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
858 * files, we can happily check the index for a match, but for creating a
859 * new file we should try to match whatever "patch" does. I have no idea.
861 static int parse_traditional_patch(struct apply_state
*state
,
868 first
+= 4; /* skip "--- " */
869 second
+= 4; /* skip "+++ " */
870 if (!state
->p_value_known
) {
872 p
= guess_p_value(state
, first
);
873 q
= guess_p_value(state
, second
);
875 if (0 <= p
&& p
== q
) {
877 state
->p_value_known
= 1;
880 if (is_dev_null(first
)) {
882 patch
->is_delete
= 0;
883 name
= find_name_traditional(state
, second
, NULL
, state
->p_value
);
884 patch
->new_name
= name
;
885 } else if (is_dev_null(second
)) {
887 patch
->is_delete
= 1;
888 name
= find_name_traditional(state
, first
, NULL
, state
->p_value
);
889 patch
->old_name
= name
;
892 first_name
= find_name_traditional(state
, first
, NULL
, state
->p_value
);
893 name
= find_name_traditional(state
, second
, first_name
, state
->p_value
);
895 if (has_epoch_timestamp(first
)) {
897 patch
->is_delete
= 0;
898 patch
->new_name
= name
;
899 } else if (has_epoch_timestamp(second
)) {
901 patch
->is_delete
= 1;
902 patch
->old_name
= name
;
904 patch
->old_name
= name
;
905 patch
->new_name
= xstrdup_or_null(name
);
909 return error(_("unable to find filename in patch at line %d"), state
->linenr
);
914 static int gitdiff_hdrend(struct apply_state
*state
,
922 * We're anal about diff header consistency, to make
923 * sure that we don't end up having strange ambiguous
924 * patches floating around.
926 * As a result, gitdiff_{old|new}name() will check
927 * their names against any previous information, just
930 #define DIFF_OLD_NAME 0
931 #define DIFF_NEW_NAME 1
933 static int gitdiff_verify_name(struct apply_state
*state
,
939 if (!*name
&& !isnull
) {
940 *name
= find_name(state
, line
, NULL
, state
->p_value
, TERM_TAB
);
947 return error(_("git apply: bad git-diff - expected /dev/null, got %s on line %d"),
948 *name
, state
->linenr
);
949 another
= find_name(state
, line
, NULL
, state
->p_value
, TERM_TAB
);
950 if (!another
|| strcmp(another
, *name
)) {
952 return error((side
== DIFF_NEW_NAME
) ?
953 _("git apply: bad git-diff - inconsistent new filename on line %d") :
954 _("git apply: bad git-diff - inconsistent old filename on line %d"), state
->linenr
);
958 if (!is_dev_null(line
))
959 return error(_("git apply: bad git-diff - expected /dev/null on line %d"), state
->linenr
);
965 static int gitdiff_oldname(struct apply_state
*state
,
969 return gitdiff_verify_name(state
, line
,
970 patch
->is_new
, &patch
->old_name
,
974 static int gitdiff_newname(struct apply_state
*state
,
978 return gitdiff_verify_name(state
, line
,
979 patch
->is_delete
, &patch
->new_name
,
983 static int parse_mode_line(const char *line
, int linenr
, unsigned int *mode
)
986 *mode
= strtoul(line
, &end
, 8);
987 if (end
== line
|| !isspace(*end
))
988 return error(_("invalid mode on line %d: %s"), linenr
, line
);
992 static int gitdiff_oldmode(struct apply_state
*state
,
996 return parse_mode_line(line
, state
->linenr
, &patch
->old_mode
);
999 static int gitdiff_newmode(struct apply_state
*state
,
1001 struct patch
*patch
)
1003 return parse_mode_line(line
, state
->linenr
, &patch
->new_mode
);
1006 static int gitdiff_delete(struct apply_state
*state
,
1008 struct patch
*patch
)
1010 patch
->is_delete
= 1;
1011 free(patch
->old_name
);
1012 patch
->old_name
= xstrdup_or_null(patch
->def_name
);
1013 return gitdiff_oldmode(state
, line
, patch
);
1016 static int gitdiff_newfile(struct apply_state
*state
,
1018 struct patch
*patch
)
1021 free(patch
->new_name
);
1022 patch
->new_name
= xstrdup_or_null(patch
->def_name
);
1023 return gitdiff_newmode(state
, line
, patch
);
1026 static int gitdiff_copysrc(struct apply_state
*state
,
1028 struct patch
*patch
)
1031 free(patch
->old_name
);
1032 patch
->old_name
= find_name(state
, line
, NULL
, state
->p_value
? state
->p_value
- 1 : 0, 0);
1036 static int gitdiff_copydst(struct apply_state
*state
,
1038 struct patch
*patch
)
1041 free(patch
->new_name
);
1042 patch
->new_name
= find_name(state
, line
, NULL
, state
->p_value
? state
->p_value
- 1 : 0, 0);
1046 static int gitdiff_renamesrc(struct apply_state
*state
,
1048 struct patch
*patch
)
1050 patch
->is_rename
= 1;
1051 free(patch
->old_name
);
1052 patch
->old_name
= find_name(state
, line
, NULL
, state
->p_value
? state
->p_value
- 1 : 0, 0);
1056 static int gitdiff_renamedst(struct apply_state
*state
,
1058 struct patch
*patch
)
1060 patch
->is_rename
= 1;
1061 free(patch
->new_name
);
1062 patch
->new_name
= find_name(state
, line
, NULL
, state
->p_value
? state
->p_value
- 1 : 0, 0);
1066 static int gitdiff_similarity(struct apply_state
*state
,
1068 struct patch
*patch
)
1070 unsigned long val
= strtoul(line
, NULL
, 10);
1076 static int gitdiff_dissimilarity(struct apply_state
*state
,
1078 struct patch
*patch
)
1080 unsigned long val
= strtoul(line
, NULL
, 10);
1086 static int gitdiff_index(struct apply_state
*state
,
1088 struct patch
*patch
)
1091 * index line is N hexadecimal, "..", N hexadecimal,
1092 * and optional space with octal mode.
1094 const char *ptr
, *eol
;
1096 const unsigned hexsz
= the_hash_algo
->hexsz
;
1098 ptr
= strchr(line
, '.');
1099 if (!ptr
|| ptr
[1] != '.' || hexsz
< ptr
- line
)
1102 memcpy(patch
->old_oid_prefix
, line
, len
);
1103 patch
->old_oid_prefix
[len
] = 0;
1106 ptr
= strchr(line
, ' ');
1107 eol
= strchrnul(line
, '\n');
1109 if (!ptr
|| eol
< ptr
)
1115 memcpy(patch
->new_oid_prefix
, line
, len
);
1116 patch
->new_oid_prefix
[len
] = 0;
1118 return gitdiff_oldmode(state
, ptr
+ 1, patch
);
1123 * This is normal for a diff that doesn't change anything: we'll fall through
1124 * into the next diff. Tell the parser to break out.
1126 static int gitdiff_unrecognized(struct apply_state
*state
,
1128 struct patch
*patch
)
1134 * Skip p_value leading components from "line"; as we do not accept
1135 * absolute paths, return NULL in that case.
1137 static const char *skip_tree_prefix(struct apply_state
*state
,
1144 if (!state
->p_value
)
1145 return (llen
&& line
[0] == '/') ? NULL
: line
;
1147 nslash
= state
->p_value
;
1148 for (i
= 0; i
< llen
; i
++) {
1150 if (ch
== '/' && --nslash
<= 0)
1151 return (i
== 0) ? NULL
: &line
[i
+ 1];
1157 * This is to extract the same name that appears on "diff --git"
1158 * line. We do not find and return anything if it is a rename
1159 * patch, and it is OK because we will find the name elsewhere.
1160 * We need to reliably find name only when it is mode-change only,
1161 * creation or deletion of an empty file. In any of these cases,
1162 * both sides are the same name under a/ and b/ respectively.
1164 static char *git_header_name(struct apply_state
*state
,
1169 const char *second
= NULL
;
1170 size_t len
, line_len
;
1172 line
+= strlen("diff --git ");
1173 llen
-= strlen("diff --git ");
1177 struct strbuf first
= STRBUF_INIT
;
1178 struct strbuf sp
= STRBUF_INIT
;
1180 if (unquote_c_style(&first
, line
, &second
))
1181 goto free_and_fail1
;
1183 /* strip the a/b prefix including trailing slash */
1184 cp
= skip_tree_prefix(state
, first
.buf
, first
.len
);
1186 goto free_and_fail1
;
1187 strbuf_remove(&first
, 0, cp
- first
.buf
);
1190 * second points at one past closing dq of name.
1191 * find the second name.
1193 while ((second
< line
+ llen
) && isspace(*second
))
1196 if (line
+ llen
<= second
)
1197 goto free_and_fail1
;
1198 if (*second
== '"') {
1199 if (unquote_c_style(&sp
, second
, NULL
))
1200 goto free_and_fail1
;
1201 cp
= skip_tree_prefix(state
, sp
.buf
, sp
.len
);
1203 goto free_and_fail1
;
1204 /* They must match, otherwise ignore */
1205 if (strcmp(cp
, first
.buf
))
1206 goto free_and_fail1
;
1207 strbuf_release(&sp
);
1208 return strbuf_detach(&first
, NULL
);
1211 /* unquoted second */
1212 cp
= skip_tree_prefix(state
, second
, line
+ llen
- second
);
1214 goto free_and_fail1
;
1215 if (line
+ llen
- cp
!= first
.len
||
1216 memcmp(first
.buf
, cp
, first
.len
))
1217 goto free_and_fail1
;
1218 return strbuf_detach(&first
, NULL
);
1221 strbuf_release(&first
);
1222 strbuf_release(&sp
);
1226 /* unquoted first name */
1227 name
= skip_tree_prefix(state
, line
, llen
);
1232 * since the first name is unquoted, a dq if exists must be
1233 * the beginning of the second name.
1235 for (second
= name
; second
< line
+ llen
; second
++) {
1236 if (*second
== '"') {
1237 struct strbuf sp
= STRBUF_INIT
;
1240 if (unquote_c_style(&sp
, second
, NULL
))
1241 goto free_and_fail2
;
1243 np
= skip_tree_prefix(state
, sp
.buf
, sp
.len
);
1245 goto free_and_fail2
;
1247 len
= sp
.buf
+ sp
.len
- np
;
1248 if (len
< second
- name
&&
1249 !strncmp(np
, name
, len
) &&
1250 isspace(name
[len
])) {
1252 strbuf_remove(&sp
, 0, np
- sp
.buf
);
1253 return strbuf_detach(&sp
, NULL
);
1257 strbuf_release(&sp
);
1263 * Accept a name only if it shows up twice, exactly the same
1266 second
= strchr(name
, '\n');
1269 line_len
= second
- name
;
1270 for (len
= 0 ; ; len
++) {
1271 switch (name
[len
]) {
1276 case '\t': case ' ':
1278 * Is this the separator between the preimage
1279 * and the postimage pathname? Again, we are
1280 * only interested in the case where there is
1281 * no rename, as this is only to set def_name
1282 * and a rename patch has the names elsewhere
1283 * in an unambiguous form.
1286 return NULL
; /* no postimage name */
1287 second
= skip_tree_prefix(state
, name
+ len
+ 1,
1288 line_len
- (len
+ 1));
1292 * Does len bytes starting at "name" and "second"
1293 * (that are separated by one HT or SP we just
1294 * found) exactly match?
1296 if (second
[len
] == '\n' && !strncmp(name
, second
, len
))
1297 return xmemdupz(name
, len
);
1302 static int check_header_line(struct apply_state
*state
, struct patch
*patch
)
1304 int extensions
= (patch
->is_delete
== 1) + (patch
->is_new
== 1) +
1305 (patch
->is_rename
== 1) + (patch
->is_copy
== 1);
1307 return error(_("inconsistent header lines %d and %d"),
1308 patch
->extension_linenr
, state
->linenr
);
1309 if (extensions
&& !patch
->extension_linenr
)
1310 patch
->extension_linenr
= state
->linenr
;
1314 /* Verify that we recognize the lines following a git header */
1315 static int parse_git_header(struct apply_state
*state
,
1319 struct patch
*patch
)
1321 unsigned long offset
;
1323 /* A git diff has explicit new/delete information, so we don't guess */
1325 patch
->is_delete
= 0;
1328 * Some things may not have the old name in the
1329 * rest of the headers anywhere (pure mode changes,
1330 * or removing or adding empty files), so we get
1331 * the default name from the header.
1333 patch
->def_name
= git_header_name(state
, line
, len
);
1334 if (patch
->def_name
&& state
->root
.len
) {
1335 char *s
= xstrfmt("%s%s", state
->root
.buf
, patch
->def_name
);
1336 free(patch
->def_name
);
1337 patch
->def_name
= s
;
1343 for (offset
= len
; size
> 0 ; offset
+= len
, size
-= len
, line
+= len
, state
->linenr
++) {
1344 static const struct opentry
{
1346 int (*fn
)(struct apply_state
*, const char *, struct patch
*);
1348 { "@@ -", gitdiff_hdrend
},
1349 { "--- ", gitdiff_oldname
},
1350 { "+++ ", gitdiff_newname
},
1351 { "old mode ", gitdiff_oldmode
},
1352 { "new mode ", gitdiff_newmode
},
1353 { "deleted file mode ", gitdiff_delete
},
1354 { "new file mode ", gitdiff_newfile
},
1355 { "copy from ", gitdiff_copysrc
},
1356 { "copy to ", gitdiff_copydst
},
1357 { "rename old ", gitdiff_renamesrc
},
1358 { "rename new ", gitdiff_renamedst
},
1359 { "rename from ", gitdiff_renamesrc
},
1360 { "rename to ", gitdiff_renamedst
},
1361 { "similarity index ", gitdiff_similarity
},
1362 { "dissimilarity index ", gitdiff_dissimilarity
},
1363 { "index ", gitdiff_index
},
1364 { "", gitdiff_unrecognized
},
1368 len
= linelen(line
, size
);
1369 if (!len
|| line
[len
-1] != '\n')
1371 for (i
= 0; i
< ARRAY_SIZE(optable
); i
++) {
1372 const struct opentry
*p
= optable
+ i
;
1373 int oplen
= strlen(p
->str
);
1375 if (len
< oplen
|| memcmp(p
->str
, line
, oplen
))
1377 res
= p
->fn(state
, line
+ oplen
, patch
);
1380 if (check_header_line(state
, patch
))
1391 static int parse_num(const char *line
, unsigned long *p
)
1395 if (!isdigit(*line
))
1397 *p
= strtoul(line
, &ptr
, 10);
1401 static int parse_range(const char *line
, int len
, int offset
, const char *expect
,
1402 unsigned long *p1
, unsigned long *p2
)
1406 if (offset
< 0 || offset
>= len
)
1411 digits
= parse_num(line
, p1
);
1421 digits
= parse_num(line
+1, p2
);
1430 ex
= strlen(expect
);
1433 if (memcmp(line
, expect
, ex
))
1439 static void recount_diff(const char *line
, int size
, struct fragment
*fragment
)
1441 int oldlines
= 0, newlines
= 0, ret
= 0;
1444 warning("recount: ignore empty hunk");
1449 int len
= linelen(line
, size
);
1457 case ' ': case '\n':
1469 ret
= size
< 3 || !starts_with(line
, "@@ ");
1472 ret
= size
< 5 || !starts_with(line
, "diff ");
1479 warning(_("recount: unexpected line: %.*s"),
1480 (int)linelen(line
, size
), line
);
1485 fragment
->oldlines
= oldlines
;
1486 fragment
->newlines
= newlines
;
1490 * Parse a unified diff fragment header of the
1491 * form "@@ -a,b +c,d @@"
1493 static int parse_fragment_header(const char *line
, int len
, struct fragment
*fragment
)
1497 if (!len
|| line
[len
-1] != '\n')
1500 /* Figure out the number of lines in a fragment */
1501 offset
= parse_range(line
, len
, 4, " +", &fragment
->oldpos
, &fragment
->oldlines
);
1502 offset
= parse_range(line
, len
, offset
, " @@", &fragment
->newpos
, &fragment
->newlines
);
1508 * Find file diff header
1511 * -1 if no header was found
1512 * -128 in case of error
1513 * the size of the header in bytes (called "offset") otherwise
1515 static int find_header(struct apply_state
*state
,
1519 struct patch
*patch
)
1521 unsigned long offset
, len
;
1523 patch
->is_toplevel_relative
= 0;
1524 patch
->is_rename
= patch
->is_copy
= 0;
1525 patch
->is_new
= patch
->is_delete
= -1;
1526 patch
->old_mode
= patch
->new_mode
= 0;
1527 patch
->old_name
= patch
->new_name
= NULL
;
1528 for (offset
= 0; size
> 0; offset
+= len
, size
-= len
, line
+= len
, state
->linenr
++) {
1529 unsigned long nextlen
;
1531 len
= linelen(line
, size
);
1535 /* Testing this early allows us to take a few shortcuts.. */
1540 * Make sure we don't find any unconnected patch fragments.
1541 * That's a sign that we didn't find a header, and that a
1542 * patch has become corrupted/broken up.
1544 if (!memcmp("@@ -", line
, 4)) {
1545 struct fragment dummy
;
1546 if (parse_fragment_header(line
, len
, &dummy
) < 0)
1548 error(_("patch fragment without header at line %d: %.*s"),
1549 state
->linenr
, (int)len
-1, line
);
1557 * Git patch? It might not have a real patch, just a rename
1558 * or mode change, so we handle that specially
1560 if (!memcmp("diff --git ", line
, 11)) {
1561 int git_hdr_len
= parse_git_header(state
, line
, len
, size
, patch
);
1562 if (git_hdr_len
< 0)
1564 if (git_hdr_len
<= len
)
1566 if (!patch
->old_name
&& !patch
->new_name
) {
1567 if (!patch
->def_name
) {
1568 error(Q_("git diff header lacks filename information when removing "
1569 "%d leading pathname component (line %d)",
1570 "git diff header lacks filename information when removing "
1571 "%d leading pathname components (line %d)",
1573 state
->p_value
, state
->linenr
);
1576 patch
->old_name
= xstrdup(patch
->def_name
);
1577 patch
->new_name
= xstrdup(patch
->def_name
);
1579 if ((!patch
->new_name
&& !patch
->is_delete
) ||
1580 (!patch
->old_name
&& !patch
->is_new
)) {
1581 error(_("git diff header lacks filename information "
1582 "(line %d)"), state
->linenr
);
1585 patch
->is_toplevel_relative
= 1;
1586 *hdrsize
= git_hdr_len
;
1590 /* --- followed by +++ ? */
1591 if (memcmp("--- ", line
, 4) || memcmp("+++ ", line
+ len
, 4))
1595 * We only accept unified patches, so we want it to
1596 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
1597 * minimum ("@@ -0,0 +1 @@\n" is the shortest).
1599 nextlen
= linelen(line
+ len
, size
- len
);
1600 if (size
< nextlen
+ 14 || memcmp("@@ -", line
+ len
+ nextlen
, 4))
1603 /* Ok, we'll consider it a patch */
1604 if (parse_traditional_patch(state
, line
, line
+len
, patch
))
1606 *hdrsize
= len
+ nextlen
;
1613 static void record_ws_error(struct apply_state
*state
,
1624 state
->whitespace_error
++;
1625 if (state
->squelch_whitespace_errors
&&
1626 state
->squelch_whitespace_errors
< state
->whitespace_error
)
1629 err
= whitespace_error_string(result
);
1630 if (state
->apply_verbosity
> verbosity_silent
)
1631 fprintf(stderr
, "%s:%d: %s.\n%.*s\n",
1632 state
->patch_input_file
, linenr
, err
, len
, line
);
1636 static void check_whitespace(struct apply_state
*state
,
1641 unsigned result
= ws_check(line
+ 1, len
- 1, ws_rule
);
1643 record_ws_error(state
, result
, line
+ 1, len
- 2, state
->linenr
);
1647 * Check if the patch has context lines with CRLF or
1648 * the patch wants to remove lines with CRLF.
1650 static void check_old_for_crlf(struct patch
*patch
, const char *line
, int len
)
1652 if (len
>= 2 && line
[len
-1] == '\n' && line
[len
-2] == '\r') {
1653 patch
->ws_rule
|= WS_CR_AT_EOL
;
1654 patch
->crlf_in_old
= 1;
1660 * Parse a unified diff. Note that this really needs to parse each
1661 * fragment separately, since the only way to know the difference
1662 * between a "---" that is part of a patch, and a "---" that starts
1663 * the next patch is to look at the line counts..
1665 static int parse_fragment(struct apply_state
*state
,
1668 struct patch
*patch
,
1669 struct fragment
*fragment
)
1672 int len
= linelen(line
, size
), offset
;
1673 unsigned long oldlines
, newlines
;
1674 unsigned long leading
, trailing
;
1676 offset
= parse_fragment_header(line
, len
, fragment
);
1679 if (offset
> 0 && patch
->recount
)
1680 recount_diff(line
+ offset
, size
- offset
, fragment
);
1681 oldlines
= fragment
->oldlines
;
1682 newlines
= fragment
->newlines
;
1686 /* Parse the thing.. */
1690 added
= deleted
= 0;
1693 offset
+= len
, size
-= len
, line
+= len
, state
->linenr
++) {
1694 if (!oldlines
&& !newlines
)
1696 len
= linelen(line
, size
);
1697 if (!len
|| line
[len
-1] != '\n')
1702 case '\n': /* newer GNU diff, an empty context line */
1706 if (!deleted
&& !added
)
1709 check_old_for_crlf(patch
, line
, len
);
1710 if (!state
->apply_in_reverse
&&
1711 state
->ws_error_action
== correct_ws_error
)
1712 check_whitespace(state
, line
, len
, patch
->ws_rule
);
1715 if (!state
->apply_in_reverse
)
1716 check_old_for_crlf(patch
, line
, len
);
1717 if (state
->apply_in_reverse
&&
1718 state
->ws_error_action
!= nowarn_ws_error
)
1719 check_whitespace(state
, line
, len
, patch
->ws_rule
);
1725 if (state
->apply_in_reverse
)
1726 check_old_for_crlf(patch
, line
, len
);
1727 if (!state
->apply_in_reverse
&&
1728 state
->ws_error_action
!= nowarn_ws_error
)
1729 check_whitespace(state
, line
, len
, patch
->ws_rule
);
1736 * We allow "\ No newline at end of file". Depending
1737 * on locale settings when the patch was produced we
1738 * don't know what this line looks like. The only
1739 * thing we do know is that it begins with "\ ".
1740 * Checking for 12 is just for sanity check -- any
1741 * l10n of "\ No newline..." is at least that long.
1744 if (len
< 12 || memcmp(line
, "\\ ", 2))
1749 if (oldlines
|| newlines
)
1751 if (!deleted
&& !added
)
1754 fragment
->leading
= leading
;
1755 fragment
->trailing
= trailing
;
1758 * If a fragment ends with an incomplete line, we failed to include
1759 * it in the above loop because we hit oldlines == newlines == 0
1762 if (12 < size
&& !memcmp(line
, "\\ ", 2))
1763 offset
+= linelen(line
, size
);
1765 patch
->lines_added
+= added
;
1766 patch
->lines_deleted
+= deleted
;
1768 if (0 < patch
->is_new
&& oldlines
)
1769 return error(_("new file depends on old contents"));
1770 if (0 < patch
->is_delete
&& newlines
)
1771 return error(_("deleted file still has contents"));
1776 * We have seen "diff --git a/... b/..." header (or a traditional patch
1777 * header). Read hunks that belong to this patch into fragments and hang
1778 * them to the given patch structure.
1780 * The (fragment->patch, fragment->size) pair points into the memory given
1781 * by the caller, not a copy, when we return.
1784 * -1 in case of error,
1785 * the number of bytes in the patch otherwise.
1787 static int parse_single_patch(struct apply_state
*state
,
1790 struct patch
*patch
)
1792 unsigned long offset
= 0;
1793 unsigned long oldlines
= 0, newlines
= 0, context
= 0;
1794 struct fragment
**fragp
= &patch
->fragments
;
1796 while (size
> 4 && !memcmp(line
, "@@ -", 4)) {
1797 struct fragment
*fragment
;
1800 fragment
= xcalloc(1, sizeof(*fragment
));
1801 fragment
->linenr
= state
->linenr
;
1802 len
= parse_fragment(state
, line
, size
, patch
, fragment
);
1805 return error(_("corrupt patch at line %d"), state
->linenr
);
1807 fragment
->patch
= line
;
1808 fragment
->size
= len
;
1809 oldlines
+= fragment
->oldlines
;
1810 newlines
+= fragment
->newlines
;
1811 context
+= fragment
->leading
+ fragment
->trailing
;
1814 fragp
= &fragment
->next
;
1822 * If something was removed (i.e. we have old-lines) it cannot
1823 * be creation, and if something was added it cannot be
1824 * deletion. However, the reverse is not true; --unified=0
1825 * patches that only add are not necessarily creation even
1826 * though they do not have any old lines, and ones that only
1827 * delete are not necessarily deletion.
1829 * Unfortunately, a real creation/deletion patch do _not_ have
1830 * any context line by definition, so we cannot safely tell it
1831 * apart with --unified=0 insanity. At least if the patch has
1832 * more than one hunk it is not creation or deletion.
1834 if (patch
->is_new
< 0 &&
1835 (oldlines
|| (patch
->fragments
&& patch
->fragments
->next
)))
1837 if (patch
->is_delete
< 0 &&
1838 (newlines
|| (patch
->fragments
&& patch
->fragments
->next
)))
1839 patch
->is_delete
= 0;
1841 if (0 < patch
->is_new
&& oldlines
)
1842 return error(_("new file %s depends on old contents"), patch
->new_name
);
1843 if (0 < patch
->is_delete
&& newlines
)
1844 return error(_("deleted file %s still has contents"), patch
->old_name
);
1845 if (!patch
->is_delete
&& !newlines
&& context
&& state
->apply_verbosity
> verbosity_silent
)
1848 "file %s becomes empty but is not deleted"),
1854 static inline int metadata_changes(struct patch
*patch
)
1856 return patch
->is_rename
> 0 ||
1857 patch
->is_copy
> 0 ||
1858 patch
->is_new
> 0 ||
1860 (patch
->old_mode
&& patch
->new_mode
&&
1861 patch
->old_mode
!= patch
->new_mode
);
1864 static char *inflate_it(const void *data
, unsigned long size
,
1865 unsigned long inflated_size
)
1871 memset(&stream
, 0, sizeof(stream
));
1873 stream
.next_in
= (unsigned char *)data
;
1874 stream
.avail_in
= size
;
1875 stream
.next_out
= out
= xmalloc(inflated_size
);
1876 stream
.avail_out
= inflated_size
;
1877 git_inflate_init(&stream
);
1878 st
= git_inflate(&stream
, Z_FINISH
);
1879 git_inflate_end(&stream
);
1880 if ((st
!= Z_STREAM_END
) || stream
.total_out
!= inflated_size
) {
1888 * Read a binary hunk and return a new fragment; fragment->patch
1889 * points at an allocated memory that the caller must free, so
1890 * it is marked as "->free_patch = 1".
1892 static struct fragment
*parse_binary_hunk(struct apply_state
*state
,
1894 unsigned long *sz_p
,
1899 * Expect a line that begins with binary patch method ("literal"
1900 * or "delta"), followed by the length of data before deflating.
1901 * a sequence of 'length-byte' followed by base-85 encoded data
1902 * should follow, terminated by a newline.
1904 * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1905 * and we would limit the patch line to 66 characters,
1906 * so one line can fit up to 13 groups that would decode
1907 * to 52 bytes max. The length byte 'A'-'Z' corresponds
1908 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
1911 unsigned long size
= *sz_p
;
1912 char *buffer
= *buf_p
;
1914 unsigned long origlen
;
1917 struct fragment
*frag
;
1919 llen
= linelen(buffer
, size
);
1924 if (starts_with(buffer
, "delta ")) {
1925 patch_method
= BINARY_DELTA_DEFLATED
;
1926 origlen
= strtoul(buffer
+ 6, NULL
, 10);
1928 else if (starts_with(buffer
, "literal ")) {
1929 patch_method
= BINARY_LITERAL_DEFLATED
;
1930 origlen
= strtoul(buffer
+ 8, NULL
, 10);
1938 int byte_length
, max_byte_length
, newsize
;
1939 llen
= linelen(buffer
, size
);
1943 /* consume the blank line */
1949 * Minimum line is "A00000\n" which is 7-byte long,
1950 * and the line length must be multiple of 5 plus 2.
1952 if ((llen
< 7) || (llen
-2) % 5)
1954 max_byte_length
= (llen
- 2) / 5 * 4;
1955 byte_length
= *buffer
;
1956 if ('A' <= byte_length
&& byte_length
<= 'Z')
1957 byte_length
= byte_length
- 'A' + 1;
1958 else if ('a' <= byte_length
&& byte_length
<= 'z')
1959 byte_length
= byte_length
- 'a' + 27;
1962 /* if the input length was not multiple of 4, we would
1963 * have filler at the end but the filler should never
1966 if (max_byte_length
< byte_length
||
1967 byte_length
<= max_byte_length
- 4)
1969 newsize
= hunk_size
+ byte_length
;
1970 data
= xrealloc(data
, newsize
);
1971 if (decode_85(data
+ hunk_size
, buffer
+ 1, byte_length
))
1973 hunk_size
= newsize
;
1978 frag
= xcalloc(1, sizeof(*frag
));
1979 frag
->patch
= inflate_it(data
, hunk_size
, origlen
);
1980 frag
->free_patch
= 1;
1984 frag
->size
= origlen
;
1988 frag
->binary_patch_method
= patch_method
;
1994 error(_("corrupt binary patch at line %d: %.*s"),
1995 state
->linenr
-1, llen
-1, buffer
);
2001 * -1 in case of error,
2002 * the length of the parsed binary patch otherwise
2004 static int parse_binary(struct apply_state
*state
,
2007 struct patch
*patch
)
2010 * We have read "GIT binary patch\n"; what follows is a line
2011 * that says the patch method (currently, either "literal" or
2012 * "delta") and the length of data before deflating; a
2013 * sequence of 'length-byte' followed by base-85 encoded data
2016 * When a binary patch is reversible, there is another binary
2017 * hunk in the same format, starting with patch method (either
2018 * "literal" or "delta") with the length of data, and a sequence
2019 * of length-byte + base-85 encoded data, terminated with another
2020 * empty line. This data, when applied to the postimage, produces
2023 struct fragment
*forward
;
2024 struct fragment
*reverse
;
2028 forward
= parse_binary_hunk(state
, &buffer
, &size
, &status
, &used
);
2029 if (!forward
&& !status
)
2030 /* there has to be one hunk (forward hunk) */
2031 return error(_("unrecognized binary patch at line %d"), state
->linenr
-1);
2033 /* otherwise we already gave an error message */
2036 reverse
= parse_binary_hunk(state
, &buffer
, &size
, &status
, &used_1
);
2041 * Not having reverse hunk is not an error, but having
2042 * a corrupt reverse hunk is.
2044 free((void*) forward
->patch
);
2048 forward
->next
= reverse
;
2049 patch
->fragments
= forward
;
2050 patch
->is_binary
= 1;
2054 static void prefix_one(struct apply_state
*state
, char **name
)
2056 char *old_name
= *name
;
2059 *name
= prefix_filename(state
->prefix
, *name
);
2063 static void prefix_patch(struct apply_state
*state
, struct patch
*p
)
2065 if (!state
->prefix
|| p
->is_toplevel_relative
)
2067 prefix_one(state
, &p
->new_name
);
2068 prefix_one(state
, &p
->old_name
);
2075 static void add_name_limit(struct apply_state
*state
,
2079 struct string_list_item
*it
;
2081 it
= string_list_append(&state
->limit_by_name
, name
);
2082 it
->util
= exclude
? NULL
: (void *) 1;
2085 static int use_patch(struct apply_state
*state
, struct patch
*p
)
2087 const char *pathname
= p
->new_name
? p
->new_name
: p
->old_name
;
2090 /* Paths outside are not touched regardless of "--include" */
2091 if (state
->prefix
&& *state
->prefix
) {
2093 if (!skip_prefix(pathname
, state
->prefix
, &rest
) || !*rest
)
2097 /* See if it matches any of exclude/include rule */
2098 for (i
= 0; i
< state
->limit_by_name
.nr
; i
++) {
2099 struct string_list_item
*it
= &state
->limit_by_name
.items
[i
];
2100 if (!wildmatch(it
->string
, pathname
, 0))
2101 return (it
->util
!= NULL
);
2105 * If we had any include, a path that does not match any rule is
2106 * not used. Otherwise, we saw bunch of exclude rules (or none)
2107 * and such a path is used.
2109 return !state
->has_include
;
2113 * Read the patch text in "buffer" that extends for "size" bytes; stop
2114 * reading after seeing a single patch (i.e. changes to a single file).
2115 * Create fragments (i.e. patch hunks) and hang them to the given patch.
2118 * -1 if no header was found or parse_binary() failed,
2119 * -128 on another error,
2120 * the number of bytes consumed otherwise,
2121 * so that the caller can call us again for the next patch.
2123 static int parse_chunk(struct apply_state
*state
, char *buffer
, unsigned long size
, struct patch
*patch
)
2125 int hdrsize
, patchsize
;
2126 int offset
= find_header(state
, buffer
, size
, &hdrsize
, patch
);
2131 prefix_patch(state
, patch
);
2133 if (!use_patch(state
, patch
))
2136 patch
->ws_rule
= whitespace_rule(patch
->new_name
2140 patchsize
= parse_single_patch(state
,
2141 buffer
+ offset
+ hdrsize
,
2142 size
- offset
- hdrsize
,
2149 static const char git_binary
[] = "GIT binary patch\n";
2150 int hd
= hdrsize
+ offset
;
2151 unsigned long llen
= linelen(buffer
+ hd
, size
- hd
);
2153 if (llen
== sizeof(git_binary
) - 1 &&
2154 !memcmp(git_binary
, buffer
+ hd
, llen
)) {
2157 used
= parse_binary(state
, buffer
+ hd
+ llen
,
2158 size
- hd
- llen
, patch
);
2162 patchsize
= used
+ llen
;
2166 else if (!memcmp(" differ\n", buffer
+ hd
+ llen
- 8, 8)) {
2167 static const char *binhdr
[] = {
2173 for (i
= 0; binhdr
[i
]; i
++) {
2174 int len
= strlen(binhdr
[i
]);
2175 if (len
< size
- hd
&&
2176 !memcmp(binhdr
[i
], buffer
+ hd
, len
)) {
2178 patch
->is_binary
= 1;
2185 /* Empty patch cannot be applied if it is a text patch
2186 * without metadata change. A binary patch appears
2189 if ((state
->apply
|| state
->check
) &&
2190 (!patch
->is_binary
&& !metadata_changes(patch
))) {
2191 error(_("patch with only garbage at line %d"), state
->linenr
);
2196 return offset
+ hdrsize
+ patchsize
;
2199 static void reverse_patches(struct patch
*p
)
2201 for (; p
; p
= p
->next
) {
2202 struct fragment
*frag
= p
->fragments
;
2204 SWAP(p
->new_name
, p
->old_name
);
2205 SWAP(p
->new_mode
, p
->old_mode
);
2206 SWAP(p
->is_new
, p
->is_delete
);
2207 SWAP(p
->lines_added
, p
->lines_deleted
);
2208 SWAP(p
->old_oid_prefix
, p
->new_oid_prefix
);
2210 for (; frag
; frag
= frag
->next
) {
2211 SWAP(frag
->newpos
, frag
->oldpos
);
2212 SWAP(frag
->newlines
, frag
->oldlines
);
2217 static const char pluses
[] =
2218 "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
2219 static const char minuses
[]=
2220 "----------------------------------------------------------------------";
2222 static void show_stats(struct apply_state
*state
, struct patch
*patch
)
2224 struct strbuf qname
= STRBUF_INIT
;
2225 char *cp
= patch
->new_name
? patch
->new_name
: patch
->old_name
;
2228 quote_c_style(cp
, &qname
, NULL
, 0);
2231 * "scale" the filename
2233 max
= state
->max_len
;
2237 if (qname
.len
> max
) {
2238 cp
= strchr(qname
.buf
+ qname
.len
+ 3 - max
, '/');
2240 cp
= qname
.buf
+ qname
.len
+ 3 - max
;
2241 strbuf_splice(&qname
, 0, cp
- qname
.buf
, "...", 3);
2244 if (patch
->is_binary
) {
2245 printf(" %-*s | Bin\n", max
, qname
.buf
);
2246 strbuf_release(&qname
);
2250 printf(" %-*s |", max
, qname
.buf
);
2251 strbuf_release(&qname
);
2254 * scale the add/delete
2256 max
= max
+ state
->max_change
> 70 ? 70 - max
: state
->max_change
;
2257 add
= patch
->lines_added
;
2258 del
= patch
->lines_deleted
;
2260 if (state
->max_change
> 0) {
2261 int total
= ((add
+ del
) * max
+ state
->max_change
/ 2) / state
->max_change
;
2262 add
= (add
* max
+ state
->max_change
/ 2) / state
->max_change
;
2265 printf("%5d %.*s%.*s\n", patch
->lines_added
+ patch
->lines_deleted
,
2266 add
, pluses
, del
, minuses
);
2269 static int read_old_data(struct stat
*st
, struct patch
*patch
,
2270 const char *path
, struct strbuf
*buf
)
2272 int conv_flags
= patch
->crlf_in_old
?
2273 CONV_EOL_KEEP_CRLF
: CONV_EOL_RENORMALIZE
;
2274 switch (st
->st_mode
& S_IFMT
) {
2276 if (strbuf_readlink(buf
, path
, st
->st_size
) < 0)
2277 return error(_("unable to read symlink %s"), path
);
2280 if (strbuf_read_file(buf
, path
, st
->st_size
) != st
->st_size
)
2281 return error(_("unable to open or read %s"), path
);
2283 * "git apply" without "--index/--cached" should never look
2284 * at the index; the target file may not have been added to
2285 * the index yet, and we may not even be in any Git repository.
2286 * Pass NULL to convert_to_git() to stress this; the function
2287 * should never look at the index when explicit crlf option
2290 convert_to_git(NULL
, path
, buf
->buf
, buf
->len
, buf
, conv_flags
);
2298 * Update the preimage, and the common lines in postimage,
2299 * from buffer buf of length len. If postlen is 0 the postimage
2300 * is updated in place, otherwise it's updated on a new buffer
2304 static void update_pre_post_images(struct image
*preimage
,
2305 struct image
*postimage
,
2307 size_t len
, size_t postlen
)
2309 int i
, ctx
, reduced
;
2310 char *new_buf
, *old_buf
, *fixed
;
2311 struct image fixed_preimage
;
2314 * Update the preimage with whitespace fixes. Note that we
2315 * are not losing preimage->buf -- apply_one_fragment() will
2318 prepare_image(&fixed_preimage
, buf
, len
, 1);
2320 ? fixed_preimage
.nr
== preimage
->nr
2321 : fixed_preimage
.nr
<= preimage
->nr
);
2322 for (i
= 0; i
< fixed_preimage
.nr
; i
++)
2323 fixed_preimage
.line
[i
].flag
= preimage
->line
[i
].flag
;
2324 free(preimage
->line_allocated
);
2325 *preimage
= fixed_preimage
;
2328 * Adjust the common context lines in postimage. This can be
2329 * done in-place when we are shrinking it with whitespace
2330 * fixing, but needs a new buffer when ignoring whitespace or
2331 * expanding leading tabs to spaces.
2333 * We trust the caller to tell us if the update can be done
2334 * in place (postlen==0) or not.
2336 old_buf
= postimage
->buf
;
2338 new_buf
= postimage
->buf
= xmalloc(postlen
);
2341 fixed
= preimage
->buf
;
2343 for (i
= reduced
= ctx
= 0; i
< postimage
->nr
; i
++) {
2344 size_t l_len
= postimage
->line
[i
].len
;
2345 if (!(postimage
->line
[i
].flag
& LINE_COMMON
)) {
2346 /* an added line -- no counterparts in preimage */
2347 memmove(new_buf
, old_buf
, l_len
);
2353 /* a common context -- skip it in the original postimage */
2356 /* and find the corresponding one in the fixed preimage */
2357 while (ctx
< preimage
->nr
&&
2358 !(preimage
->line
[ctx
].flag
& LINE_COMMON
)) {
2359 fixed
+= preimage
->line
[ctx
].len
;
2364 * preimage is expected to run out, if the caller
2365 * fixed addition of trailing blank lines.
2367 if (preimage
->nr
<= ctx
) {
2372 /* and copy it in, while fixing the line length */
2373 l_len
= preimage
->line
[ctx
].len
;
2374 memcpy(new_buf
, fixed
, l_len
);
2377 postimage
->line
[i
].len
= l_len
;
2382 ? postlen
< new_buf
- postimage
->buf
2383 : postimage
->len
< new_buf
- postimage
->buf
)
2384 BUG("caller miscounted postlen: asked %d, orig = %d, used = %d",
2385 (int)postlen
, (int) postimage
->len
, (int)(new_buf
- postimage
->buf
));
2387 /* Fix the length of the whole thing */
2388 postimage
->len
= new_buf
- postimage
->buf
;
2389 postimage
->nr
-= reduced
;
2392 static int line_by_line_fuzzy_match(struct image
*img
,
2393 struct image
*preimage
,
2394 struct image
*postimage
,
2395 unsigned long current
,
2402 size_t postlen
= postimage
->len
;
2407 struct strbuf fixed
;
2411 for (i
= 0; i
< preimage_limit
; i
++) {
2412 size_t prelen
= preimage
->line
[i
].len
;
2413 size_t imglen
= img
->line
[current_lno
+i
].len
;
2415 if (!fuzzy_matchlines(img
->buf
+ current
+ imgoff
, imglen
,
2416 preimage
->buf
+ preoff
, prelen
))
2418 if (preimage
->line
[i
].flag
& LINE_COMMON
)
2419 postlen
+= imglen
- prelen
;
2425 * Ok, the preimage matches with whitespace fuzz.
2427 * imgoff now holds the true length of the target that
2428 * matches the preimage before the end of the file.
2430 * Count the number of characters in the preimage that fall
2431 * beyond the end of the file and make sure that all of them
2432 * are whitespace characters. (This can only happen if
2433 * we are removing blank lines at the end of the file.)
2435 buf
= preimage_eof
= preimage
->buf
+ preoff
;
2436 for ( ; i
< preimage
->nr
; i
++)
2437 preoff
+= preimage
->line
[i
].len
;
2438 preimage_end
= preimage
->buf
+ preoff
;
2439 for ( ; buf
< preimage_end
; buf
++)
2444 * Update the preimage and the common postimage context
2445 * lines to use the same whitespace as the target.
2446 * If whitespace is missing in the target (i.e.
2447 * if the preimage extends beyond the end of the file),
2448 * use the whitespace from the preimage.
2450 extra_chars
= preimage_end
- preimage_eof
;
2451 strbuf_init(&fixed
, imgoff
+ extra_chars
);
2452 strbuf_add(&fixed
, img
->buf
+ current
, imgoff
);
2453 strbuf_add(&fixed
, preimage_eof
, extra_chars
);
2454 fixed_buf
= strbuf_detach(&fixed
, &fixed_len
);
2455 update_pre_post_images(preimage
, postimage
,
2456 fixed_buf
, fixed_len
, postlen
);
2460 static int match_fragment(struct apply_state
*state
,
2462 struct image
*preimage
,
2463 struct image
*postimage
,
2464 unsigned long current
,
2467 int match_beginning
, int match_end
)
2470 char *fixed_buf
, *buf
, *orig
, *target
;
2471 struct strbuf fixed
;
2472 size_t fixed_len
, postlen
;
2475 if (preimage
->nr
+ current_lno
<= img
->nr
) {
2477 * The hunk falls within the boundaries of img.
2479 preimage_limit
= preimage
->nr
;
2480 if (match_end
&& (preimage
->nr
+ current_lno
!= img
->nr
))
2482 } else if (state
->ws_error_action
== correct_ws_error
&&
2483 (ws_rule
& WS_BLANK_AT_EOF
)) {
2485 * This hunk extends beyond the end of img, and we are
2486 * removing blank lines at the end of the file. This
2487 * many lines from the beginning of the preimage must
2488 * match with img, and the remainder of the preimage
2491 preimage_limit
= img
->nr
- current_lno
;
2494 * The hunk extends beyond the end of the img and
2495 * we are not removing blanks at the end, so we
2496 * should reject the hunk at this position.
2501 if (match_beginning
&& current_lno
)
2504 /* Quick hash check */
2505 for (i
= 0; i
< preimage_limit
; i
++)
2506 if ((img
->line
[current_lno
+ i
].flag
& LINE_PATCHED
) ||
2507 (preimage
->line
[i
].hash
!= img
->line
[current_lno
+ i
].hash
))
2510 if (preimage_limit
== preimage
->nr
) {
2512 * Do we have an exact match? If we were told to match
2513 * at the end, size must be exactly at current+fragsize,
2514 * otherwise current+fragsize must be still within the preimage,
2515 * and either case, the old piece should match the preimage
2519 ? (current
+ preimage
->len
== img
->len
)
2520 : (current
+ preimage
->len
<= img
->len
)) &&
2521 !memcmp(img
->buf
+ current
, preimage
->buf
, preimage
->len
))
2525 * The preimage extends beyond the end of img, so
2526 * there cannot be an exact match.
2528 * There must be one non-blank context line that match
2529 * a line before the end of img.
2533 buf
= preimage
->buf
;
2535 for (i
= 0; i
< preimage_limit
; i
++)
2536 buf_end
+= preimage
->line
[i
].len
;
2538 for ( ; buf
< buf_end
; buf
++)
2546 * No exact match. If we are ignoring whitespace, run a line-by-line
2547 * fuzzy matching. We collect all the line length information because
2548 * we need it to adjust whitespace if we match.
2550 if (state
->ws_ignore_action
== ignore_ws_change
)
2551 return line_by_line_fuzzy_match(img
, preimage
, postimage
,
2552 current
, current_lno
, preimage_limit
);
2554 if (state
->ws_error_action
!= correct_ws_error
)
2558 * The hunk does not apply byte-by-byte, but the hash says
2559 * it might with whitespace fuzz. We weren't asked to
2560 * ignore whitespace, we were asked to correct whitespace
2561 * errors, so let's try matching after whitespace correction.
2563 * While checking the preimage against the target, whitespace
2564 * errors in both fixed, we count how large the corresponding
2565 * postimage needs to be. The postimage prepared by
2566 * apply_one_fragment() has whitespace errors fixed on added
2567 * lines already, but the common lines were propagated as-is,
2568 * which may become longer when their whitespace errors are
2572 /* First count added lines in postimage */
2574 for (i
= 0; i
< postimage
->nr
; i
++) {
2575 if (!(postimage
->line
[i
].flag
& LINE_COMMON
))
2576 postlen
+= postimage
->line
[i
].len
;
2580 * The preimage may extend beyond the end of the file,
2581 * but in this loop we will only handle the part of the
2582 * preimage that falls within the file.
2584 strbuf_init(&fixed
, preimage
->len
+ 1);
2585 orig
= preimage
->buf
;
2586 target
= img
->buf
+ current
;
2587 for (i
= 0; i
< preimage_limit
; i
++) {
2588 size_t oldlen
= preimage
->line
[i
].len
;
2589 size_t tgtlen
= img
->line
[current_lno
+ i
].len
;
2590 size_t fixstart
= fixed
.len
;
2591 struct strbuf tgtfix
;
2594 /* Try fixing the line in the preimage */
2595 ws_fix_copy(&fixed
, orig
, oldlen
, ws_rule
, NULL
);
2597 /* Try fixing the line in the target */
2598 strbuf_init(&tgtfix
, tgtlen
);
2599 ws_fix_copy(&tgtfix
, target
, tgtlen
, ws_rule
, NULL
);
2602 * If they match, either the preimage was based on
2603 * a version before our tree fixed whitespace breakage,
2604 * or we are lacking a whitespace-fix patch the tree
2605 * the preimage was based on already had (i.e. target
2606 * has whitespace breakage, the preimage doesn't).
2607 * In either case, we are fixing the whitespace breakages
2608 * so we might as well take the fix together with their
2611 match
= (tgtfix
.len
== fixed
.len
- fixstart
&&
2612 !memcmp(tgtfix
.buf
, fixed
.buf
+ fixstart
,
2613 fixed
.len
- fixstart
));
2615 /* Add the length if this is common with the postimage */
2616 if (preimage
->line
[i
].flag
& LINE_COMMON
)
2617 postlen
+= tgtfix
.len
;
2619 strbuf_release(&tgtfix
);
2629 * Now handle the lines in the preimage that falls beyond the
2630 * end of the file (if any). They will only match if they are
2631 * empty or only contain whitespace (if WS_BLANK_AT_EOL is
2634 for ( ; i
< preimage
->nr
; i
++) {
2635 size_t fixstart
= fixed
.len
; /* start of the fixed preimage */
2636 size_t oldlen
= preimage
->line
[i
].len
;
2639 /* Try fixing the line in the preimage */
2640 ws_fix_copy(&fixed
, orig
, oldlen
, ws_rule
, NULL
);
2642 for (j
= fixstart
; j
< fixed
.len
; j
++)
2643 if (!isspace(fixed
.buf
[j
]))
2650 * Yes, the preimage is based on an older version that still
2651 * has whitespace breakages unfixed, and fixing them makes the
2652 * hunk match. Update the context lines in the postimage.
2654 fixed_buf
= strbuf_detach(&fixed
, &fixed_len
);
2655 if (postlen
< postimage
->len
)
2657 update_pre_post_images(preimage
, postimage
,
2658 fixed_buf
, fixed_len
, postlen
);
2662 strbuf_release(&fixed
);
2666 static int find_pos(struct apply_state
*state
,
2668 struct image
*preimage
,
2669 struct image
*postimage
,
2672 int match_beginning
, int match_end
)
2675 unsigned long backwards
, forwards
, current
;
2676 int backwards_lno
, forwards_lno
, current_lno
;
2679 * If match_beginning or match_end is specified, there is no
2680 * point starting from a wrong line that will never match and
2681 * wander around and wait for a match at the specified end.
2683 if (match_beginning
)
2686 line
= img
->nr
- preimage
->nr
;
2689 * Because the comparison is unsigned, the following test
2690 * will also take care of a negative line number that can
2691 * result when match_end and preimage is larger than the target.
2693 if ((size_t) line
> img
->nr
)
2697 for (i
= 0; i
< line
; i
++)
2698 current
+= img
->line
[i
].len
;
2701 * There's probably some smart way to do this, but I'll leave
2702 * that to the smart and beautiful people. I'm simple and stupid.
2704 backwards
= current
;
2705 backwards_lno
= line
;
2707 forwards_lno
= line
;
2710 for (i
= 0; ; i
++) {
2711 if (match_fragment(state
, img
, preimage
, postimage
,
2712 current
, current_lno
, ws_rule
,
2713 match_beginning
, match_end
))
2717 if (backwards_lno
== 0 && forwards_lno
== img
->nr
)
2721 if (backwards_lno
== 0) {
2726 backwards
-= img
->line
[backwards_lno
].len
;
2727 current
= backwards
;
2728 current_lno
= backwards_lno
;
2730 if (forwards_lno
== img
->nr
) {
2734 forwards
+= img
->line
[forwards_lno
].len
;
2737 current_lno
= forwards_lno
;
2744 static void remove_first_line(struct image
*img
)
2746 img
->buf
+= img
->line
[0].len
;
2747 img
->len
-= img
->line
[0].len
;
2752 static void remove_last_line(struct image
*img
)
2754 img
->len
-= img
->line
[--img
->nr
].len
;
2758 * The change from "preimage" and "postimage" has been found to
2759 * apply at applied_pos (counts in line numbers) in "img".
2760 * Update "img" to remove "preimage" and replace it with "postimage".
2762 static void update_image(struct apply_state
*state
,
2765 struct image
*preimage
,
2766 struct image
*postimage
)
2769 * remove the copy of preimage at offset in img
2770 * and replace it with postimage
2773 size_t remove_count
, insert_count
, applied_at
= 0;
2778 * If we are removing blank lines at the end of img,
2779 * the preimage may extend beyond the end.
2780 * If that is the case, we must be careful only to
2781 * remove the part of the preimage that falls within
2782 * the boundaries of img. Initialize preimage_limit
2783 * to the number of lines in the preimage that falls
2784 * within the boundaries.
2786 preimage_limit
= preimage
->nr
;
2787 if (preimage_limit
> img
->nr
- applied_pos
)
2788 preimage_limit
= img
->nr
- applied_pos
;
2790 for (i
= 0; i
< applied_pos
; i
++)
2791 applied_at
+= img
->line
[i
].len
;
2794 for (i
= 0; i
< preimage_limit
; i
++)
2795 remove_count
+= img
->line
[applied_pos
+ i
].len
;
2796 insert_count
= postimage
->len
;
2798 /* Adjust the contents */
2799 result
= xmalloc(st_add3(st_sub(img
->len
, remove_count
), insert_count
, 1));
2800 memcpy(result
, img
->buf
, applied_at
);
2801 memcpy(result
+ applied_at
, postimage
->buf
, postimage
->len
);
2802 memcpy(result
+ applied_at
+ postimage
->len
,
2803 img
->buf
+ (applied_at
+ remove_count
),
2804 img
->len
- (applied_at
+ remove_count
));
2807 img
->len
+= insert_count
- remove_count
;
2808 result
[img
->len
] = '\0';
2810 /* Adjust the line table */
2811 nr
= img
->nr
+ postimage
->nr
- preimage_limit
;
2812 if (preimage_limit
< postimage
->nr
) {
2814 * NOTE: this knows that we never call remove_first_line()
2815 * on anything other than pre/post image.
2817 REALLOC_ARRAY(img
->line
, nr
);
2818 img
->line_allocated
= img
->line
;
2820 if (preimage_limit
!= postimage
->nr
)
2821 MOVE_ARRAY(img
->line
+ applied_pos
+ postimage
->nr
,
2822 img
->line
+ applied_pos
+ preimage_limit
,
2823 img
->nr
- (applied_pos
+ preimage_limit
));
2824 COPY_ARRAY(img
->line
+ applied_pos
, postimage
->line
, postimage
->nr
);
2825 if (!state
->allow_overlap
)
2826 for (i
= 0; i
< postimage
->nr
; i
++)
2827 img
->line
[applied_pos
+ i
].flag
|= LINE_PATCHED
;
2832 * Use the patch-hunk text in "frag" to prepare two images (preimage and
2833 * postimage) for the hunk. Find lines that match "preimage" in "img" and
2834 * replace the part of "img" with "postimage" text.
2836 static int apply_one_fragment(struct apply_state
*state
,
2837 struct image
*img
, struct fragment
*frag
,
2838 int inaccurate_eof
, unsigned ws_rule
,
2841 int match_beginning
, match_end
;
2842 const char *patch
= frag
->patch
;
2843 int size
= frag
->size
;
2844 char *old
, *oldlines
;
2845 struct strbuf newlines
;
2846 int new_blank_lines_at_end
= 0;
2847 int found_new_blank_lines_at_end
= 0;
2848 int hunk_linenr
= frag
->linenr
;
2849 unsigned long leading
, trailing
;
2850 int pos
, applied_pos
;
2851 struct image preimage
;
2852 struct image postimage
;
2854 memset(&preimage
, 0, sizeof(preimage
));
2855 memset(&postimage
, 0, sizeof(postimage
));
2856 oldlines
= xmalloc(size
);
2857 strbuf_init(&newlines
, size
);
2862 int len
= linelen(patch
, size
);
2864 int added_blank_line
= 0;
2865 int is_blank_context
= 0;
2872 * "plen" is how much of the line we should use for
2873 * the actual patch data. Normally we just remove the
2874 * first character on the line, but if the line is
2875 * followed by "\ No newline", then we also remove the
2876 * last one (which is the newline, of course).
2879 if (len
< size
&& patch
[len
] == '\\')
2882 if (state
->apply_in_reverse
) {
2885 else if (first
== '+')
2891 /* Newer GNU diff, empty context line */
2893 /* ... followed by '\No newline'; nothing */
2896 strbuf_addch(&newlines
, '\n');
2897 add_line_info(&preimage
, "\n", 1, LINE_COMMON
);
2898 add_line_info(&postimage
, "\n", 1, LINE_COMMON
);
2899 is_blank_context
= 1;
2902 if (plen
&& (ws_rule
& WS_BLANK_AT_EOF
) &&
2903 ws_blank_line(patch
+ 1, plen
, ws_rule
))
2904 is_blank_context
= 1;
2907 memcpy(old
, patch
+ 1, plen
);
2908 add_line_info(&preimage
, old
, plen
,
2909 (first
== ' ' ? LINE_COMMON
: 0));
2915 /* --no-add does not add new lines */
2916 if (first
== '+' && state
->no_add
)
2919 start
= newlines
.len
;
2921 !state
->whitespace_error
||
2922 state
->ws_error_action
!= correct_ws_error
) {
2923 strbuf_add(&newlines
, patch
+ 1, plen
);
2926 ws_fix_copy(&newlines
, patch
+ 1, plen
, ws_rule
, &state
->applied_after_fixing_ws
);
2928 add_line_info(&postimage
, newlines
.buf
+ start
, newlines
.len
- start
,
2929 (first
== '+' ? 0 : LINE_COMMON
));
2931 (ws_rule
& WS_BLANK_AT_EOF
) &&
2932 ws_blank_line(patch
+ 1, plen
, ws_rule
))
2933 added_blank_line
= 1;
2935 case '@': case '\\':
2936 /* Ignore it, we already handled it */
2939 if (state
->apply_verbosity
> verbosity_normal
)
2940 error(_("invalid start of line: '%c'"), first
);
2944 if (added_blank_line
) {
2945 if (!new_blank_lines_at_end
)
2946 found_new_blank_lines_at_end
= hunk_linenr
;
2947 new_blank_lines_at_end
++;
2949 else if (is_blank_context
)
2952 new_blank_lines_at_end
= 0;
2957 if (inaccurate_eof
&&
2958 old
> oldlines
&& old
[-1] == '\n' &&
2959 newlines
.len
> 0 && newlines
.buf
[newlines
.len
- 1] == '\n') {
2961 strbuf_setlen(&newlines
, newlines
.len
- 1);
2962 preimage
.line_allocated
[preimage
.nr
- 1].len
--;
2963 postimage
.line_allocated
[postimage
.nr
- 1].len
--;
2966 leading
= frag
->leading
;
2967 trailing
= frag
->trailing
;
2970 * A hunk to change lines at the beginning would begin with
2972 * but we need to be careful. -U0 that inserts before the second
2973 * line also has this pattern.
2975 * And a hunk to add to an empty file would begin with
2978 * In other words, a hunk that is (frag->oldpos <= 1) with or
2979 * without leading context must match at the beginning.
2981 match_beginning
= (!frag
->oldpos
||
2982 (frag
->oldpos
== 1 && !state
->unidiff_zero
));
2985 * A hunk without trailing lines must match at the end.
2986 * However, we simply cannot tell if a hunk must match end
2987 * from the lack of trailing lines if the patch was generated
2988 * with unidiff without any context.
2990 match_end
= !state
->unidiff_zero
&& !trailing
;
2992 pos
= frag
->newpos
? (frag
->newpos
- 1) : 0;
2993 preimage
.buf
= oldlines
;
2994 preimage
.len
= old
- oldlines
;
2995 postimage
.buf
= newlines
.buf
;
2996 postimage
.len
= newlines
.len
;
2997 preimage
.line
= preimage
.line_allocated
;
2998 postimage
.line
= postimage
.line_allocated
;
3002 applied_pos
= find_pos(state
, img
, &preimage
, &postimage
, pos
,
3003 ws_rule
, match_beginning
, match_end
);
3005 if (applied_pos
>= 0)
3008 /* Am I at my context limits? */
3009 if ((leading
<= state
->p_context
) && (trailing
<= state
->p_context
))
3011 if (match_beginning
|| match_end
) {
3012 match_beginning
= match_end
= 0;
3017 * Reduce the number of context lines; reduce both
3018 * leading and trailing if they are equal otherwise
3019 * just reduce the larger context.
3021 if (leading
>= trailing
) {
3022 remove_first_line(&preimage
);
3023 remove_first_line(&postimage
);
3027 if (trailing
> leading
) {
3028 remove_last_line(&preimage
);
3029 remove_last_line(&postimage
);
3034 if (applied_pos
>= 0) {
3035 if (new_blank_lines_at_end
&&
3036 preimage
.nr
+ applied_pos
>= img
->nr
&&
3037 (ws_rule
& WS_BLANK_AT_EOF
) &&
3038 state
->ws_error_action
!= nowarn_ws_error
) {
3039 record_ws_error(state
, WS_BLANK_AT_EOF
, "+", 1,
3040 found_new_blank_lines_at_end
);
3041 if (state
->ws_error_action
== correct_ws_error
) {
3042 while (new_blank_lines_at_end
--)
3043 remove_last_line(&postimage
);
3046 * We would want to prevent write_out_results()
3047 * from taking place in apply_patch() that follows
3048 * the callchain led us here, which is:
3049 * apply_patch->check_patch_list->check_patch->
3050 * apply_data->apply_fragments->apply_one_fragment
3052 if (state
->ws_error_action
== die_on_ws_error
)
3056 if (state
->apply_verbosity
> verbosity_normal
&& applied_pos
!= pos
) {
3057 int offset
= applied_pos
- pos
;
3058 if (state
->apply_in_reverse
)
3059 offset
= 0 - offset
;
3061 Q_("Hunk #%d succeeded at %d (offset %d line).",
3062 "Hunk #%d succeeded at %d (offset %d lines).",
3064 nth_fragment
, applied_pos
+ 1, offset
);
3068 * Warn if it was necessary to reduce the number
3071 if ((leading
!= frag
->leading
||
3072 trailing
!= frag
->trailing
) && state
->apply_verbosity
> verbosity_silent
)
3073 fprintf_ln(stderr
, _("Context reduced to (%ld/%ld)"
3074 " to apply fragment at %d"),
3075 leading
, trailing
, applied_pos
+1);
3076 update_image(state
, img
, applied_pos
, &preimage
, &postimage
);
3078 if (state
->apply_verbosity
> verbosity_normal
)
3079 error(_("while searching for:\n%.*s"),
3080 (int)(old
- oldlines
), oldlines
);
3085 strbuf_release(&newlines
);
3086 free(preimage
.line_allocated
);
3087 free(postimage
.line_allocated
);
3089 return (applied_pos
< 0);
3092 static int apply_binary_fragment(struct apply_state
*state
,
3094 struct patch
*patch
)
3096 struct fragment
*fragment
= patch
->fragments
;
3101 return error(_("missing binary patch data for '%s'"),
3106 /* Binary patch is irreversible without the optional second hunk */
3107 if (state
->apply_in_reverse
) {
3108 if (!fragment
->next
)
3109 return error(_("cannot reverse-apply a binary patch "
3110 "without the reverse hunk to '%s'"),
3112 ? patch
->new_name
: patch
->old_name
);
3113 fragment
= fragment
->next
;
3115 switch (fragment
->binary_patch_method
) {
3116 case BINARY_DELTA_DEFLATED
:
3117 dst
= patch_delta(img
->buf
, img
->len
, fragment
->patch
,
3118 fragment
->size
, &len
);
3125 case BINARY_LITERAL_DEFLATED
:
3127 img
->len
= fragment
->size
;
3128 img
->buf
= xmemdupz(fragment
->patch
, img
->len
);
3135 * Replace "img" with the result of applying the binary patch.
3136 * The binary patch data itself in patch->fragment is still kept
3137 * but the preimage prepared by the caller in "img" is freed here
3138 * or in the helper function apply_binary_fragment() this calls.
3140 static int apply_binary(struct apply_state
*state
,
3142 struct patch
*patch
)
3144 const char *name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
3145 struct object_id oid
;
3146 const unsigned hexsz
= the_hash_algo
->hexsz
;
3149 * For safety, we require patch index line to contain
3150 * full hex textual object ID for old and new, at least for now.
3152 if (strlen(patch
->old_oid_prefix
) != hexsz
||
3153 strlen(patch
->new_oid_prefix
) != hexsz
||
3154 get_oid_hex(patch
->old_oid_prefix
, &oid
) ||
3155 get_oid_hex(patch
->new_oid_prefix
, &oid
))
3156 return error(_("cannot apply binary patch to '%s' "
3157 "without full index line"), name
);
3159 if (patch
->old_name
) {
3161 * See if the old one matches what the patch
3164 hash_object_file(img
->buf
, img
->len
, blob_type
, &oid
);
3165 if (strcmp(oid_to_hex(&oid
), patch
->old_oid_prefix
))
3166 return error(_("the patch applies to '%s' (%s), "
3167 "which does not match the "
3168 "current contents."),
3169 name
, oid_to_hex(&oid
));
3172 /* Otherwise, the old one must be empty. */
3174 return error(_("the patch applies to an empty "
3175 "'%s' but it is not empty"), name
);
3178 get_oid_hex(patch
->new_oid_prefix
, &oid
);
3179 if (is_null_oid(&oid
)) {
3181 return 0; /* deletion patch */
3184 if (has_sha1_file(oid
.hash
)) {
3185 /* We already have the postimage */
3186 enum object_type type
;
3190 result
= read_object_file(&oid
, &type
, &size
);
3192 return error(_("the necessary postimage %s for "
3193 "'%s' cannot be read"),
3194 patch
->new_oid_prefix
, name
);
3200 * We have verified buf matches the preimage;
3201 * apply the patch data to it, which is stored
3202 * in the patch->fragments->{patch,size}.
3204 if (apply_binary_fragment(state
, img
, patch
))
3205 return error(_("binary patch does not apply to '%s'"),
3208 /* verify that the result matches */
3209 hash_object_file(img
->buf
, img
->len
, blob_type
, &oid
);
3210 if (strcmp(oid_to_hex(&oid
), patch
->new_oid_prefix
))
3211 return error(_("binary patch to '%s' creates incorrect result (expecting %s, got %s)"),
3212 name
, patch
->new_oid_prefix
, oid_to_hex(&oid
));
3218 static int apply_fragments(struct apply_state
*state
, struct image
*img
, struct patch
*patch
)
3220 struct fragment
*frag
= patch
->fragments
;
3221 const char *name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
3222 unsigned ws_rule
= patch
->ws_rule
;
3223 unsigned inaccurate_eof
= patch
->inaccurate_eof
;
3226 if (patch
->is_binary
)
3227 return apply_binary(state
, img
, patch
);
3231 if (apply_one_fragment(state
, img
, frag
, inaccurate_eof
, ws_rule
, nth
)) {
3232 error(_("patch failed: %s:%ld"), name
, frag
->oldpos
);
3233 if (!state
->apply_with_reject
)
3242 static int read_blob_object(struct strbuf
*buf
, const struct object_id
*oid
, unsigned mode
)
3244 if (S_ISGITLINK(mode
)) {
3245 strbuf_grow(buf
, 100);
3246 strbuf_addf(buf
, "Subproject commit %s\n", oid_to_hex(oid
));
3248 enum object_type type
;
3252 result
= read_object_file(oid
, &type
, &sz
);
3255 /* XXX read_sha1_file NUL-terminates */
3256 strbuf_attach(buf
, result
, sz
, sz
+ 1);
3261 static int read_file_or_gitlink(const struct cache_entry
*ce
, struct strbuf
*buf
)
3265 return read_blob_object(buf
, &ce
->oid
, ce
->ce_mode
);
3268 static struct patch
*in_fn_table(struct apply_state
*state
, const char *name
)
3270 struct string_list_item
*item
;
3275 item
= string_list_lookup(&state
->fn_table
, name
);
3277 return (struct patch
*)item
->util
;
3283 * item->util in the filename table records the status of the path.
3284 * Usually it points at a patch (whose result records the contents
3285 * of it after applying it), but it could be PATH_WAS_DELETED for a
3286 * path that a previously applied patch has already removed, or
3287 * PATH_TO_BE_DELETED for a path that a later patch would remove.
3289 * The latter is needed to deal with a case where two paths A and B
3290 * are swapped by first renaming A to B and then renaming B to A;
3291 * moving A to B should not be prevented due to presence of B as we
3292 * will remove it in a later patch.
3294 #define PATH_TO_BE_DELETED ((struct patch *) -2)
3295 #define PATH_WAS_DELETED ((struct patch *) -1)
3297 static int to_be_deleted(struct patch
*patch
)
3299 return patch
== PATH_TO_BE_DELETED
;
3302 static int was_deleted(struct patch
*patch
)
3304 return patch
== PATH_WAS_DELETED
;
3307 static void add_to_fn_table(struct apply_state
*state
, struct patch
*patch
)
3309 struct string_list_item
*item
;
3312 * Always add new_name unless patch is a deletion
3313 * This should cover the cases for normal diffs,
3314 * file creations and copies
3316 if (patch
->new_name
!= NULL
) {
3317 item
= string_list_insert(&state
->fn_table
, patch
->new_name
);
3322 * store a failure on rename/deletion cases because
3323 * later chunks shouldn't patch old names
3325 if ((patch
->new_name
== NULL
) || (patch
->is_rename
)) {
3326 item
= string_list_insert(&state
->fn_table
, patch
->old_name
);
3327 item
->util
= PATH_WAS_DELETED
;
3331 static void prepare_fn_table(struct apply_state
*state
, struct patch
*patch
)
3334 * store information about incoming file deletion
3337 if ((patch
->new_name
== NULL
) || (patch
->is_rename
)) {
3338 struct string_list_item
*item
;
3339 item
= string_list_insert(&state
->fn_table
, patch
->old_name
);
3340 item
->util
= PATH_TO_BE_DELETED
;
3342 patch
= patch
->next
;
3346 static int checkout_target(struct index_state
*istate
,
3347 struct cache_entry
*ce
, struct stat
*st
)
3349 struct checkout costate
= CHECKOUT_INIT
;
3351 costate
.refresh_cache
= 1;
3352 costate
.istate
= istate
;
3353 if (checkout_entry(ce
, &costate
, NULL
) || lstat(ce
->name
, st
))
3354 return error(_("cannot checkout %s"), ce
->name
);
3358 static struct patch
*previous_patch(struct apply_state
*state
,
3359 struct patch
*patch
,
3362 struct patch
*previous
;
3365 if (patch
->is_copy
|| patch
->is_rename
)
3366 return NULL
; /* "git" patches do not depend on the order */
3368 previous
= in_fn_table(state
, patch
->old_name
);
3372 if (to_be_deleted(previous
))
3373 return NULL
; /* the deletion hasn't happened yet */
3375 if (was_deleted(previous
))
3381 static int verify_index_match(struct apply_state
*state
,
3382 const struct cache_entry
*ce
,
3385 if (S_ISGITLINK(ce
->ce_mode
)) {
3386 if (!S_ISDIR(st
->st_mode
))
3390 return ie_match_stat(state
->repo
->index
, ce
, st
,
3391 CE_MATCH_IGNORE_VALID
| CE_MATCH_IGNORE_SKIP_WORKTREE
);
3394 #define SUBMODULE_PATCH_WITHOUT_INDEX 1
3396 static int load_patch_target(struct apply_state
*state
,
3398 const struct cache_entry
*ce
,
3400 struct patch
*patch
,
3402 unsigned expected_mode
)
3404 if (state
->cached
|| state
->check_index
) {
3405 if (read_file_or_gitlink(ce
, buf
))
3406 return error(_("failed to read %s"), name
);
3408 if (S_ISGITLINK(expected_mode
)) {
3410 return read_file_or_gitlink(ce
, buf
);
3412 return SUBMODULE_PATCH_WITHOUT_INDEX
;
3413 } else if (has_symlink_leading_path(name
, strlen(name
))) {
3414 return error(_("reading from '%s' beyond a symbolic link"), name
);
3416 if (read_old_data(st
, patch
, name
, buf
))
3417 return error(_("failed to read %s"), name
);
3424 * We are about to apply "patch"; populate the "image" with the
3425 * current version we have, from the working tree or from the index,
3426 * depending on the situation e.g. --cached/--index. If we are
3427 * applying a non-git patch that incrementally updates the tree,
3428 * we read from the result of a previous diff.
3430 static int load_preimage(struct apply_state
*state
,
3431 struct image
*image
,
3432 struct patch
*patch
, struct stat
*st
,
3433 const struct cache_entry
*ce
)
3435 struct strbuf buf
= STRBUF_INIT
;
3438 struct patch
*previous
;
3441 previous
= previous_patch(state
, patch
, &status
);
3443 return error(_("path %s has been renamed/deleted"),
3446 /* We have a patched copy in memory; use that. */
3447 strbuf_add(&buf
, previous
->result
, previous
->resultsize
);
3449 status
= load_patch_target(state
, &buf
, ce
, st
, patch
,
3450 patch
->old_name
, patch
->old_mode
);
3453 else if (status
== SUBMODULE_PATCH_WITHOUT_INDEX
) {
3455 * There is no way to apply subproject
3456 * patch without looking at the index.
3457 * NEEDSWORK: shouldn't this be flagged
3460 free_fragment_list(patch
->fragments
);
3461 patch
->fragments
= NULL
;
3462 } else if (status
) {
3463 return error(_("failed to read %s"), patch
->old_name
);
3467 img
= strbuf_detach(&buf
, &len
);
3468 prepare_image(image
, img
, len
, !patch
->is_binary
);
3472 static int three_way_merge(struct image
*image
,
3474 const struct object_id
*base
,
3475 const struct object_id
*ours
,
3476 const struct object_id
*theirs
)
3478 mmfile_t base_file
, our_file
, their_file
;
3479 mmbuffer_t result
= { NULL
};
3482 read_mmblob(&base_file
, base
);
3483 read_mmblob(&our_file
, ours
);
3484 read_mmblob(&their_file
, theirs
);
3485 status
= ll_merge(&result
, path
,
3488 &their_file
, "theirs", NULL
);
3489 free(base_file
.ptr
);
3491 free(their_file
.ptr
);
3492 if (status
< 0 || !result
.ptr
) {
3497 image
->buf
= result
.ptr
;
3498 image
->len
= result
.size
;
3504 * When directly falling back to add/add three-way merge, we read from
3505 * the current contents of the new_name. In no cases other than that
3506 * this function will be called.
3508 static int load_current(struct apply_state
*state
,
3509 struct image
*image
,
3510 struct patch
*patch
)
3512 struct strbuf buf
= STRBUF_INIT
;
3517 struct cache_entry
*ce
;
3518 char *name
= patch
->new_name
;
3519 unsigned mode
= patch
->new_mode
;
3522 BUG("patch to %s is not a creation", patch
->old_name
);
3524 pos
= index_name_pos(state
->repo
->index
, name
, strlen(name
));
3526 return error(_("%s: does not exist in index"), name
);
3527 ce
= state
->repo
->index
->cache
[pos
];
3528 if (lstat(name
, &st
)) {
3529 if (errno
!= ENOENT
)
3530 return error_errno("%s", name
);
3531 if (checkout_target(state
->repo
->index
, ce
, &st
))
3534 if (verify_index_match(state
, ce
, &st
))
3535 return error(_("%s: does not match index"), name
);
3537 status
= load_patch_target(state
, &buf
, ce
, &st
, patch
, name
, mode
);
3542 img
= strbuf_detach(&buf
, &len
);
3543 prepare_image(image
, img
, len
, !patch
->is_binary
);
3547 static int try_threeway(struct apply_state
*state
,
3548 struct image
*image
,
3549 struct patch
*patch
,
3551 const struct cache_entry
*ce
)
3553 struct object_id pre_oid
, post_oid
, our_oid
;
3554 struct strbuf buf
= STRBUF_INIT
;
3558 struct image tmp_image
;
3560 /* No point falling back to 3-way merge in these cases */
3561 if (patch
->is_delete
||
3562 S_ISGITLINK(patch
->old_mode
) || S_ISGITLINK(patch
->new_mode
))
3565 /* Preimage the patch was prepared for */
3567 write_object_file("", 0, blob_type
, &pre_oid
);
3568 else if (get_oid(patch
->old_oid_prefix
, &pre_oid
) ||
3569 read_blob_object(&buf
, &pre_oid
, patch
->old_mode
))
3570 return error(_("repository lacks the necessary blob to fall back on 3-way merge."));
3572 if (state
->apply_verbosity
> verbosity_silent
)
3573 fprintf(stderr
, _("Falling back to three-way merge...\n"));
3575 img
= strbuf_detach(&buf
, &len
);
3576 prepare_image(&tmp_image
, img
, len
, 1);
3577 /* Apply the patch to get the post image */
3578 if (apply_fragments(state
, &tmp_image
, patch
) < 0) {
3579 clear_image(&tmp_image
);
3582 /* post_oid is theirs */
3583 write_object_file(tmp_image
.buf
, tmp_image
.len
, blob_type
, &post_oid
);
3584 clear_image(&tmp_image
);
3586 /* our_oid is ours */
3587 if (patch
->is_new
) {
3588 if (load_current(state
, &tmp_image
, patch
))
3589 return error(_("cannot read the current contents of '%s'"),
3592 if (load_preimage(state
, &tmp_image
, patch
, st
, ce
))
3593 return error(_("cannot read the current contents of '%s'"),
3596 write_object_file(tmp_image
.buf
, tmp_image
.len
, blob_type
, &our_oid
);
3597 clear_image(&tmp_image
);
3599 /* in-core three-way merge between post and our using pre as base */
3600 status
= three_way_merge(image
, patch
->new_name
,
3601 &pre_oid
, &our_oid
, &post_oid
);
3603 if (state
->apply_verbosity
> verbosity_silent
)
3605 _("Failed to fall back on three-way merge...\n"));
3610 patch
->conflicted_threeway
= 1;
3612 oidclr(&patch
->threeway_stage
[0]);
3614 oidcpy(&patch
->threeway_stage
[0], &pre_oid
);
3615 oidcpy(&patch
->threeway_stage
[1], &our_oid
);
3616 oidcpy(&patch
->threeway_stage
[2], &post_oid
);
3617 if (state
->apply_verbosity
> verbosity_silent
)
3619 _("Applied patch to '%s' with conflicts.\n"),
3622 if (state
->apply_verbosity
> verbosity_silent
)
3624 _("Applied patch to '%s' cleanly.\n"),
3630 static int apply_data(struct apply_state
*state
, struct patch
*patch
,
3631 struct stat
*st
, const struct cache_entry
*ce
)
3635 if (load_preimage(state
, &image
, patch
, st
, ce
) < 0)
3638 if (patch
->direct_to_threeway
||
3639 apply_fragments(state
, &image
, patch
) < 0) {
3640 /* Note: with --reject, apply_fragments() returns 0 */
3641 if (!state
->threeway
|| try_threeway(state
, &image
, patch
, st
, ce
) < 0)
3644 patch
->result
= image
.buf
;
3645 patch
->resultsize
= image
.len
;
3646 add_to_fn_table(state
, patch
);
3647 free(image
.line_allocated
);
3649 if (0 < patch
->is_delete
&& patch
->resultsize
)
3650 return error(_("removal patch leaves file contents"));
3656 * If "patch" that we are looking at modifies or deletes what we have,
3657 * we would want it not to lose any local modification we have, either
3658 * in the working tree or in the index.
3660 * This also decides if a non-git patch is a creation patch or a
3661 * modification to an existing empty file. We do not check the state
3662 * of the current tree for a creation patch in this function; the caller
3663 * check_patch() separately makes sure (and errors out otherwise) that
3664 * the path the patch creates does not exist in the current tree.
3666 static int check_preimage(struct apply_state
*state
,
3667 struct patch
*patch
,
3668 struct cache_entry
**ce
,
3671 const char *old_name
= patch
->old_name
;
3672 struct patch
*previous
= NULL
;
3673 int stat_ret
= 0, status
;
3674 unsigned st_mode
= 0;
3679 assert(patch
->is_new
<= 0);
3680 previous
= previous_patch(state
, patch
, &status
);
3683 return error(_("path %s has been renamed/deleted"), old_name
);
3685 st_mode
= previous
->new_mode
;
3686 } else if (!state
->cached
) {
3687 stat_ret
= lstat(old_name
, st
);
3688 if (stat_ret
&& errno
!= ENOENT
)
3689 return error_errno("%s", old_name
);
3692 if (state
->check_index
&& !previous
) {
3693 int pos
= index_name_pos(state
->repo
->index
, old_name
,
3696 if (patch
->is_new
< 0)
3698 return error(_("%s: does not exist in index"), old_name
);
3700 *ce
= state
->repo
->index
->cache
[pos
];
3702 if (checkout_target(state
->repo
->index
, *ce
, st
))
3705 if (!state
->cached
&& verify_index_match(state
, *ce
, st
))
3706 return error(_("%s: does not match index"), old_name
);
3708 st_mode
= (*ce
)->ce_mode
;
3709 } else if (stat_ret
< 0) {
3710 if (patch
->is_new
< 0)
3712 return error_errno("%s", old_name
);
3715 if (!state
->cached
&& !previous
)
3716 st_mode
= ce_mode_from_stat(*ce
, st
->st_mode
);
3718 if (patch
->is_new
< 0)
3720 if (!patch
->old_mode
)
3721 patch
->old_mode
= st_mode
;
3722 if ((st_mode
^ patch
->old_mode
) & S_IFMT
)
3723 return error(_("%s: wrong type"), old_name
);
3724 if (st_mode
!= patch
->old_mode
)
3725 warning(_("%s has type %o, expected %o"),
3726 old_name
, st_mode
, patch
->old_mode
);
3727 if (!patch
->new_mode
&& !patch
->is_delete
)
3728 patch
->new_mode
= st_mode
;
3733 patch
->is_delete
= 0;
3734 FREE_AND_NULL(patch
->old_name
);
3739 #define EXISTS_IN_INDEX 1
3740 #define EXISTS_IN_WORKTREE 2
3742 static int check_to_create(struct apply_state
*state
,
3743 const char *new_name
,
3748 if (state
->check_index
&&
3749 index_name_pos(state
->repo
->index
, new_name
, strlen(new_name
)) >= 0 &&
3751 return EXISTS_IN_INDEX
;
3755 if (!lstat(new_name
, &nst
)) {
3756 if (S_ISDIR(nst
.st_mode
) || ok_if_exists
)
3759 * A leading component of new_name might be a symlink
3760 * that is going to be removed with this patch, but
3761 * still pointing at somewhere that has the path.
3762 * In such a case, path "new_name" does not exist as
3763 * far as git is concerned.
3765 if (has_symlink_leading_path(new_name
, strlen(new_name
)))
3768 return EXISTS_IN_WORKTREE
;
3769 } else if (!is_missing_file_error(errno
)) {
3770 return error_errno("%s", new_name
);
3775 static uintptr_t register_symlink_changes(struct apply_state
*state
,
3779 struct string_list_item
*ent
;
3781 ent
= string_list_lookup(&state
->symlink_changes
, path
);
3783 ent
= string_list_insert(&state
->symlink_changes
, path
);
3784 ent
->util
= (void *)0;
3786 ent
->util
= (void *)(what
| ((uintptr_t)ent
->util
));
3787 return (uintptr_t)ent
->util
;
3790 static uintptr_t check_symlink_changes(struct apply_state
*state
, const char *path
)
3792 struct string_list_item
*ent
;
3794 ent
= string_list_lookup(&state
->symlink_changes
, path
);
3797 return (uintptr_t)ent
->util
;
3800 static void prepare_symlink_changes(struct apply_state
*state
, struct patch
*patch
)
3802 for ( ; patch
; patch
= patch
->next
) {
3803 if ((patch
->old_name
&& S_ISLNK(patch
->old_mode
)) &&
3804 (patch
->is_rename
|| patch
->is_delete
))
3805 /* the symlink at patch->old_name is removed */
3806 register_symlink_changes(state
, patch
->old_name
, APPLY_SYMLINK_GOES_AWAY
);
3808 if (patch
->new_name
&& S_ISLNK(patch
->new_mode
))
3809 /* the symlink at patch->new_name is created or remains */
3810 register_symlink_changes(state
, patch
->new_name
, APPLY_SYMLINK_IN_RESULT
);
3814 static int path_is_beyond_symlink_1(struct apply_state
*state
, struct strbuf
*name
)
3817 unsigned int change
;
3819 while (--name
->len
&& name
->buf
[name
->len
] != '/')
3820 ; /* scan backwards */
3823 name
->buf
[name
->len
] = '\0';
3824 change
= check_symlink_changes(state
, name
->buf
);
3825 if (change
& APPLY_SYMLINK_IN_RESULT
)
3827 if (change
& APPLY_SYMLINK_GOES_AWAY
)
3829 * This cannot be "return 0", because we may
3830 * see a new one created at a higher level.
3834 /* otherwise, check the preimage */
3835 if (state
->check_index
) {
3836 struct cache_entry
*ce
;
3838 ce
= index_file_exists(state
->repo
->index
, name
->buf
,
3839 name
->len
, ignore_case
);
3840 if (ce
&& S_ISLNK(ce
->ce_mode
))
3844 if (!lstat(name
->buf
, &st
) && S_ISLNK(st
.st_mode
))
3851 static int path_is_beyond_symlink(struct apply_state
*state
, const char *name_
)
3854 struct strbuf name
= STRBUF_INIT
;
3856 assert(*name_
!= '\0');
3857 strbuf_addstr(&name
, name_
);
3858 ret
= path_is_beyond_symlink_1(state
, &name
);
3859 strbuf_release(&name
);
3864 static int check_unsafe_path(struct patch
*patch
)
3866 const char *old_name
= NULL
;
3867 const char *new_name
= NULL
;
3868 if (patch
->is_delete
)
3869 old_name
= patch
->old_name
;
3870 else if (!patch
->is_new
&& !patch
->is_copy
)
3871 old_name
= patch
->old_name
;
3872 if (!patch
->is_delete
)
3873 new_name
= patch
->new_name
;
3875 if (old_name
&& !verify_path(old_name
, patch
->old_mode
))
3876 return error(_("invalid path '%s'"), old_name
);
3877 if (new_name
&& !verify_path(new_name
, patch
->new_mode
))
3878 return error(_("invalid path '%s'"), new_name
);
3883 * Check and apply the patch in-core; leave the result in patch->result
3884 * for the caller to write it out to the final destination.
3886 static int check_patch(struct apply_state
*state
, struct patch
*patch
)
3889 const char *old_name
= patch
->old_name
;
3890 const char *new_name
= patch
->new_name
;
3891 const char *name
= old_name
? old_name
: new_name
;
3892 struct cache_entry
*ce
= NULL
;
3893 struct patch
*tpatch
;
3897 patch
->rejected
= 1; /* we will drop this after we succeed */
3899 status
= check_preimage(state
, patch
, &ce
, &st
);
3902 old_name
= patch
->old_name
;
3905 * A type-change diff is always split into a patch to delete
3906 * old, immediately followed by a patch to create new (see
3907 * diff.c::run_diff()); in such a case it is Ok that the entry
3908 * to be deleted by the previous patch is still in the working
3909 * tree and in the index.
3911 * A patch to swap-rename between A and B would first rename A
3912 * to B and then rename B to A. While applying the first one,
3913 * the presence of B should not stop A from getting renamed to
3914 * B; ask to_be_deleted() about the later rename. Removal of
3915 * B and rename from A to B is handled the same way by asking
3918 if ((tpatch
= in_fn_table(state
, new_name
)) &&
3919 (was_deleted(tpatch
) || to_be_deleted(tpatch
)))
3925 ((0 < patch
->is_new
) || patch
->is_rename
|| patch
->is_copy
)) {
3926 int err
= check_to_create(state
, new_name
, ok_if_exists
);
3928 if (err
&& state
->threeway
) {
3929 patch
->direct_to_threeway
= 1;
3930 } else switch (err
) {
3933 case EXISTS_IN_INDEX
:
3934 return error(_("%s: already exists in index"), new_name
);
3936 case EXISTS_IN_WORKTREE
:
3937 return error(_("%s: already exists in working directory"),
3943 if (!patch
->new_mode
) {
3944 if (0 < patch
->is_new
)
3945 patch
->new_mode
= S_IFREG
| 0644;
3947 patch
->new_mode
= patch
->old_mode
;
3951 if (new_name
&& old_name
) {
3952 int same
= !strcmp(old_name
, new_name
);
3953 if (!patch
->new_mode
)
3954 patch
->new_mode
= patch
->old_mode
;
3955 if ((patch
->old_mode
^ patch
->new_mode
) & S_IFMT
) {
3957 return error(_("new mode (%o) of %s does not "
3958 "match old mode (%o)"),
3959 patch
->new_mode
, new_name
,
3962 return error(_("new mode (%o) of %s does not "
3963 "match old mode (%o) of %s"),
3964 patch
->new_mode
, new_name
,
3965 patch
->old_mode
, old_name
);
3969 if (!state
->unsafe_paths
&& check_unsafe_path(patch
))
3973 * An attempt to read from or delete a path that is beyond a
3974 * symbolic link will be prevented by load_patch_target() that
3975 * is called at the beginning of apply_data() so we do not
3976 * have to worry about a patch marked with "is_delete" bit
3977 * here. We however need to make sure that the patch result
3978 * is not deposited to a path that is beyond a symbolic link
3981 if (!patch
->is_delete
&& path_is_beyond_symlink(state
, patch
->new_name
))
3982 return error(_("affected file '%s' is beyond a symbolic link"),
3985 if (apply_data(state
, patch
, &st
, ce
) < 0)
3986 return error(_("%s: patch does not apply"), name
);
3987 patch
->rejected
= 0;
3991 static int check_patch_list(struct apply_state
*state
, struct patch
*patch
)
3995 prepare_symlink_changes(state
, patch
);
3996 prepare_fn_table(state
, patch
);
3999 if (state
->apply_verbosity
> verbosity_normal
)
4000 say_patch_name(stderr
,
4001 _("Checking patch %s..."), patch
);
4002 res
= check_patch(state
, patch
);
4006 patch
= patch
->next
;
4011 static int read_apply_cache(struct apply_state
*state
)
4013 if (state
->index_file
)
4014 return read_index_from(state
->repo
->index
, state
->index_file
,
4017 return read_index(state
->repo
->index
);
4020 /* This function tries to read the object name from the current index */
4021 static int get_current_oid(struct apply_state
*state
, const char *path
,
4022 struct object_id
*oid
)
4026 if (read_apply_cache(state
) < 0)
4028 pos
= index_name_pos(state
->repo
->index
, path
, strlen(path
));
4031 oidcpy(oid
, &state
->repo
->index
->cache
[pos
]->oid
);
4035 static int preimage_oid_in_gitlink_patch(struct patch
*p
, struct object_id
*oid
)
4038 * A usable gitlink patch has only one fragment (hunk) that looks like:
4040 * -Subproject commit <old sha1>
4041 * +Subproject commit <new sha1>
4044 * -Subproject commit <old sha1>
4045 * for a removal patch.
4047 struct fragment
*hunk
= p
->fragments
;
4048 static const char heading
[] = "-Subproject commit ";
4051 if (/* does the patch have only one hunk? */
4052 hunk
&& !hunk
->next
&&
4053 /* is its preimage one line? */
4054 hunk
->oldpos
== 1 && hunk
->oldlines
== 1 &&
4055 /* does preimage begin with the heading? */
4056 (preimage
= memchr(hunk
->patch
, '\n', hunk
->size
)) != NULL
&&
4057 starts_with(++preimage
, heading
) &&
4058 /* does it record full SHA-1? */
4059 !get_oid_hex(preimage
+ sizeof(heading
) - 1, oid
) &&
4060 preimage
[sizeof(heading
) + the_hash_algo
->hexsz
- 1] == '\n' &&
4061 /* does the abbreviated name on the index line agree with it? */
4062 starts_with(preimage
+ sizeof(heading
) - 1, p
->old_oid_prefix
))
4063 return 0; /* it all looks fine */
4065 /* we may have full object name on the index line */
4066 return get_oid_hex(p
->old_oid_prefix
, oid
);
4069 /* Build an index that contains just the files needed for a 3way merge */
4070 static int build_fake_ancestor(struct apply_state
*state
, struct patch
*list
)
4072 struct patch
*patch
;
4073 struct index_state result
= { NULL
};
4074 struct lock_file lock
= LOCK_INIT
;
4077 /* Once we start supporting the reverse patch, it may be
4078 * worth showing the new sha1 prefix, but until then...
4080 for (patch
= list
; patch
; patch
= patch
->next
) {
4081 struct object_id oid
;
4082 struct cache_entry
*ce
;
4085 name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
4086 if (0 < patch
->is_new
)
4089 if (S_ISGITLINK(patch
->old_mode
)) {
4090 if (!preimage_oid_in_gitlink_patch(patch
, &oid
))
4091 ; /* ok, the textual part looks sane */
4093 return error(_("sha1 information is lacking or "
4094 "useless for submodule %s"), name
);
4095 } else if (!get_oid_blob(patch
->old_oid_prefix
, &oid
)) {
4097 } else if (!patch
->lines_added
&& !patch
->lines_deleted
) {
4098 /* mode-only change: update the current */
4099 if (get_current_oid(state
, patch
->old_name
, &oid
))
4100 return error(_("mode change for %s, which is not "
4101 "in current HEAD"), name
);
4103 return error(_("sha1 information is lacking or useless "
4106 ce
= make_cache_entry(&result
, patch
->old_mode
, &oid
, name
, 0, 0);
4108 return error(_("make_cache_entry failed for path '%s'"),
4110 if (add_index_entry(&result
, ce
, ADD_CACHE_OK_TO_ADD
)) {
4111 discard_cache_entry(ce
);
4112 return error(_("could not add %s to temporary index"),
4117 hold_lock_file_for_update(&lock
, state
->fake_ancestor
, LOCK_DIE_ON_ERROR
);
4118 res
= write_locked_index(&result
, &lock
, COMMIT_LOCK
);
4119 discard_index(&result
);
4122 return error(_("could not write temporary index to %s"),
4123 state
->fake_ancestor
);
4128 static void stat_patch_list(struct apply_state
*state
, struct patch
*patch
)
4130 int files
, adds
, dels
;
4132 for (files
= adds
= dels
= 0 ; patch
; patch
= patch
->next
) {
4134 adds
+= patch
->lines_added
;
4135 dels
+= patch
->lines_deleted
;
4136 show_stats(state
, patch
);
4139 print_stat_summary(stdout
, files
, adds
, dels
);
4142 static void numstat_patch_list(struct apply_state
*state
,
4143 struct patch
*patch
)
4145 for ( ; patch
; patch
= patch
->next
) {
4147 name
= patch
->new_name
? patch
->new_name
: patch
->old_name
;
4148 if (patch
->is_binary
)
4151 printf("%d\t%d\t", patch
->lines_added
, patch
->lines_deleted
);
4152 write_name_quoted(name
, stdout
, state
->line_termination
);
4156 static void show_file_mode_name(const char *newdelete
, unsigned int mode
, const char *name
)
4159 printf(" %s mode %06o %s\n", newdelete
, mode
, name
);
4161 printf(" %s %s\n", newdelete
, name
);
4164 static void show_mode_change(struct patch
*p
, int show_name
)
4166 if (p
->old_mode
&& p
->new_mode
&& p
->old_mode
!= p
->new_mode
) {
4168 printf(" mode change %06o => %06o %s\n",
4169 p
->old_mode
, p
->new_mode
, p
->new_name
);
4171 printf(" mode change %06o => %06o\n",
4172 p
->old_mode
, p
->new_mode
);
4176 static void show_rename_copy(struct patch
*p
)
4178 const char *renamecopy
= p
->is_rename
? "rename" : "copy";
4179 const char *old_name
, *new_name
;
4181 /* Find common prefix */
4182 old_name
= p
->old_name
;
4183 new_name
= p
->new_name
;
4185 const char *slash_old
, *slash_new
;
4186 slash_old
= strchr(old_name
, '/');
4187 slash_new
= strchr(new_name
, '/');
4190 slash_old
- old_name
!= slash_new
- new_name
||
4191 memcmp(old_name
, new_name
, slash_new
- new_name
))
4193 old_name
= slash_old
+ 1;
4194 new_name
= slash_new
+ 1;
4196 /* p->old_name thru old_name is the common prefix, and old_name and new_name
4197 * through the end of names are renames
4199 if (old_name
!= p
->old_name
)
4200 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy
,
4201 (int)(old_name
- p
->old_name
), p
->old_name
,
4202 old_name
, new_name
, p
->score
);
4204 printf(" %s %s => %s (%d%%)\n", renamecopy
,
4205 p
->old_name
, p
->new_name
, p
->score
);
4206 show_mode_change(p
, 0);
4209 static void summary_patch_list(struct patch
*patch
)
4213 for (p
= patch
; p
; p
= p
->next
) {
4215 show_file_mode_name("create", p
->new_mode
, p
->new_name
);
4216 else if (p
->is_delete
)
4217 show_file_mode_name("delete", p
->old_mode
, p
->old_name
);
4219 if (p
->is_rename
|| p
->is_copy
)
4220 show_rename_copy(p
);
4223 printf(" rewrite %s (%d%%)\n",
4224 p
->new_name
, p
->score
);
4225 show_mode_change(p
, 0);
4228 show_mode_change(p
, 1);
4234 static void patch_stats(struct apply_state
*state
, struct patch
*patch
)
4236 int lines
= patch
->lines_added
+ patch
->lines_deleted
;
4238 if (lines
> state
->max_change
)
4239 state
->max_change
= lines
;
4240 if (patch
->old_name
) {
4241 int len
= quote_c_style(patch
->old_name
, NULL
, NULL
, 0);
4243 len
= strlen(patch
->old_name
);
4244 if (len
> state
->max_len
)
4245 state
->max_len
= len
;
4247 if (patch
->new_name
) {
4248 int len
= quote_c_style(patch
->new_name
, NULL
, NULL
, 0);
4250 len
= strlen(patch
->new_name
);
4251 if (len
> state
->max_len
)
4252 state
->max_len
= len
;
4256 static int remove_file(struct apply_state
*state
, struct patch
*patch
, int rmdir_empty
)
4258 if (state
->update_index
&& !state
->ita_only
) {
4259 if (remove_file_from_index(state
->repo
->index
, patch
->old_name
) < 0)
4260 return error(_("unable to remove %s from index"), patch
->old_name
);
4262 if (!state
->cached
) {
4263 if (!remove_or_warn(patch
->old_mode
, patch
->old_name
) && rmdir_empty
) {
4264 remove_path(patch
->old_name
);
4270 static int add_index_file(struct apply_state
*state
,
4277 struct cache_entry
*ce
;
4278 int namelen
= strlen(path
);
4280 ce
= make_empty_cache_entry(state
->repo
->index
, namelen
);
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 (state
->ita_only
) {
4286 ce
->ce_flags
|= CE_INTENT_TO_ADD
;
4287 set_object_name_for_intent_to_add_entry(ce
);
4288 } else if (S_ISGITLINK(mode
)) {
4291 if (!skip_prefix(buf
, "Subproject commit ", &s
) ||
4292 get_oid_hex(s
, &ce
->oid
)) {
4293 discard_cache_entry(ce
);
4294 return error(_("corrupt patch for submodule %s"), path
);
4297 if (!state
->cached
) {
4298 if (lstat(path
, &st
) < 0) {
4299 discard_cache_entry(ce
);
4300 return error_errno(_("unable to stat newly "
4301 "created file '%s'"),
4304 fill_stat_cache_info(ce
, &st
);
4306 if (write_object_file(buf
, size
, blob_type
, &ce
->oid
) < 0) {
4307 discard_cache_entry(ce
);
4308 return error(_("unable to create backing store "
4309 "for newly created file %s"), path
);
4312 if (add_index_entry(state
->repo
->index
, ce
, ADD_CACHE_OK_TO_ADD
) < 0) {
4313 discard_cache_entry(ce
);
4314 return error(_("unable to add cache entry for %s"), path
);
4322 * -1 if an unrecoverable error happened
4323 * 0 if everything went well
4324 * 1 if a recoverable error happened
4326 static int try_create_file(struct apply_state
*state
, const char *path
,
4327 unsigned int mode
, const char *buf
,
4331 struct strbuf nbuf
= STRBUF_INIT
;
4333 if (S_ISGITLINK(mode
)) {
4335 if (!lstat(path
, &st
) && S_ISDIR(st
.st_mode
))
4337 return !!mkdir(path
, 0777);
4340 if (has_symlinks
&& S_ISLNK(mode
))
4341 /* Although buf:size is counted string, it also is NUL
4344 return !!symlink(buf
, path
);
4346 fd
= open(path
, O_CREAT
| O_EXCL
| O_WRONLY
, (mode
& 0100) ? 0777 : 0666);
4350 if (convert_to_working_tree(state
->repo
->index
, path
, buf
, size
, &nbuf
)) {
4355 res
= write_in_full(fd
, buf
, size
) < 0;
4357 error_errno(_("failed to write to '%s'"), path
);
4358 strbuf_release(&nbuf
);
4360 if (close(fd
) < 0 && !res
)
4361 return error_errno(_("closing file '%s'"), path
);
4363 return res
? -1 : 0;
4367 * We optimistically assume that the directories exist,
4368 * which is true 99% of the time anyway. If they don't,
4369 * we create them and try again.
4375 static int create_one_file(struct apply_state
*state
,
4386 res
= try_create_file(state
, path
, mode
, buf
, size
);
4392 if (errno
== ENOENT
) {
4393 if (safe_create_leading_directories(path
))
4395 res
= try_create_file(state
, path
, mode
, buf
, size
);
4402 if (errno
== EEXIST
|| errno
== EACCES
) {
4403 /* We may be trying to create a file where a directory
4407 if (!lstat(path
, &st
) && (!S_ISDIR(st
.st_mode
) || !rmdir(path
)))
4411 if (errno
== EEXIST
) {
4412 unsigned int nr
= getpid();
4415 char newpath
[PATH_MAX
];
4416 mksnpath(newpath
, sizeof(newpath
), "%s~%u", path
, nr
);
4417 res
= try_create_file(state
, newpath
, mode
, buf
, size
);
4421 if (!rename(newpath
, path
))
4423 unlink_or_warn(newpath
);
4426 if (errno
!= EEXIST
)
4431 return error_errno(_("unable to write file '%s' mode %o"),
4435 static int add_conflicted_stages_file(struct apply_state
*state
,
4436 struct patch
*patch
)
4440 struct cache_entry
*ce
;
4442 if (!state
->update_index
)
4444 namelen
= strlen(patch
->new_name
);
4445 mode
= patch
->new_mode
? patch
->new_mode
: (S_IFREG
| 0644);
4447 remove_file_from_index(state
->repo
->index
, patch
->new_name
);
4448 for (stage
= 1; stage
< 4; stage
++) {
4449 if (is_null_oid(&patch
->threeway_stage
[stage
- 1]))
4451 ce
= make_empty_cache_entry(state
->repo
->index
, namelen
);
4452 memcpy(ce
->name
, patch
->new_name
, namelen
);
4453 ce
->ce_mode
= create_ce_mode(mode
);
4454 ce
->ce_flags
= create_ce_flags(stage
);
4455 ce
->ce_namelen
= namelen
;
4456 oidcpy(&ce
->oid
, &patch
->threeway_stage
[stage
- 1]);
4457 if (add_index_entry(state
->repo
->index
, ce
, ADD_CACHE_OK_TO_ADD
) < 0) {
4458 discard_cache_entry(ce
);
4459 return error(_("unable to add cache entry for %s"),
4467 static int create_file(struct apply_state
*state
, struct patch
*patch
)
4469 char *path
= patch
->new_name
;
4470 unsigned mode
= patch
->new_mode
;
4471 unsigned long size
= patch
->resultsize
;
4472 char *buf
= patch
->result
;
4475 mode
= S_IFREG
| 0644;
4476 if (create_one_file(state
, path
, mode
, buf
, size
))
4479 if (patch
->conflicted_threeway
)
4480 return add_conflicted_stages_file(state
, patch
);
4481 else if (state
->update_index
)
4482 return add_index_file(state
, path
, mode
, buf
, size
);
4486 /* phase zero is to remove, phase one is to create */
4487 static int write_out_one_result(struct apply_state
*state
,
4488 struct patch
*patch
,
4491 if (patch
->is_delete
> 0) {
4493 return remove_file(state
, patch
, 1);
4496 if (patch
->is_new
> 0 || patch
->is_copy
) {
4498 return create_file(state
, patch
);
4502 * Rename or modification boils down to the same
4503 * thing: remove the old, write the new
4506 return remove_file(state
, patch
, patch
->is_rename
);
4508 return create_file(state
, patch
);
4512 static int write_out_one_reject(struct apply_state
*state
, struct patch
*patch
)
4515 char namebuf
[PATH_MAX
];
4516 struct fragment
*frag
;
4518 struct strbuf sb
= STRBUF_INIT
;
4520 for (cnt
= 0, frag
= patch
->fragments
; frag
; frag
= frag
->next
) {
4521 if (!frag
->rejected
)
4527 if (state
->apply_verbosity
> verbosity_normal
)
4528 say_patch_name(stderr
,
4529 _("Applied patch %s cleanly."), patch
);
4533 /* This should not happen, because a removal patch that leaves
4534 * contents are marked "rejected" at the patch level.
4536 if (!patch
->new_name
)
4537 die(_("internal error"));
4539 /* Say this even without --verbose */
4540 strbuf_addf(&sb
, Q_("Applying patch %%s with %d reject...",
4541 "Applying patch %%s with %d rejects...",
4544 if (state
->apply_verbosity
> verbosity_silent
)
4545 say_patch_name(stderr
, sb
.buf
, patch
);
4546 strbuf_release(&sb
);
4548 cnt
= strlen(patch
->new_name
);
4549 if (ARRAY_SIZE(namebuf
) <= cnt
+ 5) {
4550 cnt
= ARRAY_SIZE(namebuf
) - 5;
4551 warning(_("truncating .rej filename to %.*s.rej"),
4552 cnt
- 1, patch
->new_name
);
4554 memcpy(namebuf
, patch
->new_name
, cnt
);
4555 memcpy(namebuf
+ cnt
, ".rej", 5);
4557 rej
= fopen(namebuf
, "w");
4559 return error_errno(_("cannot open %s"), namebuf
);
4561 /* Normal git tools never deal with .rej, so do not pretend
4562 * this is a git patch by saying --git or giving extended
4563 * headers. While at it, maybe please "kompare" that wants
4564 * the trailing TAB and some garbage at the end of line ;-).
4566 fprintf(rej
, "diff a/%s b/%s\t(rejected hunks)\n",
4567 patch
->new_name
, patch
->new_name
);
4568 for (cnt
= 1, frag
= patch
->fragments
;
4570 cnt
++, frag
= frag
->next
) {
4571 if (!frag
->rejected
) {
4572 if (state
->apply_verbosity
> verbosity_silent
)
4573 fprintf_ln(stderr
, _("Hunk #%d applied cleanly."), cnt
);
4576 if (state
->apply_verbosity
> verbosity_silent
)
4577 fprintf_ln(stderr
, _("Rejected hunk #%d."), cnt
);
4578 fprintf(rej
, "%.*s", frag
->size
, frag
->patch
);
4579 if (frag
->patch
[frag
->size
-1] != '\n')
4588 * -1 if an error happened
4589 * 0 if the patch applied cleanly
4590 * 1 if the patch did not apply cleanly
4592 static int write_out_results(struct apply_state
*state
, struct patch
*list
)
4597 struct string_list cpath
= STRING_LIST_INIT_DUP
;
4599 for (phase
= 0; phase
< 2; phase
++) {
4605 if (write_out_one_result(state
, l
, phase
)) {
4606 string_list_clear(&cpath
, 0);
4610 if (write_out_one_reject(state
, l
))
4612 if (l
->conflicted_threeway
) {
4613 string_list_append(&cpath
, l
->new_name
);
4623 struct string_list_item
*item
;
4625 string_list_sort(&cpath
);
4626 if (state
->apply_verbosity
> verbosity_silent
) {
4627 for_each_string_list_item(item
, &cpath
)
4628 fprintf(stderr
, "U %s\n", item
->string
);
4630 string_list_clear(&cpath
, 0);
4639 * Try to apply a patch.
4642 * -128 if a bad error happened (like patch unreadable)
4643 * -1 if patch did not apply and user cannot deal with it
4644 * 0 if the patch applied
4645 * 1 if the patch did not apply but user might fix it
4647 static int apply_patch(struct apply_state
*state
,
4649 const char *filename
,
4653 struct strbuf buf
= STRBUF_INIT
; /* owns the patch text */
4654 struct patch
*list
= NULL
, **listp
= &list
;
4655 int skipped_patch
= 0;
4658 state
->patch_input_file
= filename
;
4659 if (read_patch_file(&buf
, fd
) < 0)
4662 while (offset
< buf
.len
) {
4663 struct patch
*patch
;
4666 patch
= xcalloc(1, sizeof(*patch
));
4667 patch
->inaccurate_eof
= !!(options
& APPLY_OPT_INACCURATE_EOF
);
4668 patch
->recount
= !!(options
& APPLY_OPT_RECOUNT
);
4669 nr
= parse_chunk(state
, buf
.buf
+ offset
, buf
.len
- offset
, patch
);
4678 if (state
->apply_in_reverse
)
4679 reverse_patches(patch
);
4680 if (use_patch(state
, patch
)) {
4681 patch_stats(state
, patch
);
4683 listp
= &patch
->next
;
4686 if (state
->apply_verbosity
> verbosity_normal
)
4687 say_patch_name(stderr
, _("Skipped patch '%s'."), patch
);
4694 if (!list
&& !skipped_patch
) {
4695 error(_("unrecognized input"));
4700 if (state
->whitespace_error
&& (state
->ws_error_action
== die_on_ws_error
))
4703 state
->update_index
= (state
->check_index
|| state
->ita_only
) && state
->apply
;
4704 if (state
->update_index
&& !is_lock_file_locked(&state
->lock_file
)) {
4705 if (state
->index_file
)
4706 hold_lock_file_for_update(&state
->lock_file
,
4710 hold_locked_index(&state
->lock_file
, LOCK_DIE_ON_ERROR
);
4713 if (state
->check_index
&& read_apply_cache(state
) < 0) {
4714 error(_("unable to read index file"));
4719 if (state
->check
|| state
->apply
) {
4720 int r
= check_patch_list(state
, list
);
4725 if (r
< 0 && !state
->apply_with_reject
) {
4732 int write_res
= write_out_results(state
, list
);
4733 if (write_res
< 0) {
4737 if (write_res
> 0) {
4738 /* with --3way, we still need to write the index out */
4739 res
= state
->apply_with_reject
? -1 : 1;
4744 if (state
->fake_ancestor
&&
4745 build_fake_ancestor(state
, list
)) {
4750 if (state
->diffstat
&& state
->apply_verbosity
> verbosity_silent
)
4751 stat_patch_list(state
, list
);
4753 if (state
->numstat
&& state
->apply_verbosity
> verbosity_silent
)
4754 numstat_patch_list(state
, list
);
4756 if (state
->summary
&& state
->apply_verbosity
> verbosity_silent
)
4757 summary_patch_list(list
);
4760 free_patch_list(list
);
4761 strbuf_release(&buf
);
4762 string_list_clear(&state
->fn_table
, 0);
4766 static int apply_option_parse_exclude(const struct option
*opt
,
4767 const char *arg
, int unset
)
4769 struct apply_state
*state
= opt
->value
;
4770 add_name_limit(state
, arg
, 1);
4774 static int apply_option_parse_include(const struct option
*opt
,
4775 const char *arg
, int unset
)
4777 struct apply_state
*state
= opt
->value
;
4778 add_name_limit(state
, arg
, 0);
4779 state
->has_include
= 1;
4783 static int apply_option_parse_p(const struct option
*opt
,
4787 struct apply_state
*state
= opt
->value
;
4788 state
->p_value
= atoi(arg
);
4789 state
->p_value_known
= 1;
4793 static int apply_option_parse_space_change(const struct option
*opt
,
4794 const char *arg
, int unset
)
4796 struct apply_state
*state
= opt
->value
;
4798 state
->ws_ignore_action
= ignore_ws_none
;
4800 state
->ws_ignore_action
= ignore_ws_change
;
4804 static int apply_option_parse_whitespace(const struct option
*opt
,
4805 const char *arg
, int unset
)
4807 struct apply_state
*state
= opt
->value
;
4808 state
->whitespace_option
= arg
;
4809 if (parse_whitespace_option(state
, arg
))
4814 static int apply_option_parse_directory(const struct option
*opt
,
4815 const char *arg
, int unset
)
4817 struct apply_state
*state
= opt
->value
;
4818 strbuf_reset(&state
->root
);
4819 strbuf_addstr(&state
->root
, arg
);
4820 strbuf_complete(&state
->root
, '/');
4824 int apply_all_patches(struct apply_state
*state
,
4834 for (i
= 0; i
< argc
; i
++) {
4835 const char *arg
= argv
[i
];
4836 char *to_free
= NULL
;
4839 if (!strcmp(arg
, "-")) {
4840 res
= apply_patch(state
, 0, "<stdin>", options
);
4847 arg
= to_free
= prefix_filename(state
->prefix
, arg
);
4849 fd
= open(arg
, O_RDONLY
);
4851 error(_("can't open patch '%s': %s"), arg
, strerror(errno
));
4857 set_default_whitespace_mode(state
);
4858 res
= apply_patch(state
, fd
, arg
, options
);
4865 set_default_whitespace_mode(state
);
4867 res
= apply_patch(state
, 0, "<stdin>", options
);
4873 if (state
->whitespace_error
) {
4874 if (state
->squelch_whitespace_errors
&&
4875 state
->squelch_whitespace_errors
< state
->whitespace_error
) {
4877 state
->whitespace_error
- state
->squelch_whitespace_errors
;
4878 warning(Q_("squelched %d whitespace error",
4879 "squelched %d whitespace errors",
4883 if (state
->ws_error_action
== die_on_ws_error
) {
4884 error(Q_("%d line adds whitespace errors.",
4885 "%d lines add whitespace errors.",
4886 state
->whitespace_error
),
4887 state
->whitespace_error
);
4891 if (state
->applied_after_fixing_ws
&& state
->apply
)
4892 warning(Q_("%d line applied after"
4893 " fixing whitespace errors.",
4894 "%d lines applied after"
4895 " fixing whitespace errors.",
4896 state
->applied_after_fixing_ws
),
4897 state
->applied_after_fixing_ws
);
4898 else if (state
->whitespace_error
)
4899 warning(Q_("%d line adds whitespace errors.",
4900 "%d lines add whitespace errors.",
4901 state
->whitespace_error
),
4902 state
->whitespace_error
);
4905 if (state
->update_index
) {
4906 res
= write_locked_index(state
->repo
->index
, &state
->lock_file
, COMMIT_LOCK
);
4908 error(_("Unable to write new index file"));
4917 rollback_lock_file(&state
->lock_file
);
4919 if (state
->apply_verbosity
<= verbosity_silent
) {
4920 set_error_routine(state
->saved_error_routine
);
4921 set_warn_routine(state
->saved_warn_routine
);
4926 return (res
== -1 ? 1 : 128);
4929 int apply_parse_options(int argc
, const char **argv
,
4930 struct apply_state
*state
,
4931 int *force_apply
, int *options
,
4932 const char * const *apply_usage
)
4934 struct option builtin_apply_options
[] = {
4935 { OPTION_CALLBACK
, 0, "exclude", state
, N_("path"),
4936 N_("don't apply changes matching the given path"),
4937 0, apply_option_parse_exclude
},
4938 { OPTION_CALLBACK
, 0, "include", state
, N_("path"),
4939 N_("apply changes matching the given path"),
4940 0, apply_option_parse_include
},
4941 { OPTION_CALLBACK
, 'p', NULL
, state
, N_("num"),
4942 N_("remove <num> leading slashes from traditional diff paths"),
4943 0, apply_option_parse_p
},
4944 OPT_BOOL(0, "no-add", &state
->no_add
,
4945 N_("ignore additions made by the patch")),
4946 OPT_BOOL(0, "stat", &state
->diffstat
,
4947 N_("instead of applying the patch, output diffstat for the input")),
4948 OPT_NOOP_NOARG(0, "allow-binary-replacement"),
4949 OPT_NOOP_NOARG(0, "binary"),
4950 OPT_BOOL(0, "numstat", &state
->numstat
,
4951 N_("show number of added and deleted lines in decimal notation")),
4952 OPT_BOOL(0, "summary", &state
->summary
,
4953 N_("instead of applying the patch, output a summary for the input")),
4954 OPT_BOOL(0, "check", &state
->check
,
4955 N_("instead of applying the patch, see if the patch is applicable")),
4956 OPT_BOOL(0, "index", &state
->check_index
,
4957 N_("make sure the patch is applicable to the current index")),
4958 OPT_BOOL('N', "intent-to-add", &state
->ita_only
,
4959 N_("mark new files with `git add --intent-to-add`")),
4960 OPT_BOOL(0, "cached", &state
->cached
,
4961 N_("apply a patch without touching the working tree")),
4962 OPT_BOOL_F(0, "unsafe-paths", &state
->unsafe_paths
,
4963 N_("accept a patch that touches outside the working area"),
4964 PARSE_OPT_NOCOMPLETE
),
4965 OPT_BOOL(0, "apply", force_apply
,
4966 N_("also apply the patch (use with --stat/--summary/--check)")),
4967 OPT_BOOL('3', "3way", &state
->threeway
,
4968 N_( "attempt three-way merge if a patch does not apply")),
4969 OPT_FILENAME(0, "build-fake-ancestor", &state
->fake_ancestor
,
4970 N_("build a temporary index based on embedded index information")),
4971 /* Think twice before adding "--nul" synonym to this */
4972 OPT_SET_INT('z', NULL
, &state
->line_termination
,
4973 N_("paths are separated with NUL character"), '\0'),
4974 OPT_INTEGER('C', NULL
, &state
->p_context
,
4975 N_("ensure at least <n> lines of context match")),
4976 { OPTION_CALLBACK
, 0, "whitespace", state
, N_("action"),
4977 N_("detect new or modified lines that have whitespace errors"),
4978 0, apply_option_parse_whitespace
},
4979 { OPTION_CALLBACK
, 0, "ignore-space-change", state
, NULL
,
4980 N_("ignore changes in whitespace when finding context"),
4981 PARSE_OPT_NOARG
, apply_option_parse_space_change
},
4982 { OPTION_CALLBACK
, 0, "ignore-whitespace", state
, NULL
,
4983 N_("ignore changes in whitespace when finding context"),
4984 PARSE_OPT_NOARG
, apply_option_parse_space_change
},
4985 OPT_BOOL('R', "reverse", &state
->apply_in_reverse
,
4986 N_("apply the patch in reverse")),
4987 OPT_BOOL(0, "unidiff-zero", &state
->unidiff_zero
,
4988 N_("don't expect at least one line of context")),
4989 OPT_BOOL(0, "reject", &state
->apply_with_reject
,
4990 N_("leave the rejected hunks in corresponding *.rej files")),
4991 OPT_BOOL(0, "allow-overlap", &state
->allow_overlap
,
4992 N_("allow overlapping hunks")),
4993 OPT__VERBOSE(&state
->apply_verbosity
, N_("be verbose")),
4994 OPT_BIT(0, "inaccurate-eof", options
,
4995 N_("tolerate incorrectly detected missing new-line at the end of file"),
4996 APPLY_OPT_INACCURATE_EOF
),
4997 OPT_BIT(0, "recount", options
,
4998 N_("do not trust the line counts in the hunk headers"),
5000 { OPTION_CALLBACK
, 0, "directory", state
, N_("root"),
5001 N_("prepend <root> to all filenames"),
5002 0, apply_option_parse_directory
},
5006 return parse_options(argc
, argv
, state
->prefix
, builtin_apply_options
, apply_usage
, 0);