Code

GIT 0.99.9j aka 1.0rc3
[git.git] / apply.c
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  *
8  */
9 #include <fnmatch.h>
10 #include "cache.h"
11 #include "quote.h"
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
16 //  --numstat does numeric diffstat, and doesn't actually apply
17 //  --index-info shows the old and new index info for paths if available.
18 //
19 static int allow_binary_replacement = 0;
20 static int check_index = 0;
21 static int write_index = 0;
22 static int diffstat = 0;
23 static int numstat = 0;
24 static int summary = 0;
25 static int check = 0;
26 static int apply = 1;
27 static int no_add = 0;
28 static int show_index_info = 0;
29 static int line_termination = '\n';
30 static const char apply_usage[] =
31 "git-apply [--stat] [--numstat] [--summary] [--check] [--index] [--apply] [--no-add] [--index-info] [--allow-binary-replacement] [-z] <patch>...";
33 /*
34  * For "diff-stat" like behaviour, we keep track of the biggest change
35  * we've seen, and the longest filename. That allows us to do simple
36  * scaling.
37  */
38 static int max_change, max_len;
40 /*
41  * Various "current state", notably line numbers and what
42  * file (and how) we're patching right now.. The "is_xxxx"
43  * things are flags, where -1 means "don't know yet".
44  */
45 static int linenr = 1;
47 struct fragment {
48         unsigned long oldpos, oldlines;
49         unsigned long newpos, newlines;
50         const char *patch;
51         int size;
52         struct fragment *next;
53 };
55 struct patch {
56         char *new_name, *old_name, *def_name;
57         unsigned int old_mode, new_mode;
58         int is_rename, is_copy, is_new, is_delete, is_binary;
59         int lines_added, lines_deleted;
60         int score;
61         struct fragment *fragments;
62         char *result;
63         unsigned long resultsize;
64         char old_sha1_prefix[41];
65         char new_sha1_prefix[41];
66         struct patch *next;
67 };
69 #define CHUNKSIZE (8192)
70 #define SLOP (16)
72 static void *read_patch_file(int fd, unsigned long *sizep)
73 {
74         unsigned long size = 0, alloc = CHUNKSIZE;
75         void *buffer = xmalloc(alloc);
77         for (;;) {
78                 int nr = alloc - size;
79                 if (nr < 1024) {
80                         alloc += CHUNKSIZE;
81                         buffer = xrealloc(buffer, alloc);
82                         nr = alloc - size;
83                 }
84                 nr = read(fd, buffer + size, nr);
85                 if (!nr)
86                         break;
87                 if (nr < 0) {
88                         if (errno == EAGAIN)
89                                 continue;
90                         die("git-apply: read returned %s", strerror(errno));
91                 }
92                 size += nr;
93         }
94         *sizep = size;
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);
104         return buffer;
107 static unsigned long linelen(const char *buffer, unsigned long size)
109         unsigned long len = 0;
110         while (size--) {
111                 len++;
112                 if (*buffer++ == '\n')
113                         break;
114         }
115         return len;
118 static int is_dev_null(const char *str)
120         return !memcmp("/dev/null", str, 9) && isspace(str[9]);
123 #define TERM_SPACE      1
124 #define TERM_TAB        2
126 static int name_terminate(const char *name, int namelen, int c, int terminate)
128         if (c == ' ' && !(terminate & TERM_SPACE))
129                 return 0;
130         if (c == '\t' && !(terminate & TERM_TAB))
131                 return 0;
133         return 1;
136 static char * find_name(const char *line, char *def, int p_value, int terminate)
138         int len;
139         const char *start = line;
140         char *name;
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         }
171         for (;;) {
172                 char c = *line;
174                 if (isspace(c)) {
175                         if (c == '\n')
176                                 break;
177                         if (name_terminate(start, line-start, c, terminate))
178                                 break;
179                 }
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;
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;
200         }
202         name = xmalloc(len + 1);
203         memcpy(name, start, len);
204         name[len] = 0;
205         free(def);
206         return name;
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.
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.
217  */
218 static void parse_traditional_patch(const char *first, const char *second, struct patch *patch)
220         int p_value = 1;
221         char *name;
223         first += 4;     // skip "--- "
224         second += 4;    // skip "+++ "
225         if (is_dev_null(first)) {
226                 patch->is_new = 1;
227                 patch->is_delete = 0;
228                 name = find_name(second, NULL, p_value, TERM_SPACE | TERM_TAB);
229                 patch->new_name = name;
230         } else if (is_dev_null(second)) {
231                 patch->is_new = 0;
232                 patch->is_delete = 1;
233                 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
234                 patch->old_name = name;
235         } else {
236                 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
237                 name = find_name(second, name, p_value, TERM_SPACE | TERM_TAB);
238                 patch->old_name = patch->new_name = name;
239         }
240         if (!name)
241                 die("unable to find filename in patch at line %d", linenr);
244 static int gitdiff_hdrend(const char *line, struct patch *patch)
246         return -1;
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  */
258 static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew)
260         if (!orig_name && !isnull)
261                 return find_name(line, NULL, 1, 0);
263         if (orig_name) {
264                 int len;
265                 const char *name;
266                 char *another;
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);
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);
275                 return orig_name;
276         }
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         }
285 static int gitdiff_oldname(const char *line, struct patch *patch)
287         patch->old_name = gitdiff_verify_name(line, patch->is_new, patch->old_name, "old");
288         return 0;
291 static int gitdiff_newname(const char *line, struct patch *patch)
293         patch->new_name = gitdiff_verify_name(line, patch->is_delete, patch->new_name, "new");
294         return 0;
297 static int gitdiff_oldmode(const char *line, struct patch *patch)
299         patch->old_mode = strtoul(line, NULL, 8);
300         return 0;
303 static int gitdiff_newmode(const char *line, struct patch *patch)
305         patch->new_mode = strtoul(line, NULL, 8);
306         return 0;
309 static int gitdiff_delete(const char *line, struct patch *patch)
311         patch->is_delete = 1;
312         patch->old_name = patch->def_name;
313         return gitdiff_oldmode(line, patch);
316 static int gitdiff_newfile(const char *line, struct patch *patch)
318         patch->is_new = 1;
319         patch->new_name = patch->def_name;
320         return gitdiff_newmode(line, patch);
323 static int gitdiff_copysrc(const char *line, struct patch *patch)
325         patch->is_copy = 1;
326         patch->old_name = find_name(line, NULL, 0, 0);
327         return 0;
330 static int gitdiff_copydst(const char *line, struct patch *patch)
332         patch->is_copy = 1;
333         patch->new_name = find_name(line, NULL, 0, 0);
334         return 0;
337 static int gitdiff_renamesrc(const char *line, struct patch *patch)
339         patch->is_rename = 1;
340         patch->old_name = find_name(line, NULL, 0, 0);
341         return 0;
344 static int gitdiff_renamedst(const char *line, struct patch *patch)
346         patch->is_rename = 1;
347         patch->new_name = find_name(line, NULL, 0, 0);
348         return 0;
351 static int gitdiff_similarity(const char *line, struct patch *patch)
353         if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
354                 patch->score = 0;
355         return 0;
358 static int gitdiff_dissimilarity(const char *line, struct patch *patch)
360         if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
361                 patch->score = 0;
362         return 0;
365 static int gitdiff_index(const char *line, struct patch *patch)
367         /* index line is N hexadecimal, "..", N hexadecimal,
368          * and optional space with octal mode.
369          */
370         const char *ptr, *eol;
371         int len;
373         ptr = strchr(line, '.');
374         if (!ptr || ptr[1] != '.' || 40 < ptr - line)
375                 return 0;
376         len = ptr - line;
377         memcpy(patch->old_sha1_prefix, line, len);
378         patch->old_sha1_prefix[len] = 0;
380         line = ptr + 2;
381         ptr = strchr(line, ' ');
382         eol = strchr(line, '\n');
384         if (!ptr || eol < ptr)
385                 ptr = eol;
386         len = ptr - line;
388         if (40 < len)
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;
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  */
401 static int gitdiff_unrecognized(const char *line, struct patch *patch)
403         return -1;
406 static const char *stop_at_slash(const char *line, int llen)
408         int i;
410         for (i = 0; i < llen; i++) {
411                 int ch = line[i];
412                 if (ch == '/')
413                         return line + i;
414         }
415         return NULL;
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  */
425 static char *git_header_name(char *line, int llen)
427         int len;
428         const char *name;
429         const char *second = NULL;
431         line += strlen("diff --git ");
432         llen -= strlen("diff --git ");
434         if (*line == '"') {
435                 const char *cp;
436                 char *first = unquote_c_style(line, &second);
437                 if (!first)
438                         return NULL;
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 */
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++;
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                 }
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;
485         }
487         /* unquoted first name */
488         name = stop_at_slash(line, llen);
489         if (!name || name == line)
490                 return NULL;
492         name++;
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);
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         }
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];
531                 switch (c) {
532                 default:
533                         continue;
534                 case '\n':
535                         return NULL;
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                         }
545                         if (second[len] == '\n' && !memcmp(name, second, len)) {
546                                 char *ret = xmalloc(len + 1);
547                                 memcpy(ret, name, len);
548                                 ret[len] = 0;
549                                 return ret;
550                         }
551                 }
552         }
553         return NULL;
556 /* Verify that we recognize the lines following a git header */
557 static int parse_git_header(char *line, int len, unsigned int size, struct patch *patch)
559         unsigned long offset;
561         /* A git diff has explicit new/delete information, so we don't guess */
562         patch->is_new = 0;
563         patch->is_delete = 0;
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          */
571         patch->def_name = git_header_name(line, len);
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;
579                         int (*fn)(const char *, struct patch *);
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 },
590                         { "rename old ", gitdiff_renamesrc },
591                         { "rename new ", gitdiff_renamedst },
592                         { "rename from ", gitdiff_renamesrc },
593                         { "rename to ", gitdiff_renamedst },
594                         { "similarity index ", gitdiff_similarity },
595                         { "dissimilarity index ", gitdiff_dissimilarity },
596                         { "index ", gitdiff_index },
597                         { "", gitdiff_unrecognized },
598                 };
599                 int i;
601                 len = linelen(line, size);
602                 if (!len || line[len-1] != '\n')
603                         break;
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;
609                         if (p->fn(line + oplen, patch) < 0)
610                                 return offset;
611                         break;
612                 }
613         }
615         return offset;
618 static int parse_num(const char *line, unsigned long *p)
620         char *ptr;
622         if (!isdigit(*line))
623                 return 0;
624         *p = strtoul(line, &ptr, 10);
625         return ptr - line;
628 static int parse_range(const char *line, int len, int offset, const char *expect,
629                         unsigned long *p1, unsigned long *p2)
631         int digits, ex;
633         if (offset < 0 || offset >= len)
634                 return -1;
635         line += offset;
636         len -= offset;
638         digits = parse_num(line, p1);
639         if (!digits)
640                 return -1;
642         offset += digits;
643         line += digits;
644         len -= digits;
646         *p2 = *p1;
647         if (*line == ',') {
648                 digits = parse_num(line+1, p2);
649                 if (!digits)
650                         return -1;
652                 offset += digits+1;
653                 line += digits+1;
654                 len -= digits+1;
655         }
657         ex = strlen(expect);
658         if (ex > len)
659                 return -1;
660         if (memcmp(line, expect, ex))
661                 return -1;
663         return offset + ex;
666 /*
667  * Parse a unified diff fragment header of the
668  * form "@@ -a,b +c,d @@"
669  */
670 static int parse_fragment_header(char *line, int len, struct fragment *fragment)
672         int offset;
674         if (!len || line[len-1] != '\n')
675                 return -1;
677         /* Figure out the number of lines in a fragment */
678         offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);
679         offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);
681         return offset;
684 static int find_header(char *line, unsigned long size, int *hdrsize, struct patch *patch)
686         unsigned long offset, len;
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;
692         for (offset = 0; size > 0; offset += len, size -= len, line += len, linenr++) {
693                 unsigned long nextlen;
695                 len = linelen(line, size);
696                 if (!len)
697                         break;
699                 /* Testing this early allows us to take a few shortcuts.. */
700                 if (len < 6)
701                         continue;
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)) {
709                         struct fragment dummy;
710                         if (parse_fragment_header(line, len, &dummy) < 0)
711                                 continue;
712                         error("patch fragment without header at line %d: %.*s", linenr, (int)len-1, line);
713                 }
715                 if (size < len + 6)
716                         break;
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)) {
723                         int git_hdr_len = parse_git_header(line, len, size, patch);
724                         if (git_hdr_len <= len)
725                                 continue;
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                         }
731                         *hdrsize = git_hdr_len;
732                         return offset;
733                 }
735                 /** --- followed by +++ ? */
736                 if (memcmp("--- ", line,  4) || memcmp("+++ ", line + len, 4))
737                         continue;
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;
748                 /* Ok, we'll consider it a patch */
749                 parse_traditional_patch(line, line+len, patch);
750                 *hdrsize = len + nextlen;
751                 linenr += 2;
752                 return offset;
753         }
754         return -1;
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  */
764 static int parse_fragment(char *line, unsigned long size, struct patch *patch, struct fragment *fragment)
766         int added, deleted;
767         int len = linelen(line, size), offset;
768         unsigned long oldlines, newlines;
770         offset = parse_fragment_header(line, len, fragment);
771         if (offset < 0)
772                 return -1;
773         oldlines = fragment->oldlines;
774         newlines = fragment->newlines;
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         }
787         if (patch->is_new != !oldlines)
788                 return error("new file depends on old contents");
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         }
795         /* Parse the thing.. */
796         line += len;
797         size -= len;
798         linenr++;
799         added = deleted = 0;
800         for (offset = len; size > 0; offset += len, size -= len, line += len, linenr++) {
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 '-':
814                         deleted++;
815                         oldlines--;
816                         break;
817                 case '+':
818                         added++;
819                         newlines--;
820                         break;
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
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                  */
829                 case '\\':
830                         if (len < 12 || memcmp(line, "\\ ", 2))
831                                 return -1;
832                         break;
833                 }
834         }
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          */
839         if (12 < size && !memcmp(line, "\\ ", 2))
840                 offset += linelen(line, size);
842         patch->lines_added += added;
843         patch->lines_deleted += deleted;
844         return offset;
847 static int parse_single_patch(char *line, unsigned long size, struct patch *patch)
849         unsigned long offset = 0;
850         struct fragment **fragp = &patch->fragments;
852         while (size > 4 && !memcmp(line, "@@ -", 4)) {
853                 struct fragment *fragment;
854                 int len;
856                 fragment = xmalloc(sizeof(*fragment));
857                 memset(fragment, 0, sizeof(*fragment));
858                 len = parse_fragment(line, size, patch, fragment);
859                 if (len <= 0)
860                         die("corrupt patch at line %d", linenr);
862                 fragment->patch = line;
863                 fragment->size = len;
865                 *fragp = fragment;
866                 fragp = &fragment->next;
868                 offset += len;
869                 line += len;
870                 size -= len;
871         }
872         return offset;
875 static inline int metadata_changes(struct patch *patch)
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);
885 static int parse_chunk(char *buffer, unsigned long size, struct patch *patch)
887         int hdrsize, patchsize;
888         int offset = find_header(buffer, size, &hdrsize, patch);
890         if (offset < 0)
891                 return offset;
893         patchsize = parse_single_patch(buffer + offset + hdrsize, size - offset - hdrsize, patch);
895         if (!patchsize) {
896                 static const char binhdr[] = "Binary files ";
898                 if (sizeof(binhdr) - 1 < size - offset - hdrsize &&
899                     !memcmp(binhdr, buffer + hdrsize + offset,
900                             sizeof(binhdr)-1))
901                         patch->is_binary = 1;
903                 /* Empty patch cannot be applied if:
904                  * - it is a binary patch and we do not do binary_replace, or
905                  * - text patch without metadata change
906                  */
907                 if ((apply || check) &&
908                     (patch->is_binary
909                      ? !allow_binary_replacement
910                      : !metadata_changes(patch)))
911                         die("patch with only garbage at line %d", linenr);
912         }
914         return offset + hdrsize + patchsize;
917 static const char pluses[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
918 static const char minuses[]= "----------------------------------------------------------------------";
920 static void show_stats(struct patch *patch)
922         const char *prefix = "";
923         char *name = patch->new_name;
924         char *qname = NULL;
925         int len, max, add, del, total;
927         if (!name)
928                 name = patch->old_name;
930         if (0 < (len = quote_c_style(name, NULL, NULL, 0))) {
931                 qname = xmalloc(len + 1);
932                 quote_c_style(name, qname, NULL, 0);
933                 name = qname;
934         }
936         /*
937          * "scale" the filename
938          */
939         len = strlen(name);
940         max = max_len;
941         if (max > 50)
942                 max = 50;
943         if (len > max) {
944                 char *slash;
945                 prefix = "...";
946                 max -= 3;
947                 name += len - max;
948                 slash = strchr(name, '/');
949                 if (slash)
950                         name = slash;
951         }
952         len = max;
954         /*
955          * scale the add/delete
956          */
957         max = max_change;
958         if (max + len > 70)
959                 max = 70 - len;
961         add = patch->lines_added;
962         del = patch->lines_deleted;
963         total = add + del;
965         if (max_change > 0) {
966                 total = (total * max + max_change / 2) / max_change;
967                 add = (add * max + max_change / 2) / max_change;
968                 del = total - add;
969         }
970         if (patch->is_binary)
971                 printf(" %s%-*s |  Bin\n", prefix, len, name);
972         else
973                 printf(" %s%-*s |%5d %.*s%.*s\n", prefix,
974                        len, name, patch->lines_added + patch->lines_deleted,
975                        add, pluses, del, minuses);
976         if (qname)
977                 free(qname);
980 static int read_old_data(struct stat *st, const char *path, void *buf, unsigned long size)
982         int fd;
983         unsigned long got;
985         switch (st->st_mode & S_IFMT) {
986         case S_IFLNK:
987                 return readlink(path, buf, size);
988         case S_IFREG:
989                 fd = open(path, O_RDONLY);
990                 if (fd < 0)
991                         return error("unable to open %s", path);
992                 got = 0;
993                 for (;;) {
994                         int ret = read(fd, buf + got, size - got);
995                         if (ret < 0) {
996                                 if (errno == EAGAIN)
997                                         continue;
998                                 break;
999                         }
1000                         if (!ret)
1001                                 break;
1002                         got += ret;
1003                 }
1004                 close(fd);
1005                 return got;
1007         default:
1008                 return -1;
1009         }
1012 static int find_offset(const char *buf, unsigned long size, const char *fragment, unsigned long fragsize, int line)
1014         int i;
1015         unsigned long start, backwards, forwards;
1017         if (fragsize > size)
1018                 return -1;
1020         start = 0;
1021         if (line > 1) {
1022                 unsigned long offset = 0;
1023                 i = line-1;
1024                 while (offset + fragsize <= size) {
1025                         if (buf[offset++] == '\n') {
1026                                 start = offset;
1027                                 if (!--i)
1028                                         break;
1029                         }
1030                 }
1031         }
1033         /* Exact line number? */
1034         if (!memcmp(buf + start, fragment, fragsize))
1035                 return start;
1037         /*
1038          * There's probably some smart way to do this, but I'll leave
1039          * that to the smart and beautiful people. I'm simple and stupid.
1040          */
1041         backwards = start;
1042         forwards = start;
1043         for (i = 0; ; i++) {
1044                 unsigned long try;
1045                 int n;
1047                 /* "backward" */
1048                 if (i & 1) {
1049                         if (!backwards) {
1050                                 if (forwards + fragsize > size)
1051                                         break;
1052                                 continue;
1053                         }
1054                         do {
1055                                 --backwards;
1056                         } while (backwards && buf[backwards-1] != '\n');
1057                         try = backwards;
1058                 } else {
1059                         while (forwards + fragsize <= size) {
1060                                 if (buf[forwards++] == '\n')
1061                                         break;
1062                         }
1063                         try = forwards;
1064                 }
1066                 if (try + fragsize > size)
1067                         continue;
1068                 if (memcmp(buf + try, fragment, fragsize))
1069                         continue;
1070                 n = (i >> 1)+1;
1071                 if (i & 1)
1072                         n = -n;
1073                 return try;
1074         }
1076         /*
1077          * We should start searching forward and backward.
1078          */
1079         return -1;
1082 struct buffer_desc {
1083         char *buffer;
1084         unsigned long size;
1085         unsigned long alloc;
1086 };
1088 static int apply_one_fragment(struct buffer_desc *desc, struct fragment *frag)
1090         char *buf = desc->buffer;
1091         const char *patch = frag->patch;
1092         int offset, size = frag->size;
1093         char *old = xmalloc(size);
1094         char *new = xmalloc(size);
1095         int oldsize = 0, newsize = 0;
1097         while (size > 0) {
1098                 int len = linelen(patch, size);
1099                 int plen;
1101                 if (!len)
1102                         break;
1104                 /*
1105                  * "plen" is how much of the line we should use for
1106                  * the actual patch data. Normally we just remove the
1107                  * first character on the line, but if the line is
1108                  * followed by "\ No newline", then we also remove the
1109                  * last one (which is the newline, of course).
1110                  */
1111                 plen = len-1;
1112                 if (len < size && patch[len] == '\\')
1113                         plen--;
1114                 switch (*patch) {
1115                 case ' ':
1116                 case '-':
1117                         memcpy(old + oldsize, patch + 1, plen);
1118                         oldsize += plen;
1119                         if (*patch == '-')
1120                                 break;
1121                 /* Fall-through for ' ' */
1122                 case '+':
1123                         if (*patch != '+' || !no_add) {
1124                                 memcpy(new + newsize, patch + 1, plen);
1125                                 newsize += plen;
1126                         }
1127                         break;
1128                 case '@': case '\\':
1129                         /* Ignore it, we already handled it */
1130                         break;
1131                 default:
1132                         return -1;
1133                 }
1134                 patch += len;
1135                 size -= len;
1136         }
1138         offset = find_offset(buf, desc->size, old, oldsize, frag->newpos);
1139         if (offset >= 0) {
1140                 int diff = newsize - oldsize;
1141                 unsigned long size = desc->size + diff;
1142                 unsigned long alloc = desc->alloc;
1144                 if (size > alloc) {
1145                         alloc = size + 8192;
1146                         desc->alloc = alloc;
1147                         buf = xrealloc(buf, alloc);
1148                         desc->buffer = buf;
1149                 }
1150                 desc->size = size;
1151                 memmove(buf + offset + newsize, buf + offset + oldsize, size - offset - newsize);
1152                 memcpy(buf + offset, new, newsize);
1153                 offset = 0;
1154         }
1156         free(old);
1157         free(new);
1158         return offset;
1161 static int apply_fragments(struct buffer_desc *desc, struct patch *patch)
1163         struct fragment *frag = patch->fragments;
1164         const char *name = patch->old_name ? patch->old_name : patch->new_name;
1166         if (patch->is_binary) {
1167                 unsigned char sha1[20];
1169                 if (!allow_binary_replacement)
1170                         return error("cannot apply binary patch to '%s' "
1171                                      "without --allow-binary-replacement",
1172                                      name);
1174                 /* For safety, we require patch index line to contain
1175                  * full 40-byte textual SHA1 for old and new, at least for now.
1176                  */
1177                 if (strlen(patch->old_sha1_prefix) != 40 ||
1178                     strlen(patch->new_sha1_prefix) != 40 ||
1179                     get_sha1_hex(patch->old_sha1_prefix, sha1) ||
1180                     get_sha1_hex(patch->new_sha1_prefix, sha1))
1181                         return error("cannot apply binary patch to '%s' "
1182                                      "without full index line", name);
1184                 if (patch->old_name) {
1185                         unsigned char hdr[50];
1186                         int hdrlen;
1188                         /* See if the old one matches what the patch
1189                          * applies to.
1190                          */
1191                         write_sha1_file_prepare(desc->buffer, desc->size,
1192                                                 "blob", sha1, hdr, &hdrlen);
1193                         if (strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))
1194                                 return error("the patch applies to '%s' (%s), "
1195                                              "which does not match the "
1196                                              "current contents.",
1197                                              name, sha1_to_hex(sha1));
1198                 }
1199                 else {
1200                         /* Otherwise, the old one must be empty. */
1201                         if (desc->size)
1202                                 return error("the patch applies to an empty "
1203                                              "'%s' but it is not empty", name);
1204                 }
1206                 /* For now, we do not record post-image data in the patch,
1207                  * and require the object already present in the recipient's
1208                  * object database.
1209                  */
1210                 if (desc->buffer) {
1211                         free(desc->buffer);
1212                         desc->alloc = desc->size = 0;
1213                 }
1214                 get_sha1_hex(patch->new_sha1_prefix, sha1);
1216                 if (memcmp(sha1, null_sha1, 20)) {
1217                         char type[10];
1218                         unsigned long size;
1220                         desc->buffer = read_sha1_file(sha1, type, &size);
1221                         if (!desc->buffer)
1222                                 return error("the necessary postimage %s for "
1223                                              "'%s' does not exist",
1224                                              patch->new_sha1_prefix, name);
1225                         desc->alloc = desc->size = size;
1226                 }
1228                 return 0;
1229         }
1231         while (frag) {
1232                 if (apply_one_fragment(desc, frag) < 0)
1233                         return error("patch failed: %s:%ld",
1234                                      name, frag->oldpos);
1235                 frag = frag->next;
1236         }
1237         return 0;
1240 static int apply_data(struct patch *patch, struct stat *st)
1242         char *buf;
1243         unsigned long size, alloc;
1244         struct buffer_desc desc;
1246         size = 0;
1247         alloc = 0;
1248         buf = NULL;
1249         if (patch->old_name) {
1250                 size = st->st_size;
1251                 alloc = size + 8192;
1252                 buf = xmalloc(alloc);
1253                 if (read_old_data(st, patch->old_name, buf, alloc) != size)
1254                         return error("read of %s failed", patch->old_name);
1255         }
1257         desc.size = size;
1258         desc.alloc = alloc;
1259         desc.buffer = buf;
1260         if (apply_fragments(&desc, patch) < 0)
1261                 return -1;
1262         patch->result = desc.buffer;
1263         patch->resultsize = desc.size;
1265         if (patch->is_delete && patch->resultsize)
1266                 return error("removal patch leaves file contents");
1268         return 0;
1271 static int check_patch(struct patch *patch)
1273         struct stat st;
1274         const char *old_name = patch->old_name;
1275         const char *new_name = patch->new_name;
1276         const char *name = old_name ? old_name : new_name;
1278         if (old_name) {
1279                 int changed;
1280                 int stat_ret = lstat(old_name, &st);
1282                 if (check_index) {
1283                         int pos = cache_name_pos(old_name, strlen(old_name));
1284                         if (pos < 0)
1285                                 return error("%s: does not exist in index",
1286                                              old_name);
1287                         if (stat_ret < 0) {
1288                                 struct checkout costate;
1289                                 if (errno != ENOENT)
1290                                         return error("%s: %s", old_name,
1291                                                      strerror(errno));
1292                                 /* checkout */
1293                                 costate.base_dir = "";
1294                                 costate.base_dir_len = 0;
1295                                 costate.force = 0;
1296                                 costate.quiet = 0;
1297                                 costate.not_new = 0;
1298                                 costate.refresh_cache = 1;
1299                                 if (checkout_entry(active_cache[pos],
1300                                                    &costate) ||
1301                                     lstat(old_name, &st))
1302                                         return -1;
1303                         }
1305                         changed = ce_match_stat(active_cache[pos], &st);
1306                         if (changed)
1307                                 return error("%s: does not match index",
1308                                              old_name);
1309                 }
1310                 else if (stat_ret < 0)
1311                         return error("%s: %s", old_name, strerror(errno));
1313                 if (patch->is_new < 0)
1314                         patch->is_new = 0;
1315                 st.st_mode = ntohl(create_ce_mode(st.st_mode));
1316                 if (!patch->old_mode)
1317                         patch->old_mode = st.st_mode;
1318                 if ((st.st_mode ^ patch->old_mode) & S_IFMT)
1319                         return error("%s: wrong type", old_name);
1320                 if (st.st_mode != patch->old_mode)
1321                         fprintf(stderr, "warning: %s has type %o, expected %o\n",
1322                                 old_name, st.st_mode, patch->old_mode);
1323         }
1325         if (new_name && (patch->is_new | patch->is_rename | patch->is_copy)) {
1326                 if (check_index && cache_name_pos(new_name, strlen(new_name)) >= 0)
1327                         return error("%s: already exists in index", new_name);
1328                 if (!lstat(new_name, &st))
1329                         return error("%s: already exists in working directory", new_name);
1330                 if (errno != ENOENT)
1331                         return error("%s: %s", new_name, strerror(errno));
1332                 if (!patch->new_mode) {
1333                         if (patch->is_new)
1334                                 patch->new_mode = S_IFREG | 0644;
1335                         else
1336                                 patch->new_mode = patch->old_mode;
1337                 }
1338         }
1340         if (new_name && old_name) {
1341                 int same = !strcmp(old_name, new_name);
1342                 if (!patch->new_mode)
1343                         patch->new_mode = patch->old_mode;
1344                 if ((patch->old_mode ^ patch->new_mode) & S_IFMT)
1345                         return error("new mode (%o) of %s does not match old mode (%o)%s%s",
1346                                 patch->new_mode, new_name, patch->old_mode,
1347                                 same ? "" : " of ", same ? "" : old_name);
1348         }       
1350         if (apply_data(patch, &st) < 0)
1351                 return error("%s: patch does not apply", name);
1352         return 0;
1355 static int check_patch_list(struct patch *patch)
1357         int error = 0;
1359         for (;patch ; patch = patch->next)
1360                 error |= check_patch(patch);
1361         return error;
1364 static inline int is_null_sha1(const unsigned char *sha1)
1366         return !memcmp(sha1, null_sha1, 20);
1369 static void show_index_list(struct patch *list)
1371         struct patch *patch;
1373         /* Once we start supporting the reverse patch, it may be
1374          * worth showing the new sha1 prefix, but until then...
1375          */
1376         for (patch = list; patch; patch = patch->next) {
1377                 const unsigned char *sha1_ptr;
1378                 unsigned char sha1[20];
1379                 const char *name;
1381                 name = patch->old_name ? patch->old_name : patch->new_name;
1382                 if (patch->is_new)
1383                         sha1_ptr = null_sha1;
1384                 else if (get_sha1(patch->old_sha1_prefix, sha1))
1385                         die("sha1 information is lacking or useless (%s).",
1386                             name);
1387                 else
1388                         sha1_ptr = sha1;
1390                 printf("%06o %s ",patch->old_mode, sha1_to_hex(sha1_ptr));
1391                 if (line_termination && quote_c_style(name, NULL, NULL, 0))
1392                         quote_c_style(name, NULL, stdout, 0);
1393                 else
1394                         fputs(name, stdout);
1395                 putchar(line_termination);
1396         }
1399 static void stat_patch_list(struct patch *patch)
1401         int files, adds, dels;
1403         for (files = adds = dels = 0 ; patch ; patch = patch->next) {
1404                 files++;
1405                 adds += patch->lines_added;
1406                 dels += patch->lines_deleted;
1407                 show_stats(patch);
1408         }
1410         printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels);
1413 static void numstat_patch_list(struct patch *patch)
1415         for ( ; patch; patch = patch->next) {
1416                 const char *name;
1417                 name = patch->old_name ? patch->old_name : patch->new_name;
1418                 printf("%d\t%d\t", patch->lines_added, patch->lines_deleted);
1419                 if (line_termination && quote_c_style(name, NULL, NULL, 0))
1420                         quote_c_style(name, NULL, stdout, 0);
1421                 else
1422                         fputs(name, stdout);
1423                 putchar('\n');
1424         }
1427 static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
1429         if (mode)
1430                 printf(" %s mode %06o %s\n", newdelete, mode, name);
1431         else
1432                 printf(" %s %s\n", newdelete, name);
1435 static void show_mode_change(struct patch *p, int show_name)
1437         if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
1438                 if (show_name)
1439                         printf(" mode change %06o => %06o %s\n",
1440                                p->old_mode, p->new_mode, p->new_name);
1441                 else
1442                         printf(" mode change %06o => %06o\n",
1443                                p->old_mode, p->new_mode);
1444         }
1447 static void show_rename_copy(struct patch *p)
1449         const char *renamecopy = p->is_rename ? "rename" : "copy";
1450         const char *old, *new;
1452         /* Find common prefix */
1453         old = p->old_name;
1454         new = p->new_name;
1455         while (1) {
1456                 const char *slash_old, *slash_new;
1457                 slash_old = strchr(old, '/');
1458                 slash_new = strchr(new, '/');
1459                 if (!slash_old ||
1460                     !slash_new ||
1461                     slash_old - old != slash_new - new ||
1462                     memcmp(old, new, slash_new - new))
1463                         break;
1464                 old = slash_old + 1;
1465                 new = slash_new + 1;
1466         }
1467         /* p->old_name thru old is the common prefix, and old and new
1468          * through the end of names are renames
1469          */
1470         if (old != p->old_name)
1471                 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
1472                        (int)(old - p->old_name), p->old_name,
1473                        old, new, p->score);
1474         else
1475                 printf(" %s %s => %s (%d%%)\n", renamecopy,
1476                        p->old_name, p->new_name, p->score);
1477         show_mode_change(p, 0);
1480 static void summary_patch_list(struct patch *patch)
1482         struct patch *p;
1484         for (p = patch; p; p = p->next) {
1485                 if (p->is_new)
1486                         show_file_mode_name("create", p->new_mode, p->new_name);
1487                 else if (p->is_delete)
1488                         show_file_mode_name("delete", p->old_mode, p->old_name);
1489                 else {
1490                         if (p->is_rename || p->is_copy)
1491                                 show_rename_copy(p);
1492                         else {
1493                                 if (p->score) {
1494                                         printf(" rewrite %s (%d%%)\n",
1495                                                p->new_name, p->score);
1496                                         show_mode_change(p, 0);
1497                                 }
1498                                 else
1499                                         show_mode_change(p, 1);
1500                         }
1501                 }
1502         }
1505 static void patch_stats(struct patch *patch)
1507         int lines = patch->lines_added + patch->lines_deleted;
1509         if (lines > max_change)
1510                 max_change = lines;
1511         if (patch->old_name) {
1512                 int len = quote_c_style(patch->old_name, NULL, NULL, 0);
1513                 if (!len)
1514                         len = strlen(patch->old_name);
1515                 if (len > max_len)
1516                         max_len = len;
1517         }
1518         if (patch->new_name) {
1519                 int len = quote_c_style(patch->new_name, NULL, NULL, 0);
1520                 if (!len)
1521                         len = strlen(patch->new_name);
1522                 if (len > max_len)
1523                         max_len = len;
1524         }
1527 static void remove_file(struct patch *patch)
1529         if (write_index) {
1530                 if (remove_file_from_cache(patch->old_name) < 0)
1531                         die("unable to remove %s from index", patch->old_name);
1532         }
1533         unlink(patch->old_name);
1536 static void add_index_file(const char *path, unsigned mode, void *buf, unsigned long size)
1538         struct stat st;
1539         struct cache_entry *ce;
1540         int namelen = strlen(path);
1541         unsigned ce_size = cache_entry_size(namelen);
1543         if (!write_index)
1544                 return;
1546         ce = xmalloc(ce_size);
1547         memset(ce, 0, ce_size);
1548         memcpy(ce->name, path, namelen);
1549         ce->ce_mode = create_ce_mode(mode);
1550         ce->ce_flags = htons(namelen);
1551         if (lstat(path, &st) < 0)
1552                 die("unable to stat newly created file %s", path);
1553         fill_stat_cache_info(ce, &st);
1554         if (write_sha1_file(buf, size, "blob", ce->sha1) < 0)
1555                 die("unable to create backing store for newly created file %s", path);
1556         if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)
1557                 die("unable to add cache entry for %s", path);
1560 static void create_subdirectories(const char *path)
1562         int len = strlen(path);
1563         char *buf = xmalloc(len + 1);
1564         const char *slash = path;
1566         while ((slash = strchr(slash+1, '/')) != NULL) {
1567                 len = slash - path;
1568                 memcpy(buf, path, len);
1569                 buf[len] = 0;
1570                 if (mkdir(buf, 0777) < 0) {
1571                         if (errno != EEXIST)
1572                                 break;
1573                 }
1574         }
1575         free(buf);
1578 static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)
1580         int fd;
1582         if (S_ISLNK(mode))
1583                 return symlink(buf, path);
1584         fd = open(path, O_CREAT | O_EXCL | O_WRONLY | O_TRUNC, (mode & 0100) ? 0777 : 0666);
1585         if (fd < 0)
1586                 return -1;
1587         while (size) {
1588                 int written = write(fd, buf, size);
1589                 if (written < 0) {
1590                         if (errno == EINTR || errno == EAGAIN)
1591                                 continue;
1592                         die("writing file %s: %s", path, strerror(errno));
1593                 }
1594                 if (!written)
1595                         die("out of space writing file %s", path);
1596                 buf += written;
1597                 size -= written;
1598         }
1599         if (close(fd) < 0)
1600                 die("closing file %s: %s", path, strerror(errno));
1601         return 0;
1604 /*
1605  * We optimistically assume that the directories exist,
1606  * which is true 99% of the time anyway. If they don't,
1607  * we create them and try again.
1608  */
1609 static void create_one_file(const char *path, unsigned mode, const char *buf, unsigned long size)
1611         if (!try_create_file(path, mode, buf, size))
1612                 return;
1614         if (errno == ENOENT) {
1615                 create_subdirectories(path);
1616                 if (!try_create_file(path, mode, buf, size))
1617                         return;
1618         }
1620         if (errno == EEXIST) {
1621                 unsigned int nr = getpid();
1623                 for (;;) {
1624                         const char *newpath;
1625                         newpath = mkpath("%s~%u", path, nr);
1626                         if (!try_create_file(newpath, mode, buf, size)) {
1627                                 if (!rename(newpath, path))
1628                                         return;
1629                                 unlink(newpath);
1630                                 break;
1631                         }
1632                         if (errno != EEXIST)
1633                                 break;
1634                 }                       
1635         }
1636         die("unable to write file %s mode %o", path, mode);
1639 static void create_file(struct patch *patch)
1641         const char *path = patch->new_name;
1642         unsigned mode = patch->new_mode;
1643         unsigned long size = patch->resultsize;
1644         char *buf = patch->result;
1646         if (!mode)
1647                 mode = S_IFREG | 0644;
1648         create_one_file(path, mode, buf, size); 
1649         add_index_file(path, mode, buf, size);
1652 static void write_out_one_result(struct patch *patch)
1654         if (patch->is_delete > 0) {
1655                 remove_file(patch);
1656                 return;
1657         }
1658         if (patch->is_new > 0 || patch->is_copy) {
1659                 create_file(patch);
1660                 return;
1661         }
1662         /*
1663          * Rename or modification boils down to the same
1664          * thing: remove the old, write the new
1665          */
1666         remove_file(patch);
1667         create_file(patch);
1670 static void write_out_results(struct patch *list, int skipped_patch)
1672         if (!list && !skipped_patch)
1673                 die("No changes");
1675         while (list) {
1676                 write_out_one_result(list);
1677                 list = list->next;
1678         }
1681 static struct cache_file cache_file;
1683 static struct excludes {
1684         struct excludes *next;
1685         const char *path;
1686 } *excludes;
1688 static int use_patch(struct patch *p)
1690         const char *pathname = p->new_name ? p->new_name : p->old_name;
1691         struct excludes *x = excludes;
1692         while (x) {
1693                 if (fnmatch(x->path, pathname, 0) == 0)
1694                         return 0;
1695                 x = x->next;
1696         }
1697         return 1;
1700 static int apply_patch(int fd)
1702         int newfd;
1703         unsigned long offset, size;
1704         char *buffer = read_patch_file(fd, &size);
1705         struct patch *list = NULL, **listp = &list;
1706         int skipped_patch = 0;
1708         if (!buffer)
1709                 return -1;
1710         offset = 0;
1711         while (size > 0) {
1712                 struct patch *patch;
1713                 int nr;
1715                 patch = xmalloc(sizeof(*patch));
1716                 memset(patch, 0, sizeof(*patch));
1717                 nr = parse_chunk(buffer + offset, size, patch);
1718                 if (nr < 0)
1719                         break;
1720                 if (use_patch(patch)) {
1721                         patch_stats(patch);
1722                         *listp = patch;
1723                         listp = &patch->next;
1724                 } else {
1725                         /* perhaps free it a bit better? */
1726                         free(patch);
1727                         skipped_patch++;
1728                 }
1729                 offset += nr;
1730                 size -= nr;
1731         }
1733         newfd = -1;
1734         write_index = check_index && apply;
1735         if (write_index)
1736                 newfd = hold_index_file_for_update(&cache_file, get_index_file());
1737         if (check_index) {
1738                 if (read_cache() < 0)
1739                         die("unable to read index file");
1740         }
1742         if ((check || apply) && check_patch_list(list) < 0)
1743                 exit(1);
1745         if (apply)
1746                 write_out_results(list, skipped_patch);
1748         if (write_index) {
1749                 if (write_cache(newfd, active_cache, active_nr) ||
1750                     commit_index_file(&cache_file))
1751                         die("Unable to write new cachefile");
1752         }
1754         if (show_index_info)
1755                 show_index_list(list);
1757         if (diffstat)
1758                 stat_patch_list(list);
1760         if (numstat)
1761                 numstat_patch_list(list);
1763         if (summary)
1764                 summary_patch_list(list);
1766         free(buffer);
1767         return 0;
1770 int main(int argc, char **argv)
1772         int i;
1773         int read_stdin = 1;
1775         for (i = 1; i < argc; i++) {
1776                 const char *arg = argv[i];
1777                 int fd;
1779                 if (!strcmp(arg, "-")) {
1780                         apply_patch(0);
1781                         read_stdin = 0;
1782                         continue;
1783                 }
1784                 if (!strncmp(arg, "--exclude=", 10)) {
1785                         struct excludes *x = xmalloc(sizeof(*x));
1786                         x->path = arg + 10;
1787                         x->next = excludes;
1788                         excludes = x;
1789                         continue;
1790                 }
1791                 if (!strcmp(arg, "--no-add")) {
1792                         no_add = 1;
1793                         continue;
1794                 }
1795                 if (!strcmp(arg, "--stat")) {
1796                         apply = 0;
1797                         diffstat = 1;
1798                         continue;
1799                 }
1800                 if (!strcmp(arg, "--allow-binary-replacement")) {
1801                         allow_binary_replacement = 1;
1802                         continue;
1803                 }
1804                 if (!strcmp(arg, "--numstat")) {
1805                         apply = 0;
1806                         numstat = 1;
1807                         continue;
1808                 }
1809                 if (!strcmp(arg, "--summary")) {
1810                         apply = 0;
1811                         summary = 1;
1812                         continue;
1813                 }
1814                 if (!strcmp(arg, "--check")) {
1815                         apply = 0;
1816                         check = 1;
1817                         continue;
1818                 }
1819                 if (!strcmp(arg, "--index")) {
1820                         check_index = 1;
1821                         continue;
1822                 }
1823                 if (!strcmp(arg, "--apply")) {
1824                         apply = 1;
1825                         continue;
1826                 }
1827                 if (!strcmp(arg, "--index-info")) {
1828                         apply = 0;
1829                         show_index_info = 1;
1830                         continue;
1831                 }
1832                 if (!strcmp(arg, "-z")) {
1833                         line_termination = 0;
1834                         continue;
1835                 }
1836                 fd = open(arg, O_RDONLY);
1837                 if (fd < 0)
1838                         usage(apply_usage);
1839                 read_stdin = 0;
1840                 apply_patch(fd);
1841                 close(fd);
1842         }
1843         if (read_stdin)
1844                 apply_patch(0);
1845         return 0;