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