]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-apply.c
autoconf: Add tests for memmem, strtoumax and mkdtemp functions
[thirdparty/git.git] / builtin-apply.c
CommitLineData
c1bb9350
LT
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 *
c1bb9350 8 */
c1bb9350 9#include "cache.h"
03ac6e64 10#include "cache-tree.h"
22943f1a 11#include "quote.h"
8e440259 12#include "blob.h"
051308f6 13#include "delta.h"
ac6245e3 14#include "builtin.h"
c1bb9350 15
a9486b02
PR
16/*
17 * --check turns on checking that the working tree matches the
18 * files that are being modified, but doesn't apply the patch
19 * --stat does just a diffstat, and doesn't actually apply
20 * --numstat does numeric diffstat, and doesn't actually apply
21 * --index-info shows the old and new index info for paths if available.
22 * --index updates the cache as well.
23 * --cached updates only the cache without ever touching the working tree.
24 */
edf2e370
JH
25static const char *prefix;
26static int prefix_length = -1;
dbd0f7d3 27static int newfd = -1;
edf2e370 28
4be60962 29static int unidiff_zero;
e36f8b60 30static int p_value = 1;
3e8a5db9 31static int p_value_known;
96f1e58f 32static int check_index;
7da3bf37 33static int update_index;
96f1e58f
DR
34static int cached;
35static int diffstat;
36static int numstat;
37static int summary;
38static int check;
a577284a 39static int apply = 1;
96f1e58f 40static int apply_in_reverse;
57dc397c 41static int apply_with_reject;
a2bf404e 42static int apply_verbosely;
96f1e58f 43static int no_add;
7a988699 44static const char *fake_ancestor;
22943f1a 45static int line_termination = '\n';
bf8675d3 46static unsigned long p_context = ULONG_MAX;
12dd6e8c 47static const char apply_usage[] =
a2bf404e 48"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|error|error-all|strip>] <patch>...";
c1bb9350 49
19bfcd5a 50static enum whitespace_eol {
2ae1c53b 51 nowarn_whitespace,
19bfcd5a 52 warn_on_whitespace,
b5767dd6 53 error_on_whitespace,
2ae1c53b 54 strip_whitespace,
621603b7 55} new_whitespace = warn_on_whitespace;
96f1e58f 56static int whitespace_error;
fc96b7c9 57static int squelch_whitespace_errors = 5;
c94bf41c 58static int applied_after_fixing_ws;
96f1e58f 59static const char *patch_input_file;
19bfcd5a 60
2ae1c53b
JH
61static void parse_whitespace_option(const char *option)
62{
63 if (!option) {
621603b7 64 new_whitespace = warn_on_whitespace;
2ae1c53b
JH
65 return;
66 }
67 if (!strcmp(option, "warn")) {
68 new_whitespace = warn_on_whitespace;
69 return;
70 }
621603b7
JH
71 if (!strcmp(option, "nowarn")) {
72 new_whitespace = nowarn_whitespace;
73 return;
74 }
2ae1c53b
JH
75 if (!strcmp(option, "error")) {
76 new_whitespace = error_on_whitespace;
77 return;
78 }
79 if (!strcmp(option, "error-all")) {
80 new_whitespace = error_on_whitespace;
81 squelch_whitespace_errors = 0;
82 return;
83 }
84 if (!strcmp(option, "strip")) {
85 new_whitespace = strip_whitespace;
86 return;
87 }
88 die("unrecognized whitespace option '%s'", option);
89}
90
f21d6726
JH
91static void set_default_whitespace_mode(const char *whitespace_option)
92{
93 if (!whitespace_option && !apply_default_whitespace) {
94 new_whitespace = (apply
95 ? warn_on_whitespace
96 : nowarn_whitespace);
97 }
98}
99
3f40315a
LT
100/*
101 * For "diff-stat" like behaviour, we keep track of the biggest change
102 * we've seen, and the longest filename. That allows us to do simple
103 * scaling.
104 */
105static int max_change, max_len;
106
a4acb0eb
LT
107/*
108 * Various "current state", notably line numbers and what
109 * file (and how) we're patching right now.. The "is_xxxx"
110 * things are flags, where -1 means "don't know yet".
111 */
46979f56 112static int linenr = 1;
19c58fb8 113
3cd4f5e8
JH
114/*
115 * This represents one "hunk" from a patch, starting with
116 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The
117 * patch text is pointed at by patch, and its byte length
118 * is stored in size. leading and trailing are the number
119 * of context lines.
120 */
19c58fb8 121struct fragment {
47495887 122 unsigned long leading, trailing;
19c58fb8
LT
123 unsigned long oldpos, oldlines;
124 unsigned long newpos, newlines;
125 const char *patch;
126 int size;
57dc397c 127 int rejected;
19c58fb8
LT
128 struct fragment *next;
129};
130
3cd4f5e8
JH
131/*
132 * When dealing with a binary patch, we reuse "leading" field
133 * to store the type of the binary hunk, either deflated "delta"
134 * or deflated "literal".
135 */
136#define binary_patch_method leading
137#define BINARY_DELTA_DEFLATED 1
138#define BINARY_LITERAL_DEFLATED 2
139
19c58fb8 140struct patch {
5041aa70 141 char *new_name, *old_name, *def_name;
19c58fb8 142 unsigned int old_mode, new_mode;
3dad11bf 143 int is_new, is_delete; /* -1 = unknown, 0 = false, 1 = true */
57dc397c 144 int rejected;
0660626c 145 unsigned long deflate_origlen;
3f40315a 146 int lines_added, lines_deleted;
96c912a4 147 int score;
9987d7c5 148 unsigned int is_toplevel_relative:1;
3dad11bf
RS
149 unsigned int inaccurate_eof:1;
150 unsigned int is_binary:1;
151 unsigned int is_copy:1;
152 unsigned int is_rename:1;
19c58fb8 153 struct fragment *fragments;
5aa7d94c 154 char *result;
c32f749f 155 size_t resultsize;
2cf67f1e
JH
156 char old_sha1_prefix[41];
157 char new_sha1_prefix[41];
19c58fb8
LT
158 struct patch *next;
159};
46979f56 160
a2bf404e
JH
161static void say_patch_name(FILE *output, const char *pre, struct patch *patch, const char *post)
162{
163 fputs(pre, output);
164 if (patch->old_name && patch->new_name &&
165 strcmp(patch->old_name, patch->new_name)) {
663af342 166 quote_c_style(patch->old_name, NULL, output, 0);
a2bf404e 167 fputs(" => ", output);
663af342
PH
168 quote_c_style(patch->new_name, NULL, output, 0);
169 } else {
a2bf404e
JH
170 const char *n = patch->new_name;
171 if (!n)
172 n = patch->old_name;
663af342 173 quote_c_style(n, NULL, output, 0);
a2bf404e
JH
174 }
175 fputs(post, output);
176}
177
c1bb9350 178#define CHUNKSIZE (8192)
a4acb0eb 179#define SLOP (16)
c1bb9350 180
9a76adeb 181static void read_patch_file(struct strbuf *sb, int fd)
c1bb9350 182{
9a76adeb 183 if (strbuf_read(sb, fd, 0) < 0)
af6eb822 184 die("git-apply: read returned %s", strerror(errno));
a4acb0eb
LT
185
186 /*
187 * Make sure that we have some slop in the buffer
188 * so that we can do speculative "memcmp" etc, and
189 * see to it that it is NUL-filled.
190 */
9a76adeb
PH
191 strbuf_grow(sb, SLOP);
192 memset(sb->buf + sb->len, 0, SLOP);
c1bb9350
LT
193}
194
3cca928d 195static unsigned long linelen(const char *buffer, unsigned long size)
c1bb9350
LT
196{
197 unsigned long len = 0;
198 while (size--) {
199 len++;
200 if (*buffer++ == '\n')
201 break;
202 }
203 return len;
204}
205
a4acb0eb
LT
206static int is_dev_null(const char *str)
207{
208 return !memcmp("/dev/null", str, 9) && isspace(str[9]);
209}
210
381ca9a3
LT
211#define TERM_SPACE 1
212#define TERM_TAB 2
9a4a100e
LT
213
214static int name_terminate(const char *name, int namelen, int c, int terminate)
215{
216 if (c == ' ' && !(terminate & TERM_SPACE))
217 return 0;
218 if (c == '\t' && !(terminate & TERM_TAB))
219 return 0;
220
9a4a100e
LT
221 return 1;
222}
223
56185f49 224static char *find_name(const char *line, char *def, int p_value, int terminate)
c1bb9350 225{
a4acb0eb
LT
226 int len;
227 const char *start = line;
a4acb0eb 228
22943f1a 229 if (*line == '"') {
7fb1011e
PH
230 struct strbuf name;
231
22943f1a
JH
232 /* Proposed "new-style" GNU patch/diff format; see
233 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
234 */
7fb1011e
PH
235 strbuf_init(&name, 0);
236 if (!unquote_c_style(&name, line, NULL)) {
237 char *cp;
238
239 for (cp = name.buf; p_value; p_value--) {
3d845d77 240 cp = strchr(cp, '/');
22943f1a
JH
241 if (!cp)
242 break;
243 cp++;
22943f1a
JH
244 }
245 if (cp) {
246 /* name can later be freed, so we need
247 * to memmove, not just return cp
248 */
7fb1011e 249 strbuf_remove(&name, 0, cp - name.buf);
22943f1a 250 free(def);
b315c5c0 251 return strbuf_detach(&name, NULL);
22943f1a
JH
252 }
253 }
7fb1011e 254 strbuf_release(&name);
22943f1a
JH
255 }
256
c1bb9350 257 for (;;) {
a4acb0eb 258 char c = *line;
9a4a100e
LT
259
260 if (isspace(c)) {
261 if (c == '\n')
262 break;
263 if (name_terminate(start, line-start, c, terminate))
264 break;
265 }
a4acb0eb
LT
266 line++;
267 if (c == '/' && !--p_value)
268 start = line;
269 }
270 if (!start)
271 return def;
272 len = line - start;
273 if (!len)
274 return def;
275
276 /*
277 * Generally we prefer the shorter name, especially
278 * if the other one is just a variation of that with
279 * something else tacked on to the end (ie "file.orig"
280 * or "file~").
281 */
282 if (def) {
283 int deflen = strlen(def);
284 if (deflen < len && !strncmp(start, def, deflen))
285 return def;
ca032835 286 free(def);
c1bb9350 287 }
a4acb0eb 288
182af834 289 return xmemdupz(start, len);
a4acb0eb
LT
290}
291
3e8a5db9
JH
292static int count_slashes(const char *cp)
293{
294 int cnt = 0;
295 char ch;
296
297 while ((ch = *cp++))
298 if (ch == '/')
299 cnt++;
300 return cnt;
301}
302
303/*
304 * Given the string after "--- " or "+++ ", guess the appropriate
305 * p_value for the given patch.
306 */
307static int guess_p_value(const char *nameline)
308{
309 char *name, *cp;
310 int val = -1;
311
312 if (is_dev_null(nameline))
313 return -1;
314 name = find_name(nameline, NULL, 0, TERM_SPACE | TERM_TAB);
315 if (!name)
316 return -1;
317 cp = strchr(name, '/');
318 if (!cp)
319 val = 0;
320 else if (prefix) {
321 /*
322 * Does it begin with "a/$our-prefix" and such? Then this is
323 * very likely to apply to our directory.
324 */
325 if (!strncmp(name, prefix, prefix_length))
326 val = count_slashes(prefix);
327 else {
328 cp++;
329 if (!strncmp(cp, prefix, prefix_length))
330 val = count_slashes(prefix) + 1;
331 }
332 }
333 free(name);
334 return val;
335}
336
a4acb0eb
LT
337/*
338 * Get the name etc info from the --/+++ lines of a traditional patch header
339 *
9a4a100e
LT
340 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
341 * files, we can happily check the index for a match, but for creating a
342 * new file we should try to match whatever "patch" does. I have no idea.
a4acb0eb 343 */
19c58fb8 344static void parse_traditional_patch(const char *first, const char *second, struct patch *patch)
a4acb0eb 345{
a4acb0eb
LT
346 char *name;
347
a9486b02
PR
348 first += 4; /* skip "--- " */
349 second += 4; /* skip "+++ " */
3e8a5db9
JH
350 if (!p_value_known) {
351 int p, q;
352 p = guess_p_value(first);
353 q = guess_p_value(second);
354 if (p < 0) p = q;
355 if (0 <= p && p == q) {
356 p_value = p;
357 p_value_known = 1;
358 }
359 }
a4acb0eb 360 if (is_dev_null(first)) {
19c58fb8
LT
361 patch->is_new = 1;
362 patch->is_delete = 0;
5041aa70 363 name = find_name(second, NULL, p_value, TERM_SPACE | TERM_TAB);
19c58fb8 364 patch->new_name = name;
a4acb0eb 365 } else if (is_dev_null(second)) {
19c58fb8
LT
366 patch->is_new = 0;
367 patch->is_delete = 1;
381ca9a3 368 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
19c58fb8 369 patch->old_name = name;
a4acb0eb 370 } else {
381ca9a3
LT
371 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
372 name = find_name(second, name, p_value, TERM_SPACE | TERM_TAB);
19c58fb8 373 patch->old_name = patch->new_name = name;
a4acb0eb
LT
374 }
375 if (!name)
376 die("unable to find filename in patch at line %d", linenr);
a4acb0eb
LT
377}
378
19c58fb8 379static int gitdiff_hdrend(const char *line, struct patch *patch)
a4acb0eb
LT
380{
381 return -1;
382}
383
1e3f6b6e
LT
384/*
385 * We're anal about diff header consistency, to make
386 * sure that we don't end up having strange ambiguous
387 * patches floating around.
388 *
389 * As a result, gitdiff_{old|new}name() will check
390 * their names against any previous information, just
391 * to make sure..
392 */
393static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew)
394{
1e3f6b6e 395 if (!orig_name && !isnull)
79ee194e 396 return find_name(line, NULL, p_value, TERM_TAB);
1e3f6b6e 397
1e3f6b6e 398 if (orig_name) {
22943f1a
JH
399 int len;
400 const char *name;
401 char *another;
1e3f6b6e
LT
402 name = orig_name;
403 len = strlen(name);
404 if (isnull)
405 die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr);
79ee194e 406 another = find_name(line, NULL, p_value, TERM_TAB);
22943f1a
JH
407 if (!another || memcmp(another, name, len))
408 die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr);
409 free(another);
1e3f6b6e
LT
410 return orig_name;
411 }
22943f1a
JH
412 else {
413 /* expect "/dev/null" */
414 if (memcmp("/dev/null", line, 9) || line[9] != '\n')
415 die("git-apply: bad git-diff - expected /dev/null on line %d", linenr);
416 return NULL;
417 }
1e3f6b6e
LT
418}
419
19c58fb8 420static int gitdiff_oldname(const char *line, struct patch *patch)
a4acb0eb 421{
19c58fb8 422 patch->old_name = gitdiff_verify_name(line, patch->is_new, patch->old_name, "old");
a4acb0eb
LT
423 return 0;
424}
425
19c58fb8 426static int gitdiff_newname(const char *line, struct patch *patch)
a4acb0eb 427{
19c58fb8 428 patch->new_name = gitdiff_verify_name(line, patch->is_delete, patch->new_name, "new");
a4acb0eb
LT
429 return 0;
430}
431
19c58fb8 432static int gitdiff_oldmode(const char *line, struct patch *patch)
a4acb0eb 433{
19c58fb8 434 patch->old_mode = strtoul(line, NULL, 8);
a4acb0eb
LT
435 return 0;
436}
437
19c58fb8 438static int gitdiff_newmode(const char *line, struct patch *patch)
a4acb0eb 439{
19c58fb8 440 patch->new_mode = strtoul(line, NULL, 8);
a4acb0eb
LT
441 return 0;
442}
443
19c58fb8 444static int gitdiff_delete(const char *line, struct patch *patch)
a4acb0eb 445{
19c58fb8 446 patch->is_delete = 1;
5041aa70 447 patch->old_name = patch->def_name;
19c58fb8 448 return gitdiff_oldmode(line, patch);
a4acb0eb
LT
449}
450
19c58fb8 451static int gitdiff_newfile(const char *line, struct patch *patch)
a4acb0eb 452{
19c58fb8 453 patch->is_new = 1;
5041aa70 454 patch->new_name = patch->def_name;
19c58fb8 455 return gitdiff_newmode(line, patch);
a4acb0eb
LT
456}
457
19c58fb8 458static int gitdiff_copysrc(const char *line, struct patch *patch)
a4acb0eb 459{
19c58fb8
LT
460 patch->is_copy = 1;
461 patch->old_name = find_name(line, NULL, 0, 0);
a4acb0eb
LT
462 return 0;
463}
464
19c58fb8 465static int gitdiff_copydst(const char *line, struct patch *patch)
a4acb0eb 466{
19c58fb8
LT
467 patch->is_copy = 1;
468 patch->new_name = find_name(line, NULL, 0, 0);
a4acb0eb
LT
469 return 0;
470}
471
19c58fb8 472static int gitdiff_renamesrc(const char *line, struct patch *patch)
a4acb0eb 473{
19c58fb8
LT
474 patch->is_rename = 1;
475 patch->old_name = find_name(line, NULL, 0, 0);
a4acb0eb
LT
476 return 0;
477}
478
19c58fb8 479static int gitdiff_renamedst(const char *line, struct patch *patch)
a4acb0eb 480{
19c58fb8
LT
481 patch->is_rename = 1;
482 patch->new_name = find_name(line, NULL, 0, 0);
a4acb0eb
LT
483 return 0;
484}
485
19c58fb8 486static int gitdiff_similarity(const char *line, struct patch *patch)
a4acb0eb 487{
96c912a4
JH
488 if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
489 patch->score = 0;
a4acb0eb 490 return 0;
c1bb9350
LT
491}
492
70aadac0
JH
493static int gitdiff_dissimilarity(const char *line, struct patch *patch)
494{
96c912a4
JH
495 if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
496 patch->score = 0;
70aadac0
JH
497 return 0;
498}
499
2cf67f1e
JH
500static int gitdiff_index(const char *line, struct patch *patch)
501{
502 /* index line is N hexadecimal, "..", N hexadecimal,
503 * and optional space with octal mode.
504 */
505 const char *ptr, *eol;
506 int len;
507
508 ptr = strchr(line, '.');
9add69b1 509 if (!ptr || ptr[1] != '.' || 40 < ptr - line)
2cf67f1e
JH
510 return 0;
511 len = ptr - line;
512 memcpy(patch->old_sha1_prefix, line, len);
513 patch->old_sha1_prefix[len] = 0;
514
515 line = ptr + 2;
516 ptr = strchr(line, ' ');
517 eol = strchr(line, '\n');
518
519 if (!ptr || eol < ptr)
520 ptr = eol;
521 len = ptr - line;
522
9add69b1 523 if (40 < len)
2cf67f1e
JH
524 return 0;
525 memcpy(patch->new_sha1_prefix, line, len);
526 patch->new_sha1_prefix[len] = 0;
527 if (*ptr == ' ')
528 patch->new_mode = patch->old_mode = strtoul(ptr+1, NULL, 8);
529 return 0;
530}
531
9a4a100e
LT
532/*
533 * This is normal for a diff that doesn't change anything: we'll fall through
534 * into the next diff. Tell the parser to break out.
535 */
19c58fb8 536static int gitdiff_unrecognized(const char *line, struct patch *patch)
9a4a100e
LT
537{
538 return -1;
539}
540
22943f1a
JH
541static const char *stop_at_slash(const char *line, int llen)
542{
543 int i;
544
545 for (i = 0; i < llen; i++) {
546 int ch = line[i];
547 if (ch == '/')
548 return line + i;
549 }
550 return NULL;
551}
552
553/* This is to extract the same name that appears on "diff --git"
554 * line. We do not find and return anything if it is a rename
555 * patch, and it is OK because we will find the name elsewhere.
556 * We need to reliably find name only when it is mode-change only,
557 * creation or deletion of an empty file. In any of these cases,
558 * both sides are the same name under a/ and b/ respectively.
559 */
560static char *git_header_name(char *line, int llen)
5041aa70 561{
22943f1a
JH
562 const char *name;
563 const char *second = NULL;
7fb1011e 564 size_t len;
5041aa70 565
22943f1a
JH
566 line += strlen("diff --git ");
567 llen -= strlen("diff --git ");
568
569 if (*line == '"') {
570 const char *cp;
7fb1011e
PH
571 struct strbuf first;
572 struct strbuf sp;
573
574 strbuf_init(&first, 0);
575 strbuf_init(&sp, 0);
576
577 if (unquote_c_style(&first, line, &second))
578 goto free_and_fail1;
22943f1a
JH
579
580 /* advance to the first slash */
7fb1011e
PH
581 cp = stop_at_slash(first.buf, first.len);
582 /* we do not accept absolute paths */
583 if (!cp || cp == first.buf)
584 goto free_and_fail1;
585 strbuf_remove(&first, 0, cp + 1 - first.buf);
22943f1a
JH
586
587 /* second points at one past closing dq of name.
588 * find the second name.
589 */
590 while ((second < line + llen) && isspace(*second))
591 second++;
592
593 if (line + llen <= second)
7fb1011e 594 goto free_and_fail1;
22943f1a 595 if (*second == '"') {
7fb1011e
PH
596 if (unquote_c_style(&sp, second, NULL))
597 goto free_and_fail1;
598 cp = stop_at_slash(sp.buf, sp.len);
599 if (!cp || cp == sp.buf)
600 goto free_and_fail1;
22943f1a 601 /* They must match, otherwise ignore */
7fb1011e
PH
602 if (strcmp(cp + 1, first.buf))
603 goto free_and_fail1;
604 strbuf_release(&sp);
b315c5c0 605 return strbuf_detach(&first, NULL);
22943f1a
JH
606 }
607
608 /* unquoted second */
609 cp = stop_at_slash(second, line + llen - second);
610 if (!cp || cp == second)
7fb1011e 611 goto free_and_fail1;
22943f1a 612 cp++;
7fb1011e
PH
613 if (line + llen - cp != first.len + 1 ||
614 memcmp(first.buf, cp, first.len))
615 goto free_and_fail1;
b315c5c0 616 return strbuf_detach(&first, NULL);
7fb1011e
PH
617
618 free_and_fail1:
619 strbuf_release(&first);
620 strbuf_release(&sp);
621 return NULL;
5041aa70
LT
622 }
623
22943f1a
JH
624 /* unquoted first name */
625 name = stop_at_slash(line, llen);
626 if (!name || name == line)
5041aa70 627 return NULL;
22943f1a
JH
628 name++;
629
630 /* since the first name is unquoted, a dq if exists must be
631 * the beginning of the second name.
632 */
633 for (second = name; second < line + llen; second++) {
634 if (*second == '"') {
7fb1011e 635 struct strbuf sp;
22943f1a 636 const char *np;
7fb1011e
PH
637
638 strbuf_init(&sp, 0);
639 if (unquote_c_style(&sp, second, NULL))
640 goto free_and_fail2;
641
642 np = stop_at_slash(sp.buf, sp.len);
643 if (!np || np == sp.buf)
644 goto free_and_fail2;
22943f1a 645 np++;
7fb1011e
PH
646
647 len = sp.buf + sp.len - np;
648 if (len < second - name &&
22943f1a
JH
649 !strncmp(np, name, len) &&
650 isspace(name[len])) {
651 /* Good */
7fb1011e 652 strbuf_remove(&sp, 0, np - sp.buf);
b315c5c0 653 return strbuf_detach(&sp, NULL);
22943f1a 654 }
7fb1011e
PH
655
656 free_and_fail2:
657 strbuf_release(&sp);
658 return NULL;
22943f1a
JH
659 }
660 }
661
5041aa70
LT
662 /*
663 * Accept a name only if it shows up twice, exactly the same
664 * form.
665 */
666 for (len = 0 ; ; len++) {
dd305c84 667 switch (name[len]) {
5041aa70
LT
668 default:
669 continue;
670 case '\n':
e70a165d 671 return NULL;
5041aa70
LT
672 case '\t': case ' ':
673 second = name+len;
674 for (;;) {
675 char c = *second++;
676 if (c == '\n')
677 return NULL;
678 if (c == '/')
679 break;
680 }
0e87e048 681 if (second[len] == '\n' && !memcmp(name, second, len)) {
182af834 682 return xmemdupz(name, len);
5041aa70
LT
683 }
684 }
685 }
5041aa70
LT
686}
687
c1bb9350 688/* Verify that we recognize the lines following a git header */
19c58fb8 689static int parse_git_header(char *line, int len, unsigned int size, struct patch *patch)
c1bb9350 690{
a4acb0eb
LT
691 unsigned long offset;
692
693 /* A git diff has explicit new/delete information, so we don't guess */
19c58fb8
LT
694 patch->is_new = 0;
695 patch->is_delete = 0;
a4acb0eb 696
5041aa70
LT
697 /*
698 * Some things may not have the old name in the
699 * rest of the headers anywhere (pure mode changes,
700 * or removing or adding empty files), so we get
701 * the default name from the header.
702 */
22943f1a 703 patch->def_name = git_header_name(line, len);
5041aa70 704
a4acb0eb
LT
705 line += len;
706 size -= len;
707 linenr++;
708 for (offset = len ; size > 0 ; offset += len, size -= len, line += len, linenr++) {
709 static const struct opentry {
710 const char *str;
19c58fb8 711 int (*fn)(const char *, struct patch *);
a4acb0eb
LT
712 } optable[] = {
713 { "@@ -", gitdiff_hdrend },
714 { "--- ", gitdiff_oldname },
715 { "+++ ", gitdiff_newname },
716 { "old mode ", gitdiff_oldmode },
717 { "new mode ", gitdiff_newmode },
718 { "deleted file mode ", gitdiff_delete },
719 { "new file mode ", gitdiff_newfile },
720 { "copy from ", gitdiff_copysrc },
721 { "copy to ", gitdiff_copydst },
33f4d087
LT
722 { "rename old ", gitdiff_renamesrc },
723 { "rename new ", gitdiff_renamedst },
dc938417
LT
724 { "rename from ", gitdiff_renamesrc },
725 { "rename to ", gitdiff_renamedst },
a4acb0eb 726 { "similarity index ", gitdiff_similarity },
70aadac0 727 { "dissimilarity index ", gitdiff_dissimilarity },
2cf67f1e 728 { "index ", gitdiff_index },
9a4a100e 729 { "", gitdiff_unrecognized },
a4acb0eb
LT
730 };
731 int i;
c1bb9350 732
c1bb9350 733 len = linelen(line, size);
a4acb0eb 734 if (!len || line[len-1] != '\n')
c1bb9350 735 break;
b4f2a6ac 736 for (i = 0; i < ARRAY_SIZE(optable); i++) {
a4acb0eb
LT
737 const struct opentry *p = optable + i;
738 int oplen = strlen(p->str);
739 if (len < oplen || memcmp(p->str, line, oplen))
740 continue;
19c58fb8 741 if (p->fn(line + oplen, patch) < 0)
a4acb0eb 742 return offset;
9a4a100e 743 break;
a4acb0eb 744 }
c1bb9350
LT
745 }
746
a4acb0eb 747 return offset;
c1bb9350
LT
748}
749
fab2c257 750static int parse_num(const char *line, unsigned long *p)
46979f56
LT
751{
752 char *ptr;
fab2c257
LT
753
754 if (!isdigit(*line))
755 return 0;
756 *p = strtoul(line, &ptr, 10);
757 return ptr - line;
758}
759
760static int parse_range(const char *line, int len, int offset, const char *expect,
761 unsigned long *p1, unsigned long *p2)
762{
46979f56
LT
763 int digits, ex;
764
765 if (offset < 0 || offset >= len)
766 return -1;
767 line += offset;
768 len -= offset;
769
fab2c257
LT
770 digits = parse_num(line, p1);
771 if (!digits)
46979f56 772 return -1;
46979f56
LT
773
774 offset += digits;
775 line += digits;
776 len -= digits;
777
c1504628 778 *p2 = 1;
fab2c257
LT
779 if (*line == ',') {
780 digits = parse_num(line+1, p2);
781 if (!digits)
782 return -1;
783
784 offset += digits+1;
785 line += digits+1;
786 len -= digits+1;
787 }
788
46979f56
LT
789 ex = strlen(expect);
790 if (ex > len)
791 return -1;
792 if (memcmp(line, expect, ex))
793 return -1;
794
795 return offset + ex;
796}
797
798/*
799 * Parse a unified diff fragment header of the
800 * form "@@ -a,b +c,d @@"
801 */
19c58fb8 802static int parse_fragment_header(char *line, int len, struct fragment *fragment)
46979f56
LT
803{
804 int offset;
805
806 if (!len || line[len-1] != '\n')
807 return -1;
808
809 /* Figure out the number of lines in a fragment */
fab2c257
LT
810 offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);
811 offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);
46979f56
LT
812
813 return offset;
814}
815
19c58fb8 816static int find_header(char *line, unsigned long size, int *hdrsize, struct patch *patch)
c1bb9350
LT
817{
818 unsigned long offset, len;
819
9987d7c5 820 patch->is_toplevel_relative = 0;
19c58fb8
LT
821 patch->is_rename = patch->is_copy = 0;
822 patch->is_new = patch->is_delete = -1;
823 patch->old_mode = patch->new_mode = 0;
824 patch->old_name = patch->new_name = NULL;
46979f56 825 for (offset = 0; size > 0; offset += len, size -= len, line += len, linenr++) {
c1bb9350
LT
826 unsigned long nextlen;
827
828 len = linelen(line, size);
829 if (!len)
830 break;
831
832 /* Testing this early allows us to take a few shortcuts.. */
833 if (len < 6)
834 continue;
46979f56
LT
835
836 /*
82e5a82f 837 * Make sure we don't find any unconnected patch fragments.
46979f56
LT
838 * That's a sign that we didn't find a header, and that a
839 * patch has become corrupted/broken up.
840 */
841 if (!memcmp("@@ -", line, 4)) {
19c58fb8
LT
842 struct fragment dummy;
843 if (parse_fragment_header(line, len, &dummy) < 0)
46979f56 844 continue;
65341411
JH
845 die("patch fragment without header at line %d: %.*s",
846 linenr, (int)len-1, line);
46979f56
LT
847 }
848
c1bb9350
LT
849 if (size < len + 6)
850 break;
851
852 /*
853 * Git patch? It might not have a real patch, just a rename
854 * or mode change, so we handle that specially
855 */
856 if (!memcmp("diff --git ", line, 11)) {
19c58fb8 857 int git_hdr_len = parse_git_header(line, len, size, patch);
206de27e 858 if (git_hdr_len <= len)
c1bb9350 859 continue;
b7e8039a
LT
860 if (!patch->old_name && !patch->new_name) {
861 if (!patch->def_name)
862 die("git diff header lacks filename information (line %d)", linenr);
863 patch->old_name = patch->new_name = patch->def_name;
864 }
9987d7c5 865 patch->is_toplevel_relative = 1;
a4acb0eb 866 *hdrsize = git_hdr_len;
c1bb9350
LT
867 return offset;
868 }
869
870 /** --- followed by +++ ? */
871 if (memcmp("--- ", line, 4) || memcmp("+++ ", line + len, 4))
872 continue;
873
874 /*
875 * We only accept unified patches, so we want it to
876 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
877 * minimum
878 */
879 nextlen = linelen(line + len, size - len);
880 if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4))
881 continue;
882
883 /* Ok, we'll consider it a patch */
19c58fb8 884 parse_traditional_patch(line, line+len, patch);
c1bb9350 885 *hdrsize = len + nextlen;
46979f56 886 linenr += 2;
c1bb9350
LT
887 return offset;
888 }
889 return -1;
890}
891
d0c25035
JH
892static void check_whitespace(const char *line, int len)
893{
894 const char *err = "Adds trailing whitespace";
895 int seen_space = 0;
896 int i;
897
898 /*
899 * We know len is at least two, since we have a '+' and we
900 * checked that the last character was a '\n' before calling
901 * this function. That is, an addition of an empty line would
902 * check the '+' here. Sneaky...
903 */
904 if (isspace(line[len-2]))
905 goto error;
906
907 /*
908 * Make sure that there is no space followed by a tab in
909 * indentation.
910 */
911 err = "Space in indent is followed by a tab";
912 for (i = 1; i < len; i++) {
913 if (line[i] == '\t') {
914 if (seen_space)
915 goto error;
916 }
917 else if (line[i] == ' ')
918 seen_space = 1;
919 else
920 break;
921 }
922 return;
923
924 error:
925 whitespace_error++;
926 if (squelch_whitespace_errors &&
927 squelch_whitespace_errors < whitespace_error)
928 ;
929 else
930 fprintf(stderr, "%s.\n%s:%d:%.*s\n",
931 err, patch_input_file, linenr, len-2, line+1);
932}
933
934
c1bb9350 935/*
4be60962
JH
936 * Parse a unified diff. Note that this really needs to parse each
937 * fragment separately, since the only way to know the difference
938 * between a "---" that is part of a patch, and a "---" that starts
939 * the next patch is to look at the line counts..
c1bb9350 940 */
19c58fb8 941static int parse_fragment(char *line, unsigned long size, struct patch *patch, struct fragment *fragment)
c1bb9350 942{
3f40315a 943 int added, deleted;
c1bb9350 944 int len = linelen(line, size), offset;
30996652 945 unsigned long oldlines, newlines;
47495887 946 unsigned long leading, trailing;
c1bb9350 947
19c58fb8 948 offset = parse_fragment_header(line, len, fragment);
c1bb9350
LT
949 if (offset < 0)
950 return -1;
19c58fb8
LT
951 oldlines = fragment->oldlines;
952 newlines = fragment->newlines;
47495887
EB
953 leading = 0;
954 trailing = 0;
c1bb9350
LT
955
956 /* Parse the thing.. */
957 line += len;
958 size -= len;
46979f56 959 linenr++;
3f40315a 960 added = deleted = 0;
4be60962
JH
961 for (offset = len;
962 0 < size;
963 offset += len, size -= len, line += len, linenr++) {
c1bb9350
LT
964 if (!oldlines && !newlines)
965 break;
966 len = linelen(line, size);
967 if (!len || line[len-1] != '\n')
968 return -1;
969 switch (*line) {
970 default:
971 return -1;
b507b465 972 case '\n': /* newer GNU diff, an empty context line */
c1bb9350
LT
973 case ' ':
974 oldlines--;
975 newlines--;
47495887
EB
976 if (!deleted && !added)
977 leading++;
978 trailing++;
c1bb9350
LT
979 break;
980 case '-':
5fda48d6
JS
981 if (apply_in_reverse &&
982 new_whitespace != nowarn_whitespace)
983 check_whitespace(line, len);
3f40315a 984 deleted++;
c1bb9350 985 oldlines--;
47495887 986 trailing = 0;
c1bb9350
LT
987 break;
988 case '+':
5fda48d6
JS
989 if (!apply_in_reverse &&
990 new_whitespace != nowarn_whitespace)
d0c25035 991 check_whitespace(line, len);
3f40315a 992 added++;
c1bb9350 993 newlines--;
47495887 994 trailing = 0;
c1bb9350 995 break;
433ef8a2
FK
996
997 /* We allow "\ No newline at end of file". Depending
998 * on locale settings when the patch was produced we
999 * don't know what this line looks like. The only
56d33b11
JH
1000 * thing we do know is that it begins with "\ ".
1001 * Checking for 12 is just for sanity check -- any
1002 * l10n of "\ No newline..." is at least that long.
1003 */
fab2c257 1004 case '\\':
433ef8a2 1005 if (len < 12 || memcmp(line, "\\ ", 2))
3cca928d 1006 return -1;
fab2c257 1007 break;
c1bb9350
LT
1008 }
1009 }
c1504628
LT
1010 if (oldlines || newlines)
1011 return -1;
47495887
EB
1012 fragment->leading = leading;
1013 fragment->trailing = trailing;
1014
8b64647d
JH
1015 /* If a fragment ends with an incomplete line, we failed to include
1016 * it in the above loop because we hit oldlines == newlines == 0
1017 * before seeing it.
1018 */
433ef8a2 1019 if (12 < size && !memcmp(line, "\\ ", 2))
8b64647d
JH
1020 offset += linelen(line, size);
1021
3f40315a
LT
1022 patch->lines_added += added;
1023 patch->lines_deleted += deleted;
4be60962
JH
1024
1025 if (0 < patch->is_new && oldlines)
1026 return error("new file depends on old contents");
1027 if (0 < patch->is_delete && newlines)
1028 return error("deleted file still has contents");
c1bb9350
LT
1029 return offset;
1030}
1031
19c58fb8 1032static int parse_single_patch(char *line, unsigned long size, struct patch *patch)
c1bb9350
LT
1033{
1034 unsigned long offset = 0;
4be60962 1035 unsigned long oldlines = 0, newlines = 0, context = 0;
19c58fb8 1036 struct fragment **fragp = &patch->fragments;
c1bb9350
LT
1037
1038 while (size > 4 && !memcmp(line, "@@ -", 4)) {
19c58fb8
LT
1039 struct fragment *fragment;
1040 int len;
1041
90321c10 1042 fragment = xcalloc(1, sizeof(*fragment));
19c58fb8 1043 len = parse_fragment(line, size, patch, fragment);
c1bb9350 1044 if (len <= 0)
46979f56 1045 die("corrupt patch at line %d", linenr);
19c58fb8
LT
1046 fragment->patch = line;
1047 fragment->size = len;
4be60962
JH
1048 oldlines += fragment->oldlines;
1049 newlines += fragment->newlines;
1050 context += fragment->leading + fragment->trailing;
19c58fb8
LT
1051
1052 *fragp = fragment;
1053 fragp = &fragment->next;
c1bb9350
LT
1054
1055 offset += len;
1056 line += len;
1057 size -= len;
1058 }
4be60962
JH
1059
1060 /*
1061 * If something was removed (i.e. we have old-lines) it cannot
1062 * be creation, and if something was added it cannot be
1063 * deletion. However, the reverse is not true; --unified=0
1064 * patches that only add are not necessarily creation even
1065 * though they do not have any old lines, and ones that only
1066 * delete are not necessarily deletion.
1067 *
1068 * Unfortunately, a real creation/deletion patch do _not_ have
1069 * any context line by definition, so we cannot safely tell it
1070 * apart with --unified=0 insanity. At least if the patch has
1071 * more than one hunk it is not creation or deletion.
1072 */
1073 if (patch->is_new < 0 &&
1074 (oldlines || (patch->fragments && patch->fragments->next)))
1075 patch->is_new = 0;
1076 if (patch->is_delete < 0 &&
1077 (newlines || (patch->fragments && patch->fragments->next)))
1078 patch->is_delete = 0;
1079 if (!unidiff_zero || context) {
1080 /* If the user says the patch is not generated with
1081 * --unified=0, or if we have seen context lines,
1082 * then not having oldlines means the patch is creation,
1083 * and not having newlines means the patch is deletion.
1084 */
6f9f3b26 1085 if (patch->is_new < 0 && !oldlines) {
4be60962 1086 patch->is_new = 1;
6f9f3b26
JH
1087 patch->old_name = NULL;
1088 }
1089 if (patch->is_delete < 0 && !newlines) {
4be60962 1090 patch->is_delete = 1;
6f9f3b26
JH
1091 patch->new_name = NULL;
1092 }
4be60962
JH
1093 }
1094
1095 if (0 < patch->is_new && oldlines)
1096 die("new file %s depends on old contents", patch->new_name);
1097 if (0 < patch->is_delete && newlines)
1098 die("deleted file %s still has contents", patch->old_name);
1099 if (!patch->is_delete && !newlines && context)
1100 fprintf(stderr, "** warning: file %s becomes empty but "
1101 "is not deleted\n", patch->new_name);
1102
c1bb9350
LT
1103 return offset;
1104}
1105
1fea629f
LT
1106static inline int metadata_changes(struct patch *patch)
1107{
1108 return patch->is_rename > 0 ||
1109 patch->is_copy > 0 ||
1110 patch->is_new > 0 ||
1111 patch->is_delete ||
1112 (patch->old_mode && patch->new_mode &&
1113 patch->old_mode != patch->new_mode);
1114}
1115
3cd4f5e8
JH
1116static char *inflate_it(const void *data, unsigned long size,
1117 unsigned long inflated_size)
051308f6 1118{
3cd4f5e8
JH
1119 z_stream stream;
1120 void *out;
1121 int st;
1122
1123 memset(&stream, 0, sizeof(stream));
1124
1125 stream.next_in = (unsigned char *)data;
1126 stream.avail_in = size;
1127 stream.next_out = out = xmalloc(inflated_size);
1128 stream.avail_out = inflated_size;
1129 inflateInit(&stream);
1130 st = inflate(&stream, Z_FINISH);
1131 if ((st != Z_STREAM_END) || stream.total_out != inflated_size) {
1132 free(out);
1133 return NULL;
1134 }
1135 return out;
1136}
1137
1138static struct fragment *parse_binary_hunk(char **buf_p,
1139 unsigned long *sz_p,
1140 int *status_p,
1141 int *used_p)
1142{
1143 /* Expect a line that begins with binary patch method ("literal"
1144 * or "delta"), followed by the length of data before deflating.
1145 * a sequence of 'length-byte' followed by base-85 encoded data
1146 * should follow, terminated by a newline.
051308f6
JH
1147 *
1148 * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1149 * and we would limit the patch line to 66 characters,
1150 * so one line can fit up to 13 groups that would decode
1151 * to 52 bytes max. The length byte 'A'-'Z' corresponds
1152 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
051308f6
JH
1153 */
1154 int llen, used;
3cd4f5e8
JH
1155 unsigned long size = *sz_p;
1156 char *buffer = *buf_p;
1157 int patch_method;
1158 unsigned long origlen;
0660626c 1159 char *data = NULL;
3cd4f5e8
JH
1160 int hunk_size = 0;
1161 struct fragment *frag;
051308f6 1162
0660626c
JH
1163 llen = linelen(buffer, size);
1164 used = llen;
3cd4f5e8
JH
1165
1166 *status_p = 0;
0660626c 1167
cc44c765 1168 if (!prefixcmp(buffer, "delta ")) {
3cd4f5e8
JH
1169 patch_method = BINARY_DELTA_DEFLATED;
1170 origlen = strtoul(buffer + 6, NULL, 10);
0660626c 1171 }
cc44c765 1172 else if (!prefixcmp(buffer, "literal ")) {
3cd4f5e8
JH
1173 patch_method = BINARY_LITERAL_DEFLATED;
1174 origlen = strtoul(buffer + 8, NULL, 10);
0660626c
JH
1175 }
1176 else
3cd4f5e8
JH
1177 return NULL;
1178
1179 linenr++;
0660626c 1180 buffer += llen;
051308f6
JH
1181 while (1) {
1182 int byte_length, max_byte_length, newsize;
1183 llen = linelen(buffer, size);
1184 used += llen;
1185 linenr++;
03eb8f8a
JH
1186 if (llen == 1) {
1187 /* consume the blank line */
1188 buffer++;
1189 size--;
051308f6 1190 break;
03eb8f8a 1191 }
051308f6
JH
1192 /* Minimum line is "A00000\n" which is 7-byte long,
1193 * and the line length must be multiple of 5 plus 2.
1194 */
1195 if ((llen < 7) || (llen-2) % 5)
1196 goto corrupt;
1197 max_byte_length = (llen - 2) / 5 * 4;
1198 byte_length = *buffer;
1199 if ('A' <= byte_length && byte_length <= 'Z')
1200 byte_length = byte_length - 'A' + 1;
1201 else if ('a' <= byte_length && byte_length <= 'z')
1202 byte_length = byte_length - 'a' + 27;
1203 else
1204 goto corrupt;
1205 /* if the input length was not multiple of 4, we would
1206 * have filler at the end but the filler should never
1207 * exceed 3 bytes
1208 */
1209 if (max_byte_length < byte_length ||
1210 byte_length <= max_byte_length - 4)
1211 goto corrupt;
3cd4f5e8 1212 newsize = hunk_size + byte_length;
0660626c 1213 data = xrealloc(data, newsize);
3cd4f5e8 1214 if (decode_85(data + hunk_size, buffer + 1, byte_length))
051308f6 1215 goto corrupt;
3cd4f5e8 1216 hunk_size = newsize;
051308f6
JH
1217 buffer += llen;
1218 size -= llen;
1219 }
3cd4f5e8
JH
1220
1221 frag = xcalloc(1, sizeof(*frag));
1222 frag->patch = inflate_it(data, hunk_size, origlen);
1223 if (!frag->patch)
1224 goto corrupt;
1225 free(data);
1226 frag->size = origlen;
1227 *buf_p = buffer;
1228 *sz_p = size;
1229 *used_p = used;
1230 frag->binary_patch_method = patch_method;
1231 return frag;
1232
051308f6 1233 corrupt:
4cac42b1 1234 free(data);
3cd4f5e8
JH
1235 *status_p = -1;
1236 error("corrupt binary patch at line %d: %.*s",
1237 linenr-1, llen-1, buffer);
1238 return NULL;
1239}
1240
1241static int parse_binary(char *buffer, unsigned long size, struct patch *patch)
1242{
1243 /* We have read "GIT binary patch\n"; what follows is a line
1244 * that says the patch method (currently, either "literal" or
1245 * "delta") and the length of data before deflating; a
1246 * sequence of 'length-byte' followed by base-85 encoded data
1247 * follows.
1248 *
1249 * When a binary patch is reversible, there is another binary
1250 * hunk in the same format, starting with patch method (either
1251 * "literal" or "delta") with the length of data, and a sequence
1252 * of length-byte + base-85 encoded data, terminated with another
1253 * empty line. This data, when applied to the postimage, produces
1254 * the preimage.
1255 */
1256 struct fragment *forward;
1257 struct fragment *reverse;
1258 int status;
1259 int used, used_1;
1260
1261 forward = parse_binary_hunk(&buffer, &size, &status, &used);
1262 if (!forward && !status)
1263 /* there has to be one hunk (forward hunk) */
1264 return error("unrecognized binary patch at line %d", linenr-1);
1265 if (status)
1266 /* otherwise we already gave an error message */
1267 return status;
1268
1269 reverse = parse_binary_hunk(&buffer, &size, &status, &used_1);
1270 if (reverse)
1271 used += used_1;
1272 else if (status) {
1273 /* not having reverse hunk is not an error, but having
1274 * a corrupt reverse hunk is.
1275 */
1276 free((void*) forward->patch);
1277 free(forward);
1278 return status;
1279 }
1280 forward->next = reverse;
1281 patch->fragments = forward;
1282 patch->is_binary = 1;
1283 return used;
051308f6
JH
1284}
1285
19c58fb8 1286static int parse_chunk(char *buffer, unsigned long size, struct patch *patch)
c1bb9350
LT
1287{
1288 int hdrsize, patchsize;
19c58fb8 1289 int offset = find_header(buffer, size, &hdrsize, patch);
c1bb9350
LT
1290
1291 if (offset < 0)
1292 return offset;
c1bb9350 1293
19c58fb8 1294 patchsize = parse_single_patch(buffer + offset + hdrsize, size - offset - hdrsize, patch);
c1bb9350 1295
92927ed0 1296 if (!patchsize) {
3200d1ae
JH
1297 static const char *binhdr[] = {
1298 "Binary files ",
1299 "Files ",
1300 NULL,
1301 };
051308f6 1302 static const char git_binary[] = "GIT binary patch\n";
3200d1ae
JH
1303 int i;
1304 int hd = hdrsize + offset;
1305 unsigned long llen = linelen(buffer + hd, size - hd);
1306
051308f6
JH
1307 if (llen == sizeof(git_binary) - 1 &&
1308 !memcmp(git_binary, buffer + hd, llen)) {
1309 int used;
1310 linenr++;
1311 used = parse_binary(buffer + hd + llen,
1312 size - hd - llen, patch);
1313 if (used)
1314 patchsize = used + llen;
1315 else
1316 patchsize = 0;
1317 }
1318 else if (!memcmp(" differ\n", buffer + hd + llen - 8, 8)) {
3200d1ae
JH
1319 for (i = 0; binhdr[i]; i++) {
1320 int len = strlen(binhdr[i]);
1321 if (len < size - hd &&
1322 !memcmp(binhdr[i], buffer + hd, len)) {
051308f6 1323 linenr++;
3200d1ae 1324 patch->is_binary = 1;
051308f6 1325 patchsize = llen;
3200d1ae
JH
1326 break;
1327 }
1328 }
051308f6 1329 }
ff36de08 1330
2b6eef94
JH
1331 /* Empty patch cannot be applied if it is a text patch
1332 * without metadata change. A binary patch appears
1333 * empty to us here.
92927ed0
JH
1334 */
1335 if ((apply || check) &&
2b6eef94 1336 (!patch->is_binary && !metadata_changes(patch)))
ff36de08
JH
1337 die("patch with only garbage at line %d", linenr);
1338 }
1fea629f 1339
c1bb9350
LT
1340 return offset + hdrsize + patchsize;
1341}
1342
e5a94313
JS
1343#define swap(a,b) myswap((a),(b),sizeof(a))
1344
1345#define myswap(a, b, size) do { \
1346 unsigned char mytmp[size]; \
1347 memcpy(mytmp, &a, size); \
1348 memcpy(&a, &b, size); \
1349 memcpy(&b, mytmp, size); \
1350} while (0)
1351
1352static void reverse_patches(struct patch *p)
1353{
1354 for (; p; p = p->next) {
1355 struct fragment *frag = p->fragments;
1356
1357 swap(p->new_name, p->old_name);
1358 swap(p->new_mode, p->old_mode);
1359 swap(p->is_new, p->is_delete);
1360 swap(p->lines_added, p->lines_deleted);
1361 swap(p->old_sha1_prefix, p->new_sha1_prefix);
1362
1363 for (; frag; frag = frag->next) {
1364 swap(frag->newpos, frag->oldpos);
1365 swap(frag->newlines, frag->oldlines);
1366 }
e5a94313
JS
1367 }
1368}
1369
6da4016a
LT
1370static const char pluses[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
1371static const char minuses[]= "----------------------------------------------------------------------";
3f40315a
LT
1372
1373static void show_stats(struct patch *patch)
1374{
663af342
PH
1375 struct strbuf qname;
1376 char *cp = patch->new_name ? patch->new_name : patch->old_name;
1377 int max, add, del;
3f40315a 1378
663af342
PH
1379 strbuf_init(&qname, 0);
1380 quote_c_style(cp, &qname, NULL, 0);
22943f1a 1381
3f40315a
LT
1382 /*
1383 * "scale" the filename
1384 */
3f40315a
LT
1385 max = max_len;
1386 if (max > 50)
1387 max = 50;
663af342
PH
1388
1389 if (qname.len > max) {
1390 cp = strchr(qname.buf + qname.len + 3 - max, '/');
1391 if (!cp)
1392 cp = qname.buf + qname.len + 3 - max;
1393 strbuf_splice(&qname, 0, cp - qname.buf, "...", 3);
1394 }
1395
1396 if (patch->is_binary) {
1397 printf(" %-*s | Bin\n", max, qname.buf);
1398 strbuf_release(&qname);
1399 return;
62917097 1400 }
663af342
PH
1401
1402 printf(" %-*s |", max, qname.buf);
1403 strbuf_release(&qname);
3f40315a
LT
1404
1405 /*
1406 * scale the add/delete
1407 */
663af342 1408 max = max + max_change > 70 ? 70 - max : max_change;
95bedc9e
LT
1409 add = patch->lines_added;
1410 del = patch->lines_deleted;
95bedc9e 1411
69f956e1 1412 if (max_change > 0) {
663af342 1413 int total = ((add + del) * max + max_change / 2) / max_change;
69f956e1
SV
1414 add = (add * max + max_change / 2) / max_change;
1415 del = total - add;
1416 }
663af342
PH
1417 printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted,
1418 add, pluses, del, minuses);
3f40315a
LT
1419}
1420
c7f9cb14 1421static int read_old_data(struct stat *st, const char *path, struct strbuf *buf)
3cca928d 1422{
3cca928d
LT
1423 switch (st->st_mode & S_IFMT) {
1424 case S_IFLNK:
c7f9cb14
PH
1425 strbuf_grow(buf, st->st_size);
1426 if (readlink(path, buf->buf, st->st_size) != st->st_size)
1427 return -1;
1428 strbuf_setlen(buf, st->st_size);
1429 return 0;
3cca928d 1430 case S_IFREG:
387e7e19
PH
1431 if (strbuf_read_file(buf, path, st->st_size) != st->st_size)
1432 return error("unable to open or read %s", path);
c7f9cb14
PH
1433 convert_to_git(path, buf->buf, buf->len, buf);
1434 return 0;
3cca928d
LT
1435 default:
1436 return -1;
1437 }
1438}
1439
47495887 1440static int find_offset(const char *buf, unsigned long size, const char *fragment, unsigned long fragsize, int line, int *lines)
3cca928d 1441{
6e7c92a9
LT
1442 int i;
1443 unsigned long start, backwards, forwards;
3cca928d
LT
1444
1445 if (fragsize > size)
1446 return -1;
1447
1448 start = 0;
1449 if (line > 1) {
3cca928d 1450 unsigned long offset = 0;
6e7c92a9
LT
1451 i = line-1;
1452 while (offset + fragsize <= size) {
3cca928d
LT
1453 if (buf[offset++] == '\n') {
1454 start = offset;
6e7c92a9 1455 if (!--i)
3cca928d
LT
1456 break;
1457 }
1458 }
1459 }
1460
1461 /* Exact line number? */
6b763c42
JH
1462 if ((start + fragsize <= size) &&
1463 !memcmp(buf + start, fragment, fragsize))
3cca928d
LT
1464 return start;
1465
6e7c92a9
LT
1466 /*
1467 * There's probably some smart way to do this, but I'll leave
1468 * that to the smart and beautiful people. I'm simple and stupid.
1469 */
1470 backwards = start;
1471 forwards = start;
1472 for (i = 0; ; i++) {
1473 unsigned long try;
1474 int n;
1475
1476 /* "backward" */
1477 if (i & 1) {
1478 if (!backwards) {
1479 if (forwards + fragsize > size)
1480 break;
1481 continue;
1482 }
1483 do {
1484 --backwards;
1485 } while (backwards && buf[backwards-1] != '\n');
1486 try = backwards;
1487 } else {
1488 while (forwards + fragsize <= size) {
1489 if (buf[forwards++] == '\n')
1490 break;
1491 }
1492 try = forwards;
1493 }
1494
1495 if (try + fragsize > size)
1496 continue;
1497 if (memcmp(buf + try, fragment, fragsize))
1498 continue;
1499 n = (i >> 1)+1;
1500 if (i & 1)
1501 n = -n;
47495887 1502 *lines = n;
6e7c92a9
LT
1503 return try;
1504 }
1505
3cca928d
LT
1506 /*
1507 * We should start searching forward and backward.
1508 */
1509 return -1;
1510}
1511
47495887
EB
1512static void remove_first_line(const char **rbuf, int *rsize)
1513{
1514 const char *buf = *rbuf;
1515 int size = *rsize;
1516 unsigned long offset;
1517 offset = 0;
1518 while (offset <= size) {
1519 if (buf[offset++] == '\n')
1520 break;
1521 }
1522 *rsize = size - offset;
1523 *rbuf = buf + offset;
1524}
1525
1526static void remove_last_line(const char **rbuf, int *rsize)
1527{
1528 const char *buf = *rbuf;
1529 int size = *rsize;
1530 unsigned long offset;
1531 offset = size - 1;
1532 while (offset > 0) {
1533 if (buf[--offset] == '\n')
1534 break;
1535 }
1536 *rsize = offset + 1;
1537}
1538
b5767dd6
JH
1539static int apply_line(char *output, const char *patch, int plen)
1540{
1541 /* plen is number of bytes to be copied from patch,
1542 * starting at patch+1 (patch[0] is '+'). Typically
d0c25035
JH
1543 * patch[plen] is '\n', unless this is the incomplete
1544 * last line.
b5767dd6 1545 */
d0c25035 1546 int i;
b5767dd6 1547 int add_nl_to_tail = 0;
d0c25035
JH
1548 int fixed = 0;
1549 int last_tab_in_indent = -1;
1550 int last_space_in_indent = -1;
1551 int need_fix_leading_space = 0;
1552 char *buf;
1553
63e50d49
JH
1554 if ((new_whitespace != strip_whitespace) || !whitespace_error ||
1555 *patch != '+') {
d0c25035
JH
1556 memcpy(output, patch + 1, plen);
1557 return plen;
1558 }
1559
1560 if (1 < plen && isspace(patch[plen-1])) {
b5767dd6
JH
1561 if (patch[plen] == '\n')
1562 add_nl_to_tail = 1;
1563 plen--;
1564 while (0 < plen && isspace(patch[plen]))
1565 plen--;
d0c25035 1566 fixed = 1;
b5767dd6 1567 }
d0c25035
JH
1568
1569 for (i = 1; i < plen; i++) {
1570 char ch = patch[i];
1571 if (ch == '\t') {
1572 last_tab_in_indent = i;
1573 if (0 <= last_space_in_indent)
1574 need_fix_leading_space = 1;
1575 }
1576 else if (ch == ' ')
1577 last_space_in_indent = i;
1578 else
1579 break;
1580 }
1581
1582 buf = output;
1583 if (need_fix_leading_space) {
d7416eca 1584 int consecutive_spaces = 0;
d0c25035
JH
1585 /* between patch[1..last_tab_in_indent] strip the
1586 * funny spaces, updating them to tab as needed.
1587 */
1588 for (i = 1; i < last_tab_in_indent; i++, plen--) {
1589 char ch = patch[i];
d7416eca
BF
1590 if (ch != ' ') {
1591 consecutive_spaces = 0;
d0c25035 1592 *output++ = ch;
d7416eca
BF
1593 } else {
1594 consecutive_spaces++;
1595 if (consecutive_spaces == 8) {
1596 *output++ = '\t';
1597 consecutive_spaces = 0;
1598 }
1599 }
d0c25035
JH
1600 }
1601 fixed = 1;
1602 i = last_tab_in_indent;
1603 }
1604 else
1605 i = 1;
1606
1607 memcpy(output, patch + i, plen);
b5767dd6
JH
1608 if (add_nl_to_tail)
1609 output[plen++] = '\n';
d0c25035 1610 if (fixed)
c94bf41c 1611 applied_after_fixing_ws++;
d0c25035 1612 return output + plen - buf;
b5767dd6
JH
1613}
1614
c7f9cb14 1615static int apply_one_fragment(struct strbuf *buf, struct fragment *frag, int inaccurate_eof)
3cca928d 1616{
65aadb92 1617 int match_beginning, match_end;
3cca928d
LT
1618 const char *patch = frag->patch;
1619 int offset, size = frag->size;
1620 char *old = xmalloc(size);
1621 char *new = xmalloc(size);
47495887 1622 const char *oldlines, *newlines;
3cca928d 1623 int oldsize = 0, newsize = 0;
077e1af5 1624 int new_blank_lines_at_end = 0;
47495887
EB
1625 unsigned long leading, trailing;
1626 int pos, lines;
3cca928d
LT
1627
1628 while (size > 0) {
e5a94313 1629 char first;
3cca928d
LT
1630 int len = linelen(patch, size);
1631 int plen;
077e1af5 1632 int added_blank_line = 0;
3cca928d
LT
1633
1634 if (!len)
1635 break;
1636
1637 /*
1638 * "plen" is how much of the line we should use for
1639 * the actual patch data. Normally we just remove the
1640 * first character on the line, but if the line is
1641 * followed by "\ No newline", then we also remove the
1642 * last one (which is the newline, of course).
1643 */
1644 plen = len-1;
8b64647d 1645 if (len < size && patch[len] == '\\')
3cca928d 1646 plen--;
e5a94313 1647 first = *patch;
f686d030 1648 if (apply_in_reverse) {
e5a94313
JS
1649 if (first == '-')
1650 first = '+';
1651 else if (first == '+')
1652 first = '-';
1653 }
efe7f358 1654
e5a94313 1655 switch (first) {
b507b465
LT
1656 case '\n':
1657 /* Newer GNU diff, empty context line */
1658 if (plen < 0)
1659 /* ... followed by '\No newline'; nothing */
1660 break;
1661 old[oldsize++] = '\n';
1662 new[newsize++] = '\n';
1663 break;
3cca928d
LT
1664 case ' ':
1665 case '-':
1666 memcpy(old + oldsize, patch + 1, plen);
1667 oldsize += plen;
e5a94313 1668 if (first == '-')
3cca928d
LT
1669 break;
1670 /* Fall-through for ' ' */
1671 case '+':
077e1af5
JH
1672 if (first != '+' || !no_add) {
1673 int added = apply_line(new + newsize, patch,
1674 plen);
1675 newsize += added;
1676 if (first == '+' &&
1677 added == 1 && new[newsize-1] == '\n')
1678 added_blank_line = 1;
1679 }
3cca928d
LT
1680 break;
1681 case '@': case '\\':
1682 /* Ignore it, we already handled it */
1683 break;
1684 default:
aeabfa07
JS
1685 if (apply_verbosely)
1686 error("invalid start of line: '%c'", first);
3cca928d
LT
1687 return -1;
1688 }
077e1af5
JH
1689 if (added_blank_line)
1690 new_blank_lines_at_end++;
1691 else
1692 new_blank_lines_at_end = 0;
3cca928d
LT
1693 patch += len;
1694 size -= len;
1695 }
1696
3eaa38da 1697 if (inaccurate_eof && oldsize > 0 && old[oldsize - 1] == '\n' &&
5b5d4d9e
JS
1698 newsize > 0 && new[newsize - 1] == '\n') {
1699 oldsize--;
1700 newsize--;
1701 }
47495887
EB
1702
1703 oldlines = old;
1704 newlines = new;
1705 leading = frag->leading;
1706 trailing = frag->trailing;
1bf1a859
LT
1707
1708 /*
65aadb92
JH
1709 * If we don't have any leading/trailing data in the patch,
1710 * we want it to match at the beginning/end of the file.
4be60962
JH
1711 *
1712 * But that would break if the patch is generated with
1713 * --unified=0; sane people wouldn't do that to cause us
1714 * trouble, but we try to please not so sane ones as well.
1bf1a859 1715 */
4be60962
JH
1716 if (unidiff_zero) {
1717 match_beginning = (!leading && !frag->oldpos);
1718 match_end = 0;
1719 }
1720 else {
1721 match_beginning = !leading && (frag->oldpos == 1);
1722 match_end = !trailing;
1723 }
1bf1a859 1724
47495887
EB
1725 lines = 0;
1726 pos = frag->newpos;
1727 for (;;) {
c7f9cb14 1728 offset = find_offset(buf->buf, buf->len,
57dc397c 1729 oldlines, oldsize, pos, &lines);
c7f9cb14 1730 if (match_end && offset + oldsize != buf->len)
1bf1a859 1731 offset = -1;
65aadb92
JH
1732 if (match_beginning && offset)
1733 offset = -1;
47495887 1734 if (offset >= 0) {
efe7f358 1735 if (new_whitespace == strip_whitespace &&
c7f9cb14 1736 (buf->len - oldsize - offset == 0)) /* end of file? */
077e1af5 1737 newsize -= new_blank_lines_at_end;
efe7f358 1738
47495887
EB
1739 /* Warn if it was necessary to reduce the number
1740 * of context lines.
1741 */
57dc397c
JH
1742 if ((leading != frag->leading) ||
1743 (trailing != frag->trailing))
1744 fprintf(stderr, "Context reduced to (%ld/%ld)"
1745 " to apply fragment at %d\n",
47495887
EB
1746 leading, trailing, pos + lines);
1747
c7f9cb14 1748 strbuf_splice(buf, offset, oldsize, newlines, newsize);
47495887 1749 offset = 0;
47495887
EB
1750 break;
1751 }
1752
1753 /* Am I at my context limits? */
1754 if ((leading <= p_context) && (trailing <= p_context))
1755 break;
65aadb92
JH
1756 if (match_beginning || match_end) {
1757 match_beginning = match_end = 0;
1bf1a859
LT
1758 continue;
1759 }
47495887
EB
1760 /* Reduce the number of context lines
1761 * Reduce both leading and trailing if they are equal
1762 * otherwise just reduce the larger context.
1763 */
1764 if (leading >= trailing) {
1765 remove_first_line(&oldlines, &oldsize);
1766 remove_first_line(&newlines, &newsize);
1767 pos--;
1768 leading--;
1769 }
1770 if (trailing > leading) {
1771 remove_last_line(&oldlines, &oldsize);
1772 remove_last_line(&newlines, &newsize);
1773 trailing--;
6e7c92a9 1774 }
3cca928d
LT
1775 }
1776
aeabfa07
JS
1777 if (offset && apply_verbosely)
1778 error("while searching for:\n%.*s", oldsize, oldlines);
1779
3cca928d
LT
1780 free(old);
1781 free(new);
1782 return offset;
1783}
1784
c7f9cb14 1785static int apply_binary_fragment(struct strbuf *buf, struct patch *patch)
0660626c 1786{
0660626c 1787 struct fragment *fragment = patch->fragments;
c7f9cb14
PH
1788 unsigned long len;
1789 void *dst;
0660626c 1790
3cd4f5e8
JH
1791 /* Binary patch is irreversible without the optional second hunk */
1792 if (apply_in_reverse) {
1793 if (!fragment->next)
1794 return error("cannot reverse-apply a binary patch "
1795 "without the reverse hunk to '%s'",
1796 patch->new_name
1797 ? patch->new_name : patch->old_name);
03eb8f8a 1798 fragment = fragment->next;
3cd4f5e8 1799 }
3cd4f5e8 1800 switch (fragment->binary_patch_method) {
0660626c 1801 case BINARY_DELTA_DEFLATED:
c7f9cb14
PH
1802 dst = patch_delta(buf->buf, buf->len, fragment->patch,
1803 fragment->size, &len);
1804 if (!dst)
1805 return -1;
1806 /* XXX patch_delta NUL-terminates */
1807 strbuf_attach(buf, dst, len, len + 1);
1808 return 0;
0660626c 1809 case BINARY_LITERAL_DEFLATED:
c7f9cb14
PH
1810 strbuf_reset(buf);
1811 strbuf_add(buf, fragment->patch, fragment->size);
1812 return 0;
0660626c 1813 }
c7f9cb14 1814 return -1;
0660626c
JH
1815}
1816
c7f9cb14 1817static int apply_binary(struct strbuf *buf, struct patch *patch)
3cca928d 1818{
011f4274 1819 const char *name = patch->old_name ? patch->old_name : patch->new_name;
051308f6 1820 unsigned char sha1[20];
011f4274 1821
051308f6
JH
1822 /* For safety, we require patch index line to contain
1823 * full 40-byte textual SHA1 for old and new, at least for now.
1824 */
1825 if (strlen(patch->old_sha1_prefix) != 40 ||
1826 strlen(patch->new_sha1_prefix) != 40 ||
1827 get_sha1_hex(patch->old_sha1_prefix, sha1) ||
1828 get_sha1_hex(patch->new_sha1_prefix, sha1))
1829 return error("cannot apply binary patch to '%s' "
1830 "without full index line", name);
011f4274 1831
051308f6
JH
1832 if (patch->old_name) {
1833 /* See if the old one matches what the patch
1834 * applies to.
011f4274 1835 */
c7f9cb14 1836 hash_sha1_file(buf->buf, buf->len, blob_type, sha1);
051308f6
JH
1837 if (strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))
1838 return error("the patch applies to '%s' (%s), "
1839 "which does not match the "
1840 "current contents.",
1841 name, sha1_to_hex(sha1));
1842 }
1843 else {
1844 /* Otherwise, the old one must be empty. */
c7f9cb14 1845 if (buf->len)
051308f6
JH
1846 return error("the patch applies to an empty "
1847 "'%s' but it is not empty", name);
1848 }
011f4274 1849
0660626c 1850 get_sha1_hex(patch->new_sha1_prefix, sha1);
0bef57ee 1851 if (is_null_sha1(sha1)) {
c7f9cb14 1852 strbuf_release(buf);
051308f6 1853 return 0; /* deletion patch */
0660626c 1854 }
011f4274 1855
051308f6 1856 if (has_sha1_file(sha1)) {
0660626c 1857 /* We already have the postimage */
21666f1a 1858 enum object_type type;
051308f6 1859 unsigned long size;
c7f9cb14 1860 char *result;
051308f6 1861
c7f9cb14
PH
1862 result = read_sha1_file(sha1, &type, &size);
1863 if (!result)
051308f6
JH
1864 return error("the necessary postimage %s for "
1865 "'%s' cannot be read",
1866 patch->new_sha1_prefix, name);
c7f9cb14
PH
1867 /* XXX read_sha1_file NUL-terminates */
1868 strbuf_attach(buf, result, size, size + 1);
1869 } else {
1870 /* We have verified buf matches the preimage;
0660626c
JH
1871 * apply the patch data to it, which is stored
1872 * in the patch->fragments->{patch,size}.
011f4274 1873 */
c7f9cb14 1874 if (apply_binary_fragment(buf, patch))
051308f6
JH
1875 return error("binary patch does not apply to '%s'",
1876 name);
011f4274 1877
051308f6 1878 /* verify that the result matches */
c7f9cb14 1879 hash_sha1_file(buf->buf, buf->len, blob_type, sha1);
051308f6 1880 if (strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))
c7f9cb14
PH
1881 return error("binary patch to '%s' creates incorrect result (expecting %s, got %s)",
1882 name, patch->new_sha1_prefix, sha1_to_hex(sha1));
011f4274 1883 }
3cca928d 1884
051308f6
JH
1885 return 0;
1886}
1887
c7f9cb14 1888static int apply_fragments(struct strbuf *buf, struct patch *patch)
051308f6
JH
1889{
1890 struct fragment *frag = patch->fragments;
1891 const char *name = patch->old_name ? patch->old_name : patch->new_name;
1892
1893 if (patch->is_binary)
c7f9cb14 1894 return apply_binary(buf, patch);
051308f6 1895
3cca928d 1896 while (frag) {
c7f9cb14 1897 if (apply_one_fragment(buf, frag, patch->inaccurate_eof)) {
57dc397c
JH
1898 error("patch failed: %s:%ld", name, frag->oldpos);
1899 if (!apply_with_reject)
1900 return -1;
1901 frag->rejected = 1;
1902 }
3cca928d
LT
1903 frag = frag->next;
1904 }
30996652 1905 return 0;
3cca928d
LT
1906}
1907
c7f9cb14 1908static int read_file_or_gitlink(struct cache_entry *ce, struct strbuf *buf)
e06c5a6c
SV
1909{
1910 if (!ce)
1911 return 0;
1912
1913 if (S_ISGITLINK(ntohl(ce->ce_mode))) {
c7f9cb14
PH
1914 strbuf_grow(buf, 100);
1915 strbuf_addf(buf, "Subproject commit %s\n", sha1_to_hex(ce->sha1));
e06c5a6c
SV
1916 } else {
1917 enum object_type type;
c7f9cb14
PH
1918 unsigned long sz;
1919 char *result;
1920
1921 result = read_sha1_file(ce->sha1, &type, &sz);
1922 if (!result)
e06c5a6c 1923 return -1;
c7f9cb14
PH
1924 /* XXX read_sha1_file NUL-terminates */
1925 strbuf_attach(buf, result, sz, sz + 1);
e06c5a6c
SV
1926 }
1927 return 0;
1928}
1929
04e4888e 1930static int apply_data(struct patch *patch, struct stat *st, struct cache_entry *ce)
3cca928d 1931{
c7f9cb14 1932 struct strbuf buf;
3cca928d 1933
c7f9cb14 1934 strbuf_init(&buf, 0);
04e4888e 1935 if (cached) {
c7f9cb14 1936 if (read_file_or_gitlink(ce, &buf))
e06c5a6c 1937 return error("read of %s failed", patch->old_name);
e06c5a6c
SV
1938 } else if (patch->old_name) {
1939 if (S_ISGITLINK(patch->old_mode)) {
c7f9cb14
PH
1940 if (ce) {
1941 read_file_or_gitlink(ce, &buf);
1942 } else {
e06c5a6c
SV
1943 /*
1944 * There is no way to apply subproject
1945 * patch without looking at the index.
1946 */
1947 patch->fragments = NULL;
e06c5a6c 1948 }
c7f9cb14
PH
1949 } else {
1950 if (read_old_data(st, patch->old_name, &buf))
1951 return error("read of %s failed", patch->old_name);
04e4888e
JH
1952 }
1953 }
6e7c92a9 1954
c7f9cb14 1955 if (apply_fragments(&buf, patch) < 0)
57dc397c 1956 return -1; /* note with --reject this succeeds. */
b315c5c0 1957 patch->result = strbuf_detach(&buf, &patch->resultsize);
5aa7d94c 1958
4be60962 1959 if (0 < patch->is_delete && patch->resultsize)
5aa7d94c
LT
1960 return error("removal patch leaves file contents");
1961
3cca928d
LT
1962 return 0;
1963}
1964
64cab591
JH
1965static int check_to_create_blob(const char *new_name, int ok_if_exists)
1966{
1967 struct stat nst;
1968 if (!lstat(new_name, &nst)) {
1969 if (S_ISDIR(nst.st_mode) || ok_if_exists)
1970 return 0;
1971 /*
1972 * A leading component of new_name might be a symlink
1973 * that is going to be removed with this patch, but
1974 * still pointing at somewhere that has the path.
1975 * In such a case, path "new_name" does not exist as
1976 * far as git is concerned.
1977 */
1978 if (has_symlink_leading_path(new_name, NULL))
1979 return 0;
1980
1981 return error("%s: already exists in working directory", new_name);
1982 }
1983 else if ((errno != ENOENT) && (errno != ENOTDIR))
1984 return error("%s: %s", new_name, strerror(errno));
1985 return 0;
1986}
1987
e06c5a6c
SV
1988static int verify_index_match(struct cache_entry *ce, struct stat *st)
1989{
1990 if (S_ISGITLINK(ntohl(ce->ce_mode))) {
1991 if (!S_ISDIR(st->st_mode))
1992 return -1;
1993 return 0;
1994 }
4bd5b7da 1995 return ce_match_stat(ce, st, CE_MATCH_IGNORE_VALID);
e06c5a6c
SV
1996}
1997
7f95aef2 1998static int check_patch(struct patch *patch, struct patch *prev_patch)
fab2c257 1999{
a577284a 2000 struct stat st;
fab2c257
LT
2001 const char *old_name = patch->old_name;
2002 const char *new_name = patch->new_name;
011f4274 2003 const char *name = old_name ? old_name : new_name;
04e4888e 2004 struct cache_entry *ce = NULL;
7f95aef2 2005 int ok_if_exists;
fab2c257 2006
57dc397c 2007 patch->rejected = 1; /* we will drop this after we succeed */
e06c5a6c
SV
2008
2009 /*
2010 * Make sure that we do not have local modifications from the
2011 * index when we are looking at the index. Also make sure
2012 * we have the preimage file to be patched in the work tree,
2013 * unless --cached, which tells git to apply only in the index.
2014 */
fab2c257 2015 if (old_name) {
04e4888e
JH
2016 int stat_ret = 0;
2017 unsigned st_mode = 0;
a577284a 2018
04e4888e
JH
2019 if (!cached)
2020 stat_ret = lstat(old_name, &st);
3cca928d
LT
2021 if (check_index) {
2022 int pos = cache_name_pos(old_name, strlen(old_name));
2023 if (pos < 0)
56d33b11
JH
2024 return error("%s: does not exist in index",
2025 old_name);
04e4888e 2026 ce = active_cache[pos];
56d33b11
JH
2027 if (stat_ret < 0) {
2028 struct checkout costate;
2029 if (errno != ENOENT)
2030 return error("%s: %s", old_name,
2031 strerror(errno));
2032 /* checkout */
2033 costate.base_dir = "";
2034 costate.base_dir_len = 0;
2035 costate.force = 0;
2036 costate.quiet = 0;
2037 costate.not_new = 0;
2038 costate.refresh_cache = 1;
04e4888e 2039 if (checkout_entry(ce,
de84f99c
SP
2040 &costate,
2041 NULL) ||
56d33b11
JH
2042 lstat(old_name, &st))
2043 return -1;
2044 }
e06c5a6c 2045 if (!cached && verify_index_match(ce, &st))
56d33b11
JH
2046 return error("%s: does not match index",
2047 old_name);
04e4888e
JH
2048 if (cached)
2049 st_mode = ntohl(ce->ce_mode);
e06c5a6c 2050 } else if (stat_ret < 0)
56d33b11
JH
2051 return error("%s: %s", old_name, strerror(errno));
2052
04e4888e 2053 if (!cached)
185c975f 2054 st_mode = ntohl(ce_mode_from_stat(ce, st.st_mode));
04e4888e 2055
3cca928d
LT
2056 if (patch->is_new < 0)
2057 patch->is_new = 0;
a577284a 2058 if (!patch->old_mode)
04e4888e
JH
2059 patch->old_mode = st_mode;
2060 if ((st_mode ^ patch->old_mode) & S_IFMT)
3cca928d 2061 return error("%s: wrong type", old_name);
04e4888e 2062 if (st_mode != patch->old_mode)
3cca928d 2063 fprintf(stderr, "warning: %s has type %o, expected %o\n",
04e4888e 2064 old_name, st_mode, patch->old_mode);
fab2c257 2065 }
a577284a 2066
4be60962 2067 if (new_name && prev_patch && 0 < prev_patch->is_delete &&
7f95aef2
JH
2068 !strcmp(prev_patch->old_name, new_name))
2069 /* A type-change diff is always split into a patch to
2070 * delete old, immediately followed by a patch to
2071 * create new (see diff.c::run_diff()); in such a case
2072 * it is Ok that the entry to be deleted by the
2073 * previous patch is still in the working tree and in
2074 * the index.
2075 */
2076 ok_if_exists = 1;
2077 else
2078 ok_if_exists = 0;
2079
4be60962
JH
2080 if (new_name &&
2081 ((0 < patch->is_new) | (0 < patch->is_rename) | patch->is_copy)) {
7f95aef2
JH
2082 if (check_index &&
2083 cache_name_pos(new_name, strlen(new_name)) >= 0 &&
2084 !ok_if_exists)
a577284a 2085 return error("%s: already exists in index", new_name);
d91d4c2c 2086 if (!cached) {
64cab591
JH
2087 int err = check_to_create_blob(new_name, ok_if_exists);
2088 if (err)
2089 return err;
d91d4c2c 2090 }
35cc4bcd 2091 if (!patch->new_mode) {
4be60962 2092 if (0 < patch->is_new)
35cc4bcd
JS
2093 patch->new_mode = S_IFREG | 0644;
2094 else
2095 patch->new_mode = patch->old_mode;
2096 }
fab2c257 2097 }
3cca928d
LT
2098
2099 if (new_name && old_name) {
2100 int same = !strcmp(old_name, new_name);
2101 if (!patch->new_mode)
2102 patch->new_mode = patch->old_mode;
2103 if ((patch->old_mode ^ patch->new_mode) & S_IFMT)
2104 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
2105 patch->new_mode, new_name, patch->old_mode,
2106 same ? "" : " of ", same ? "" : old_name);
04e4888e 2107 }
3cca928d 2108
04e4888e 2109 if (apply_data(patch, &st, ce) < 0)
011f4274 2110 return error("%s: patch does not apply", name);
57dc397c 2111 patch->rejected = 0;
a577284a 2112 return 0;
fab2c257
LT
2113}
2114
a577284a 2115static int check_patch_list(struct patch *patch)
19c58fb8 2116{
7f95aef2 2117 struct patch *prev_patch = NULL;
60b7f38e 2118 int err = 0;
a577284a 2119
7f95aef2 2120 for (prev_patch = NULL; patch ; patch = patch->next) {
a2bf404e
JH
2121 if (apply_verbosely)
2122 say_patch_name(stderr,
2123 "Checking patch ", patch, "...\n");
60b7f38e 2124 err |= check_patch(patch, prev_patch);
7f95aef2
JH
2125 prev_patch = patch;
2126 }
60b7f38e 2127 return err;
a577284a
LT
2128}
2129
ece7b749
JS
2130/* This function tries to read the sha1 from the current index */
2131static int get_current_sha1(const char *path, unsigned char *sha1)
2132{
2133 int pos;
2134
2135 if (read_cache() < 0)
2136 return -1;
2137 pos = cache_name_pos(path, strlen(path));
2138 if (pos < 0)
2139 return -1;
2140 hashcpy(sha1, active_cache[pos]->sha1);
2141 return 0;
2142}
2143
7a988699
JS
2144/* Build an index that contains the just the files needed for a 3way merge */
2145static void build_fake_ancestor(struct patch *list, const char *filename)
2cf67f1e
JH
2146{
2147 struct patch *patch;
7a988699
JS
2148 struct index_state result = { 0 };
2149 int fd;
2cf67f1e
JH
2150
2151 /* Once we start supporting the reverse patch, it may be
2152 * worth showing the new sha1 prefix, but until then...
2153 */
2154 for (patch = list; patch; patch = patch->next) {
2155 const unsigned char *sha1_ptr;
2156 unsigned char sha1[20];
7a988699 2157 struct cache_entry *ce;
2cf67f1e
JH
2158 const char *name;
2159
2160 name = patch->old_name ? patch->old_name : patch->new_name;
4be60962 2161 if (0 < patch->is_new)
7a988699 2162 continue;
2cf67f1e 2163 else if (get_sha1(patch->old_sha1_prefix, sha1))
ece7b749
JS
2164 /* git diff has no index line for mode/type changes */
2165 if (!patch->lines_added && !patch->lines_deleted) {
2166 if (get_current_sha1(patch->new_name, sha1) ||
2167 get_current_sha1(patch->old_name, sha1))
2168 die("mode change for %s, which is not "
2169 "in current HEAD", name);
2170 sha1_ptr = sha1;
2171 } else
2172 die("sha1 information is lacking or useless "
2173 "(%s).", name);
2cf67f1e
JH
2174 else
2175 sha1_ptr = sha1;
22943f1a 2176
7a988699
JS
2177 ce = make_cache_entry(patch->old_mode, sha1_ptr, name, 0, 0);
2178 if (add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD))
2179 die ("Could not add %s to temporary index", name);
2cf67f1e 2180 }
7a988699
JS
2181
2182 fd = open(filename, O_WRONLY | O_CREAT, 0666);
2183 if (fd < 0 || write_index(&result, fd) || close(fd))
2184 die ("Could not write temporary index to %s", filename);
2185
2186 discard_index(&result);
2cf67f1e
JH
2187}
2188
a577284a
LT
2189static void stat_patch_list(struct patch *patch)
2190{
2191 int files, adds, dels;
2192
2193 for (files = adds = dels = 0 ; patch ; patch = patch->next) {
2194 files++;
2195 adds += patch->lines_added;
2196 dels += patch->lines_deleted;
2197 show_stats(patch);
2198 }
2199
2200 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels);
3f40315a
LT
2201}
2202
7d8b7c21
JH
2203static void numstat_patch_list(struct patch *patch)
2204{
2205 for ( ; patch; patch = patch->next) {
2206 const char *name;
49e3343c 2207 name = patch->new_name ? patch->new_name : patch->old_name;
ef58d958
JH
2208 if (patch->is_binary)
2209 printf("-\t-\t");
2210 else
663af342
PH
2211 printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);
2212 write_name_quoted(name, stdout, line_termination);
7d8b7c21
JH
2213 }
2214}
2215
96c912a4
JH
2216static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
2217{
2218 if (mode)
2219 printf(" %s mode %06o %s\n", newdelete, mode, name);
2220 else
2221 printf(" %s %s\n", newdelete, name);
2222}
2223
2224static void show_mode_change(struct patch *p, int show_name)
2225{
2226 if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
2227 if (show_name)
2228 printf(" mode change %06o => %06o %s\n",
2229 p->old_mode, p->new_mode, p->new_name);
2230 else
2231 printf(" mode change %06o => %06o\n",
2232 p->old_mode, p->new_mode);
2233 }
2234}
2235
2236static void show_rename_copy(struct patch *p)
2237{
2238 const char *renamecopy = p->is_rename ? "rename" : "copy";
2239 const char *old, *new;
2240
2241 /* Find common prefix */
2242 old = p->old_name;
2243 new = p->new_name;
2244 while (1) {
2245 const char *slash_old, *slash_new;
2246 slash_old = strchr(old, '/');
2247 slash_new = strchr(new, '/');
2248 if (!slash_old ||
2249 !slash_new ||
2250 slash_old - old != slash_new - new ||
2251 memcmp(old, new, slash_new - new))
2252 break;
2253 old = slash_old + 1;
2254 new = slash_new + 1;
2255 }
2256 /* p->old_name thru old is the common prefix, and old and new
2257 * through the end of names are renames
2258 */
2259 if (old != p->old_name)
2260 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
e30e814d 2261 (int)(old - p->old_name), p->old_name,
96c912a4
JH
2262 old, new, p->score);
2263 else
2264 printf(" %s %s => %s (%d%%)\n", renamecopy,
2265 p->old_name, p->new_name, p->score);
2266 show_mode_change(p, 0);
2267}
2268
2269static void summary_patch_list(struct patch *patch)
2270{
2271 struct patch *p;
2272
2273 for (p = patch; p; p = p->next) {
2274 if (p->is_new)
2275 show_file_mode_name("create", p->new_mode, p->new_name);
2276 else if (p->is_delete)
2277 show_file_mode_name("delete", p->old_mode, p->old_name);
2278 else {
2279 if (p->is_rename || p->is_copy)
2280 show_rename_copy(p);
2281 else {
2282 if (p->score) {
2283 printf(" rewrite %s (%d%%)\n",
2284 p->new_name, p->score);
2285 show_mode_change(p, 0);
2286 }
2287 else
2288 show_mode_change(p, 1);
2289 }
2290 }
2291 }
2292}
2293
3f40315a
LT
2294static void patch_stats(struct patch *patch)
2295{
2296 int lines = patch->lines_added + patch->lines_deleted;
2297
2298 if (lines > max_change)
2299 max_change = lines;
2300 if (patch->old_name) {
22943f1a
JH
2301 int len = quote_c_style(patch->old_name, NULL, NULL, 0);
2302 if (!len)
2303 len = strlen(patch->old_name);
3f40315a
LT
2304 if (len > max_len)
2305 max_len = len;
2306 }
2307 if (patch->new_name) {
22943f1a
JH
2308 int len = quote_c_style(patch->new_name, NULL, NULL, 0);
2309 if (!len)
2310 len = strlen(patch->new_name);
3f40315a
LT
2311 if (len > max_len)
2312 max_len = len;
2313 }
19c58fb8
LT
2314}
2315
aea19457 2316static void remove_file(struct patch *patch, int rmdir_empty)
5aa7d94c 2317{
7da3bf37 2318 if (update_index) {
5aa7d94c
LT
2319 if (remove_file_from_cache(patch->old_name) < 0)
2320 die("unable to remove %s from index", patch->old_name);
2321 }
d234b21c 2322 if (!cached) {
e06c5a6c
SV
2323 if (S_ISGITLINK(patch->old_mode)) {
2324 if (rmdir(patch->old_name))
2325 warning("unable to remove submodule %s",
2326 patch->old_name);
2327 } else if (!unlink(patch->old_name) && rmdir_empty) {
d234b21c
AJ
2328 char *name = xstrdup(patch->old_name);
2329 char *end = strrchr(name, '/');
2330 while (end) {
2331 *end = 0;
2332 if (rmdir(name))
2333 break;
2334 end = strrchr(name, '/');
2335 }
2336 free(name);
2337 }
2338 }
5aa7d94c
LT
2339}
2340
2341static void add_index_file(const char *path, unsigned mode, void *buf, unsigned long size)
2342{
2343 struct stat st;
2344 struct cache_entry *ce;
2345 int namelen = strlen(path);
2346 unsigned ce_size = cache_entry_size(namelen);
2347
7da3bf37 2348 if (!update_index)
5aa7d94c
LT
2349 return;
2350
90321c10 2351 ce = xcalloc(1, ce_size);
5aa7d94c
LT
2352 memcpy(ce->name, path, namelen);
2353 ce->ce_mode = create_ce_mode(mode);
2354 ce->ce_flags = htons(namelen);
e06c5a6c
SV
2355 if (S_ISGITLINK(mode)) {
2356 const char *s = buf;
2357
2358 if (get_sha1_hex(s + strlen("Subproject commit "), ce->sha1))
2359 die("corrupt patch for subproject %s", path);
2360 } else {
2361 if (!cached) {
2362 if (lstat(path, &st) < 0)
2363 die("unable to stat newly created file %s",
2364 path);
2365 fill_stat_cache_info(ce, &st);
2366 }
2367 if (write_sha1_file(buf, size, blob_type, ce->sha1) < 0)
2368 die("unable to create backing store for newly created file %s", path);
04e4888e 2369 }
5aa7d94c
LT
2370 if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)
2371 die("unable to add cache entry for %s", path);
2372}
2373
1b668341
LT
2374static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)
2375{
ac78e548 2376 int fd;
5ecd293d 2377 struct strbuf nbuf;
1b668341 2378
e06c5a6c
SV
2379 if (S_ISGITLINK(mode)) {
2380 struct stat st;
2381 if (!lstat(path, &st) && S_ISDIR(st.st_mode))
2382 return 0;
2383 return mkdir(path, 0777);
2384 }
2385
78a8d641 2386 if (has_symlinks && S_ISLNK(mode))
2c71810b
JH
2387 /* Although buf:size is counted string, it also is NUL
2388 * terminated.
2389 */
1b668341 2390 return symlink(buf, path);
cc96fd09
JH
2391
2392 fd = open(path, O_CREAT | O_EXCL | O_WRONLY, (mode & 0100) ? 0777 : 0666);
2393 if (fd < 0)
2394 return -1;
2395
5ecd293d
PH
2396 strbuf_init(&nbuf, 0);
2397 if (convert_to_working_tree(path, buf, size, &nbuf)) {
2398 size = nbuf.len;
2399 buf = nbuf.buf;
1b668341 2400 }
c7f9cb14
PH
2401 write_or_die(fd, buf, size);
2402 strbuf_release(&nbuf);
ac78e548 2403
1b668341
LT
2404 if (close(fd) < 0)
2405 die("closing file %s: %s", path, strerror(errno));
2406 return 0;
2407}
2408
5c8af185
LT
2409/*
2410 * We optimistically assume that the directories exist,
2411 * which is true 99% of the time anyway. If they don't,
2412 * we create them and try again.
2413 */
8361e1d4 2414static void create_one_file(char *path, unsigned mode, const char *buf, unsigned long size)
5c8af185 2415{
04e4888e
JH
2416 if (cached)
2417 return;
1b668341
LT
2418 if (!try_create_file(path, mode, buf, size))
2419 return;
5c8af185 2420
1b668341 2421 if (errno == ENOENT) {
8361e1d4
JR
2422 if (safe_create_leading_directories(path))
2423 return;
1b668341
LT
2424 if (!try_create_file(path, mode, buf, size))
2425 return;
5c8af185 2426 }
5c8af185 2427
56ac168f 2428 if (errno == EEXIST || errno == EACCES) {
c28c571c
JH
2429 /* We may be trying to create a file where a directory
2430 * used to be.
2431 */
2432 struct stat st;
0afa7644 2433 if (!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path)))
c28c571c
JH
2434 errno = EEXIST;
2435 }
2436
1b668341
LT
2437 if (errno == EEXIST) {
2438 unsigned int nr = getpid();
5c8af185 2439
1b668341
LT
2440 for (;;) {
2441 const char *newpath;
2442 newpath = mkpath("%s~%u", path, nr);
2443 if (!try_create_file(newpath, mode, buf, size)) {
2444 if (!rename(newpath, path))
2445 return;
2446 unlink(newpath);
2447 break;
2448 }
2449 if (errno != EEXIST)
2450 break;
d9e08be9
AR
2451 ++nr;
2452 }
5c8af185 2453 }
1b668341 2454 die("unable to write file %s mode %o", path, mode);
5c8af185
LT
2455}
2456
5aa7d94c
LT
2457static void create_file(struct patch *patch)
2458{
8361e1d4 2459 char *path = patch->new_name;
5aa7d94c
LT
2460 unsigned mode = patch->new_mode;
2461 unsigned long size = patch->resultsize;
2462 char *buf = patch->result;
2463
2464 if (!mode)
2465 mode = S_IFREG | 0644;
03ac6e64 2466 create_one_file(path, mode, buf, size);
1b668341 2467 add_index_file(path, mode, buf, size);
5aa7d94c
LT
2468}
2469
eed46644
JH
2470/* phase zero is to remove, phase one is to create */
2471static void write_out_one_result(struct patch *patch, int phase)
5aa7d94c
LT
2472{
2473 if (patch->is_delete > 0) {
eed46644 2474 if (phase == 0)
aea19457 2475 remove_file(patch, 1);
5aa7d94c
LT
2476 return;
2477 }
2478 if (patch->is_new > 0 || patch->is_copy) {
eed46644
JH
2479 if (phase == 1)
2480 create_file(patch);
5aa7d94c
LT
2481 return;
2482 }
2483 /*
2484 * Rename or modification boils down to the same
2485 * thing: remove the old, write the new
2486 */
eed46644 2487 if (phase == 0)
93969438 2488 remove_file(patch, patch->is_rename);
eed46644 2489 if (phase == 1)
57dc397c 2490 create_file(patch);
5aa7d94c
LT
2491}
2492
57dc397c
JH
2493static int write_out_one_reject(struct patch *patch)
2494{
82e2765f
JH
2495 FILE *rej;
2496 char namebuf[PATH_MAX];
57dc397c 2497 struct fragment *frag;
82e2765f 2498 int cnt = 0;
57dc397c 2499
82e2765f 2500 for (cnt = 0, frag = patch->fragments; frag; frag = frag->next) {
57dc397c
JH
2501 if (!frag->rejected)
2502 continue;
82e2765f
JH
2503 cnt++;
2504 }
2505
a2bf404e
JH
2506 if (!cnt) {
2507 if (apply_verbosely)
2508 say_patch_name(stderr,
2509 "Applied patch ", patch, " cleanly.\n");
82e2765f 2510 return 0;
a2bf404e 2511 }
82e2765f
JH
2512
2513 /* This should not happen, because a removal patch that leaves
2514 * contents are marked "rejected" at the patch level.
2515 */
2516 if (!patch->new_name)
2517 die("internal error");
2518
a2bf404e
JH
2519 /* Say this even without --verbose */
2520 say_patch_name(stderr, "Applying patch ", patch, " with");
2521 fprintf(stderr, " %d rejects...\n", cnt);
2522
82e2765f
JH
2523 cnt = strlen(patch->new_name);
2524 if (ARRAY_SIZE(namebuf) <= cnt + 5) {
2525 cnt = ARRAY_SIZE(namebuf) - 5;
2526 fprintf(stderr,
2527 "warning: truncating .rej filename to %.*s.rej",
2528 cnt - 1, patch->new_name);
2529 }
2530 memcpy(namebuf, patch->new_name, cnt);
2531 memcpy(namebuf + cnt, ".rej", 5);
2532
2533 rej = fopen(namebuf, "w");
2534 if (!rej)
2535 return error("cannot open %s: %s", namebuf, strerror(errno));
2536
2537 /* Normal git tools never deal with .rej, so do not pretend
2538 * this is a git patch by saying --git nor give extended
2539 * headers. While at it, maybe please "kompare" that wants
2540 * the trailing TAB and some garbage at the end of line ;-).
2541 */
2542 fprintf(rej, "diff a/%s b/%s\t(rejected hunks)\n",
2543 patch->new_name, patch->new_name);
0e9ee323 2544 for (cnt = 1, frag = patch->fragments;
82e2765f
JH
2545 frag;
2546 cnt++, frag = frag->next) {
2547 if (!frag->rejected) {
2548 fprintf(stderr, "Hunk #%d applied cleanly.\n", cnt);
2549 continue;
57dc397c 2550 }
82e2765f
JH
2551 fprintf(stderr, "Rejected hunk #%d.\n", cnt);
2552 fprintf(rej, "%.*s", frag->size, frag->patch);
57dc397c 2553 if (frag->patch[frag->size-1] != '\n')
82e2765f 2554 fputc('\n', rej);
57dc397c 2555 }
82e2765f
JH
2556 fclose(rej);
2557 return -1;
5aa7d94c
LT
2558}
2559
57dc397c 2560static int write_out_results(struct patch *list, int skipped_patch)
5aa7d94c 2561{
eed46644 2562 int phase;
57dc397c
JH
2563 int errs = 0;
2564 struct patch *l;
eed46644 2565
d854f783 2566 if (!list && !skipped_patch)
57dc397c 2567 return error("No changes");
f7b79707 2568
eed46644 2569 for (phase = 0; phase < 2; phase++) {
57dc397c 2570 l = list;
eed46644 2571 while (l) {
57dc397c
JH
2572 if (l->rejected)
2573 errs = 1;
82e2765f 2574 else {
57dc397c 2575 write_out_one_result(l, phase);
82e2765f 2576 if (phase == 1 && write_out_one_reject(l))
57dc397c
JH
2577 errs = 1;
2578 }
eed46644
JH
2579 l = l->next;
2580 }
5aa7d94c 2581 }
57dc397c 2582 return errs;
5aa7d94c
LT
2583}
2584
021b6e45 2585static struct lock_file lock_file;
5aa7d94c 2586
d854f783
JH
2587static struct excludes {
2588 struct excludes *next;
2589 const char *path;
2590} *excludes;
2591
2592static int use_patch(struct patch *p)
2593{
c7c81b3a 2594 const char *pathname = p->new_name ? p->new_name : p->old_name;
d854f783
JH
2595 struct excludes *x = excludes;
2596 while (x) {
2597 if (fnmatch(x->path, pathname, 0) == 0)
2598 return 0;
2599 x = x->next;
2600 }
edf2e370
JH
2601 if (0 < prefix_length) {
2602 int pathlen = strlen(pathname);
2603 if (pathlen <= prefix_length ||
2604 memcmp(prefix, pathname, prefix_length))
2605 return 0;
2606 }
d854f783
JH
2607 return 1;
2608}
2609
eac70c4f 2610static void prefix_one(char **name)
56185f49 2611{
eac70c4f
JS
2612 char *old_name = *name;
2613 if (!old_name)
2614 return;
2615 *name = xstrdup(prefix_filename(prefix, prefix_length, *name));
2616 free(old_name);
56185f49
JH
2617}
2618
2619static void prefix_patches(struct patch *p)
2620{
9987d7c5 2621 if (!prefix || p->is_toplevel_relative)
56185f49
JH
2622 return;
2623 for ( ; p; p = p->next) {
6c912f5b
JH
2624 if (p->new_name == p->old_name) {
2625 char *prefixed = p->new_name;
2626 prefix_one(&prefixed);
2627 p->new_name = p->old_name = prefixed;
2628 }
2629 else {
eac70c4f 2630 prefix_one(&p->new_name);
6c912f5b
JH
2631 prefix_one(&p->old_name);
2632 }
56185f49
JH
2633 }
2634}
2635
f686d030 2636static int apply_patch(int fd, const char *filename, int inaccurate_eof)
c1bb9350 2637{
9a76adeb
PH
2638 size_t offset;
2639 struct strbuf buf;
19c58fb8 2640 struct patch *list = NULL, **listp = &list;
d854f783 2641 int skipped_patch = 0;
c1bb9350 2642
9a76adeb 2643 strbuf_init(&buf, 0);
b5767dd6 2644 patch_input_file = filename;
9a76adeb 2645 read_patch_file(&buf, fd);
c1bb9350 2646 offset = 0;
9a76adeb 2647 while (offset < buf.len) {
19c58fb8
LT
2648 struct patch *patch;
2649 int nr;
2650
90321c10 2651 patch = xcalloc(1, sizeof(*patch));
3eaa38da 2652 patch->inaccurate_eof = inaccurate_eof;
f94bf440 2653 nr = parse_chunk(buf.buf + offset, buf.len - offset, patch);
c1bb9350
LT
2654 if (nr < 0)
2655 break;
f686d030 2656 if (apply_in_reverse)
e5a94313 2657 reverse_patches(patch);
56185f49
JH
2658 if (prefix)
2659 prefix_patches(patch);
d854f783
JH
2660 if (use_patch(patch)) {
2661 patch_stats(patch);
2662 *listp = patch;
2663 listp = &patch->next;
56185f49
JH
2664 }
2665 else {
d854f783
JH
2666 /* perhaps free it a bit better? */
2667 free(patch);
2668 skipped_patch++;
2669 }
c1bb9350 2670 offset += nr;
c1bb9350 2671 }
19c58fb8 2672
b5767dd6
JH
2673 if (whitespace_error && (new_whitespace == error_on_whitespace))
2674 apply = 0;
2675
7da3bf37
JH
2676 update_index = check_index && apply;
2677 if (update_index && newfd < 0)
30ca07a2
JH
2678 newfd = hold_locked_index(&lock_file, 1);
2679
5aa7d94c
LT
2680 if (check_index) {
2681 if (read_cache() < 0)
2682 die("unable to read index file");
2683 }
2684
57dc397c
JH
2685 if ((check || apply) &&
2686 check_patch_list(list) < 0 &&
2687 !apply_with_reject)
a577284a
LT
2688 exit(1);
2689
57dc397c
JH
2690 if (apply && write_out_results(list, skipped_patch))
2691 exit(1);
5aa7d94c 2692
7a988699
JS
2693 if (fake_ancestor)
2694 build_fake_ancestor(list, fake_ancestor);
2cf67f1e 2695
a577284a
LT
2696 if (diffstat)
2697 stat_patch_list(list);
19c58fb8 2698
7d8b7c21
JH
2699 if (numstat)
2700 numstat_patch_list(list);
2701
96c912a4
JH
2702 if (summary)
2703 summary_patch_list(list);
2704
9a76adeb 2705 strbuf_release(&buf);
c1bb9350
LT
2706 return 0;
2707}
2708
2ae1c53b
JH
2709static int git_apply_config(const char *var, const char *value)
2710{
2711 if (!strcmp(var, "apply.whitespace")) {
9befac47 2712 apply_default_whitespace = xstrdup(value);
2ae1c53b
JH
2713 return 0;
2714 }
2715 return git_default_config(var, value);
2716}
2717
2718
cd554bb1 2719int cmd_apply(int argc, const char **argv, const char *unused_prefix)
c1bb9350
LT
2720{
2721 int i;
4dfdbe10 2722 int read_stdin = 1;
3eaa38da 2723 int inaccurate_eof = 0;
57dc397c 2724 int errs = 0;
dc7b2436 2725 int is_not_gitdir = 0;
3eaa38da 2726
2ae1c53b 2727 const char *whitespace_option = NULL;
c1bb9350 2728
dc7b2436
JH
2729 prefix = setup_git_directory_gently(&is_not_gitdir);
2730 prefix_length = prefix ? strlen(prefix) : 0;
700ea479
JH
2731 git_config(git_apply_config);
2732 if (apply_default_whitespace)
2733 parse_whitespace_option(apply_default_whitespace);
67160271 2734
c1bb9350
LT
2735 for (i = 1; i < argc; i++) {
2736 const char *arg = argv[i];
47495887 2737 char *end;
c1bb9350
LT
2738 int fd;
2739
2740 if (!strcmp(arg, "-")) {
57dc397c 2741 errs |= apply_patch(0, "<stdin>", inaccurate_eof);
4dfdbe10 2742 read_stdin = 0;
c1bb9350
LT
2743 continue;
2744 }
cc44c765 2745 if (!prefixcmp(arg, "--exclude=")) {
d854f783
JH
2746 struct excludes *x = xmalloc(sizeof(*x));
2747 x->path = arg + 10;
2748 x->next = excludes;
2749 excludes = x;
2750 continue;
2751 }
cc44c765 2752 if (!prefixcmp(arg, "-p")) {
e36f8b60 2753 p_value = atoi(arg + 2);
3e8a5db9 2754 p_value_known = 1;
e36f8b60
DB
2755 continue;
2756 }
cb93c193
JH
2757 if (!strcmp(arg, "--no-add")) {
2758 no_add = 1;
2759 continue;
2760 }
fab2c257 2761 if (!strcmp(arg, "--stat")) {
a577284a 2762 apply = 0;
fab2c257
LT
2763 diffstat = 1;
2764 continue;
2765 }
0660626c
JH
2766 if (!strcmp(arg, "--allow-binary-replacement") ||
2767 !strcmp(arg, "--binary")) {
2b6eef94 2768 continue; /* now no-op */
011f4274 2769 }
7d8b7c21
JH
2770 if (!strcmp(arg, "--numstat")) {
2771 apply = 0;
2772 numstat = 1;
2773 continue;
2774 }
96c912a4
JH
2775 if (!strcmp(arg, "--summary")) {
2776 apply = 0;
2777 summary = 1;
2778 continue;
2779 }
a577284a
LT
2780 if (!strcmp(arg, "--check")) {
2781 apply = 0;
2782 check = 1;
2783 continue;
2784 }
3cca928d 2785 if (!strcmp(arg, "--index")) {
dc7b2436
JH
2786 if (is_not_gitdir)
2787 die("--index outside a repository");
3cca928d
LT
2788 check_index = 1;
2789 continue;
2790 }
04e4888e 2791 if (!strcmp(arg, "--cached")) {
dc7b2436
JH
2792 if (is_not_gitdir)
2793 die("--cached outside a repository");
04e4888e
JH
2794 check_index = 1;
2795 cached = 1;
2796 continue;
2797 }
aefa4a5b
LT
2798 if (!strcmp(arg, "--apply")) {
2799 apply = 1;
2800 continue;
2801 }
7a988699 2802 if (!strcmp(arg, "--build-fake-ancestor")) {
2cf67f1e 2803 apply = 0;
7a988699
JS
2804 if (++i >= argc)
2805 die ("need a filename");
2806 fake_ancestor = argv[i];
2cf67f1e
JH
2807 continue;
2808 }
22943f1a
JH
2809 if (!strcmp(arg, "-z")) {
2810 line_termination = 0;
2811 continue;
2812 }
cc44c765 2813 if (!prefixcmp(arg, "-C")) {
47495887
EB
2814 p_context = strtoul(arg + 2, &end, 0);
2815 if (*end != '\0')
2816 die("unrecognized context count '%s'", arg + 2);
2817 continue;
2818 }
cc44c765 2819 if (!prefixcmp(arg, "--whitespace=")) {
2ae1c53b
JH
2820 whitespace_option = arg + 13;
2821 parse_whitespace_option(arg + 13);
2822 continue;
19bfcd5a 2823 }
e5a94313 2824 if (!strcmp(arg, "-R") || !strcmp(arg, "--reverse")) {
f686d030 2825 apply_in_reverse = 1;
e5a94313 2826 continue;
4be60962
JH
2827 }
2828 if (!strcmp(arg, "--unidiff-zero")) {
2829 unidiff_zero = 1;
2830 continue;
e5a94313 2831 }
57dc397c 2832 if (!strcmp(arg, "--reject")) {
8938045a 2833 apply = apply_with_reject = apply_verbosely = 1;
57dc397c
JH
2834 continue;
2835 }
aeabfa07 2836 if (!strcmp(arg, "-v") || !strcmp(arg, "--verbose")) {
a2bf404e
JH
2837 apply_verbosely = 1;
2838 continue;
2839 }
3eaa38da
JS
2840 if (!strcmp(arg, "--inaccurate-eof")) {
2841 inaccurate_eof = 1;
2842 continue;
2843 }
edf2e370
JH
2844 if (0 < prefix_length)
2845 arg = prefix_filename(prefix, prefix_length, arg);
2846
c1bb9350
LT
2847 fd = open(arg, O_RDONLY);
2848 if (fd < 0)
2849 usage(apply_usage);
4dfdbe10 2850 read_stdin = 0;
f21d6726 2851 set_default_whitespace_mode(whitespace_option);
57dc397c 2852 errs |= apply_patch(fd, arg, inaccurate_eof);
c1bb9350
LT
2853 close(fd);
2854 }
f21d6726 2855 set_default_whitespace_mode(whitespace_option);
4dfdbe10 2856 if (read_stdin)
57dc397c 2857 errs |= apply_patch(0, "<stdin>", inaccurate_eof);
fc96b7c9
JH
2858 if (whitespace_error) {
2859 if (squelch_whitespace_errors &&
2860 squelch_whitespace_errors < whitespace_error) {
2861 int squelched =
2862 whitespace_error - squelch_whitespace_errors;
57dc397c
JH
2863 fprintf(stderr, "warning: squelched %d "
2864 "whitespace error%s\n",
fc96b7c9
JH
2865 squelched,
2866 squelched == 1 ? "" : "s");
2867 }
2868 if (new_whitespace == error_on_whitespace)
c94bf41c 2869 die("%d line%s add%s whitespace errors.",
fc96b7c9
JH
2870 whitespace_error,
2871 whitespace_error == 1 ? "" : "s",
2872 whitespace_error == 1 ? "s" : "");
c94bf41c 2873 if (applied_after_fixing_ws)
fc96b7c9 2874 fprintf(stderr, "warning: %d line%s applied after"
c94bf41c
JH
2875 " fixing whitespace errors.\n",
2876 applied_after_fixing_ws,
2877 applied_after_fixing_ws == 1 ? "" : "s");
fc96b7c9 2878 else if (whitespace_error)
c94bf41c 2879 fprintf(stderr, "warning: %d line%s add%s whitespace errors.\n",
fc96b7c9
JH
2880 whitespace_error,
2881 whitespace_error == 1 ? "" : "s",
2882 whitespace_error == 1 ? "s" : "");
2883 }
dbd0f7d3 2884
7da3bf37 2885 if (update_index) {
dbd0f7d3 2886 if (write_cache(newfd, active_cache, active_nr) ||
30ca07a2 2887 close(newfd) || commit_locked_index(&lock_file))
021b6e45 2888 die("Unable to write new index file");
dbd0f7d3
EW
2889 }
2890
57dc397c 2891 return !!errs;
c1bb9350 2892}