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