4 * Copyright (C) Linus Torvalds, 2005
6 * This applies patches on top of some (arbitrary) version of the SCM.
13 // --check turns on checking that the working tree matches the
14 // files that are being modified, but doesn't apply the patch
15 // --stat does just a diffstat, and doesn't actually apply
16 // --numstat does numeric diffstat, and doesn't actually apply
17 // --index-info shows the old and new index info for paths if available.
19 static int check_index
= 0;
20 static int write_index
= 0;
21 static int diffstat
= 0;
22 static int numstat
= 0;
23 static int summary
= 0;
26 static int no_add
= 0;
27 static int show_index_info
= 0;
28 static int line_termination
= '\n';
29 static const char apply_usage
[] =
30 "git-apply [--stat] [--numstat] [--summary] [--check] [--index] [--apply] [--no-add] [--index-info] [-z] <patch>...";
33 * For "diff-stat" like behaviour, we keep track of the biggest change
34 * we've seen, and the longest filename. That allows us to do simple
37 static int max_change
, max_len
;
40 * Various "current state", notably line numbers and what
41 * file (and how) we're patching right now.. The "is_xxxx"
42 * things are flags, where -1 means "don't know yet".
44 static int linenr
= 1;
47 unsigned long oldpos
, oldlines
;
48 unsigned long newpos
, newlines
;
51 struct fragment
*next
;
55 char *new_name
, *old_name
, *def_name
;
56 unsigned int old_mode
, new_mode
;
57 int is_rename
, is_copy
, is_new
, is_delete
, is_binary
;
58 int lines_added
, lines_deleted
;
60 struct fragment
*fragments
;
62 unsigned long resultsize
;
63 char old_sha1_prefix
[41];
64 char new_sha1_prefix
[41];
68 #define CHUNKSIZE (8192)
71 static void *read_patch_file(int fd
, unsigned long *sizep
)
73 unsigned long size
= 0, alloc
= CHUNKSIZE
;
74 void *buffer
= xmalloc(alloc
);
77 int nr
= alloc
- size
;
80 buffer
= xrealloc(buffer
, alloc
);
83 nr
= read(fd
, buffer
+ size
, nr
);
89 die("git-apply: read returned %s", strerror(errno
));
96 * Make sure that we have some slop in the buffer
97 * so that we can do speculative "memcmp" etc, and
98 * see to it that it is NUL-filled.
100 if (alloc
< size
+ SLOP
)
101 buffer
= xrealloc(buffer
, size
+ SLOP
);
102 memset(buffer
+ size
, 0, SLOP
);
106 static unsigned long linelen(const char *buffer
, unsigned long size
)
108 unsigned long len
= 0;
111 if (*buffer
++ == '\n')
117 static int is_dev_null(const char *str
)
119 return !memcmp("/dev/null", str
, 9) && isspace(str
[9]);
125 static int name_terminate(const char *name
, int namelen
, int c
, int terminate
)
127 if (c
== ' ' && !(terminate
& TERM_SPACE
))
129 if (c
== '\t' && !(terminate
& TERM_TAB
))
135 static char * find_name(const char *line
, char *def
, int p_value
, int terminate
)
138 const char *start
= line
;
142 /* Proposed "new-style" GNU patch/diff format; see
143 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
145 name
= unquote_c_style(line
, NULL
);
149 cp
= strchr(name
, '/');
156 /* name can later be freed, so we need
157 * to memmove, not just return cp
159 memmove(name
, cp
, strlen(cp
) + 1);
176 if (name_terminate(start
, line
-start
, c
, terminate
))
180 if (c
== '/' && !--p_value
)
190 * Generally we prefer the shorter name, especially
191 * if the other one is just a variation of that with
192 * something else tacked on to the end (ie "file.orig"
196 int deflen
= strlen(def
);
197 if (deflen
< len
&& !strncmp(start
, def
, deflen
))
201 name
= xmalloc(len
+ 1);
202 memcpy(name
, start
, len
);
209 * Get the name etc info from the --/+++ lines of a traditional patch header
211 * NOTE! This hardcodes "-p1" behaviour in filename detection.
213 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
214 * files, we can happily check the index for a match, but for creating a
215 * new file we should try to match whatever "patch" does. I have no idea.
217 static void parse_traditional_patch(const char *first
, const char *second
, struct patch
*patch
)
222 first
+= 4; // skip "--- "
223 second
+= 4; // skip "+++ "
224 if (is_dev_null(first
)) {
226 patch
->is_delete
= 0;
227 name
= find_name(second
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
228 patch
->new_name
= name
;
229 } else if (is_dev_null(second
)) {
231 patch
->is_delete
= 1;
232 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
233 patch
->old_name
= name
;
235 name
= find_name(first
, NULL
, p_value
, TERM_SPACE
| TERM_TAB
);
236 name
= find_name(second
, name
, p_value
, TERM_SPACE
| TERM_TAB
);
237 patch
->old_name
= patch
->new_name
= name
;
240 die("unable to find filename in patch at line %d", linenr
);
243 static int gitdiff_hdrend(const char *line
, struct patch
*patch
)
249 * We're anal about diff header consistency, to make
250 * sure that we don't end up having strange ambiguous
251 * patches floating around.
253 * As a result, gitdiff_{old|new}name() will check
254 * their names against any previous information, just
257 static char *gitdiff_verify_name(const char *line
, int isnull
, char *orig_name
, const char *oldnew
)
259 if (!orig_name
&& !isnull
)
260 return find_name(line
, NULL
, 1, 0);
269 die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name
, linenr
);
270 another
= find_name(line
, NULL
, 1, 0);
271 if (!another
|| memcmp(another
, name
, len
))
272 die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew
, linenr
);
277 /* expect "/dev/null" */
278 if (memcmp("/dev/null", line
, 9) || line
[9] != '\n')
279 die("git-apply: bad git-diff - expected /dev/null on line %d", linenr
);
284 static int gitdiff_oldname(const char *line
, struct patch
*patch
)
286 patch
->old_name
= gitdiff_verify_name(line
, patch
->is_new
, patch
->old_name
, "old");
290 static int gitdiff_newname(const char *line
, struct patch
*patch
)
292 patch
->new_name
= gitdiff_verify_name(line
, patch
->is_delete
, patch
->new_name
, "new");
296 static int gitdiff_oldmode(const char *line
, struct patch
*patch
)
298 patch
->old_mode
= strtoul(line
, NULL
, 8);
302 static int gitdiff_newmode(const char *line
, struct patch
*patch
)
304 patch
->new_mode
= strtoul(line
, NULL
, 8);
308 static int gitdiff_delete(const char *line
, struct patch
*patch
)
310 patch
->is_delete
= 1;
311 patch
->old_name
= patch
->def_name
;
312 return gitdiff_oldmode(line
, patch
);
315 static int gitdiff_newfile(const char *line
, struct patch
*patch
)
318 patch
->new_name
= patch
->def_name
;
319 return gitdiff_newmode(line
, patch
);
322 static int gitdiff_copysrc(const char *line
, struct patch
*patch
)
325 patch
->old_name
= find_name(line
, NULL
, 0, 0);
329 static int gitdiff_copydst(const char *line
, struct patch
*patch
)
332 patch
->new_name
= find_name(line
, NULL
, 0, 0);
336 static int gitdiff_renamesrc(const char *line
, struct patch
*patch
)
338 patch
->is_rename
= 1;
339 patch
->old_name
= find_name(line
, NULL
, 0, 0);
343 static int gitdiff_renamedst(const char *line
, struct patch
*patch
)
345 patch
->is_rename
= 1;
346 patch
->new_name
= find_name(line
, NULL
, 0, 0);
350 static int gitdiff_similarity(const char *line
, struct patch
*patch
)
352 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
357 static int gitdiff_dissimilarity(const char *line
, struct patch
*patch
)
359 if ((patch
->score
= strtoul(line
, NULL
, 10)) == ULONG_MAX
)
364 static int gitdiff_index(const char *line
, struct patch
*patch
)
366 /* index line is N hexadecimal, "..", N hexadecimal,
367 * and optional space with octal mode.
369 const char *ptr
, *eol
;
372 ptr
= strchr(line
, '.');
373 if (!ptr
|| ptr
[1] != '.' || 40 <= ptr
- line
)
376 memcpy(patch
->old_sha1_prefix
, line
, len
);
377 patch
->old_sha1_prefix
[len
] = 0;
380 ptr
= strchr(line
, ' ');
381 eol
= strchr(line
, '\n');
383 if (!ptr
|| eol
< ptr
)
389 memcpy(patch
->new_sha1_prefix
, line
, len
);
390 patch
->new_sha1_prefix
[len
] = 0;
392 patch
->new_mode
= patch
->old_mode
= strtoul(ptr
+1, NULL
, 8);
397 * This is normal for a diff that doesn't change anything: we'll fall through
398 * into the next diff. Tell the parser to break out.
400 static int gitdiff_unrecognized(const char *line
, struct patch
*patch
)
405 static const char *stop_at_slash(const char *line
, int llen
)
409 for (i
= 0; i
< llen
; i
++) {
417 /* This is to extract the same name that appears on "diff --git"
418 * line. We do not find and return anything if it is a rename
419 * patch, and it is OK because we will find the name elsewhere.
420 * We need to reliably find name only when it is mode-change only,
421 * creation or deletion of an empty file. In any of these cases,
422 * both sides are the same name under a/ and b/ respectively.
424 static char *git_header_name(char *line
, int llen
)
428 const char *second
= NULL
;
430 line
+= strlen("diff --git ");
431 llen
-= strlen("diff --git ");
435 char *first
= unquote_c_style(line
, &second
);
439 /* advance to the first slash */
440 cp
= stop_at_slash(first
, strlen(first
));
441 if (!cp
|| cp
== first
) {
442 /* we do not accept absolute paths */
448 memmove(first
, cp
+1, len
+1); /* including NUL */
450 /* second points at one past closing dq of name.
451 * find the second name.
453 while ((second
< line
+ llen
) && isspace(*second
))
456 if (line
+ llen
<= second
)
457 goto free_first_and_fail
;
458 if (*second
== '"') {
459 char *sp
= unquote_c_style(second
, NULL
);
461 goto free_first_and_fail
;
462 cp
= stop_at_slash(sp
, strlen(sp
));
463 if (!cp
|| cp
== sp
) {
466 goto free_first_and_fail
;
468 /* They must match, otherwise ignore */
469 if (strcmp(cp
+1, first
))
470 goto free_both_and_fail
;
475 /* unquoted second */
476 cp
= stop_at_slash(second
, line
+ llen
- second
);
477 if (!cp
|| cp
== second
)
478 goto free_first_and_fail
;
480 if (line
+ llen
- cp
!= len
+ 1 ||
481 memcmp(first
, cp
, len
))
482 goto free_first_and_fail
;
486 /* unquoted first name */
487 name
= stop_at_slash(line
, llen
);
488 if (!name
|| name
== line
)
493 /* since the first name is unquoted, a dq if exists must be
494 * the beginning of the second name.
496 for (second
= name
; second
< line
+ llen
; second
++) {
497 if (*second
== '"') {
498 const char *cp
= second
;
500 char *sp
= unquote_c_style(second
, NULL
);
504 np
= stop_at_slash(sp
, strlen(sp
));
505 if (!np
|| np
== sp
) {
506 free_second_and_fail
:
512 if (len
< cp
- name
&&
513 !strncmp(np
, name
, len
) &&
514 isspace(name
[len
])) {
516 memmove(sp
, np
, len
+ 1);
519 goto free_second_and_fail
;
524 * Accept a name only if it shows up twice, exactly the same
527 for (len
= 0 ; ; len
++) {
544 if (second
[len
] == '\n' && !memcmp(name
, second
, len
)) {
545 char *ret
= xmalloc(len
+ 1);
546 memcpy(ret
, name
, len
);
555 /* Verify that we recognize the lines following a git header */
556 static int parse_git_header(char *line
, int len
, unsigned int size
, struct patch
*patch
)
558 unsigned long offset
;
560 /* A git diff has explicit new/delete information, so we don't guess */
562 patch
->is_delete
= 0;
565 * Some things may not have the old name in the
566 * rest of the headers anywhere (pure mode changes,
567 * or removing or adding empty files), so we get
568 * the default name from the header.
570 patch
->def_name
= git_header_name(line
, len
);
575 for (offset
= len
; size
> 0 ; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
576 static const struct opentry
{
578 int (*fn
)(const char *, struct patch
*);
580 { "@@ -", gitdiff_hdrend
},
581 { "--- ", gitdiff_oldname
},
582 { "+++ ", gitdiff_newname
},
583 { "old mode ", gitdiff_oldmode
},
584 { "new mode ", gitdiff_newmode
},
585 { "deleted file mode ", gitdiff_delete
},
586 { "new file mode ", gitdiff_newfile
},
587 { "copy from ", gitdiff_copysrc
},
588 { "copy to ", gitdiff_copydst
},
589 { "rename old ", gitdiff_renamesrc
},
590 { "rename new ", gitdiff_renamedst
},
591 { "rename from ", gitdiff_renamesrc
},
592 { "rename to ", gitdiff_renamedst
},
593 { "similarity index ", gitdiff_similarity
},
594 { "dissimilarity index ", gitdiff_dissimilarity
},
595 { "index ", gitdiff_index
},
596 { "", gitdiff_unrecognized
},
600 len
= linelen(line
, size
);
601 if (!len
|| line
[len
-1] != '\n')
603 for (i
= 0; i
< sizeof(optable
) / sizeof(optable
[0]); i
++) {
604 const struct opentry
*p
= optable
+ i
;
605 int oplen
= strlen(p
->str
);
606 if (len
< oplen
|| memcmp(p
->str
, line
, oplen
))
608 if (p
->fn(line
+ oplen
, patch
) < 0)
617 static int parse_num(const char *line
, unsigned long *p
)
623 *p
= strtoul(line
, &ptr
, 10);
627 static int parse_range(const char *line
, int len
, int offset
, const char *expect
,
628 unsigned long *p1
, unsigned long *p2
)
632 if (offset
< 0 || offset
>= len
)
637 digits
= parse_num(line
, p1
);
647 digits
= parse_num(line
+1, p2
);
659 if (memcmp(line
, expect
, ex
))
666 * Parse a unified diff fragment header of the
667 * form "@@ -a,b +c,d @@"
669 static int parse_fragment_header(char *line
, int len
, struct fragment
*fragment
)
673 if (!len
|| line
[len
-1] != '\n')
676 /* Figure out the number of lines in a fragment */
677 offset
= parse_range(line
, len
, 4, " +", &fragment
->oldpos
, &fragment
->oldlines
);
678 offset
= parse_range(line
, len
, offset
, " @@", &fragment
->newpos
, &fragment
->newlines
);
683 static int find_header(char *line
, unsigned long size
, int *hdrsize
, struct patch
*patch
)
685 unsigned long offset
, len
;
687 patch
->is_rename
= patch
->is_copy
= 0;
688 patch
->is_new
= patch
->is_delete
= -1;
689 patch
->old_mode
= patch
->new_mode
= 0;
690 patch
->old_name
= patch
->new_name
= NULL
;
691 for (offset
= 0; size
> 0; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
692 unsigned long nextlen
;
694 len
= linelen(line
, size
);
698 /* Testing this early allows us to take a few shortcuts.. */
703 * Make sure we don't find any unconnected patch fragmants.
704 * That's a sign that we didn't find a header, and that a
705 * patch has become corrupted/broken up.
707 if (!memcmp("@@ -", line
, 4)) {
708 struct fragment dummy
;
709 if (parse_fragment_header(line
, len
, &dummy
) < 0)
711 error("patch fragment without header at line %d: %.*s", linenr
, (int)len
-1, line
);
718 * Git patch? It might not have a real patch, just a rename
719 * or mode change, so we handle that specially
721 if (!memcmp("diff --git ", line
, 11)) {
722 int git_hdr_len
= parse_git_header(line
, len
, size
, patch
);
723 if (git_hdr_len
<= len
)
725 if (!patch
->old_name
&& !patch
->new_name
) {
726 if (!patch
->def_name
)
727 die("git diff header lacks filename information (line %d)", linenr
);
728 patch
->old_name
= patch
->new_name
= patch
->def_name
;
730 *hdrsize
= git_hdr_len
;
734 /** --- followed by +++ ? */
735 if (memcmp("--- ", line
, 4) || memcmp("+++ ", line
+ len
, 4))
739 * We only accept unified patches, so we want it to
740 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
743 nextlen
= linelen(line
+ len
, size
- len
);
744 if (size
< nextlen
+ 14 || memcmp("@@ -", line
+ len
+ nextlen
, 4))
747 /* Ok, we'll consider it a patch */
748 parse_traditional_patch(line
, line
+len
, patch
);
749 *hdrsize
= len
+ nextlen
;
757 * Parse a unified diff. Note that this really needs
758 * to parse each fragment separately, since the only
759 * way to know the difference between a "---" that is
760 * part of a patch, and a "---" that starts the next
761 * patch is to look at the line counts..
763 static int parse_fragment(char *line
, unsigned long size
, struct patch
*patch
, struct fragment
*fragment
)
766 int len
= linelen(line
, size
), offset
;
767 unsigned long oldlines
, newlines
;
769 offset
= parse_fragment_header(line
, len
, fragment
);
772 oldlines
= fragment
->oldlines
;
773 newlines
= fragment
->newlines
;
775 if (patch
->is_new
< 0) {
776 patch
->is_new
= !oldlines
;
778 patch
->old_name
= NULL
;
780 if (patch
->is_delete
< 0) {
781 patch
->is_delete
= !newlines
;
783 patch
->new_name
= NULL
;
786 if (patch
->is_new
!= !oldlines
)
787 return error("new file depends on old contents");
788 if (patch
->is_delete
!= !newlines
) {
790 return error("deleted file still has contents");
791 fprintf(stderr
, "** warning: file %s becomes empty but is not deleted\n", patch
->new_name
);
794 /* Parse the thing.. */
799 for (offset
= len
; size
> 0; offset
+= len
, size
-= len
, line
+= len
, linenr
++) {
800 if (!oldlines
&& !newlines
)
802 len
= linelen(line
, size
);
803 if (!len
|| line
[len
-1] != '\n')
821 /* We allow "\ No newline at end of file". Depending
822 * on locale settings when the patch was produced we
823 * don't know what this line looks like. The only
824 * thing we do know is that it begins with "\ ".
825 * Checking for 12 is just for sanity check -- any
826 * l10n of "\ No newline..." is at least that long.
829 if (len
< 12 || memcmp(line
, "\\ ", 2))
834 /* If a fragment ends with an incomplete line, we failed to include
835 * it in the above loop because we hit oldlines == newlines == 0
838 if (12 < size
&& !memcmp(line
, "\\ ", 2))
839 offset
+= linelen(line
, size
);
841 patch
->lines_added
+= added
;
842 patch
->lines_deleted
+= deleted
;
846 static int parse_single_patch(char *line
, unsigned long size
, struct patch
*patch
)
848 unsigned long offset
= 0;
849 struct fragment
**fragp
= &patch
->fragments
;
851 while (size
> 4 && !memcmp(line
, "@@ -", 4)) {
852 struct fragment
*fragment
;
855 fragment
= xmalloc(sizeof(*fragment
));
856 memset(fragment
, 0, sizeof(*fragment
));
857 len
= parse_fragment(line
, size
, patch
, fragment
);
859 die("corrupt patch at line %d", linenr
);
861 fragment
->patch
= line
;
862 fragment
->size
= len
;
865 fragp
= &fragment
->next
;
874 static inline int metadata_changes(struct patch
*patch
)
876 return patch
->is_rename
> 0 ||
877 patch
->is_copy
> 0 ||
880 (patch
->old_mode
&& patch
->new_mode
&&
881 patch
->old_mode
!= patch
->new_mode
);
884 static int parse_chunk(char *buffer
, unsigned long size
, struct patch
*patch
)
886 int hdrsize
, patchsize
;
887 int offset
= find_header(buffer
, size
, &hdrsize
, patch
);
892 patchsize
= parse_single_patch(buffer
+ offset
+ hdrsize
, size
- offset
- hdrsize
, patch
);
894 if (!patchsize
&& !metadata_changes(patch
)) {
895 static const char binhdr
[] = "Binary files ";
897 if (sizeof(binhdr
) - 1 < size
- offset
- hdrsize
&&
898 !memcmp(binhdr
, buffer
+ hdrsize
, sizeof(binhdr
)-1))
899 patch
->is_binary
= 1;
901 if (patch
->is_binary
&& !apply
&& !check
)
904 die("patch with only garbage at line %d", linenr
);
907 return offset
+ hdrsize
+ patchsize
;
910 static const char pluses
[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
911 static const char minuses
[]= "----------------------------------------------------------------------";
913 static void show_stats(struct patch
*patch
)
915 const char *prefix
= "";
916 char *name
= patch
->new_name
;
918 int len
, max
, add
, del
, total
;
921 name
= patch
->old_name
;
923 if (0 < (len
= quote_c_style(name
, NULL
, NULL
, 0))) {
924 qname
= xmalloc(len
+ 1);
925 quote_c_style(name
, qname
, NULL
, 0);
930 * "scale" the filename
941 slash
= strchr(name
, '/');
948 * scale the add/delete
954 add
= patch
->lines_added
;
955 del
= patch
->lines_deleted
;
958 if (max_change
> 0) {
959 total
= (total
* max
+ max_change
/ 2) / max_change
;
960 add
= (add
* max
+ max_change
/ 2) / max_change
;
963 if (patch
->is_binary
)
964 printf(" %s%-*s | Bin\n", prefix
, len
, name
);
966 printf(" %s%-*s |%5d %.*s%.*s\n", prefix
,
967 len
, name
, patch
->lines_added
+ patch
->lines_deleted
,
968 add
, pluses
, del
, minuses
);
973 static int read_old_data(struct stat
*st
, const char *path
, void *buf
, unsigned long size
)
978 switch (st
->st_mode
& S_IFMT
) {
980 return readlink(path
, buf
, size
);
982 fd
= open(path
, O_RDONLY
);
984 return error("unable to open %s", path
);
987 int ret
= read(fd
, buf
+ got
, size
- got
);
1005 static int find_offset(const char *buf
, unsigned long size
, const char *fragment
, unsigned long fragsize
, int line
)
1008 unsigned long start
, backwards
, forwards
;
1010 if (fragsize
> size
)
1015 unsigned long offset
= 0;
1017 while (offset
+ fragsize
<= size
) {
1018 if (buf
[offset
++] == '\n') {
1026 /* Exact line number? */
1027 if (!memcmp(buf
+ start
, fragment
, fragsize
))
1031 * There's probably some smart way to do this, but I'll leave
1032 * that to the smart and beautiful people. I'm simple and stupid.
1036 for (i
= 0; ; i
++) {
1043 if (forwards
+ fragsize
> size
)
1049 } while (backwards
&& buf
[backwards
-1] != '\n');
1052 while (forwards
+ fragsize
<= size
) {
1053 if (buf
[forwards
++] == '\n')
1059 if (try + fragsize
> size
)
1061 if (memcmp(buf
+ try, fragment
, fragsize
))
1070 * We should start searching forward and backward.
1075 struct buffer_desc
{
1078 unsigned long alloc
;
1081 static int apply_one_fragment(struct buffer_desc
*desc
, struct fragment
*frag
)
1083 char *buf
= desc
->buffer
;
1084 const char *patch
= frag
->patch
;
1085 int offset
, size
= frag
->size
;
1086 char *old
= xmalloc(size
);
1087 char *new = xmalloc(size
);
1088 int oldsize
= 0, newsize
= 0;
1091 int len
= linelen(patch
, size
);
1098 * "plen" is how much of the line we should use for
1099 * the actual patch data. Normally we just remove the
1100 * first character on the line, but if the line is
1101 * followed by "\ No newline", then we also remove the
1102 * last one (which is the newline, of course).
1105 if (len
< size
&& patch
[len
] == '\\')
1110 memcpy(old
+ oldsize
, patch
+ 1, plen
);
1114 /* Fall-through for ' ' */
1116 if (*patch
!= '+' || !no_add
) {
1117 memcpy(new + newsize
, patch
+ 1, plen
);
1121 case '@': case '\\':
1122 /* Ignore it, we already handled it */
1131 offset
= find_offset(buf
, desc
->size
, old
, oldsize
, frag
->newpos
);
1133 int diff
= newsize
- oldsize
;
1134 unsigned long size
= desc
->size
+ diff
;
1135 unsigned long alloc
= desc
->alloc
;
1138 alloc
= size
+ 8192;
1139 desc
->alloc
= alloc
;
1140 buf
= xrealloc(buf
, alloc
);
1144 memmove(buf
+ offset
+ newsize
, buf
+ offset
+ oldsize
, size
- offset
- newsize
);
1145 memcpy(buf
+ offset
, new, newsize
);
1154 static int apply_fragments(struct buffer_desc
*desc
, struct patch
*patch
)
1156 struct fragment
*frag
= patch
->fragments
;
1159 if (apply_one_fragment(desc
, frag
) < 0)
1160 return error("patch failed: %s:%ld", patch
->old_name
, frag
->oldpos
);
1166 static int apply_data(struct patch
*patch
, struct stat
*st
)
1169 unsigned long size
, alloc
;
1170 struct buffer_desc desc
;
1175 if (patch
->old_name
) {
1177 alloc
= size
+ 8192;
1178 buf
= xmalloc(alloc
);
1179 if (read_old_data(st
, patch
->old_name
, buf
, alloc
) != size
)
1180 return error("read of %s failed", patch
->old_name
);
1186 if (apply_fragments(&desc
, patch
) < 0)
1188 patch
->result
= desc
.buffer
;
1189 patch
->resultsize
= desc
.size
;
1191 if (patch
->is_delete
&& patch
->resultsize
)
1192 return error("removal patch leaves file contents");
1197 static int check_patch(struct patch
*patch
)
1200 const char *old_name
= patch
->old_name
;
1201 const char *new_name
= patch
->new_name
;
1205 int stat_ret
= lstat(old_name
, &st
);
1208 int pos
= cache_name_pos(old_name
, strlen(old_name
));
1210 return error("%s: does not exist in index",
1213 struct checkout costate
;
1214 if (errno
!= ENOENT
)
1215 return error("%s: %s", old_name
,
1218 costate
.base_dir
= "";
1219 costate
.base_dir_len
= 0;
1222 costate
.not_new
= 0;
1223 costate
.refresh_cache
= 1;
1224 if (checkout_entry(active_cache
[pos
],
1226 lstat(old_name
, &st
))
1230 changed
= ce_match_stat(active_cache
[pos
], &st
);
1232 return error("%s: does not match index",
1235 else if (stat_ret
< 0)
1236 return error("%s: %s", old_name
, strerror(errno
));
1238 if (patch
->is_new
< 0)
1240 st
.st_mode
= ntohl(create_ce_mode(st
.st_mode
));
1241 if (!patch
->old_mode
)
1242 patch
->old_mode
= st
.st_mode
;
1243 if ((st
.st_mode
^ patch
->old_mode
) & S_IFMT
)
1244 return error("%s: wrong type", old_name
);
1245 if (st
.st_mode
!= patch
->old_mode
)
1246 fprintf(stderr
, "warning: %s has type %o, expected %o\n",
1247 old_name
, st
.st_mode
, patch
->old_mode
);
1250 if (new_name
&& (patch
->is_new
| patch
->is_rename
| patch
->is_copy
)) {
1251 if (check_index
&& cache_name_pos(new_name
, strlen(new_name
)) >= 0)
1252 return error("%s: already exists in index", new_name
);
1253 if (!lstat(new_name
, &st
))
1254 return error("%s: already exists in working directory", new_name
);
1255 if (errno
!= ENOENT
)
1256 return error("%s: %s", new_name
, strerror(errno
));
1257 if (!patch
->new_mode
) {
1259 patch
->new_mode
= S_IFREG
| 0644;
1261 patch
->new_mode
= patch
->old_mode
;
1265 if (new_name
&& old_name
) {
1266 int same
= !strcmp(old_name
, new_name
);
1267 if (!patch
->new_mode
)
1268 patch
->new_mode
= patch
->old_mode
;
1269 if ((patch
->old_mode
^ patch
->new_mode
) & S_IFMT
)
1270 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
1271 patch
->new_mode
, new_name
, patch
->old_mode
,
1272 same
? "" : " of ", same
? "" : old_name
);
1275 if (apply_data(patch
, &st
) < 0)
1276 return error("%s: patch does not apply", old_name
);
1280 static int check_patch_list(struct patch
*patch
)
1284 for (;patch
; patch
= patch
->next
)
1285 error
|= check_patch(patch
);
1289 static inline int is_null_sha1(const unsigned char *sha1
)
1291 return !memcmp(sha1
, null_sha1
, 20);
1294 static void show_index_list(struct patch
*list
)
1296 struct patch
*patch
;
1298 /* Once we start supporting the reverse patch, it may be
1299 * worth showing the new sha1 prefix, but until then...
1301 for (patch
= list
; patch
; patch
= patch
->next
) {
1302 const unsigned char *sha1_ptr
;
1303 unsigned char sha1
[20];
1306 name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
1308 sha1_ptr
= null_sha1
;
1309 else if (get_sha1(patch
->old_sha1_prefix
, sha1
))
1310 die("sha1 information is lacking or useless (%s).",
1315 printf("%06o %s ",patch
->old_mode
, sha1_to_hex(sha1_ptr
));
1316 if (line_termination
&& quote_c_style(name
, NULL
, NULL
, 0))
1317 quote_c_style(name
, NULL
, stdout
, 0);
1319 fputs(name
, stdout
);
1320 putchar(line_termination
);
1324 static void stat_patch_list(struct patch
*patch
)
1326 int files
, adds
, dels
;
1328 for (files
= adds
= dels
= 0 ; patch
; patch
= patch
->next
) {
1330 adds
+= patch
->lines_added
;
1331 dels
+= patch
->lines_deleted
;
1335 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files
, adds
, dels
);
1338 static void numstat_patch_list(struct patch
*patch
)
1340 for ( ; patch
; patch
= patch
->next
) {
1342 name
= patch
->old_name
? patch
->old_name
: patch
->new_name
;
1343 printf("%d\t%d\t", patch
->lines_added
, patch
->lines_deleted
);
1344 if (line_termination
&& quote_c_style(name
, NULL
, NULL
, 0))
1345 quote_c_style(name
, NULL
, stdout
, 0);
1347 fputs(name
, stdout
);
1352 static void show_file_mode_name(const char *newdelete
, unsigned int mode
, const char *name
)
1355 printf(" %s mode %06o %s\n", newdelete
, mode
, name
);
1357 printf(" %s %s\n", newdelete
, name
);
1360 static void show_mode_change(struct patch
*p
, int show_name
)
1362 if (p
->old_mode
&& p
->new_mode
&& p
->old_mode
!= p
->new_mode
) {
1364 printf(" mode change %06o => %06o %s\n",
1365 p
->old_mode
, p
->new_mode
, p
->new_name
);
1367 printf(" mode change %06o => %06o\n",
1368 p
->old_mode
, p
->new_mode
);
1372 static void show_rename_copy(struct patch
*p
)
1374 const char *renamecopy
= p
->is_rename
? "rename" : "copy";
1375 const char *old
, *new;
1377 /* Find common prefix */
1381 const char *slash_old
, *slash_new
;
1382 slash_old
= strchr(old
, '/');
1383 slash_new
= strchr(new, '/');
1386 slash_old
- old
!= slash_new
- new ||
1387 memcmp(old
, new, slash_new
- new))
1389 old
= slash_old
+ 1;
1390 new = slash_new
+ 1;
1392 /* p->old_name thru old is the common prefix, and old and new
1393 * through the end of names are renames
1395 if (old
!= p
->old_name
)
1396 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy
,
1397 (int)(old
- p
->old_name
), p
->old_name
,
1398 old
, new, p
->score
);
1400 printf(" %s %s => %s (%d%%)\n", renamecopy
,
1401 p
->old_name
, p
->new_name
, p
->score
);
1402 show_mode_change(p
, 0);
1405 static void summary_patch_list(struct patch
*patch
)
1409 for (p
= patch
; p
; p
= p
->next
) {
1411 show_file_mode_name("create", p
->new_mode
, p
->new_name
);
1412 else if (p
->is_delete
)
1413 show_file_mode_name("delete", p
->old_mode
, p
->old_name
);
1415 if (p
->is_rename
|| p
->is_copy
)
1416 show_rename_copy(p
);
1419 printf(" rewrite %s (%d%%)\n",
1420 p
->new_name
, p
->score
);
1421 show_mode_change(p
, 0);
1424 show_mode_change(p
, 1);
1430 static void patch_stats(struct patch
*patch
)
1432 int lines
= patch
->lines_added
+ patch
->lines_deleted
;
1434 if (lines
> max_change
)
1436 if (patch
->old_name
) {
1437 int len
= quote_c_style(patch
->old_name
, NULL
, NULL
, 0);
1439 len
= strlen(patch
->old_name
);
1443 if (patch
->new_name
) {
1444 int len
= quote_c_style(patch
->new_name
, NULL
, NULL
, 0);
1446 len
= strlen(patch
->new_name
);
1452 static void remove_file(struct patch
*patch
)
1455 if (remove_file_from_cache(patch
->old_name
) < 0)
1456 die("unable to remove %s from index", patch
->old_name
);
1458 unlink(patch
->old_name
);
1461 static void add_index_file(const char *path
, unsigned mode
, void *buf
, unsigned long size
)
1464 struct cache_entry
*ce
;
1465 int namelen
= strlen(path
);
1466 unsigned ce_size
= cache_entry_size(namelen
);
1471 ce
= xmalloc(ce_size
);
1472 memset(ce
, 0, ce_size
);
1473 memcpy(ce
->name
, path
, namelen
);
1474 ce
->ce_mode
= create_ce_mode(mode
);
1475 ce
->ce_flags
= htons(namelen
);
1476 if (lstat(path
, &st
) < 0)
1477 die("unable to stat newly created file %s", path
);
1478 fill_stat_cache_info(ce
, &st
);
1479 if (write_sha1_file(buf
, size
, "blob", ce
->sha1
) < 0)
1480 die("unable to create backing store for newly created file %s", path
);
1481 if (add_cache_entry(ce
, ADD_CACHE_OK_TO_ADD
) < 0)
1482 die("unable to add cache entry for %s", path
);
1485 static void create_subdirectories(const char *path
)
1487 int len
= strlen(path
);
1488 char *buf
= xmalloc(len
+ 1);
1489 const char *slash
= path
;
1491 while ((slash
= strchr(slash
+1, '/')) != NULL
) {
1493 memcpy(buf
, path
, len
);
1495 if (mkdir(buf
, 0777) < 0) {
1496 if (errno
!= EEXIST
)
1503 static int try_create_file(const char *path
, unsigned int mode
, const char *buf
, unsigned long size
)
1508 return symlink(buf
, path
);
1509 fd
= open(path
, O_CREAT
| O_EXCL
| O_WRONLY
| O_TRUNC
, (mode
& 0100) ? 0777 : 0666);
1513 int written
= write(fd
, buf
, size
);
1515 if (errno
== EINTR
|| errno
== EAGAIN
)
1517 die("writing file %s: %s", path
, strerror(errno
));
1520 die("out of space writing file %s", path
);
1525 die("closing file %s: %s", path
, strerror(errno
));
1530 * We optimistically assume that the directories exist,
1531 * which is true 99% of the time anyway. If they don't,
1532 * we create them and try again.
1534 static void create_one_file(const char *path
, unsigned mode
, const char *buf
, unsigned long size
)
1536 if (!try_create_file(path
, mode
, buf
, size
))
1539 if (errno
== ENOENT
) {
1540 create_subdirectories(path
);
1541 if (!try_create_file(path
, mode
, buf
, size
))
1545 if (errno
== EEXIST
) {
1546 unsigned int nr
= getpid();
1549 const char *newpath
;
1550 newpath
= mkpath("%s~%u", path
, nr
);
1551 if (!try_create_file(newpath
, mode
, buf
, size
)) {
1552 if (!rename(newpath
, path
))
1557 if (errno
!= EEXIST
)
1561 die("unable to write file %s mode %o", path
, mode
);
1564 static void create_file(struct patch
*patch
)
1566 const char *path
= patch
->new_name
;
1567 unsigned mode
= patch
->new_mode
;
1568 unsigned long size
= patch
->resultsize
;
1569 char *buf
= patch
->result
;
1572 mode
= S_IFREG
| 0644;
1573 create_one_file(path
, mode
, buf
, size
);
1574 add_index_file(path
, mode
, buf
, size
);
1577 static void write_out_one_result(struct patch
*patch
)
1579 if (patch
->is_delete
> 0) {
1583 if (patch
->is_new
> 0 || patch
->is_copy
) {
1588 * Rename or modification boils down to the same
1589 * thing: remove the old, write the new
1595 static void write_out_results(struct patch
*list
, int skipped_patch
)
1597 if (!list
&& !skipped_patch
)
1601 write_out_one_result(list
);
1606 static struct cache_file cache_file
;
1608 static struct excludes
{
1609 struct excludes
*next
;
1613 static int use_patch(struct patch
*p
)
1615 const char *pathname
= p
->new_name
? p
->new_name
: p
->old_name
;
1616 struct excludes
*x
= excludes
;
1618 if (fnmatch(x
->path
, pathname
, 0) == 0)
1625 static int apply_patch(int fd
)
1628 unsigned long offset
, size
;
1629 char *buffer
= read_patch_file(fd
, &size
);
1630 struct patch
*list
= NULL
, **listp
= &list
;
1631 int skipped_patch
= 0;
1637 struct patch
*patch
;
1640 patch
= xmalloc(sizeof(*patch
));
1641 memset(patch
, 0, sizeof(*patch
));
1642 nr
= parse_chunk(buffer
+ offset
, size
, patch
);
1645 if (use_patch(patch
)) {
1648 listp
= &patch
->next
;
1650 /* perhaps free it a bit better? */
1659 write_index
= check_index
&& apply
;
1661 newfd
= hold_index_file_for_update(&cache_file
, get_index_file());
1663 if (read_cache() < 0)
1664 die("unable to read index file");
1667 if ((check
|| apply
) && check_patch_list(list
) < 0)
1671 write_out_results(list
, skipped_patch
);
1674 if (write_cache(newfd
, active_cache
, active_nr
) ||
1675 commit_index_file(&cache_file
))
1676 die("Unable to write new cachefile");
1679 if (show_index_info
)
1680 show_index_list(list
);
1683 stat_patch_list(list
);
1686 numstat_patch_list(list
);
1689 summary_patch_list(list
);
1695 int main(int argc
, char **argv
)
1700 for (i
= 1; i
< argc
; i
++) {
1701 const char *arg
= argv
[i
];
1704 if (!strcmp(arg
, "-")) {
1709 if (!strncmp(arg
, "--exclude=", 10)) {
1710 struct excludes
*x
= xmalloc(sizeof(*x
));
1716 if (!strcmp(arg
, "--no-add")) {
1720 if (!strcmp(arg
, "--stat")) {
1725 if (!strcmp(arg
, "--numstat")) {
1730 if (!strcmp(arg
, "--summary")) {
1735 if (!strcmp(arg
, "--check")) {
1740 if (!strcmp(arg
, "--index")) {
1744 if (!strcmp(arg
, "--apply")) {
1748 if (!strcmp(arg
, "--index-info")) {
1750 show_index_info
= 1;
1753 if (!strcmp(arg
, "-z")) {
1754 line_termination
= 0;
1757 fd
= open(arg
, O_RDONLY
);