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