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);
895 static const char binhdr[] = "Binary files ";
897 if (sizeof(binhdr) - 1 < size - offset - hdrsize &&
898 !memcmp(binhdr, buffer + hdrsize + offset,
900 patch->is_binary = 1;
902 /* Empty patch cannot be applied if:
903 * - it is a binary patch or
904 * - metadata does not change and is not a binary patch.
906 if ((apply || check) &&
907 (patch->is_binary || !metadata_changes(patch)))
908 die("patch with only garbage at line %d", linenr);
911 return offset + hdrsize + patchsize;
914 static const char pluses[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
915 static const char minuses[]= "----------------------------------------------------------------------";
917 static void show_stats(struct patch *patch)
919 const char *prefix = "";
920 char *name = patch->new_name;
922 int len, max, add, del, total;
925 name = patch->old_name;
927 if (0 < (len = quote_c_style(name, NULL, NULL, 0))) {
928 qname = xmalloc(len + 1);
929 quote_c_style(name, qname, NULL, 0);
934 * "scale" the filename
945 slash = strchr(name, '/');
952 * scale the add/delete
958 add = patch->lines_added;
959 del = patch->lines_deleted;
962 if (max_change > 0) {
963 total = (total * max + max_change / 2) / max_change;
964 add = (add * max + max_change / 2) / max_change;
967 if (patch->is_binary)
968 printf(" %s%-*s | Bin\n", prefix, len, name);
970 printf(" %s%-*s |%5d %.*s%.*s\n", prefix,
971 len, name, patch->lines_added + patch->lines_deleted,
972 add, pluses, del, minuses);
977 static int read_old_data(struct stat *st, const char *path, void *buf, unsigned long size)
982 switch (st->st_mode & S_IFMT) {
984 return readlink(path, buf, size);
986 fd = open(path, O_RDONLY);
988 return error("unable to open %s", path);
991 int ret = read(fd, buf + got, size - got);
1009 static int find_offset(const char *buf, unsigned long size, const char *fragment, unsigned long fragsize, int line)
1012 unsigned long start, backwards, forwards;
1014 if (fragsize > size)
1019 unsigned long offset = 0;
1021 while (offset + fragsize <= size) {
1022 if (buf[offset++] == '\n') {
1030 /* Exact line number? */
1031 if (!memcmp(buf + start, fragment, fragsize))
1035 * There's probably some smart way to do this, but I'll leave
1036 * that to the smart and beautiful people. I'm simple and stupid.
1040 for (i = 0; ; i++) {
1047 if (forwards + fragsize > size)
1053 } while (backwards && buf[backwards-1] != '\n');
1056 while (forwards + fragsize <= size) {
1057 if (buf[forwards++] == '\n')
1063 if (try + fragsize > size)
1065 if (memcmp(buf + try, fragment, fragsize))
1074 * We should start searching forward and backward.
1079 struct buffer_desc {
1082 unsigned long alloc;
1085 static int apply_one_fragment(struct buffer_desc *desc, struct fragment *frag)
1087 char *buf = desc->buffer;
1088 const char *patch = frag->patch;
1089 int offset, size = frag->size;
1090 char *old = xmalloc(size);
1091 char *new = xmalloc(size);
1092 int oldsize = 0, newsize = 0;
1095 int len = linelen(patch, size);
1102 * "plen" is how much of the line we should use for
1103 * the actual patch data. Normally we just remove the
1104 * first character on the line, but if the line is
1105 * followed by "\ No newline", then we also remove the
1106 * last one (which is the newline, of course).
1109 if (len < size && patch[len] == '\\')
1114 memcpy(old + oldsize, patch + 1, plen);
1118 /* Fall-through for ' ' */
1120 if (*patch != '+' || !no_add) {
1121 memcpy(new + newsize, patch + 1, plen);
1125 case '@': case '\\':
1126 /* Ignore it, we already handled it */
1135 offset = find_offset(buf, desc->size, old, oldsize, frag->newpos);
1137 int diff = newsize - oldsize;
1138 unsigned long size = desc->size + diff;
1139 unsigned long alloc = desc->alloc;
1142 alloc = size + 8192;
1143 desc->alloc = alloc;
1144 buf = xrealloc(buf, alloc);
1148 memmove(buf + offset + newsize, buf + offset + oldsize, size - offset - newsize);
1149 memcpy(buf + offset, new, newsize);
1158 static int apply_fragments(struct buffer_desc *desc, struct patch *patch)
1160 struct fragment *frag = patch->fragments;
1163 if (apply_one_fragment(desc, frag) < 0)
1164 return error("patch failed: %s:%ld", patch->old_name, frag->oldpos);
1170 static int apply_data(struct patch *patch, struct stat *st)
1173 unsigned long size, alloc;
1174 struct buffer_desc desc;
1179 if (patch->old_name) {
1181 alloc = size + 8192;
1182 buf = xmalloc(alloc);
1183 if (read_old_data(st, patch->old_name, buf, alloc) != size)
1184 return error("read of %s failed", patch->old_name);
1190 if (apply_fragments(&desc, patch) < 0)
1192 patch->result = desc.buffer;
1193 patch->resultsize = desc.size;
1195 if (patch->is_delete && patch->resultsize)
1196 return error("removal patch leaves file contents");
1201 static int check_patch(struct patch *patch)
1204 const char *old_name = patch->old_name;
1205 const char *new_name = patch->new_name;
1209 int stat_ret = lstat(old_name, &st);
1212 int pos = cache_name_pos(old_name, strlen(old_name));
1214 return error("%s: does not exist in index",
1217 struct checkout costate;
1218 if (errno != ENOENT)
1219 return error("%s: %s", old_name,
1222 costate.base_dir = "";
1223 costate.base_dir_len = 0;
1226 costate.not_new = 0;
1227 costate.refresh_cache = 1;
1228 if (checkout_entry(active_cache[pos],
1230 lstat(old_name, &st))
1234 changed = ce_match_stat(active_cache[pos], &st);
1236 return error("%s: does not match index",
1239 else if (stat_ret < 0)
1240 return error("%s: %s", old_name, strerror(errno));
1242 if (patch->is_new < 0)
1244 st.st_mode = ntohl(create_ce_mode(st.st_mode));
1245 if (!patch->old_mode)
1246 patch->old_mode = st.st_mode;
1247 if ((st.st_mode ^ patch->old_mode) & S_IFMT)
1248 return error("%s: wrong type", old_name);
1249 if (st.st_mode != patch->old_mode)
1250 fprintf(stderr, "warning: %s has type %o, expected %o\n",
1251 old_name, st.st_mode, patch->old_mode);
1254 if (new_name && (patch->is_new | patch->is_rename | patch->is_copy)) {
1255 if (check_index && cache_name_pos(new_name, strlen(new_name)) >= 0)
1256 return error("%s: already exists in index", new_name);
1257 if (!lstat(new_name, &st))
1258 return error("%s: already exists in working directory", new_name);
1259 if (errno != ENOENT)
1260 return error("%s: %s", new_name, strerror(errno));
1261 if (!patch->new_mode) {
1263 patch->new_mode = S_IFREG | 0644;
1265 patch->new_mode = patch->old_mode;
1269 if (new_name && old_name) {
1270 int same = !strcmp(old_name, new_name);
1271 if (!patch->new_mode)
1272 patch->new_mode = patch->old_mode;
1273 if ((patch->old_mode ^ patch->new_mode) & S_IFMT)
1274 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
1275 patch->new_mode, new_name, patch->old_mode,
1276 same ? "" : " of ", same ? "" : old_name);
1279 if (apply_data(patch, &st) < 0)
1280 return error("%s: patch does not apply", old_name);
1284 static int check_patch_list(struct patch *patch)
1288 for (;patch ; patch = patch->next)
1289 error |= check_patch(patch);
1293 static inline int is_null_sha1(const unsigned char *sha1)
1295 return !memcmp(sha1, null_sha1, 20);
1298 static void show_index_list(struct patch *list)
1300 struct patch *patch;
1302 /* Once we start supporting the reverse patch, it may be
1303 * worth showing the new sha1 prefix, but until then...
1305 for (patch = list; patch; patch = patch->next) {
1306 const unsigned char *sha1_ptr;
1307 unsigned char sha1[20];
1310 name = patch->old_name ? patch->old_name : patch->new_name;
1312 sha1_ptr = null_sha1;
1313 else if (get_sha1(patch->old_sha1_prefix, sha1))
1314 die("sha1 information is lacking or useless (%s).",
1319 printf("%06o %s ",patch->old_mode, sha1_to_hex(sha1_ptr));
1320 if (line_termination && quote_c_style(name, NULL, NULL, 0))
1321 quote_c_style(name, NULL, stdout, 0);
1323 fputs(name, stdout);
1324 putchar(line_termination);
1328 static void stat_patch_list(struct patch *patch)
1330 int files, adds, dels;
1332 for (files = adds = dels = 0 ; patch ; patch = patch->next) {
1334 adds += patch->lines_added;
1335 dels += patch->lines_deleted;
1339 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels);
1342 static void numstat_patch_list(struct patch *patch)
1344 for ( ; patch; patch = patch->next) {
1346 name = patch->old_name ? patch->old_name : patch->new_name;
1347 printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);
1348 if (line_termination && quote_c_style(name, NULL, NULL, 0))
1349 quote_c_style(name, NULL, stdout, 0);
1351 fputs(name, stdout);
1356 static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
1359 printf(" %s mode %06o %s\n", newdelete, mode, name);
1361 printf(" %s %s\n", newdelete, name);
1364 static void show_mode_change(struct patch *p, int show_name)
1366 if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
1368 printf(" mode change %06o => %06o %s\n",
1369 p->old_mode, p->new_mode, p->new_name);
1371 printf(" mode change %06o => %06o\n",
1372 p->old_mode, p->new_mode);
1376 static void show_rename_copy(struct patch *p)
1378 const char *renamecopy = p->is_rename ? "rename" : "copy";
1379 const char *old, *new;
1381 /* Find common prefix */
1385 const char *slash_old, *slash_new;
1386 slash_old = strchr(old, '/');
1387 slash_new = strchr(new, '/');
1390 slash_old - old != slash_new - new ||
1391 memcmp(old, new, slash_new - new))
1393 old = slash_old + 1;
1394 new = slash_new + 1;
1396 /* p->old_name thru old is the common prefix, and old and new
1397 * through the end of names are renames
1399 if (old != p->old_name)
1400 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
1401 (int)(old - p->old_name), p->old_name,
1402 old, new, p->score);
1404 printf(" %s %s => %s (%d%%)\n", renamecopy,
1405 p->old_name, p->new_name, p->score);
1406 show_mode_change(p, 0);
1409 static void summary_patch_list(struct patch *patch)
1413 for (p = patch; p; p = p->next) {
1415 show_file_mode_name("create", p->new_mode, p->new_name);
1416 else if (p->is_delete)
1417 show_file_mode_name("delete", p->old_mode, p->old_name);
1419 if (p->is_rename || p->is_copy)
1420 show_rename_copy(p);
1423 printf(" rewrite %s (%d%%)\n",
1424 p->new_name, p->score);
1425 show_mode_change(p, 0);
1428 show_mode_change(p, 1);
1434 static void patch_stats(struct patch *patch)
1436 int lines = patch->lines_added + patch->lines_deleted;
1438 if (lines > max_change)
1440 if (patch->old_name) {
1441 int len = quote_c_style(patch->old_name, NULL, NULL, 0);
1443 len = strlen(patch->old_name);
1447 if (patch->new_name) {
1448 int len = quote_c_style(patch->new_name, NULL, NULL, 0);
1450 len = strlen(patch->new_name);
1456 static void remove_file(struct patch *patch)
1459 if (remove_file_from_cache(patch->old_name) < 0)
1460 die("unable to remove %s from index", patch->old_name);
1462 unlink(patch->old_name);
1465 static void add_index_file(const char *path, unsigned mode, void *buf, unsigned long size)
1468 struct cache_entry *ce;
1469 int namelen = strlen(path);
1470 unsigned ce_size = cache_entry_size(namelen);
1475 ce = xmalloc(ce_size);
1476 memset(ce, 0, ce_size);
1477 memcpy(ce->name, path, namelen);
1478 ce->ce_mode = create_ce_mode(mode);
1479 ce->ce_flags = htons(namelen);
1480 if (lstat(path, &st) < 0)
1481 die("unable to stat newly created file %s", path);
1482 fill_stat_cache_info(ce, &st);
1483 if (write_sha1_file(buf, size, "blob", ce->sha1) < 0)
1484 die("unable to create backing store for newly created file %s", path);
1485 if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)
1486 die("unable to add cache entry for %s", path);
1489 static void create_subdirectories(const char *path)
1491 int len = strlen(path);
1492 char *buf = xmalloc(len + 1);
1493 const char *slash = path;
1495 while ((slash = strchr(slash+1, '/')) != NULL) {
1497 memcpy(buf, path, len);
1499 if (mkdir(buf, 0777) < 0) {
1500 if (errno != EEXIST)
1507 static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)
1512 return symlink(buf, path);
1513 fd = open(path, O_CREAT | O_EXCL | O_WRONLY | O_TRUNC, (mode & 0100) ? 0777 : 0666);
1517 int written = write(fd, buf, size);
1519 if (errno == EINTR || errno == EAGAIN)
1521 die("writing file %s: %s", path, strerror(errno));
1524 die("out of space writing file %s", path);
1529 die("closing file %s: %s", path, strerror(errno));
1534 * We optimistically assume that the directories exist,
1535 * which is true 99% of the time anyway. If they don't,
1536 * we create them and try again.
1538 static void create_one_file(const char *path, unsigned mode, const char *buf, unsigned long size)
1540 if (!try_create_file(path, mode, buf, size))
1543 if (errno == ENOENT) {
1544 create_subdirectories(path);
1545 if (!try_create_file(path, mode, buf, size))
1549 if (errno == EEXIST) {
1550 unsigned int nr = getpid();
1553 const char *newpath;
1554 newpath = mkpath("%s~%u", path, nr);
1555 if (!try_create_file(newpath, mode, buf, size)) {
1556 if (!rename(newpath, path))
1561 if (errno != EEXIST)
1565 die("unable to write file %s mode %o", path, mode);
1568 static void create_file(struct patch *patch)
1570 const char *path = patch->new_name;
1571 unsigned mode = patch->new_mode;
1572 unsigned long size = patch->resultsize;
1573 char *buf = patch->result;
1576 mode = S_IFREG | 0644;
1577 create_one_file(path, mode, buf, size);
1578 add_index_file(path, mode, buf, size);
1581 static void write_out_one_result(struct patch *patch)
1583 if (patch->is_delete > 0) {
1587 if (patch->is_new > 0 || patch->is_copy) {
1592 * Rename or modification boils down to the same
1593 * thing: remove the old, write the new
1599 static void write_out_results(struct patch *list, int skipped_patch)
1601 if (!list && !skipped_patch)
1605 write_out_one_result(list);
1610 static struct cache_file cache_file;
1612 static struct excludes {
1613 struct excludes *next;
1617 static int use_patch(struct patch *p)
1619 const char *pathname = p->new_name ? p->new_name : p->old_name;
1620 struct excludes *x = excludes;
1622 if (fnmatch(x->path, pathname, 0) == 0)
1629 static int apply_patch(int fd)
1632 unsigned long offset, size;
1633 char *buffer = read_patch_file(fd, &size);
1634 struct patch *list = NULL, **listp = &list;
1635 int skipped_patch = 0;
1641 struct patch *patch;
1644 patch = xmalloc(sizeof(*patch));
1645 memset(patch, 0, sizeof(*patch));
1646 nr = parse_chunk(buffer + offset, size, patch);
1649 if (use_patch(patch)) {
1652 listp = &patch->next;
1654 /* perhaps free it a bit better? */
1663 write_index = check_index && apply;
1665 newfd = hold_index_file_for_update(&cache_file, get_index_file());
1667 if (read_cache() < 0)
1668 die("unable to read index file");
1671 if ((check || apply) && check_patch_list(list) < 0)
1675 write_out_results(list, skipped_patch);
1678 if (write_cache(newfd, active_cache, active_nr) ||
1679 commit_index_file(&cache_file))
1680 die("Unable to write new cachefile");
1683 if (show_index_info)
1684 show_index_list(list);
1687 stat_patch_list(list);
1690 numstat_patch_list(list);
1693 summary_patch_list(list);
1699 int main(int argc, char **argv)
1704 for (i = 1; i < argc; i++) {
1705 const char *arg = argv[i];
1708 if (!strcmp(arg, "-")) {
1713 if (!strncmp(arg, "--exclude=", 10)) {
1714 struct excludes *x = xmalloc(sizeof(*x));
1720 if (!strcmp(arg, "--no-add")) {
1724 if (!strcmp(arg, "--stat")) {
1729 if (!strcmp(arg, "--numstat")) {
1734 if (!strcmp(arg, "--summary")) {
1739 if (!strcmp(arg, "--check")) {
1744 if (!strcmp(arg, "--index")) {
1748 if (!strcmp(arg, "--apply")) {
1752 if (!strcmp(arg, "--index-info")) {
1754 show_index_info = 1;
1757 if (!strcmp(arg, "-z")) {
1758 line_termination = 0;
1761 fd = open(arg, O_RDONLY);