Code

apply --whitespace=warn/error: diagnose blank at EOF
[git.git] / builtin-apply.c
1 /*
2  * apply.c
3  *
4  * Copyright (C) Linus Torvalds, 2005
5  *
6  * This applies patches on top of some (arbitrary) version of the SCM.
7  *
8  */
9 #include "cache.h"
10 #include "cache-tree.h"
11 #include "quote.h"
12 #include "blob.h"
13 #include "delta.h"
14 #include "builtin.h"
15 #include "string-list.h"
16 #include "dir.h"
18 /*
19  *  --check turns on checking that the working tree matches the
20  *    files that are being modified, but doesn't apply the patch
21  *  --stat does just a diffstat, and doesn't actually apply
22  *  --numstat does numeric diffstat, and doesn't actually apply
23  *  --index-info shows the old and new index info for paths if available.
24  *  --index updates the cache as well.
25  *  --cached updates only the cache without ever touching the working tree.
26  */
27 static const char *prefix;
28 static int prefix_length = -1;
29 static int newfd = -1;
31 static int unidiff_zero;
32 static int p_value = 1;
33 static int p_value_known;
34 static int check_index;
35 static int update_index;
36 static int cached;
37 static int diffstat;
38 static int numstat;
39 static int summary;
40 static int check;
41 static int apply = 1;
42 static int apply_in_reverse;
43 static int apply_with_reject;
44 static int apply_verbosely;
45 static int no_add;
46 static const char *fake_ancestor;
47 static int line_termination = '\n';
48 static unsigned long p_context = ULONG_MAX;
49 static const char apply_usage[] =
50 "git apply [--stat] [--numstat] [--summary] [--check] [--index] [--cached] [--apply] [--no-add] [--index-info] [--allow-binary-replacement] [--reverse] [--reject] [--verbose] [-z] [-pNUM] [-CNUM] [--whitespace=<nowarn|warn|fix|error|error-all>] <patch>...";
52 static enum ws_error_action {
53         nowarn_ws_error,
54         warn_on_ws_error,
55         die_on_ws_error,
56         correct_ws_error,
57 } ws_error_action = warn_on_ws_error;
58 static int whitespace_error;
59 static int squelch_whitespace_errors = 5;
60 static int applied_after_fixing_ws;
61 static const char *patch_input_file;
62 static const char *root;
63 static int root_len;
65 static void parse_whitespace_option(const char *option)
66 {
67         if (!option) {
68                 ws_error_action = warn_on_ws_error;
69                 return;
70         }
71         if (!strcmp(option, "warn")) {
72                 ws_error_action = warn_on_ws_error;
73                 return;
74         }
75         if (!strcmp(option, "nowarn")) {
76                 ws_error_action = nowarn_ws_error;
77                 return;
78         }
79         if (!strcmp(option, "error")) {
80                 ws_error_action = die_on_ws_error;
81                 return;
82         }
83         if (!strcmp(option, "error-all")) {
84                 ws_error_action = die_on_ws_error;
85                 squelch_whitespace_errors = 0;
86                 return;
87         }
88         if (!strcmp(option, "strip") || !strcmp(option, "fix")) {
89                 ws_error_action = correct_ws_error;
90                 return;
91         }
92         die("unrecognized whitespace option '%s'", option);
93 }
95 static void set_default_whitespace_mode(const char *whitespace_option)
96 {
97         if (!whitespace_option && !apply_default_whitespace)
98                 ws_error_action = (apply ? warn_on_ws_error : nowarn_ws_error);
99 }
101 /*
102  * For "diff-stat" like behaviour, we keep track of the biggest change
103  * we've seen, and the longest filename. That allows us to do simple
104  * scaling.
105  */
106 static int max_change, max_len;
108 /*
109  * Various "current state", notably line numbers and what
110  * file (and how) we're patching right now.. The "is_xxxx"
111  * things are flags, where -1 means "don't know yet".
112  */
113 static int linenr = 1;
115 /*
116  * This represents one "hunk" from a patch, starting with
117  * "@@ -oldpos,oldlines +newpos,newlines @@" marker.  The
118  * patch text is pointed at by patch, and its byte length
119  * is stored in size.  leading and trailing are the number
120  * of context lines.
121  */
122 struct fragment {
123         unsigned long leading, trailing;
124         unsigned long oldpos, oldlines;
125         unsigned long newpos, newlines;
126         const char *patch;
127         int size;
128         int rejected;
129         int linenr;
130         struct fragment *next;
131 };
133 /*
134  * When dealing with a binary patch, we reuse "leading" field
135  * to store the type of the binary hunk, either deflated "delta"
136  * or deflated "literal".
137  */
138 #define binary_patch_method leading
139 #define BINARY_DELTA_DEFLATED   1
140 #define BINARY_LITERAL_DEFLATED 2
142 /*
143  * This represents a "patch" to a file, both metainfo changes
144  * such as creation/deletion, filemode and content changes represented
145  * as a series of fragments.
146  */
147 struct patch {
148         char *new_name, *old_name, *def_name;
149         unsigned int old_mode, new_mode;
150         int is_new, is_delete;  /* -1 = unknown, 0 = false, 1 = true */
151         int rejected;
152         unsigned ws_rule;
153         unsigned long deflate_origlen;
154         int lines_added, lines_deleted;
155         int score;
156         unsigned int is_toplevel_relative:1;
157         unsigned int inaccurate_eof:1;
158         unsigned int is_binary:1;
159         unsigned int is_copy:1;
160         unsigned int is_rename:1;
161         unsigned int recount:1;
162         struct fragment *fragments;
163         char *result;
164         size_t resultsize;
165         char old_sha1_prefix[41];
166         char new_sha1_prefix[41];
167         struct patch *next;
168 };
170 /*
171  * A line in a file, len-bytes long (includes the terminating LF,
172  * except for an incomplete line at the end if the file ends with
173  * one), and its contents hashes to 'hash'.
174  */
175 struct line {
176         size_t len;
177         unsigned hash : 24;
178         unsigned flag : 8;
179 #define LINE_COMMON     1
180 };
182 /*
183  * This represents a "file", which is an array of "lines".
184  */
185 struct image {
186         char *buf;
187         size_t len;
188         size_t nr;
189         size_t alloc;
190         struct line *line_allocated;
191         struct line *line;
192 };
194 /*
195  * Records filenames that have been touched, in order to handle
196  * the case where more than one patches touch the same file.
197  */
199 static struct string_list fn_table;
201 static uint32_t hash_line(const char *cp, size_t len)
203         size_t i;
204         uint32_t h;
205         for (i = 0, h = 0; i < len; i++) {
206                 if (!isspace(cp[i])) {
207                         h = h * 3 + (cp[i] & 0xff);
208                 }
209         }
210         return h;
213 static void add_line_info(struct image *img, const char *bol, size_t len, unsigned flag)
215         ALLOC_GROW(img->line_allocated, img->nr + 1, img->alloc);
216         img->line_allocated[img->nr].len = len;
217         img->line_allocated[img->nr].hash = hash_line(bol, len);
218         img->line_allocated[img->nr].flag = flag;
219         img->nr++;
222 static void prepare_image(struct image *image, char *buf, size_t len,
223                           int prepare_linetable)
225         const char *cp, *ep;
227         memset(image, 0, sizeof(*image));
228         image->buf = buf;
229         image->len = len;
231         if (!prepare_linetable)
232                 return;
234         ep = image->buf + image->len;
235         cp = image->buf;
236         while (cp < ep) {
237                 const char *next;
238                 for (next = cp; next < ep && *next != '\n'; next++)
239                         ;
240                 if (next < ep)
241                         next++;
242                 add_line_info(image, cp, next - cp, 0);
243                 cp = next;
244         }
245         image->line = image->line_allocated;
248 static void clear_image(struct image *image)
250         free(image->buf);
251         image->buf = NULL;
252         image->len = 0;
255 static void say_patch_name(FILE *output, const char *pre,
256                            struct patch *patch, const char *post)
258         fputs(pre, output);
259         if (patch->old_name && patch->new_name &&
260             strcmp(patch->old_name, patch->new_name)) {
261                 quote_c_style(patch->old_name, NULL, output, 0);
262                 fputs(" => ", output);
263                 quote_c_style(patch->new_name, NULL, output, 0);
264         } else {
265                 const char *n = patch->new_name;
266                 if (!n)
267                         n = patch->old_name;
268                 quote_c_style(n, NULL, output, 0);
269         }
270         fputs(post, output);
273 #define CHUNKSIZE (8192)
274 #define SLOP (16)
276 static void read_patch_file(struct strbuf *sb, int fd)
278         if (strbuf_read(sb, fd, 0) < 0)
279                 die("git apply: read returned %s", strerror(errno));
281         /*
282          * Make sure that we have some slop in the buffer
283          * so that we can do speculative "memcmp" etc, and
284          * see to it that it is NUL-filled.
285          */
286         strbuf_grow(sb, SLOP);
287         memset(sb->buf + sb->len, 0, SLOP);
290 static unsigned long linelen(const char *buffer, unsigned long size)
292         unsigned long len = 0;
293         while (size--) {
294                 len++;
295                 if (*buffer++ == '\n')
296                         break;
297         }
298         return len;
301 static int is_dev_null(const char *str)
303         return !memcmp("/dev/null", str, 9) && isspace(str[9]);
306 #define TERM_SPACE      1
307 #define TERM_TAB        2
309 static int name_terminate(const char *name, int namelen, int c, int terminate)
311         if (c == ' ' && !(terminate & TERM_SPACE))
312                 return 0;
313         if (c == '\t' && !(terminate & TERM_TAB))
314                 return 0;
316         return 1;
319 static char *find_name(const char *line, char *def, int p_value, int terminate)
321         int len;
322         const char *start = line;
324         if (*line == '"') {
325                 struct strbuf name;
327                 /*
328                  * Proposed "new-style" GNU patch/diff format; see
329                  * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
330                  */
331                 strbuf_init(&name, 0);
332                 if (!unquote_c_style(&name, line, NULL)) {
333                         char *cp;
335                         for (cp = name.buf; p_value; p_value--) {
336                                 cp = strchr(cp, '/');
337                                 if (!cp)
338                                         break;
339                                 cp++;
340                         }
341                         if (cp) {
342                                 /* name can later be freed, so we need
343                                  * to memmove, not just return cp
344                                  */
345                                 strbuf_remove(&name, 0, cp - name.buf);
346                                 free(def);
347                                 if (root)
348                                         strbuf_insert(&name, 0, root, root_len);
349                                 return strbuf_detach(&name, NULL);
350                         }
351                 }
352                 strbuf_release(&name);
353         }
355         for (;;) {
356                 char c = *line;
358                 if (isspace(c)) {
359                         if (c == '\n')
360                                 break;
361                         if (name_terminate(start, line-start, c, terminate))
362                                 break;
363                 }
364                 line++;
365                 if (c == '/' && !--p_value)
366                         start = line;
367         }
368         if (!start)
369                 return def;
370         len = line - start;
371         if (!len)
372                 return def;
374         /*
375          * Generally we prefer the shorter name, especially
376          * if the other one is just a variation of that with
377          * something else tacked on to the end (ie "file.orig"
378          * or "file~").
379          */
380         if (def) {
381                 int deflen = strlen(def);
382                 if (deflen < len && !strncmp(start, def, deflen))
383                         return def;
384                 free(def);
385         }
387         if (root) {
388                 char *ret = xmalloc(root_len + len + 1);
389                 strcpy(ret, root);
390                 memcpy(ret + root_len, start, len);
391                 ret[root_len + len] = '\0';
392                 return ret;
393         }
395         return xmemdupz(start, len);
398 static int count_slashes(const char *cp)
400         int cnt = 0;
401         char ch;
403         while ((ch = *cp++))
404                 if (ch == '/')
405                         cnt++;
406         return cnt;
409 /*
410  * Given the string after "--- " or "+++ ", guess the appropriate
411  * p_value for the given patch.
412  */
413 static int guess_p_value(const char *nameline)
415         char *name, *cp;
416         int val = -1;
418         if (is_dev_null(nameline))
419                 return -1;
420         name = find_name(nameline, NULL, 0, TERM_SPACE | TERM_TAB);
421         if (!name)
422                 return -1;
423         cp = strchr(name, '/');
424         if (!cp)
425                 val = 0;
426         else if (prefix) {
427                 /*
428                  * Does it begin with "a/$our-prefix" and such?  Then this is
429                  * very likely to apply to our directory.
430                  */
431                 if (!strncmp(name, prefix, prefix_length))
432                         val = count_slashes(prefix);
433                 else {
434                         cp++;
435                         if (!strncmp(cp, prefix, prefix_length))
436                                 val = count_slashes(prefix) + 1;
437                 }
438         }
439         free(name);
440         return val;
443 /*
444  * Get the name etc info from the ---/+++ lines of a traditional patch header
445  *
446  * FIXME! The end-of-filename heuristics are kind of screwy. For existing
447  * files, we can happily check the index for a match, but for creating a
448  * new file we should try to match whatever "patch" does. I have no idea.
449  */
450 static void parse_traditional_patch(const char *first, const char *second, struct patch *patch)
452         char *name;
454         first += 4;     /* skip "--- " */
455         second += 4;    /* skip "+++ " */
456         if (!p_value_known) {
457                 int p, q;
458                 p = guess_p_value(first);
459                 q = guess_p_value(second);
460                 if (p < 0) p = q;
461                 if (0 <= p && p == q) {
462                         p_value = p;
463                         p_value_known = 1;
464                 }
465         }
466         if (is_dev_null(first)) {
467                 patch->is_new = 1;
468                 patch->is_delete = 0;
469                 name = find_name(second, NULL, p_value, TERM_SPACE | TERM_TAB);
470                 patch->new_name = name;
471         } else if (is_dev_null(second)) {
472                 patch->is_new = 0;
473                 patch->is_delete = 1;
474                 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
475                 patch->old_name = name;
476         } else {
477                 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
478                 name = find_name(second, name, p_value, TERM_SPACE | TERM_TAB);
479                 patch->old_name = patch->new_name = name;
480         }
481         if (!name)
482                 die("unable to find filename in patch at line %d", linenr);
485 static int gitdiff_hdrend(const char *line, struct patch *patch)
487         return -1;
490 /*
491  * We're anal about diff header consistency, to make
492  * sure that we don't end up having strange ambiguous
493  * patches floating around.
494  *
495  * As a result, gitdiff_{old|new}name() will check
496  * their names against any previous information, just
497  * to make sure..
498  */
499 static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew)
501         if (!orig_name && !isnull)
502                 return find_name(line, NULL, p_value, TERM_TAB);
504         if (orig_name) {
505                 int len;
506                 const char *name;
507                 char *another;
508                 name = orig_name;
509                 len = strlen(name);
510                 if (isnull)
511                         die("git apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr);
512                 another = find_name(line, NULL, p_value, TERM_TAB);
513                 if (!another || memcmp(another, name, len))
514                         die("git apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr);
515                 free(another);
516                 return orig_name;
517         }
518         else {
519                 /* expect "/dev/null" */
520                 if (memcmp("/dev/null", line, 9) || line[9] != '\n')
521                         die("git apply: bad git-diff - expected /dev/null on line %d", linenr);
522                 return NULL;
523         }
526 static int gitdiff_oldname(const char *line, struct patch *patch)
528         patch->old_name = gitdiff_verify_name(line, patch->is_new, patch->old_name, "old");
529         return 0;
532 static int gitdiff_newname(const char *line, struct patch *patch)
534         patch->new_name = gitdiff_verify_name(line, patch->is_delete, patch->new_name, "new");
535         return 0;
538 static int gitdiff_oldmode(const char *line, struct patch *patch)
540         patch->old_mode = strtoul(line, NULL, 8);
541         return 0;
544 static int gitdiff_newmode(const char *line, struct patch *patch)
546         patch->new_mode = strtoul(line, NULL, 8);
547         return 0;
550 static int gitdiff_delete(const char *line, struct patch *patch)
552         patch->is_delete = 1;
553         patch->old_name = patch->def_name;
554         return gitdiff_oldmode(line, patch);
557 static int gitdiff_newfile(const char *line, struct patch *patch)
559         patch->is_new = 1;
560         patch->new_name = patch->def_name;
561         return gitdiff_newmode(line, patch);
564 static int gitdiff_copysrc(const char *line, struct patch *patch)
566         patch->is_copy = 1;
567         patch->old_name = find_name(line, NULL, 0, 0);
568         return 0;
571 static int gitdiff_copydst(const char *line, struct patch *patch)
573         patch->is_copy = 1;
574         patch->new_name = find_name(line, NULL, 0, 0);
575         return 0;
578 static int gitdiff_renamesrc(const char *line, struct patch *patch)
580         patch->is_rename = 1;
581         patch->old_name = find_name(line, NULL, 0, 0);
582         return 0;
585 static int gitdiff_renamedst(const char *line, struct patch *patch)
587         patch->is_rename = 1;
588         patch->new_name = find_name(line, NULL, 0, 0);
589         return 0;
592 static int gitdiff_similarity(const char *line, struct patch *patch)
594         if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
595                 patch->score = 0;
596         return 0;
599 static int gitdiff_dissimilarity(const char *line, struct patch *patch)
601         if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
602                 patch->score = 0;
603         return 0;
606 static int gitdiff_index(const char *line, struct patch *patch)
608         /*
609          * index line is N hexadecimal, "..", N hexadecimal,
610          * and optional space with octal mode.
611          */
612         const char *ptr, *eol;
613         int len;
615         ptr = strchr(line, '.');
616         if (!ptr || ptr[1] != '.' || 40 < ptr - line)
617                 return 0;
618         len = ptr - line;
619         memcpy(patch->old_sha1_prefix, line, len);
620         patch->old_sha1_prefix[len] = 0;
622         line = ptr + 2;
623         ptr = strchr(line, ' ');
624         eol = strchr(line, '\n');
626         if (!ptr || eol < ptr)
627                 ptr = eol;
628         len = ptr - line;
630         if (40 < len)
631                 return 0;
632         memcpy(patch->new_sha1_prefix, line, len);
633         patch->new_sha1_prefix[len] = 0;
634         if (*ptr == ' ')
635                 patch->new_mode = patch->old_mode = strtoul(ptr+1, NULL, 8);
636         return 0;
639 /*
640  * This is normal for a diff that doesn't change anything: we'll fall through
641  * into the next diff. Tell the parser to break out.
642  */
643 static int gitdiff_unrecognized(const char *line, struct patch *patch)
645         return -1;
648 static const char *stop_at_slash(const char *line, int llen)
650         int i;
652         for (i = 0; i < llen; i++) {
653                 int ch = line[i];
654                 if (ch == '/')
655                         return line + i;
656         }
657         return NULL;
660 /*
661  * This is to extract the same name that appears on "diff --git"
662  * line.  We do not find and return anything if it is a rename
663  * patch, and it is OK because we will find the name elsewhere.
664  * We need to reliably find name only when it is mode-change only,
665  * creation or deletion of an empty file.  In any of these cases,
666  * both sides are the same name under a/ and b/ respectively.
667  */
668 static char *git_header_name(char *line, int llen)
670         const char *name;
671         const char *second = NULL;
672         size_t len;
674         line += strlen("diff --git ");
675         llen -= strlen("diff --git ");
677         if (*line == '"') {
678                 const char *cp;
679                 struct strbuf first;
680                 struct strbuf sp;
682                 strbuf_init(&first, 0);
683                 strbuf_init(&sp, 0);
685                 if (unquote_c_style(&first, line, &second))
686                         goto free_and_fail1;
688                 /* advance to the first slash */
689                 cp = stop_at_slash(first.buf, first.len);
690                 /* we do not accept absolute paths */
691                 if (!cp || cp == first.buf)
692                         goto free_and_fail1;
693                 strbuf_remove(&first, 0, cp + 1 - first.buf);
695                 /*
696                  * second points at one past closing dq of name.
697                  * find the second name.
698                  */
699                 while ((second < line + llen) && isspace(*second))
700                         second++;
702                 if (line + llen <= second)
703                         goto free_and_fail1;
704                 if (*second == '"') {
705                         if (unquote_c_style(&sp, second, NULL))
706                                 goto free_and_fail1;
707                         cp = stop_at_slash(sp.buf, sp.len);
708                         if (!cp || cp == sp.buf)
709                                 goto free_and_fail1;
710                         /* They must match, otherwise ignore */
711                         if (strcmp(cp + 1, first.buf))
712                                 goto free_and_fail1;
713                         strbuf_release(&sp);
714                         return strbuf_detach(&first, NULL);
715                 }
717                 /* unquoted second */
718                 cp = stop_at_slash(second, line + llen - second);
719                 if (!cp || cp == second)
720                         goto free_and_fail1;
721                 cp++;
722                 if (line + llen - cp != first.len + 1 ||
723                     memcmp(first.buf, cp, first.len))
724                         goto free_and_fail1;
725                 return strbuf_detach(&first, NULL);
727         free_and_fail1:
728                 strbuf_release(&first);
729                 strbuf_release(&sp);
730                 return NULL;
731         }
733         /* unquoted first name */
734         name = stop_at_slash(line, llen);
735         if (!name || name == line)
736                 return NULL;
737         name++;
739         /*
740          * since the first name is unquoted, a dq if exists must be
741          * the beginning of the second name.
742          */
743         for (second = name; second < line + llen; second++) {
744                 if (*second == '"') {
745                         struct strbuf sp;
746                         const char *np;
748                         strbuf_init(&sp, 0);
749                         if (unquote_c_style(&sp, second, NULL))
750                                 goto free_and_fail2;
752                         np = stop_at_slash(sp.buf, sp.len);
753                         if (!np || np == sp.buf)
754                                 goto free_and_fail2;
755                         np++;
757                         len = sp.buf + sp.len - np;
758                         if (len < second - name &&
759                             !strncmp(np, name, len) &&
760                             isspace(name[len])) {
761                                 /* Good */
762                                 strbuf_remove(&sp, 0, np - sp.buf);
763                                 return strbuf_detach(&sp, NULL);
764                         }
766                 free_and_fail2:
767                         strbuf_release(&sp);
768                         return NULL;
769                 }
770         }
772         /*
773          * Accept a name only if it shows up twice, exactly the same
774          * form.
775          */
776         for (len = 0 ; ; len++) {
777                 switch (name[len]) {
778                 default:
779                         continue;
780                 case '\n':
781                         return NULL;
782                 case '\t': case ' ':
783                         second = name+len;
784                         for (;;) {
785                                 char c = *second++;
786                                 if (c == '\n')
787                                         return NULL;
788                                 if (c == '/')
789                                         break;
790                         }
791                         if (second[len] == '\n' && !memcmp(name, second, len)) {
792                                 return xmemdupz(name, len);
793                         }
794                 }
795         }
798 /* Verify that we recognize the lines following a git header */
799 static int parse_git_header(char *line, int len, unsigned int size, struct patch *patch)
801         unsigned long offset;
803         /* A git diff has explicit new/delete information, so we don't guess */
804         patch->is_new = 0;
805         patch->is_delete = 0;
807         /*
808          * Some things may not have the old name in the
809          * rest of the headers anywhere (pure mode changes,
810          * or removing or adding empty files), so we get
811          * the default name from the header.
812          */
813         patch->def_name = git_header_name(line, len);
814         if (patch->def_name && root) {
815                 char *s = xmalloc(root_len + strlen(patch->def_name) + 1);
816                 strcpy(s, root);
817                 strcpy(s + root_len, patch->def_name);
818                 free(patch->def_name);
819                 patch->def_name = s;
820         }
822         line += len;
823         size -= len;
824         linenr++;
825         for (offset = len ; size > 0 ; offset += len, size -= len, line += len, linenr++) {
826                 static const struct opentry {
827                         const char *str;
828                         int (*fn)(const char *, struct patch *);
829                 } optable[] = {
830                         { "@@ -", gitdiff_hdrend },
831                         { "--- ", gitdiff_oldname },
832                         { "+++ ", gitdiff_newname },
833                         { "old mode ", gitdiff_oldmode },
834                         { "new mode ", gitdiff_newmode },
835                         { "deleted file mode ", gitdiff_delete },
836                         { "new file mode ", gitdiff_newfile },
837                         { "copy from ", gitdiff_copysrc },
838                         { "copy to ", gitdiff_copydst },
839                         { "rename old ", gitdiff_renamesrc },
840                         { "rename new ", gitdiff_renamedst },
841                         { "rename from ", gitdiff_renamesrc },
842                         { "rename to ", gitdiff_renamedst },
843                         { "similarity index ", gitdiff_similarity },
844                         { "dissimilarity index ", gitdiff_dissimilarity },
845                         { "index ", gitdiff_index },
846                         { "", gitdiff_unrecognized },
847                 };
848                 int i;
850                 len = linelen(line, size);
851                 if (!len || line[len-1] != '\n')
852                         break;
853                 for (i = 0; i < ARRAY_SIZE(optable); i++) {
854                         const struct opentry *p = optable + i;
855                         int oplen = strlen(p->str);
856                         if (len < oplen || memcmp(p->str, line, oplen))
857                                 continue;
858                         if (p->fn(line + oplen, patch) < 0)
859                                 return offset;
860                         break;
861                 }
862         }
864         return offset;
867 static int parse_num(const char *line, unsigned long *p)
869         char *ptr;
871         if (!isdigit(*line))
872                 return 0;
873         *p = strtoul(line, &ptr, 10);
874         return ptr - line;
877 static int parse_range(const char *line, int len, int offset, const char *expect,
878                        unsigned long *p1, unsigned long *p2)
880         int digits, ex;
882         if (offset < 0 || offset >= len)
883                 return -1;
884         line += offset;
885         len -= offset;
887         digits = parse_num(line, p1);
888         if (!digits)
889                 return -1;
891         offset += digits;
892         line += digits;
893         len -= digits;
895         *p2 = 1;
896         if (*line == ',') {
897                 digits = parse_num(line+1, p2);
898                 if (!digits)
899                         return -1;
901                 offset += digits+1;
902                 line += digits+1;
903                 len -= digits+1;
904         }
906         ex = strlen(expect);
907         if (ex > len)
908                 return -1;
909         if (memcmp(line, expect, ex))
910                 return -1;
912         return offset + ex;
915 static void recount_diff(char *line, int size, struct fragment *fragment)
917         int oldlines = 0, newlines = 0, ret = 0;
919         if (size < 1) {
920                 warning("recount: ignore empty hunk");
921                 return;
922         }
924         for (;;) {
925                 int len = linelen(line, size);
926                 size -= len;
927                 line += len;
929                 if (size < 1)
930                         break;
932                 switch (*line) {
933                 case ' ': case '\n':
934                         newlines++;
935                         /* fall through */
936                 case '-':
937                         oldlines++;
938                         continue;
939                 case '+':
940                         newlines++;
941                         continue;
942                 case '\\':
943                         continue;
944                 case '@':
945                         ret = size < 3 || prefixcmp(line, "@@ ");
946                         break;
947                 case 'd':
948                         ret = size < 5 || prefixcmp(line, "diff ");
949                         break;
950                 default:
951                         ret = -1;
952                         break;
953                 }
954                 if (ret) {
955                         warning("recount: unexpected line: %.*s",
956                                 (int)linelen(line, size), line);
957                         return;
958                 }
959                 break;
960         }
961         fragment->oldlines = oldlines;
962         fragment->newlines = newlines;
965 /*
966  * Parse a unified diff fragment header of the
967  * form "@@ -a,b +c,d @@"
968  */
969 static int parse_fragment_header(char *line, int len, struct fragment *fragment)
971         int offset;
973         if (!len || line[len-1] != '\n')
974                 return -1;
976         /* Figure out the number of lines in a fragment */
977         offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);
978         offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);
980         return offset;
983 static int find_header(char *line, unsigned long size, int *hdrsize, struct patch *patch)
985         unsigned long offset, len;
987         patch->is_toplevel_relative = 0;
988         patch->is_rename = patch->is_copy = 0;
989         patch->is_new = patch->is_delete = -1;
990         patch->old_mode = patch->new_mode = 0;
991         patch->old_name = patch->new_name = NULL;
992         for (offset = 0; size > 0; offset += len, size -= len, line += len, linenr++) {
993                 unsigned long nextlen;
995                 len = linelen(line, size);
996                 if (!len)
997                         break;
999                 /* Testing this early allows us to take a few shortcuts.. */
1000                 if (len < 6)
1001                         continue;
1003                 /*
1004                  * Make sure we don't find any unconnected patch fragments.
1005                  * That's a sign that we didn't find a header, and that a
1006                  * patch has become corrupted/broken up.
1007                  */
1008                 if (!memcmp("@@ -", line, 4)) {
1009                         struct fragment dummy;
1010                         if (parse_fragment_header(line, len, &dummy) < 0)
1011                                 continue;
1012                         die("patch fragment without header at line %d: %.*s",
1013                             linenr, (int)len-1, line);
1014                 }
1016                 if (size < len + 6)
1017                         break;
1019                 /*
1020                  * Git patch? It might not have a real patch, just a rename
1021                  * or mode change, so we handle that specially
1022                  */
1023                 if (!memcmp("diff --git ", line, 11)) {
1024                         int git_hdr_len = parse_git_header(line, len, size, patch);
1025                         if (git_hdr_len <= len)
1026                                 continue;
1027                         if (!patch->old_name && !patch->new_name) {
1028                                 if (!patch->def_name)
1029                                         die("git diff header lacks filename information (line %d)", linenr);
1030                                 patch->old_name = patch->new_name = patch->def_name;
1031                         }
1032                         patch->is_toplevel_relative = 1;
1033                         *hdrsize = git_hdr_len;
1034                         return offset;
1035                 }
1037                 /* --- followed by +++ ? */
1038                 if (memcmp("--- ", line,  4) || memcmp("+++ ", line + len, 4))
1039                         continue;
1041                 /*
1042                  * We only accept unified patches, so we want it to
1043                  * at least have "@@ -a,b +c,d @@\n", which is 14 chars
1044                  * minimum ("@@ -0,0 +1 @@\n" is the shortest).
1045                  */
1046                 nextlen = linelen(line + len, size - len);
1047                 if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4))
1048                         continue;
1050                 /* Ok, we'll consider it a patch */
1051                 parse_traditional_patch(line, line+len, patch);
1052                 *hdrsize = len + nextlen;
1053                 linenr += 2;
1054                 return offset;
1055         }
1056         return -1;
1059 static void record_ws_error(unsigned result, const char *line, int len, int linenr)
1061         char *err;
1063         if (!result)
1064                 return;
1066         whitespace_error++;
1067         if (squelch_whitespace_errors &&
1068             squelch_whitespace_errors < whitespace_error)
1069                 return;
1071         err = whitespace_error_string(result);
1072         fprintf(stderr, "%s:%d: %s.\n%.*s\n",
1073                 patch_input_file, linenr, err, len, line);
1074         free(err);
1077 static void check_whitespace(const char *line, int len, unsigned ws_rule)
1079         unsigned result = ws_check(line + 1, len - 1, ws_rule);
1081         record_ws_error(result, line + 1, len - 2, linenr);
1084 /*
1085  * Parse a unified diff. Note that this really needs to parse each
1086  * fragment separately, since the only way to know the difference
1087  * between a "---" that is part of a patch, and a "---" that starts
1088  * the next patch is to look at the line counts..
1089  */
1090 static int parse_fragment(char *line, unsigned long size,
1091                           struct patch *patch, struct fragment *fragment)
1093         int added, deleted;
1094         int len = linelen(line, size), offset;
1095         unsigned long oldlines, newlines;
1096         unsigned long leading, trailing;
1098         offset = parse_fragment_header(line, len, fragment);
1099         if (offset < 0)
1100                 return -1;
1101         if (offset > 0 && patch->recount)
1102                 recount_diff(line + offset, size - offset, fragment);
1103         oldlines = fragment->oldlines;
1104         newlines = fragment->newlines;
1105         leading = 0;
1106         trailing = 0;
1108         /* Parse the thing.. */
1109         line += len;
1110         size -= len;
1111         linenr++;
1112         added = deleted = 0;
1113         for (offset = len;
1114              0 < size;
1115              offset += len, size -= len, line += len, linenr++) {
1116                 if (!oldlines && !newlines)
1117                         break;
1118                 len = linelen(line, size);
1119                 if (!len || line[len-1] != '\n')
1120                         return -1;
1121                 switch (*line) {
1122                 default:
1123                         return -1;
1124                 case '\n': /* newer GNU diff, an empty context line */
1125                 case ' ':
1126                         oldlines--;
1127                         newlines--;
1128                         if (!deleted && !added)
1129                                 leading++;
1130                         trailing++;
1131                         break;
1132                 case '-':
1133                         if (apply_in_reverse &&
1134                             ws_error_action != nowarn_ws_error)
1135                                 check_whitespace(line, len, patch->ws_rule);
1136                         deleted++;
1137                         oldlines--;
1138                         trailing = 0;
1139                         break;
1140                 case '+':
1141                         if (!apply_in_reverse &&
1142                             ws_error_action != nowarn_ws_error)
1143                                 check_whitespace(line, len, patch->ws_rule);
1144                         added++;
1145                         newlines--;
1146                         trailing = 0;
1147                         break;
1149                 /*
1150                  * We allow "\ No newline at end of file". Depending
1151                  * on locale settings when the patch was produced we
1152                  * don't know what this line looks like. The only
1153                  * thing we do know is that it begins with "\ ".
1154                  * Checking for 12 is just for sanity check -- any
1155                  * l10n of "\ No newline..." is at least that long.
1156                  */
1157                 case '\\':
1158                         if (len < 12 || memcmp(line, "\\ ", 2))
1159                                 return -1;
1160                         break;
1161                 }
1162         }
1163         if (oldlines || newlines)
1164                 return -1;
1165         fragment->leading = leading;
1166         fragment->trailing = trailing;
1168         /*
1169          * If a fragment ends with an incomplete line, we failed to include
1170          * it in the above loop because we hit oldlines == newlines == 0
1171          * before seeing it.
1172          */
1173         if (12 < size && !memcmp(line, "\\ ", 2))
1174                 offset += linelen(line, size);
1176         patch->lines_added += added;
1177         patch->lines_deleted += deleted;
1179         if (0 < patch->is_new && oldlines)
1180                 return error("new file depends on old contents");
1181         if (0 < patch->is_delete && newlines)
1182                 return error("deleted file still has contents");
1183         return offset;
1186 static int parse_single_patch(char *line, unsigned long size, struct patch *patch)
1188         unsigned long offset = 0;
1189         unsigned long oldlines = 0, newlines = 0, context = 0;
1190         struct fragment **fragp = &patch->fragments;
1192         while (size > 4 && !memcmp(line, "@@ -", 4)) {
1193                 struct fragment *fragment;
1194                 int len;
1196                 fragment = xcalloc(1, sizeof(*fragment));
1197                 fragment->linenr = linenr;
1198                 len = parse_fragment(line, size, patch, fragment);
1199                 if (len <= 0)
1200                         die("corrupt patch at line %d", linenr);
1201                 fragment->patch = line;
1202                 fragment->size = len;
1203                 oldlines += fragment->oldlines;
1204                 newlines += fragment->newlines;
1205                 context += fragment->leading + fragment->trailing;
1207                 *fragp = fragment;
1208                 fragp = &fragment->next;
1210                 offset += len;
1211                 line += len;
1212                 size -= len;
1213         }
1215         /*
1216          * If something was removed (i.e. we have old-lines) it cannot
1217          * be creation, and if something was added it cannot be
1218          * deletion.  However, the reverse is not true; --unified=0
1219          * patches that only add are not necessarily creation even
1220          * though they do not have any old lines, and ones that only
1221          * delete are not necessarily deletion.
1222          *
1223          * Unfortunately, a real creation/deletion patch do _not_ have
1224          * any context line by definition, so we cannot safely tell it
1225          * apart with --unified=0 insanity.  At least if the patch has
1226          * more than one hunk it is not creation or deletion.
1227          */
1228         if (patch->is_new < 0 &&
1229             (oldlines || (patch->fragments && patch->fragments->next)))
1230                 patch->is_new = 0;
1231         if (patch->is_delete < 0 &&
1232             (newlines || (patch->fragments && patch->fragments->next)))
1233                 patch->is_delete = 0;
1235         if (0 < patch->is_new && oldlines)
1236                 die("new file %s depends on old contents", patch->new_name);
1237         if (0 < patch->is_delete && newlines)
1238                 die("deleted file %s still has contents", patch->old_name);
1239         if (!patch->is_delete && !newlines && context)
1240                 fprintf(stderr, "** warning: file %s becomes empty but "
1241                         "is not deleted\n", patch->new_name);
1243         return offset;
1246 static inline int metadata_changes(struct patch *patch)
1248         return  patch->is_rename > 0 ||
1249                 patch->is_copy > 0 ||
1250                 patch->is_new > 0 ||
1251                 patch->is_delete ||
1252                 (patch->old_mode && patch->new_mode &&
1253                  patch->old_mode != patch->new_mode);
1256 static char *inflate_it(const void *data, unsigned long size,
1257                         unsigned long inflated_size)
1259         z_stream stream;
1260         void *out;
1261         int st;
1263         memset(&stream, 0, sizeof(stream));
1265         stream.next_in = (unsigned char *)data;
1266         stream.avail_in = size;
1267         stream.next_out = out = xmalloc(inflated_size);
1268         stream.avail_out = inflated_size;
1269         inflateInit(&stream);
1270         st = inflate(&stream, Z_FINISH);
1271         if ((st != Z_STREAM_END) || stream.total_out != inflated_size) {
1272                 free(out);
1273                 return NULL;
1274         }
1275         return out;
1278 static struct fragment *parse_binary_hunk(char **buf_p,
1279                                           unsigned long *sz_p,
1280                                           int *status_p,
1281                                           int *used_p)
1283         /*
1284          * Expect a line that begins with binary patch method ("literal"
1285          * or "delta"), followed by the length of data before deflating.
1286          * a sequence of 'length-byte' followed by base-85 encoded data
1287          * should follow, terminated by a newline.
1288          *
1289          * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1290          * and we would limit the patch line to 66 characters,
1291          * so one line can fit up to 13 groups that would decode
1292          * to 52 bytes max.  The length byte 'A'-'Z' corresponds
1293          * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
1294          */
1295         int llen, used;
1296         unsigned long size = *sz_p;
1297         char *buffer = *buf_p;
1298         int patch_method;
1299         unsigned long origlen;
1300         char *data = NULL;
1301         int hunk_size = 0;
1302         struct fragment *frag;
1304         llen = linelen(buffer, size);
1305         used = llen;
1307         *status_p = 0;
1309         if (!prefixcmp(buffer, "delta ")) {
1310                 patch_method = BINARY_DELTA_DEFLATED;
1311                 origlen = strtoul(buffer + 6, NULL, 10);
1312         }
1313         else if (!prefixcmp(buffer, "literal ")) {
1314                 patch_method = BINARY_LITERAL_DEFLATED;
1315                 origlen = strtoul(buffer + 8, NULL, 10);
1316         }
1317         else
1318                 return NULL;
1320         linenr++;
1321         buffer += llen;
1322         while (1) {
1323                 int byte_length, max_byte_length, newsize;
1324                 llen = linelen(buffer, size);
1325                 used += llen;
1326                 linenr++;
1327                 if (llen == 1) {
1328                         /* consume the blank line */
1329                         buffer++;
1330                         size--;
1331                         break;
1332                 }
1333                 /*
1334                  * Minimum line is "A00000\n" which is 7-byte long,
1335                  * and the line length must be multiple of 5 plus 2.
1336                  */
1337                 if ((llen < 7) || (llen-2) % 5)
1338                         goto corrupt;
1339                 max_byte_length = (llen - 2) / 5 * 4;
1340                 byte_length = *buffer;
1341                 if ('A' <= byte_length && byte_length <= 'Z')
1342                         byte_length = byte_length - 'A' + 1;
1343                 else if ('a' <= byte_length && byte_length <= 'z')
1344                         byte_length = byte_length - 'a' + 27;
1345                 else
1346                         goto corrupt;
1347                 /* if the input length was not multiple of 4, we would
1348                  * have filler at the end but the filler should never
1349                  * exceed 3 bytes
1350                  */
1351                 if (max_byte_length < byte_length ||
1352                     byte_length <= max_byte_length - 4)
1353                         goto corrupt;
1354                 newsize = hunk_size + byte_length;
1355                 data = xrealloc(data, newsize);
1356                 if (decode_85(data + hunk_size, buffer + 1, byte_length))
1357                         goto corrupt;
1358                 hunk_size = newsize;
1359                 buffer += llen;
1360                 size -= llen;
1361         }
1363         frag = xcalloc(1, sizeof(*frag));
1364         frag->patch = inflate_it(data, hunk_size, origlen);
1365         if (!frag->patch)
1366                 goto corrupt;
1367         free(data);
1368         frag->size = origlen;
1369         *buf_p = buffer;
1370         *sz_p = size;
1371         *used_p = used;
1372         frag->binary_patch_method = patch_method;
1373         return frag;
1375  corrupt:
1376         free(data);
1377         *status_p = -1;
1378         error("corrupt binary patch at line %d: %.*s",
1379               linenr-1, llen-1, buffer);
1380         return NULL;
1383 static int parse_binary(char *buffer, unsigned long size, struct patch *patch)
1385         /*
1386          * We have read "GIT binary patch\n"; what follows is a line
1387          * that says the patch method (currently, either "literal" or
1388          * "delta") and the length of data before deflating; a
1389          * sequence of 'length-byte' followed by base-85 encoded data
1390          * follows.
1391          *
1392          * When a binary patch is reversible, there is another binary
1393          * hunk in the same format, starting with patch method (either
1394          * "literal" or "delta") with the length of data, and a sequence
1395          * of length-byte + base-85 encoded data, terminated with another
1396          * empty line.  This data, when applied to the postimage, produces
1397          * the preimage.
1398          */
1399         struct fragment *forward;
1400         struct fragment *reverse;
1401         int status;
1402         int used, used_1;
1404         forward = parse_binary_hunk(&buffer, &size, &status, &used);
1405         if (!forward && !status)
1406                 /* there has to be one hunk (forward hunk) */
1407                 return error("unrecognized binary patch at line %d", linenr-1);
1408         if (status)
1409                 /* otherwise we already gave an error message */
1410                 return status;
1412         reverse = parse_binary_hunk(&buffer, &size, &status, &used_1);
1413         if (reverse)
1414                 used += used_1;
1415         else if (status) {
1416                 /*
1417                  * Not having reverse hunk is not an error, but having
1418                  * a corrupt reverse hunk is.
1419                  */
1420                 free((void*) forward->patch);
1421                 free(forward);
1422                 return status;
1423         }
1424         forward->next = reverse;
1425         patch->fragments = forward;
1426         patch->is_binary = 1;
1427         return used;
1430 static int parse_chunk(char *buffer, unsigned long size, struct patch *patch)
1432         int hdrsize, patchsize;
1433         int offset = find_header(buffer, size, &hdrsize, patch);
1435         if (offset < 0)
1436                 return offset;
1438         patch->ws_rule = whitespace_rule(patch->new_name
1439                                          ? patch->new_name
1440                                          : patch->old_name);
1442         patchsize = parse_single_patch(buffer + offset + hdrsize,
1443                                        size - offset - hdrsize, patch);
1445         if (!patchsize) {
1446                 static const char *binhdr[] = {
1447                         "Binary files ",
1448                         "Files ",
1449                         NULL,
1450                 };
1451                 static const char git_binary[] = "GIT binary patch\n";
1452                 int i;
1453                 int hd = hdrsize + offset;
1454                 unsigned long llen = linelen(buffer + hd, size - hd);
1456                 if (llen == sizeof(git_binary) - 1 &&
1457                     !memcmp(git_binary, buffer + hd, llen)) {
1458                         int used;
1459                         linenr++;
1460                         used = parse_binary(buffer + hd + llen,
1461                                             size - hd - llen, patch);
1462                         if (used)
1463                                 patchsize = used + llen;
1464                         else
1465                                 patchsize = 0;
1466                 }
1467                 else if (!memcmp(" differ\n", buffer + hd + llen - 8, 8)) {
1468                         for (i = 0; binhdr[i]; i++) {
1469                                 int len = strlen(binhdr[i]);
1470                                 if (len < size - hd &&
1471                                     !memcmp(binhdr[i], buffer + hd, len)) {
1472                                         linenr++;
1473                                         patch->is_binary = 1;
1474                                         patchsize = llen;
1475                                         break;
1476                                 }
1477                         }
1478                 }
1480                 /* Empty patch cannot be applied if it is a text patch
1481                  * without metadata change.  A binary patch appears
1482                  * empty to us here.
1483                  */
1484                 if ((apply || check) &&
1485                     (!patch->is_binary && !metadata_changes(patch)))
1486                         die("patch with only garbage at line %d", linenr);
1487         }
1489         return offset + hdrsize + patchsize;
1492 #define swap(a,b) myswap((a),(b),sizeof(a))
1494 #define myswap(a, b, size) do {         \
1495         unsigned char mytmp[size];      \
1496         memcpy(mytmp, &a, size);                \
1497         memcpy(&a, &b, size);           \
1498         memcpy(&b, mytmp, size);                \
1499 } while (0)
1501 static void reverse_patches(struct patch *p)
1503         for (; p; p = p->next) {
1504                 struct fragment *frag = p->fragments;
1506                 swap(p->new_name, p->old_name);
1507                 swap(p->new_mode, p->old_mode);
1508                 swap(p->is_new, p->is_delete);
1509                 swap(p->lines_added, p->lines_deleted);
1510                 swap(p->old_sha1_prefix, p->new_sha1_prefix);
1512                 for (; frag; frag = frag->next) {
1513                         swap(frag->newpos, frag->oldpos);
1514                         swap(frag->newlines, frag->oldlines);
1515                 }
1516         }
1519 static const char pluses[] =
1520 "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
1521 static const char minuses[]=
1522 "----------------------------------------------------------------------";
1524 static void show_stats(struct patch *patch)
1526         struct strbuf qname;
1527         char *cp = patch->new_name ? patch->new_name : patch->old_name;
1528         int max, add, del;
1530         strbuf_init(&qname, 0);
1531         quote_c_style(cp, &qname, NULL, 0);
1533         /*
1534          * "scale" the filename
1535          */
1536         max = max_len;
1537         if (max > 50)
1538                 max = 50;
1540         if (qname.len > max) {
1541                 cp = strchr(qname.buf + qname.len + 3 - max, '/');
1542                 if (!cp)
1543                         cp = qname.buf + qname.len + 3 - max;
1544                 strbuf_splice(&qname, 0, cp - qname.buf, "...", 3);
1545         }
1547         if (patch->is_binary) {
1548                 printf(" %-*s |  Bin\n", max, qname.buf);
1549                 strbuf_release(&qname);
1550                 return;
1551         }
1553         printf(" %-*s |", max, qname.buf);
1554         strbuf_release(&qname);
1556         /*
1557          * scale the add/delete
1558          */
1559         max = max + max_change > 70 ? 70 - max : max_change;
1560         add = patch->lines_added;
1561         del = patch->lines_deleted;
1563         if (max_change > 0) {
1564                 int total = ((add + del) * max + max_change / 2) / max_change;
1565                 add = (add * max + max_change / 2) / max_change;
1566                 del = total - add;
1567         }
1568         printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,
1569                 add, pluses, del, minuses);
1572 static int read_old_data(struct stat *st, const char *path, struct strbuf *buf)
1574         switch (st->st_mode & S_IFMT) {
1575         case S_IFLNK:
1576                 strbuf_grow(buf, st->st_size);
1577                 if (readlink(path, buf->buf, st->st_size) != st->st_size)
1578                         return -1;
1579                 strbuf_setlen(buf, st->st_size);
1580                 return 0;
1581         case S_IFREG:
1582                 if (strbuf_read_file(buf, path, st->st_size) != st->st_size)
1583                         return error("unable to open or read %s", path);
1584                 convert_to_git(path, buf->buf, buf->len, buf, 0);
1585                 return 0;
1586         default:
1587                 return -1;
1588         }
1591 static void update_pre_post_images(struct image *preimage,
1592                                    struct image *postimage,
1593                                    char *buf,
1594                                    size_t len)
1596         int i, ctx;
1597         char *new, *old, *fixed;
1598         struct image fixed_preimage;
1600         /*
1601          * Update the preimage with whitespace fixes.  Note that we
1602          * are not losing preimage->buf -- apply_one_fragment() will
1603          * free "oldlines".
1604          */
1605         prepare_image(&fixed_preimage, buf, len, 1);
1606         assert(fixed_preimage.nr == preimage->nr);
1607         for (i = 0; i < preimage->nr; i++)
1608                 fixed_preimage.line[i].flag = preimage->line[i].flag;
1609         free(preimage->line_allocated);
1610         *preimage = fixed_preimage;
1612         /*
1613          * Adjust the common context lines in postimage, in place.
1614          * This is possible because whitespace fixing does not make
1615          * the string grow.
1616          */
1617         new = old = postimage->buf;
1618         fixed = preimage->buf;
1619         for (i = ctx = 0; i < postimage->nr; i++) {
1620                 size_t len = postimage->line[i].len;
1621                 if (!(postimage->line[i].flag & LINE_COMMON)) {
1622                         /* an added line -- no counterparts in preimage */
1623                         memmove(new, old, len);
1624                         old += len;
1625                         new += len;
1626                         continue;
1627                 }
1629                 /* a common context -- skip it in the original postimage */
1630                 old += len;
1632                 /* and find the corresponding one in the fixed preimage */
1633                 while (ctx < preimage->nr &&
1634                        !(preimage->line[ctx].flag & LINE_COMMON)) {
1635                         fixed += preimage->line[ctx].len;
1636                         ctx++;
1637                 }
1638                 if (preimage->nr <= ctx)
1639                         die("oops");
1641                 /* and copy it in, while fixing the line length */
1642                 len = preimage->line[ctx].len;
1643                 memcpy(new, fixed, len);
1644                 new += len;
1645                 fixed += len;
1646                 postimage->line[i].len = len;
1647                 ctx++;
1648         }
1650         /* Fix the length of the whole thing */
1651         postimage->len = new - postimage->buf;
1654 static int match_fragment(struct image *img,
1655                           struct image *preimage,
1656                           struct image *postimage,
1657                           unsigned long try,
1658                           int try_lno,
1659                           unsigned ws_rule,
1660                           int match_beginning, int match_end)
1662         int i;
1663         char *fixed_buf, *buf, *orig, *target;
1665         if (preimage->nr + try_lno > img->nr)
1666                 return 0;
1668         if (match_beginning && try_lno)
1669                 return 0;
1671         if (match_end && preimage->nr + try_lno != img->nr)
1672                 return 0;
1674         /* Quick hash check */
1675         for (i = 0; i < preimage->nr; i++)
1676                 if (preimage->line[i].hash != img->line[try_lno + i].hash)
1677                         return 0;
1679         /*
1680          * Do we have an exact match?  If we were told to match
1681          * at the end, size must be exactly at try+fragsize,
1682          * otherwise try+fragsize must be still within the preimage,
1683          * and either case, the old piece should match the preimage
1684          * exactly.
1685          */
1686         if ((match_end
1687              ? (try + preimage->len == img->len)
1688              : (try + preimage->len <= img->len)) &&
1689             !memcmp(img->buf + try, preimage->buf, preimage->len))
1690                 return 1;
1692         if (ws_error_action != correct_ws_error)
1693                 return 0;
1695         /*
1696          * The hunk does not apply byte-by-byte, but the hash says
1697          * it might with whitespace fuzz.
1698          */
1699         fixed_buf = xmalloc(preimage->len + 1);
1700         buf = fixed_buf;
1701         orig = preimage->buf;
1702         target = img->buf + try;
1703         for (i = 0; i < preimage->nr; i++) {
1704                 size_t fixlen; /* length after fixing the preimage */
1705                 size_t oldlen = preimage->line[i].len;
1706                 size_t tgtlen = img->line[try_lno + i].len;
1707                 size_t tgtfixlen; /* length after fixing the target line */
1708                 char tgtfixbuf[1024], *tgtfix;
1709                 int match;
1711                 /* Try fixing the line in the preimage */
1712                 fixlen = ws_fix_copy(buf, orig, oldlen, ws_rule, NULL);
1714                 /* Try fixing the line in the target */
1715                 if (sizeof(tgtfixbuf) > tgtlen)
1716                         tgtfix = tgtfixbuf;
1717                 else
1718                         tgtfix = xmalloc(tgtlen);
1719                 tgtfixlen = ws_fix_copy(tgtfix, target, tgtlen, ws_rule, NULL);
1721                 /*
1722                  * If they match, either the preimage was based on
1723                  * a version before our tree fixed whitespace breakage,
1724                  * or we are lacking a whitespace-fix patch the tree
1725                  * the preimage was based on already had (i.e. target
1726                  * has whitespace breakage, the preimage doesn't).
1727                  * In either case, we are fixing the whitespace breakages
1728                  * so we might as well take the fix together with their
1729                  * real change.
1730                  */
1731                 match = (tgtfixlen == fixlen && !memcmp(tgtfix, buf, fixlen));
1733                 if (tgtfix != tgtfixbuf)
1734                         free(tgtfix);
1735                 if (!match)
1736                         goto unmatch_exit;
1738                 orig += oldlen;
1739                 buf += fixlen;
1740                 target += tgtlen;
1741         }
1743         /*
1744          * Yes, the preimage is based on an older version that still
1745          * has whitespace breakages unfixed, and fixing them makes the
1746          * hunk match.  Update the context lines in the postimage.
1747          */
1748         update_pre_post_images(preimage, postimage,
1749                                fixed_buf, buf - fixed_buf);
1750         return 1;
1752  unmatch_exit:
1753         free(fixed_buf);
1754         return 0;
1757 static int find_pos(struct image *img,
1758                     struct image *preimage,
1759                     struct image *postimage,
1760                     int line,
1761                     unsigned ws_rule,
1762                     int match_beginning, int match_end)
1764         int i;
1765         unsigned long backwards, forwards, try;
1766         int backwards_lno, forwards_lno, try_lno;
1768         if (preimage->nr > img->nr)
1769                 return -1;
1771         /*
1772          * If match_begining or match_end is specified, there is no
1773          * point starting from a wrong line that will never match and
1774          * wander around and wait for a match at the specified end.
1775          */
1776         if (match_beginning)
1777                 line = 0;
1778         else if (match_end)
1779                 line = img->nr - preimage->nr;
1781         if (line > img->nr)
1782                 line = img->nr;
1784         try = 0;
1785         for (i = 0; i < line; i++)
1786                 try += img->line[i].len;
1788         /*
1789          * There's probably some smart way to do this, but I'll leave
1790          * that to the smart and beautiful people. I'm simple and stupid.
1791          */
1792         backwards = try;
1793         backwards_lno = line;
1794         forwards = try;
1795         forwards_lno = line;
1796         try_lno = line;
1798         for (i = 0; ; i++) {
1799                 if (match_fragment(img, preimage, postimage,
1800                                    try, try_lno, ws_rule,
1801                                    match_beginning, match_end))
1802                         return try_lno;
1804         again:
1805                 if (backwards_lno == 0 && forwards_lno == img->nr)
1806                         break;
1808                 if (i & 1) {
1809                         if (backwards_lno == 0) {
1810                                 i++;
1811                                 goto again;
1812                         }
1813                         backwards_lno--;
1814                         backwards -= img->line[backwards_lno].len;
1815                         try = backwards;
1816                         try_lno = backwards_lno;
1817                 } else {
1818                         if (forwards_lno == img->nr) {
1819                                 i++;
1820                                 goto again;
1821                         }
1822                         forwards += img->line[forwards_lno].len;
1823                         forwards_lno++;
1824                         try = forwards;
1825                         try_lno = forwards_lno;
1826                 }
1828         }
1829         return -1;
1832 static void remove_first_line(struct image *img)
1834         img->buf += img->line[0].len;
1835         img->len -= img->line[0].len;
1836         img->line++;
1837         img->nr--;
1840 static void remove_last_line(struct image *img)
1842         img->len -= img->line[--img->nr].len;
1845 static void update_image(struct image *img,
1846                          int applied_pos,
1847                          struct image *preimage,
1848                          struct image *postimage)
1850         /*
1851          * remove the copy of preimage at offset in img
1852          * and replace it with postimage
1853          */
1854         int i, nr;
1855         size_t remove_count, insert_count, applied_at = 0;
1856         char *result;
1858         for (i = 0; i < applied_pos; i++)
1859                 applied_at += img->line[i].len;
1861         remove_count = 0;
1862         for (i = 0; i < preimage->nr; i++)
1863                 remove_count += img->line[applied_pos + i].len;
1864         insert_count = postimage->len;
1866         /* Adjust the contents */
1867         result = xmalloc(img->len + insert_count - remove_count + 1);
1868         memcpy(result, img->buf, applied_at);
1869         memcpy(result + applied_at, postimage->buf, postimage->len);
1870         memcpy(result + applied_at + postimage->len,
1871                img->buf + (applied_at + remove_count),
1872                img->len - (applied_at + remove_count));
1873         free(img->buf);
1874         img->buf = result;
1875         img->len += insert_count - remove_count;
1876         result[img->len] = '\0';
1878         /* Adjust the line table */
1879         nr = img->nr + postimage->nr - preimage->nr;
1880         if (preimage->nr < postimage->nr) {
1881                 /*
1882                  * NOTE: this knows that we never call remove_first_line()
1883                  * on anything other than pre/post image.
1884                  */
1885                 img->line = xrealloc(img->line, nr * sizeof(*img->line));
1886                 img->line_allocated = img->line;
1887         }
1888         if (preimage->nr != postimage->nr)
1889                 memmove(img->line + applied_pos + postimage->nr,
1890                         img->line + applied_pos + preimage->nr,
1891                         (img->nr - (applied_pos + preimage->nr)) *
1892                         sizeof(*img->line));
1893         memcpy(img->line + applied_pos,
1894                postimage->line,
1895                postimage->nr * sizeof(*img->line));
1896         img->nr = nr;
1899 static int apply_one_fragment(struct image *img, struct fragment *frag,
1900                               int inaccurate_eof, unsigned ws_rule)
1902         int match_beginning, match_end;
1903         const char *patch = frag->patch;
1904         int size = frag->size;
1905         char *old, *new, *oldlines, *newlines;
1906         int new_blank_lines_at_end = 0;
1907         unsigned long leading, trailing;
1908         int pos, applied_pos;
1909         struct image preimage;
1910         struct image postimage;
1912         memset(&preimage, 0, sizeof(preimage));
1913         memset(&postimage, 0, sizeof(postimage));
1914         oldlines = xmalloc(size);
1915         newlines = xmalloc(size);
1917         old = oldlines;
1918         new = newlines;
1919         while (size > 0) {
1920                 char first;
1921                 int len = linelen(patch, size);
1922                 int plen, added;
1923                 int added_blank_line = 0;
1924                 int is_blank_context = 0;
1926                 if (!len)
1927                         break;
1929                 /*
1930                  * "plen" is how much of the line we should use for
1931                  * the actual patch data. Normally we just remove the
1932                  * first character on the line, but if the line is
1933                  * followed by "\ No newline", then we also remove the
1934                  * last one (which is the newline, of course).
1935                  */
1936                 plen = len - 1;
1937                 if (len < size && patch[len] == '\\')
1938                         plen--;
1939                 first = *patch;
1940                 if (apply_in_reverse) {
1941                         if (first == '-')
1942                                 first = '+';
1943                         else if (first == '+')
1944                                 first = '-';
1945                 }
1947                 switch (first) {
1948                 case '\n':
1949                         /* Newer GNU diff, empty context line */
1950                         if (plen < 0)
1951                                 /* ... followed by '\No newline'; nothing */
1952                                 break;
1953                         *old++ = '\n';
1954                         *new++ = '\n';
1955                         add_line_info(&preimage, "\n", 1, LINE_COMMON);
1956                         add_line_info(&postimage, "\n", 1, LINE_COMMON);
1957                         is_blank_context = 1;
1958                         break;
1959                 case ' ':
1960                         if (plen && patch[1] == '\n')
1961                                 is_blank_context = 1;
1962                 case '-':
1963                         memcpy(old, patch + 1, plen);
1964                         add_line_info(&preimage, old, plen,
1965                                       (first == ' ' ? LINE_COMMON : 0));
1966                         old += plen;
1967                         if (first == '-')
1968                                 break;
1969                 /* Fall-through for ' ' */
1970                 case '+':
1971                         /* --no-add does not add new lines */
1972                         if (first == '+' && no_add)
1973                                 break;
1975                         if (first != '+' ||
1976                             !whitespace_error ||
1977                             ws_error_action != correct_ws_error) {
1978                                 memcpy(new, patch + 1, plen);
1979                                 added = plen;
1980                         }
1981                         else {
1982                                 added = ws_fix_copy(new, patch + 1, plen, ws_rule, &applied_after_fixing_ws);
1983                         }
1984                         add_line_info(&postimage, new, added,
1985                                       (first == '+' ? 0 : LINE_COMMON));
1986                         new += added;
1987                         if (first == '+' &&
1988                             added == 1 && new[-1] == '\n')
1989                                 added_blank_line = 1;
1990                         break;
1991                 case '@': case '\\':
1992                         /* Ignore it, we already handled it */
1993                         break;
1994                 default:
1995                         if (apply_verbosely)
1996                                 error("invalid start of line: '%c'", first);
1997                         return -1;
1998                 }
1999                 if (added_blank_line)
2000                         new_blank_lines_at_end++;
2001                 else if (is_blank_context)
2002                         ;
2003                 else
2004                         new_blank_lines_at_end = 0;
2005                 patch += len;
2006                 size -= len;
2007         }
2008         if (inaccurate_eof &&
2009             old > oldlines && old[-1] == '\n' &&
2010             new > newlines && new[-1] == '\n') {
2011                 old--;
2012                 new--;
2013         }
2015         leading = frag->leading;
2016         trailing = frag->trailing;
2018         /*
2019          * A hunk to change lines at the beginning would begin with
2020          * @@ -1,L +N,M @@
2021          * but we need to be careful.  -U0 that inserts before the second
2022          * line also has this pattern.
2023          *
2024          * And a hunk to add to an empty file would begin with
2025          * @@ -0,0 +N,M @@
2026          *
2027          * In other words, a hunk that is (frag->oldpos <= 1) with or
2028          * without leading context must match at the beginning.
2029          */
2030         match_beginning = (!frag->oldpos ||
2031                            (frag->oldpos == 1 && !unidiff_zero));
2033         /*
2034          * A hunk without trailing lines must match at the end.
2035          * However, we simply cannot tell if a hunk must match end
2036          * from the lack of trailing lines if the patch was generated
2037          * with unidiff without any context.
2038          */
2039         match_end = !unidiff_zero && !trailing;
2041         pos = frag->newpos ? (frag->newpos - 1) : 0;
2042         preimage.buf = oldlines;
2043         preimage.len = old - oldlines;
2044         postimage.buf = newlines;
2045         postimage.len = new - newlines;
2046         preimage.line = preimage.line_allocated;
2047         postimage.line = postimage.line_allocated;
2049         for (;;) {
2051                 applied_pos = find_pos(img, &preimage, &postimage, pos,
2052                                        ws_rule, match_beginning, match_end);
2054                 if (applied_pos >= 0)
2055                         break;
2057                 /* Am I at my context limits? */
2058                 if ((leading <= p_context) && (trailing <= p_context))
2059                         break;
2060                 if (match_beginning || match_end) {
2061                         match_beginning = match_end = 0;
2062                         continue;
2063                 }
2065                 /*
2066                  * Reduce the number of context lines; reduce both
2067                  * leading and trailing if they are equal otherwise
2068                  * just reduce the larger context.
2069                  */
2070                 if (leading >= trailing) {
2071                         remove_first_line(&preimage);
2072                         remove_first_line(&postimage);
2073                         pos--;
2074                         leading--;
2075                 }
2076                 if (trailing > leading) {
2077                         remove_last_line(&preimage);
2078                         remove_last_line(&postimage);
2079                         trailing--;
2080                 }
2081         }
2083         if (applied_pos >= 0) {
2084                 if (new_blank_lines_at_end &&
2085                     preimage.nr + applied_pos == img->nr &&
2086                     (ws_rule & WS_BLANK_AT_EOF) &&
2087                     ws_error_action != nowarn_ws_error) {
2088                         record_ws_error(WS_BLANK_AT_EOF, "+", 1, frag->linenr);
2089                         if (ws_error_action == correct_ws_error) {
2090                                 while (new_blank_lines_at_end--)
2091                                         remove_last_line(&postimage);
2092                         }
2093                         /*
2094                          * We would want to prevent write_out_results()
2095                          * from taking place in apply_patch() that follows
2096                          * the callchain led us here, which is:
2097                          * apply_patch->check_patch_list->check_patch->
2098                          * apply_data->apply_fragments->apply_one_fragment
2099                          */
2100                         if (ws_error_action == die_on_ws_error)
2101                                 apply = 0;
2102                 }
2104                 /*
2105                  * Warn if it was necessary to reduce the number
2106                  * of context lines.
2107                  */
2108                 if ((leading != frag->leading) ||
2109                     (trailing != frag->trailing))
2110                         fprintf(stderr, "Context reduced to (%ld/%ld)"
2111                                 " to apply fragment at %d\n",
2112                                 leading, trailing, applied_pos+1);
2113                 update_image(img, applied_pos, &preimage, &postimage);
2114         } else {
2115                 if (apply_verbosely)
2116                         error("while searching for:\n%.*s",
2117                               (int)(old - oldlines), oldlines);
2118         }
2120         free(oldlines);
2121         free(newlines);
2122         free(preimage.line_allocated);
2123         free(postimage.line_allocated);
2125         return (applied_pos < 0);
2128 static int apply_binary_fragment(struct image *img, struct patch *patch)
2130         struct fragment *fragment = patch->fragments;
2131         unsigned long len;
2132         void *dst;
2134         /* Binary patch is irreversible without the optional second hunk */
2135         if (apply_in_reverse) {
2136                 if (!fragment->next)
2137                         return error("cannot reverse-apply a binary patch "
2138                                      "without the reverse hunk to '%s'",
2139                                      patch->new_name
2140                                      ? patch->new_name : patch->old_name);
2141                 fragment = fragment->next;
2142         }
2143         switch (fragment->binary_patch_method) {
2144         case BINARY_DELTA_DEFLATED:
2145                 dst = patch_delta(img->buf, img->len, fragment->patch,
2146                                   fragment->size, &len);
2147                 if (!dst)
2148                         return -1;
2149                 clear_image(img);
2150                 img->buf = dst;
2151                 img->len = len;
2152                 return 0;
2153         case BINARY_LITERAL_DEFLATED:
2154                 clear_image(img);
2155                 img->len = fragment->size;
2156                 img->buf = xmalloc(img->len+1);
2157                 memcpy(img->buf, fragment->patch, img->len);
2158                 img->buf[img->len] = '\0';
2159                 return 0;
2160         }
2161         return -1;
2164 static int apply_binary(struct image *img, struct patch *patch)
2166         const char *name = patch->old_name ? patch->old_name : patch->new_name;
2167         unsigned char sha1[20];
2169         /*
2170          * For safety, we require patch index line to contain
2171          * full 40-byte textual SHA1 for old and new, at least for now.
2172          */
2173         if (strlen(patch->old_sha1_prefix) != 40 ||
2174             strlen(patch->new_sha1_prefix) != 40 ||
2175             get_sha1_hex(patch->old_sha1_prefix, sha1) ||
2176             get_sha1_hex(patch->new_sha1_prefix, sha1))
2177                 return error("cannot apply binary patch to '%s' "
2178                              "without full index line", name);
2180         if (patch->old_name) {
2181                 /*
2182                  * See if the old one matches what the patch
2183                  * applies to.
2184                  */
2185                 hash_sha1_file(img->buf, img->len, blob_type, sha1);
2186                 if (strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))
2187                         return error("the patch applies to '%s' (%s), "
2188                                      "which does not match the "
2189                                      "current contents.",
2190                                      name, sha1_to_hex(sha1));
2191         }
2192         else {
2193                 /* Otherwise, the old one must be empty. */
2194                 if (img->len)
2195                         return error("the patch applies to an empty "
2196                                      "'%s' but it is not empty", name);
2197         }
2199         get_sha1_hex(patch->new_sha1_prefix, sha1);
2200         if (is_null_sha1(sha1)) {
2201                 clear_image(img);
2202                 return 0; /* deletion patch */
2203         }
2205         if (has_sha1_file(sha1)) {
2206                 /* We already have the postimage */
2207                 enum object_type type;
2208                 unsigned long size;
2209                 char *result;
2211                 result = read_sha1_file(sha1, &type, &size);
2212                 if (!result)
2213                         return error("the necessary postimage %s for "
2214                                      "'%s' cannot be read",
2215                                      patch->new_sha1_prefix, name);
2216                 clear_image(img);
2217                 img->buf = result;
2218                 img->len = size;
2219         } else {
2220                 /*
2221                  * We have verified buf matches the preimage;
2222                  * apply the patch data to it, which is stored
2223                  * in the patch->fragments->{patch,size}.
2224                  */
2225                 if (apply_binary_fragment(img, patch))
2226                         return error("binary patch does not apply to '%s'",
2227                                      name);
2229                 /* verify that the result matches */
2230                 hash_sha1_file(img->buf, img->len, blob_type, sha1);
2231                 if (strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))
2232                         return error("binary patch to '%s' creates incorrect result (expecting %s, got %s)",
2233                                 name, patch->new_sha1_prefix, sha1_to_hex(sha1));
2234         }
2236         return 0;
2239 static int apply_fragments(struct image *img, struct patch *patch)
2241         struct fragment *frag = patch->fragments;
2242         const char *name = patch->old_name ? patch->old_name : patch->new_name;
2243         unsigned ws_rule = patch->ws_rule;
2244         unsigned inaccurate_eof = patch->inaccurate_eof;
2246         if (patch->is_binary)
2247                 return apply_binary(img, patch);
2249         while (frag) {
2250                 if (apply_one_fragment(img, frag, inaccurate_eof, ws_rule)) {
2251                         error("patch failed: %s:%ld", name, frag->oldpos);
2252                         if (!apply_with_reject)
2253                                 return -1;
2254                         frag->rejected = 1;
2255                 }
2256                 frag = frag->next;
2257         }
2258         return 0;
2261 static int read_file_or_gitlink(struct cache_entry *ce, struct strbuf *buf)
2263         if (!ce)
2264                 return 0;
2266         if (S_ISGITLINK(ce->ce_mode)) {
2267                 strbuf_grow(buf, 100);
2268                 strbuf_addf(buf, "Subproject commit %s\n", sha1_to_hex(ce->sha1));
2269         } else {
2270                 enum object_type type;
2271                 unsigned long sz;
2272                 char *result;
2274                 result = read_sha1_file(ce->sha1, &type, &sz);
2275                 if (!result)
2276                         return -1;
2277                 /* XXX read_sha1_file NUL-terminates */
2278                 strbuf_attach(buf, result, sz, sz + 1);
2279         }
2280         return 0;
2283 static struct patch *in_fn_table(const char *name)
2285         struct string_list_item *item;
2287         if (name == NULL)
2288                 return NULL;
2290         item = string_list_lookup(name, &fn_table);
2291         if (item != NULL)
2292                 return (struct patch *)item->util;
2294         return NULL;
2297 static void add_to_fn_table(struct patch *patch)
2299         struct string_list_item *item;
2301         /*
2302          * Always add new_name unless patch is a deletion
2303          * This should cover the cases for normal diffs,
2304          * file creations and copies
2305          */
2306         if (patch->new_name != NULL) {
2307                 item = string_list_insert(patch->new_name, &fn_table);
2308                 item->util = patch;
2309         }
2311         /*
2312          * store a failure on rename/deletion cases because
2313          * later chunks shouldn't patch old names
2314          */
2315         if ((patch->new_name == NULL) || (patch->is_rename)) {
2316                 item = string_list_insert(patch->old_name, &fn_table);
2317                 item->util = (struct patch *) -1;
2318         }
2321 static int apply_data(struct patch *patch, struct stat *st, struct cache_entry *ce)
2323         struct strbuf buf;
2324         struct image image;
2325         size_t len;
2326         char *img;
2327         struct patch *tpatch;
2329         strbuf_init(&buf, 0);
2331         if (!(patch->is_copy || patch->is_rename) &&
2332             ((tpatch = in_fn_table(patch->old_name)) != NULL)) {
2333                 if (tpatch == (struct patch *) -1) {
2334                         return error("patch %s has been renamed/deleted",
2335                                 patch->old_name);
2336                 }
2337                 /* We have a patched copy in memory use that */
2338                 strbuf_add(&buf, tpatch->result, tpatch->resultsize);
2339         } else if (cached) {
2340                 if (read_file_or_gitlink(ce, &buf))
2341                         return error("read of %s failed", patch->old_name);
2342         } else if (patch->old_name) {
2343                 if (S_ISGITLINK(patch->old_mode)) {
2344                         if (ce) {
2345                                 read_file_or_gitlink(ce, &buf);
2346                         } else {
2347                                 /*
2348                                  * There is no way to apply subproject
2349                                  * patch without looking at the index.
2350                                  */
2351                                 patch->fragments = NULL;
2352                         }
2353                 } else {
2354                         if (read_old_data(st, patch->old_name, &buf))
2355                                 return error("read of %s failed", patch->old_name);
2356                 }
2357         }
2359         img = strbuf_detach(&buf, &len);
2360         prepare_image(&image, img, len, !patch->is_binary);
2362         if (apply_fragments(&image, patch) < 0)
2363                 return -1; /* note with --reject this succeeds. */
2364         patch->result = image.buf;
2365         patch->resultsize = image.len;
2366         add_to_fn_table(patch);
2367         free(image.line_allocated);
2369         if (0 < patch->is_delete && patch->resultsize)
2370                 return error("removal patch leaves file contents");
2372         return 0;
2375 static int check_to_create_blob(const char *new_name, int ok_if_exists)
2377         struct stat nst;
2378         if (!lstat(new_name, &nst)) {
2379                 if (S_ISDIR(nst.st_mode) || ok_if_exists)
2380                         return 0;
2381                 /*
2382                  * A leading component of new_name might be a symlink
2383                  * that is going to be removed with this patch, but
2384                  * still pointing at somewhere that has the path.
2385                  * In such a case, path "new_name" does not exist as
2386                  * far as git is concerned.
2387                  */
2388                 if (has_symlink_leading_path(strlen(new_name), new_name))
2389                         return 0;
2391                 return error("%s: already exists in working directory", new_name);
2392         }
2393         else if ((errno != ENOENT) && (errno != ENOTDIR))
2394                 return error("%s: %s", new_name, strerror(errno));
2395         return 0;
2398 static int verify_index_match(struct cache_entry *ce, struct stat *st)
2400         if (S_ISGITLINK(ce->ce_mode)) {
2401                 if (!S_ISDIR(st->st_mode))
2402                         return -1;
2403                 return 0;
2404         }
2405         return ce_match_stat(ce, st, CE_MATCH_IGNORE_VALID);
2408 static int check_preimage(struct patch *patch, struct cache_entry **ce, struct stat *st)
2410         const char *old_name = patch->old_name;
2411         struct patch *tpatch = NULL;
2412         int stat_ret = 0;
2413         unsigned st_mode = 0;
2415         /*
2416          * Make sure that we do not have local modifications from the
2417          * index when we are looking at the index.  Also make sure
2418          * we have the preimage file to be patched in the work tree,
2419          * unless --cached, which tells git to apply only in the index.
2420          */
2421         if (!old_name)
2422                 return 0;
2424         assert(patch->is_new <= 0);
2426         if (!(patch->is_copy || patch->is_rename) &&
2427             (tpatch = in_fn_table(old_name)) != NULL) {
2428                 if (tpatch == (struct patch *) -1) {
2429                         return error("%s: has been deleted/renamed", old_name);
2430                 }
2431                 st_mode = tpatch->new_mode;
2432         } else if (!cached) {
2433                 stat_ret = lstat(old_name, st);
2434                 if (stat_ret && errno != ENOENT)
2435                         return error("%s: %s", old_name, strerror(errno));
2436         }
2438         if (check_index && !tpatch) {
2439                 int pos = cache_name_pos(old_name, strlen(old_name));
2440                 if (pos < 0) {
2441                         if (patch->is_new < 0)
2442                                 goto is_new;
2443                         return error("%s: does not exist in index", old_name);
2444                 }
2445                 *ce = active_cache[pos];
2446                 if (stat_ret < 0) {
2447                         struct checkout costate;
2448                         /* checkout */
2449                         costate.base_dir = "";
2450                         costate.base_dir_len = 0;
2451                         costate.force = 0;
2452                         costate.quiet = 0;
2453                         costate.not_new = 0;
2454                         costate.refresh_cache = 1;
2455                         if (checkout_entry(*ce, &costate, NULL) ||
2456                             lstat(old_name, st))
2457                                 return -1;
2458                 }
2459                 if (!cached && verify_index_match(*ce, st))
2460                         return error("%s: does not match index", old_name);
2461                 if (cached)
2462                         st_mode = (*ce)->ce_mode;
2463         } else if (stat_ret < 0) {
2464                 if (patch->is_new < 0)
2465                         goto is_new;
2466                 return error("%s: %s", old_name, strerror(errno));
2467         }
2469         if (!cached && !tpatch)
2470                 st_mode = ce_mode_from_stat(*ce, st->st_mode);
2472         if (patch->is_new < 0)
2473                 patch->is_new = 0;
2474         if (!patch->old_mode)
2475                 patch->old_mode = st_mode;
2476         if ((st_mode ^ patch->old_mode) & S_IFMT)
2477                 return error("%s: wrong type", old_name);
2478         if (st_mode != patch->old_mode)
2479                 fprintf(stderr, "warning: %s has type %o, expected %o\n",
2480                         old_name, st_mode, patch->old_mode);
2481         return 0;
2483  is_new:
2484         patch->is_new = 1;
2485         patch->is_delete = 0;
2486         patch->old_name = NULL;
2487         return 0;
2490 static int check_patch(struct patch *patch)
2492         struct stat st;
2493         const char *old_name = patch->old_name;
2494         const char *new_name = patch->new_name;
2495         const char *name = old_name ? old_name : new_name;
2496         struct cache_entry *ce = NULL;
2497         int ok_if_exists;
2498         int status;
2500         patch->rejected = 1; /* we will drop this after we succeed */
2502         status = check_preimage(patch, &ce, &st);
2503         if (status)
2504                 return status;
2505         old_name = patch->old_name;
2507         if (in_fn_table(new_name) == (struct patch *) -1)
2508                 /*
2509                  * A type-change diff is always split into a patch to
2510                  * delete old, immediately followed by a patch to
2511                  * create new (see diff.c::run_diff()); in such a case
2512                  * it is Ok that the entry to be deleted by the
2513                  * previous patch is still in the working tree and in
2514                  * the index.
2515                  */
2516                 ok_if_exists = 1;
2517         else
2518                 ok_if_exists = 0;
2520         if (new_name &&
2521             ((0 < patch->is_new) | (0 < patch->is_rename) | patch->is_copy)) {
2522                 if (check_index &&
2523                     cache_name_pos(new_name, strlen(new_name)) >= 0 &&
2524                     !ok_if_exists)
2525                         return error("%s: already exists in index", new_name);
2526                 if (!cached) {
2527                         int err = check_to_create_blob(new_name, ok_if_exists);
2528                         if (err)
2529                                 return err;
2530                 }
2531                 if (!patch->new_mode) {
2532                         if (0 < patch->is_new)
2533                                 patch->new_mode = S_IFREG | 0644;
2534                         else
2535                                 patch->new_mode = patch->old_mode;
2536                 }
2537         }
2539         if (new_name && old_name) {
2540                 int same = !strcmp(old_name, new_name);
2541                 if (!patch->new_mode)
2542                         patch->new_mode = patch->old_mode;
2543                 if ((patch->old_mode ^ patch->new_mode) & S_IFMT)
2544                         return error("new mode (%o) of %s does not match old mode (%o)%s%s",
2545                                 patch->new_mode, new_name, patch->old_mode,
2546                                 same ? "" : " of ", same ? "" : old_name);
2547         }
2549         if (apply_data(patch, &st, ce) < 0)
2550                 return error("%s: patch does not apply", name);
2551         patch->rejected = 0;
2552         return 0;
2555 static int check_patch_list(struct patch *patch)
2557         int err = 0;
2559         while (patch) {
2560                 if (apply_verbosely)
2561                         say_patch_name(stderr,
2562                                        "Checking patch ", patch, "...\n");
2563                 err |= check_patch(patch);
2564                 patch = patch->next;
2565         }
2566         return err;
2569 /* This function tries to read the sha1 from the current index */
2570 static int get_current_sha1(const char *path, unsigned char *sha1)
2572         int pos;
2574         if (read_cache() < 0)
2575                 return -1;
2576         pos = cache_name_pos(path, strlen(path));
2577         if (pos < 0)
2578                 return -1;
2579         hashcpy(sha1, active_cache[pos]->sha1);
2580         return 0;
2583 /* Build an index that contains the just the files needed for a 3way merge */
2584 static void build_fake_ancestor(struct patch *list, const char *filename)
2586         struct patch *patch;
2587         struct index_state result = { 0 };
2588         int fd;
2590         /* Once we start supporting the reverse patch, it may be
2591          * worth showing the new sha1 prefix, but until then...
2592          */
2593         for (patch = list; patch; patch = patch->next) {
2594                 const unsigned char *sha1_ptr;
2595                 unsigned char sha1[20];
2596                 struct cache_entry *ce;
2597                 const char *name;
2599                 name = patch->old_name ? patch->old_name : patch->new_name;
2600                 if (0 < patch->is_new)
2601                         continue;
2602                 else if (get_sha1(patch->old_sha1_prefix, sha1))
2603                         /* git diff has no index line for mode/type changes */
2604                         if (!patch->lines_added && !patch->lines_deleted) {
2605                                 if (get_current_sha1(patch->new_name, sha1) ||
2606                                     get_current_sha1(patch->old_name, sha1))
2607                                         die("mode change for %s, which is not "
2608                                                 "in current HEAD", name);
2609                                 sha1_ptr = sha1;
2610                         } else
2611                                 die("sha1 information is lacking or useless "
2612                                         "(%s).", name);
2613                 else
2614                         sha1_ptr = sha1;
2616                 ce = make_cache_entry(patch->old_mode, sha1_ptr, name, 0, 0);
2617                 if (!ce)
2618                         die("make_cache_entry failed for path '%s'", name);
2619                 if (add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD))
2620                         die ("Could not add %s to temporary index", name);
2621         }
2623         fd = open(filename, O_WRONLY | O_CREAT, 0666);
2624         if (fd < 0 || write_index(&result, fd) || close(fd))
2625                 die ("Could not write temporary index to %s", filename);
2627         discard_index(&result);
2630 static void stat_patch_list(struct patch *patch)
2632         int files, adds, dels;
2634         for (files = adds = dels = 0 ; patch ; patch = patch->next) {
2635                 files++;
2636                 adds += patch->lines_added;
2637                 dels += patch->lines_deleted;
2638                 show_stats(patch);
2639         }
2641         printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels);
2644 static void numstat_patch_list(struct patch *patch)
2646         for ( ; patch; patch = patch->next) {
2647                 const char *name;
2648                 name = patch->new_name ? patch->new_name : patch->old_name;
2649                 if (patch->is_binary)
2650                         printf("-\t-\t");
2651                 else
2652                         printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);
2653                 write_name_quoted(name, stdout, line_termination);
2654         }
2657 static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
2659         if (mode)
2660                 printf(" %s mode %06o %s\n", newdelete, mode, name);
2661         else
2662                 printf(" %s %s\n", newdelete, name);
2665 static void show_mode_change(struct patch *p, int show_name)
2667         if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
2668                 if (show_name)
2669                         printf(" mode change %06o => %06o %s\n",
2670                                p->old_mode, p->new_mode, p->new_name);
2671                 else
2672                         printf(" mode change %06o => %06o\n",
2673                                p->old_mode, p->new_mode);
2674         }
2677 static void show_rename_copy(struct patch *p)
2679         const char *renamecopy = p->is_rename ? "rename" : "copy";
2680         const char *old, *new;
2682         /* Find common prefix */
2683         old = p->old_name;
2684         new = p->new_name;
2685         while (1) {
2686                 const char *slash_old, *slash_new;
2687                 slash_old = strchr(old, '/');
2688                 slash_new = strchr(new, '/');
2689                 if (!slash_old ||
2690                     !slash_new ||
2691                     slash_old - old != slash_new - new ||
2692                     memcmp(old, new, slash_new - new))
2693                         break;
2694                 old = slash_old + 1;
2695                 new = slash_new + 1;
2696         }
2697         /* p->old_name thru old is the common prefix, and old and new
2698          * through the end of names are renames
2699          */
2700         if (old != p->old_name)
2701                 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
2702                        (int)(old - p->old_name), p->old_name,
2703                        old, new, p->score);
2704         else
2705                 printf(" %s %s => %s (%d%%)\n", renamecopy,
2706                        p->old_name, p->new_name, p->score);
2707         show_mode_change(p, 0);
2710 static void summary_patch_list(struct patch *patch)
2712         struct patch *p;
2714         for (p = patch; p; p = p->next) {
2715                 if (p->is_new)
2716                         show_file_mode_name("create", p->new_mode, p->new_name);
2717                 else if (p->is_delete)
2718                         show_file_mode_name("delete", p->old_mode, p->old_name);
2719                 else {
2720                         if (p->is_rename || p->is_copy)
2721                                 show_rename_copy(p);
2722                         else {
2723                                 if (p->score) {
2724                                         printf(" rewrite %s (%d%%)\n",
2725                                                p->new_name, p->score);
2726                                         show_mode_change(p, 0);
2727                                 }
2728                                 else
2729                                         show_mode_change(p, 1);
2730                         }
2731                 }
2732         }
2735 static void patch_stats(struct patch *patch)
2737         int lines = patch->lines_added + patch->lines_deleted;
2739         if (lines > max_change)
2740                 max_change = lines;
2741         if (patch->old_name) {
2742                 int len = quote_c_style(patch->old_name, NULL, NULL, 0);
2743                 if (!len)
2744                         len = strlen(patch->old_name);
2745                 if (len > max_len)
2746                         max_len = len;
2747         }
2748         if (patch->new_name) {
2749                 int len = quote_c_style(patch->new_name, NULL, NULL, 0);
2750                 if (!len)
2751                         len = strlen(patch->new_name);
2752                 if (len > max_len)
2753                         max_len = len;
2754         }
2757 static void remove_file(struct patch *patch, int rmdir_empty)
2759         if (update_index) {
2760                 if (remove_file_from_cache(patch->old_name) < 0)
2761                         die("unable to remove %s from index", patch->old_name);
2762         }
2763         if (!cached) {
2764                 if (S_ISGITLINK(patch->old_mode)) {
2765                         if (rmdir(patch->old_name))
2766                                 warning("unable to remove submodule %s",
2767                                         patch->old_name);
2768                 } else if (!unlink(patch->old_name) && rmdir_empty) {
2769                         remove_path(patch->old_name);
2770                 }
2771         }
2774 static void add_index_file(const char *path, unsigned mode, void *buf, unsigned long size)
2776         struct stat st;
2777         struct cache_entry *ce;
2778         int namelen = strlen(path);
2779         unsigned ce_size = cache_entry_size(namelen);
2781         if (!update_index)
2782                 return;
2784         ce = xcalloc(1, ce_size);
2785         memcpy(ce->name, path, namelen);
2786         ce->ce_mode = create_ce_mode(mode);
2787         ce->ce_flags = namelen;
2788         if (S_ISGITLINK(mode)) {
2789                 const char *s = buf;
2791                 if (get_sha1_hex(s + strlen("Subproject commit "), ce->sha1))
2792                         die("corrupt patch for subproject %s", path);
2793         } else {
2794                 if (!cached) {
2795                         if (lstat(path, &st) < 0)
2796                                 die("unable to stat newly created file %s",
2797                                     path);
2798                         fill_stat_cache_info(ce, &st);
2799                 }
2800                 if (write_sha1_file(buf, size, blob_type, ce->sha1) < 0)
2801                         die("unable to create backing store for newly created file %s", path);
2802         }
2803         if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)
2804                 die("unable to add cache entry for %s", path);
2807 static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)
2809         int fd;
2810         struct strbuf nbuf;
2812         if (S_ISGITLINK(mode)) {
2813                 struct stat st;
2814                 if (!lstat(path, &st) && S_ISDIR(st.st_mode))
2815                         return 0;
2816                 return mkdir(path, 0777);
2817         }
2819         if (has_symlinks && S_ISLNK(mode))
2820                 /* Although buf:size is counted string, it also is NUL
2821                  * terminated.
2822                  */
2823                 return symlink(buf, path);
2825         fd = open(path, O_CREAT | O_EXCL | O_WRONLY, (mode & 0100) ? 0777 : 0666);
2826         if (fd < 0)
2827                 return -1;
2829         strbuf_init(&nbuf, 0);
2830         if (convert_to_working_tree(path, buf, size, &nbuf)) {
2831                 size = nbuf.len;
2832                 buf  = nbuf.buf;
2833         }
2834         write_or_die(fd, buf, size);
2835         strbuf_release(&nbuf);
2837         if (close(fd) < 0)
2838                 die("closing file %s: %s", path, strerror(errno));
2839         return 0;
2842 /*
2843  * We optimistically assume that the directories exist,
2844  * which is true 99% of the time anyway. If they don't,
2845  * we create them and try again.
2846  */
2847 static void create_one_file(char *path, unsigned mode, const char *buf, unsigned long size)
2849         if (cached)
2850                 return;
2851         if (!try_create_file(path, mode, buf, size))
2852                 return;
2854         if (errno == ENOENT) {
2855                 if (safe_create_leading_directories(path))
2856                         return;
2857                 if (!try_create_file(path, mode, buf, size))
2858                         return;
2859         }
2861         if (errno == EEXIST || errno == EACCES) {
2862                 /* We may be trying to create a file where a directory
2863                  * used to be.
2864                  */
2865                 struct stat st;
2866                 if (!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))
2867                         errno = EEXIST;
2868         }
2870         if (errno == EEXIST) {
2871                 unsigned int nr = getpid();
2873                 for (;;) {
2874                         char newpath[PATH_MAX];
2875                         mksnpath(newpath, sizeof(newpath), "%s~%u", path, nr);
2876                         if (!try_create_file(newpath, mode, buf, size)) {
2877                                 if (!rename(newpath, path))
2878                                         return;
2879                                 unlink(newpath);
2880                                 break;
2881                         }
2882                         if (errno != EEXIST)
2883                                 break;
2884                         ++nr;
2885                 }
2886         }
2887         die("unable to write file %s mode %o", path, mode);
2890 static void create_file(struct patch *patch)
2892         char *path = patch->new_name;
2893         unsigned mode = patch->new_mode;
2894         unsigned long size = patch->resultsize;
2895         char *buf = patch->result;
2897         if (!mode)
2898                 mode = S_IFREG | 0644;
2899         create_one_file(path, mode, buf, size);
2900         add_index_file(path, mode, buf, size);
2903 /* phase zero is to remove, phase one is to create */
2904 static void write_out_one_result(struct patch *patch, int phase)
2906         if (patch->is_delete > 0) {
2907                 if (phase == 0)
2908                         remove_file(patch, 1);
2909                 return;
2910         }
2911         if (patch->is_new > 0 || patch->is_copy) {
2912                 if (phase == 1)
2913                         create_file(patch);
2914                 return;
2915         }
2916         /*
2917          * Rename or modification boils down to the same
2918          * thing: remove the old, write the new
2919          */
2920         if (phase == 0)
2921                 remove_file(patch, patch->is_rename);
2922         if (phase == 1)
2923                 create_file(patch);
2926 static int write_out_one_reject(struct patch *patch)
2928         FILE *rej;
2929         char namebuf[PATH_MAX];
2930         struct fragment *frag;
2931         int cnt = 0;
2933         for (cnt = 0, frag = patch->fragments; frag; frag = frag->next) {
2934                 if (!frag->rejected)
2935                         continue;
2936                 cnt++;
2937         }
2939         if (!cnt) {
2940                 if (apply_verbosely)
2941                         say_patch_name(stderr,
2942                                        "Applied patch ", patch, " cleanly.\n");
2943                 return 0;
2944         }
2946         /* This should not happen, because a removal patch that leaves
2947          * contents are marked "rejected" at the patch level.
2948          */
2949         if (!patch->new_name)
2950                 die("internal error");
2952         /* Say this even without --verbose */
2953         say_patch_name(stderr, "Applying patch ", patch, " with");
2954         fprintf(stderr, " %d rejects...\n", cnt);
2956         cnt = strlen(patch->new_name);
2957         if (ARRAY_SIZE(namebuf) <= cnt + 5) {
2958                 cnt = ARRAY_SIZE(namebuf) - 5;
2959                 fprintf(stderr,
2960                         "warning: truncating .rej filename to %.*s.rej",
2961                         cnt - 1, patch->new_name);
2962         }
2963         memcpy(namebuf, patch->new_name, cnt);
2964         memcpy(namebuf + cnt, ".rej", 5);
2966         rej = fopen(namebuf, "w");
2967         if (!rej)
2968                 return error("cannot open %s: %s", namebuf, strerror(errno));
2970         /* Normal git tools never deal with .rej, so do not pretend
2971          * this is a git patch by saying --git nor give extended
2972          * headers.  While at it, maybe please "kompare" that wants
2973          * the trailing TAB and some garbage at the end of line ;-).
2974          */
2975         fprintf(rej, "diff a/%s b/%s\t(rejected hunks)\n",
2976                 patch->new_name, patch->new_name);
2977         for (cnt = 1, frag = patch->fragments;
2978              frag;
2979              cnt++, frag = frag->next) {
2980                 if (!frag->rejected) {
2981                         fprintf(stderr, "Hunk #%d applied cleanly.\n", cnt);
2982                         continue;
2983                 }
2984                 fprintf(stderr, "Rejected hunk #%d.\n", cnt);
2985                 fprintf(rej, "%.*s", frag->size, frag->patch);
2986                 if (frag->patch[frag->size-1] != '\n')
2987                         fputc('\n', rej);
2988         }
2989         fclose(rej);
2990         return -1;
2993 static int write_out_results(struct patch *list, int skipped_patch)
2995         int phase;
2996         int errs = 0;
2997         struct patch *l;
2999         if (!list && !skipped_patch)
3000                 return error("No changes");
3002         for (phase = 0; phase < 2; phase++) {
3003                 l = list;
3004                 while (l) {
3005                         if (l->rejected)
3006                                 errs = 1;
3007                         else {
3008                                 write_out_one_result(l, phase);
3009                                 if (phase == 1 && write_out_one_reject(l))
3010                                         errs = 1;
3011                         }
3012                         l = l->next;
3013                 }
3014         }
3015         return errs;
3018 static struct lock_file lock_file;
3020 static struct excludes {
3021         struct excludes *next;
3022         const char *path;
3023 } *excludes;
3025 static int use_patch(struct patch *p)
3027         const char *pathname = p->new_name ? p->new_name : p->old_name;
3028         struct excludes *x = excludes;
3029         while (x) {
3030                 if (fnmatch(x->path, pathname, 0) == 0)
3031                         return 0;
3032                 x = x->next;
3033         }
3034         if (0 < prefix_length) {
3035                 int pathlen = strlen(pathname);
3036                 if (pathlen <= prefix_length ||
3037                     memcmp(prefix, pathname, prefix_length))
3038                         return 0;
3039         }
3040         return 1;
3043 static void prefix_one(char **name)
3045         char *old_name = *name;
3046         if (!old_name)
3047                 return;
3048         *name = xstrdup(prefix_filename(prefix, prefix_length, *name));
3049         free(old_name);
3052 static void prefix_patches(struct patch *p)
3054         if (!prefix || p->is_toplevel_relative)
3055                 return;
3056         for ( ; p; p = p->next) {
3057                 if (p->new_name == p->old_name) {
3058                         char *prefixed = p->new_name;
3059                         prefix_one(&prefixed);
3060                         p->new_name = p->old_name = prefixed;
3061                 }
3062                 else {
3063                         prefix_one(&p->new_name);
3064                         prefix_one(&p->old_name);
3065                 }
3066         }
3069 #define INACCURATE_EOF  (1<<0)
3070 #define RECOUNT         (1<<1)
3072 static int apply_patch(int fd, const char *filename, int options)
3074         size_t offset;
3075         struct strbuf buf;
3076         struct patch *list = NULL, **listp = &list;
3077         int skipped_patch = 0;
3079         /* FIXME - memory leak when using multiple patch files as inputs */
3080         memset(&fn_table, 0, sizeof(struct string_list));
3081         strbuf_init(&buf, 0);
3082         patch_input_file = filename;
3083         read_patch_file(&buf, fd);
3084         offset = 0;
3085         while (offset < buf.len) {
3086                 struct patch *patch;
3087                 int nr;
3089                 patch = xcalloc(1, sizeof(*patch));
3090                 patch->inaccurate_eof = !!(options & INACCURATE_EOF);
3091                 patch->recount =  !!(options & RECOUNT);
3092                 nr = parse_chunk(buf.buf + offset, buf.len - offset, patch);
3093                 if (nr < 0)
3094                         break;
3095                 if (apply_in_reverse)
3096                         reverse_patches(patch);
3097                 if (prefix)
3098                         prefix_patches(patch);
3099                 if (use_patch(patch)) {
3100                         patch_stats(patch);
3101                         *listp = patch;
3102                         listp = &patch->next;
3103                 }
3104                 else {
3105                         /* perhaps free it a bit better? */
3106                         free(patch);
3107                         skipped_patch++;
3108                 }
3109                 offset += nr;
3110         }
3112         if (whitespace_error && (ws_error_action == die_on_ws_error))
3113                 apply = 0;
3115         update_index = check_index && apply;
3116         if (update_index && newfd < 0)
3117                 newfd = hold_locked_index(&lock_file, 1);
3119         if (check_index) {
3120                 if (read_cache() < 0)
3121                         die("unable to read index file");
3122         }
3124         if ((check || apply) &&
3125             check_patch_list(list) < 0 &&
3126             !apply_with_reject)
3127                 exit(1);
3129         if (apply && write_out_results(list, skipped_patch))
3130                 exit(1);
3132         if (fake_ancestor)
3133                 build_fake_ancestor(list, fake_ancestor);
3135         if (diffstat)
3136                 stat_patch_list(list);
3138         if (numstat)
3139                 numstat_patch_list(list);
3141         if (summary)
3142                 summary_patch_list(list);
3144         strbuf_release(&buf);
3145         return 0;
3148 static int git_apply_config(const char *var, const char *value, void *cb)
3150         if (!strcmp(var, "apply.whitespace"))
3151                 return git_config_string(&apply_default_whitespace, var, value);
3152         return git_default_config(var, value, cb);
3156 int cmd_apply(int argc, const char **argv, const char *unused_prefix)
3158         int i;
3159         int read_stdin = 1;
3160         int options = 0;
3161         int errs = 0;
3162         int is_not_gitdir;
3164         const char *whitespace_option = NULL;
3166         prefix = setup_git_directory_gently(&is_not_gitdir);
3167         prefix_length = prefix ? strlen(prefix) : 0;
3168         git_config(git_apply_config, NULL);
3169         if (apply_default_whitespace)
3170                 parse_whitespace_option(apply_default_whitespace);
3172         for (i = 1; i < argc; i++) {
3173                 const char *arg = argv[i];
3174                 char *end;
3175                 int fd;
3177                 if (!strcmp(arg, "-")) {
3178                         errs |= apply_patch(0, "<stdin>", options);
3179                         read_stdin = 0;
3180                         continue;
3181                 }
3182                 if (!prefixcmp(arg, "--exclude=")) {
3183                         struct excludes *x = xmalloc(sizeof(*x));
3184                         x->path = arg + 10;
3185                         x->next = excludes;
3186                         excludes = x;
3187                         continue;
3188                 }
3189                 if (!prefixcmp(arg, "-p")) {
3190                         p_value = atoi(arg + 2);
3191                         p_value_known = 1;
3192                         continue;
3193                 }
3194                 if (!strcmp(arg, "--no-add")) {
3195                         no_add = 1;
3196                         continue;
3197                 }
3198                 if (!strcmp(arg, "--stat")) {
3199                         apply = 0;
3200                         diffstat = 1;
3201                         continue;
3202                 }
3203                 if (!strcmp(arg, "--allow-binary-replacement") ||
3204                     !strcmp(arg, "--binary")) {
3205                         continue; /* now no-op */
3206                 }
3207                 if (!strcmp(arg, "--numstat")) {
3208                         apply = 0;
3209                         numstat = 1;
3210                         continue;
3211                 }
3212                 if (!strcmp(arg, "--summary")) {
3213                         apply = 0;
3214                         summary = 1;
3215                         continue;
3216                 }
3217                 if (!strcmp(arg, "--check")) {
3218                         apply = 0;
3219                         check = 1;
3220                         continue;
3221                 }
3222                 if (!strcmp(arg, "--index")) {
3223                         if (is_not_gitdir)
3224                                 die("--index outside a repository");
3225                         check_index = 1;
3226                         continue;
3227                 }
3228                 if (!strcmp(arg, "--cached")) {
3229                         if (is_not_gitdir)
3230                                 die("--cached outside a repository");
3231                         check_index = 1;
3232                         cached = 1;
3233                         continue;
3234                 }
3235                 if (!strcmp(arg, "--apply")) {
3236                         apply = 1;
3237                         continue;
3238                 }
3239                 if (!strcmp(arg, "--build-fake-ancestor")) {
3240                         apply = 0;
3241                         if (++i >= argc)
3242                                 die ("need a filename");
3243                         fake_ancestor = argv[i];
3244                         continue;
3245                 }
3246                 if (!strcmp(arg, "-z")) {
3247                         line_termination = 0;
3248                         continue;
3249                 }
3250                 if (!prefixcmp(arg, "-C")) {
3251                         p_context = strtoul(arg + 2, &end, 0);
3252                         if (*end != '\0')
3253                                 die("unrecognized context count '%s'", arg + 2);
3254                         continue;
3255                 }
3256                 if (!prefixcmp(arg, "--whitespace=")) {
3257                         whitespace_option = arg + 13;
3258                         parse_whitespace_option(arg + 13);
3259                         continue;
3260                 }
3261                 if (!strcmp(arg, "-R") || !strcmp(arg, "--reverse")) {
3262                         apply_in_reverse = 1;
3263                         continue;
3264                 }
3265                 if (!strcmp(arg, "--unidiff-zero")) {
3266                         unidiff_zero = 1;
3267                         continue;
3268                 }
3269                 if (!strcmp(arg, "--reject")) {
3270                         apply = apply_with_reject = apply_verbosely = 1;
3271                         continue;
3272                 }
3273                 if (!strcmp(arg, "-v") || !strcmp(arg, "--verbose")) {
3274                         apply_verbosely = 1;
3275                         continue;
3276                 }
3277                 if (!strcmp(arg, "--inaccurate-eof")) {
3278                         options |= INACCURATE_EOF;
3279                         continue;
3280                 }
3281                 if (!strcmp(arg, "--recount")) {
3282                         options |= RECOUNT;
3283                         continue;
3284                 }
3285                 if (!prefixcmp(arg, "--directory=")) {
3286                         arg += strlen("--directory=");
3287                         root_len = strlen(arg);
3288                         if (root_len && arg[root_len - 1] != '/') {
3289                                 char *new_root;
3290                                 root = new_root = xmalloc(root_len + 2);
3291                                 strcpy(new_root, arg);
3292                                 strcpy(new_root + root_len++, "/");
3293                         } else
3294                                 root = arg;
3295                         continue;
3296                 }
3297                 if (0 < prefix_length)
3298                         arg = prefix_filename(prefix, prefix_length, arg);
3300                 fd = open(arg, O_RDONLY);
3301                 if (fd < 0)
3302                         die("can't open patch '%s': %s", arg, strerror(errno));
3303                 read_stdin = 0;
3304                 set_default_whitespace_mode(whitespace_option);
3305                 errs |= apply_patch(fd, arg, options);
3306                 close(fd);
3307         }
3308         set_default_whitespace_mode(whitespace_option);
3309         if (read_stdin)
3310                 errs |= apply_patch(0, "<stdin>", options);
3311         if (whitespace_error) {
3312                 if (squelch_whitespace_errors &&
3313                     squelch_whitespace_errors < whitespace_error) {
3314                         int squelched =
3315                                 whitespace_error - squelch_whitespace_errors;
3316                         fprintf(stderr, "warning: squelched %d "
3317                                 "whitespace error%s\n",
3318                                 squelched,
3319                                 squelched == 1 ? "" : "s");
3320                 }
3321                 if (ws_error_action == die_on_ws_error)
3322                         die("%d line%s add%s whitespace errors.",
3323                             whitespace_error,
3324                             whitespace_error == 1 ? "" : "s",
3325                             whitespace_error == 1 ? "s" : "");
3326                 if (applied_after_fixing_ws && apply)
3327                         fprintf(stderr, "warning: %d line%s applied after"
3328                                 " fixing whitespace errors.\n",
3329                                 applied_after_fixing_ws,
3330                                 applied_after_fixing_ws == 1 ? "" : "s");
3331                 else if (whitespace_error)
3332                         fprintf(stderr, "warning: %d line%s add%s whitespace errors.\n",
3333                                 whitespace_error,
3334                                 whitespace_error == 1 ? "" : "s",
3335                                 whitespace_error == 1 ? "s" : "");
3336         }
3338         if (update_index) {
3339                 if (write_cache(newfd, active_cache, active_nr) ||
3340                     commit_locked_index(&lock_file))
3341                         die("Unable to write new index file");
3342         }
3344         return !!errs;