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