]> git.ipfire.org Git - thirdparty/git.git/blame - apply.c
git-am: --resolved.
[thirdparty/git.git] / 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"
22943f1a 11#include "quote.h"
c1bb9350 12
a577284a
LT
13// --check turns on checking that the working tree matches the
14// files that are being modified, but doesn't apply the patch
15// --stat does just a diffstat, and doesn't actually apply
7d8b7c21 16// --numstat does numeric diffstat, and doesn't actually apply
22943f1a 17// --index-info shows the old and new index info for paths if available.
a577284a 18//
3cca928d 19static int check_index = 0;
5aa7d94c 20static int write_index = 0;
fab2c257 21static int diffstat = 0;
7d8b7c21 22static int numstat = 0;
96c912a4 23static int summary = 0;
a577284a
LT
24static int check = 0;
25static int apply = 1;
cb93c193 26static int no_add = 0;
2cf67f1e 27static int show_index_info = 0;
22943f1a 28static int line_termination = '\n';
12dd6e8c 29static const char apply_usage[] =
e433705d 30"git-apply [--stat] [--numstat] [--summary] [--check] [--index] [--apply] [--no-add] [--index-info] [-z] <patch>...";
c1bb9350 31
3f40315a
LT
32/*
33 * For "diff-stat" like behaviour, we keep track of the biggest change
34 * we've seen, and the longest filename. That allows us to do simple
35 * scaling.
36 */
37static int max_change, max_len;
38
a4acb0eb
LT
39/*
40 * Various "current state", notably line numbers and what
41 * file (and how) we're patching right now.. The "is_xxxx"
42 * things are flags, where -1 means "don't know yet".
43 */
46979f56 44static int linenr = 1;
19c58fb8
LT
45
46struct fragment {
47 unsigned long oldpos, oldlines;
48 unsigned long newpos, newlines;
49 const char *patch;
50 int size;
51 struct fragment *next;
52};
53
54struct patch {
5041aa70 55 char *new_name, *old_name, *def_name;
19c58fb8 56 unsigned int old_mode, new_mode;
ff36de08 57 int is_rename, is_copy, is_new, is_delete, is_binary;
3f40315a 58 int lines_added, lines_deleted;
96c912a4 59 int score;
19c58fb8 60 struct fragment *fragments;
5aa7d94c 61 char *result;
3cca928d 62 unsigned long resultsize;
2cf67f1e
JH
63 char old_sha1_prefix[41];
64 char new_sha1_prefix[41];
19c58fb8
LT
65 struct patch *next;
66};
46979f56 67
c1bb9350 68#define CHUNKSIZE (8192)
a4acb0eb 69#define SLOP (16)
c1bb9350
LT
70
71static void *read_patch_file(int fd, unsigned long *sizep)
72{
73 unsigned long size = 0, alloc = CHUNKSIZE;
74 void *buffer = xmalloc(alloc);
75
76 for (;;) {
77 int nr = alloc - size;
78 if (nr < 1024) {
79 alloc += CHUNKSIZE;
80 buffer = xrealloc(buffer, alloc);
81 nr = alloc - size;
82 }
83 nr = read(fd, buffer + size, nr);
84 if (!nr)
85 break;
86 if (nr < 0) {
87 if (errno == EAGAIN)
88 continue;
89 die("git-apply: read returned %s", strerror(errno));
90 }
91 size += nr;
92 }
93 *sizep = size;
a4acb0eb
LT
94
95 /*
96 * Make sure that we have some slop in the buffer
97 * so that we can do speculative "memcmp" etc, and
98 * see to it that it is NUL-filled.
99 */
100 if (alloc < size + SLOP)
101 buffer = xrealloc(buffer, size + SLOP);
102 memset(buffer + size, 0, SLOP);
c1bb9350
LT
103 return buffer;
104}
105
3cca928d 106static unsigned long linelen(const char *buffer, unsigned long size)
c1bb9350
LT
107{
108 unsigned long len = 0;
109 while (size--) {
110 len++;
111 if (*buffer++ == '\n')
112 break;
113 }
114 return len;
115}
116
a4acb0eb
LT
117static int is_dev_null(const char *str)
118{
119 return !memcmp("/dev/null", str, 9) && isspace(str[9]);
120}
121
381ca9a3
LT
122#define TERM_SPACE 1
123#define TERM_TAB 2
9a4a100e
LT
124
125static int name_terminate(const char *name, int namelen, int c, int terminate)
126{
127 if (c == ' ' && !(terminate & TERM_SPACE))
128 return 0;
129 if (c == '\t' && !(terminate & TERM_TAB))
130 return 0;
131
9a4a100e
LT
132 return 1;
133}
134
135static char * find_name(const char *line, char *def, int p_value, int terminate)
c1bb9350 136{
a4acb0eb
LT
137 int len;
138 const char *start = line;
139 char *name;
140
22943f1a
JH
141 if (*line == '"') {
142 /* Proposed "new-style" GNU patch/diff format; see
143 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
144 */
145 name = unquote_c_style(line, NULL);
146 if (name) {
147 char *cp = name;
148 while (p_value) {
149 cp = strchr(name, '/');
150 if (!cp)
151 break;
152 cp++;
153 p_value--;
154 }
155 if (cp) {
156 /* name can later be freed, so we need
157 * to memmove, not just return cp
158 */
159 memmove(name, cp, strlen(cp) + 1);
160 free(def);
161 return name;
162 }
163 else {
164 free(name);
165 name = NULL;
166 }
167 }
168 }
169
c1bb9350 170 for (;;) {
a4acb0eb 171 char c = *line;
9a4a100e
LT
172
173 if (isspace(c)) {
174 if (c == '\n')
175 break;
176 if (name_terminate(start, line-start, c, terminate))
177 break;
178 }
a4acb0eb
LT
179 line++;
180 if (c == '/' && !--p_value)
181 start = line;
182 }
183 if (!start)
184 return def;
185 len = line - start;
186 if (!len)
187 return def;
188
189 /*
190 * Generally we prefer the shorter name, especially
191 * if the other one is just a variation of that with
192 * something else tacked on to the end (ie "file.orig"
193 * or "file~").
194 */
195 if (def) {
196 int deflen = strlen(def);
197 if (deflen < len && !strncmp(start, def, deflen))
198 return def;
c1bb9350 199 }
a4acb0eb
LT
200
201 name = xmalloc(len + 1);
202 memcpy(name, start, len);
203 name[len] = 0;
204 free(def);
205 return name;
206}
207
208/*
209 * Get the name etc info from the --/+++ lines of a traditional patch header
210 *
211 * NOTE! This hardcodes "-p1" behaviour in filename detection.
9a4a100e
LT
212 *
213 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
214 * files, we can happily check the index for a match, but for creating a
215 * new file we should try to match whatever "patch" does. I have no idea.
a4acb0eb 216 */
19c58fb8 217static void parse_traditional_patch(const char *first, const char *second, struct patch *patch)
a4acb0eb
LT
218{
219 int p_value = 1;
220 char *name;
221
222 first += 4; // skip "--- "
223 second += 4; // skip "+++ "
224 if (is_dev_null(first)) {
19c58fb8
LT
225 patch->is_new = 1;
226 patch->is_delete = 0;
5041aa70 227 name = find_name(second, NULL, p_value, TERM_SPACE | TERM_TAB);
19c58fb8 228 patch->new_name = name;
a4acb0eb 229 } else if (is_dev_null(second)) {
19c58fb8
LT
230 patch->is_new = 0;
231 patch->is_delete = 1;
381ca9a3 232 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
19c58fb8 233 patch->old_name = name;
a4acb0eb 234 } else {
381ca9a3
LT
235 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
236 name = find_name(second, name, p_value, TERM_SPACE | TERM_TAB);
19c58fb8 237 patch->old_name = patch->new_name = name;
a4acb0eb
LT
238 }
239 if (!name)
240 die("unable to find filename in patch at line %d", linenr);
a4acb0eb
LT
241}
242
19c58fb8 243static int gitdiff_hdrend(const char *line, struct patch *patch)
a4acb0eb
LT
244{
245 return -1;
246}
247
1e3f6b6e
LT
248/*
249 * We're anal about diff header consistency, to make
250 * sure that we don't end up having strange ambiguous
251 * patches floating around.
252 *
253 * As a result, gitdiff_{old|new}name() will check
254 * their names against any previous information, just
255 * to make sure..
256 */
257static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew)
258{
1e3f6b6e
LT
259 if (!orig_name && !isnull)
260 return find_name(line, NULL, 1, 0);
261
1e3f6b6e 262 if (orig_name) {
22943f1a
JH
263 int len;
264 const char *name;
265 char *another;
1e3f6b6e
LT
266 name = orig_name;
267 len = strlen(name);
268 if (isnull)
269 die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr);
22943f1a
JH
270 another = find_name(line, NULL, 1, 0);
271 if (!another || memcmp(another, name, len))
272 die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr);
273 free(another);
1e3f6b6e
LT
274 return orig_name;
275 }
22943f1a
JH
276 else {
277 /* expect "/dev/null" */
278 if (memcmp("/dev/null", line, 9) || line[9] != '\n')
279 die("git-apply: bad git-diff - expected /dev/null on line %d", linenr);
280 return NULL;
281 }
1e3f6b6e
LT
282}
283
19c58fb8 284static int gitdiff_oldname(const char *line, struct patch *patch)
a4acb0eb 285{
19c58fb8 286 patch->old_name = gitdiff_verify_name(line, patch->is_new, patch->old_name, "old");
a4acb0eb
LT
287 return 0;
288}
289
19c58fb8 290static int gitdiff_newname(const char *line, struct patch *patch)
a4acb0eb 291{
19c58fb8 292 patch->new_name = gitdiff_verify_name(line, patch->is_delete, patch->new_name, "new");
a4acb0eb
LT
293 return 0;
294}
295
19c58fb8 296static int gitdiff_oldmode(const char *line, struct patch *patch)
a4acb0eb 297{
19c58fb8 298 patch->old_mode = strtoul(line, NULL, 8);
a4acb0eb
LT
299 return 0;
300}
301
19c58fb8 302static int gitdiff_newmode(const char *line, struct patch *patch)
a4acb0eb 303{
19c58fb8 304 patch->new_mode = strtoul(line, NULL, 8);
a4acb0eb
LT
305 return 0;
306}
307
19c58fb8 308static int gitdiff_delete(const char *line, struct patch *patch)
a4acb0eb 309{
19c58fb8 310 patch->is_delete = 1;
5041aa70 311 patch->old_name = patch->def_name;
19c58fb8 312 return gitdiff_oldmode(line, patch);
a4acb0eb
LT
313}
314
19c58fb8 315static int gitdiff_newfile(const char *line, struct patch *patch)
a4acb0eb 316{
19c58fb8 317 patch->is_new = 1;
5041aa70 318 patch->new_name = patch->def_name;
19c58fb8 319 return gitdiff_newmode(line, patch);
a4acb0eb
LT
320}
321
19c58fb8 322static int gitdiff_copysrc(const char *line, struct patch *patch)
a4acb0eb 323{
19c58fb8
LT
324 patch->is_copy = 1;
325 patch->old_name = find_name(line, NULL, 0, 0);
a4acb0eb
LT
326 return 0;
327}
328
19c58fb8 329static int gitdiff_copydst(const char *line, struct patch *patch)
a4acb0eb 330{
19c58fb8
LT
331 patch->is_copy = 1;
332 patch->new_name = find_name(line, NULL, 0, 0);
a4acb0eb
LT
333 return 0;
334}
335
19c58fb8 336static int gitdiff_renamesrc(const char *line, struct patch *patch)
a4acb0eb 337{
19c58fb8
LT
338 patch->is_rename = 1;
339 patch->old_name = find_name(line, NULL, 0, 0);
a4acb0eb
LT
340 return 0;
341}
342
19c58fb8 343static int gitdiff_renamedst(const char *line, struct patch *patch)
a4acb0eb 344{
19c58fb8
LT
345 patch->is_rename = 1;
346 patch->new_name = find_name(line, NULL, 0, 0);
a4acb0eb
LT
347 return 0;
348}
349
19c58fb8 350static int gitdiff_similarity(const char *line, struct patch *patch)
a4acb0eb 351{
96c912a4
JH
352 if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
353 patch->score = 0;
a4acb0eb 354 return 0;
c1bb9350
LT
355}
356
70aadac0
JH
357static int gitdiff_dissimilarity(const char *line, struct patch *patch)
358{
96c912a4
JH
359 if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
360 patch->score = 0;
70aadac0
JH
361 return 0;
362}
363
2cf67f1e
JH
364static int gitdiff_index(const char *line, struct patch *patch)
365{
366 /* index line is N hexadecimal, "..", N hexadecimal,
367 * and optional space with octal mode.
368 */
369 const char *ptr, *eol;
370 int len;
371
372 ptr = strchr(line, '.');
9add69b1 373 if (!ptr || ptr[1] != '.' || 40 < ptr - line)
2cf67f1e
JH
374 return 0;
375 len = ptr - line;
376 memcpy(patch->old_sha1_prefix, line, len);
377 patch->old_sha1_prefix[len] = 0;
378
379 line = ptr + 2;
380 ptr = strchr(line, ' ');
381 eol = strchr(line, '\n');
382
383 if (!ptr || eol < ptr)
384 ptr = eol;
385 len = ptr - line;
386
9add69b1 387 if (40 < len)
2cf67f1e
JH
388 return 0;
389 memcpy(patch->new_sha1_prefix, line, len);
390 patch->new_sha1_prefix[len] = 0;
391 if (*ptr == ' ')
392 patch->new_mode = patch->old_mode = strtoul(ptr+1, NULL, 8);
393 return 0;
394}
395
9a4a100e
LT
396/*
397 * This is normal for a diff that doesn't change anything: we'll fall through
398 * into the next diff. Tell the parser to break out.
399 */
19c58fb8 400static int gitdiff_unrecognized(const char *line, struct patch *patch)
9a4a100e
LT
401{
402 return -1;
403}
404
22943f1a
JH
405static const char *stop_at_slash(const char *line, int llen)
406{
407 int i;
408
409 for (i = 0; i < llen; i++) {
410 int ch = line[i];
411 if (ch == '/')
412 return line + i;
413 }
414 return NULL;
415}
416
417/* This is to extract the same name that appears on "diff --git"
418 * line. We do not find and return anything if it is a rename
419 * patch, and it is OK because we will find the name elsewhere.
420 * We need to reliably find name only when it is mode-change only,
421 * creation or deletion of an empty file. In any of these cases,
422 * both sides are the same name under a/ and b/ respectively.
423 */
424static char *git_header_name(char *line, int llen)
5041aa70
LT
425{
426 int len;
22943f1a
JH
427 const char *name;
428 const char *second = NULL;
5041aa70 429
22943f1a
JH
430 line += strlen("diff --git ");
431 llen -= strlen("diff --git ");
432
433 if (*line == '"') {
434 const char *cp;
435 char *first = unquote_c_style(line, &second);
436 if (!first)
5041aa70 437 return NULL;
22943f1a
JH
438
439 /* advance to the first slash */
440 cp = stop_at_slash(first, strlen(first));
441 if (!cp || cp == first) {
442 /* we do not accept absolute paths */
443 free_first_and_fail:
444 free(first);
445 return NULL;
446 }
447 len = strlen(cp+1);
448 memmove(first, cp+1, len+1); /* including NUL */
449
450 /* second points at one past closing dq of name.
451 * find the second name.
452 */
453 while ((second < line + llen) && isspace(*second))
454 second++;
455
456 if (line + llen <= second)
457 goto free_first_and_fail;
458 if (*second == '"') {
459 char *sp = unquote_c_style(second, NULL);
460 if (!sp)
461 goto free_first_and_fail;
462 cp = stop_at_slash(sp, strlen(sp));
463 if (!cp || cp == sp) {
464 free_both_and_fail:
465 free(sp);
466 goto free_first_and_fail;
467 }
468 /* They must match, otherwise ignore */
469 if (strcmp(cp+1, first))
470 goto free_both_and_fail;
471 free(sp);
472 return first;
473 }
474
475 /* unquoted second */
476 cp = stop_at_slash(second, line + llen - second);
477 if (!cp || cp == second)
478 goto free_first_and_fail;
479 cp++;
480 if (line + llen - cp != len + 1 ||
481 memcmp(first, cp, len))
482 goto free_first_and_fail;
483 return first;
5041aa70
LT
484 }
485
22943f1a
JH
486 /* unquoted first name */
487 name = stop_at_slash(line, llen);
488 if (!name || name == line)
5041aa70
LT
489 return NULL;
490
22943f1a
JH
491 name++;
492
493 /* since the first name is unquoted, a dq if exists must be
494 * the beginning of the second name.
495 */
496 for (second = name; second < line + llen; second++) {
497 if (*second == '"') {
498 const char *cp = second;
499 const char *np;
500 char *sp = unquote_c_style(second, NULL);
501
502 if (!sp)
503 return NULL;
504 np = stop_at_slash(sp, strlen(sp));
505 if (!np || np == sp) {
506 free_second_and_fail:
507 free(sp);
508 return NULL;
509 }
510 np++;
511 len = strlen(np);
512 if (len < cp - name &&
513 !strncmp(np, name, len) &&
514 isspace(name[len])) {
515 /* Good */
516 memmove(sp, np, len + 1);
517 return sp;
518 }
519 goto free_second_and_fail;
520 }
521 }
522
5041aa70
LT
523 /*
524 * Accept a name only if it shows up twice, exactly the same
525 * form.
526 */
527 for (len = 0 ; ; len++) {
528 char c = name[len];
529
530 switch (c) {
531 default:
532 continue;
533 case '\n':
e70a165d 534 return NULL;
5041aa70
LT
535 case '\t': case ' ':
536 second = name+len;
537 for (;;) {
538 char c = *second++;
539 if (c == '\n')
540 return NULL;
541 if (c == '/')
542 break;
543 }
0e87e048 544 if (second[len] == '\n' && !memcmp(name, second, len)) {
5041aa70
LT
545 char *ret = xmalloc(len + 1);
546 memcpy(ret, name, len);
547 ret[len] = 0;
548 return ret;
549 }
550 }
551 }
552 return NULL;
553}
554
c1bb9350 555/* Verify that we recognize the lines following a git header */
19c58fb8 556static int parse_git_header(char *line, int len, unsigned int size, struct patch *patch)
c1bb9350 557{
a4acb0eb
LT
558 unsigned long offset;
559
560 /* A git diff has explicit new/delete information, so we don't guess */
19c58fb8
LT
561 patch->is_new = 0;
562 patch->is_delete = 0;
a4acb0eb 563
5041aa70
LT
564 /*
565 * Some things may not have the old name in the
566 * rest of the headers anywhere (pure mode changes,
567 * or removing or adding empty files), so we get
568 * the default name from the header.
569 */
22943f1a 570 patch->def_name = git_header_name(line, len);
5041aa70 571
a4acb0eb
LT
572 line += len;
573 size -= len;
574 linenr++;
575 for (offset = len ; size > 0 ; offset += len, size -= len, line += len, linenr++) {
576 static const struct opentry {
577 const char *str;
19c58fb8 578 int (*fn)(const char *, struct patch *);
a4acb0eb
LT
579 } optable[] = {
580 { "@@ -", gitdiff_hdrend },
581 { "--- ", gitdiff_oldname },
582 { "+++ ", gitdiff_newname },
583 { "old mode ", gitdiff_oldmode },
584 { "new mode ", gitdiff_newmode },
585 { "deleted file mode ", gitdiff_delete },
586 { "new file mode ", gitdiff_newfile },
587 { "copy from ", gitdiff_copysrc },
588 { "copy to ", gitdiff_copydst },
33f4d087
LT
589 { "rename old ", gitdiff_renamesrc },
590 { "rename new ", gitdiff_renamedst },
dc938417
LT
591 { "rename from ", gitdiff_renamesrc },
592 { "rename to ", gitdiff_renamedst },
a4acb0eb 593 { "similarity index ", gitdiff_similarity },
70aadac0 594 { "dissimilarity index ", gitdiff_dissimilarity },
2cf67f1e 595 { "index ", gitdiff_index },
9a4a100e 596 { "", gitdiff_unrecognized },
a4acb0eb
LT
597 };
598 int i;
c1bb9350 599
c1bb9350 600 len = linelen(line, size);
a4acb0eb 601 if (!len || line[len-1] != '\n')
c1bb9350 602 break;
a4acb0eb
LT
603 for (i = 0; i < sizeof(optable) / sizeof(optable[0]); i++) {
604 const struct opentry *p = optable + i;
605 int oplen = strlen(p->str);
606 if (len < oplen || memcmp(p->str, line, oplen))
607 continue;
19c58fb8 608 if (p->fn(line + oplen, patch) < 0)
a4acb0eb 609 return offset;
9a4a100e 610 break;
a4acb0eb 611 }
c1bb9350
LT
612 }
613
a4acb0eb 614 return offset;
c1bb9350
LT
615}
616
fab2c257 617static int parse_num(const char *line, unsigned long *p)
46979f56
LT
618{
619 char *ptr;
fab2c257
LT
620
621 if (!isdigit(*line))
622 return 0;
623 *p = strtoul(line, &ptr, 10);
624 return ptr - line;
625}
626
627static int parse_range(const char *line, int len, int offset, const char *expect,
628 unsigned long *p1, unsigned long *p2)
629{
46979f56
LT
630 int digits, ex;
631
632 if (offset < 0 || offset >= len)
633 return -1;
634 line += offset;
635 len -= offset;
636
fab2c257
LT
637 digits = parse_num(line, p1);
638 if (!digits)
46979f56 639 return -1;
46979f56
LT
640
641 offset += digits;
642 line += digits;
643 len -= digits;
644
fab2c257
LT
645 *p2 = *p1;
646 if (*line == ',') {
647 digits = parse_num(line+1, p2);
648 if (!digits)
649 return -1;
650
651 offset += digits+1;
652 line += digits+1;
653 len -= digits+1;
654 }
655
46979f56
LT
656 ex = strlen(expect);
657 if (ex > len)
658 return -1;
659 if (memcmp(line, expect, ex))
660 return -1;
661
662 return offset + ex;
663}
664
665/*
666 * Parse a unified diff fragment header of the
667 * form "@@ -a,b +c,d @@"
668 */
19c58fb8 669static int parse_fragment_header(char *line, int len, struct fragment *fragment)
46979f56
LT
670{
671 int offset;
672
673 if (!len || line[len-1] != '\n')
674 return -1;
675
676 /* Figure out the number of lines in a fragment */
fab2c257
LT
677 offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);
678 offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);
46979f56
LT
679
680 return offset;
681}
682
19c58fb8 683static int find_header(char *line, unsigned long size, int *hdrsize, struct patch *patch)
c1bb9350
LT
684{
685 unsigned long offset, len;
686
19c58fb8
LT
687 patch->is_rename = patch->is_copy = 0;
688 patch->is_new = patch->is_delete = -1;
689 patch->old_mode = patch->new_mode = 0;
690 patch->old_name = patch->new_name = NULL;
46979f56 691 for (offset = 0; size > 0; offset += len, size -= len, line += len, linenr++) {
c1bb9350
LT
692 unsigned long nextlen;
693
694 len = linelen(line, size);
695 if (!len)
696 break;
697
698 /* Testing this early allows us to take a few shortcuts.. */
699 if (len < 6)
700 continue;
46979f56
LT
701
702 /*
703 * Make sure we don't find any unconnected patch fragmants.
704 * That's a sign that we didn't find a header, and that a
705 * patch has become corrupted/broken up.
706 */
707 if (!memcmp("@@ -", line, 4)) {
19c58fb8
LT
708 struct fragment dummy;
709 if (parse_fragment_header(line, len, &dummy) < 0)
46979f56 710 continue;
4ec99bf0 711 error("patch fragment without header at line %d: %.*s", linenr, (int)len-1, line);
46979f56
LT
712 }
713
c1bb9350
LT
714 if (size < len + 6)
715 break;
716
717 /*
718 * Git patch? It might not have a real patch, just a rename
719 * or mode change, so we handle that specially
720 */
721 if (!memcmp("diff --git ", line, 11)) {
19c58fb8 722 int git_hdr_len = parse_git_header(line, len, size, patch);
206de27e 723 if (git_hdr_len <= len)
c1bb9350 724 continue;
b7e8039a
LT
725 if (!patch->old_name && !patch->new_name) {
726 if (!patch->def_name)
727 die("git diff header lacks filename information (line %d)", linenr);
728 patch->old_name = patch->new_name = patch->def_name;
729 }
a4acb0eb 730 *hdrsize = git_hdr_len;
c1bb9350
LT
731 return offset;
732 }
733
734 /** --- followed by +++ ? */
735 if (memcmp("--- ", line, 4) || memcmp("+++ ", line + len, 4))
736 continue;
737
738 /*
739 * We only accept unified patches, so we want it to
740 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
741 * minimum
742 */
743 nextlen = linelen(line + len, size - len);
744 if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4))
745 continue;
746
747 /* Ok, we'll consider it a patch */
19c58fb8 748 parse_traditional_patch(line, line+len, patch);
c1bb9350 749 *hdrsize = len + nextlen;
46979f56 750 linenr += 2;
c1bb9350
LT
751 return offset;
752 }
753 return -1;
754}
755
c1bb9350
LT
756/*
757 * Parse a unified diff. Note that this really needs
758 * to parse each fragment separately, since the only
759 * way to know the difference between a "---" that is
760 * part of a patch, and a "---" that starts the next
761 * patch is to look at the line counts..
762 */
19c58fb8 763static int parse_fragment(char *line, unsigned long size, struct patch *patch, struct fragment *fragment)
c1bb9350 764{
3f40315a 765 int added, deleted;
c1bb9350 766 int len = linelen(line, size), offset;
30996652 767 unsigned long oldlines, newlines;
c1bb9350 768
19c58fb8 769 offset = parse_fragment_header(line, len, fragment);
c1bb9350
LT
770 if (offset < 0)
771 return -1;
19c58fb8
LT
772 oldlines = fragment->oldlines;
773 newlines = fragment->newlines;
c1bb9350 774
30996652
LT
775 if (patch->is_new < 0) {
776 patch->is_new = !oldlines;
777 if (!oldlines)
778 patch->old_name = NULL;
779 }
780 if (patch->is_delete < 0) {
781 patch->is_delete = !newlines;
782 if (!newlines)
783 patch->new_name = NULL;
784 }
785
786 if (patch->is_new != !oldlines)
787 return error("new file depends on old contents");
af3f929f
LT
788 if (patch->is_delete != !newlines) {
789 if (newlines)
790 return error("deleted file still has contents");
791 fprintf(stderr, "** warning: file %s becomes empty but is not deleted\n", patch->new_name);
792 }
a4acb0eb 793
c1bb9350
LT
794 /* Parse the thing.. */
795 line += len;
796 size -= len;
46979f56 797 linenr++;
3f40315a 798 added = deleted = 0;
46979f56 799 for (offset = len; size > 0; offset += len, size -= len, line += len, linenr++) {
c1bb9350
LT
800 if (!oldlines && !newlines)
801 break;
802 len = linelen(line, size);
803 if (!len || line[len-1] != '\n')
804 return -1;
805 switch (*line) {
806 default:
807 return -1;
808 case ' ':
809 oldlines--;
810 newlines--;
811 break;
812 case '-':
3f40315a 813 deleted++;
c1bb9350
LT
814 oldlines--;
815 break;
816 case '+':
3f40315a 817 added++;
c1bb9350
LT
818 newlines--;
819 break;
433ef8a2
FK
820
821 /* We allow "\ No newline at end of file". Depending
822 * on locale settings when the patch was produced we
823 * don't know what this line looks like. The only
56d33b11
JH
824 * thing we do know is that it begins with "\ ".
825 * Checking for 12 is just for sanity check -- any
826 * l10n of "\ No newline..." is at least that long.
827 */
fab2c257 828 case '\\':
433ef8a2 829 if (len < 12 || memcmp(line, "\\ ", 2))
3cca928d 830 return -1;
fab2c257 831 break;
c1bb9350
LT
832 }
833 }
8b64647d
JH
834 /* If a fragment ends with an incomplete line, we failed to include
835 * it in the above loop because we hit oldlines == newlines == 0
836 * before seeing it.
837 */
433ef8a2 838 if (12 < size && !memcmp(line, "\\ ", 2))
8b64647d
JH
839 offset += linelen(line, size);
840
3f40315a
LT
841 patch->lines_added += added;
842 patch->lines_deleted += deleted;
c1bb9350
LT
843 return offset;
844}
845
19c58fb8 846static int parse_single_patch(char *line, unsigned long size, struct patch *patch)
c1bb9350
LT
847{
848 unsigned long offset = 0;
19c58fb8 849 struct fragment **fragp = &patch->fragments;
c1bb9350
LT
850
851 while (size > 4 && !memcmp(line, "@@ -", 4)) {
19c58fb8
LT
852 struct fragment *fragment;
853 int len;
854
855 fragment = xmalloc(sizeof(*fragment));
856 memset(fragment, 0, sizeof(*fragment));
857 len = parse_fragment(line, size, patch, fragment);
c1bb9350 858 if (len <= 0)
46979f56 859 die("corrupt patch at line %d", linenr);
c1bb9350 860
19c58fb8
LT
861 fragment->patch = line;
862 fragment->size = len;
863
864 *fragp = fragment;
865 fragp = &fragment->next;
c1bb9350
LT
866
867 offset += len;
868 line += len;
869 size -= len;
870 }
871 return offset;
872}
873
1fea629f
LT
874static inline int metadata_changes(struct patch *patch)
875{
876 return patch->is_rename > 0 ||
877 patch->is_copy > 0 ||
878 patch->is_new > 0 ||
879 patch->is_delete ||
880 (patch->old_mode && patch->new_mode &&
881 patch->old_mode != patch->new_mode);
882}
883
19c58fb8 884static int parse_chunk(char *buffer, unsigned long size, struct patch *patch)
c1bb9350
LT
885{
886 int hdrsize, patchsize;
19c58fb8 887 int offset = find_header(buffer, size, &hdrsize, patch);
c1bb9350
LT
888
889 if (offset < 0)
890 return offset;
c1bb9350 891
19c58fb8 892 patchsize = parse_single_patch(buffer + offset + hdrsize, size - offset - hdrsize, patch);
c1bb9350 893
92927ed0 894 if (!patchsize) {
ff36de08
JH
895 static const char binhdr[] = "Binary files ";
896
897 if (sizeof(binhdr) - 1 < size - offset - hdrsize &&
9add69b1
JH
898 !memcmp(binhdr, buffer + hdrsize + offset,
899 sizeof(binhdr)-1))
ff36de08
JH
900 patch->is_binary = 1;
901
92927ed0
JH
902 /* Empty patch cannot be applied if:
903 * - it is a binary patch or
904 * - metadata does not change and is not a binary patch.
905 */
906 if ((apply || check) &&
907 (patch->is_binary || !metadata_changes(patch)))
ff36de08
JH
908 die("patch with only garbage at line %d", linenr);
909 }
1fea629f 910
c1bb9350
LT
911 return offset + hdrsize + patchsize;
912}
913
6da4016a
LT
914static const char pluses[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
915static const char minuses[]= "----------------------------------------------------------------------";
3f40315a
LT
916
917static void show_stats(struct patch *patch)
918{
62917097 919 const char *prefix = "";
03b4538b 920 char *name = patch->new_name;
22943f1a 921 char *qname = NULL;
95bedc9e 922 int len, max, add, del, total;
3f40315a 923
5041aa70 924 if (!name)
03b4538b 925 name = patch->old_name;
3f40315a 926
22943f1a
JH
927 if (0 < (len = quote_c_style(name, NULL, NULL, 0))) {
928 qname = xmalloc(len + 1);
929 quote_c_style(name, qname, NULL, 0);
930 name = qname;
931 }
932
3f40315a
LT
933 /*
934 * "scale" the filename
935 */
936 len = strlen(name);
937 max = max_len;
938 if (max > 50)
939 max = 50;
62917097
LT
940 if (len > max) {
941 char *slash;
942 prefix = "...";
943 max -= 3;
3f40315a 944 name += len - max;
62917097
LT
945 slash = strchr(name, '/');
946 if (slash)
947 name = slash;
948 }
3f40315a
LT
949 len = max;
950
951 /*
952 * scale the add/delete
953 */
954 max = max_change;
955 if (max + len > 70)
956 max = 70 - len;
95bedc9e
LT
957
958 add = patch->lines_added;
959 del = patch->lines_deleted;
960 total = add + del;
961
69f956e1
SV
962 if (max_change > 0) {
963 total = (total * max + max_change / 2) / max_change;
964 add = (add * max + max_change / 2) / max_change;
965 del = total - add;
966 }
ff36de08
JH
967 if (patch->is_binary)
968 printf(" %s%-*s | Bin\n", prefix, len, name);
969 else
970 printf(" %s%-*s |%5d %.*s%.*s\n", prefix,
971 len, name, patch->lines_added + patch->lines_deleted,
972 add, pluses, del, minuses);
22943f1a
JH
973 if (qname)
974 free(qname);
3f40315a
LT
975}
976
3cca928d
LT
977static int read_old_data(struct stat *st, const char *path, void *buf, unsigned long size)
978{
979 int fd;
980 unsigned long got;
981
982 switch (st->st_mode & S_IFMT) {
983 case S_IFLNK:
984 return readlink(path, buf, size);
985 case S_IFREG:
986 fd = open(path, O_RDONLY);
987 if (fd < 0)
988 return error("unable to open %s", path);
989 got = 0;
990 for (;;) {
991 int ret = read(fd, buf + got, size - got);
992 if (ret < 0) {
993 if (errno == EAGAIN)
994 continue;
995 break;
996 }
997 if (!ret)
998 break;
999 got += ret;
1000 }
1001 close(fd);
1002 return got;
1003
1004 default:
1005 return -1;
1006 }
1007}
1008
1009static int find_offset(const char *buf, unsigned long size, const char *fragment, unsigned long fragsize, int line)
1010{
6e7c92a9
LT
1011 int i;
1012 unsigned long start, backwards, forwards;
3cca928d
LT
1013
1014 if (fragsize > size)
1015 return -1;
1016
1017 start = 0;
1018 if (line > 1) {
3cca928d 1019 unsigned long offset = 0;
6e7c92a9
LT
1020 i = line-1;
1021 while (offset + fragsize <= size) {
3cca928d
LT
1022 if (buf[offset++] == '\n') {
1023 start = offset;
6e7c92a9 1024 if (!--i)
3cca928d
LT
1025 break;
1026 }
1027 }
1028 }
1029
1030 /* Exact line number? */
1031 if (!memcmp(buf + start, fragment, fragsize))
1032 return start;
1033
6e7c92a9
LT
1034 /*
1035 * There's probably some smart way to do this, but I'll leave
1036 * that to the smart and beautiful people. I'm simple and stupid.
1037 */
1038 backwards = start;
1039 forwards = start;
1040 for (i = 0; ; i++) {
1041 unsigned long try;
1042 int n;
1043
1044 /* "backward" */
1045 if (i & 1) {
1046 if (!backwards) {
1047 if (forwards + fragsize > size)
1048 break;
1049 continue;
1050 }
1051 do {
1052 --backwards;
1053 } while (backwards && buf[backwards-1] != '\n');
1054 try = backwards;
1055 } else {
1056 while (forwards + fragsize <= size) {
1057 if (buf[forwards++] == '\n')
1058 break;
1059 }
1060 try = forwards;
1061 }
1062
1063 if (try + fragsize > size)
1064 continue;
1065 if (memcmp(buf + try, fragment, fragsize))
1066 continue;
1067 n = (i >> 1)+1;
1068 if (i & 1)
1069 n = -n;
6e7c92a9
LT
1070 return try;
1071 }
1072
3cca928d
LT
1073 /*
1074 * We should start searching forward and backward.
1075 */
1076 return -1;
1077}
1078
6e7c92a9
LT
1079struct buffer_desc {
1080 char *buffer;
1081 unsigned long size;
1082 unsigned long alloc;
1083};
1084
1085static int apply_one_fragment(struct buffer_desc *desc, struct fragment *frag)
3cca928d 1086{
6e7c92a9 1087 char *buf = desc->buffer;
3cca928d
LT
1088 const char *patch = frag->patch;
1089 int offset, size = frag->size;
1090 char *old = xmalloc(size);
1091 char *new = xmalloc(size);
1092 int oldsize = 0, newsize = 0;
1093
1094 while (size > 0) {
1095 int len = linelen(patch, size);
1096 int plen;
1097
1098 if (!len)
1099 break;
1100
1101 /*
1102 * "plen" is how much of the line we should use for
1103 * the actual patch data. Normally we just remove the
1104 * first character on the line, but if the line is
1105 * followed by "\ No newline", then we also remove the
1106 * last one (which is the newline, of course).
1107 */
1108 plen = len-1;
8b64647d 1109 if (len < size && patch[len] == '\\')
3cca928d
LT
1110 plen--;
1111 switch (*patch) {
1112 case ' ':
1113 case '-':
1114 memcpy(old + oldsize, patch + 1, plen);
1115 oldsize += plen;
1116 if (*patch == '-')
1117 break;
1118 /* Fall-through for ' ' */
1119 case '+':
cb93c193
JH
1120 if (*patch != '+' || !no_add) {
1121 memcpy(new + newsize, patch + 1, plen);
1122 newsize += plen;
1123 }
3cca928d
LT
1124 break;
1125 case '@': case '\\':
1126 /* Ignore it, we already handled it */
1127 break;
1128 default:
1129 return -1;
1130 }
1131 patch += len;
1132 size -= len;
1133 }
1134
6e7c92a9 1135 offset = find_offset(buf, desc->size, old, oldsize, frag->newpos);
3cca928d 1136 if (offset >= 0) {
6e7c92a9
LT
1137 int diff = newsize - oldsize;
1138 unsigned long size = desc->size + diff;
1139 unsigned long alloc = desc->alloc;
1140
1141 if (size > alloc) {
1142 alloc = size + 8192;
1143 desc->alloc = alloc;
1144 buf = xrealloc(buf, alloc);
1145 desc->buffer = buf;
1146 }
1147 desc->size = size;
1148 memmove(buf + offset + newsize, buf + offset + oldsize, size - offset - newsize);
1149 memcpy(buf + offset, new, newsize);
3cca928d
LT
1150 offset = 0;
1151 }
1152
1153 free(old);
1154 free(new);
1155 return offset;
1156}
1157
6e7c92a9 1158static int apply_fragments(struct buffer_desc *desc, struct patch *patch)
3cca928d
LT
1159{
1160 struct fragment *frag = patch->fragments;
1161
1162 while (frag) {
6e7c92a9 1163 if (apply_one_fragment(desc, frag) < 0)
4ec99bf0 1164 return error("patch failed: %s:%ld", patch->old_name, frag->oldpos);
3cca928d
LT
1165 frag = frag->next;
1166 }
30996652 1167 return 0;
3cca928d
LT
1168}
1169
1170static int apply_data(struct patch *patch, struct stat *st)
1171{
6e7c92a9
LT
1172 char *buf;
1173 unsigned long size, alloc;
1174 struct buffer_desc desc;
3cca928d 1175
30996652
LT
1176 size = 0;
1177 alloc = 0;
1178 buf = NULL;
1179 if (patch->old_name) {
1180 size = st->st_size;
1181 alloc = size + 8192;
1182 buf = xmalloc(alloc);
1183 if (read_old_data(st, patch->old_name, buf, alloc) != size)
1184 return error("read of %s failed", patch->old_name);
1185 }
6e7c92a9
LT
1186
1187 desc.size = size;
1188 desc.alloc = alloc;
1189 desc.buffer = buf;
1190 if (apply_fragments(&desc, patch) < 0)
3cca928d 1191 return -1;
6e7c92a9
LT
1192 patch->result = desc.buffer;
1193 patch->resultsize = desc.size;
5aa7d94c
LT
1194
1195 if (patch->is_delete && patch->resultsize)
1196 return error("removal patch leaves file contents");
1197
3cca928d
LT
1198 return 0;
1199}
1200
a577284a 1201static int check_patch(struct patch *patch)
fab2c257 1202{
a577284a 1203 struct stat st;
fab2c257
LT
1204 const char *old_name = patch->old_name;
1205 const char *new_name = patch->new_name;
1206
1207 if (old_name) {
a577284a 1208 int changed;
56d33b11 1209 int stat_ret = lstat(old_name, &st);
a577284a 1210
3cca928d
LT
1211 if (check_index) {
1212 int pos = cache_name_pos(old_name, strlen(old_name));
1213 if (pos < 0)
56d33b11
JH
1214 return error("%s: does not exist in index",
1215 old_name);
1216 if (stat_ret < 0) {
1217 struct checkout costate;
1218 if (errno != ENOENT)
1219 return error("%s: %s", old_name,
1220 strerror(errno));
1221 /* checkout */
1222 costate.base_dir = "";
1223 costate.base_dir_len = 0;
1224 costate.force = 0;
1225 costate.quiet = 0;
1226 costate.not_new = 0;
1227 costate.refresh_cache = 1;
1228 if (checkout_entry(active_cache[pos],
1229 &costate) ||
1230 lstat(old_name, &st))
1231 return -1;
1232 }
1233
3cca928d
LT
1234 changed = ce_match_stat(active_cache[pos], &st);
1235 if (changed)
56d33b11
JH
1236 return error("%s: does not match index",
1237 old_name);
3cca928d 1238 }
56d33b11
JH
1239 else if (stat_ret < 0)
1240 return error("%s: %s", old_name, strerror(errno));
1241
3cca928d
LT
1242 if (patch->is_new < 0)
1243 patch->is_new = 0;
de4971b5 1244 st.st_mode = ntohl(create_ce_mode(st.st_mode));
a577284a
LT
1245 if (!patch->old_mode)
1246 patch->old_mode = st.st_mode;
3cca928d
LT
1247 if ((st.st_mode ^ patch->old_mode) & S_IFMT)
1248 return error("%s: wrong type", old_name);
1249 if (st.st_mode != patch->old_mode)
1250 fprintf(stderr, "warning: %s has type %o, expected %o\n",
1251 old_name, st.st_mode, patch->old_mode);
fab2c257 1252 }
a577284a 1253
fab2c257 1254 if (new_name && (patch->is_new | patch->is_rename | patch->is_copy)) {
3cca928d 1255 if (check_index && cache_name_pos(new_name, strlen(new_name)) >= 0)
a577284a
LT
1256 return error("%s: already exists in index", new_name);
1257 if (!lstat(new_name, &st))
1258 return error("%s: already exists in working directory", new_name);
1259 if (errno != ENOENT)
1260 return error("%s: %s", new_name, strerror(errno));
35cc4bcd
JS
1261 if (!patch->new_mode) {
1262 if (patch->is_new)
1263 patch->new_mode = S_IFREG | 0644;
1264 else
1265 patch->new_mode = patch->old_mode;
1266 }
fab2c257 1267 }
3cca928d
LT
1268
1269 if (new_name && old_name) {
1270 int same = !strcmp(old_name, new_name);
1271 if (!patch->new_mode)
1272 patch->new_mode = patch->old_mode;
1273 if ((patch->old_mode ^ patch->new_mode) & S_IFMT)
1274 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
1275 patch->new_mode, new_name, patch->old_mode,
1276 same ? "" : " of ", same ? "" : old_name);
1277 }
1278
1279 if (apply_data(patch, &st) < 0)
1280 return error("%s: patch does not apply", old_name);
a577284a 1281 return 0;
fab2c257
LT
1282}
1283
a577284a 1284static int check_patch_list(struct patch *patch)
19c58fb8 1285{
a577284a
LT
1286 int error = 0;
1287
1288 for (;patch ; patch = patch->next)
1289 error |= check_patch(patch);
1290 return error;
1291}
1292
2cf67f1e
JH
1293static inline int is_null_sha1(const unsigned char *sha1)
1294{
1295 return !memcmp(sha1, null_sha1, 20);
1296}
1297
1298static void show_index_list(struct patch *list)
1299{
1300 struct patch *patch;
1301
1302 /* Once we start supporting the reverse patch, it may be
1303 * worth showing the new sha1 prefix, but until then...
1304 */
1305 for (patch = list; patch; patch = patch->next) {
1306 const unsigned char *sha1_ptr;
1307 unsigned char sha1[20];
1308 const char *name;
1309
1310 name = patch->old_name ? patch->old_name : patch->new_name;
1311 if (patch->is_new)
1312 sha1_ptr = null_sha1;
1313 else if (get_sha1(patch->old_sha1_prefix, sha1))
1314 die("sha1 information is lacking or useless (%s).",
1315 name);
1316 else
1317 sha1_ptr = sha1;
22943f1a
JH
1318
1319 printf("%06o %s ",patch->old_mode, sha1_to_hex(sha1_ptr));
1320 if (line_termination && quote_c_style(name, NULL, NULL, 0))
1321 quote_c_style(name, NULL, stdout, 0);
1322 else
1323 fputs(name, stdout);
1324 putchar(line_termination);
2cf67f1e
JH
1325 }
1326}
1327
a577284a
LT
1328static void stat_patch_list(struct patch *patch)
1329{
1330 int files, adds, dels;
1331
1332 for (files = adds = dels = 0 ; patch ; patch = patch->next) {
1333 files++;
1334 adds += patch->lines_added;
1335 dels += patch->lines_deleted;
1336 show_stats(patch);
1337 }
1338
1339 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels);
3f40315a
LT
1340}
1341
7d8b7c21
JH
1342static void numstat_patch_list(struct patch *patch)
1343{
1344 for ( ; patch; patch = patch->next) {
1345 const char *name;
1346 name = patch->old_name ? patch->old_name : patch->new_name;
1347 printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);
1348 if (line_termination && quote_c_style(name, NULL, NULL, 0))
1349 quote_c_style(name, NULL, stdout, 0);
1350 else
1351 fputs(name, stdout);
1352 putchar('\n');
1353 }
1354}
1355
96c912a4
JH
1356static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
1357{
1358 if (mode)
1359 printf(" %s mode %06o %s\n", newdelete, mode, name);
1360 else
1361 printf(" %s %s\n", newdelete, name);
1362}
1363
1364static void show_mode_change(struct patch *p, int show_name)
1365{
1366 if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
1367 if (show_name)
1368 printf(" mode change %06o => %06o %s\n",
1369 p->old_mode, p->new_mode, p->new_name);
1370 else
1371 printf(" mode change %06o => %06o\n",
1372 p->old_mode, p->new_mode);
1373 }
1374}
1375
1376static void show_rename_copy(struct patch *p)
1377{
1378 const char *renamecopy = p->is_rename ? "rename" : "copy";
1379 const char *old, *new;
1380
1381 /* Find common prefix */
1382 old = p->old_name;
1383 new = p->new_name;
1384 while (1) {
1385 const char *slash_old, *slash_new;
1386 slash_old = strchr(old, '/');
1387 slash_new = strchr(new, '/');
1388 if (!slash_old ||
1389 !slash_new ||
1390 slash_old - old != slash_new - new ||
1391 memcmp(old, new, slash_new - new))
1392 break;
1393 old = slash_old + 1;
1394 new = slash_new + 1;
1395 }
1396 /* p->old_name thru old is the common prefix, and old and new
1397 * through the end of names are renames
1398 */
1399 if (old != p->old_name)
1400 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
e30e814d 1401 (int)(old - p->old_name), p->old_name,
96c912a4
JH
1402 old, new, p->score);
1403 else
1404 printf(" %s %s => %s (%d%%)\n", renamecopy,
1405 p->old_name, p->new_name, p->score);
1406 show_mode_change(p, 0);
1407}
1408
1409static void summary_patch_list(struct patch *patch)
1410{
1411 struct patch *p;
1412
1413 for (p = patch; p; p = p->next) {
1414 if (p->is_new)
1415 show_file_mode_name("create", p->new_mode, p->new_name);
1416 else if (p->is_delete)
1417 show_file_mode_name("delete", p->old_mode, p->old_name);
1418 else {
1419 if (p->is_rename || p->is_copy)
1420 show_rename_copy(p);
1421 else {
1422 if (p->score) {
1423 printf(" rewrite %s (%d%%)\n",
1424 p->new_name, p->score);
1425 show_mode_change(p, 0);
1426 }
1427 else
1428 show_mode_change(p, 1);
1429 }
1430 }
1431 }
1432}
1433
3f40315a
LT
1434static void patch_stats(struct patch *patch)
1435{
1436 int lines = patch->lines_added + patch->lines_deleted;
1437
1438 if (lines > max_change)
1439 max_change = lines;
1440 if (patch->old_name) {
22943f1a
JH
1441 int len = quote_c_style(patch->old_name, NULL, NULL, 0);
1442 if (!len)
1443 len = strlen(patch->old_name);
3f40315a
LT
1444 if (len > max_len)
1445 max_len = len;
1446 }
1447 if (patch->new_name) {
22943f1a
JH
1448 int len = quote_c_style(patch->new_name, NULL, NULL, 0);
1449 if (!len)
1450 len = strlen(patch->new_name);
3f40315a
LT
1451 if (len > max_len)
1452 max_len = len;
1453 }
19c58fb8
LT
1454}
1455
5aa7d94c
LT
1456static void remove_file(struct patch *patch)
1457{
1458 if (write_index) {
1459 if (remove_file_from_cache(patch->old_name) < 0)
1460 die("unable to remove %s from index", patch->old_name);
1461 }
1462 unlink(patch->old_name);
1463}
1464
1465static void add_index_file(const char *path, unsigned mode, void *buf, unsigned long size)
1466{
1467 struct stat st;
1468 struct cache_entry *ce;
1469 int namelen = strlen(path);
1470 unsigned ce_size = cache_entry_size(namelen);
1471
1472 if (!write_index)
1473 return;
1474
1475 ce = xmalloc(ce_size);
1476 memset(ce, 0, ce_size);
1477 memcpy(ce->name, path, namelen);
1478 ce->ce_mode = create_ce_mode(mode);
1479 ce->ce_flags = htons(namelen);
1480 if (lstat(path, &st) < 0)
1481 die("unable to stat newly created file %s", path);
1482 fill_stat_cache_info(ce, &st);
1483 if (write_sha1_file(buf, size, "blob", ce->sha1) < 0)
1484 die("unable to create backing store for newly created file %s", path);
1485 if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)
1486 die("unable to add cache entry for %s", path);
1487}
1488
5c8af185
LT
1489static void create_subdirectories(const char *path)
1490{
1491 int len = strlen(path);
1492 char *buf = xmalloc(len + 1);
1493 const char *slash = path;
1494
1495 while ((slash = strchr(slash+1, '/')) != NULL) {
1496 len = slash - path;
1497 memcpy(buf, path, len);
1498 buf[len] = 0;
f312de01 1499 if (mkdir(buf, 0777) < 0) {
5c8af185
LT
1500 if (errno != EEXIST)
1501 break;
1502 }
1503 }
1504 free(buf);
1505}
1506
1b668341
LT
1507static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)
1508{
1509 int fd;
1510
1511 if (S_ISLNK(mode))
1512 return symlink(buf, path);
1513 fd = open(path, O_CREAT | O_EXCL | O_WRONLY | O_TRUNC, (mode & 0100) ? 0777 : 0666);
1514 if (fd < 0)
1515 return -1;
1516 while (size) {
1517 int written = write(fd, buf, size);
1518 if (written < 0) {
1519 if (errno == EINTR || errno == EAGAIN)
1520 continue;
1521 die("writing file %s: %s", path, strerror(errno));
1522 }
1523 if (!written)
1524 die("out of space writing file %s", path);
1525 buf += written;
1526 size -= written;
1527 }
1528 if (close(fd) < 0)
1529 die("closing file %s: %s", path, strerror(errno));
1530 return 0;
1531}
1532
5c8af185
LT
1533/*
1534 * We optimistically assume that the directories exist,
1535 * which is true 99% of the time anyway. If they don't,
1536 * we create them and try again.
1537 */
1b668341 1538static void create_one_file(const char *path, unsigned mode, const char *buf, unsigned long size)
5c8af185 1539{
1b668341
LT
1540 if (!try_create_file(path, mode, buf, size))
1541 return;
5c8af185 1542
1b668341 1543 if (errno == ENOENT) {
5c8af185 1544 create_subdirectories(path);
1b668341
LT
1545 if (!try_create_file(path, mode, buf, size))
1546 return;
5c8af185 1547 }
5c8af185 1548
1b668341
LT
1549 if (errno == EEXIST) {
1550 unsigned int nr = getpid();
5c8af185 1551
1b668341
LT
1552 for (;;) {
1553 const char *newpath;
1554 newpath = mkpath("%s~%u", path, nr);
1555 if (!try_create_file(newpath, mode, buf, size)) {
1556 if (!rename(newpath, path))
1557 return;
1558 unlink(newpath);
1559 break;
1560 }
1561 if (errno != EEXIST)
1562 break;
1563 }
5c8af185 1564 }
1b668341 1565 die("unable to write file %s mode %o", path, mode);
5c8af185
LT
1566}
1567
5aa7d94c
LT
1568static void create_file(struct patch *patch)
1569{
1570 const char *path = patch->new_name;
1571 unsigned mode = patch->new_mode;
1572 unsigned long size = patch->resultsize;
1573 char *buf = patch->result;
1574
1575 if (!mode)
1576 mode = S_IFREG | 0644;
1b668341
LT
1577 create_one_file(path, mode, buf, size);
1578 add_index_file(path, mode, buf, size);
5aa7d94c
LT
1579}
1580
1581static void write_out_one_result(struct patch *patch)
1582{
1583 if (patch->is_delete > 0) {
1584 remove_file(patch);
1585 return;
1586 }
1587 if (patch->is_new > 0 || patch->is_copy) {
1588 create_file(patch);
1589 return;
1590 }
1591 /*
1592 * Rename or modification boils down to the same
1593 * thing: remove the old, write the new
1594 */
1595 remove_file(patch);
1596 create_file(patch);
1597}
1598
d854f783 1599static void write_out_results(struct patch *list, int skipped_patch)
5aa7d94c 1600{
d854f783 1601 if (!list && !skipped_patch)
f7b79707
LT
1602 die("No changes");
1603
5aa7d94c
LT
1604 while (list) {
1605 write_out_one_result(list);
1606 list = list->next;
1607 }
1608}
1609
1610static struct cache_file cache_file;
1611
d854f783
JH
1612static struct excludes {
1613 struct excludes *next;
1614 const char *path;
1615} *excludes;
1616
1617static int use_patch(struct patch *p)
1618{
c7c81b3a 1619 const char *pathname = p->new_name ? p->new_name : p->old_name;
d854f783
JH
1620 struct excludes *x = excludes;
1621 while (x) {
1622 if (fnmatch(x->path, pathname, 0) == 0)
1623 return 0;
1624 x = x->next;
1625 }
1626 return 1;
1627}
1628
c1bb9350
LT
1629static int apply_patch(int fd)
1630{
5aa7d94c 1631 int newfd;
c1bb9350
LT
1632 unsigned long offset, size;
1633 char *buffer = read_patch_file(fd, &size);
19c58fb8 1634 struct patch *list = NULL, **listp = &list;
d854f783 1635 int skipped_patch = 0;
c1bb9350
LT
1636
1637 if (!buffer)
1638 return -1;
1639 offset = 0;
1640 while (size > 0) {
19c58fb8
LT
1641 struct patch *patch;
1642 int nr;
1643
1644 patch = xmalloc(sizeof(*patch));
1645 memset(patch, 0, sizeof(*patch));
1646 nr = parse_chunk(buffer + offset, size, patch);
c1bb9350
LT
1647 if (nr < 0)
1648 break;
d854f783
JH
1649 if (use_patch(patch)) {
1650 patch_stats(patch);
1651 *listp = patch;
1652 listp = &patch->next;
1653 } else {
1654 /* perhaps free it a bit better? */
1655 free(patch);
1656 skipped_patch++;
1657 }
c1bb9350
LT
1658 offset += nr;
1659 size -= nr;
1660 }
19c58fb8 1661
5aa7d94c
LT
1662 newfd = -1;
1663 write_index = check_index && apply;
1664 if (write_index)
1665 newfd = hold_index_file_for_update(&cache_file, get_index_file());
1666 if (check_index) {
1667 if (read_cache() < 0)
1668 die("unable to read index file");
1669 }
1670
a577284a
LT
1671 if ((check || apply) && check_patch_list(list) < 0)
1672 exit(1);
1673
5aa7d94c 1674 if (apply)
d854f783 1675 write_out_results(list, skipped_patch);
5aa7d94c
LT
1676
1677 if (write_index) {
1678 if (write_cache(newfd, active_cache, active_nr) ||
1679 commit_index_file(&cache_file))
1680 die("Unable to write new cachefile");
1681 }
1682
2cf67f1e
JH
1683 if (show_index_info)
1684 show_index_list(list);
1685
a577284a
LT
1686 if (diffstat)
1687 stat_patch_list(list);
19c58fb8 1688
7d8b7c21
JH
1689 if (numstat)
1690 numstat_patch_list(list);
1691
96c912a4
JH
1692 if (summary)
1693 summary_patch_list(list);
1694
c1bb9350
LT
1695 free(buffer);
1696 return 0;
1697}
1698
1699int main(int argc, char **argv)
1700{
1701 int i;
4dfdbe10 1702 int read_stdin = 1;
c1bb9350 1703
c1bb9350
LT
1704 for (i = 1; i < argc; i++) {
1705 const char *arg = argv[i];
1706 int fd;
1707
1708 if (!strcmp(arg, "-")) {
1709 apply_patch(0);
4dfdbe10 1710 read_stdin = 0;
c1bb9350
LT
1711 continue;
1712 }
d854f783
JH
1713 if (!strncmp(arg, "--exclude=", 10)) {
1714 struct excludes *x = xmalloc(sizeof(*x));
1715 x->path = arg + 10;
1716 x->next = excludes;
1717 excludes = x;
1718 continue;
1719 }
cb93c193
JH
1720 if (!strcmp(arg, "--no-add")) {
1721 no_add = 1;
1722 continue;
1723 }
fab2c257 1724 if (!strcmp(arg, "--stat")) {
a577284a 1725 apply = 0;
fab2c257
LT
1726 diffstat = 1;
1727 continue;
1728 }
7d8b7c21
JH
1729 if (!strcmp(arg, "--numstat")) {
1730 apply = 0;
1731 numstat = 1;
1732 continue;
1733 }
96c912a4
JH
1734 if (!strcmp(arg, "--summary")) {
1735 apply = 0;
1736 summary = 1;
1737 continue;
1738 }
a577284a
LT
1739 if (!strcmp(arg, "--check")) {
1740 apply = 0;
1741 check = 1;
1742 continue;
1743 }
3cca928d
LT
1744 if (!strcmp(arg, "--index")) {
1745 check_index = 1;
1746 continue;
1747 }
aefa4a5b
LT
1748 if (!strcmp(arg, "--apply")) {
1749 apply = 1;
1750 continue;
1751 }
22943f1a 1752 if (!strcmp(arg, "--index-info")) {
2cf67f1e
JH
1753 apply = 0;
1754 show_index_info = 1;
1755 continue;
1756 }
22943f1a
JH
1757 if (!strcmp(arg, "-z")) {
1758 line_termination = 0;
1759 continue;
1760 }
c1bb9350
LT
1761 fd = open(arg, O_RDONLY);
1762 if (fd < 0)
1763 usage(apply_usage);
4dfdbe10 1764 read_stdin = 0;
c1bb9350
LT
1765 apply_patch(fd);
1766 close(fd);
1767 }
4dfdbe10
LT
1768 if (read_stdin)
1769 apply_patch(0);
c1bb9350
LT
1770 return 0;
1771}