blob: fc1d6730d9af0495fe6162c07a545da08aeb0be2 [file] [log] [blame]
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001/*
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 *
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07008 */
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07009#include "cache.h"
Junio C Hamano03ac6e62006-04-23 16:52:52 -070010#include "cache-tree.h"
Junio C Hamano22943f12005-10-14 21:54:52 -070011#include "quote.h"
Peter Eriksen8e440252006-04-02 14:44:09 +020012#include "blob.h"
Junio C Hamano051308f2006-05-04 16:51:44 -070013#include "delta.h"
Peter Eriksenac6245e2006-05-23 14:15:34 +020014#include "builtin.h"
Linus Torvaldsc1bb9352005-05-23 10:52:17 -070015
Pavel Roskina9486b02006-07-10 02:57:51 -040016/*
17 * --check turns on checking that the working tree matches the
18 * files that are being modified, but doesn't apply the patch
19 * --stat does just a diffstat, and doesn't actually apply
20 * --numstat does numeric diffstat, and doesn't actually apply
21 * --index-info shows the old and new index info for paths if available.
22 * --index updates the cache as well.
23 * --cached updates only the cache without ever touching the working tree.
24 */
Junio C Hamanoedf2e372005-11-25 23:14:15 -080025static const char *prefix;
26static int prefix_length = -1;
Eric Wongdbd0f7d2006-05-09 01:08:23 -070027static int newfd = -1;
Junio C Hamanoedf2e372005-11-25 23:14:15 -080028
Junio C Hamano4be60962006-09-17 01:04:24 -070029static int unidiff_zero;
Daniel Barkalowe36f8b62006-01-31 00:36:24 -050030static int p_value = 1;
David Rientjes96f1e582006-08-15 10:23:48 -070031static int check_index;
32static int write_index;
33static int cached;
34static int diffstat;
35static int numstat;
36static int summary;
37static int check;
Linus Torvaldsa5772842005-05-26 15:10:02 -070038static int apply = 1;
David Rientjes96f1e582006-08-15 10:23:48 -070039static int apply_in_reverse;
Junio C Hamano57dc3972006-08-16 17:55:29 -070040static int apply_with_reject;
Junio C Hamanoa2bf4042006-08-18 03:14:48 -070041static int apply_verbosely;
David Rientjes96f1e582006-08-15 10:23:48 -070042static int no_add;
43static int show_index_info;
Junio C Hamano22943f12005-10-14 21:54:52 -070044static int line_termination = '\n';
Shawn O. Pearcebf8675d2006-11-05 02:27:07 -050045static unsigned long p_context = ULONG_MAX;
Junio C Hamano12dd6e82005-07-13 20:28:55 -070046static const char apply_usage[] =
Junio C Hamanoa2bf4042006-08-18 03:14:48 -070047"git-apply [--stat] [--numstat] [--summary] [--check] [--index] [--cached] [--apply] [--no-add] [--index-info] [--allow-binary-replacement] [--reverse] [--reject] [--verbose] [-z] [-pNUM] [-CNUM] [--whitespace=<nowarn|warn|error|error-all|strip>] <patch>...";
Linus Torvaldsc1bb9352005-05-23 10:52:17 -070048
Linus Torvalds19bfcd52006-02-26 09:29:00 -080049static enum whitespace_eol {
Junio C Hamano2ae1c532006-02-27 14:47:45 -080050 nowarn_whitespace,
Linus Torvalds19bfcd52006-02-26 09:29:00 -080051 warn_on_whitespace,
Junio C Hamanob5767dd2006-02-26 18:13:25 -080052 error_on_whitespace,
Junio C Hamano2ae1c532006-02-27 14:47:45 -080053 strip_whitespace,
Junio C Hamano621603b2006-02-27 17:07:16 -080054} new_whitespace = warn_on_whitespace;
David Rientjes96f1e582006-08-15 10:23:48 -070055static int whitespace_error;
Junio C Hamanofc96b7c2006-02-27 14:16:30 -080056static int squelch_whitespace_errors = 5;
David Rientjes96f1e582006-08-15 10:23:48 -070057static int applied_after_stripping;
58static const char *patch_input_file;
Linus Torvalds19bfcd52006-02-26 09:29:00 -080059
Junio C Hamano2ae1c532006-02-27 14:47:45 -080060static void parse_whitespace_option(const char *option)
61{
62 if (!option) {
Junio C Hamano621603b2006-02-27 17:07:16 -080063 new_whitespace = warn_on_whitespace;
Junio C Hamano2ae1c532006-02-27 14:47:45 -080064 return;
65 }
66 if (!strcmp(option, "warn")) {
67 new_whitespace = warn_on_whitespace;
68 return;
69 }
Junio C Hamano621603b2006-02-27 17:07:16 -080070 if (!strcmp(option, "nowarn")) {
71 new_whitespace = nowarn_whitespace;
72 return;
73 }
Junio C Hamano2ae1c532006-02-27 14:47:45 -080074 if (!strcmp(option, "error")) {
75 new_whitespace = error_on_whitespace;
76 return;
77 }
78 if (!strcmp(option, "error-all")) {
79 new_whitespace = error_on_whitespace;
80 squelch_whitespace_errors = 0;
81 return;
82 }
83 if (!strcmp(option, "strip")) {
84 new_whitespace = strip_whitespace;
85 return;
86 }
87 die("unrecognized whitespace option '%s'", option);
88}
89
Junio C Hamanof21d6722006-02-28 01:12:52 -080090static void set_default_whitespace_mode(const char *whitespace_option)
91{
92 if (!whitespace_option && !apply_default_whitespace) {
93 new_whitespace = (apply
94 ? warn_on_whitespace
95 : nowarn_whitespace);
96 }
97}
98
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -070099/*
Linus Torvalds3f403152005-05-26 11:40:43 -0700100 * For "diff-stat" like behaviour, we keep track of the biggest change
101 * we've seen, and the longest filename. That allows us to do simple
102 * scaling.
103 */
104static int max_change, max_len;
105
106/*
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700107 * Various "current state", notably line numbers and what
108 * file (and how) we're patching right now.. The "is_xxxx"
109 * things are flags, where -1 means "don't know yet".
110 */
Linus Torvalds46979f52005-05-23 14:38:49 -0700111static int linenr = 1;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700112
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -0700113/*
114 * This represents one "hunk" from a patch, starting with
115 * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The
116 * patch text is pointed at by patch, and its byte length
117 * is stored in size. leading and trailing are the number
118 * of context lines.
119 */
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700120struct fragment {
Eric W. Biederman47495882006-04-10 03:33:06 -0600121 unsigned long leading, trailing;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700122 unsigned long oldpos, oldlines;
123 unsigned long newpos, newlines;
124 const char *patch;
125 int size;
Junio C Hamano57dc3972006-08-16 17:55:29 -0700126 int rejected;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700127 struct fragment *next;
128};
129
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -0700130/*
131 * When dealing with a binary patch, we reuse "leading" field
132 * to store the type of the binary hunk, either deflated "delta"
133 * or deflated "literal".
134 */
135#define binary_patch_method leading
136#define BINARY_DELTA_DEFLATED 1
137#define BINARY_LITERAL_DEFLATED 2
138
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700139struct patch {
Linus Torvalds5041aa72005-05-26 13:11:24 -0700140 char *new_name, *old_name, *def_name;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700141 unsigned int old_mode, new_mode;
Rene Scharfe3dad11b2006-11-18 13:07:09 +0100142 int is_new, is_delete; /* -1 = unknown, 0 = false, 1 = true */
Junio C Hamano57dc3972006-08-16 17:55:29 -0700143 int rejected;
Junio C Hamano06606262006-05-05 02:41:53 -0700144 unsigned long deflate_origlen;
Linus Torvalds3f403152005-05-26 11:40:43 -0700145 int lines_added, lines_deleted;
Junio C Hamano96c912a2005-06-22 02:29:46 -0700146 int score;
Rene Scharfe3dad11b2006-11-18 13:07:09 +0100147 unsigned int inaccurate_eof:1;
148 unsigned int is_binary:1;
149 unsigned int is_copy:1;
150 unsigned int is_rename:1;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700151 struct fragment *fragments;
Linus Torvalds5aa7d942005-06-05 14:05:43 -0700152 char *result;
Linus Torvalds3cca9282005-06-05 11:03:13 -0700153 unsigned long resultsize;
Junio C Hamano2cf67f12005-10-07 03:42:00 -0700154 char old_sha1_prefix[41];
155 char new_sha1_prefix[41];
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700156 struct patch *next;
157};
Linus Torvalds46979f52005-05-23 14:38:49 -0700158
Junio C Hamanoa2bf4042006-08-18 03:14:48 -0700159static void say_patch_name(FILE *output, const char *pre, struct patch *patch, const char *post)
160{
161 fputs(pre, output);
162 if (patch->old_name && patch->new_name &&
163 strcmp(patch->old_name, patch->new_name)) {
164 write_name_quoted(NULL, 0, patch->old_name, 1, output);
165 fputs(" => ", output);
166 write_name_quoted(NULL, 0, patch->new_name, 1, output);
167 }
168 else {
169 const char *n = patch->new_name;
170 if (!n)
171 n = patch->old_name;
172 write_name_quoted(NULL, 0, n, 1, output);
173 }
174 fputs(post, output);
175}
176
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700177#define CHUNKSIZE (8192)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700178#define SLOP (16)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700179
180static void *read_patch_file(int fd, unsigned long *sizep)
181{
182 unsigned long size = 0, alloc = CHUNKSIZE;
183 void *buffer = xmalloc(alloc);
184
185 for (;;) {
186 int nr = alloc - size;
187 if (nr < 1024) {
188 alloc += CHUNKSIZE;
189 buffer = xrealloc(buffer, alloc);
190 nr = alloc - size;
191 }
Florian Forster1d7f1712006-06-18 17:18:09 +0200192 nr = xread(fd, (char *) buffer + size, nr);
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700193 if (!nr)
194 break;
Junio C Hamano1c15afb2005-12-19 16:18:28 -0800195 if (nr < 0)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700196 die("git-apply: read returned %s", strerror(errno));
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700197 size += nr;
198 }
199 *sizep = size;
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700200
201 /*
202 * Make sure that we have some slop in the buffer
203 * so that we can do speculative "memcmp" etc, and
204 * see to it that it is NUL-filled.
205 */
206 if (alloc < size + SLOP)
207 buffer = xrealloc(buffer, size + SLOP);
Florian Forster1d7f1712006-06-18 17:18:09 +0200208 memset((char *) buffer + size, 0, SLOP);
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700209 return buffer;
210}
211
Linus Torvalds3cca9282005-06-05 11:03:13 -0700212static unsigned long linelen(const char *buffer, unsigned long size)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700213{
214 unsigned long len = 0;
215 while (size--) {
216 len++;
217 if (*buffer++ == '\n')
218 break;
219 }
220 return len;
221}
222
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700223static int is_dev_null(const char *str)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700224{
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700225 return !memcmp("/dev/null", str, 9) && isspace(str[9]);
226}
227
Linus Torvalds381ca9a2005-05-31 15:05:59 -0700228#define TERM_SPACE 1
229#define TERM_TAB 2
Linus Torvalds9a4a1002005-05-23 19:13:55 -0700230
231static int name_terminate(const char *name, int namelen, int c, int terminate)
232{
233 if (c == ' ' && !(terminate & TERM_SPACE))
234 return 0;
235 if (c == '\t' && !(terminate & TERM_TAB))
236 return 0;
237
Linus Torvalds9a4a1002005-05-23 19:13:55 -0700238 return 1;
239}
240
241static char * find_name(const char *line, char *def, int p_value, int terminate)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700242{
243 int len;
244 const char *start = line;
245 char *name;
246
Junio C Hamano22943f12005-10-14 21:54:52 -0700247 if (*line == '"') {
248 /* Proposed "new-style" GNU patch/diff format; see
249 * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2
250 */
251 name = unquote_c_style(line, NULL);
252 if (name) {
253 char *cp = name;
254 while (p_value) {
255 cp = strchr(name, '/');
256 if (!cp)
257 break;
258 cp++;
259 p_value--;
260 }
261 if (cp) {
262 /* name can later be freed, so we need
263 * to memmove, not just return cp
264 */
265 memmove(name, cp, strlen(cp) + 1);
266 free(def);
267 return name;
268 }
269 else {
270 free(name);
271 name = NULL;
272 }
273 }
274 }
275
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700276 for (;;) {
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700277 char c = *line;
Linus Torvalds9a4a1002005-05-23 19:13:55 -0700278
279 if (isspace(c)) {
280 if (c == '\n')
281 break;
282 if (name_terminate(start, line-start, c, terminate))
283 break;
284 }
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700285 line++;
286 if (c == '/' && !--p_value)
287 start = line;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700288 }
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700289 if (!start)
290 return def;
291 len = line - start;
292 if (!len)
293 return def;
294
295 /*
296 * Generally we prefer the shorter name, especially
297 * if the other one is just a variation of that with
298 * something else tacked on to the end (ie "file.orig"
299 * or "file~").
300 */
301 if (def) {
302 int deflen = strlen(def);
303 if (deflen < len && !strncmp(start, def, deflen))
304 return def;
305 }
306
307 name = xmalloc(len + 1);
308 memcpy(name, start, len);
309 name[len] = 0;
310 free(def);
311 return name;
312}
313
314/*
315 * Get the name etc info from the --/+++ lines of a traditional patch header
316 *
317 * NOTE! This hardcodes "-p1" behaviour in filename detection.
Linus Torvalds9a4a1002005-05-23 19:13:55 -0700318 *
319 * FIXME! The end-of-filename heuristics are kind of screwy. For existing
320 * files, we can happily check the index for a match, but for creating a
321 * new file we should try to match whatever "patch" does. I have no idea.
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700322 */
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700323static void parse_traditional_patch(const char *first, const char *second, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700324{
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700325 char *name;
326
Pavel Roskina9486b02006-07-10 02:57:51 -0400327 first += 4; /* skip "--- " */
328 second += 4; /* skip "+++ " */
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700329 if (is_dev_null(first)) {
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700330 patch->is_new = 1;
331 patch->is_delete = 0;
Linus Torvalds5041aa72005-05-26 13:11:24 -0700332 name = find_name(second, NULL, p_value, TERM_SPACE | TERM_TAB);
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700333 patch->new_name = name;
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700334 } else if (is_dev_null(second)) {
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700335 patch->is_new = 0;
336 patch->is_delete = 1;
Linus Torvalds381ca9a2005-05-31 15:05:59 -0700337 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700338 patch->old_name = name;
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700339 } else {
Linus Torvalds381ca9a2005-05-31 15:05:59 -0700340 name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB);
341 name = find_name(second, name, p_value, TERM_SPACE | TERM_TAB);
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700342 patch->old_name = patch->new_name = name;
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700343 }
344 if (!name)
345 die("unable to find filename in patch at line %d", linenr);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700346}
347
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700348static int gitdiff_hdrend(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700349{
350 return -1;
351}
352
Linus Torvalds1e3f6b62005-05-23 19:54:55 -0700353/*
354 * We're anal about diff header consistency, to make
355 * sure that we don't end up having strange ambiguous
356 * patches floating around.
357 *
358 * As a result, gitdiff_{old|new}name() will check
359 * their names against any previous information, just
360 * to make sure..
361 */
362static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew)
363{
Linus Torvalds1e3f6b62005-05-23 19:54:55 -0700364 if (!orig_name && !isnull)
Junio C Hamanoce746182006-09-22 16:17:58 -0700365 return find_name(line, NULL, 1, TERM_TAB);
Linus Torvalds1e3f6b62005-05-23 19:54:55 -0700366
Linus Torvalds1e3f6b62005-05-23 19:54:55 -0700367 if (orig_name) {
Junio C Hamano22943f12005-10-14 21:54:52 -0700368 int len;
369 const char *name;
370 char *another;
Linus Torvalds1e3f6b62005-05-23 19:54:55 -0700371 name = orig_name;
372 len = strlen(name);
373 if (isnull)
374 die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr);
Junio C Hamanoce746182006-09-22 16:17:58 -0700375 another = find_name(line, NULL, 1, TERM_TAB);
Junio C Hamano22943f12005-10-14 21:54:52 -0700376 if (!another || memcmp(another, name, len))
377 die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr);
378 free(another);
Linus Torvalds1e3f6b62005-05-23 19:54:55 -0700379 return orig_name;
380 }
Junio C Hamano22943f12005-10-14 21:54:52 -0700381 else {
382 /* expect "/dev/null" */
383 if (memcmp("/dev/null", line, 9) || line[9] != '\n')
384 die("git-apply: bad git-diff - expected /dev/null on line %d", linenr);
385 return NULL;
386 }
Linus Torvalds1e3f6b62005-05-23 19:54:55 -0700387}
388
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700389static int gitdiff_oldname(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700390{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700391 patch->old_name = gitdiff_verify_name(line, patch->is_new, patch->old_name, "old");
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700392 return 0;
393}
394
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700395static int gitdiff_newname(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700396{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700397 patch->new_name = gitdiff_verify_name(line, patch->is_delete, patch->new_name, "new");
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700398 return 0;
399}
400
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700401static int gitdiff_oldmode(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700402{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700403 patch->old_mode = strtoul(line, NULL, 8);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700404 return 0;
405}
406
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700407static int gitdiff_newmode(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700408{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700409 patch->new_mode = strtoul(line, NULL, 8);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700410 return 0;
411}
412
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700413static int gitdiff_delete(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700414{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700415 patch->is_delete = 1;
Linus Torvalds5041aa72005-05-26 13:11:24 -0700416 patch->old_name = patch->def_name;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700417 return gitdiff_oldmode(line, patch);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700418}
419
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700420static int gitdiff_newfile(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700421{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700422 patch->is_new = 1;
Linus Torvalds5041aa72005-05-26 13:11:24 -0700423 patch->new_name = patch->def_name;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700424 return gitdiff_newmode(line, patch);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700425}
426
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700427static int gitdiff_copysrc(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700428{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700429 patch->is_copy = 1;
430 patch->old_name = find_name(line, NULL, 0, 0);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700431 return 0;
432}
433
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700434static int gitdiff_copydst(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700435{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700436 patch->is_copy = 1;
437 patch->new_name = find_name(line, NULL, 0, 0);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700438 return 0;
439}
440
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700441static int gitdiff_renamesrc(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700442{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700443 patch->is_rename = 1;
444 patch->old_name = find_name(line, NULL, 0, 0);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700445 return 0;
446}
447
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700448static int gitdiff_renamedst(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700449{
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700450 patch->is_rename = 1;
451 patch->new_name = find_name(line, NULL, 0, 0);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700452 return 0;
453}
454
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700455static int gitdiff_similarity(const char *line, struct patch *patch)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700456{
Junio C Hamano96c912a2005-06-22 02:29:46 -0700457 if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
458 patch->score = 0;
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700459 return 0;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700460}
461
Junio C Hamano70aadac2005-05-30 16:40:16 -0700462static int gitdiff_dissimilarity(const char *line, struct patch *patch)
463{
Junio C Hamano96c912a2005-06-22 02:29:46 -0700464 if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX)
465 patch->score = 0;
Junio C Hamano70aadac2005-05-30 16:40:16 -0700466 return 0;
467}
468
Junio C Hamano2cf67f12005-10-07 03:42:00 -0700469static int gitdiff_index(const char *line, struct patch *patch)
470{
471 /* index line is N hexadecimal, "..", N hexadecimal,
472 * and optional space with octal mode.
473 */
474 const char *ptr, *eol;
475 int len;
476
477 ptr = strchr(line, '.');
Junio C Hamano9add69b2005-11-14 17:15:07 -0800478 if (!ptr || ptr[1] != '.' || 40 < ptr - line)
Junio C Hamano2cf67f12005-10-07 03:42:00 -0700479 return 0;
480 len = ptr - line;
481 memcpy(patch->old_sha1_prefix, line, len);
482 patch->old_sha1_prefix[len] = 0;
483
484 line = ptr + 2;
485 ptr = strchr(line, ' ');
486 eol = strchr(line, '\n');
487
488 if (!ptr || eol < ptr)
489 ptr = eol;
490 len = ptr - line;
491
Junio C Hamano9add69b2005-11-14 17:15:07 -0800492 if (40 < len)
Junio C Hamano2cf67f12005-10-07 03:42:00 -0700493 return 0;
494 memcpy(patch->new_sha1_prefix, line, len);
495 patch->new_sha1_prefix[len] = 0;
496 if (*ptr == ' ')
497 patch->new_mode = patch->old_mode = strtoul(ptr+1, NULL, 8);
498 return 0;
499}
500
Linus Torvalds9a4a1002005-05-23 19:13:55 -0700501/*
502 * This is normal for a diff that doesn't change anything: we'll fall through
503 * into the next diff. Tell the parser to break out.
504 */
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700505static int gitdiff_unrecognized(const char *line, struct patch *patch)
Linus Torvalds9a4a1002005-05-23 19:13:55 -0700506{
507 return -1;
508}
509
Junio C Hamano22943f12005-10-14 21:54:52 -0700510static const char *stop_at_slash(const char *line, int llen)
511{
512 int i;
513
514 for (i = 0; i < llen; i++) {
515 int ch = line[i];
516 if (ch == '/')
517 return line + i;
518 }
519 return NULL;
520}
521
522/* This is to extract the same name that appears on "diff --git"
523 * line. We do not find and return anything if it is a rename
524 * patch, and it is OK because we will find the name elsewhere.
525 * We need to reliably find name only when it is mode-change only,
526 * creation or deletion of an empty file. In any of these cases,
527 * both sides are the same name under a/ and b/ respectively.
528 */
529static char *git_header_name(char *line, int llen)
Linus Torvalds5041aa72005-05-26 13:11:24 -0700530{
531 int len;
Junio C Hamano22943f12005-10-14 21:54:52 -0700532 const char *name;
533 const char *second = NULL;
Linus Torvalds5041aa72005-05-26 13:11:24 -0700534
Junio C Hamano22943f12005-10-14 21:54:52 -0700535 line += strlen("diff --git ");
536 llen -= strlen("diff --git ");
537
538 if (*line == '"') {
539 const char *cp;
540 char *first = unquote_c_style(line, &second);
541 if (!first)
Linus Torvalds5041aa72005-05-26 13:11:24 -0700542 return NULL;
Junio C Hamano22943f12005-10-14 21:54:52 -0700543
544 /* advance to the first slash */
545 cp = stop_at_slash(first, strlen(first));
546 if (!cp || cp == first) {
547 /* we do not accept absolute paths */
548 free_first_and_fail:
549 free(first);
550 return NULL;
551 }
552 len = strlen(cp+1);
553 memmove(first, cp+1, len+1); /* including NUL */
554
555 /* second points at one past closing dq of name.
556 * find the second name.
557 */
558 while ((second < line + llen) && isspace(*second))
559 second++;
560
561 if (line + llen <= second)
562 goto free_first_and_fail;
563 if (*second == '"') {
564 char *sp = unquote_c_style(second, NULL);
565 if (!sp)
566 goto free_first_and_fail;
567 cp = stop_at_slash(sp, strlen(sp));
568 if (!cp || cp == sp) {
569 free_both_and_fail:
570 free(sp);
571 goto free_first_and_fail;
572 }
573 /* They must match, otherwise ignore */
574 if (strcmp(cp+1, first))
575 goto free_both_and_fail;
576 free(sp);
577 return first;
578 }
579
580 /* unquoted second */
581 cp = stop_at_slash(second, line + llen - second);
582 if (!cp || cp == second)
583 goto free_first_and_fail;
584 cp++;
585 if (line + llen - cp != len + 1 ||
586 memcmp(first, cp, len))
587 goto free_first_and_fail;
588 return first;
Linus Torvalds5041aa72005-05-26 13:11:24 -0700589 }
590
Junio C Hamano22943f12005-10-14 21:54:52 -0700591 /* unquoted first name */
592 name = stop_at_slash(line, llen);
593 if (!name || name == line)
Linus Torvalds5041aa72005-05-26 13:11:24 -0700594 return NULL;
595
Junio C Hamano22943f12005-10-14 21:54:52 -0700596 name++;
597
598 /* since the first name is unquoted, a dq if exists must be
599 * the beginning of the second name.
600 */
601 for (second = name; second < line + llen; second++) {
602 if (*second == '"') {
603 const char *cp = second;
604 const char *np;
605 char *sp = unquote_c_style(second, NULL);
606
607 if (!sp)
608 return NULL;
609 np = stop_at_slash(sp, strlen(sp));
610 if (!np || np == sp) {
611 free_second_and_fail:
612 free(sp);
613 return NULL;
614 }
615 np++;
616 len = strlen(np);
617 if (len < cp - name &&
618 !strncmp(np, name, len) &&
619 isspace(name[len])) {
620 /* Good */
621 memmove(sp, np, len + 1);
622 return sp;
623 }
624 goto free_second_and_fail;
625 }
626 }
627
Linus Torvalds5041aa72005-05-26 13:11:24 -0700628 /*
629 * Accept a name only if it shows up twice, exactly the same
630 * form.
631 */
632 for (len = 0 ; ; len++) {
Pierre Habouzitdd305c82006-08-23 12:39:15 +0200633 switch (name[len]) {
Linus Torvalds5041aa72005-05-26 13:11:24 -0700634 default:
635 continue;
636 case '\n':
Robert Fitzsimonse70a1652005-08-28 15:24:27 +0000637 return NULL;
Linus Torvalds5041aa72005-05-26 13:11:24 -0700638 case '\t': case ' ':
639 second = name+len;
640 for (;;) {
641 char c = *second++;
642 if (c == '\n')
643 return NULL;
644 if (c == '/')
645 break;
646 }
Linus Torvalds0e87e042005-05-26 13:28:42 -0700647 if (second[len] == '\n' && !memcmp(name, second, len)) {
Linus Torvalds5041aa72005-05-26 13:11:24 -0700648 char *ret = xmalloc(len + 1);
649 memcpy(ret, name, len);
650 ret[len] = 0;
651 return ret;
652 }
653 }
654 }
655 return NULL;
656}
657
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700658/* Verify that we recognize the lines following a git header */
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700659static int parse_git_header(char *line, int len, unsigned int size, struct patch *patch)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700660{
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700661 unsigned long offset;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700662
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700663 /* A git diff has explicit new/delete information, so we don't guess */
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700664 patch->is_new = 0;
665 patch->is_delete = 0;
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700666
Linus Torvalds5041aa72005-05-26 13:11:24 -0700667 /*
668 * Some things may not have the old name in the
669 * rest of the headers anywhere (pure mode changes,
670 * or removing or adding empty files), so we get
671 * the default name from the header.
672 */
Junio C Hamano22943f12005-10-14 21:54:52 -0700673 patch->def_name = git_header_name(line, len);
Linus Torvalds5041aa72005-05-26 13:11:24 -0700674
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700675 line += len;
676 size -= len;
677 linenr++;
678 for (offset = len ; size > 0 ; offset += len, size -= len, line += len, linenr++) {
679 static const struct opentry {
680 const char *str;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700681 int (*fn)(const char *, struct patch *);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700682 } optable[] = {
683 { "@@ -", gitdiff_hdrend },
684 { "--- ", gitdiff_oldname },
685 { "+++ ", gitdiff_newname },
686 { "old mode ", gitdiff_oldmode },
687 { "new mode ", gitdiff_newmode },
688 { "deleted file mode ", gitdiff_delete },
689 { "new file mode ", gitdiff_newfile },
690 { "copy from ", gitdiff_copysrc },
691 { "copy to ", gitdiff_copydst },
Linus Torvalds33f4d082005-06-05 14:26:50 -0700692 { "rename old ", gitdiff_renamesrc },
693 { "rename new ", gitdiff_renamedst },
Linus Torvaldsdc938412005-06-05 15:31:52 -0700694 { "rename from ", gitdiff_renamesrc },
695 { "rename to ", gitdiff_renamedst },
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700696 { "similarity index ", gitdiff_similarity },
Junio C Hamano70aadac2005-05-30 16:40:16 -0700697 { "dissimilarity index ", gitdiff_dissimilarity },
Junio C Hamano2cf67f12005-10-07 03:42:00 -0700698 { "index ", gitdiff_index },
Linus Torvalds9a4a1002005-05-23 19:13:55 -0700699 { "", gitdiff_unrecognized },
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700700 };
701 int i;
702
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700703 len = linelen(line, size);
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700704 if (!len || line[len-1] != '\n')
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700705 break;
Junio C Hamanob4f2a6a2006-03-09 11:58:05 -0800706 for (i = 0; i < ARRAY_SIZE(optable); i++) {
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700707 const struct opentry *p = optable + i;
708 int oplen = strlen(p->str);
709 if (len < oplen || memcmp(p->str, line, oplen))
710 continue;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700711 if (p->fn(line + oplen, patch) < 0)
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700712 return offset;
Linus Torvalds9a4a1002005-05-23 19:13:55 -0700713 break;
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700714 }
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700715 }
716
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700717 return offset;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700718}
719
Linus Torvaldsfab2c252005-05-26 12:25:52 -0700720static int parse_num(const char *line, unsigned long *p)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700721{
722 char *ptr;
Linus Torvaldsfab2c252005-05-26 12:25:52 -0700723
724 if (!isdigit(*line))
725 return 0;
726 *p = strtoul(line, &ptr, 10);
727 return ptr - line;
728}
729
730static int parse_range(const char *line, int len, int offset, const char *expect,
731 unsigned long *p1, unsigned long *p2)
732{
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700733 int digits, ex;
734
735 if (offset < 0 || offset >= len)
736 return -1;
737 line += offset;
738 len -= offset;
739
Linus Torvaldsfab2c252005-05-26 12:25:52 -0700740 digits = parse_num(line, p1);
741 if (!digits)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700742 return -1;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700743
744 offset += digits;
745 line += digits;
746 len -= digits;
747
Linus Torvaldsc1504622006-03-25 13:28:28 -0800748 *p2 = 1;
Linus Torvaldsfab2c252005-05-26 12:25:52 -0700749 if (*line == ',') {
750 digits = parse_num(line+1, p2);
751 if (!digits)
752 return -1;
753
754 offset += digits+1;
755 line += digits+1;
756 len -= digits+1;
757 }
758
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700759 ex = strlen(expect);
760 if (ex > len)
761 return -1;
762 if (memcmp(line, expect, ex))
763 return -1;
764
765 return offset + ex;
766}
767
768/*
Linus Torvalds46979f52005-05-23 14:38:49 -0700769 * Parse a unified diff fragment header of the
770 * form "@@ -a,b +c,d @@"
771 */
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700772static int parse_fragment_header(char *line, int len, struct fragment *fragment)
Linus Torvalds46979f52005-05-23 14:38:49 -0700773{
774 int offset;
775
776 if (!len || line[len-1] != '\n')
777 return -1;
778
779 /* Figure out the number of lines in a fragment */
Linus Torvaldsfab2c252005-05-26 12:25:52 -0700780 offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines);
781 offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines);
Linus Torvalds46979f52005-05-23 14:38:49 -0700782
783 return offset;
784}
785
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700786static int find_header(char *line, unsigned long size, int *hdrsize, struct patch *patch)
Linus Torvalds46979f52005-05-23 14:38:49 -0700787{
788 unsigned long offset, len;
789
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700790 patch->is_rename = patch->is_copy = 0;
791 patch->is_new = patch->is_delete = -1;
792 patch->old_mode = patch->new_mode = 0;
793 patch->old_name = patch->new_name = NULL;
Linus Torvalds46979f52005-05-23 14:38:49 -0700794 for (offset = 0; size > 0; offset += len, size -= len, line += len, linenr++) {
795 unsigned long nextlen;
796
797 len = linelen(line, size);
798 if (!len)
799 break;
800
801 /* Testing this early allows us to take a few shortcuts.. */
802 if (len < 6)
803 continue;
804
805 /*
Pavel Roskin82e5a822006-07-10 01:50:18 -0400806 * Make sure we don't find any unconnected patch fragments.
Linus Torvalds46979f52005-05-23 14:38:49 -0700807 * That's a sign that we didn't find a header, and that a
808 * patch has become corrupted/broken up.
809 */
810 if (!memcmp("@@ -", line, 4)) {
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700811 struct fragment dummy;
812 if (parse_fragment_header(line, len, &dummy) < 0)
Linus Torvalds46979f52005-05-23 14:38:49 -0700813 continue;
Junio C Hamano65341412007-01-09 11:50:53 -0800814 die("patch fragment without header at line %d: %.*s",
815 linenr, (int)len-1, line);
Linus Torvalds46979f52005-05-23 14:38:49 -0700816 }
817
818 if (size < len + 6)
819 break;
820
821 /*
822 * Git patch? It might not have a real patch, just a rename
823 * or mode change, so we handle that specially
824 */
825 if (!memcmp("diff --git ", line, 11)) {
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700826 int git_hdr_len = parse_git_header(line, len, size, patch);
Linus Torvalds206de272005-06-12 09:37:49 -0700827 if (git_hdr_len <= len)
Linus Torvalds46979f52005-05-23 14:38:49 -0700828 continue;
Linus Torvaldsb7e80392005-06-17 15:23:40 -0700829 if (!patch->old_name && !patch->new_name) {
830 if (!patch->def_name)
831 die("git diff header lacks filename information (line %d)", linenr);
832 patch->old_name = patch->new_name = patch->def_name;
833 }
Linus Torvaldsa4acb0e2005-05-23 16:09:09 -0700834 *hdrsize = git_hdr_len;
Linus Torvalds46979f52005-05-23 14:38:49 -0700835 return offset;
836 }
837
838 /** --- followed by +++ ? */
839 if (memcmp("--- ", line, 4) || memcmp("+++ ", line + len, 4))
840 continue;
841
842 /*
843 * We only accept unified patches, so we want it to
844 * at least have "@@ -a,b +c,d @@\n", which is 14 chars
845 * minimum
846 */
847 nextlen = linelen(line + len, size - len);
848 if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4))
849 continue;
850
851 /* Ok, we'll consider it a patch */
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700852 parse_traditional_patch(line, line+len, patch);
Linus Torvalds46979f52005-05-23 14:38:49 -0700853 *hdrsize = len + nextlen;
854 linenr += 2;
855 return offset;
856 }
857 return -1;
858}
859
Junio C Hamanod0c25032006-09-23 00:37:19 -0700860static void check_whitespace(const char *line, int len)
861{
862 const char *err = "Adds trailing whitespace";
863 int seen_space = 0;
864 int i;
865
866 /*
867 * We know len is at least two, since we have a '+' and we
868 * checked that the last character was a '\n' before calling
869 * this function. That is, an addition of an empty line would
870 * check the '+' here. Sneaky...
871 */
872 if (isspace(line[len-2]))
873 goto error;
874
875 /*
876 * Make sure that there is no space followed by a tab in
877 * indentation.
878 */
879 err = "Space in indent is followed by a tab";
880 for (i = 1; i < len; i++) {
881 if (line[i] == '\t') {
882 if (seen_space)
883 goto error;
884 }
885 else if (line[i] == ' ')
886 seen_space = 1;
887 else
888 break;
889 }
890 return;
891
892 error:
893 whitespace_error++;
894 if (squelch_whitespace_errors &&
895 squelch_whitespace_errors < whitespace_error)
896 ;
897 else
898 fprintf(stderr, "%s.\n%s:%d:%.*s\n",
899 err, patch_input_file, linenr, len-2, line+1);
900}
901
902
Linus Torvalds46979f52005-05-23 14:38:49 -0700903/*
Junio C Hamano4be60962006-09-17 01:04:24 -0700904 * Parse a unified diff. Note that this really needs to parse each
905 * fragment separately, since the only way to know the difference
906 * between a "---" that is part of a patch, and a "---" that starts
907 * the next patch is to look at the line counts..
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700908 */
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700909static int parse_fragment(char *line, unsigned long size, struct patch *patch, struct fragment *fragment)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700910{
Linus Torvalds3f403152005-05-26 11:40:43 -0700911 int added, deleted;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700912 int len = linelen(line, size), offset;
Linus Torvalds30996652005-06-05 12:43:56 -0700913 unsigned long oldlines, newlines;
Eric W. Biederman47495882006-04-10 03:33:06 -0600914 unsigned long leading, trailing;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700915
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700916 offset = parse_fragment_header(line, len, fragment);
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700917 if (offset < 0)
918 return -1;
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700919 oldlines = fragment->oldlines;
920 newlines = fragment->newlines;
Eric W. Biederman47495882006-04-10 03:33:06 -0600921 leading = 0;
922 trailing = 0;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700923
924 /* Parse the thing.. */
925 line += len;
926 size -= len;
Linus Torvalds46979f52005-05-23 14:38:49 -0700927 linenr++;
Linus Torvalds3f403152005-05-26 11:40:43 -0700928 added = deleted = 0;
Junio C Hamano4be60962006-09-17 01:04:24 -0700929 for (offset = len;
930 0 < size;
931 offset += len, size -= len, line += len, linenr++) {
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700932 if (!oldlines && !newlines)
933 break;
934 len = linelen(line, size);
935 if (!len || line[len-1] != '\n')
936 return -1;
937 switch (*line) {
938 default:
939 return -1;
Linus Torvaldsb507b462006-10-19 19:26:08 -0700940 case '\n': /* newer GNU diff, an empty context line */
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700941 case ' ':
942 oldlines--;
943 newlines--;
Eric W. Biederman47495882006-04-10 03:33:06 -0600944 if (!deleted && !added)
945 leading++;
946 trailing++;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700947 break;
948 case '-':
Linus Torvalds3f403152005-05-26 11:40:43 -0700949 deleted++;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700950 oldlines--;
Eric W. Biederman47495882006-04-10 03:33:06 -0600951 trailing = 0;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700952 break;
953 case '+':
Junio C Hamanod0c25032006-09-23 00:37:19 -0700954 if (new_whitespace != nowarn_whitespace)
955 check_whitespace(line, len);
Linus Torvalds3f403152005-05-26 11:40:43 -0700956 added++;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700957 newlines--;
Eric W. Biederman47495882006-04-10 03:33:06 -0600958 trailing = 0;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700959 break;
Fredrik Kuivinen433ef8a2005-09-04 19:29:02 +0200960
961 /* We allow "\ No newline at end of file". Depending
962 * on locale settings when the patch was produced we
963 * don't know what this line looks like. The only
Junio C Hamano56d33b12005-10-03 13:16:39 -0700964 * thing we do know is that it begins with "\ ".
965 * Checking for 12 is just for sanity check -- any
966 * l10n of "\ No newline..." is at least that long.
967 */
Linus Torvaldsfab2c252005-05-26 12:25:52 -0700968 case '\\':
Fredrik Kuivinen433ef8a2005-09-04 19:29:02 +0200969 if (len < 12 || memcmp(line, "\\ ", 2))
Linus Torvalds3cca9282005-06-05 11:03:13 -0700970 return -1;
Linus Torvaldsfab2c252005-05-26 12:25:52 -0700971 break;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700972 }
973 }
Linus Torvaldsc1504622006-03-25 13:28:28 -0800974 if (oldlines || newlines)
975 return -1;
Eric W. Biederman47495882006-04-10 03:33:06 -0600976 fragment->leading = leading;
977 fragment->trailing = trailing;
978
Junio C Hamano8b646472005-07-22 09:56:39 -0700979 /* If a fragment ends with an incomplete line, we failed to include
980 * it in the above loop because we hit oldlines == newlines == 0
981 * before seeing it.
982 */
Fredrik Kuivinen433ef8a2005-09-04 19:29:02 +0200983 if (12 < size && !memcmp(line, "\\ ", 2))
Junio C Hamano8b646472005-07-22 09:56:39 -0700984 offset += linelen(line, size);
985
Linus Torvalds3f403152005-05-26 11:40:43 -0700986 patch->lines_added += added;
987 patch->lines_deleted += deleted;
Junio C Hamano4be60962006-09-17 01:04:24 -0700988
989 if (0 < patch->is_new && oldlines)
990 return error("new file depends on old contents");
991 if (0 < patch->is_delete && newlines)
992 return error("deleted file still has contents");
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700993 return offset;
994}
995
Linus Torvalds19c58fb2005-05-26 10:23:51 -0700996static int parse_single_patch(char *line, unsigned long size, struct patch *patch)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -0700997{
998 unsigned long offset = 0;
Junio C Hamano4be60962006-09-17 01:04:24 -0700999 unsigned long oldlines = 0, newlines = 0, context = 0;
Linus Torvalds19c58fb2005-05-26 10:23:51 -07001000 struct fragment **fragp = &patch->fragments;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001001
1002 while (size > 4 && !memcmp(line, "@@ -", 4)) {
Linus Torvalds19c58fb2005-05-26 10:23:51 -07001003 struct fragment *fragment;
1004 int len;
1005
Peter Eriksen90321c12006-04-03 19:30:46 +01001006 fragment = xcalloc(1, sizeof(*fragment));
Linus Torvalds19c58fb2005-05-26 10:23:51 -07001007 len = parse_fragment(line, size, patch, fragment);
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001008 if (len <= 0)
Linus Torvalds46979f52005-05-23 14:38:49 -07001009 die("corrupt patch at line %d", linenr);
Linus Torvalds19c58fb2005-05-26 10:23:51 -07001010 fragment->patch = line;
1011 fragment->size = len;
Junio C Hamano4be60962006-09-17 01:04:24 -07001012 oldlines += fragment->oldlines;
1013 newlines += fragment->newlines;
1014 context += fragment->leading + fragment->trailing;
Linus Torvalds19c58fb2005-05-26 10:23:51 -07001015
1016 *fragp = fragment;
1017 fragp = &fragment->next;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001018
1019 offset += len;
1020 line += len;
1021 size -= len;
1022 }
Junio C Hamano4be60962006-09-17 01:04:24 -07001023
1024 /*
1025 * If something was removed (i.e. we have old-lines) it cannot
1026 * be creation, and if something was added it cannot be
1027 * deletion. However, the reverse is not true; --unified=0
1028 * patches that only add are not necessarily creation even
1029 * though they do not have any old lines, and ones that only
1030 * delete are not necessarily deletion.
1031 *
1032 * Unfortunately, a real creation/deletion patch do _not_ have
1033 * any context line by definition, so we cannot safely tell it
1034 * apart with --unified=0 insanity. At least if the patch has
1035 * more than one hunk it is not creation or deletion.
1036 */
1037 if (patch->is_new < 0 &&
1038 (oldlines || (patch->fragments && patch->fragments->next)))
1039 patch->is_new = 0;
1040 if (patch->is_delete < 0 &&
1041 (newlines || (patch->fragments && patch->fragments->next)))
1042 patch->is_delete = 0;
1043 if (!unidiff_zero || context) {
1044 /* If the user says the patch is not generated with
1045 * --unified=0, or if we have seen context lines,
1046 * then not having oldlines means the patch is creation,
1047 * and not having newlines means the patch is deletion.
1048 */
Junio C Hamano6f9f3b22006-11-04 02:28:53 -08001049 if (patch->is_new < 0 && !oldlines) {
Junio C Hamano4be60962006-09-17 01:04:24 -07001050 patch->is_new = 1;
Junio C Hamano6f9f3b22006-11-04 02:28:53 -08001051 patch->old_name = NULL;
1052 }
1053 if (patch->is_delete < 0 && !newlines) {
Junio C Hamano4be60962006-09-17 01:04:24 -07001054 patch->is_delete = 1;
Junio C Hamano6f9f3b22006-11-04 02:28:53 -08001055 patch->new_name = NULL;
1056 }
Junio C Hamano4be60962006-09-17 01:04:24 -07001057 }
1058
1059 if (0 < patch->is_new && oldlines)
1060 die("new file %s depends on old contents", patch->new_name);
1061 if (0 < patch->is_delete && newlines)
1062 die("deleted file %s still has contents", patch->old_name);
1063 if (!patch->is_delete && !newlines && context)
1064 fprintf(stderr, "** warning: file %s becomes empty but "
1065 "is not deleted\n", patch->new_name);
1066
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001067 return offset;
1068}
1069
Linus Torvalds1fea6292005-09-30 23:25:23 -07001070static inline int metadata_changes(struct patch *patch)
1071{
1072 return patch->is_rename > 0 ||
1073 patch->is_copy > 0 ||
1074 patch->is_new > 0 ||
1075 patch->is_delete ||
1076 (patch->old_mode && patch->new_mode &&
1077 patch->old_mode != patch->new_mode);
1078}
1079
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001080static char *inflate_it(const void *data, unsigned long size,
1081 unsigned long inflated_size)
Junio C Hamano051308f2006-05-04 16:51:44 -07001082{
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001083 z_stream stream;
1084 void *out;
1085 int st;
1086
1087 memset(&stream, 0, sizeof(stream));
1088
1089 stream.next_in = (unsigned char *)data;
1090 stream.avail_in = size;
1091 stream.next_out = out = xmalloc(inflated_size);
1092 stream.avail_out = inflated_size;
1093 inflateInit(&stream);
1094 st = inflate(&stream, Z_FINISH);
1095 if ((st != Z_STREAM_END) || stream.total_out != inflated_size) {
1096 free(out);
1097 return NULL;
1098 }
1099 return out;
1100}
1101
1102static struct fragment *parse_binary_hunk(char **buf_p,
1103 unsigned long *sz_p,
1104 int *status_p,
1105 int *used_p)
1106{
1107 /* Expect a line that begins with binary patch method ("literal"
1108 * or "delta"), followed by the length of data before deflating.
1109 * a sequence of 'length-byte' followed by base-85 encoded data
1110 * should follow, terminated by a newline.
Junio C Hamano051308f2006-05-04 16:51:44 -07001111 *
1112 * Each 5-byte sequence of base-85 encodes up to 4 bytes,
1113 * and we would limit the patch line to 66 characters,
1114 * so one line can fit up to 13 groups that would decode
1115 * to 52 bytes max. The length byte 'A'-'Z' corresponds
1116 * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes.
Junio C Hamano051308f2006-05-04 16:51:44 -07001117 */
1118 int llen, used;
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001119 unsigned long size = *sz_p;
1120 char *buffer = *buf_p;
1121 int patch_method;
1122 unsigned long origlen;
Junio C Hamano06606262006-05-05 02:41:53 -07001123 char *data = NULL;
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001124 int hunk_size = 0;
1125 struct fragment *frag;
Junio C Hamano051308f2006-05-04 16:51:44 -07001126
Junio C Hamano06606262006-05-05 02:41:53 -07001127 llen = linelen(buffer, size);
1128 used = llen;
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001129
1130 *status_p = 0;
Junio C Hamano06606262006-05-05 02:41:53 -07001131
1132 if (!strncmp(buffer, "delta ", 6)) {
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001133 patch_method = BINARY_DELTA_DEFLATED;
1134 origlen = strtoul(buffer + 6, NULL, 10);
Junio C Hamano06606262006-05-05 02:41:53 -07001135 }
1136 else if (!strncmp(buffer, "literal ", 8)) {
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001137 patch_method = BINARY_LITERAL_DEFLATED;
1138 origlen = strtoul(buffer + 8, NULL, 10);
Junio C Hamano06606262006-05-05 02:41:53 -07001139 }
1140 else
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001141 return NULL;
1142
1143 linenr++;
Junio C Hamano06606262006-05-05 02:41:53 -07001144 buffer += llen;
Junio C Hamano051308f2006-05-04 16:51:44 -07001145 while (1) {
1146 int byte_length, max_byte_length, newsize;
1147 llen = linelen(buffer, size);
1148 used += llen;
1149 linenr++;
Junio C Hamano03eb8f82006-08-16 16:07:20 -07001150 if (llen == 1) {
1151 /* consume the blank line */
1152 buffer++;
1153 size--;
Junio C Hamano051308f2006-05-04 16:51:44 -07001154 break;
Junio C Hamano03eb8f82006-08-16 16:07:20 -07001155 }
Junio C Hamano051308f2006-05-04 16:51:44 -07001156 /* Minimum line is "A00000\n" which is 7-byte long,
1157 * and the line length must be multiple of 5 plus 2.
1158 */
1159 if ((llen < 7) || (llen-2) % 5)
1160 goto corrupt;
1161 max_byte_length = (llen - 2) / 5 * 4;
1162 byte_length = *buffer;
1163 if ('A' <= byte_length && byte_length <= 'Z')
1164 byte_length = byte_length - 'A' + 1;
1165 else if ('a' <= byte_length && byte_length <= 'z')
1166 byte_length = byte_length - 'a' + 27;
1167 else
1168 goto corrupt;
1169 /* if the input length was not multiple of 4, we would
1170 * have filler at the end but the filler should never
1171 * exceed 3 bytes
1172 */
1173 if (max_byte_length < byte_length ||
1174 byte_length <= max_byte_length - 4)
1175 goto corrupt;
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001176 newsize = hunk_size + byte_length;
Junio C Hamano06606262006-05-05 02:41:53 -07001177 data = xrealloc(data, newsize);
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001178 if (decode_85(data + hunk_size, buffer + 1, byte_length))
Junio C Hamano051308f2006-05-04 16:51:44 -07001179 goto corrupt;
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001180 hunk_size = newsize;
Junio C Hamano051308f2006-05-04 16:51:44 -07001181 buffer += llen;
1182 size -= llen;
1183 }
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001184
1185 frag = xcalloc(1, sizeof(*frag));
1186 frag->patch = inflate_it(data, hunk_size, origlen);
1187 if (!frag->patch)
1188 goto corrupt;
1189 free(data);
1190 frag->size = origlen;
1191 *buf_p = buffer;
1192 *sz_p = size;
1193 *used_p = used;
1194 frag->binary_patch_method = patch_method;
1195 return frag;
1196
Junio C Hamano051308f2006-05-04 16:51:44 -07001197 corrupt:
Junio C Hamano4cac42b2006-08-27 21:19:39 -07001198 free(data);
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001199 *status_p = -1;
1200 error("corrupt binary patch at line %d: %.*s",
1201 linenr-1, llen-1, buffer);
1202 return NULL;
1203}
1204
1205static int parse_binary(char *buffer, unsigned long size, struct patch *patch)
1206{
1207 /* We have read "GIT binary patch\n"; what follows is a line
1208 * that says the patch method (currently, either "literal" or
1209 * "delta") and the length of data before deflating; a
1210 * sequence of 'length-byte' followed by base-85 encoded data
1211 * follows.
1212 *
1213 * When a binary patch is reversible, there is another binary
1214 * hunk in the same format, starting with patch method (either
1215 * "literal" or "delta") with the length of data, and a sequence
1216 * of length-byte + base-85 encoded data, terminated with another
1217 * empty line. This data, when applied to the postimage, produces
1218 * the preimage.
1219 */
1220 struct fragment *forward;
1221 struct fragment *reverse;
1222 int status;
1223 int used, used_1;
1224
1225 forward = parse_binary_hunk(&buffer, &size, &status, &used);
1226 if (!forward && !status)
1227 /* there has to be one hunk (forward hunk) */
1228 return error("unrecognized binary patch at line %d", linenr-1);
1229 if (status)
1230 /* otherwise we already gave an error message */
1231 return status;
1232
1233 reverse = parse_binary_hunk(&buffer, &size, &status, &used_1);
1234 if (reverse)
1235 used += used_1;
1236 else if (status) {
1237 /* not having reverse hunk is not an error, but having
1238 * a corrupt reverse hunk is.
1239 */
1240 free((void*) forward->patch);
1241 free(forward);
1242 return status;
1243 }
1244 forward->next = reverse;
1245 patch->fragments = forward;
1246 patch->is_binary = 1;
1247 return used;
Junio C Hamano051308f2006-05-04 16:51:44 -07001248}
1249
Linus Torvalds19c58fb2005-05-26 10:23:51 -07001250static int parse_chunk(char *buffer, unsigned long size, struct patch *patch)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001251{
1252 int hdrsize, patchsize;
Linus Torvalds19c58fb2005-05-26 10:23:51 -07001253 int offset = find_header(buffer, size, &hdrsize, patch);
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001254
1255 if (offset < 0)
1256 return offset;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001257
Linus Torvalds19c58fb2005-05-26 10:23:51 -07001258 patchsize = parse_single_patch(buffer + offset + hdrsize, size - offset - hdrsize, patch);
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001259
Junio C Hamano92927ed2005-11-16 14:12:56 -08001260 if (!patchsize) {
Junio C Hamano3200d1a2005-11-17 20:46:29 -08001261 static const char *binhdr[] = {
1262 "Binary files ",
1263 "Files ",
1264 NULL,
1265 };
Junio C Hamano051308f2006-05-04 16:51:44 -07001266 static const char git_binary[] = "GIT binary patch\n";
Junio C Hamano3200d1a2005-11-17 20:46:29 -08001267 int i;
1268 int hd = hdrsize + offset;
1269 unsigned long llen = linelen(buffer + hd, size - hd);
Junio C Hamanoff36de02005-11-09 14:59:23 -08001270
Junio C Hamano051308f2006-05-04 16:51:44 -07001271 if (llen == sizeof(git_binary) - 1 &&
1272 !memcmp(git_binary, buffer + hd, llen)) {
1273 int used;
1274 linenr++;
1275 used = parse_binary(buffer + hd + llen,
1276 size - hd - llen, patch);
1277 if (used)
1278 patchsize = used + llen;
1279 else
1280 patchsize = 0;
1281 }
1282 else if (!memcmp(" differ\n", buffer + hd + llen - 8, 8)) {
Junio C Hamano3200d1a2005-11-17 20:46:29 -08001283 for (i = 0; binhdr[i]; i++) {
1284 int len = strlen(binhdr[i]);
1285 if (len < size - hd &&
1286 !memcmp(binhdr[i], buffer + hd, len)) {
Junio C Hamano051308f2006-05-04 16:51:44 -07001287 linenr++;
Junio C Hamano3200d1a2005-11-17 20:46:29 -08001288 patch->is_binary = 1;
Junio C Hamano051308f2006-05-04 16:51:44 -07001289 patchsize = llen;
Junio C Hamano3200d1a2005-11-17 20:46:29 -08001290 break;
1291 }
1292 }
Junio C Hamano051308f2006-05-04 16:51:44 -07001293 }
Junio C Hamanoff36de02005-11-09 14:59:23 -08001294
Junio C Hamano2b6eef92006-09-06 22:45:21 -07001295 /* Empty patch cannot be applied if it is a text patch
1296 * without metadata change. A binary patch appears
1297 * empty to us here.
Junio C Hamano92927ed2005-11-16 14:12:56 -08001298 */
1299 if ((apply || check) &&
Junio C Hamano2b6eef92006-09-06 22:45:21 -07001300 (!patch->is_binary && !metadata_changes(patch)))
Junio C Hamanoff36de02005-11-09 14:59:23 -08001301 die("patch with only garbage at line %d", linenr);
1302 }
Linus Torvalds1fea6292005-09-30 23:25:23 -07001303
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07001304 return offset + hdrsize + patchsize;
1305}
1306
Johannes Schindeline5a94312006-07-28 17:46:11 +02001307#define swap(a,b) myswap((a),(b),sizeof(a))
1308
1309#define myswap(a, b, size) do { \
1310 unsigned char mytmp[size]; \
1311 memcpy(mytmp, &a, size); \
1312 memcpy(&a, &b, size); \
1313 memcpy(&b, mytmp, size); \
1314} while (0)
1315
1316static void reverse_patches(struct patch *p)
1317{
1318 for (; p; p = p->next) {
1319 struct fragment *frag = p->fragments;
1320
1321 swap(p->new_name, p->old_name);
1322 swap(p->new_mode, p->old_mode);
1323 swap(p->is_new, p->is_delete);
1324 swap(p->lines_added, p->lines_deleted);
1325 swap(p->old_sha1_prefix, p->new_sha1_prefix);
1326
1327 for (; frag; frag = frag->next) {
1328 swap(frag->newpos, frag->oldpos);
1329 swap(frag->newlines, frag->oldlines);
1330 }
Johannes Schindeline5a94312006-07-28 17:46:11 +02001331 }
1332}
1333
Linus Torvalds6da40162005-07-03 10:10:45 -07001334static const char pluses[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
1335static const char minuses[]= "----------------------------------------------------------------------";
Linus Torvalds3f403152005-05-26 11:40:43 -07001336
1337static void show_stats(struct patch *patch)
1338{
Linus Torvalds62917092005-07-28 20:37:23 -07001339 const char *prefix = "";
Junio C Hamano03b45382005-06-22 02:29:16 -07001340 char *name = patch->new_name;
Junio C Hamano22943f12005-10-14 21:54:52 -07001341 char *qname = NULL;
Linus Torvalds95bedc92005-05-31 20:50:49 -07001342 int len, max, add, del, total;
Linus Torvalds3f403152005-05-26 11:40:43 -07001343
Linus Torvalds5041aa72005-05-26 13:11:24 -07001344 if (!name)
Junio C Hamano03b45382005-06-22 02:29:16 -07001345 name = patch->old_name;
Linus Torvalds3f403152005-05-26 11:40:43 -07001346
Junio C Hamano22943f12005-10-14 21:54:52 -07001347 if (0 < (len = quote_c_style(name, NULL, NULL, 0))) {
1348 qname = xmalloc(len + 1);
1349 quote_c_style(name, qname, NULL, 0);
1350 name = qname;
1351 }
1352
Linus Torvalds3f403152005-05-26 11:40:43 -07001353 /*
1354 * "scale" the filename
1355 */
1356 len = strlen(name);
1357 max = max_len;
1358 if (max > 50)
1359 max = 50;
Linus Torvalds62917092005-07-28 20:37:23 -07001360 if (len > max) {
1361 char *slash;
1362 prefix = "...";
1363 max -= 3;
Linus Torvalds3f403152005-05-26 11:40:43 -07001364 name += len - max;
Linus Torvalds62917092005-07-28 20:37:23 -07001365 slash = strchr(name, '/');
1366 if (slash)
1367 name = slash;
1368 }
Linus Torvalds3f403152005-05-26 11:40:43 -07001369 len = max;
1370
1371 /*
1372 * scale the add/delete
1373 */
1374 max = max_change;
1375 if (max + len > 70)
1376 max = 70 - len;
Linus Torvalds95bedc92005-05-31 20:50:49 -07001377
1378 add = patch->lines_added;
1379 del = patch->lines_deleted;
1380 total = add + del;
1381
Sven Verdoolaege69f956e2005-06-21 17:14:30 +02001382 if (max_change > 0) {
1383 total = (total * max + max_change / 2) / max_change;
1384 add = (add * max + max_change / 2) / max_change;
1385 del = total - add;
1386 }
Junio C Hamanoff36de02005-11-09 14:59:23 -08001387 if (patch->is_binary)
1388 printf(" %s%-*s | Bin\n", prefix, len, name);
1389 else
1390 printf(" %s%-*s |%5d %.*s%.*s\n", prefix,
1391 len, name, patch->lines_added + patch->lines_deleted,
1392 add, pluses, del, minuses);
Junio C Hamano4cac42b2006-08-27 21:19:39 -07001393 free(qname);
Linus Torvalds3f403152005-05-26 11:40:43 -07001394}
1395
Linus Torvalds3cca9282005-06-05 11:03:13 -07001396static int read_old_data(struct stat *st, const char *path, void *buf, unsigned long size)
1397{
1398 int fd;
1399 unsigned long got;
1400
1401 switch (st->st_mode & S_IFMT) {
1402 case S_IFLNK:
1403 return readlink(path, buf, size);
1404 case S_IFREG:
1405 fd = open(path, O_RDONLY);
1406 if (fd < 0)
1407 return error("unable to open %s", path);
1408 got = 0;
1409 for (;;) {
Florian Forster1d7f1712006-06-18 17:18:09 +02001410 int ret = xread(fd, (char *) buf + got, size - got);
Junio C Hamano1c15afb2005-12-19 16:18:28 -08001411 if (ret <= 0)
Linus Torvalds3cca9282005-06-05 11:03:13 -07001412 break;
1413 got += ret;
1414 }
1415 close(fd);
1416 return got;
1417
1418 default:
1419 return -1;
1420 }
1421}
1422
Eric W. Biederman47495882006-04-10 03:33:06 -06001423static int find_offset(const char *buf, unsigned long size, const char *fragment, unsigned long fragsize, int line, int *lines)
Linus Torvalds3cca9282005-06-05 11:03:13 -07001424{
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001425 int i;
1426 unsigned long start, backwards, forwards;
Linus Torvalds3cca9282005-06-05 11:03:13 -07001427
1428 if (fragsize > size)
1429 return -1;
1430
1431 start = 0;
1432 if (line > 1) {
Linus Torvalds3cca9282005-06-05 11:03:13 -07001433 unsigned long offset = 0;
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001434 i = line-1;
1435 while (offset + fragsize <= size) {
Linus Torvalds3cca9282005-06-05 11:03:13 -07001436 if (buf[offset++] == '\n') {
1437 start = offset;
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001438 if (!--i)
Linus Torvalds3cca9282005-06-05 11:03:13 -07001439 break;
1440 }
1441 }
1442 }
1443
1444 /* Exact line number? */
1445 if (!memcmp(buf + start, fragment, fragsize))
1446 return start;
1447
1448 /*
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001449 * There's probably some smart way to do this, but I'll leave
1450 * that to the smart and beautiful people. I'm simple and stupid.
1451 */
1452 backwards = start;
1453 forwards = start;
1454 for (i = 0; ; i++) {
1455 unsigned long try;
1456 int n;
1457
1458 /* "backward" */
1459 if (i & 1) {
1460 if (!backwards) {
1461 if (forwards + fragsize > size)
1462 break;
1463 continue;
1464 }
1465 do {
1466 --backwards;
1467 } while (backwards && buf[backwards-1] != '\n');
1468 try = backwards;
1469 } else {
1470 while (forwards + fragsize <= size) {
1471 if (buf[forwards++] == '\n')
1472 break;
1473 }
1474 try = forwards;
1475 }
1476
1477 if (try + fragsize > size)
1478 continue;
1479 if (memcmp(buf + try, fragment, fragsize))
1480 continue;
1481 n = (i >> 1)+1;
1482 if (i & 1)
1483 n = -n;
Eric W. Biederman47495882006-04-10 03:33:06 -06001484 *lines = n;
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001485 return try;
1486 }
1487
1488 /*
Linus Torvalds3cca9282005-06-05 11:03:13 -07001489 * We should start searching forward and backward.
1490 */
1491 return -1;
1492}
1493
Eric W. Biederman47495882006-04-10 03:33:06 -06001494static void remove_first_line(const char **rbuf, int *rsize)
1495{
1496 const char *buf = *rbuf;
1497 int size = *rsize;
1498 unsigned long offset;
1499 offset = 0;
1500 while (offset <= size) {
1501 if (buf[offset++] == '\n')
1502 break;
1503 }
1504 *rsize = size - offset;
1505 *rbuf = buf + offset;
1506}
1507
1508static void remove_last_line(const char **rbuf, int *rsize)
1509{
1510 const char *buf = *rbuf;
1511 int size = *rsize;
1512 unsigned long offset;
1513 offset = size - 1;
1514 while (offset > 0) {
1515 if (buf[--offset] == '\n')
1516 break;
1517 }
1518 *rsize = offset + 1;
1519}
1520
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001521struct buffer_desc {
1522 char *buffer;
1523 unsigned long size;
1524 unsigned long alloc;
1525};
1526
Junio C Hamanob5767dd2006-02-26 18:13:25 -08001527static int apply_line(char *output, const char *patch, int plen)
1528{
1529 /* plen is number of bytes to be copied from patch,
1530 * starting at patch+1 (patch[0] is '+'). Typically
Junio C Hamanod0c25032006-09-23 00:37:19 -07001531 * patch[plen] is '\n', unless this is the incomplete
1532 * last line.
Junio C Hamanob5767dd2006-02-26 18:13:25 -08001533 */
Junio C Hamanod0c25032006-09-23 00:37:19 -07001534 int i;
Junio C Hamanob5767dd2006-02-26 18:13:25 -08001535 int add_nl_to_tail = 0;
Junio C Hamanod0c25032006-09-23 00:37:19 -07001536 int fixed = 0;
1537 int last_tab_in_indent = -1;
1538 int last_space_in_indent = -1;
1539 int need_fix_leading_space = 0;
1540 char *buf;
1541
1542 if ((new_whitespace != strip_whitespace) || !whitespace_error) {
1543 memcpy(output, patch + 1, plen);
1544 return plen;
1545 }
1546
1547 if (1 < plen && isspace(patch[plen-1])) {
Junio C Hamanob5767dd2006-02-26 18:13:25 -08001548 if (patch[plen] == '\n')
1549 add_nl_to_tail = 1;
1550 plen--;
1551 while (0 < plen && isspace(patch[plen]))
1552 plen--;
Junio C Hamanod0c25032006-09-23 00:37:19 -07001553 fixed = 1;
Junio C Hamanob5767dd2006-02-26 18:13:25 -08001554 }
Junio C Hamanod0c25032006-09-23 00:37:19 -07001555
1556 for (i = 1; i < plen; i++) {
1557 char ch = patch[i];
1558 if (ch == '\t') {
1559 last_tab_in_indent = i;
1560 if (0 <= last_space_in_indent)
1561 need_fix_leading_space = 1;
1562 }
1563 else if (ch == ' ')
1564 last_space_in_indent = i;
1565 else
1566 break;
1567 }
1568
1569 buf = output;
1570 if (need_fix_leading_space) {
1571 /* between patch[1..last_tab_in_indent] strip the
1572 * funny spaces, updating them to tab as needed.
1573 */
1574 for (i = 1; i < last_tab_in_indent; i++, plen--) {
1575 char ch = patch[i];
1576 if (ch != ' ')
1577 *output++ = ch;
1578 else if ((i % 8) == 0)
1579 *output++ = '\t';
1580 }
1581 fixed = 1;
1582 i = last_tab_in_indent;
1583 }
1584 else
1585 i = 1;
1586
1587 memcpy(output, patch + i, plen);
Junio C Hamanob5767dd2006-02-26 18:13:25 -08001588 if (add_nl_to_tail)
1589 output[plen++] = '\n';
Junio C Hamanod0c25032006-09-23 00:37:19 -07001590 if (fixed)
1591 applied_after_stripping++;
1592 return output + plen - buf;
Junio C Hamanob5767dd2006-02-26 18:13:25 -08001593}
1594
Junio C Hamanof686d032006-08-14 23:26:51 -07001595static int apply_one_fragment(struct buffer_desc *desc, struct fragment *frag, int inaccurate_eof)
Linus Torvalds3cca9282005-06-05 11:03:13 -07001596{
Junio C Hamano65aadb92006-05-24 13:19:50 -07001597 int match_beginning, match_end;
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001598 char *buf = desc->buffer;
Linus Torvalds3cca9282005-06-05 11:03:13 -07001599 const char *patch = frag->patch;
1600 int offset, size = frag->size;
1601 char *old = xmalloc(size);
1602 char *new = xmalloc(size);
Eric W. Biederman47495882006-04-10 03:33:06 -06001603 const char *oldlines, *newlines;
Linus Torvalds3cca9282005-06-05 11:03:13 -07001604 int oldsize = 0, newsize = 0;
Eric W. Biederman47495882006-04-10 03:33:06 -06001605 unsigned long leading, trailing;
1606 int pos, lines;
Linus Torvalds3cca9282005-06-05 11:03:13 -07001607
1608 while (size > 0) {
Johannes Schindeline5a94312006-07-28 17:46:11 +02001609 char first;
Linus Torvalds3cca9282005-06-05 11:03:13 -07001610 int len = linelen(patch, size);
1611 int plen;
1612
1613 if (!len)
1614 break;
1615
1616 /*
1617 * "plen" is how much of the line we should use for
1618 * the actual patch data. Normally we just remove the
1619 * first character on the line, but if the line is
1620 * followed by "\ No newline", then we also remove the
1621 * last one (which is the newline, of course).
1622 */
1623 plen = len-1;
Junio C Hamano8b646472005-07-22 09:56:39 -07001624 if (len < size && patch[len] == '\\')
Linus Torvalds3cca9282005-06-05 11:03:13 -07001625 plen--;
Johannes Schindeline5a94312006-07-28 17:46:11 +02001626 first = *patch;
Junio C Hamanof686d032006-08-14 23:26:51 -07001627 if (apply_in_reverse) {
Johannes Schindeline5a94312006-07-28 17:46:11 +02001628 if (first == '-')
1629 first = '+';
1630 else if (first == '+')
1631 first = '-';
1632 }
1633 switch (first) {
Linus Torvaldsb507b462006-10-19 19:26:08 -07001634 case '\n':
1635 /* Newer GNU diff, empty context line */
1636 if (plen < 0)
1637 /* ... followed by '\No newline'; nothing */
1638 break;
1639 old[oldsize++] = '\n';
1640 new[newsize++] = '\n';
1641 break;
Linus Torvalds3cca9282005-06-05 11:03:13 -07001642 case ' ':
1643 case '-':
1644 memcpy(old + oldsize, patch + 1, plen);
1645 oldsize += plen;
Johannes Schindeline5a94312006-07-28 17:46:11 +02001646 if (first == '-')
Linus Torvalds3cca9282005-06-05 11:03:13 -07001647 break;
1648 /* Fall-through for ' ' */
1649 case '+':
Johannes Schindeline5a94312006-07-28 17:46:11 +02001650 if (first != '+' || !no_add)
Junio C Hamanob5767dd2006-02-26 18:13:25 -08001651 newsize += apply_line(new + newsize, patch,
1652 plen);
Linus Torvalds3cca9282005-06-05 11:03:13 -07001653 break;
1654 case '@': case '\\':
1655 /* Ignore it, we already handled it */
1656 break;
1657 default:
1658 return -1;
1659 }
1660 patch += len;
1661 size -= len;
1662 }
1663
Johannes Schindelin3eaa38d2006-06-24 22:10:11 +02001664 if (inaccurate_eof && oldsize > 0 && old[oldsize - 1] == '\n' &&
Johannes Schindelin5b5d4d92006-02-17 15:23:16 +01001665 newsize > 0 && new[newsize - 1] == '\n') {
1666 oldsize--;
1667 newsize--;
1668 }
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001669
Eric W. Biederman47495882006-04-10 03:33:06 -06001670 oldlines = old;
1671 newlines = new;
1672 leading = frag->leading;
1673 trailing = frag->trailing;
Linus Torvalds1bf1a852006-05-23 19:08:01 -07001674
1675 /*
Junio C Hamano65aadb92006-05-24 13:19:50 -07001676 * If we don't have any leading/trailing data in the patch,
1677 * we want it to match at the beginning/end of the file.
Junio C Hamano4be60962006-09-17 01:04:24 -07001678 *
1679 * But that would break if the patch is generated with
1680 * --unified=0; sane people wouldn't do that to cause us
1681 * trouble, but we try to please not so sane ones as well.
Linus Torvalds1bf1a852006-05-23 19:08:01 -07001682 */
Junio C Hamano4be60962006-09-17 01:04:24 -07001683 if (unidiff_zero) {
1684 match_beginning = (!leading && !frag->oldpos);
1685 match_end = 0;
1686 }
1687 else {
1688 match_beginning = !leading && (frag->oldpos == 1);
1689 match_end = !trailing;
1690 }
Linus Torvalds1bf1a852006-05-23 19:08:01 -07001691
Eric W. Biederman47495882006-04-10 03:33:06 -06001692 lines = 0;
1693 pos = frag->newpos;
1694 for (;;) {
Junio C Hamano57dc3972006-08-16 17:55:29 -07001695 offset = find_offset(buf, desc->size,
1696 oldlines, oldsize, pos, &lines);
Linus Torvalds1bf1a852006-05-23 19:08:01 -07001697 if (match_end && offset + oldsize != desc->size)
1698 offset = -1;
Junio C Hamano65aadb92006-05-24 13:19:50 -07001699 if (match_beginning && offset)
1700 offset = -1;
Eric W. Biederman47495882006-04-10 03:33:06 -06001701 if (offset >= 0) {
1702 int diff = newsize - oldsize;
1703 unsigned long size = desc->size + diff;
1704 unsigned long alloc = desc->alloc;
1705
1706 /* Warn if it was necessary to reduce the number
1707 * of context lines.
1708 */
Junio C Hamano57dc3972006-08-16 17:55:29 -07001709 if ((leading != frag->leading) ||
1710 (trailing != frag->trailing))
1711 fprintf(stderr, "Context reduced to (%ld/%ld)"
1712 " to apply fragment at %d\n",
Eric W. Biederman47495882006-04-10 03:33:06 -06001713 leading, trailing, pos + lines);
1714
1715 if (size > alloc) {
1716 alloc = size + 8192;
1717 desc->alloc = alloc;
1718 buf = xrealloc(buf, alloc);
1719 desc->buffer = buf;
1720 }
1721 desc->size = size;
Junio C Hamano57dc3972006-08-16 17:55:29 -07001722 memmove(buf + offset + newsize,
1723 buf + offset + oldsize,
1724 size - offset - newsize);
Eric W. Biederman47495882006-04-10 03:33:06 -06001725 memcpy(buf + offset, newlines, newsize);
1726 offset = 0;
1727
1728 break;
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001729 }
Eric W. Biederman47495882006-04-10 03:33:06 -06001730
1731 /* Am I at my context limits? */
1732 if ((leading <= p_context) && (trailing <= p_context))
1733 break;
Junio C Hamano65aadb92006-05-24 13:19:50 -07001734 if (match_beginning || match_end) {
1735 match_beginning = match_end = 0;
Linus Torvalds1bf1a852006-05-23 19:08:01 -07001736 continue;
1737 }
Eric W. Biederman47495882006-04-10 03:33:06 -06001738 /* Reduce the number of context lines
1739 * Reduce both leading and trailing if they are equal
1740 * otherwise just reduce the larger context.
1741 */
1742 if (leading >= trailing) {
1743 remove_first_line(&oldlines, &oldsize);
1744 remove_first_line(&newlines, &newsize);
1745 pos--;
1746 leading--;
1747 }
1748 if (trailing > leading) {
1749 remove_last_line(&oldlines, &oldsize);
1750 remove_last_line(&newlines, &newsize);
1751 trailing--;
1752 }
Linus Torvalds3cca9282005-06-05 11:03:13 -07001753 }
1754
1755 free(old);
1756 free(new);
1757 return offset;
1758}
1759
Junio C Hamano06606262006-05-05 02:41:53 -07001760static int apply_binary_fragment(struct buffer_desc *desc, struct patch *patch)
1761{
1762 unsigned long dst_size;
1763 struct fragment *fragment = patch->fragments;
1764 void *data;
1765 void *result;
1766
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001767 /* Binary patch is irreversible without the optional second hunk */
1768 if (apply_in_reverse) {
1769 if (!fragment->next)
1770 return error("cannot reverse-apply a binary patch "
1771 "without the reverse hunk to '%s'",
1772 patch->new_name
1773 ? patch->new_name : patch->old_name);
Junio C Hamano03eb8f82006-08-16 16:07:20 -07001774 fragment = fragment->next;
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001775 }
1776 data = (void*) fragment->patch;
1777 switch (fragment->binary_patch_method) {
Junio C Hamano06606262006-05-05 02:41:53 -07001778 case BINARY_DELTA_DEFLATED:
1779 result = patch_delta(desc->buffer, desc->size,
1780 data,
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001781 fragment->size,
Junio C Hamano06606262006-05-05 02:41:53 -07001782 &dst_size);
1783 free(desc->buffer);
1784 desc->buffer = result;
Junio C Hamano06606262006-05-05 02:41:53 -07001785 break;
1786 case BINARY_LITERAL_DEFLATED:
1787 free(desc->buffer);
1788 desc->buffer = data;
Junio C Hamano3cd4f5e2006-08-15 02:23:06 -07001789 dst_size = fragment->size;
Junio C Hamano06606262006-05-05 02:41:53 -07001790 break;
1791 }
1792 if (!desc->buffer)
1793 return -1;
1794 desc->size = desc->alloc = dst_size;
1795 return 0;
1796}
1797
Junio C Hamano051308f2006-05-04 16:51:44 -07001798static int apply_binary(struct buffer_desc *desc, struct patch *patch)
1799{
1800 const char *name = patch->old_name ? patch->old_name : patch->new_name;
1801 unsigned char sha1[20];
Junio C Hamano051308f2006-05-04 16:51:44 -07001802
Junio C Hamano051308f2006-05-04 16:51:44 -07001803 /* For safety, we require patch index line to contain
1804 * full 40-byte textual SHA1 for old and new, at least for now.
1805 */
1806 if (strlen(patch->old_sha1_prefix) != 40 ||
1807 strlen(patch->new_sha1_prefix) != 40 ||
1808 get_sha1_hex(patch->old_sha1_prefix, sha1) ||
1809 get_sha1_hex(patch->new_sha1_prefix, sha1))
1810 return error("cannot apply binary patch to '%s' "
1811 "without full index line", name);
1812
1813 if (patch->old_name) {
1814 /* See if the old one matches what the patch
1815 * applies to.
1816 */
Rene Scharfeabdc3fc2006-10-14 12:45:36 +02001817 hash_sha1_file(desc->buffer, desc->size, blob_type, sha1);
Junio C Hamano051308f2006-05-04 16:51:44 -07001818 if (strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix))
1819 return error("the patch applies to '%s' (%s), "
1820 "which does not match the "
1821 "current contents.",
1822 name, sha1_to_hex(sha1));
1823 }
1824 else {
1825 /* Otherwise, the old one must be empty. */
1826 if (desc->size)
1827 return error("the patch applies to an empty "
1828 "'%s' but it is not empty", name);
1829 }
1830
Junio C Hamano06606262006-05-05 02:41:53 -07001831 get_sha1_hex(patch->new_sha1_prefix, sha1);
David Rientjes0bef57e2006-08-15 13:37:19 -07001832 if (is_null_sha1(sha1)) {
Junio C Hamano051308f2006-05-04 16:51:44 -07001833 free(desc->buffer);
1834 desc->alloc = desc->size = 0;
Junio C Hamano06606262006-05-05 02:41:53 -07001835 desc->buffer = NULL;
Junio C Hamano051308f2006-05-04 16:51:44 -07001836 return 0; /* deletion patch */
Junio C Hamano06606262006-05-05 02:41:53 -07001837 }
Junio C Hamano051308f2006-05-04 16:51:44 -07001838
1839 if (has_sha1_file(sha1)) {
Junio C Hamano06606262006-05-05 02:41:53 -07001840 /* We already have the postimage */
Junio C Hamano051308f2006-05-04 16:51:44 -07001841 char type[10];
1842 unsigned long size;
1843
Junio C Hamano06606262006-05-05 02:41:53 -07001844 free(desc->buffer);
Junio C Hamano051308f2006-05-04 16:51:44 -07001845 desc->buffer = read_sha1_file(sha1, type, &size);
1846 if (!desc->buffer)
1847 return error("the necessary postimage %s for "
1848 "'%s' cannot be read",
1849 patch->new_sha1_prefix, name);
1850 desc->alloc = desc->size = size;
1851 }
1852 else {
Junio C Hamano06606262006-05-05 02:41:53 -07001853 /* We have verified desc matches the preimage;
1854 * apply the patch data to it, which is stored
1855 * in the patch->fragments->{patch,size}.
Junio C Hamano051308f2006-05-04 16:51:44 -07001856 */
Junio C Hamano06606262006-05-05 02:41:53 -07001857 if (apply_binary_fragment(desc, patch))
Junio C Hamano051308f2006-05-04 16:51:44 -07001858 return error("binary patch does not apply to '%s'",
1859 name);
Junio C Hamano051308f2006-05-04 16:51:44 -07001860
1861 /* verify that the result matches */
Rene Scharfeabdc3fc2006-10-14 12:45:36 +02001862 hash_sha1_file(desc->buffer, desc->size, blob_type, sha1);
Junio C Hamano051308f2006-05-04 16:51:44 -07001863 if (strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix))
Junio C Hamano03eb8f82006-08-16 16:07:20 -07001864 return error("binary patch to '%s' creates incorrect result (expecting %s, got %s)", name, patch->new_sha1_prefix, sha1_to_hex(sha1));
Junio C Hamano051308f2006-05-04 16:51:44 -07001865 }
1866
1867 return 0;
1868}
1869
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001870static int apply_fragments(struct buffer_desc *desc, struct patch *patch)
Linus Torvalds3cca9282005-06-05 11:03:13 -07001871{
1872 struct fragment *frag = patch->fragments;
Junio C Hamano011f4272005-11-14 17:37:05 -08001873 const char *name = patch->old_name ? patch->old_name : patch->new_name;
1874
Junio C Hamano051308f2006-05-04 16:51:44 -07001875 if (patch->is_binary)
1876 return apply_binary(desc, patch);
Linus Torvalds3cca9282005-06-05 11:03:13 -07001877
1878 while (frag) {
Junio C Hamano57dc3972006-08-16 17:55:29 -07001879 if (apply_one_fragment(desc, frag, patch->inaccurate_eof)) {
1880 error("patch failed: %s:%ld", name, frag->oldpos);
1881 if (!apply_with_reject)
1882 return -1;
1883 frag->rejected = 1;
1884 }
Linus Torvalds3cca9282005-06-05 11:03:13 -07001885 frag = frag->next;
1886 }
Linus Torvalds30996652005-06-05 12:43:56 -07001887 return 0;
Linus Torvalds3cca9282005-06-05 11:03:13 -07001888}
1889
Junio C Hamano04e48882006-05-15 15:15:47 -07001890static int apply_data(struct patch *patch, struct stat *st, struct cache_entry *ce)
Linus Torvalds3cca9282005-06-05 11:03:13 -07001891{
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001892 char *buf;
1893 unsigned long size, alloc;
1894 struct buffer_desc desc;
Linus Torvalds3cca9282005-06-05 11:03:13 -07001895
Linus Torvalds30996652005-06-05 12:43:56 -07001896 size = 0;
1897 alloc = 0;
1898 buf = NULL;
Junio C Hamano04e48882006-05-15 15:15:47 -07001899 if (cached) {
1900 if (ce) {
1901 char type[20];
1902 buf = read_sha1_file(ce->sha1, type, &size);
1903 if (!buf)
1904 return error("read of %s failed",
1905 patch->old_name);
1906 alloc = size;
1907 }
1908 }
1909 else if (patch->old_name) {
Linus Torvalds30996652005-06-05 12:43:56 -07001910 size = st->st_size;
1911 alloc = size + 8192;
1912 buf = xmalloc(alloc);
1913 if (read_old_data(st, patch->old_name, buf, alloc) != size)
1914 return error("read of %s failed", patch->old_name);
1915 }
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001916
1917 desc.size = size;
1918 desc.alloc = alloc;
1919 desc.buffer = buf;
Junio C Hamano57dc3972006-08-16 17:55:29 -07001920
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001921 if (apply_fragments(&desc, patch) < 0)
Junio C Hamano57dc3972006-08-16 17:55:29 -07001922 return -1; /* note with --reject this succeeds. */
Junio C Hamano2c718102006-08-09 22:47:25 -07001923
1924 /* NUL terminate the result */
Junio C Hamano242abf12006-08-10 00:56:40 -07001925 if (desc.alloc <= desc.size)
Junio C Hamano2c718102006-08-09 22:47:25 -07001926 desc.buffer = xrealloc(desc.buffer, desc.size + 1);
Junio C Hamano2c718102006-08-09 22:47:25 -07001927 desc.buffer[desc.size] = 0;
1928
Linus Torvalds6e7c92a2005-06-05 12:16:32 -07001929 patch->result = desc.buffer;
1930 patch->resultsize = desc.size;
Linus Torvalds5aa7d942005-06-05 14:05:43 -07001931
Junio C Hamano4be60962006-09-17 01:04:24 -07001932 if (0 < patch->is_delete && patch->resultsize)
Linus Torvalds5aa7d942005-06-05 14:05:43 -07001933 return error("removal patch leaves file contents");
1934
Linus Torvalds3cca9282005-06-05 11:03:13 -07001935 return 0;
1936}
1937
Junio C Hamano7f95aef2006-07-17 00:10:47 -07001938static int check_patch(struct patch *patch, struct patch *prev_patch)
Linus Torvaldsfab2c252005-05-26 12:25:52 -07001939{
Linus Torvaldsa5772842005-05-26 15:10:02 -07001940 struct stat st;
Linus Torvaldsfab2c252005-05-26 12:25:52 -07001941 const char *old_name = patch->old_name;
1942 const char *new_name = patch->new_name;
Junio C Hamano011f4272005-11-14 17:37:05 -08001943 const char *name = old_name ? old_name : new_name;
Junio C Hamano04e48882006-05-15 15:15:47 -07001944 struct cache_entry *ce = NULL;
Junio C Hamano7f95aef2006-07-17 00:10:47 -07001945 int ok_if_exists;
Linus Torvaldsfab2c252005-05-26 12:25:52 -07001946
Junio C Hamano57dc3972006-08-16 17:55:29 -07001947 patch->rejected = 1; /* we will drop this after we succeed */
Linus Torvaldsfab2c252005-05-26 12:25:52 -07001948 if (old_name) {
Junio C Hamano04e48882006-05-15 15:15:47 -07001949 int changed = 0;
1950 int stat_ret = 0;
1951 unsigned st_mode = 0;
Linus Torvaldsa5772842005-05-26 15:10:02 -07001952
Junio C Hamano04e48882006-05-15 15:15:47 -07001953 if (!cached)
1954 stat_ret = lstat(old_name, &st);
Linus Torvalds3cca9282005-06-05 11:03:13 -07001955 if (check_index) {
1956 int pos = cache_name_pos(old_name, strlen(old_name));
1957 if (pos < 0)
Junio C Hamano56d33b12005-10-03 13:16:39 -07001958 return error("%s: does not exist in index",
1959 old_name);
Junio C Hamano04e48882006-05-15 15:15:47 -07001960 ce = active_cache[pos];
Junio C Hamano56d33b12005-10-03 13:16:39 -07001961 if (stat_ret < 0) {
1962 struct checkout costate;
1963 if (errno != ENOENT)
1964 return error("%s: %s", old_name,
1965 strerror(errno));
1966 /* checkout */
1967 costate.base_dir = "";
1968 costate.base_dir_len = 0;
1969 costate.force = 0;
1970 costate.quiet = 0;
1971 costate.not_new = 0;
1972 costate.refresh_cache = 1;
Junio C Hamano04e48882006-05-15 15:15:47 -07001973 if (checkout_entry(ce,
Shawn Pearcede84f992006-03-05 03:24:15 -05001974 &costate,
1975 NULL) ||
Junio C Hamano56d33b12005-10-03 13:16:39 -07001976 lstat(old_name, &st))
1977 return -1;
1978 }
Junio C Hamano04e48882006-05-15 15:15:47 -07001979 if (!cached)
1980 changed = ce_match_stat(ce, &st, 1);
Linus Torvalds3cca9282005-06-05 11:03:13 -07001981 if (changed)
Junio C Hamano56d33b12005-10-03 13:16:39 -07001982 return error("%s: does not match index",
1983 old_name);
Junio C Hamano04e48882006-05-15 15:15:47 -07001984 if (cached)
1985 st_mode = ntohl(ce->ce_mode);
Linus Torvalds3cca9282005-06-05 11:03:13 -07001986 }
Junio C Hamano56d33b12005-10-03 13:16:39 -07001987 else if (stat_ret < 0)
1988 return error("%s: %s", old_name, strerror(errno));
1989
Junio C Hamano04e48882006-05-15 15:15:47 -07001990 if (!cached)
1991 st_mode = ntohl(create_ce_mode(st.st_mode));
1992
Linus Torvalds3cca9282005-06-05 11:03:13 -07001993 if (patch->is_new < 0)
1994 patch->is_new = 0;
Linus Torvaldsa5772842005-05-26 15:10:02 -07001995 if (!patch->old_mode)
Junio C Hamano04e48882006-05-15 15:15:47 -07001996 patch->old_mode = st_mode;
1997 if ((st_mode ^ patch->old_mode) & S_IFMT)
Linus Torvalds3cca9282005-06-05 11:03:13 -07001998 return error("%s: wrong type", old_name);
Junio C Hamano04e48882006-05-15 15:15:47 -07001999 if (st_mode != patch->old_mode)
Linus Torvalds3cca9282005-06-05 11:03:13 -07002000 fprintf(stderr, "warning: %s has type %o, expected %o\n",
Junio C Hamano04e48882006-05-15 15:15:47 -07002001 old_name, st_mode, patch->old_mode);
Linus Torvaldsfab2c252005-05-26 12:25:52 -07002002 }
Linus Torvaldsa5772842005-05-26 15:10:02 -07002003
Junio C Hamano4be60962006-09-17 01:04:24 -07002004 if (new_name && prev_patch && 0 < prev_patch->is_delete &&
Junio C Hamano7f95aef2006-07-17 00:10:47 -07002005 !strcmp(prev_patch->old_name, new_name))
2006 /* A type-change diff is always split into a patch to
2007 * delete old, immediately followed by a patch to
2008 * create new (see diff.c::run_diff()); in such a case
2009 * it is Ok that the entry to be deleted by the
2010 * previous patch is still in the working tree and in
2011 * the index.
2012 */
2013 ok_if_exists = 1;
2014 else
2015 ok_if_exists = 0;
2016
Junio C Hamano4be60962006-09-17 01:04:24 -07002017 if (new_name &&
2018 ((0 < patch->is_new) | (0 < patch->is_rename) | patch->is_copy)) {
Junio C Hamano7f95aef2006-07-17 00:10:47 -07002019 if (check_index &&
2020 cache_name_pos(new_name, strlen(new_name)) >= 0 &&
2021 !ok_if_exists)
Linus Torvaldsa5772842005-05-26 15:10:02 -07002022 return error("%s: already exists in index", new_name);
Junio C Hamanod91d4c22006-05-17 16:56:13 -07002023 if (!cached) {
Junio C Hamanoc28c5712006-07-16 23:28:23 -07002024 struct stat nst;
2025 if (!lstat(new_name, &nst)) {
Junio C Hamano7f95aef2006-07-17 00:10:47 -07002026 if (S_ISDIR(nst.st_mode) || ok_if_exists)
Junio C Hamanoc28c5712006-07-16 23:28:23 -07002027 ; /* ok */
2028 else
2029 return error("%s: already exists in working directory", new_name);
2030 }
2031 else if ((errno != ENOENT) && (errno != ENOTDIR))
Junio C Hamanod91d4c22006-05-17 16:56:13 -07002032 return error("%s: %s", new_name, strerror(errno));
2033 }
Johannes Schindelin35cc4bc2005-08-17 09:01:07 +02002034 if (!patch->new_mode) {
Junio C Hamano4be60962006-09-17 01:04:24 -07002035 if (0 < patch->is_new)
Johannes Schindelin35cc4bc2005-08-17 09:01:07 +02002036 patch->new_mode = S_IFREG | 0644;
2037 else
2038 patch->new_mode = patch->old_mode;
2039 }
Linus Torvaldsa5772842005-05-26 15:10:02 -07002040 }
Linus Torvalds3cca9282005-06-05 11:03:13 -07002041
2042 if (new_name && old_name) {
2043 int same = !strcmp(old_name, new_name);
2044 if (!patch->new_mode)
2045 patch->new_mode = patch->old_mode;
2046 if ((patch->old_mode ^ patch->new_mode) & S_IFMT)
2047 return error("new mode (%o) of %s does not match old mode (%o)%s%s",
2048 patch->new_mode, new_name, patch->old_mode,
2049 same ? "" : " of ", same ? "" : old_name);
Junio C Hamano04e48882006-05-15 15:15:47 -07002050 }
Linus Torvalds3cca9282005-06-05 11:03:13 -07002051
Junio C Hamano04e48882006-05-15 15:15:47 -07002052 if (apply_data(patch, &st, ce) < 0)
Junio C Hamano011f4272005-11-14 17:37:05 -08002053 return error("%s: patch does not apply", name);
Junio C Hamano57dc3972006-08-16 17:55:29 -07002054 patch->rejected = 0;
Linus Torvaldsa5772842005-05-26 15:10:02 -07002055 return 0;
2056}
2057
2058static int check_patch_list(struct patch *patch)
2059{
Junio C Hamano7f95aef2006-07-17 00:10:47 -07002060 struct patch *prev_patch = NULL;
Pierre Habouzit60b7f382006-08-23 12:39:10 +02002061 int err = 0;
Linus Torvaldsa5772842005-05-26 15:10:02 -07002062
Junio C Hamano7f95aef2006-07-17 00:10:47 -07002063 for (prev_patch = NULL; patch ; patch = patch->next) {
Junio C Hamanoa2bf4042006-08-18 03:14:48 -07002064 if (apply_verbosely)
2065 say_patch_name(stderr,
2066 "Checking patch ", patch, "...\n");
Pierre Habouzit60b7f382006-08-23 12:39:10 +02002067 err |= check_patch(patch, prev_patch);
Junio C Hamano7f95aef2006-07-17 00:10:47 -07002068 prev_patch = patch;
2069 }
Pierre Habouzit60b7f382006-08-23 12:39:10 +02002070 return err;
Linus Torvaldsa5772842005-05-26 15:10:02 -07002071}
2072
Junio C Hamano2cf67f12005-10-07 03:42:00 -07002073static void show_index_list(struct patch *list)
2074{
2075 struct patch *patch;
2076
2077 /* Once we start supporting the reverse patch, it may be
2078 * worth showing the new sha1 prefix, but until then...
2079 */
2080 for (patch = list; patch; patch = patch->next) {
2081 const unsigned char *sha1_ptr;
2082 unsigned char sha1[20];
2083 const char *name;
2084
2085 name = patch->old_name ? patch->old_name : patch->new_name;
Junio C Hamano4be60962006-09-17 01:04:24 -07002086 if (0 < patch->is_new)
Junio C Hamano2cf67f12005-10-07 03:42:00 -07002087 sha1_ptr = null_sha1;
2088 else if (get_sha1(patch->old_sha1_prefix, sha1))
2089 die("sha1 information is lacking or useless (%s).",
2090 name);
2091 else
2092 sha1_ptr = sha1;
Junio C Hamano22943f12005-10-14 21:54:52 -07002093
2094 printf("%06o %s ",patch->old_mode, sha1_to_hex(sha1_ptr));
2095 if (line_termination && quote_c_style(name, NULL, NULL, 0))
2096 quote_c_style(name, NULL, stdout, 0);
2097 else
2098 fputs(name, stdout);
2099 putchar(line_termination);
Junio C Hamano2cf67f12005-10-07 03:42:00 -07002100 }
2101}
2102
Linus Torvaldsa5772842005-05-26 15:10:02 -07002103static void stat_patch_list(struct patch *patch)
Linus Torvalds19c58fb2005-05-26 10:23:51 -07002104{
Linus Torvalds3f403152005-05-26 11:40:43 -07002105 int files, adds, dels;
2106
Linus Torvaldsa5772842005-05-26 15:10:02 -07002107 for (files = adds = dels = 0 ; patch ; patch = patch->next) {
2108 files++;
2109 adds += patch->lines_added;
2110 dels += patch->lines_deleted;
2111 show_stats(patch);
2112 }
Linus Torvalds19c58fb2005-05-26 10:23:51 -07002113
Linus Torvaldsa5772842005-05-26 15:10:02 -07002114 printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels);
Linus Torvalds3f403152005-05-26 11:40:43 -07002115}
2116
Junio C Hamano7d8b7c22005-10-28 02:43:31 -07002117static void numstat_patch_list(struct patch *patch)
2118{
2119 for ( ; patch; patch = patch->next) {
2120 const char *name;
Junio C Hamano49e33432006-05-14 21:59:04 -07002121 name = patch->new_name ? patch->new_name : patch->old_name;
Junio C Hamanoef58d952006-11-14 22:23:18 -08002122 if (patch->is_binary)
2123 printf("-\t-\t");
2124 else
2125 printf("%d\t%d\t",
2126 patch->lines_added, patch->lines_deleted);
Junio C Hamano7d8b7c22005-10-28 02:43:31 -07002127 if (line_termination && quote_c_style(name, NULL, NULL, 0))
2128 quote_c_style(name, NULL, stdout, 0);
2129 else
2130 fputs(name, stdout);
Junio C Hamano854de5a2006-10-12 02:57:39 -07002131 putchar(line_termination);
Junio C Hamano7d8b7c22005-10-28 02:43:31 -07002132 }
2133}
2134
Junio C Hamano96c912a2005-06-22 02:29:46 -07002135static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name)
2136{
2137 if (mode)
2138 printf(" %s mode %06o %s\n", newdelete, mode, name);
2139 else
2140 printf(" %s %s\n", newdelete, name);
2141}
2142
2143static void show_mode_change(struct patch *p, int show_name)
2144{
2145 if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) {
2146 if (show_name)
2147 printf(" mode change %06o => %06o %s\n",
2148 p->old_mode, p->new_mode, p->new_name);
2149 else
2150 printf(" mode change %06o => %06o\n",
2151 p->old_mode, p->new_mode);
2152 }
2153}
2154
2155static void show_rename_copy(struct patch *p)
2156{
2157 const char *renamecopy = p->is_rename ? "rename" : "copy";
2158 const char *old, *new;
2159
2160 /* Find common prefix */
2161 old = p->old_name;
2162 new = p->new_name;
2163 while (1) {
2164 const char *slash_old, *slash_new;
2165 slash_old = strchr(old, '/');
2166 slash_new = strchr(new, '/');
2167 if (!slash_old ||
2168 !slash_new ||
2169 slash_old - old != slash_new - new ||
2170 memcmp(old, new, slash_new - new))
2171 break;
2172 old = slash_old + 1;
2173 new = slash_new + 1;
2174 }
2175 /* p->old_name thru old is the common prefix, and old and new
2176 * through the end of names are renames
2177 */
2178 if (old != p->old_name)
2179 printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy,
Tony Lucke30e8142005-07-12 11:54:21 -07002180 (int)(old - p->old_name), p->old_name,
Junio C Hamano96c912a2005-06-22 02:29:46 -07002181 old, new, p->score);
2182 else
2183 printf(" %s %s => %s (%d%%)\n", renamecopy,
2184 p->old_name, p->new_name, p->score);
2185 show_mode_change(p, 0);
2186}
2187
2188static void summary_patch_list(struct patch *patch)
2189{
2190 struct patch *p;
2191
2192 for (p = patch; p; p = p->next) {
2193 if (p->is_new)
2194 show_file_mode_name("create", p->new_mode, p->new_name);
2195 else if (p->is_delete)
2196 show_file_mode_name("delete", p->old_mode, p->old_name);
2197 else {
2198 if (p->is_rename || p->is_copy)
2199 show_rename_copy(p);
2200 else {
2201 if (p->score) {
2202 printf(" rewrite %s (%d%%)\n",
2203 p->new_name, p->score);
2204 show_mode_change(p, 0);
2205 }
2206 else
2207 show_mode_change(p, 1);
2208 }
2209 }
2210 }
2211}
2212
Linus Torvalds3f403152005-05-26 11:40:43 -07002213static void patch_stats(struct patch *patch)
2214{
2215 int lines = patch->lines_added + patch->lines_deleted;
2216
2217 if (lines > max_change)
2218 max_change = lines;
2219 if (patch->old_name) {
Junio C Hamano22943f12005-10-14 21:54:52 -07002220 int len = quote_c_style(patch->old_name, NULL, NULL, 0);
2221 if (!len)
2222 len = strlen(patch->old_name);
Linus Torvalds3f403152005-05-26 11:40:43 -07002223 if (len > max_len)
2224 max_len = len;
2225 }
2226 if (patch->new_name) {
Junio C Hamano22943f12005-10-14 21:54:52 -07002227 int len = quote_c_style(patch->new_name, NULL, NULL, 0);
2228 if (!len)
2229 len = strlen(patch->new_name);
Linus Torvalds3f403152005-05-26 11:40:43 -07002230 if (len > max_len)
2231 max_len = len;
2232 }
Linus Torvalds19c58fb2005-05-26 10:23:51 -07002233}
2234
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002235static void remove_file(struct patch *patch)
2236{
2237 if (write_index) {
2238 if (remove_file_from_cache(patch->old_name) < 0)
2239 die("unable to remove %s from index", patch->old_name);
Junio C Hamano03ac6e62006-04-23 16:52:52 -07002240 cache_tree_invalidate_path(active_cache_tree, patch->old_name);
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002241 }
Alexandre Julliardd234b212007-01-09 21:25:46 +01002242 if (!cached) {
2243 if (!unlink(patch->old_name)) {
2244 char *name = xstrdup(patch->old_name);
2245 char *end = strrchr(name, '/');
2246 while (end) {
2247 *end = 0;
2248 if (rmdir(name))
2249 break;
2250 end = strrchr(name, '/');
2251 }
2252 free(name);
2253 }
2254 }
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002255}
2256
2257static void add_index_file(const char *path, unsigned mode, void *buf, unsigned long size)
2258{
2259 struct stat st;
2260 struct cache_entry *ce;
2261 int namelen = strlen(path);
2262 unsigned ce_size = cache_entry_size(namelen);
2263
2264 if (!write_index)
2265 return;
2266
Peter Eriksen90321c12006-04-03 19:30:46 +01002267 ce = xcalloc(1, ce_size);
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002268 memcpy(ce->name, path, namelen);
2269 ce->ce_mode = create_ce_mode(mode);
2270 ce->ce_flags = htons(namelen);
Junio C Hamano04e48882006-05-15 15:15:47 -07002271 if (!cached) {
2272 if (lstat(path, &st) < 0)
2273 die("unable to stat newly created file %s", path);
2274 fill_stat_cache_info(ce, &st);
2275 }
Peter Eriksen8e440252006-04-02 14:44:09 +02002276 if (write_sha1_file(buf, size, blob_type, ce->sha1) < 0)
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002277 die("unable to create backing store for newly created file %s", path);
2278 if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0)
2279 die("unable to add cache entry for %s", path);
2280}
2281
Linus Torvalds1b668342005-07-13 17:25:53 -07002282static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size)
2283{
2284 int fd;
2285
2286 if (S_ISLNK(mode))
Junio C Hamano2c718102006-08-09 22:47:25 -07002287 /* Although buf:size is counted string, it also is NUL
2288 * terminated.
2289 */
Linus Torvalds1b668342005-07-13 17:25:53 -07002290 return symlink(buf, path);
Alex Riesen781411e2006-01-05 09:58:06 +01002291 fd = open(path, O_CREAT | O_EXCL | O_WRONLY, (mode & 0100) ? 0777 : 0666);
Linus Torvalds1b668342005-07-13 17:25:53 -07002292 if (fd < 0)
2293 return -1;
2294 while (size) {
Junio C Hamano1c15afb2005-12-19 16:18:28 -08002295 int written = xwrite(fd, buf, size);
2296 if (written < 0)
Linus Torvalds1b668342005-07-13 17:25:53 -07002297 die("writing file %s: %s", path, strerror(errno));
Linus Torvalds1b668342005-07-13 17:25:53 -07002298 if (!written)
2299 die("out of space writing file %s", path);
2300 buf += written;
2301 size -= written;
2302 }
2303 if (close(fd) < 0)
2304 die("closing file %s: %s", path, strerror(errno));
2305 return 0;
2306}
2307
Linus Torvalds5c8af182005-06-21 19:10:21 -07002308/*
2309 * We optimistically assume that the directories exist,
2310 * which is true 99% of the time anyway. If they don't,
2311 * we create them and try again.
2312 */
Jason Riedy8361e1d2006-02-03 22:50:57 -08002313static void create_one_file(char *path, unsigned mode, const char *buf, unsigned long size)
Linus Torvalds5c8af182005-06-21 19:10:21 -07002314{
Junio C Hamano04e48882006-05-15 15:15:47 -07002315 if (cached)
2316 return;
Linus Torvalds1b668342005-07-13 17:25:53 -07002317 if (!try_create_file(path, mode, buf, size))
2318 return;
Linus Torvalds5c8af182005-06-21 19:10:21 -07002319
Linus Torvalds1b668342005-07-13 17:25:53 -07002320 if (errno == ENOENT) {
Jason Riedy8361e1d2006-02-03 22:50:57 -08002321 if (safe_create_leading_directories(path))
2322 return;
Linus Torvalds1b668342005-07-13 17:25:53 -07002323 if (!try_create_file(path, mode, buf, size))
2324 return;
Linus Torvalds5c8af182005-06-21 19:10:21 -07002325 }
Linus Torvalds5c8af182005-06-21 19:10:21 -07002326
Johannes Schindelin56ac1682006-07-18 19:46:34 +02002327 if (errno == EEXIST || errno == EACCES) {
Junio C Hamanoc28c5712006-07-16 23:28:23 -07002328 /* We may be trying to create a file where a directory
2329 * used to be.
2330 */
2331 struct stat st;
2332 errno = 0;
2333 if (!lstat(path, &st) && S_ISDIR(st.st_mode) && !rmdir(path))
2334 errno = EEXIST;
2335 }
2336
2337 if (errno == EEXIST) {
Linus Torvalds1b668342005-07-13 17:25:53 -07002338 unsigned int nr = getpid();
Linus Torvalds5c8af182005-06-21 19:10:21 -07002339
Linus Torvalds1b668342005-07-13 17:25:53 -07002340 for (;;) {
2341 const char *newpath;
2342 newpath = mkpath("%s~%u", path, nr);
2343 if (!try_create_file(newpath, mode, buf, size)) {
2344 if (!rename(newpath, path))
2345 return;
2346 unlink(newpath);
2347 break;
2348 }
2349 if (errno != EEXIST)
2350 break;
Alex Riesend9e08be2006-01-05 10:00:12 +01002351 ++nr;
2352 }
Linus Torvalds5c8af182005-06-21 19:10:21 -07002353 }
Linus Torvalds1b668342005-07-13 17:25:53 -07002354 die("unable to write file %s mode %o", path, mode);
Linus Torvalds5c8af182005-06-21 19:10:21 -07002355}
2356
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002357static void create_file(struct patch *patch)
2358{
Jason Riedy8361e1d2006-02-03 22:50:57 -08002359 char *path = patch->new_name;
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002360 unsigned mode = patch->new_mode;
2361 unsigned long size = patch->resultsize;
2362 char *buf = patch->result;
2363
2364 if (!mode)
2365 mode = S_IFREG | 0644;
Junio C Hamano03ac6e62006-04-23 16:52:52 -07002366 create_one_file(path, mode, buf, size);
Linus Torvalds1b668342005-07-13 17:25:53 -07002367 add_index_file(path, mode, buf, size);
Junio C Hamano03ac6e62006-04-23 16:52:52 -07002368 cache_tree_invalidate_path(active_cache_tree, path);
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002369}
2370
Junio C Hamanoeed46642006-07-16 23:52:09 -07002371/* phase zero is to remove, phase one is to create */
2372static void write_out_one_result(struct patch *patch, int phase)
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002373{
2374 if (patch->is_delete > 0) {
Junio C Hamanoeed46642006-07-16 23:52:09 -07002375 if (phase == 0)
2376 remove_file(patch);
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002377 return;
2378 }
2379 if (patch->is_new > 0 || patch->is_copy) {
Junio C Hamanoeed46642006-07-16 23:52:09 -07002380 if (phase == 1)
2381 create_file(patch);
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002382 return;
2383 }
2384 /*
2385 * Rename or modification boils down to the same
2386 * thing: remove the old, write the new
2387 */
Junio C Hamanoeed46642006-07-16 23:52:09 -07002388 if (phase == 0)
2389 remove_file(patch);
2390 if (phase == 1)
Junio C Hamano57dc3972006-08-16 17:55:29 -07002391 create_file(patch);
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002392}
2393
Junio C Hamano57dc3972006-08-16 17:55:29 -07002394static int write_out_one_reject(struct patch *patch)
2395{
Junio C Hamano82e27652006-08-18 03:10:19 -07002396 FILE *rej;
2397 char namebuf[PATH_MAX];
Junio C Hamano57dc3972006-08-16 17:55:29 -07002398 struct fragment *frag;
Junio C Hamano82e27652006-08-18 03:10:19 -07002399 int cnt = 0;
Junio C Hamano57dc3972006-08-16 17:55:29 -07002400
Junio C Hamano82e27652006-08-18 03:10:19 -07002401 for (cnt = 0, frag = patch->fragments; frag; frag = frag->next) {
Junio C Hamano57dc3972006-08-16 17:55:29 -07002402 if (!frag->rejected)
2403 continue;
Junio C Hamano82e27652006-08-18 03:10:19 -07002404 cnt++;
Junio C Hamano57dc3972006-08-16 17:55:29 -07002405 }
Junio C Hamano82e27652006-08-18 03:10:19 -07002406
Junio C Hamanoa2bf4042006-08-18 03:14:48 -07002407 if (!cnt) {
2408 if (apply_verbosely)
2409 say_patch_name(stderr,
2410 "Applied patch ", patch, " cleanly.\n");
Junio C Hamano82e27652006-08-18 03:10:19 -07002411 return 0;
Junio C Hamanoa2bf4042006-08-18 03:14:48 -07002412 }
Junio C Hamano82e27652006-08-18 03:10:19 -07002413
2414 /* This should not happen, because a removal patch that leaves
2415 * contents are marked "rejected" at the patch level.
2416 */
2417 if (!patch->new_name)
2418 die("internal error");
2419
Junio C Hamanoa2bf4042006-08-18 03:14:48 -07002420 /* Say this even without --verbose */
2421 say_patch_name(stderr, "Applying patch ", patch, " with");
2422 fprintf(stderr, " %d rejects...\n", cnt);
2423
Junio C Hamano82e27652006-08-18 03:10:19 -07002424 cnt = strlen(patch->new_name);
2425 if (ARRAY_SIZE(namebuf) <= cnt + 5) {
2426 cnt = ARRAY_SIZE(namebuf) - 5;
2427 fprintf(stderr,
2428 "warning: truncating .rej filename to %.*s.rej",
2429 cnt - 1, patch->new_name);
2430 }
2431 memcpy(namebuf, patch->new_name, cnt);
2432 memcpy(namebuf + cnt, ".rej", 5);
2433
2434 rej = fopen(namebuf, "w");
2435 if (!rej)
2436 return error("cannot open %s: %s", namebuf, strerror(errno));
2437
2438 /* Normal git tools never deal with .rej, so do not pretend
2439 * this is a git patch by saying --git nor give extended
2440 * headers. While at it, maybe please "kompare" that wants
2441 * the trailing TAB and some garbage at the end of line ;-).
2442 */
2443 fprintf(rej, "diff a/%s b/%s\t(rejected hunks)\n",
2444 patch->new_name, patch->new_name);
Junio C Hamano0e9ee322006-08-22 15:49:28 -07002445 for (cnt = 1, frag = patch->fragments;
Junio C Hamano82e27652006-08-18 03:10:19 -07002446 frag;
2447 cnt++, frag = frag->next) {
2448 if (!frag->rejected) {
2449 fprintf(stderr, "Hunk #%d applied cleanly.\n", cnt);
2450 continue;
2451 }
2452 fprintf(stderr, "Rejected hunk #%d.\n", cnt);
2453 fprintf(rej, "%.*s", frag->size, frag->patch);
2454 if (frag->patch[frag->size-1] != '\n')
2455 fputc('\n', rej);
2456 }
2457 fclose(rej);
2458 return -1;
Junio C Hamano57dc3972006-08-16 17:55:29 -07002459}
2460
2461static int write_out_results(struct patch *list, int skipped_patch)
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002462{
Junio C Hamanoeed46642006-07-16 23:52:09 -07002463 int phase;
Junio C Hamano57dc3972006-08-16 17:55:29 -07002464 int errs = 0;
2465 struct patch *l;
Junio C Hamanoeed46642006-07-16 23:52:09 -07002466
Junio C Hamanod854f782005-07-22 09:56:57 -07002467 if (!list && !skipped_patch)
Junio C Hamano57dc3972006-08-16 17:55:29 -07002468 return error("No changes");
Linus Torvaldsf7b79702005-06-05 15:25:28 -07002469
Junio C Hamanoeed46642006-07-16 23:52:09 -07002470 for (phase = 0; phase < 2; phase++) {
Junio C Hamano57dc3972006-08-16 17:55:29 -07002471 l = list;
Junio C Hamanoeed46642006-07-16 23:52:09 -07002472 while (l) {
Junio C Hamano57dc3972006-08-16 17:55:29 -07002473 if (l->rejected)
2474 errs = 1;
Junio C Hamano82e27652006-08-18 03:10:19 -07002475 else {
Junio C Hamano57dc3972006-08-16 17:55:29 -07002476 write_out_one_result(l, phase);
Junio C Hamano82e27652006-08-18 03:10:19 -07002477 if (phase == 1 && write_out_one_reject(l))
Junio C Hamano57dc3972006-08-16 17:55:29 -07002478 errs = 1;
2479 }
Junio C Hamanoeed46642006-07-16 23:52:09 -07002480 l = l->next;
2481 }
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002482 }
Junio C Hamano57dc3972006-08-16 17:55:29 -07002483 return errs;
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002484}
2485
Junio C Hamano021b6e42006-06-06 12:51:49 -07002486static struct lock_file lock_file;
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002487
Junio C Hamanod854f782005-07-22 09:56:57 -07002488static struct excludes {
2489 struct excludes *next;
2490 const char *path;
2491} *excludes;
2492
2493static int use_patch(struct patch *p)
2494{
Jason Riedyc7c81b32005-08-23 13:34:07 -07002495 const char *pathname = p->new_name ? p->new_name : p->old_name;
Junio C Hamanod854f782005-07-22 09:56:57 -07002496 struct excludes *x = excludes;
2497 while (x) {
2498 if (fnmatch(x->path, pathname, 0) == 0)
2499 return 0;
2500 x = x->next;
2501 }
Junio C Hamanoedf2e372005-11-25 23:14:15 -08002502 if (0 < prefix_length) {
2503 int pathlen = strlen(pathname);
2504 if (pathlen <= prefix_length ||
2505 memcmp(prefix, pathname, prefix_length))
2506 return 0;
2507 }
Junio C Hamanod854f782005-07-22 09:56:57 -07002508 return 1;
2509}
2510
Junio C Hamanof686d032006-08-14 23:26:51 -07002511static int apply_patch(int fd, const char *filename, int inaccurate_eof)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002512{
2513 unsigned long offset, size;
2514 char *buffer = read_patch_file(fd, &size);
Linus Torvalds19c58fb2005-05-26 10:23:51 -07002515 struct patch *list = NULL, **listp = &list;
Junio C Hamanod854f782005-07-22 09:56:57 -07002516 int skipped_patch = 0;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002517
Junio C Hamanob5767dd2006-02-26 18:13:25 -08002518 patch_input_file = filename;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002519 if (!buffer)
2520 return -1;
2521 offset = 0;
2522 while (size > 0) {
Linus Torvalds19c58fb2005-05-26 10:23:51 -07002523 struct patch *patch;
2524 int nr;
2525
Peter Eriksen90321c12006-04-03 19:30:46 +01002526 patch = xcalloc(1, sizeof(*patch));
Johannes Schindelin3eaa38d2006-06-24 22:10:11 +02002527 patch->inaccurate_eof = inaccurate_eof;
Linus Torvalds19c58fb2005-05-26 10:23:51 -07002528 nr = parse_chunk(buffer + offset, size, patch);
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002529 if (nr < 0)
2530 break;
Junio C Hamanof686d032006-08-14 23:26:51 -07002531 if (apply_in_reverse)
Johannes Schindeline5a94312006-07-28 17:46:11 +02002532 reverse_patches(patch);
Junio C Hamanod854f782005-07-22 09:56:57 -07002533 if (use_patch(patch)) {
2534 patch_stats(patch);
2535 *listp = patch;
2536 listp = &patch->next;
2537 } else {
2538 /* perhaps free it a bit better? */
2539 free(patch);
2540 skipped_patch++;
2541 }
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002542 offset += nr;
2543 size -= nr;
2544 }
Linus Torvalds19c58fb2005-05-26 10:23:51 -07002545
Junio C Hamanob5767dd2006-02-26 18:13:25 -08002546 if (whitespace_error && (new_whitespace == error_on_whitespace))
2547 apply = 0;
2548
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002549 write_index = check_index && apply;
Junio C Hamano40aaae82006-08-12 01:03:47 -07002550 if (write_index && newfd < 0)
Junio C Hamano021b6e42006-06-06 12:51:49 -07002551 newfd = hold_lock_file_for_update(&lock_file,
Junio C Hamano40aaae82006-08-12 01:03:47 -07002552 get_index_file(), 1);
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002553 if (check_index) {
2554 if (read_cache() < 0)
2555 die("unable to read index file");
2556 }
2557
Junio C Hamano57dc3972006-08-16 17:55:29 -07002558 if ((check || apply) &&
2559 check_patch_list(list) < 0 &&
2560 !apply_with_reject)
Linus Torvaldsa5772842005-05-26 15:10:02 -07002561 exit(1);
2562
Junio C Hamano57dc3972006-08-16 17:55:29 -07002563 if (apply && write_out_results(list, skipped_patch))
2564 exit(1);
Linus Torvalds5aa7d942005-06-05 14:05:43 -07002565
Junio C Hamano2cf67f12005-10-07 03:42:00 -07002566 if (show_index_info)
2567 show_index_list(list);
2568
Linus Torvaldsa5772842005-05-26 15:10:02 -07002569 if (diffstat)
2570 stat_patch_list(list);
Linus Torvalds19c58fb2005-05-26 10:23:51 -07002571
Junio C Hamano7d8b7c22005-10-28 02:43:31 -07002572 if (numstat)
2573 numstat_patch_list(list);
2574
Junio C Hamano96c912a2005-06-22 02:29:46 -07002575 if (summary)
2576 summary_patch_list(list);
2577
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002578 free(buffer);
2579 return 0;
2580}
2581
Junio C Hamano2ae1c532006-02-27 14:47:45 -08002582static int git_apply_config(const char *var, const char *value)
2583{
2584 if (!strcmp(var, "apply.whitespace")) {
Shawn Pearce9befac42006-09-02 00:16:31 -04002585 apply_default_whitespace = xstrdup(value);
Junio C Hamano2ae1c532006-02-27 14:47:45 -08002586 return 0;
2587 }
2588 return git_default_config(var, value);
2589}
2590
2591
Johannes Schindelincd554bb2007-01-21 02:17:19 +01002592int cmd_apply(int argc, const char **argv, const char *unused_prefix)
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002593{
2594 int i;
Linus Torvalds4dfdbe12005-05-23 16:42:21 -07002595 int read_stdin = 1;
Johannes Schindelin3eaa38d2006-06-24 22:10:11 +02002596 int inaccurate_eof = 0;
Junio C Hamano57dc3972006-08-16 17:55:29 -07002597 int errs = 0;
Junio C Hamanodc7b2432007-02-17 13:12:52 -08002598 int is_not_gitdir = 0;
Johannes Schindelin3eaa38d2006-06-24 22:10:11 +02002599
Junio C Hamano2ae1c532006-02-27 14:47:45 -08002600 const char *whitespace_option = NULL;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002601
Junio C Hamanodc7b2432007-02-17 13:12:52 -08002602 prefix = setup_git_directory_gently(&is_not_gitdir);
2603 prefix_length = prefix ? strlen(prefix) : 0;
2604 if (!is_not_gitdir) {
2605 git_config(git_apply_config);
2606 if (apply_default_whitespace)
2607 parse_whitespace_option(apply_default_whitespace);
2608 }
2609
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002610 for (i = 1; i < argc; i++) {
2611 const char *arg = argv[i];
Eric W. Biederman47495882006-04-10 03:33:06 -06002612 char *end;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002613 int fd;
2614
2615 if (!strcmp(arg, "-")) {
Junio C Hamano57dc3972006-08-16 17:55:29 -07002616 errs |= apply_patch(0, "<stdin>", inaccurate_eof);
Linus Torvalds4dfdbe12005-05-23 16:42:21 -07002617 read_stdin = 0;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002618 continue;
2619 }
Junio C Hamanod854f782005-07-22 09:56:57 -07002620 if (!strncmp(arg, "--exclude=", 10)) {
2621 struct excludes *x = xmalloc(sizeof(*x));
2622 x->path = arg + 10;
2623 x->next = excludes;
2624 excludes = x;
2625 continue;
2626 }
Daniel Barkalowe36f8b62006-01-31 00:36:24 -05002627 if (!strncmp(arg, "-p", 2)) {
2628 p_value = atoi(arg + 2);
2629 continue;
2630 }
Junio C Hamanocb93c192005-11-09 20:38:33 -08002631 if (!strcmp(arg, "--no-add")) {
2632 no_add = 1;
2633 continue;
2634 }
Linus Torvaldsfab2c252005-05-26 12:25:52 -07002635 if (!strcmp(arg, "--stat")) {
Linus Torvaldsa5772842005-05-26 15:10:02 -07002636 apply = 0;
Linus Torvaldsfab2c252005-05-26 12:25:52 -07002637 diffstat = 1;
2638 continue;
2639 }
Junio C Hamano06606262006-05-05 02:41:53 -07002640 if (!strcmp(arg, "--allow-binary-replacement") ||
2641 !strcmp(arg, "--binary")) {
Junio C Hamano2b6eef92006-09-06 22:45:21 -07002642 continue; /* now no-op */
Junio C Hamano011f4272005-11-14 17:37:05 -08002643 }
Junio C Hamano7d8b7c22005-10-28 02:43:31 -07002644 if (!strcmp(arg, "--numstat")) {
2645 apply = 0;
2646 numstat = 1;
2647 continue;
2648 }
Junio C Hamano96c912a2005-06-22 02:29:46 -07002649 if (!strcmp(arg, "--summary")) {
2650 apply = 0;
2651 summary = 1;
2652 continue;
2653 }
Linus Torvaldsa5772842005-05-26 15:10:02 -07002654 if (!strcmp(arg, "--check")) {
2655 apply = 0;
2656 check = 1;
2657 continue;
2658 }
Linus Torvalds3cca9282005-06-05 11:03:13 -07002659 if (!strcmp(arg, "--index")) {
Junio C Hamanodc7b2432007-02-17 13:12:52 -08002660 if (is_not_gitdir)
2661 die("--index outside a repository");
Linus Torvalds3cca9282005-06-05 11:03:13 -07002662 check_index = 1;
2663 continue;
2664 }
Junio C Hamano04e48882006-05-15 15:15:47 -07002665 if (!strcmp(arg, "--cached")) {
Junio C Hamanodc7b2432007-02-17 13:12:52 -08002666 if (is_not_gitdir)
2667 die("--cached outside a repository");
Junio C Hamano04e48882006-05-15 15:15:47 -07002668 check_index = 1;
2669 cached = 1;
2670 continue;
2671 }
Linus Torvaldsaefa4a52005-06-23 09:00:01 -07002672 if (!strcmp(arg, "--apply")) {
2673 apply = 1;
2674 continue;
2675 }
Junio C Hamano22943f12005-10-14 21:54:52 -07002676 if (!strcmp(arg, "--index-info")) {
Junio C Hamano2cf67f12005-10-07 03:42:00 -07002677 apply = 0;
2678 show_index_info = 1;
2679 continue;
2680 }
Junio C Hamano22943f12005-10-14 21:54:52 -07002681 if (!strcmp(arg, "-z")) {
2682 line_termination = 0;
2683 continue;
2684 }
Eric W. Biederman47495882006-04-10 03:33:06 -06002685 if (!strncmp(arg, "-C", 2)) {
2686 p_context = strtoul(arg + 2, &end, 0);
2687 if (*end != '\0')
2688 die("unrecognized context count '%s'", arg + 2);
2689 continue;
2690 }
Linus Torvalds19bfcd52006-02-26 09:29:00 -08002691 if (!strncmp(arg, "--whitespace=", 13)) {
Junio C Hamano2ae1c532006-02-27 14:47:45 -08002692 whitespace_option = arg + 13;
2693 parse_whitespace_option(arg + 13);
2694 continue;
Linus Torvalds19bfcd52006-02-26 09:29:00 -08002695 }
Johannes Schindeline5a94312006-07-28 17:46:11 +02002696 if (!strcmp(arg, "-R") || !strcmp(arg, "--reverse")) {
Junio C Hamanof686d032006-08-14 23:26:51 -07002697 apply_in_reverse = 1;
Johannes Schindeline5a94312006-07-28 17:46:11 +02002698 continue;
2699 }
Junio C Hamano4be60962006-09-17 01:04:24 -07002700 if (!strcmp(arg, "--unidiff-zero")) {
2701 unidiff_zero = 1;
2702 continue;
2703 }
Junio C Hamano57dc3972006-08-16 17:55:29 -07002704 if (!strcmp(arg, "--reject")) {
Junio C Hamano89380452006-08-27 15:53:20 -07002705 apply = apply_with_reject = apply_verbosely = 1;
Junio C Hamano57dc3972006-08-16 17:55:29 -07002706 continue;
2707 }
Junio C Hamanoa2bf4042006-08-18 03:14:48 -07002708 if (!strcmp(arg, "--verbose")) {
2709 apply_verbosely = 1;
2710 continue;
2711 }
Johannes Schindelin3eaa38d2006-06-24 22:10:11 +02002712 if (!strcmp(arg, "--inaccurate-eof")) {
2713 inaccurate_eof = 1;
2714 continue;
2715 }
Junio C Hamanoedf2e372005-11-25 23:14:15 -08002716 if (0 < prefix_length)
2717 arg = prefix_filename(prefix, prefix_length, arg);
2718
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002719 fd = open(arg, O_RDONLY);
2720 if (fd < 0)
2721 usage(apply_usage);
Linus Torvalds4dfdbe12005-05-23 16:42:21 -07002722 read_stdin = 0;
Junio C Hamanof21d6722006-02-28 01:12:52 -08002723 set_default_whitespace_mode(whitespace_option);
Junio C Hamano57dc3972006-08-16 17:55:29 -07002724 errs |= apply_patch(fd, arg, inaccurate_eof);
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002725 close(fd);
2726 }
Junio C Hamanof21d6722006-02-28 01:12:52 -08002727 set_default_whitespace_mode(whitespace_option);
Linus Torvalds4dfdbe12005-05-23 16:42:21 -07002728 if (read_stdin)
Junio C Hamano57dc3972006-08-16 17:55:29 -07002729 errs |= apply_patch(0, "<stdin>", inaccurate_eof);
Junio C Hamanofc96b7c2006-02-27 14:16:30 -08002730 if (whitespace_error) {
2731 if (squelch_whitespace_errors &&
2732 squelch_whitespace_errors < whitespace_error) {
2733 int squelched =
2734 whitespace_error - squelch_whitespace_errors;
Junio C Hamano57dc3972006-08-16 17:55:29 -07002735 fprintf(stderr, "warning: squelched %d "
2736 "whitespace error%s\n",
Junio C Hamanofc96b7c2006-02-27 14:16:30 -08002737 squelched,
2738 squelched == 1 ? "" : "s");
2739 }
2740 if (new_whitespace == error_on_whitespace)
2741 die("%d line%s add%s trailing whitespaces.",
2742 whitespace_error,
2743 whitespace_error == 1 ? "" : "s",
2744 whitespace_error == 1 ? "s" : "");
2745 if (applied_after_stripping)
2746 fprintf(stderr, "warning: %d line%s applied after"
2747 " stripping trailing whitespaces.\n",
2748 applied_after_stripping,
2749 applied_after_stripping == 1 ? "" : "s");
2750 else if (whitespace_error)
2751 fprintf(stderr, "warning: %d line%s add%s trailing"
2752 " whitespaces.\n",
2753 whitespace_error,
2754 whitespace_error == 1 ? "" : "s",
2755 whitespace_error == 1 ? "s" : "");
2756 }
Eric Wongdbd0f7d2006-05-09 01:08:23 -07002757
2758 if (write_index) {
2759 if (write_cache(newfd, active_cache, active_nr) ||
Johannes Schindelin6244b242006-07-08 10:56:28 +02002760 close(newfd) || commit_lock_file(&lock_file))
Junio C Hamano021b6e42006-06-06 12:51:49 -07002761 die("Unable to write new index file");
Eric Wongdbd0f7d2006-05-09 01:08:23 -07002762 }
2763
Junio C Hamano57dc3972006-08-16 17:55:29 -07002764 return !!errs;
Linus Torvaldsc1bb9352005-05-23 10:52:17 -07002765}