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