Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1 | /* |
| 2 | * apply.c |
| 3 | * |
| 4 | * Copyright (C) Linus Torvalds, 2005 |
| 5 | * |
| 6 | * This applies patches on top of some (arbitrary) version of the SCM. |
| 7 | * |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 8 | */ |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 9 | #include "cache.h" |
Junio C Hamano | 03ac6e6 | 2006-04-23 16:52:52 -0700 | [diff] [blame] | 10 | #include "cache-tree.h" |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 11 | #include "quote.h" |
Peter Eriksen | 8e44025 | 2006-04-02 14:44:09 +0200 | [diff] [blame] | 12 | #include "blob.h" |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 13 | #include "delta.h" |
Peter Eriksen | ac6245e | 2006-05-23 14:15:34 +0200 | [diff] [blame] | 14 | #include "builtin.h" |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 15 | |
Pavel Roskin | a9486b0 | 2006-07-10 02:57:51 -0400 | [diff] [blame] | 16 | /* |
| 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 Hamano | edf2e37 | 2005-11-25 23:14:15 -0800 | [diff] [blame] | 25 | static const char *prefix; |
| 26 | static int prefix_length = -1; |
Eric Wong | dbd0f7d | 2006-05-09 01:08:23 -0700 | [diff] [blame] | 27 | static int newfd = -1; |
Junio C Hamano | edf2e37 | 2005-11-25 23:14:15 -0800 | [diff] [blame] | 28 | |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 29 | static int unidiff_zero; |
Daniel Barkalow | e36f8b6 | 2006-01-31 00:36:24 -0500 | [diff] [blame] | 30 | static int p_value = 1; |
Junio C Hamano | 3e8a5db | 2007-02-21 16:05:56 -0800 | [diff] [blame] | 31 | static int p_value_known; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 32 | static int check_index; |
Junio C Hamano | 7da3bf3 | 2007-04-01 22:46:06 -0700 | [diff] [blame] | 33 | static int update_index; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 34 | static int cached; |
| 35 | static int diffstat; |
| 36 | static int numstat; |
| 37 | static int summary; |
| 38 | static int check; |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 39 | static int apply = 1; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 40 | static int apply_in_reverse; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 41 | static int apply_with_reject; |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 42 | static int apply_verbosely; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 43 | static int no_add; |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 44 | static const char *fake_ancestor; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 45 | static int line_termination = '\n'; |
Shawn O. Pearce | bf8675d | 2006-11-05 02:27:07 -0500 | [diff] [blame] | 46 | static unsigned long p_context = ULONG_MAX; |
Junio C Hamano | 12dd6e8 | 2005-07-13 20:28:55 -0700 | [diff] [blame] | 47 | static const char apply_usage[] = |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 48 | "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 Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 49 | |
Linus Torvalds | 19bfcd5 | 2006-02-26 09:29:00 -0800 | [diff] [blame] | 50 | static enum whitespace_eol { |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 51 | nowarn_whitespace, |
Linus Torvalds | 19bfcd5 | 2006-02-26 09:29:00 -0800 | [diff] [blame] | 52 | warn_on_whitespace, |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 53 | error_on_whitespace, |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 54 | strip_whitespace, |
Junio C Hamano | 621603b | 2006-02-27 17:07:16 -0800 | [diff] [blame] | 55 | } new_whitespace = warn_on_whitespace; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 56 | static int whitespace_error; |
Junio C Hamano | fc96b7c | 2006-02-27 14:16:30 -0800 | [diff] [blame] | 57 | static int squelch_whitespace_errors = 5; |
Junio C Hamano | c94bf41 | 2007-06-02 19:55:54 -0700 | [diff] [blame] | 58 | static int applied_after_fixing_ws; |
David Rientjes | 96f1e58 | 2006-08-15 10:23:48 -0700 | [diff] [blame] | 59 | static const char *patch_input_file; |
Linus Torvalds | 19bfcd5 | 2006-02-26 09:29:00 -0800 | [diff] [blame] | 60 | |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 61 | static void parse_whitespace_option(const char *option) |
| 62 | { |
| 63 | if (!option) { |
Junio C Hamano | 621603b | 2006-02-27 17:07:16 -0800 | [diff] [blame] | 64 | new_whitespace = warn_on_whitespace; |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 65 | return; |
| 66 | } |
| 67 | if (!strcmp(option, "warn")) { |
| 68 | new_whitespace = warn_on_whitespace; |
| 69 | return; |
| 70 | } |
Junio C Hamano | 621603b | 2006-02-27 17:07:16 -0800 | [diff] [blame] | 71 | if (!strcmp(option, "nowarn")) { |
| 72 | new_whitespace = nowarn_whitespace; |
| 73 | return; |
| 74 | } |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 75 | if (!strcmp(option, "error")) { |
| 76 | new_whitespace = error_on_whitespace; |
| 77 | return; |
| 78 | } |
| 79 | if (!strcmp(option, "error-all")) { |
| 80 | new_whitespace = error_on_whitespace; |
| 81 | squelch_whitespace_errors = 0; |
| 82 | return; |
| 83 | } |
| 84 | if (!strcmp(option, "strip")) { |
| 85 | new_whitespace = strip_whitespace; |
| 86 | return; |
| 87 | } |
| 88 | die("unrecognized whitespace option '%s'", option); |
| 89 | } |
| 90 | |
Junio C Hamano | f21d672 | 2006-02-28 01:12:52 -0800 | [diff] [blame] | 91 | static void set_default_whitespace_mode(const char *whitespace_option) |
| 92 | { |
| 93 | if (!whitespace_option && !apply_default_whitespace) { |
| 94 | new_whitespace = (apply |
| 95 | ? warn_on_whitespace |
| 96 | : nowarn_whitespace); |
| 97 | } |
| 98 | } |
| 99 | |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 100 | /* |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 101 | * For "diff-stat" like behaviour, we keep track of the biggest change |
| 102 | * we've seen, and the longest filename. That allows us to do simple |
| 103 | * scaling. |
| 104 | */ |
| 105 | static int max_change, max_len; |
| 106 | |
| 107 | /* |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 108 | * Various "current state", notably line numbers and what |
| 109 | * file (and how) we're patching right now.. The "is_xxxx" |
| 110 | * things are flags, where -1 means "don't know yet". |
| 111 | */ |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 112 | static int linenr = 1; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 113 | |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 114 | /* |
| 115 | * This represents one "hunk" from a patch, starting with |
| 116 | * "@@ -oldpos,oldlines +newpos,newlines @@" marker. The |
| 117 | * patch text is pointed at by patch, and its byte length |
| 118 | * is stored in size. leading and trailing are the number |
| 119 | * of context lines. |
| 120 | */ |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 121 | struct fragment { |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 122 | unsigned long leading, trailing; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 123 | unsigned long oldpos, oldlines; |
| 124 | unsigned long newpos, newlines; |
| 125 | const char *patch; |
| 126 | int size; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 127 | int rejected; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 128 | struct fragment *next; |
| 129 | }; |
| 130 | |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 131 | /* |
| 132 | * When dealing with a binary patch, we reuse "leading" field |
| 133 | * to store the type of the binary hunk, either deflated "delta" |
| 134 | * or deflated "literal". |
| 135 | */ |
| 136 | #define binary_patch_method leading |
| 137 | #define BINARY_DELTA_DEFLATED 1 |
| 138 | #define BINARY_LITERAL_DEFLATED 2 |
| 139 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 140 | struct patch { |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 141 | char *new_name, *old_name, *def_name; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 142 | unsigned int old_mode, new_mode; |
Rene Scharfe | 3dad11b | 2006-11-18 13:07:09 +0100 | [diff] [blame] | 143 | int is_new, is_delete; /* -1 = unknown, 0 = false, 1 = true */ |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 144 | int rejected; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 145 | unsigned long deflate_origlen; |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 146 | int lines_added, lines_deleted; |
Junio C Hamano | 96c912a | 2005-06-22 02:29:46 -0700 | [diff] [blame] | 147 | int score; |
Junio C Hamano | 9987d7c | 2007-02-21 14:31:10 -0800 | [diff] [blame] | 148 | unsigned int is_toplevel_relative:1; |
Rene Scharfe | 3dad11b | 2006-11-18 13:07:09 +0100 | [diff] [blame] | 149 | unsigned int inaccurate_eof:1; |
| 150 | unsigned int is_binary:1; |
| 151 | unsigned int is_copy:1; |
| 152 | unsigned int is_rename:1; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 153 | struct fragment *fragments; |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 154 | char *result; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 155 | unsigned long resultsize; |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 156 | char old_sha1_prefix[41]; |
| 157 | char new_sha1_prefix[41]; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 158 | struct patch *next; |
| 159 | }; |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 160 | |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 161 | static void say_patch_name(FILE *output, const char *pre, struct patch *patch, const char *post) |
| 162 | { |
| 163 | fputs(pre, output); |
| 164 | if (patch->old_name && patch->new_name && |
| 165 | strcmp(patch->old_name, patch->new_name)) { |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 166 | quote_c_style(patch->old_name, NULL, output, 0); |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 167 | fputs(" => ", output); |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 168 | quote_c_style(patch->new_name, NULL, output, 0); |
| 169 | } else { |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 170 | const char *n = patch->new_name; |
| 171 | if (!n) |
| 172 | n = patch->old_name; |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 173 | quote_c_style(n, NULL, output, 0); |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 174 | } |
| 175 | fputs(post, output); |
| 176 | } |
| 177 | |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 178 | #define CHUNKSIZE (8192) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 179 | #define SLOP (16) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 180 | |
Pierre Habouzit | 9a76ade | 2007-09-27 13:33:19 +0200 | [diff] [blame] | 181 | static void read_patch_file(struct strbuf *sb, int fd) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 182 | { |
Pierre Habouzit | 9a76ade | 2007-09-27 13:33:19 +0200 | [diff] [blame] | 183 | if (strbuf_read(sb, fd, 0) < 0) |
Pierre Habouzit | af6eb82 | 2007-09-06 13:20:09 +0200 | [diff] [blame] | 184 | die("git-apply: read returned %s", strerror(errno)); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 185 | |
| 186 | /* |
| 187 | * Make sure that we have some slop in the buffer |
| 188 | * so that we can do speculative "memcmp" etc, and |
| 189 | * see to it that it is NUL-filled. |
| 190 | */ |
Pierre Habouzit | 9a76ade | 2007-09-27 13:33:19 +0200 | [diff] [blame] | 191 | strbuf_grow(sb, SLOP); |
| 192 | memset(sb->buf + sb->len, 0, SLOP); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 193 | } |
| 194 | |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 195 | static unsigned long linelen(const char *buffer, unsigned long size) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 196 | { |
| 197 | unsigned long len = 0; |
| 198 | while (size--) { |
| 199 | len++; |
| 200 | if (*buffer++ == '\n') |
| 201 | break; |
| 202 | } |
| 203 | return len; |
| 204 | } |
| 205 | |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 206 | static int is_dev_null(const char *str) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 207 | { |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 208 | return !memcmp("/dev/null", str, 9) && isspace(str[9]); |
| 209 | } |
| 210 | |
Linus Torvalds | 381ca9a | 2005-05-31 15:05:59 -0700 | [diff] [blame] | 211 | #define TERM_SPACE 1 |
| 212 | #define TERM_TAB 2 |
Linus Torvalds | 9a4a100 | 2005-05-23 19:13:55 -0700 | [diff] [blame] | 213 | |
| 214 | static int name_terminate(const char *name, int namelen, int c, int terminate) |
| 215 | { |
| 216 | if (c == ' ' && !(terminate & TERM_SPACE)) |
| 217 | return 0; |
| 218 | if (c == '\t' && !(terminate & TERM_TAB)) |
| 219 | return 0; |
| 220 | |
Linus Torvalds | 9a4a100 | 2005-05-23 19:13:55 -0700 | [diff] [blame] | 221 | return 1; |
| 222 | } |
| 223 | |
Junio C Hamano | 56185f4 | 2007-02-19 17:57:29 -0800 | [diff] [blame] | 224 | static char *find_name(const char *line, char *def, int p_value, int terminate) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 225 | { |
| 226 | int len; |
| 227 | const char *start = line; |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 228 | |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 229 | if (*line == '"') { |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 230 | struct strbuf name; |
| 231 | |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 232 | /* Proposed "new-style" GNU patch/diff format; see |
| 233 | * http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2 |
| 234 | */ |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 235 | strbuf_init(&name, 0); |
| 236 | if (!unquote_c_style(&name, line, NULL)) { |
| 237 | char *cp; |
| 238 | |
| 239 | for (cp = name.buf; p_value; p_value--) { |
Pierre Habouzit | 3d845d7 | 2007-09-18 12:12:58 +0200 | [diff] [blame] | 240 | cp = strchr(cp, '/'); |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 241 | if (!cp) |
| 242 | break; |
| 243 | cp++; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 244 | } |
| 245 | if (cp) { |
| 246 | /* name can later be freed, so we need |
| 247 | * to memmove, not just return cp |
| 248 | */ |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 249 | strbuf_remove(&name, 0, cp - name.buf); |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 250 | free(def); |
Pierre Habouzit | b315c5c | 2007-09-27 12:58:23 +0200 | [diff] [blame] | 251 | return strbuf_detach(&name, NULL); |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 252 | } |
| 253 | } |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 254 | strbuf_release(&name); |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 257 | for (;;) { |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 258 | char c = *line; |
Linus Torvalds | 9a4a100 | 2005-05-23 19:13:55 -0700 | [diff] [blame] | 259 | |
| 260 | if (isspace(c)) { |
| 261 | if (c == '\n') |
| 262 | break; |
| 263 | if (name_terminate(start, line-start, c, terminate)) |
| 264 | break; |
| 265 | } |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 266 | line++; |
| 267 | if (c == '/' && !--p_value) |
| 268 | start = line; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 269 | } |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 270 | if (!start) |
| 271 | return def; |
| 272 | len = line - start; |
| 273 | if (!len) |
| 274 | return def; |
| 275 | |
| 276 | /* |
| 277 | * Generally we prefer the shorter name, especially |
| 278 | * if the other one is just a variation of that with |
| 279 | * something else tacked on to the end (ie "file.orig" |
| 280 | * or "file~"). |
| 281 | */ |
| 282 | if (def) { |
| 283 | int deflen = strlen(def); |
| 284 | if (deflen < len && !strncmp(start, def, deflen)) |
| 285 | return def; |
Junio C Hamano | ca03283 | 2007-09-19 01:37:50 -0700 | [diff] [blame] | 286 | free(def); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 287 | } |
| 288 | |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 289 | return xmemdupz(start, len); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 290 | } |
| 291 | |
Junio C Hamano | 3e8a5db | 2007-02-21 16:05:56 -0800 | [diff] [blame] | 292 | static int count_slashes(const char *cp) |
| 293 | { |
| 294 | int cnt = 0; |
| 295 | char ch; |
| 296 | |
| 297 | while ((ch = *cp++)) |
| 298 | if (ch == '/') |
| 299 | cnt++; |
| 300 | return cnt; |
| 301 | } |
| 302 | |
| 303 | /* |
| 304 | * Given the string after "--- " or "+++ ", guess the appropriate |
| 305 | * p_value for the given patch. |
| 306 | */ |
| 307 | static int guess_p_value(const char *nameline) |
| 308 | { |
| 309 | char *name, *cp; |
| 310 | int val = -1; |
| 311 | |
| 312 | if (is_dev_null(nameline)) |
| 313 | return -1; |
| 314 | name = find_name(nameline, NULL, 0, TERM_SPACE | TERM_TAB); |
| 315 | if (!name) |
| 316 | return -1; |
| 317 | cp = strchr(name, '/'); |
| 318 | if (!cp) |
| 319 | val = 0; |
| 320 | else if (prefix) { |
| 321 | /* |
| 322 | * Does it begin with "a/$our-prefix" and such? Then this is |
| 323 | * very likely to apply to our directory. |
| 324 | */ |
| 325 | if (!strncmp(name, prefix, prefix_length)) |
| 326 | val = count_slashes(prefix); |
| 327 | else { |
| 328 | cp++; |
| 329 | if (!strncmp(cp, prefix, prefix_length)) |
| 330 | val = count_slashes(prefix) + 1; |
| 331 | } |
| 332 | } |
| 333 | free(name); |
| 334 | return val; |
| 335 | } |
| 336 | |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 337 | /* |
| 338 | * Get the name etc info from the --/+++ lines of a traditional patch header |
| 339 | * |
Linus Torvalds | 9a4a100 | 2005-05-23 19:13:55 -0700 | [diff] [blame] | 340 | * FIXME! The end-of-filename heuristics are kind of screwy. For existing |
| 341 | * files, we can happily check the index for a match, but for creating a |
| 342 | * new file we should try to match whatever "patch" does. I have no idea. |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 343 | */ |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 344 | static void parse_traditional_patch(const char *first, const char *second, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 345 | { |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 346 | char *name; |
| 347 | |
Pavel Roskin | a9486b0 | 2006-07-10 02:57:51 -0400 | [diff] [blame] | 348 | first += 4; /* skip "--- " */ |
| 349 | second += 4; /* skip "+++ " */ |
Junio C Hamano | 3e8a5db | 2007-02-21 16:05:56 -0800 | [diff] [blame] | 350 | if (!p_value_known) { |
| 351 | int p, q; |
| 352 | p = guess_p_value(first); |
| 353 | q = guess_p_value(second); |
| 354 | if (p < 0) p = q; |
| 355 | if (0 <= p && p == q) { |
| 356 | p_value = p; |
| 357 | p_value_known = 1; |
| 358 | } |
| 359 | } |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 360 | if (is_dev_null(first)) { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 361 | patch->is_new = 1; |
| 362 | patch->is_delete = 0; |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 363 | name = find_name(second, NULL, p_value, TERM_SPACE | TERM_TAB); |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 364 | patch->new_name = name; |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 365 | } else if (is_dev_null(second)) { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 366 | patch->is_new = 0; |
| 367 | patch->is_delete = 1; |
Linus Torvalds | 381ca9a | 2005-05-31 15:05:59 -0700 | [diff] [blame] | 368 | name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB); |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 369 | patch->old_name = name; |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 370 | } else { |
Linus Torvalds | 381ca9a | 2005-05-31 15:05:59 -0700 | [diff] [blame] | 371 | name = find_name(first, NULL, p_value, TERM_SPACE | TERM_TAB); |
| 372 | name = find_name(second, name, p_value, TERM_SPACE | TERM_TAB); |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 373 | patch->old_name = patch->new_name = name; |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 374 | } |
| 375 | if (!name) |
| 376 | die("unable to find filename in patch at line %d", linenr); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 377 | } |
| 378 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 379 | static int gitdiff_hdrend(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 380 | { |
| 381 | return -1; |
| 382 | } |
| 383 | |
Linus Torvalds | 1e3f6b6 | 2005-05-23 19:54:55 -0700 | [diff] [blame] | 384 | /* |
| 385 | * We're anal about diff header consistency, to make |
| 386 | * sure that we don't end up having strange ambiguous |
| 387 | * patches floating around. |
| 388 | * |
| 389 | * As a result, gitdiff_{old|new}name() will check |
| 390 | * their names against any previous information, just |
| 391 | * to make sure.. |
| 392 | */ |
| 393 | static char *gitdiff_verify_name(const char *line, int isnull, char *orig_name, const char *oldnew) |
| 394 | { |
Linus Torvalds | 1e3f6b6 | 2005-05-23 19:54:55 -0700 | [diff] [blame] | 395 | if (!orig_name && !isnull) |
Shawn O. Pearce | 79ee194 | 2007-04-04 11:19:14 -0400 | [diff] [blame] | 396 | return find_name(line, NULL, p_value, TERM_TAB); |
Linus Torvalds | 1e3f6b6 | 2005-05-23 19:54:55 -0700 | [diff] [blame] | 397 | |
Linus Torvalds | 1e3f6b6 | 2005-05-23 19:54:55 -0700 | [diff] [blame] | 398 | if (orig_name) { |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 399 | int len; |
| 400 | const char *name; |
| 401 | char *another; |
Linus Torvalds | 1e3f6b6 | 2005-05-23 19:54:55 -0700 | [diff] [blame] | 402 | name = orig_name; |
| 403 | len = strlen(name); |
| 404 | if (isnull) |
| 405 | die("git-apply: bad git-diff - expected /dev/null, got %s on line %d", name, linenr); |
Shawn O. Pearce | 79ee194 | 2007-04-04 11:19:14 -0400 | [diff] [blame] | 406 | another = find_name(line, NULL, p_value, TERM_TAB); |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 407 | if (!another || memcmp(another, name, len)) |
| 408 | die("git-apply: bad git-diff - inconsistent %s filename on line %d", oldnew, linenr); |
| 409 | free(another); |
Linus Torvalds | 1e3f6b6 | 2005-05-23 19:54:55 -0700 | [diff] [blame] | 410 | return orig_name; |
| 411 | } |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 412 | else { |
| 413 | /* expect "/dev/null" */ |
| 414 | if (memcmp("/dev/null", line, 9) || line[9] != '\n') |
| 415 | die("git-apply: bad git-diff - expected /dev/null on line %d", linenr); |
| 416 | return NULL; |
| 417 | } |
Linus Torvalds | 1e3f6b6 | 2005-05-23 19:54:55 -0700 | [diff] [blame] | 418 | } |
| 419 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 420 | static int gitdiff_oldname(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 421 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 422 | patch->old_name = gitdiff_verify_name(line, patch->is_new, patch->old_name, "old"); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 423 | return 0; |
| 424 | } |
| 425 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 426 | static int gitdiff_newname(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 427 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 428 | patch->new_name = gitdiff_verify_name(line, patch->is_delete, patch->new_name, "new"); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 429 | return 0; |
| 430 | } |
| 431 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 432 | static int gitdiff_oldmode(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 433 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 434 | patch->old_mode = strtoul(line, NULL, 8); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 435 | return 0; |
| 436 | } |
| 437 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 438 | static int gitdiff_newmode(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 439 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 440 | patch->new_mode = strtoul(line, NULL, 8); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 441 | return 0; |
| 442 | } |
| 443 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 444 | static int gitdiff_delete(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 445 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 446 | patch->is_delete = 1; |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 447 | patch->old_name = patch->def_name; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 448 | return gitdiff_oldmode(line, patch); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 449 | } |
| 450 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 451 | static int gitdiff_newfile(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 452 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 453 | patch->is_new = 1; |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 454 | patch->new_name = patch->def_name; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 455 | return gitdiff_newmode(line, patch); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 456 | } |
| 457 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 458 | static int gitdiff_copysrc(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 459 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 460 | patch->is_copy = 1; |
| 461 | patch->old_name = find_name(line, NULL, 0, 0); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 462 | return 0; |
| 463 | } |
| 464 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 465 | static int gitdiff_copydst(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 466 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 467 | patch->is_copy = 1; |
| 468 | patch->new_name = find_name(line, NULL, 0, 0); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 469 | return 0; |
| 470 | } |
| 471 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 472 | static int gitdiff_renamesrc(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 473 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 474 | patch->is_rename = 1; |
| 475 | patch->old_name = find_name(line, NULL, 0, 0); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 476 | return 0; |
| 477 | } |
| 478 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 479 | static int gitdiff_renamedst(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 480 | { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 481 | patch->is_rename = 1; |
| 482 | patch->new_name = find_name(line, NULL, 0, 0); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 483 | return 0; |
| 484 | } |
| 485 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 486 | static int gitdiff_similarity(const char *line, struct patch *patch) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 487 | { |
Junio C Hamano | 96c912a | 2005-06-22 02:29:46 -0700 | [diff] [blame] | 488 | if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX) |
| 489 | patch->score = 0; |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 490 | return 0; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 491 | } |
| 492 | |
Junio C Hamano | 70aadac | 2005-05-30 16:40:16 -0700 | [diff] [blame] | 493 | static int gitdiff_dissimilarity(const char *line, struct patch *patch) |
| 494 | { |
Junio C Hamano | 96c912a | 2005-06-22 02:29:46 -0700 | [diff] [blame] | 495 | if ((patch->score = strtoul(line, NULL, 10)) == ULONG_MAX) |
| 496 | patch->score = 0; |
Junio C Hamano | 70aadac | 2005-05-30 16:40:16 -0700 | [diff] [blame] | 497 | return 0; |
| 498 | } |
| 499 | |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 500 | static int gitdiff_index(const char *line, struct patch *patch) |
| 501 | { |
| 502 | /* index line is N hexadecimal, "..", N hexadecimal, |
| 503 | * and optional space with octal mode. |
| 504 | */ |
| 505 | const char *ptr, *eol; |
| 506 | int len; |
| 507 | |
| 508 | ptr = strchr(line, '.'); |
Junio C Hamano | 9add69b | 2005-11-14 17:15:07 -0800 | [diff] [blame] | 509 | if (!ptr || ptr[1] != '.' || 40 < ptr - line) |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 510 | return 0; |
| 511 | len = ptr - line; |
| 512 | memcpy(patch->old_sha1_prefix, line, len); |
| 513 | patch->old_sha1_prefix[len] = 0; |
| 514 | |
| 515 | line = ptr + 2; |
| 516 | ptr = strchr(line, ' '); |
| 517 | eol = strchr(line, '\n'); |
| 518 | |
| 519 | if (!ptr || eol < ptr) |
| 520 | ptr = eol; |
| 521 | len = ptr - line; |
| 522 | |
Junio C Hamano | 9add69b | 2005-11-14 17:15:07 -0800 | [diff] [blame] | 523 | if (40 < len) |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 524 | return 0; |
| 525 | memcpy(patch->new_sha1_prefix, line, len); |
| 526 | patch->new_sha1_prefix[len] = 0; |
| 527 | if (*ptr == ' ') |
| 528 | patch->new_mode = patch->old_mode = strtoul(ptr+1, NULL, 8); |
| 529 | return 0; |
| 530 | } |
| 531 | |
Linus Torvalds | 9a4a100 | 2005-05-23 19:13:55 -0700 | [diff] [blame] | 532 | /* |
| 533 | * This is normal for a diff that doesn't change anything: we'll fall through |
| 534 | * into the next diff. Tell the parser to break out. |
| 535 | */ |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 536 | static int gitdiff_unrecognized(const char *line, struct patch *patch) |
Linus Torvalds | 9a4a100 | 2005-05-23 19:13:55 -0700 | [diff] [blame] | 537 | { |
| 538 | return -1; |
| 539 | } |
| 540 | |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 541 | static const char *stop_at_slash(const char *line, int llen) |
| 542 | { |
| 543 | int i; |
| 544 | |
| 545 | for (i = 0; i < llen; i++) { |
| 546 | int ch = line[i]; |
| 547 | if (ch == '/') |
| 548 | return line + i; |
| 549 | } |
| 550 | return NULL; |
| 551 | } |
| 552 | |
| 553 | /* This is to extract the same name that appears on "diff --git" |
| 554 | * line. We do not find and return anything if it is a rename |
| 555 | * patch, and it is OK because we will find the name elsewhere. |
| 556 | * We need to reliably find name only when it is mode-change only, |
| 557 | * creation or deletion of an empty file. In any of these cases, |
| 558 | * both sides are the same name under a/ and b/ respectively. |
| 559 | */ |
| 560 | static char *git_header_name(char *line, int llen) |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 561 | { |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 562 | const char *name; |
| 563 | const char *second = NULL; |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 564 | size_t len; |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 565 | |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 566 | line += strlen("diff --git "); |
| 567 | llen -= strlen("diff --git "); |
| 568 | |
| 569 | if (*line == '"') { |
| 570 | const char *cp; |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 571 | struct strbuf first; |
| 572 | struct strbuf sp; |
| 573 | |
| 574 | strbuf_init(&first, 0); |
| 575 | strbuf_init(&sp, 0); |
| 576 | |
| 577 | if (unquote_c_style(&first, line, &second)) |
| 578 | goto free_and_fail1; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 579 | |
| 580 | /* advance to the first slash */ |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 581 | cp = stop_at_slash(first.buf, first.len); |
| 582 | /* we do not accept absolute paths */ |
| 583 | if (!cp || cp == first.buf) |
| 584 | goto free_and_fail1; |
| 585 | strbuf_remove(&first, 0, cp + 1 - first.buf); |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 586 | |
| 587 | /* second points at one past closing dq of name. |
| 588 | * find the second name. |
| 589 | */ |
| 590 | while ((second < line + llen) && isspace(*second)) |
| 591 | second++; |
| 592 | |
| 593 | if (line + llen <= second) |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 594 | goto free_and_fail1; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 595 | if (*second == '"') { |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 596 | if (unquote_c_style(&sp, second, NULL)) |
| 597 | goto free_and_fail1; |
| 598 | cp = stop_at_slash(sp.buf, sp.len); |
| 599 | if (!cp || cp == sp.buf) |
| 600 | goto free_and_fail1; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 601 | /* They must match, otherwise ignore */ |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 602 | if (strcmp(cp + 1, first.buf)) |
| 603 | goto free_and_fail1; |
| 604 | strbuf_release(&sp); |
Pierre Habouzit | b315c5c | 2007-09-27 12:58:23 +0200 | [diff] [blame] | 605 | return strbuf_detach(&first, NULL); |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 606 | } |
| 607 | |
| 608 | /* unquoted second */ |
| 609 | cp = stop_at_slash(second, line + llen - second); |
| 610 | if (!cp || cp == second) |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 611 | goto free_and_fail1; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 612 | cp++; |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 613 | if (line + llen - cp != first.len + 1 || |
| 614 | memcmp(first.buf, cp, first.len)) |
| 615 | goto free_and_fail1; |
Pierre Habouzit | b315c5c | 2007-09-27 12:58:23 +0200 | [diff] [blame] | 616 | return strbuf_detach(&first, NULL); |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 617 | |
| 618 | free_and_fail1: |
| 619 | strbuf_release(&first); |
| 620 | strbuf_release(&sp); |
| 621 | return NULL; |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 622 | } |
| 623 | |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 624 | /* unquoted first name */ |
| 625 | name = stop_at_slash(line, llen); |
| 626 | if (!name || name == line) |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 627 | return NULL; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 628 | name++; |
| 629 | |
| 630 | /* since the first name is unquoted, a dq if exists must be |
| 631 | * the beginning of the second name. |
| 632 | */ |
| 633 | for (second = name; second < line + llen; second++) { |
| 634 | if (*second == '"') { |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 635 | struct strbuf sp; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 636 | const char *np; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 637 | |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 638 | strbuf_init(&sp, 0); |
| 639 | if (unquote_c_style(&sp, second, NULL)) |
| 640 | goto free_and_fail2; |
| 641 | |
| 642 | np = stop_at_slash(sp.buf, sp.len); |
| 643 | if (!np || np == sp.buf) |
| 644 | goto free_and_fail2; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 645 | np++; |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 646 | |
| 647 | len = sp.buf + sp.len - np; |
| 648 | if (len < second - name && |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 649 | !strncmp(np, name, len) && |
| 650 | isspace(name[len])) { |
| 651 | /* Good */ |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 652 | strbuf_remove(&sp, 0, np - sp.buf); |
Pierre Habouzit | b315c5c | 2007-09-27 12:58:23 +0200 | [diff] [blame] | 653 | return strbuf_detach(&sp, NULL); |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 654 | } |
Pierre Habouzit | 7fb1011 | 2007-09-20 00:42:14 +0200 | [diff] [blame] | 655 | |
| 656 | free_and_fail2: |
| 657 | strbuf_release(&sp); |
| 658 | return NULL; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 659 | } |
| 660 | } |
| 661 | |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 662 | /* |
| 663 | * Accept a name only if it shows up twice, exactly the same |
| 664 | * form. |
| 665 | */ |
| 666 | for (len = 0 ; ; len++) { |
Pierre Habouzit | dd305c8 | 2006-08-23 12:39:15 +0200 | [diff] [blame] | 667 | switch (name[len]) { |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 668 | default: |
| 669 | continue; |
| 670 | case '\n': |
Robert Fitzsimons | e70a165 | 2005-08-28 15:24:27 +0000 | [diff] [blame] | 671 | return NULL; |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 672 | case '\t': case ' ': |
| 673 | second = name+len; |
| 674 | for (;;) { |
| 675 | char c = *second++; |
| 676 | if (c == '\n') |
| 677 | return NULL; |
| 678 | if (c == '/') |
| 679 | break; |
| 680 | } |
Linus Torvalds | 0e87e04 | 2005-05-26 13:28:42 -0700 | [diff] [blame] | 681 | if (second[len] == '\n' && !memcmp(name, second, len)) { |
Pierre Habouzit | 182af83 | 2007-09-16 00:32:36 +0200 | [diff] [blame] | 682 | return xmemdupz(name, len); |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 683 | } |
| 684 | } |
| 685 | } |
| 686 | return NULL; |
| 687 | } |
| 688 | |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 689 | /* Verify that we recognize the lines following a git header */ |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 690 | static int parse_git_header(char *line, int len, unsigned int size, struct patch *patch) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 691 | { |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 692 | unsigned long offset; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 693 | |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 694 | /* A git diff has explicit new/delete information, so we don't guess */ |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 695 | patch->is_new = 0; |
| 696 | patch->is_delete = 0; |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 697 | |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 698 | /* |
| 699 | * Some things may not have the old name in the |
| 700 | * rest of the headers anywhere (pure mode changes, |
| 701 | * or removing or adding empty files), so we get |
| 702 | * the default name from the header. |
| 703 | */ |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 704 | patch->def_name = git_header_name(line, len); |
Linus Torvalds | 5041aa7 | 2005-05-26 13:11:24 -0700 | [diff] [blame] | 705 | |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 706 | line += len; |
| 707 | size -= len; |
| 708 | linenr++; |
| 709 | for (offset = len ; size > 0 ; offset += len, size -= len, line += len, linenr++) { |
| 710 | static const struct opentry { |
| 711 | const char *str; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 712 | int (*fn)(const char *, struct patch *); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 713 | } optable[] = { |
| 714 | { "@@ -", gitdiff_hdrend }, |
| 715 | { "--- ", gitdiff_oldname }, |
| 716 | { "+++ ", gitdiff_newname }, |
| 717 | { "old mode ", gitdiff_oldmode }, |
| 718 | { "new mode ", gitdiff_newmode }, |
| 719 | { "deleted file mode ", gitdiff_delete }, |
| 720 | { "new file mode ", gitdiff_newfile }, |
| 721 | { "copy from ", gitdiff_copysrc }, |
| 722 | { "copy to ", gitdiff_copydst }, |
Linus Torvalds | 33f4d08 | 2005-06-05 14:26:50 -0700 | [diff] [blame] | 723 | { "rename old ", gitdiff_renamesrc }, |
| 724 | { "rename new ", gitdiff_renamedst }, |
Linus Torvalds | dc93841 | 2005-06-05 15:31:52 -0700 | [diff] [blame] | 725 | { "rename from ", gitdiff_renamesrc }, |
| 726 | { "rename to ", gitdiff_renamedst }, |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 727 | { "similarity index ", gitdiff_similarity }, |
Junio C Hamano | 70aadac | 2005-05-30 16:40:16 -0700 | [diff] [blame] | 728 | { "dissimilarity index ", gitdiff_dissimilarity }, |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 729 | { "index ", gitdiff_index }, |
Linus Torvalds | 9a4a100 | 2005-05-23 19:13:55 -0700 | [diff] [blame] | 730 | { "", gitdiff_unrecognized }, |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 731 | }; |
| 732 | int i; |
| 733 | |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 734 | len = linelen(line, size); |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 735 | if (!len || line[len-1] != '\n') |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 736 | break; |
Junio C Hamano | b4f2a6a | 2006-03-09 11:58:05 -0800 | [diff] [blame] | 737 | for (i = 0; i < ARRAY_SIZE(optable); i++) { |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 738 | const struct opentry *p = optable + i; |
| 739 | int oplen = strlen(p->str); |
| 740 | if (len < oplen || memcmp(p->str, line, oplen)) |
| 741 | continue; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 742 | if (p->fn(line + oplen, patch) < 0) |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 743 | return offset; |
Linus Torvalds | 9a4a100 | 2005-05-23 19:13:55 -0700 | [diff] [blame] | 744 | break; |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 745 | } |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 746 | } |
| 747 | |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 748 | return offset; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 749 | } |
| 750 | |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 751 | static int parse_num(const char *line, unsigned long *p) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 752 | { |
| 753 | char *ptr; |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 754 | |
| 755 | if (!isdigit(*line)) |
| 756 | return 0; |
| 757 | *p = strtoul(line, &ptr, 10); |
| 758 | return ptr - line; |
| 759 | } |
| 760 | |
| 761 | static int parse_range(const char *line, int len, int offset, const char *expect, |
| 762 | unsigned long *p1, unsigned long *p2) |
| 763 | { |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 764 | int digits, ex; |
| 765 | |
| 766 | if (offset < 0 || offset >= len) |
| 767 | return -1; |
| 768 | line += offset; |
| 769 | len -= offset; |
| 770 | |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 771 | digits = parse_num(line, p1); |
| 772 | if (!digits) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 773 | return -1; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 774 | |
| 775 | offset += digits; |
| 776 | line += digits; |
| 777 | len -= digits; |
| 778 | |
Linus Torvalds | c150462 | 2006-03-25 13:28:28 -0800 | [diff] [blame] | 779 | *p2 = 1; |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 780 | if (*line == ',') { |
| 781 | digits = parse_num(line+1, p2); |
| 782 | if (!digits) |
| 783 | return -1; |
| 784 | |
| 785 | offset += digits+1; |
| 786 | line += digits+1; |
| 787 | len -= digits+1; |
| 788 | } |
| 789 | |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 790 | ex = strlen(expect); |
| 791 | if (ex > len) |
| 792 | return -1; |
| 793 | if (memcmp(line, expect, ex)) |
| 794 | return -1; |
| 795 | |
| 796 | return offset + ex; |
| 797 | } |
| 798 | |
| 799 | /* |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 800 | * Parse a unified diff fragment header of the |
| 801 | * form "@@ -a,b +c,d @@" |
| 802 | */ |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 803 | static int parse_fragment_header(char *line, int len, struct fragment *fragment) |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 804 | { |
| 805 | int offset; |
| 806 | |
| 807 | if (!len || line[len-1] != '\n') |
| 808 | return -1; |
| 809 | |
| 810 | /* Figure out the number of lines in a fragment */ |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 811 | offset = parse_range(line, len, 4, " +", &fragment->oldpos, &fragment->oldlines); |
| 812 | offset = parse_range(line, len, offset, " @@", &fragment->newpos, &fragment->newlines); |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 813 | |
| 814 | return offset; |
| 815 | } |
| 816 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 817 | static int find_header(char *line, unsigned long size, int *hdrsize, struct patch *patch) |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 818 | { |
| 819 | unsigned long offset, len; |
| 820 | |
Junio C Hamano | 9987d7c | 2007-02-21 14:31:10 -0800 | [diff] [blame] | 821 | patch->is_toplevel_relative = 0; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 822 | patch->is_rename = patch->is_copy = 0; |
| 823 | patch->is_new = patch->is_delete = -1; |
| 824 | patch->old_mode = patch->new_mode = 0; |
| 825 | patch->old_name = patch->new_name = NULL; |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 826 | for (offset = 0; size > 0; offset += len, size -= len, line += len, linenr++) { |
| 827 | unsigned long nextlen; |
| 828 | |
| 829 | len = linelen(line, size); |
| 830 | if (!len) |
| 831 | break; |
| 832 | |
| 833 | /* Testing this early allows us to take a few shortcuts.. */ |
| 834 | if (len < 6) |
| 835 | continue; |
| 836 | |
| 837 | /* |
Pavel Roskin | 82e5a82 | 2006-07-10 01:50:18 -0400 | [diff] [blame] | 838 | * Make sure we don't find any unconnected patch fragments. |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 839 | * That's a sign that we didn't find a header, and that a |
| 840 | * patch has become corrupted/broken up. |
| 841 | */ |
| 842 | if (!memcmp("@@ -", line, 4)) { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 843 | struct fragment dummy; |
| 844 | if (parse_fragment_header(line, len, &dummy) < 0) |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 845 | continue; |
Junio C Hamano | 6534141 | 2007-01-09 11:50:53 -0800 | [diff] [blame] | 846 | die("patch fragment without header at line %d: %.*s", |
| 847 | linenr, (int)len-1, line); |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 848 | } |
| 849 | |
| 850 | if (size < len + 6) |
| 851 | break; |
| 852 | |
| 853 | /* |
| 854 | * Git patch? It might not have a real patch, just a rename |
| 855 | * or mode change, so we handle that specially |
| 856 | */ |
| 857 | if (!memcmp("diff --git ", line, 11)) { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 858 | int git_hdr_len = parse_git_header(line, len, size, patch); |
Linus Torvalds | 206de27 | 2005-06-12 09:37:49 -0700 | [diff] [blame] | 859 | if (git_hdr_len <= len) |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 860 | continue; |
Linus Torvalds | b7e8039 | 2005-06-17 15:23:40 -0700 | [diff] [blame] | 861 | if (!patch->old_name && !patch->new_name) { |
| 862 | if (!patch->def_name) |
| 863 | die("git diff header lacks filename information (line %d)", linenr); |
| 864 | patch->old_name = patch->new_name = patch->def_name; |
| 865 | } |
Junio C Hamano | 9987d7c | 2007-02-21 14:31:10 -0800 | [diff] [blame] | 866 | patch->is_toplevel_relative = 1; |
Linus Torvalds | a4acb0e | 2005-05-23 16:09:09 -0700 | [diff] [blame] | 867 | *hdrsize = git_hdr_len; |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 868 | return offset; |
| 869 | } |
| 870 | |
| 871 | /** --- followed by +++ ? */ |
| 872 | if (memcmp("--- ", line, 4) || memcmp("+++ ", line + len, 4)) |
| 873 | continue; |
| 874 | |
| 875 | /* |
| 876 | * We only accept unified patches, so we want it to |
| 877 | * at least have "@@ -a,b +c,d @@\n", which is 14 chars |
| 878 | * minimum |
| 879 | */ |
| 880 | nextlen = linelen(line + len, size - len); |
| 881 | if (size < nextlen + 14 || memcmp("@@ -", line + len + nextlen, 4)) |
| 882 | continue; |
| 883 | |
| 884 | /* Ok, we'll consider it a patch */ |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 885 | parse_traditional_patch(line, line+len, patch); |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 886 | *hdrsize = len + nextlen; |
| 887 | linenr += 2; |
| 888 | return offset; |
| 889 | } |
| 890 | return -1; |
| 891 | } |
| 892 | |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 893 | static void check_whitespace(const char *line, int len) |
| 894 | { |
| 895 | const char *err = "Adds trailing whitespace"; |
| 896 | int seen_space = 0; |
| 897 | int i; |
| 898 | |
| 899 | /* |
| 900 | * We know len is at least two, since we have a '+' and we |
| 901 | * checked that the last character was a '\n' before calling |
| 902 | * this function. That is, an addition of an empty line would |
| 903 | * check the '+' here. Sneaky... |
| 904 | */ |
| 905 | if (isspace(line[len-2])) |
| 906 | goto error; |
| 907 | |
| 908 | /* |
| 909 | * Make sure that there is no space followed by a tab in |
| 910 | * indentation. |
| 911 | */ |
| 912 | err = "Space in indent is followed by a tab"; |
| 913 | for (i = 1; i < len; i++) { |
| 914 | if (line[i] == '\t') { |
| 915 | if (seen_space) |
| 916 | goto error; |
| 917 | } |
| 918 | else if (line[i] == ' ') |
| 919 | seen_space = 1; |
| 920 | else |
| 921 | break; |
| 922 | } |
| 923 | return; |
| 924 | |
| 925 | error: |
| 926 | whitespace_error++; |
| 927 | if (squelch_whitespace_errors && |
| 928 | squelch_whitespace_errors < whitespace_error) |
| 929 | ; |
| 930 | else |
| 931 | fprintf(stderr, "%s.\n%s:%d:%.*s\n", |
| 932 | err, patch_input_file, linenr, len-2, line+1); |
| 933 | } |
| 934 | |
| 935 | |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 936 | /* |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 937 | * Parse a unified diff. Note that this really needs to parse each |
| 938 | * fragment separately, since the only way to know the difference |
| 939 | * between a "---" that is part of a patch, and a "---" that starts |
| 940 | * the next patch is to look at the line counts.. |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 941 | */ |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 942 | static int parse_fragment(char *line, unsigned long size, struct patch *patch, struct fragment *fragment) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 943 | { |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 944 | int added, deleted; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 945 | int len = linelen(line, size), offset; |
Linus Torvalds | 3099665 | 2005-06-05 12:43:56 -0700 | [diff] [blame] | 946 | unsigned long oldlines, newlines; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 947 | unsigned long leading, trailing; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 948 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 949 | offset = parse_fragment_header(line, len, fragment); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 950 | if (offset < 0) |
| 951 | return -1; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 952 | oldlines = fragment->oldlines; |
| 953 | newlines = fragment->newlines; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 954 | leading = 0; |
| 955 | trailing = 0; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 956 | |
| 957 | /* Parse the thing.. */ |
| 958 | line += len; |
| 959 | size -= len; |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 960 | linenr++; |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 961 | added = deleted = 0; |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 962 | for (offset = len; |
| 963 | 0 < size; |
| 964 | offset += len, size -= len, line += len, linenr++) { |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 965 | if (!oldlines && !newlines) |
| 966 | break; |
| 967 | len = linelen(line, size); |
| 968 | if (!len || line[len-1] != '\n') |
| 969 | return -1; |
| 970 | switch (*line) { |
| 971 | default: |
| 972 | return -1; |
Linus Torvalds | b507b46 | 2006-10-19 19:26:08 -0700 | [diff] [blame] | 973 | case '\n': /* newer GNU diff, an empty context line */ |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 974 | case ' ': |
| 975 | oldlines--; |
| 976 | newlines--; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 977 | if (!deleted && !added) |
| 978 | leading++; |
| 979 | trailing++; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 980 | break; |
| 981 | case '-': |
Johannes Schindelin | 5fda48d | 2007-07-07 18:50:39 +0100 | [diff] [blame] | 982 | if (apply_in_reverse && |
| 983 | new_whitespace != nowarn_whitespace) |
| 984 | check_whitespace(line, len); |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 985 | deleted++; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 986 | oldlines--; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 987 | trailing = 0; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 988 | break; |
| 989 | case '+': |
Johannes Schindelin | 5fda48d | 2007-07-07 18:50:39 +0100 | [diff] [blame] | 990 | if (!apply_in_reverse && |
| 991 | new_whitespace != nowarn_whitespace) |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 992 | check_whitespace(line, len); |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 993 | added++; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 994 | newlines--; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 995 | trailing = 0; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 996 | break; |
Fredrik Kuivinen | 433ef8a | 2005-09-04 19:29:02 +0200 | [diff] [blame] | 997 | |
| 998 | /* We allow "\ No newline at end of file". Depending |
| 999 | * on locale settings when the patch was produced we |
| 1000 | * don't know what this line looks like. The only |
Junio C Hamano | 56d33b1 | 2005-10-03 13:16:39 -0700 | [diff] [blame] | 1001 | * thing we do know is that it begins with "\ ". |
| 1002 | * Checking for 12 is just for sanity check -- any |
| 1003 | * l10n of "\ No newline..." is at least that long. |
| 1004 | */ |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 1005 | case '\\': |
Fredrik Kuivinen | 433ef8a | 2005-09-04 19:29:02 +0200 | [diff] [blame] | 1006 | if (len < 12 || memcmp(line, "\\ ", 2)) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1007 | return -1; |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 1008 | break; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1009 | } |
| 1010 | } |
Linus Torvalds | c150462 | 2006-03-25 13:28:28 -0800 | [diff] [blame] | 1011 | if (oldlines || newlines) |
| 1012 | return -1; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1013 | fragment->leading = leading; |
| 1014 | fragment->trailing = trailing; |
| 1015 | |
Junio C Hamano | 8b64647 | 2005-07-22 09:56:39 -0700 | [diff] [blame] | 1016 | /* If a fragment ends with an incomplete line, we failed to include |
| 1017 | * it in the above loop because we hit oldlines == newlines == 0 |
| 1018 | * before seeing it. |
| 1019 | */ |
Fredrik Kuivinen | 433ef8a | 2005-09-04 19:29:02 +0200 | [diff] [blame] | 1020 | if (12 < size && !memcmp(line, "\\ ", 2)) |
Junio C Hamano | 8b64647 | 2005-07-22 09:56:39 -0700 | [diff] [blame] | 1021 | offset += linelen(line, size); |
| 1022 | |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 1023 | patch->lines_added += added; |
| 1024 | patch->lines_deleted += deleted; |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1025 | |
| 1026 | if (0 < patch->is_new && oldlines) |
| 1027 | return error("new file depends on old contents"); |
| 1028 | if (0 < patch->is_delete && newlines) |
| 1029 | return error("deleted file still has contents"); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1030 | return offset; |
| 1031 | } |
| 1032 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 1033 | static int parse_single_patch(char *line, unsigned long size, struct patch *patch) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1034 | { |
| 1035 | unsigned long offset = 0; |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1036 | unsigned long oldlines = 0, newlines = 0, context = 0; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 1037 | struct fragment **fragp = &patch->fragments; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1038 | |
| 1039 | while (size > 4 && !memcmp(line, "@@ -", 4)) { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 1040 | struct fragment *fragment; |
| 1041 | int len; |
| 1042 | |
Peter Eriksen | 90321c1 | 2006-04-03 19:30:46 +0100 | [diff] [blame] | 1043 | fragment = xcalloc(1, sizeof(*fragment)); |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 1044 | len = parse_fragment(line, size, patch, fragment); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1045 | if (len <= 0) |
Linus Torvalds | 46979f5 | 2005-05-23 14:38:49 -0700 | [diff] [blame] | 1046 | die("corrupt patch at line %d", linenr); |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 1047 | fragment->patch = line; |
| 1048 | fragment->size = len; |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1049 | oldlines += fragment->oldlines; |
| 1050 | newlines += fragment->newlines; |
| 1051 | context += fragment->leading + fragment->trailing; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 1052 | |
| 1053 | *fragp = fragment; |
| 1054 | fragp = &fragment->next; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1055 | |
| 1056 | offset += len; |
| 1057 | line += len; |
| 1058 | size -= len; |
| 1059 | } |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1060 | |
| 1061 | /* |
| 1062 | * If something was removed (i.e. we have old-lines) it cannot |
| 1063 | * be creation, and if something was added it cannot be |
| 1064 | * deletion. However, the reverse is not true; --unified=0 |
| 1065 | * patches that only add are not necessarily creation even |
| 1066 | * though they do not have any old lines, and ones that only |
| 1067 | * delete are not necessarily deletion. |
| 1068 | * |
| 1069 | * Unfortunately, a real creation/deletion patch do _not_ have |
| 1070 | * any context line by definition, so we cannot safely tell it |
| 1071 | * apart with --unified=0 insanity. At least if the patch has |
| 1072 | * more than one hunk it is not creation or deletion. |
| 1073 | */ |
| 1074 | if (patch->is_new < 0 && |
| 1075 | (oldlines || (patch->fragments && patch->fragments->next))) |
| 1076 | patch->is_new = 0; |
| 1077 | if (patch->is_delete < 0 && |
| 1078 | (newlines || (patch->fragments && patch->fragments->next))) |
| 1079 | patch->is_delete = 0; |
| 1080 | if (!unidiff_zero || context) { |
| 1081 | /* If the user says the patch is not generated with |
| 1082 | * --unified=0, or if we have seen context lines, |
| 1083 | * then not having oldlines means the patch is creation, |
| 1084 | * and not having newlines means the patch is deletion. |
| 1085 | */ |
Junio C Hamano | 6f9f3b2 | 2006-11-04 02:28:53 -0800 | [diff] [blame] | 1086 | if (patch->is_new < 0 && !oldlines) { |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1087 | patch->is_new = 1; |
Junio C Hamano | 6f9f3b2 | 2006-11-04 02:28:53 -0800 | [diff] [blame] | 1088 | patch->old_name = NULL; |
| 1089 | } |
| 1090 | if (patch->is_delete < 0 && !newlines) { |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1091 | patch->is_delete = 1; |
Junio C Hamano | 6f9f3b2 | 2006-11-04 02:28:53 -0800 | [diff] [blame] | 1092 | patch->new_name = NULL; |
| 1093 | } |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1094 | } |
| 1095 | |
| 1096 | if (0 < patch->is_new && oldlines) |
| 1097 | die("new file %s depends on old contents", patch->new_name); |
| 1098 | if (0 < patch->is_delete && newlines) |
| 1099 | die("deleted file %s still has contents", patch->old_name); |
| 1100 | if (!patch->is_delete && !newlines && context) |
| 1101 | fprintf(stderr, "** warning: file %s becomes empty but " |
| 1102 | "is not deleted\n", patch->new_name); |
| 1103 | |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1104 | return offset; |
| 1105 | } |
| 1106 | |
Linus Torvalds | 1fea629 | 2005-09-30 23:25:23 -0700 | [diff] [blame] | 1107 | static inline int metadata_changes(struct patch *patch) |
| 1108 | { |
| 1109 | return patch->is_rename > 0 || |
| 1110 | patch->is_copy > 0 || |
| 1111 | patch->is_new > 0 || |
| 1112 | patch->is_delete || |
| 1113 | (patch->old_mode && patch->new_mode && |
| 1114 | patch->old_mode != patch->new_mode); |
| 1115 | } |
| 1116 | |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1117 | static char *inflate_it(const void *data, unsigned long size, |
| 1118 | unsigned long inflated_size) |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1119 | { |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1120 | z_stream stream; |
| 1121 | void *out; |
| 1122 | int st; |
| 1123 | |
| 1124 | memset(&stream, 0, sizeof(stream)); |
| 1125 | |
| 1126 | stream.next_in = (unsigned char *)data; |
| 1127 | stream.avail_in = size; |
| 1128 | stream.next_out = out = xmalloc(inflated_size); |
| 1129 | stream.avail_out = inflated_size; |
| 1130 | inflateInit(&stream); |
| 1131 | st = inflate(&stream, Z_FINISH); |
| 1132 | if ((st != Z_STREAM_END) || stream.total_out != inflated_size) { |
| 1133 | free(out); |
| 1134 | return NULL; |
| 1135 | } |
| 1136 | return out; |
| 1137 | } |
| 1138 | |
| 1139 | static struct fragment *parse_binary_hunk(char **buf_p, |
| 1140 | unsigned long *sz_p, |
| 1141 | int *status_p, |
| 1142 | int *used_p) |
| 1143 | { |
| 1144 | /* Expect a line that begins with binary patch method ("literal" |
| 1145 | * or "delta"), followed by the length of data before deflating. |
| 1146 | * a sequence of 'length-byte' followed by base-85 encoded data |
| 1147 | * should follow, terminated by a newline. |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1148 | * |
| 1149 | * Each 5-byte sequence of base-85 encodes up to 4 bytes, |
| 1150 | * and we would limit the patch line to 66 characters, |
| 1151 | * so one line can fit up to 13 groups that would decode |
| 1152 | * to 52 bytes max. The length byte 'A'-'Z' corresponds |
| 1153 | * to 1-26 bytes, and 'a'-'z' corresponds to 27-52 bytes. |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1154 | */ |
| 1155 | int llen, used; |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1156 | unsigned long size = *sz_p; |
| 1157 | char *buffer = *buf_p; |
| 1158 | int patch_method; |
| 1159 | unsigned long origlen; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1160 | char *data = NULL; |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1161 | int hunk_size = 0; |
| 1162 | struct fragment *frag; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1163 | |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1164 | llen = linelen(buffer, size); |
| 1165 | used = llen; |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1166 | |
| 1167 | *status_p = 0; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1168 | |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 1169 | if (!prefixcmp(buffer, "delta ")) { |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1170 | patch_method = BINARY_DELTA_DEFLATED; |
| 1171 | origlen = strtoul(buffer + 6, NULL, 10); |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1172 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 1173 | else if (!prefixcmp(buffer, "literal ")) { |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1174 | patch_method = BINARY_LITERAL_DEFLATED; |
| 1175 | origlen = strtoul(buffer + 8, NULL, 10); |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1176 | } |
| 1177 | else |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1178 | return NULL; |
| 1179 | |
| 1180 | linenr++; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1181 | buffer += llen; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1182 | while (1) { |
| 1183 | int byte_length, max_byte_length, newsize; |
| 1184 | llen = linelen(buffer, size); |
| 1185 | used += llen; |
| 1186 | linenr++; |
Junio C Hamano | 03eb8f8 | 2006-08-16 16:07:20 -0700 | [diff] [blame] | 1187 | if (llen == 1) { |
| 1188 | /* consume the blank line */ |
| 1189 | buffer++; |
| 1190 | size--; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1191 | break; |
Junio C Hamano | 03eb8f8 | 2006-08-16 16:07:20 -0700 | [diff] [blame] | 1192 | } |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1193 | /* Minimum line is "A00000\n" which is 7-byte long, |
| 1194 | * and the line length must be multiple of 5 plus 2. |
| 1195 | */ |
| 1196 | if ((llen < 7) || (llen-2) % 5) |
| 1197 | goto corrupt; |
| 1198 | max_byte_length = (llen - 2) / 5 * 4; |
| 1199 | byte_length = *buffer; |
| 1200 | if ('A' <= byte_length && byte_length <= 'Z') |
| 1201 | byte_length = byte_length - 'A' + 1; |
| 1202 | else if ('a' <= byte_length && byte_length <= 'z') |
| 1203 | byte_length = byte_length - 'a' + 27; |
| 1204 | else |
| 1205 | goto corrupt; |
| 1206 | /* if the input length was not multiple of 4, we would |
| 1207 | * have filler at the end but the filler should never |
| 1208 | * exceed 3 bytes |
| 1209 | */ |
| 1210 | if (max_byte_length < byte_length || |
| 1211 | byte_length <= max_byte_length - 4) |
| 1212 | goto corrupt; |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1213 | newsize = hunk_size + byte_length; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1214 | data = xrealloc(data, newsize); |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1215 | if (decode_85(data + hunk_size, buffer + 1, byte_length)) |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1216 | goto corrupt; |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1217 | hunk_size = newsize; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1218 | buffer += llen; |
| 1219 | size -= llen; |
| 1220 | } |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1221 | |
| 1222 | frag = xcalloc(1, sizeof(*frag)); |
| 1223 | frag->patch = inflate_it(data, hunk_size, origlen); |
| 1224 | if (!frag->patch) |
| 1225 | goto corrupt; |
| 1226 | free(data); |
| 1227 | frag->size = origlen; |
| 1228 | *buf_p = buffer; |
| 1229 | *sz_p = size; |
| 1230 | *used_p = used; |
| 1231 | frag->binary_patch_method = patch_method; |
| 1232 | return frag; |
| 1233 | |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1234 | corrupt: |
Junio C Hamano | 4cac42b | 2006-08-27 21:19:39 -0700 | [diff] [blame] | 1235 | free(data); |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1236 | *status_p = -1; |
| 1237 | error("corrupt binary patch at line %d: %.*s", |
| 1238 | linenr-1, llen-1, buffer); |
| 1239 | return NULL; |
| 1240 | } |
| 1241 | |
| 1242 | static int parse_binary(char *buffer, unsigned long size, struct patch *patch) |
| 1243 | { |
| 1244 | /* We have read "GIT binary patch\n"; what follows is a line |
| 1245 | * that says the patch method (currently, either "literal" or |
| 1246 | * "delta") and the length of data before deflating; a |
| 1247 | * sequence of 'length-byte' followed by base-85 encoded data |
| 1248 | * follows. |
| 1249 | * |
| 1250 | * When a binary patch is reversible, there is another binary |
| 1251 | * hunk in the same format, starting with patch method (either |
| 1252 | * "literal" or "delta") with the length of data, and a sequence |
| 1253 | * of length-byte + base-85 encoded data, terminated with another |
| 1254 | * empty line. This data, when applied to the postimage, produces |
| 1255 | * the preimage. |
| 1256 | */ |
| 1257 | struct fragment *forward; |
| 1258 | struct fragment *reverse; |
| 1259 | int status; |
| 1260 | int used, used_1; |
| 1261 | |
| 1262 | forward = parse_binary_hunk(&buffer, &size, &status, &used); |
| 1263 | if (!forward && !status) |
| 1264 | /* there has to be one hunk (forward hunk) */ |
| 1265 | return error("unrecognized binary patch at line %d", linenr-1); |
| 1266 | if (status) |
| 1267 | /* otherwise we already gave an error message */ |
| 1268 | return status; |
| 1269 | |
| 1270 | reverse = parse_binary_hunk(&buffer, &size, &status, &used_1); |
| 1271 | if (reverse) |
| 1272 | used += used_1; |
| 1273 | else if (status) { |
| 1274 | /* not having reverse hunk is not an error, but having |
| 1275 | * a corrupt reverse hunk is. |
| 1276 | */ |
| 1277 | free((void*) forward->patch); |
| 1278 | free(forward); |
| 1279 | return status; |
| 1280 | } |
| 1281 | forward->next = reverse; |
| 1282 | patch->fragments = forward; |
| 1283 | patch->is_binary = 1; |
| 1284 | return used; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1285 | } |
| 1286 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 1287 | static int parse_chunk(char *buffer, unsigned long size, struct patch *patch) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1288 | { |
| 1289 | int hdrsize, patchsize; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 1290 | int offset = find_header(buffer, size, &hdrsize, patch); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1291 | |
| 1292 | if (offset < 0) |
| 1293 | return offset; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1294 | |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 1295 | patchsize = parse_single_patch(buffer + offset + hdrsize, size - offset - hdrsize, patch); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1296 | |
Junio C Hamano | 92927ed | 2005-11-16 14:12:56 -0800 | [diff] [blame] | 1297 | if (!patchsize) { |
Junio C Hamano | 3200d1a | 2005-11-17 20:46:29 -0800 | [diff] [blame] | 1298 | static const char *binhdr[] = { |
| 1299 | "Binary files ", |
| 1300 | "Files ", |
| 1301 | NULL, |
| 1302 | }; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1303 | static const char git_binary[] = "GIT binary patch\n"; |
Junio C Hamano | 3200d1a | 2005-11-17 20:46:29 -0800 | [diff] [blame] | 1304 | int i; |
| 1305 | int hd = hdrsize + offset; |
| 1306 | unsigned long llen = linelen(buffer + hd, size - hd); |
Junio C Hamano | ff36de0 | 2005-11-09 14:59:23 -0800 | [diff] [blame] | 1307 | |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1308 | if (llen == sizeof(git_binary) - 1 && |
| 1309 | !memcmp(git_binary, buffer + hd, llen)) { |
| 1310 | int used; |
| 1311 | linenr++; |
| 1312 | used = parse_binary(buffer + hd + llen, |
| 1313 | size - hd - llen, patch); |
| 1314 | if (used) |
| 1315 | patchsize = used + llen; |
| 1316 | else |
| 1317 | patchsize = 0; |
| 1318 | } |
| 1319 | else if (!memcmp(" differ\n", buffer + hd + llen - 8, 8)) { |
Junio C Hamano | 3200d1a | 2005-11-17 20:46:29 -0800 | [diff] [blame] | 1320 | for (i = 0; binhdr[i]; i++) { |
| 1321 | int len = strlen(binhdr[i]); |
| 1322 | if (len < size - hd && |
| 1323 | !memcmp(binhdr[i], buffer + hd, len)) { |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1324 | linenr++; |
Junio C Hamano | 3200d1a | 2005-11-17 20:46:29 -0800 | [diff] [blame] | 1325 | patch->is_binary = 1; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1326 | patchsize = llen; |
Junio C Hamano | 3200d1a | 2005-11-17 20:46:29 -0800 | [diff] [blame] | 1327 | break; |
| 1328 | } |
| 1329 | } |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1330 | } |
Junio C Hamano | ff36de0 | 2005-11-09 14:59:23 -0800 | [diff] [blame] | 1331 | |
Junio C Hamano | 2b6eef9 | 2006-09-06 22:45:21 -0700 | [diff] [blame] | 1332 | /* Empty patch cannot be applied if it is a text patch |
| 1333 | * without metadata change. A binary patch appears |
| 1334 | * empty to us here. |
Junio C Hamano | 92927ed | 2005-11-16 14:12:56 -0800 | [diff] [blame] | 1335 | */ |
| 1336 | if ((apply || check) && |
Junio C Hamano | 2b6eef9 | 2006-09-06 22:45:21 -0700 | [diff] [blame] | 1337 | (!patch->is_binary && !metadata_changes(patch))) |
Junio C Hamano | ff36de0 | 2005-11-09 14:59:23 -0800 | [diff] [blame] | 1338 | die("patch with only garbage at line %d", linenr); |
| 1339 | } |
Linus Torvalds | 1fea629 | 2005-09-30 23:25:23 -0700 | [diff] [blame] | 1340 | |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 1341 | return offset + hdrsize + patchsize; |
| 1342 | } |
| 1343 | |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 1344 | #define swap(a,b) myswap((a),(b),sizeof(a)) |
| 1345 | |
| 1346 | #define myswap(a, b, size) do { \ |
| 1347 | unsigned char mytmp[size]; \ |
| 1348 | memcpy(mytmp, &a, size); \ |
| 1349 | memcpy(&a, &b, size); \ |
| 1350 | memcpy(&b, mytmp, size); \ |
| 1351 | } while (0) |
| 1352 | |
| 1353 | static void reverse_patches(struct patch *p) |
| 1354 | { |
| 1355 | for (; p; p = p->next) { |
| 1356 | struct fragment *frag = p->fragments; |
| 1357 | |
| 1358 | swap(p->new_name, p->old_name); |
| 1359 | swap(p->new_mode, p->old_mode); |
| 1360 | swap(p->is_new, p->is_delete); |
| 1361 | swap(p->lines_added, p->lines_deleted); |
| 1362 | swap(p->old_sha1_prefix, p->new_sha1_prefix); |
| 1363 | |
| 1364 | for (; frag; frag = frag->next) { |
| 1365 | swap(frag->newpos, frag->oldpos); |
| 1366 | swap(frag->newlines, frag->oldlines); |
| 1367 | } |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 1368 | } |
| 1369 | } |
| 1370 | |
Linus Torvalds | 6da4016 | 2005-07-03 10:10:45 -0700 | [diff] [blame] | 1371 | static const char pluses[] = "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"; |
| 1372 | static const char minuses[]= "----------------------------------------------------------------------"; |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 1373 | |
| 1374 | static void show_stats(struct patch *patch) |
| 1375 | { |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 1376 | struct strbuf qname; |
| 1377 | char *cp = patch->new_name ? patch->new_name : patch->old_name; |
| 1378 | int max, add, del; |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 1379 | |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 1380 | strbuf_init(&qname, 0); |
| 1381 | quote_c_style(cp, &qname, NULL, 0); |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 1382 | |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 1383 | /* |
| 1384 | * "scale" the filename |
| 1385 | */ |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 1386 | max = max_len; |
| 1387 | if (max > 50) |
| 1388 | max = 50; |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 1389 | |
| 1390 | if (qname.len > max) { |
| 1391 | cp = strchr(qname.buf + qname.len + 3 - max, '/'); |
| 1392 | if (!cp) |
| 1393 | cp = qname.buf + qname.len + 3 - max; |
| 1394 | strbuf_splice(&qname, 0, cp - qname.buf, "...", 3); |
Linus Torvalds | 6291709 | 2005-07-28 20:37:23 -0700 | [diff] [blame] | 1395 | } |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 1396 | |
| 1397 | if (patch->is_binary) { |
| 1398 | printf(" %-*s | Bin\n", max, qname.buf); |
| 1399 | strbuf_release(&qname); |
| 1400 | return; |
| 1401 | } |
| 1402 | |
| 1403 | printf(" %-*s |", max, qname.buf); |
| 1404 | strbuf_release(&qname); |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 1405 | |
| 1406 | /* |
| 1407 | * scale the add/delete |
| 1408 | */ |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 1409 | max = max + max_change > 70 ? 70 - max : max_change; |
Linus Torvalds | 95bedc9 | 2005-05-31 20:50:49 -0700 | [diff] [blame] | 1410 | add = patch->lines_added; |
| 1411 | del = patch->lines_deleted; |
Linus Torvalds | 95bedc9 | 2005-05-31 20:50:49 -0700 | [diff] [blame] | 1412 | |
Sven Verdoolaege | 69f956e | 2005-06-21 17:14:30 +0200 | [diff] [blame] | 1413 | if (max_change > 0) { |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 1414 | int total = ((add + del) * max + max_change / 2) / max_change; |
Sven Verdoolaege | 69f956e | 2005-06-21 17:14:30 +0200 | [diff] [blame] | 1415 | add = (add * max + max_change / 2) / max_change; |
| 1416 | del = total - add; |
| 1417 | } |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 1418 | printf("%5d %.*s%.*s\n", patch->lines_added + patch->lines_deleted, |
| 1419 | add, pluses, del, minuses); |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 1420 | } |
| 1421 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1422 | static int read_old_data(struct stat *st, const char *path, struct strbuf *buf) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1423 | { |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1424 | switch (st->st_mode & S_IFMT) { |
| 1425 | case S_IFLNK: |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1426 | strbuf_grow(buf, st->st_size); |
| 1427 | if (readlink(path, buf->buf, st->st_size) != st->st_size) |
| 1428 | return -1; |
| 1429 | strbuf_setlen(buf, st->st_size); |
| 1430 | return 0; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1431 | case S_IFREG: |
Pierre Habouzit | 387e7e1 | 2007-09-27 15:25:55 +0200 | [diff] [blame] | 1432 | if (strbuf_read_file(buf, path, st->st_size) != st->st_size) |
| 1433 | return error("unable to open or read %s", path); |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1434 | convert_to_git(path, buf->buf, buf->len, buf); |
| 1435 | return 0; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1436 | default: |
| 1437 | return -1; |
| 1438 | } |
| 1439 | } |
| 1440 | |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1441 | static int find_offset(const char *buf, unsigned long size, const char *fragment, unsigned long fragsize, int line, int *lines) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1442 | { |
Linus Torvalds | 6e7c92a | 2005-06-05 12:16:32 -0700 | [diff] [blame] | 1443 | int i; |
| 1444 | unsigned long start, backwards, forwards; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1445 | |
| 1446 | if (fragsize > size) |
| 1447 | return -1; |
| 1448 | |
| 1449 | start = 0; |
| 1450 | if (line > 1) { |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1451 | unsigned long offset = 0; |
Linus Torvalds | 6e7c92a | 2005-06-05 12:16:32 -0700 | [diff] [blame] | 1452 | i = line-1; |
| 1453 | while (offset + fragsize <= size) { |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1454 | if (buf[offset++] == '\n') { |
| 1455 | start = offset; |
Linus Torvalds | 6e7c92a | 2005-06-05 12:16:32 -0700 | [diff] [blame] | 1456 | if (!--i) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1457 | break; |
| 1458 | } |
| 1459 | } |
| 1460 | } |
| 1461 | |
| 1462 | /* Exact line number? */ |
Junio C Hamano | 6b763c4 | 2007-09-05 21:58:40 -0700 | [diff] [blame] | 1463 | if ((start + fragsize <= size) && |
| 1464 | !memcmp(buf + start, fragment, fragsize)) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1465 | return start; |
| 1466 | |
| 1467 | /* |
Linus Torvalds | 6e7c92a | 2005-06-05 12:16:32 -0700 | [diff] [blame] | 1468 | * There's probably some smart way to do this, but I'll leave |
| 1469 | * that to the smart and beautiful people. I'm simple and stupid. |
| 1470 | */ |
| 1471 | backwards = start; |
| 1472 | forwards = start; |
| 1473 | for (i = 0; ; i++) { |
| 1474 | unsigned long try; |
| 1475 | int n; |
| 1476 | |
| 1477 | /* "backward" */ |
| 1478 | if (i & 1) { |
| 1479 | if (!backwards) { |
| 1480 | if (forwards + fragsize > size) |
| 1481 | break; |
| 1482 | continue; |
| 1483 | } |
| 1484 | do { |
| 1485 | --backwards; |
| 1486 | } while (backwards && buf[backwards-1] != '\n'); |
| 1487 | try = backwards; |
| 1488 | } else { |
| 1489 | while (forwards + fragsize <= size) { |
| 1490 | if (buf[forwards++] == '\n') |
| 1491 | break; |
| 1492 | } |
| 1493 | try = forwards; |
| 1494 | } |
| 1495 | |
| 1496 | if (try + fragsize > size) |
| 1497 | continue; |
| 1498 | if (memcmp(buf + try, fragment, fragsize)) |
| 1499 | continue; |
| 1500 | n = (i >> 1)+1; |
| 1501 | if (i & 1) |
| 1502 | n = -n; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1503 | *lines = n; |
Linus Torvalds | 6e7c92a | 2005-06-05 12:16:32 -0700 | [diff] [blame] | 1504 | return try; |
| 1505 | } |
| 1506 | |
| 1507 | /* |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1508 | * We should start searching forward and backward. |
| 1509 | */ |
| 1510 | return -1; |
| 1511 | } |
| 1512 | |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1513 | static void remove_first_line(const char **rbuf, int *rsize) |
| 1514 | { |
| 1515 | const char *buf = *rbuf; |
| 1516 | int size = *rsize; |
| 1517 | unsigned long offset; |
| 1518 | offset = 0; |
| 1519 | while (offset <= size) { |
| 1520 | if (buf[offset++] == '\n') |
| 1521 | break; |
| 1522 | } |
| 1523 | *rsize = size - offset; |
| 1524 | *rbuf = buf + offset; |
| 1525 | } |
| 1526 | |
| 1527 | static void remove_last_line(const char **rbuf, int *rsize) |
| 1528 | { |
| 1529 | const char *buf = *rbuf; |
| 1530 | int size = *rsize; |
| 1531 | unsigned long offset; |
| 1532 | offset = size - 1; |
| 1533 | while (offset > 0) { |
| 1534 | if (buf[--offset] == '\n') |
| 1535 | break; |
| 1536 | } |
| 1537 | *rsize = offset + 1; |
| 1538 | } |
| 1539 | |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 1540 | static int apply_line(char *output, const char *patch, int plen) |
| 1541 | { |
| 1542 | /* plen is number of bytes to be copied from patch, |
| 1543 | * starting at patch+1 (patch[0] is '+'). Typically |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1544 | * patch[plen] is '\n', unless this is the incomplete |
| 1545 | * last line. |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 1546 | */ |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1547 | int i; |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 1548 | int add_nl_to_tail = 0; |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1549 | int fixed = 0; |
| 1550 | int last_tab_in_indent = -1; |
| 1551 | int last_space_in_indent = -1; |
| 1552 | int need_fix_leading_space = 0; |
| 1553 | char *buf; |
| 1554 | |
Junio C Hamano | 63e50d4 | 2007-02-27 01:31:42 -0800 | [diff] [blame] | 1555 | if ((new_whitespace != strip_whitespace) || !whitespace_error || |
| 1556 | *patch != '+') { |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1557 | memcpy(output, patch + 1, plen); |
| 1558 | return plen; |
| 1559 | } |
| 1560 | |
| 1561 | if (1 < plen && isspace(patch[plen-1])) { |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 1562 | if (patch[plen] == '\n') |
| 1563 | add_nl_to_tail = 1; |
| 1564 | plen--; |
| 1565 | while (0 < plen && isspace(patch[plen])) |
| 1566 | plen--; |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1567 | fixed = 1; |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 1568 | } |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1569 | |
| 1570 | for (i = 1; i < plen; i++) { |
| 1571 | char ch = patch[i]; |
| 1572 | if (ch == '\t') { |
| 1573 | last_tab_in_indent = i; |
| 1574 | if (0 <= last_space_in_indent) |
| 1575 | need_fix_leading_space = 1; |
| 1576 | } |
| 1577 | else if (ch == ' ') |
| 1578 | last_space_in_indent = i; |
| 1579 | else |
| 1580 | break; |
| 1581 | } |
| 1582 | |
| 1583 | buf = output; |
| 1584 | if (need_fix_leading_space) { |
J. Bruce Fields | d7416ec | 2007-09-16 18:49:00 -0400 | [diff] [blame] | 1585 | int consecutive_spaces = 0; |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1586 | /* between patch[1..last_tab_in_indent] strip the |
| 1587 | * funny spaces, updating them to tab as needed. |
| 1588 | */ |
| 1589 | for (i = 1; i < last_tab_in_indent; i++, plen--) { |
| 1590 | char ch = patch[i]; |
J. Bruce Fields | d7416ec | 2007-09-16 18:49:00 -0400 | [diff] [blame] | 1591 | if (ch != ' ') { |
| 1592 | consecutive_spaces = 0; |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1593 | *output++ = ch; |
J. Bruce Fields | d7416ec | 2007-09-16 18:49:00 -0400 | [diff] [blame] | 1594 | } else { |
| 1595 | consecutive_spaces++; |
| 1596 | if (consecutive_spaces == 8) { |
| 1597 | *output++ = '\t'; |
| 1598 | consecutive_spaces = 0; |
| 1599 | } |
| 1600 | } |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1601 | } |
| 1602 | fixed = 1; |
| 1603 | i = last_tab_in_indent; |
| 1604 | } |
| 1605 | else |
| 1606 | i = 1; |
| 1607 | |
| 1608 | memcpy(output, patch + i, plen); |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 1609 | if (add_nl_to_tail) |
| 1610 | output[plen++] = '\n'; |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1611 | if (fixed) |
Junio C Hamano | c94bf41 | 2007-06-02 19:55:54 -0700 | [diff] [blame] | 1612 | applied_after_fixing_ws++; |
Junio C Hamano | d0c2503 | 2006-09-23 00:37:19 -0700 | [diff] [blame] | 1613 | return output + plen - buf; |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 1614 | } |
| 1615 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1616 | static int apply_one_fragment(struct strbuf *buf, struct fragment *frag, int inaccurate_eof) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1617 | { |
Junio C Hamano | 65aadb9 | 2006-05-24 13:19:50 -0700 | [diff] [blame] | 1618 | int match_beginning, match_end; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1619 | const char *patch = frag->patch; |
| 1620 | int offset, size = frag->size; |
| 1621 | char *old = xmalloc(size); |
| 1622 | char *new = xmalloc(size); |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1623 | const char *oldlines, *newlines; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1624 | int oldsize = 0, newsize = 0; |
Junio C Hamano | 077e1af | 2007-05-20 23:51:06 -0700 | [diff] [blame] | 1625 | int new_blank_lines_at_end = 0; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1626 | unsigned long leading, trailing; |
| 1627 | int pos, lines; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1628 | |
| 1629 | while (size > 0) { |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 1630 | char first; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1631 | int len = linelen(patch, size); |
| 1632 | int plen; |
Junio C Hamano | 077e1af | 2007-05-20 23:51:06 -0700 | [diff] [blame] | 1633 | int added_blank_line = 0; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1634 | |
| 1635 | if (!len) |
| 1636 | break; |
| 1637 | |
| 1638 | /* |
| 1639 | * "plen" is how much of the line we should use for |
| 1640 | * the actual patch data. Normally we just remove the |
| 1641 | * first character on the line, but if the line is |
| 1642 | * followed by "\ No newline", then we also remove the |
| 1643 | * last one (which is the newline, of course). |
| 1644 | */ |
| 1645 | plen = len-1; |
Junio C Hamano | 8b64647 | 2005-07-22 09:56:39 -0700 | [diff] [blame] | 1646 | if (len < size && patch[len] == '\\') |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1647 | plen--; |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 1648 | first = *patch; |
Junio C Hamano | f686d03 | 2006-08-14 23:26:51 -0700 | [diff] [blame] | 1649 | if (apply_in_reverse) { |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 1650 | if (first == '-') |
| 1651 | first = '+'; |
| 1652 | else if (first == '+') |
| 1653 | first = '-'; |
| 1654 | } |
Marco Costalba | efe7f35 | 2007-05-20 14:45:59 +0200 | [diff] [blame] | 1655 | |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 1656 | switch (first) { |
Linus Torvalds | b507b46 | 2006-10-19 19:26:08 -0700 | [diff] [blame] | 1657 | case '\n': |
| 1658 | /* Newer GNU diff, empty context line */ |
| 1659 | if (plen < 0) |
| 1660 | /* ... followed by '\No newline'; nothing */ |
| 1661 | break; |
| 1662 | old[oldsize++] = '\n'; |
| 1663 | new[newsize++] = '\n'; |
| 1664 | break; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1665 | case ' ': |
| 1666 | case '-': |
| 1667 | memcpy(old + oldsize, patch + 1, plen); |
| 1668 | oldsize += plen; |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 1669 | if (first == '-') |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1670 | break; |
| 1671 | /* Fall-through for ' ' */ |
| 1672 | case '+': |
Junio C Hamano | 077e1af | 2007-05-20 23:51:06 -0700 | [diff] [blame] | 1673 | if (first != '+' || !no_add) { |
| 1674 | int added = apply_line(new + newsize, patch, |
| 1675 | plen); |
| 1676 | newsize += added; |
| 1677 | if (first == '+' && |
| 1678 | added == 1 && new[newsize-1] == '\n') |
| 1679 | added_blank_line = 1; |
| 1680 | } |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1681 | break; |
| 1682 | case '@': case '\\': |
| 1683 | /* Ignore it, we already handled it */ |
| 1684 | break; |
| 1685 | default: |
Johannes Schindelin | aeabfa0 | 2007-02-22 20:11:21 +0100 | [diff] [blame] | 1686 | if (apply_verbosely) |
| 1687 | error("invalid start of line: '%c'", first); |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1688 | return -1; |
| 1689 | } |
Junio C Hamano | 077e1af | 2007-05-20 23:51:06 -0700 | [diff] [blame] | 1690 | if (added_blank_line) |
| 1691 | new_blank_lines_at_end++; |
| 1692 | else |
| 1693 | new_blank_lines_at_end = 0; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1694 | patch += len; |
| 1695 | size -= len; |
| 1696 | } |
| 1697 | |
Johannes Schindelin | 3eaa38d | 2006-06-24 22:10:11 +0200 | [diff] [blame] | 1698 | if (inaccurate_eof && oldsize > 0 && old[oldsize - 1] == '\n' && |
Johannes Schindelin | 5b5d4d9 | 2006-02-17 15:23:16 +0100 | [diff] [blame] | 1699 | newsize > 0 && new[newsize - 1] == '\n') { |
| 1700 | oldsize--; |
| 1701 | newsize--; |
| 1702 | } |
Linus Torvalds | 6e7c92a | 2005-06-05 12:16:32 -0700 | [diff] [blame] | 1703 | |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1704 | oldlines = old; |
| 1705 | newlines = new; |
| 1706 | leading = frag->leading; |
| 1707 | trailing = frag->trailing; |
Linus Torvalds | 1bf1a85 | 2006-05-23 19:08:01 -0700 | [diff] [blame] | 1708 | |
| 1709 | /* |
Junio C Hamano | 65aadb9 | 2006-05-24 13:19:50 -0700 | [diff] [blame] | 1710 | * If we don't have any leading/trailing data in the patch, |
| 1711 | * we want it to match at the beginning/end of the file. |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1712 | * |
| 1713 | * But that would break if the patch is generated with |
| 1714 | * --unified=0; sane people wouldn't do that to cause us |
| 1715 | * trouble, but we try to please not so sane ones as well. |
Linus Torvalds | 1bf1a85 | 2006-05-23 19:08:01 -0700 | [diff] [blame] | 1716 | */ |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1717 | if (unidiff_zero) { |
| 1718 | match_beginning = (!leading && !frag->oldpos); |
| 1719 | match_end = 0; |
| 1720 | } |
| 1721 | else { |
| 1722 | match_beginning = !leading && (frag->oldpos == 1); |
| 1723 | match_end = !trailing; |
| 1724 | } |
Linus Torvalds | 1bf1a85 | 2006-05-23 19:08:01 -0700 | [diff] [blame] | 1725 | |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1726 | lines = 0; |
| 1727 | pos = frag->newpos; |
| 1728 | for (;;) { |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1729 | offset = find_offset(buf->buf, buf->len, |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 1730 | oldlines, oldsize, pos, &lines); |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1731 | if (match_end && offset + oldsize != buf->len) |
Linus Torvalds | 1bf1a85 | 2006-05-23 19:08:01 -0700 | [diff] [blame] | 1732 | offset = -1; |
Junio C Hamano | 65aadb9 | 2006-05-24 13:19:50 -0700 | [diff] [blame] | 1733 | if (match_beginning && offset) |
| 1734 | offset = -1; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1735 | if (offset >= 0) { |
Marco Costalba | efe7f35 | 2007-05-20 14:45:59 +0200 | [diff] [blame] | 1736 | if (new_whitespace == strip_whitespace && |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1737 | (buf->len - oldsize - offset == 0)) /* end of file? */ |
Junio C Hamano | 077e1af | 2007-05-20 23:51:06 -0700 | [diff] [blame] | 1738 | newsize -= new_blank_lines_at_end; |
Marco Costalba | efe7f35 | 2007-05-20 14:45:59 +0200 | [diff] [blame] | 1739 | |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1740 | /* Warn if it was necessary to reduce the number |
| 1741 | * of context lines. |
| 1742 | */ |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 1743 | if ((leading != frag->leading) || |
| 1744 | (trailing != frag->trailing)) |
| 1745 | fprintf(stderr, "Context reduced to (%ld/%ld)" |
| 1746 | " to apply fragment at %d\n", |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1747 | leading, trailing, pos + lines); |
| 1748 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1749 | strbuf_splice(buf, offset, oldsize, newlines, newsize); |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1750 | offset = 0; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1751 | break; |
Linus Torvalds | 6e7c92a | 2005-06-05 12:16:32 -0700 | [diff] [blame] | 1752 | } |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1753 | |
| 1754 | /* Am I at my context limits? */ |
| 1755 | if ((leading <= p_context) && (trailing <= p_context)) |
| 1756 | break; |
Junio C Hamano | 65aadb9 | 2006-05-24 13:19:50 -0700 | [diff] [blame] | 1757 | if (match_beginning || match_end) { |
| 1758 | match_beginning = match_end = 0; |
Linus Torvalds | 1bf1a85 | 2006-05-23 19:08:01 -0700 | [diff] [blame] | 1759 | continue; |
| 1760 | } |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 1761 | /* Reduce the number of context lines |
| 1762 | * Reduce both leading and trailing if they are equal |
| 1763 | * otherwise just reduce the larger context. |
| 1764 | */ |
| 1765 | if (leading >= trailing) { |
| 1766 | remove_first_line(&oldlines, &oldsize); |
| 1767 | remove_first_line(&newlines, &newsize); |
| 1768 | pos--; |
| 1769 | leading--; |
| 1770 | } |
| 1771 | if (trailing > leading) { |
| 1772 | remove_last_line(&oldlines, &oldsize); |
| 1773 | remove_last_line(&newlines, &newsize); |
| 1774 | trailing--; |
| 1775 | } |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1776 | } |
| 1777 | |
Johannes Schindelin | aeabfa0 | 2007-02-22 20:11:21 +0100 | [diff] [blame] | 1778 | if (offset && apply_verbosely) |
| 1779 | error("while searching for:\n%.*s", oldsize, oldlines); |
| 1780 | |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1781 | free(old); |
| 1782 | free(new); |
| 1783 | return offset; |
| 1784 | } |
| 1785 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1786 | static int apply_binary_fragment(struct strbuf *buf, struct patch *patch) |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1787 | { |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1788 | struct fragment *fragment = patch->fragments; |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1789 | unsigned long len; |
| 1790 | void *dst; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1791 | |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1792 | /* Binary patch is irreversible without the optional second hunk */ |
| 1793 | if (apply_in_reverse) { |
| 1794 | if (!fragment->next) |
| 1795 | return error("cannot reverse-apply a binary patch " |
| 1796 | "without the reverse hunk to '%s'", |
| 1797 | patch->new_name |
| 1798 | ? patch->new_name : patch->old_name); |
Junio C Hamano | 03eb8f8 | 2006-08-16 16:07:20 -0700 | [diff] [blame] | 1799 | fragment = fragment->next; |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1800 | } |
Junio C Hamano | 3cd4f5e | 2006-08-15 02:23:06 -0700 | [diff] [blame] | 1801 | switch (fragment->binary_patch_method) { |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1802 | case BINARY_DELTA_DEFLATED: |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1803 | dst = patch_delta(buf->buf, buf->len, fragment->patch, |
| 1804 | fragment->size, &len); |
| 1805 | if (!dst) |
| 1806 | return -1; |
| 1807 | /* XXX patch_delta NUL-terminates */ |
| 1808 | strbuf_attach(buf, dst, len, len + 1); |
| 1809 | return 0; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1810 | case BINARY_LITERAL_DEFLATED: |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1811 | strbuf_reset(buf); |
| 1812 | strbuf_add(buf, fragment->patch, fragment->size); |
| 1813 | return 0; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1814 | } |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1815 | return -1; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1816 | } |
| 1817 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1818 | static int apply_binary(struct strbuf *buf, struct patch *patch) |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1819 | { |
| 1820 | const char *name = patch->old_name ? patch->old_name : patch->new_name; |
| 1821 | unsigned char sha1[20]; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1822 | |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1823 | /* For safety, we require patch index line to contain |
| 1824 | * full 40-byte textual SHA1 for old and new, at least for now. |
| 1825 | */ |
| 1826 | if (strlen(patch->old_sha1_prefix) != 40 || |
| 1827 | strlen(patch->new_sha1_prefix) != 40 || |
| 1828 | get_sha1_hex(patch->old_sha1_prefix, sha1) || |
| 1829 | get_sha1_hex(patch->new_sha1_prefix, sha1)) |
| 1830 | return error("cannot apply binary patch to '%s' " |
| 1831 | "without full index line", name); |
| 1832 | |
| 1833 | if (patch->old_name) { |
| 1834 | /* See if the old one matches what the patch |
| 1835 | * applies to. |
| 1836 | */ |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1837 | hash_sha1_file(buf->buf, buf->len, blob_type, sha1); |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1838 | if (strcmp(sha1_to_hex(sha1), patch->old_sha1_prefix)) |
| 1839 | return error("the patch applies to '%s' (%s), " |
| 1840 | "which does not match the " |
| 1841 | "current contents.", |
| 1842 | name, sha1_to_hex(sha1)); |
| 1843 | } |
| 1844 | else { |
| 1845 | /* Otherwise, the old one must be empty. */ |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1846 | if (buf->len) |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1847 | return error("the patch applies to an empty " |
| 1848 | "'%s' but it is not empty", name); |
| 1849 | } |
| 1850 | |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1851 | get_sha1_hex(patch->new_sha1_prefix, sha1); |
David Rientjes | 0bef57e | 2006-08-15 13:37:19 -0700 | [diff] [blame] | 1852 | if (is_null_sha1(sha1)) { |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1853 | strbuf_release(buf); |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1854 | return 0; /* deletion patch */ |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1855 | } |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1856 | |
| 1857 | if (has_sha1_file(sha1)) { |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1858 | /* We already have the postimage */ |
Nicolas Pitre | 21666f1 | 2007-02-26 14:55:59 -0500 | [diff] [blame] | 1859 | enum object_type type; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1860 | unsigned long size; |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1861 | char *result; |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1862 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1863 | result = read_sha1_file(sha1, &type, &size); |
| 1864 | if (!result) |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1865 | return error("the necessary postimage %s for " |
| 1866 | "'%s' cannot be read", |
| 1867 | patch->new_sha1_prefix, name); |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1868 | /* XXX read_sha1_file NUL-terminates */ |
| 1869 | strbuf_attach(buf, result, size, size + 1); |
| 1870 | } else { |
| 1871 | /* We have verified buf matches the preimage; |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 1872 | * apply the patch data to it, which is stored |
| 1873 | * in the patch->fragments->{patch,size}. |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1874 | */ |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1875 | if (apply_binary_fragment(buf, patch)) |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1876 | return error("binary patch does not apply to '%s'", |
| 1877 | name); |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1878 | |
| 1879 | /* verify that the result matches */ |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1880 | hash_sha1_file(buf->buf, buf->len, blob_type, sha1); |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1881 | if (strcmp(sha1_to_hex(sha1), patch->new_sha1_prefix)) |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1882 | return error("binary patch to '%s' creates incorrect result (expecting %s, got %s)", |
| 1883 | name, patch->new_sha1_prefix, sha1_to_hex(sha1)); |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1884 | } |
| 1885 | |
| 1886 | return 0; |
| 1887 | } |
| 1888 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1889 | static int apply_fragments(struct strbuf *buf, struct patch *patch) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1890 | { |
| 1891 | struct fragment *frag = patch->fragments; |
Junio C Hamano | 011f427 | 2005-11-14 17:37:05 -0800 | [diff] [blame] | 1892 | const char *name = patch->old_name ? patch->old_name : patch->new_name; |
| 1893 | |
Junio C Hamano | 051308f | 2006-05-04 16:51:44 -0700 | [diff] [blame] | 1894 | if (patch->is_binary) |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1895 | return apply_binary(buf, patch); |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1896 | |
| 1897 | while (frag) { |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1898 | if (apply_one_fragment(buf, frag, patch->inaccurate_eof)) { |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 1899 | error("patch failed: %s:%ld", name, frag->oldpos); |
| 1900 | if (!apply_with_reject) |
| 1901 | return -1; |
| 1902 | frag->rejected = 1; |
| 1903 | } |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1904 | frag = frag->next; |
| 1905 | } |
Linus Torvalds | 3099665 | 2005-06-05 12:43:56 -0700 | [diff] [blame] | 1906 | return 0; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1907 | } |
| 1908 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1909 | static int read_file_or_gitlink(struct cache_entry *ce, struct strbuf *buf) |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 1910 | { |
| 1911 | if (!ce) |
| 1912 | return 0; |
| 1913 | |
| 1914 | if (S_ISGITLINK(ntohl(ce->ce_mode))) { |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1915 | strbuf_grow(buf, 100); |
| 1916 | strbuf_addf(buf, "Subproject commit %s\n", sha1_to_hex(ce->sha1)); |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 1917 | } else { |
| 1918 | enum object_type type; |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1919 | unsigned long sz; |
| 1920 | char *result; |
| 1921 | |
| 1922 | result = read_sha1_file(ce->sha1, &type, &sz); |
| 1923 | if (!result) |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 1924 | return -1; |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1925 | /* XXX read_sha1_file NUL-terminates */ |
| 1926 | strbuf_attach(buf, result, sz, sz + 1); |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 1927 | } |
| 1928 | return 0; |
| 1929 | } |
| 1930 | |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 1931 | static int apply_data(struct patch *patch, struct stat *st, struct cache_entry *ce) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1932 | { |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1933 | struct strbuf buf; |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1934 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1935 | strbuf_init(&buf, 0); |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 1936 | if (cached) { |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1937 | if (read_file_or_gitlink(ce, &buf)) |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 1938 | return error("read of %s failed", patch->old_name); |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 1939 | } else if (patch->old_name) { |
| 1940 | if (S_ISGITLINK(patch->old_mode)) { |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1941 | if (ce) { |
| 1942 | read_file_or_gitlink(ce, &buf); |
| 1943 | } else { |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 1944 | /* |
| 1945 | * There is no way to apply subproject |
| 1946 | * patch without looking at the index. |
| 1947 | */ |
| 1948 | patch->fragments = NULL; |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 1949 | } |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1950 | } else { |
| 1951 | if (read_old_data(st, patch->old_name, &buf)) |
| 1952 | return error("read of %s failed", patch->old_name); |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 1953 | } |
| 1954 | } |
Linus Torvalds | 6e7c92a | 2005-06-05 12:16:32 -0700 | [diff] [blame] | 1955 | |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 1956 | if (apply_fragments(&buf, patch) < 0) |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 1957 | return -1; /* note with --reject this succeeds. */ |
Pierre Habouzit | b315c5c | 2007-09-27 12:58:23 +0200 | [diff] [blame] | 1958 | patch->result = strbuf_detach(&buf, &patch->resultsize); |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 1959 | |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 1960 | if (0 < patch->is_delete && patch->resultsize) |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 1961 | return error("removal patch leaves file contents"); |
| 1962 | |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 1963 | return 0; |
| 1964 | } |
| 1965 | |
Junio C Hamano | 64cab59 | 2007-05-11 22:26:08 -0700 | [diff] [blame] | 1966 | static int check_to_create_blob(const char *new_name, int ok_if_exists) |
| 1967 | { |
| 1968 | struct stat nst; |
| 1969 | if (!lstat(new_name, &nst)) { |
| 1970 | if (S_ISDIR(nst.st_mode) || ok_if_exists) |
| 1971 | return 0; |
| 1972 | /* |
| 1973 | * A leading component of new_name might be a symlink |
| 1974 | * that is going to be removed with this patch, but |
| 1975 | * still pointing at somewhere that has the path. |
| 1976 | * In such a case, path "new_name" does not exist as |
| 1977 | * far as git is concerned. |
| 1978 | */ |
| 1979 | if (has_symlink_leading_path(new_name, NULL)) |
| 1980 | return 0; |
| 1981 | |
| 1982 | return error("%s: already exists in working directory", new_name); |
| 1983 | } |
| 1984 | else if ((errno != ENOENT) && (errno != ENOTDIR)) |
| 1985 | return error("%s: %s", new_name, strerror(errno)); |
| 1986 | return 0; |
| 1987 | } |
| 1988 | |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 1989 | static int verify_index_match(struct cache_entry *ce, struct stat *st) |
| 1990 | { |
| 1991 | if (S_ISGITLINK(ntohl(ce->ce_mode))) { |
| 1992 | if (!S_ISDIR(st->st_mode)) |
| 1993 | return -1; |
| 1994 | return 0; |
| 1995 | } |
| 1996 | return ce_match_stat(ce, st, 1); |
| 1997 | } |
| 1998 | |
Junio C Hamano | 7f95aef | 2006-07-17 00:10:47 -0700 | [diff] [blame] | 1999 | static int check_patch(struct patch *patch, struct patch *prev_patch) |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 2000 | { |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2001 | struct stat st; |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 2002 | const char *old_name = patch->old_name; |
| 2003 | const char *new_name = patch->new_name; |
Junio C Hamano | 011f427 | 2005-11-14 17:37:05 -0800 | [diff] [blame] | 2004 | const char *name = old_name ? old_name : new_name; |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2005 | struct cache_entry *ce = NULL; |
Junio C Hamano | 7f95aef | 2006-07-17 00:10:47 -0700 | [diff] [blame] | 2006 | int ok_if_exists; |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 2007 | |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2008 | patch->rejected = 1; /* we will drop this after we succeed */ |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 2009 | |
| 2010 | /* |
| 2011 | * Make sure that we do not have local modifications from the |
| 2012 | * index when we are looking at the index. Also make sure |
| 2013 | * we have the preimage file to be patched in the work tree, |
| 2014 | * unless --cached, which tells git to apply only in the index. |
| 2015 | */ |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 2016 | if (old_name) { |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2017 | int stat_ret = 0; |
| 2018 | unsigned st_mode = 0; |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2019 | |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2020 | if (!cached) |
| 2021 | stat_ret = lstat(old_name, &st); |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 2022 | if (check_index) { |
| 2023 | int pos = cache_name_pos(old_name, strlen(old_name)); |
| 2024 | if (pos < 0) |
Junio C Hamano | 56d33b1 | 2005-10-03 13:16:39 -0700 | [diff] [blame] | 2025 | return error("%s: does not exist in index", |
| 2026 | old_name); |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2027 | ce = active_cache[pos]; |
Junio C Hamano | 56d33b1 | 2005-10-03 13:16:39 -0700 | [diff] [blame] | 2028 | if (stat_ret < 0) { |
| 2029 | struct checkout costate; |
| 2030 | if (errno != ENOENT) |
| 2031 | return error("%s: %s", old_name, |
| 2032 | strerror(errno)); |
| 2033 | /* checkout */ |
| 2034 | costate.base_dir = ""; |
| 2035 | costate.base_dir_len = 0; |
| 2036 | costate.force = 0; |
| 2037 | costate.quiet = 0; |
| 2038 | costate.not_new = 0; |
| 2039 | costate.refresh_cache = 1; |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2040 | if (checkout_entry(ce, |
Shawn Pearce | de84f99 | 2006-03-05 03:24:15 -0500 | [diff] [blame] | 2041 | &costate, |
| 2042 | NULL) || |
Junio C Hamano | 56d33b1 | 2005-10-03 13:16:39 -0700 | [diff] [blame] | 2043 | lstat(old_name, &st)) |
| 2044 | return -1; |
| 2045 | } |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 2046 | if (!cached && verify_index_match(ce, &st)) |
Junio C Hamano | 56d33b1 | 2005-10-03 13:16:39 -0700 | [diff] [blame] | 2047 | return error("%s: does not match index", |
| 2048 | old_name); |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2049 | if (cached) |
| 2050 | st_mode = ntohl(ce->ce_mode); |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 2051 | } else if (stat_ret < 0) |
Junio C Hamano | 56d33b1 | 2005-10-03 13:16:39 -0700 | [diff] [blame] | 2052 | return error("%s: %s", old_name, strerror(errno)); |
| 2053 | |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2054 | if (!cached) |
Junio C Hamano | 185c975 | 2007-02-16 22:43:48 -0800 | [diff] [blame] | 2055 | st_mode = ntohl(ce_mode_from_stat(ce, st.st_mode)); |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2056 | |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 2057 | if (patch->is_new < 0) |
| 2058 | patch->is_new = 0; |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2059 | if (!patch->old_mode) |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2060 | patch->old_mode = st_mode; |
| 2061 | if ((st_mode ^ patch->old_mode) & S_IFMT) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 2062 | return error("%s: wrong type", old_name); |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2063 | if (st_mode != patch->old_mode) |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 2064 | fprintf(stderr, "warning: %s has type %o, expected %o\n", |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2065 | old_name, st_mode, patch->old_mode); |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 2066 | } |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2067 | |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 2068 | if (new_name && prev_patch && 0 < prev_patch->is_delete && |
Junio C Hamano | 7f95aef | 2006-07-17 00:10:47 -0700 | [diff] [blame] | 2069 | !strcmp(prev_patch->old_name, new_name)) |
| 2070 | /* A type-change diff is always split into a patch to |
| 2071 | * delete old, immediately followed by a patch to |
| 2072 | * create new (see diff.c::run_diff()); in such a case |
| 2073 | * it is Ok that the entry to be deleted by the |
| 2074 | * previous patch is still in the working tree and in |
| 2075 | * the index. |
| 2076 | */ |
| 2077 | ok_if_exists = 1; |
| 2078 | else |
| 2079 | ok_if_exists = 0; |
| 2080 | |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 2081 | if (new_name && |
| 2082 | ((0 < patch->is_new) | (0 < patch->is_rename) | patch->is_copy)) { |
Junio C Hamano | 7f95aef | 2006-07-17 00:10:47 -0700 | [diff] [blame] | 2083 | if (check_index && |
| 2084 | cache_name_pos(new_name, strlen(new_name)) >= 0 && |
| 2085 | !ok_if_exists) |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2086 | return error("%s: already exists in index", new_name); |
Junio C Hamano | d91d4c2 | 2006-05-17 16:56:13 -0700 | [diff] [blame] | 2087 | if (!cached) { |
Junio C Hamano | 64cab59 | 2007-05-11 22:26:08 -0700 | [diff] [blame] | 2088 | int err = check_to_create_blob(new_name, ok_if_exists); |
| 2089 | if (err) |
| 2090 | return err; |
Junio C Hamano | d91d4c2 | 2006-05-17 16:56:13 -0700 | [diff] [blame] | 2091 | } |
Johannes Schindelin | 35cc4bc | 2005-08-17 09:01:07 +0200 | [diff] [blame] | 2092 | if (!patch->new_mode) { |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 2093 | if (0 < patch->is_new) |
Johannes Schindelin | 35cc4bc | 2005-08-17 09:01:07 +0200 | [diff] [blame] | 2094 | patch->new_mode = S_IFREG | 0644; |
| 2095 | else |
| 2096 | patch->new_mode = patch->old_mode; |
| 2097 | } |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2098 | } |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 2099 | |
| 2100 | if (new_name && old_name) { |
| 2101 | int same = !strcmp(old_name, new_name); |
| 2102 | if (!patch->new_mode) |
| 2103 | patch->new_mode = patch->old_mode; |
| 2104 | if ((patch->old_mode ^ patch->new_mode) & S_IFMT) |
| 2105 | return error("new mode (%o) of %s does not match old mode (%o)%s%s", |
| 2106 | patch->new_mode, new_name, patch->old_mode, |
| 2107 | same ? "" : " of ", same ? "" : old_name); |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2108 | } |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 2109 | |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2110 | if (apply_data(patch, &st, ce) < 0) |
Junio C Hamano | 011f427 | 2005-11-14 17:37:05 -0800 | [diff] [blame] | 2111 | return error("%s: patch does not apply", name); |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2112 | patch->rejected = 0; |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2113 | return 0; |
| 2114 | } |
| 2115 | |
| 2116 | static int check_patch_list(struct patch *patch) |
| 2117 | { |
Junio C Hamano | 7f95aef | 2006-07-17 00:10:47 -0700 | [diff] [blame] | 2118 | struct patch *prev_patch = NULL; |
Pierre Habouzit | 60b7f38 | 2006-08-23 12:39:10 +0200 | [diff] [blame] | 2119 | int err = 0; |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2120 | |
Junio C Hamano | 7f95aef | 2006-07-17 00:10:47 -0700 | [diff] [blame] | 2121 | for (prev_patch = NULL; patch ; patch = patch->next) { |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 2122 | if (apply_verbosely) |
| 2123 | say_patch_name(stderr, |
| 2124 | "Checking patch ", patch, "...\n"); |
Pierre Habouzit | 60b7f38 | 2006-08-23 12:39:10 +0200 | [diff] [blame] | 2125 | err |= check_patch(patch, prev_patch); |
Junio C Hamano | 7f95aef | 2006-07-17 00:10:47 -0700 | [diff] [blame] | 2126 | prev_patch = patch; |
| 2127 | } |
Pierre Habouzit | 60b7f38 | 2006-08-23 12:39:10 +0200 | [diff] [blame] | 2128 | return err; |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2129 | } |
| 2130 | |
Johannes Schindelin | ece7b74 | 2007-09-17 01:24:57 +0100 | [diff] [blame] | 2131 | /* This function tries to read the sha1 from the current index */ |
| 2132 | static int get_current_sha1(const char *path, unsigned char *sha1) |
| 2133 | { |
| 2134 | int pos; |
| 2135 | |
| 2136 | if (read_cache() < 0) |
| 2137 | return -1; |
| 2138 | pos = cache_name_pos(path, strlen(path)); |
| 2139 | if (pos < 0) |
| 2140 | return -1; |
| 2141 | hashcpy(sha1, active_cache[pos]->sha1); |
| 2142 | return 0; |
| 2143 | } |
| 2144 | |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 2145 | /* Build an index that contains the just the files needed for a 3way merge */ |
| 2146 | static void build_fake_ancestor(struct patch *list, const char *filename) |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2147 | { |
| 2148 | struct patch *patch; |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 2149 | struct index_state result = { 0 }; |
| 2150 | int fd; |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2151 | |
| 2152 | /* Once we start supporting the reverse patch, it may be |
| 2153 | * worth showing the new sha1 prefix, but until then... |
| 2154 | */ |
| 2155 | for (patch = list; patch; patch = patch->next) { |
| 2156 | const unsigned char *sha1_ptr; |
| 2157 | unsigned char sha1[20]; |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 2158 | struct cache_entry *ce; |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2159 | const char *name; |
| 2160 | |
| 2161 | name = patch->old_name ? patch->old_name : patch->new_name; |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 2162 | if (0 < patch->is_new) |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 2163 | continue; |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2164 | else if (get_sha1(patch->old_sha1_prefix, sha1)) |
Johannes Schindelin | ece7b74 | 2007-09-17 01:24:57 +0100 | [diff] [blame] | 2165 | /* git diff has no index line for mode/type changes */ |
| 2166 | if (!patch->lines_added && !patch->lines_deleted) { |
| 2167 | if (get_current_sha1(patch->new_name, sha1) || |
| 2168 | get_current_sha1(patch->old_name, sha1)) |
| 2169 | die("mode change for %s, which is not " |
| 2170 | "in current HEAD", name); |
| 2171 | sha1_ptr = sha1; |
| 2172 | } else |
| 2173 | die("sha1 information is lacking or useless " |
| 2174 | "(%s).", name); |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2175 | else |
| 2176 | sha1_ptr = sha1; |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 2177 | |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 2178 | ce = make_cache_entry(patch->old_mode, sha1_ptr, name, 0, 0); |
| 2179 | if (add_index_entry(&result, ce, ADD_CACHE_OK_TO_ADD)) |
| 2180 | die ("Could not add %s to temporary index", name); |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2181 | } |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 2182 | |
| 2183 | fd = open(filename, O_WRONLY | O_CREAT, 0666); |
| 2184 | if (fd < 0 || write_index(&result, fd) || close(fd)) |
| 2185 | die ("Could not write temporary index to %s", filename); |
| 2186 | |
| 2187 | discard_index(&result); |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2188 | } |
| 2189 | |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2190 | static void stat_patch_list(struct patch *patch) |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 2191 | { |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 2192 | int files, adds, dels; |
| 2193 | |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2194 | for (files = adds = dels = 0 ; patch ; patch = patch->next) { |
| 2195 | files++; |
| 2196 | adds += patch->lines_added; |
| 2197 | dels += patch->lines_deleted; |
| 2198 | show_stats(patch); |
| 2199 | } |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 2200 | |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2201 | printf(" %d files changed, %d insertions(+), %d deletions(-)\n", files, adds, dels); |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 2202 | } |
| 2203 | |
Junio C Hamano | 7d8b7c2 | 2005-10-28 02:43:31 -0700 | [diff] [blame] | 2204 | static void numstat_patch_list(struct patch *patch) |
| 2205 | { |
| 2206 | for ( ; patch; patch = patch->next) { |
| 2207 | const char *name; |
Junio C Hamano | 49e3343 | 2006-05-14 21:59:04 -0700 | [diff] [blame] | 2208 | name = patch->new_name ? patch->new_name : patch->old_name; |
Junio C Hamano | ef58d95 | 2006-11-14 22:23:18 -0800 | [diff] [blame] | 2209 | if (patch->is_binary) |
| 2210 | printf("-\t-\t"); |
| 2211 | else |
Pierre Habouzit | 663af34 | 2007-09-20 00:42:15 +0200 | [diff] [blame] | 2212 | printf("%d\t%d\t", patch->lines_added, patch->lines_deleted); |
| 2213 | write_name_quoted(name, stdout, line_termination); |
Junio C Hamano | 7d8b7c2 | 2005-10-28 02:43:31 -0700 | [diff] [blame] | 2214 | } |
| 2215 | } |
| 2216 | |
Junio C Hamano | 96c912a | 2005-06-22 02:29:46 -0700 | [diff] [blame] | 2217 | static void show_file_mode_name(const char *newdelete, unsigned int mode, const char *name) |
| 2218 | { |
| 2219 | if (mode) |
| 2220 | printf(" %s mode %06o %s\n", newdelete, mode, name); |
| 2221 | else |
| 2222 | printf(" %s %s\n", newdelete, name); |
| 2223 | } |
| 2224 | |
| 2225 | static void show_mode_change(struct patch *p, int show_name) |
| 2226 | { |
| 2227 | if (p->old_mode && p->new_mode && p->old_mode != p->new_mode) { |
| 2228 | if (show_name) |
| 2229 | printf(" mode change %06o => %06o %s\n", |
| 2230 | p->old_mode, p->new_mode, p->new_name); |
| 2231 | else |
| 2232 | printf(" mode change %06o => %06o\n", |
| 2233 | p->old_mode, p->new_mode); |
| 2234 | } |
| 2235 | } |
| 2236 | |
| 2237 | static void show_rename_copy(struct patch *p) |
| 2238 | { |
| 2239 | const char *renamecopy = p->is_rename ? "rename" : "copy"; |
| 2240 | const char *old, *new; |
| 2241 | |
| 2242 | /* Find common prefix */ |
| 2243 | old = p->old_name; |
| 2244 | new = p->new_name; |
| 2245 | while (1) { |
| 2246 | const char *slash_old, *slash_new; |
| 2247 | slash_old = strchr(old, '/'); |
| 2248 | slash_new = strchr(new, '/'); |
| 2249 | if (!slash_old || |
| 2250 | !slash_new || |
| 2251 | slash_old - old != slash_new - new || |
| 2252 | memcmp(old, new, slash_new - new)) |
| 2253 | break; |
| 2254 | old = slash_old + 1; |
| 2255 | new = slash_new + 1; |
| 2256 | } |
| 2257 | /* p->old_name thru old is the common prefix, and old and new |
| 2258 | * through the end of names are renames |
| 2259 | */ |
| 2260 | if (old != p->old_name) |
| 2261 | printf(" %s %.*s{%s => %s} (%d%%)\n", renamecopy, |
Tony Luck | e30e814 | 2005-07-12 11:54:21 -0700 | [diff] [blame] | 2262 | (int)(old - p->old_name), p->old_name, |
Junio C Hamano | 96c912a | 2005-06-22 02:29:46 -0700 | [diff] [blame] | 2263 | old, new, p->score); |
| 2264 | else |
| 2265 | printf(" %s %s => %s (%d%%)\n", renamecopy, |
| 2266 | p->old_name, p->new_name, p->score); |
| 2267 | show_mode_change(p, 0); |
| 2268 | } |
| 2269 | |
| 2270 | static void summary_patch_list(struct patch *patch) |
| 2271 | { |
| 2272 | struct patch *p; |
| 2273 | |
| 2274 | for (p = patch; p; p = p->next) { |
| 2275 | if (p->is_new) |
| 2276 | show_file_mode_name("create", p->new_mode, p->new_name); |
| 2277 | else if (p->is_delete) |
| 2278 | show_file_mode_name("delete", p->old_mode, p->old_name); |
| 2279 | else { |
| 2280 | if (p->is_rename || p->is_copy) |
| 2281 | show_rename_copy(p); |
| 2282 | else { |
| 2283 | if (p->score) { |
| 2284 | printf(" rewrite %s (%d%%)\n", |
| 2285 | p->new_name, p->score); |
| 2286 | show_mode_change(p, 0); |
| 2287 | } |
| 2288 | else |
| 2289 | show_mode_change(p, 1); |
| 2290 | } |
| 2291 | } |
| 2292 | } |
| 2293 | } |
| 2294 | |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 2295 | static void patch_stats(struct patch *patch) |
| 2296 | { |
| 2297 | int lines = patch->lines_added + patch->lines_deleted; |
| 2298 | |
| 2299 | if (lines > max_change) |
| 2300 | max_change = lines; |
| 2301 | if (patch->old_name) { |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 2302 | int len = quote_c_style(patch->old_name, NULL, NULL, 0); |
| 2303 | if (!len) |
| 2304 | len = strlen(patch->old_name); |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 2305 | if (len > max_len) |
| 2306 | max_len = len; |
| 2307 | } |
| 2308 | if (patch->new_name) { |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 2309 | int len = quote_c_style(patch->new_name, NULL, NULL, 0); |
| 2310 | if (!len) |
| 2311 | len = strlen(patch->new_name); |
Linus Torvalds | 3f40315 | 2005-05-26 11:40:43 -0700 | [diff] [blame] | 2312 | if (len > max_len) |
| 2313 | max_len = len; |
| 2314 | } |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 2315 | } |
| 2316 | |
Junio C Hamano | aea1945 | 2007-02-19 17:58:58 -0800 | [diff] [blame] | 2317 | static void remove_file(struct patch *patch, int rmdir_empty) |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2318 | { |
Junio C Hamano | 7da3bf3 | 2007-04-01 22:46:06 -0700 | [diff] [blame] | 2319 | if (update_index) { |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2320 | if (remove_file_from_cache(patch->old_name) < 0) |
| 2321 | die("unable to remove %s from index", patch->old_name); |
| 2322 | } |
Alexandre Julliard | d234b21 | 2007-01-09 21:25:46 +0100 | [diff] [blame] | 2323 | if (!cached) { |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 2324 | if (S_ISGITLINK(patch->old_mode)) { |
| 2325 | if (rmdir(patch->old_name)) |
| 2326 | warning("unable to remove submodule %s", |
| 2327 | patch->old_name); |
| 2328 | } else if (!unlink(patch->old_name) && rmdir_empty) { |
Alexandre Julliard | d234b21 | 2007-01-09 21:25:46 +0100 | [diff] [blame] | 2329 | char *name = xstrdup(patch->old_name); |
| 2330 | char *end = strrchr(name, '/'); |
| 2331 | while (end) { |
| 2332 | *end = 0; |
| 2333 | if (rmdir(name)) |
| 2334 | break; |
| 2335 | end = strrchr(name, '/'); |
| 2336 | } |
| 2337 | free(name); |
| 2338 | } |
| 2339 | } |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2340 | } |
| 2341 | |
| 2342 | static void add_index_file(const char *path, unsigned mode, void *buf, unsigned long size) |
| 2343 | { |
| 2344 | struct stat st; |
| 2345 | struct cache_entry *ce; |
| 2346 | int namelen = strlen(path); |
| 2347 | unsigned ce_size = cache_entry_size(namelen); |
| 2348 | |
Junio C Hamano | 7da3bf3 | 2007-04-01 22:46:06 -0700 | [diff] [blame] | 2349 | if (!update_index) |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2350 | return; |
| 2351 | |
Peter Eriksen | 90321c1 | 2006-04-03 19:30:46 +0100 | [diff] [blame] | 2352 | ce = xcalloc(1, ce_size); |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2353 | memcpy(ce->name, path, namelen); |
| 2354 | ce->ce_mode = create_ce_mode(mode); |
| 2355 | ce->ce_flags = htons(namelen); |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 2356 | if (S_ISGITLINK(mode)) { |
| 2357 | const char *s = buf; |
| 2358 | |
| 2359 | if (get_sha1_hex(s + strlen("Subproject commit "), ce->sha1)) |
| 2360 | die("corrupt patch for subproject %s", path); |
| 2361 | } else { |
| 2362 | if (!cached) { |
| 2363 | if (lstat(path, &st) < 0) |
| 2364 | die("unable to stat newly created file %s", |
| 2365 | path); |
| 2366 | fill_stat_cache_info(ce, &st); |
| 2367 | } |
| 2368 | if (write_sha1_file(buf, size, blob_type, ce->sha1) < 0) |
| 2369 | die("unable to create backing store for newly created file %s", path); |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2370 | } |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2371 | if (add_cache_entry(ce, ADD_CACHE_OK_TO_ADD) < 0) |
| 2372 | die("unable to add cache entry for %s", path); |
| 2373 | } |
| 2374 | |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2375 | static int try_create_file(const char *path, unsigned int mode, const char *buf, unsigned long size) |
| 2376 | { |
Alex Riesen | ac78e54 | 2007-04-19 02:05:03 +0200 | [diff] [blame] | 2377 | int fd; |
Pierre Habouzit | 5ecd293 | 2007-09-16 15:51:04 +0200 | [diff] [blame] | 2378 | struct strbuf nbuf; |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2379 | |
Sven Verdoolaege | e06c5a6 | 2007-08-15 19:22:09 +0200 | [diff] [blame] | 2380 | if (S_ISGITLINK(mode)) { |
| 2381 | struct stat st; |
| 2382 | if (!lstat(path, &st) && S_ISDIR(st.st_mode)) |
| 2383 | return 0; |
| 2384 | return mkdir(path, 0777); |
| 2385 | } |
| 2386 | |
Johannes Sixt | 78a8d64 | 2007-03-02 22:11:30 +0100 | [diff] [blame] | 2387 | if (has_symlinks && S_ISLNK(mode)) |
Junio C Hamano | 2c71810 | 2006-08-09 22:47:25 -0700 | [diff] [blame] | 2388 | /* Although buf:size is counted string, it also is NUL |
| 2389 | * terminated. |
| 2390 | */ |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2391 | return symlink(buf, path); |
Junio C Hamano | 6716027 | 2007-02-17 12:37:25 -0800 | [diff] [blame] | 2392 | |
Alex Riesen | 781411e | 2006-01-05 09:58:06 +0100 | [diff] [blame] | 2393 | fd = open(path, O_CREAT | O_EXCL | O_WRONLY, (mode & 0100) ? 0777 : 0666); |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2394 | if (fd < 0) |
| 2395 | return -1; |
Junio C Hamano | cc96fd0 | 2007-03-22 17:32:51 -0700 | [diff] [blame] | 2396 | |
Pierre Habouzit | 5ecd293 | 2007-09-16 15:51:04 +0200 | [diff] [blame] | 2397 | strbuf_init(&nbuf, 0); |
| 2398 | if (convert_to_working_tree(path, buf, size, &nbuf)) { |
| 2399 | size = nbuf.len; |
| 2400 | buf = nbuf.buf; |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2401 | } |
Pierre Habouzit | c7f9cb1 | 2007-09-16 18:54:42 +0200 | [diff] [blame] | 2402 | write_or_die(fd, buf, size); |
| 2403 | strbuf_release(&nbuf); |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2404 | |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2405 | if (close(fd) < 0) |
| 2406 | die("closing file %s: %s", path, strerror(errno)); |
| 2407 | return 0; |
| 2408 | } |
| 2409 | |
Linus Torvalds | 5c8af18 | 2005-06-21 19:10:21 -0700 | [diff] [blame] | 2410 | /* |
| 2411 | * We optimistically assume that the directories exist, |
| 2412 | * which is true 99% of the time anyway. If they don't, |
| 2413 | * we create them and try again. |
| 2414 | */ |
Jason Riedy | 8361e1d | 2006-02-03 22:50:57 -0800 | [diff] [blame] | 2415 | static void create_one_file(char *path, unsigned mode, const char *buf, unsigned long size) |
Linus Torvalds | 5c8af18 | 2005-06-21 19:10:21 -0700 | [diff] [blame] | 2416 | { |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2417 | if (cached) |
| 2418 | return; |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2419 | if (!try_create_file(path, mode, buf, size)) |
| 2420 | return; |
Linus Torvalds | 5c8af18 | 2005-06-21 19:10:21 -0700 | [diff] [blame] | 2421 | |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2422 | if (errno == ENOENT) { |
Jason Riedy | 8361e1d | 2006-02-03 22:50:57 -0800 | [diff] [blame] | 2423 | if (safe_create_leading_directories(path)) |
| 2424 | return; |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2425 | if (!try_create_file(path, mode, buf, size)) |
| 2426 | return; |
Linus Torvalds | 5c8af18 | 2005-06-21 19:10:21 -0700 | [diff] [blame] | 2427 | } |
Linus Torvalds | 5c8af18 | 2005-06-21 19:10:21 -0700 | [diff] [blame] | 2428 | |
Johannes Schindelin | 56ac168 | 2006-07-18 19:46:34 +0200 | [diff] [blame] | 2429 | if (errno == EEXIST || errno == EACCES) { |
Junio C Hamano | c28c571 | 2006-07-16 23:28:23 -0700 | [diff] [blame] | 2430 | /* We may be trying to create a file where a directory |
| 2431 | * used to be. |
| 2432 | */ |
| 2433 | struct stat st; |
Alex Riesen | 0afa764 | 2007-04-18 23:58:56 +0200 | [diff] [blame] | 2434 | if (!lstat(path, &st) && (!S_ISDIR(st.st_mode) || !rmdir(path))) |
Junio C Hamano | c28c571 | 2006-07-16 23:28:23 -0700 | [diff] [blame] | 2435 | errno = EEXIST; |
| 2436 | } |
| 2437 | |
| 2438 | if (errno == EEXIST) { |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2439 | unsigned int nr = getpid(); |
Linus Torvalds | 5c8af18 | 2005-06-21 19:10:21 -0700 | [diff] [blame] | 2440 | |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2441 | for (;;) { |
| 2442 | const char *newpath; |
| 2443 | newpath = mkpath("%s~%u", path, nr); |
| 2444 | if (!try_create_file(newpath, mode, buf, size)) { |
| 2445 | if (!rename(newpath, path)) |
| 2446 | return; |
| 2447 | unlink(newpath); |
| 2448 | break; |
| 2449 | } |
| 2450 | if (errno != EEXIST) |
| 2451 | break; |
Alex Riesen | d9e08be | 2006-01-05 10:00:12 +0100 | [diff] [blame] | 2452 | ++nr; |
| 2453 | } |
Linus Torvalds | 5c8af18 | 2005-06-21 19:10:21 -0700 | [diff] [blame] | 2454 | } |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2455 | die("unable to write file %s mode %o", path, mode); |
Linus Torvalds | 5c8af18 | 2005-06-21 19:10:21 -0700 | [diff] [blame] | 2456 | } |
| 2457 | |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2458 | static void create_file(struct patch *patch) |
| 2459 | { |
Jason Riedy | 8361e1d | 2006-02-03 22:50:57 -0800 | [diff] [blame] | 2460 | char *path = patch->new_name; |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2461 | unsigned mode = patch->new_mode; |
| 2462 | unsigned long size = patch->resultsize; |
| 2463 | char *buf = patch->result; |
| 2464 | |
| 2465 | if (!mode) |
| 2466 | mode = S_IFREG | 0644; |
Junio C Hamano | 03ac6e6 | 2006-04-23 16:52:52 -0700 | [diff] [blame] | 2467 | create_one_file(path, mode, buf, size); |
Linus Torvalds | 1b66834 | 2005-07-13 17:25:53 -0700 | [diff] [blame] | 2468 | add_index_file(path, mode, buf, size); |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2469 | } |
| 2470 | |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2471 | /* phase zero is to remove, phase one is to create */ |
| 2472 | static void write_out_one_result(struct patch *patch, int phase) |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2473 | { |
| 2474 | if (patch->is_delete > 0) { |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2475 | if (phase == 0) |
Junio C Hamano | aea1945 | 2007-02-19 17:58:58 -0800 | [diff] [blame] | 2476 | remove_file(patch, 1); |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2477 | return; |
| 2478 | } |
| 2479 | if (patch->is_new > 0 || patch->is_copy) { |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2480 | if (phase == 1) |
| 2481 | create_file(patch); |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2482 | return; |
| 2483 | } |
| 2484 | /* |
| 2485 | * Rename or modification boils down to the same |
| 2486 | * thing: remove the old, write the new |
| 2487 | */ |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2488 | if (phase == 0) |
Linus Torvalds | 9396943 | 2007-08-04 21:48:08 -0700 | [diff] [blame] | 2489 | remove_file(patch, patch->is_rename); |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2490 | if (phase == 1) |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2491 | create_file(patch); |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2492 | } |
| 2493 | |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2494 | static int write_out_one_reject(struct patch *patch) |
| 2495 | { |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2496 | FILE *rej; |
| 2497 | char namebuf[PATH_MAX]; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2498 | struct fragment *frag; |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2499 | int cnt = 0; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2500 | |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2501 | for (cnt = 0, frag = patch->fragments; frag; frag = frag->next) { |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2502 | if (!frag->rejected) |
| 2503 | continue; |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2504 | cnt++; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2505 | } |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2506 | |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 2507 | if (!cnt) { |
| 2508 | if (apply_verbosely) |
| 2509 | say_patch_name(stderr, |
| 2510 | "Applied patch ", patch, " cleanly.\n"); |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2511 | return 0; |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 2512 | } |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2513 | |
| 2514 | /* This should not happen, because a removal patch that leaves |
| 2515 | * contents are marked "rejected" at the patch level. |
| 2516 | */ |
| 2517 | if (!patch->new_name) |
| 2518 | die("internal error"); |
| 2519 | |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 2520 | /* Say this even without --verbose */ |
| 2521 | say_patch_name(stderr, "Applying patch ", patch, " with"); |
| 2522 | fprintf(stderr, " %d rejects...\n", cnt); |
| 2523 | |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2524 | cnt = strlen(patch->new_name); |
| 2525 | if (ARRAY_SIZE(namebuf) <= cnt + 5) { |
| 2526 | cnt = ARRAY_SIZE(namebuf) - 5; |
| 2527 | fprintf(stderr, |
| 2528 | "warning: truncating .rej filename to %.*s.rej", |
| 2529 | cnt - 1, patch->new_name); |
| 2530 | } |
| 2531 | memcpy(namebuf, patch->new_name, cnt); |
| 2532 | memcpy(namebuf + cnt, ".rej", 5); |
| 2533 | |
| 2534 | rej = fopen(namebuf, "w"); |
| 2535 | if (!rej) |
| 2536 | return error("cannot open %s: %s", namebuf, strerror(errno)); |
| 2537 | |
| 2538 | /* Normal git tools never deal with .rej, so do not pretend |
| 2539 | * this is a git patch by saying --git nor give extended |
| 2540 | * headers. While at it, maybe please "kompare" that wants |
| 2541 | * the trailing TAB and some garbage at the end of line ;-). |
| 2542 | */ |
| 2543 | fprintf(rej, "diff a/%s b/%s\t(rejected hunks)\n", |
| 2544 | patch->new_name, patch->new_name); |
Junio C Hamano | 0e9ee32 | 2006-08-22 15:49:28 -0700 | [diff] [blame] | 2545 | for (cnt = 1, frag = patch->fragments; |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2546 | frag; |
| 2547 | cnt++, frag = frag->next) { |
| 2548 | if (!frag->rejected) { |
| 2549 | fprintf(stderr, "Hunk #%d applied cleanly.\n", cnt); |
| 2550 | continue; |
| 2551 | } |
| 2552 | fprintf(stderr, "Rejected hunk #%d.\n", cnt); |
| 2553 | fprintf(rej, "%.*s", frag->size, frag->patch); |
| 2554 | if (frag->patch[frag->size-1] != '\n') |
| 2555 | fputc('\n', rej); |
| 2556 | } |
| 2557 | fclose(rej); |
| 2558 | return -1; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2559 | } |
| 2560 | |
| 2561 | static int write_out_results(struct patch *list, int skipped_patch) |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2562 | { |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2563 | int phase; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2564 | int errs = 0; |
| 2565 | struct patch *l; |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2566 | |
Junio C Hamano | d854f78 | 2005-07-22 09:56:57 -0700 | [diff] [blame] | 2567 | if (!list && !skipped_patch) |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2568 | return error("No changes"); |
Linus Torvalds | f7b7970 | 2005-06-05 15:25:28 -0700 | [diff] [blame] | 2569 | |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2570 | for (phase = 0; phase < 2; phase++) { |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2571 | l = list; |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2572 | while (l) { |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2573 | if (l->rejected) |
| 2574 | errs = 1; |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2575 | else { |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2576 | write_out_one_result(l, phase); |
Junio C Hamano | 82e2765 | 2006-08-18 03:10:19 -0700 | [diff] [blame] | 2577 | if (phase == 1 && write_out_one_reject(l)) |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2578 | errs = 1; |
| 2579 | } |
Junio C Hamano | eed4664 | 2006-07-16 23:52:09 -0700 | [diff] [blame] | 2580 | l = l->next; |
| 2581 | } |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2582 | } |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2583 | return errs; |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2584 | } |
| 2585 | |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 2586 | static struct lock_file lock_file; |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2587 | |
Junio C Hamano | d854f78 | 2005-07-22 09:56:57 -0700 | [diff] [blame] | 2588 | static struct excludes { |
| 2589 | struct excludes *next; |
| 2590 | const char *path; |
| 2591 | } *excludes; |
| 2592 | |
| 2593 | static int use_patch(struct patch *p) |
| 2594 | { |
Jason Riedy | c7c81b3 | 2005-08-23 13:34:07 -0700 | [diff] [blame] | 2595 | const char *pathname = p->new_name ? p->new_name : p->old_name; |
Junio C Hamano | d854f78 | 2005-07-22 09:56:57 -0700 | [diff] [blame] | 2596 | struct excludes *x = excludes; |
| 2597 | while (x) { |
| 2598 | if (fnmatch(x->path, pathname, 0) == 0) |
| 2599 | return 0; |
| 2600 | x = x->next; |
| 2601 | } |
Junio C Hamano | edf2e37 | 2005-11-25 23:14:15 -0800 | [diff] [blame] | 2602 | if (0 < prefix_length) { |
| 2603 | int pathlen = strlen(pathname); |
| 2604 | if (pathlen <= prefix_length || |
| 2605 | memcmp(prefix, pathname, prefix_length)) |
| 2606 | return 0; |
| 2607 | } |
Junio C Hamano | d854f78 | 2005-07-22 09:56:57 -0700 | [diff] [blame] | 2608 | return 1; |
| 2609 | } |
| 2610 | |
Johannes Schindelin | eac70c4 | 2007-02-20 03:45:49 +0100 | [diff] [blame] | 2611 | static void prefix_one(char **name) |
Junio C Hamano | 56185f4 | 2007-02-19 17:57:29 -0800 | [diff] [blame] | 2612 | { |
Johannes Schindelin | eac70c4 | 2007-02-20 03:45:49 +0100 | [diff] [blame] | 2613 | char *old_name = *name; |
| 2614 | if (!old_name) |
| 2615 | return; |
| 2616 | *name = xstrdup(prefix_filename(prefix, prefix_length, *name)); |
| 2617 | free(old_name); |
Junio C Hamano | 56185f4 | 2007-02-19 17:57:29 -0800 | [diff] [blame] | 2618 | } |
| 2619 | |
| 2620 | static void prefix_patches(struct patch *p) |
| 2621 | { |
Junio C Hamano | 9987d7c | 2007-02-21 14:31:10 -0800 | [diff] [blame] | 2622 | if (!prefix || p->is_toplevel_relative) |
Junio C Hamano | 56185f4 | 2007-02-19 17:57:29 -0800 | [diff] [blame] | 2623 | return; |
| 2624 | for ( ; p; p = p->next) { |
Junio C Hamano | 6c912f5 | 2007-02-21 00:58:18 -0800 | [diff] [blame] | 2625 | if (p->new_name == p->old_name) { |
| 2626 | char *prefixed = p->new_name; |
| 2627 | prefix_one(&prefixed); |
| 2628 | p->new_name = p->old_name = prefixed; |
| 2629 | } |
| 2630 | else { |
Johannes Schindelin | eac70c4 | 2007-02-20 03:45:49 +0100 | [diff] [blame] | 2631 | prefix_one(&p->new_name); |
Junio C Hamano | 6c912f5 | 2007-02-21 00:58:18 -0800 | [diff] [blame] | 2632 | prefix_one(&p->old_name); |
| 2633 | } |
Junio C Hamano | 56185f4 | 2007-02-19 17:57:29 -0800 | [diff] [blame] | 2634 | } |
| 2635 | } |
| 2636 | |
Junio C Hamano | f686d03 | 2006-08-14 23:26:51 -0700 | [diff] [blame] | 2637 | static int apply_patch(int fd, const char *filename, int inaccurate_eof) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2638 | { |
Pierre Habouzit | 9a76ade | 2007-09-27 13:33:19 +0200 | [diff] [blame] | 2639 | size_t offset; |
| 2640 | struct strbuf buf; |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 2641 | struct patch *list = NULL, **listp = &list; |
Junio C Hamano | d854f78 | 2005-07-22 09:56:57 -0700 | [diff] [blame] | 2642 | int skipped_patch = 0; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2643 | |
Pierre Habouzit | 9a76ade | 2007-09-27 13:33:19 +0200 | [diff] [blame] | 2644 | strbuf_init(&buf, 0); |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 2645 | patch_input_file = filename; |
Pierre Habouzit | 9a76ade | 2007-09-27 13:33:19 +0200 | [diff] [blame] | 2646 | read_patch_file(&buf, fd); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2647 | offset = 0; |
Pierre Habouzit | 9a76ade | 2007-09-27 13:33:19 +0200 | [diff] [blame] | 2648 | while (offset < buf.len) { |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 2649 | struct patch *patch; |
| 2650 | int nr; |
| 2651 | |
Peter Eriksen | 90321c1 | 2006-04-03 19:30:46 +0100 | [diff] [blame] | 2652 | patch = xcalloc(1, sizeof(*patch)); |
Johannes Schindelin | 3eaa38d | 2006-06-24 22:10:11 +0200 | [diff] [blame] | 2653 | patch->inaccurate_eof = inaccurate_eof; |
Junio C Hamano | f94bf44 | 2007-10-03 17:42:52 -0700 | [diff] [blame] | 2654 | nr = parse_chunk(buf.buf + offset, buf.len - offset, patch); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2655 | if (nr < 0) |
| 2656 | break; |
Junio C Hamano | f686d03 | 2006-08-14 23:26:51 -0700 | [diff] [blame] | 2657 | if (apply_in_reverse) |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 2658 | reverse_patches(patch); |
Junio C Hamano | 56185f4 | 2007-02-19 17:57:29 -0800 | [diff] [blame] | 2659 | if (prefix) |
| 2660 | prefix_patches(patch); |
Junio C Hamano | d854f78 | 2005-07-22 09:56:57 -0700 | [diff] [blame] | 2661 | if (use_patch(patch)) { |
| 2662 | patch_stats(patch); |
| 2663 | *listp = patch; |
| 2664 | listp = &patch->next; |
Junio C Hamano | 56185f4 | 2007-02-19 17:57:29 -0800 | [diff] [blame] | 2665 | } |
| 2666 | else { |
Junio C Hamano | d854f78 | 2005-07-22 09:56:57 -0700 | [diff] [blame] | 2667 | /* perhaps free it a bit better? */ |
| 2668 | free(patch); |
| 2669 | skipped_patch++; |
| 2670 | } |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2671 | offset += nr; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2672 | } |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 2673 | |
Junio C Hamano | b5767dd | 2006-02-26 18:13:25 -0800 | [diff] [blame] | 2674 | if (whitespace_error && (new_whitespace == error_on_whitespace)) |
| 2675 | apply = 0; |
| 2676 | |
Junio C Hamano | 7da3bf3 | 2007-04-01 22:46:06 -0700 | [diff] [blame] | 2677 | update_index = check_index && apply; |
| 2678 | if (update_index && newfd < 0) |
Junio C Hamano | 30ca07a | 2007-03-31 23:09:02 -0700 | [diff] [blame] | 2679 | newfd = hold_locked_index(&lock_file, 1); |
| 2680 | |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2681 | if (check_index) { |
| 2682 | if (read_cache() < 0) |
| 2683 | die("unable to read index file"); |
| 2684 | } |
| 2685 | |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2686 | if ((check || apply) && |
| 2687 | check_patch_list(list) < 0 && |
| 2688 | !apply_with_reject) |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2689 | exit(1); |
| 2690 | |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2691 | if (apply && write_out_results(list, skipped_patch)) |
| 2692 | exit(1); |
Linus Torvalds | 5aa7d94 | 2005-06-05 14:05:43 -0700 | [diff] [blame] | 2693 | |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 2694 | if (fake_ancestor) |
| 2695 | build_fake_ancestor(list, fake_ancestor); |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2696 | |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2697 | if (diffstat) |
| 2698 | stat_patch_list(list); |
Linus Torvalds | 19c58fb | 2005-05-26 10:23:51 -0700 | [diff] [blame] | 2699 | |
Junio C Hamano | 7d8b7c2 | 2005-10-28 02:43:31 -0700 | [diff] [blame] | 2700 | if (numstat) |
| 2701 | numstat_patch_list(list); |
| 2702 | |
Junio C Hamano | 96c912a | 2005-06-22 02:29:46 -0700 | [diff] [blame] | 2703 | if (summary) |
| 2704 | summary_patch_list(list); |
| 2705 | |
Pierre Habouzit | 9a76ade | 2007-09-27 13:33:19 +0200 | [diff] [blame] | 2706 | strbuf_release(&buf); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2707 | return 0; |
| 2708 | } |
| 2709 | |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 2710 | static int git_apply_config(const char *var, const char *value) |
| 2711 | { |
| 2712 | if (!strcmp(var, "apply.whitespace")) { |
Shawn Pearce | 9befac4 | 2006-09-02 00:16:31 -0400 | [diff] [blame] | 2713 | apply_default_whitespace = xstrdup(value); |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 2714 | return 0; |
| 2715 | } |
| 2716 | return git_default_config(var, value); |
| 2717 | } |
| 2718 | |
| 2719 | |
Johannes Schindelin | cd554bb | 2007-01-21 02:17:19 +0100 | [diff] [blame] | 2720 | int cmd_apply(int argc, const char **argv, const char *unused_prefix) |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2721 | { |
| 2722 | int i; |
Linus Torvalds | 4dfdbe1 | 2005-05-23 16:42:21 -0700 | [diff] [blame] | 2723 | int read_stdin = 1; |
Johannes Schindelin | 3eaa38d | 2006-06-24 22:10:11 +0200 | [diff] [blame] | 2724 | int inaccurate_eof = 0; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2725 | int errs = 0; |
Junio C Hamano | dc7b243 | 2007-02-17 13:12:52 -0800 | [diff] [blame] | 2726 | int is_not_gitdir = 0; |
Johannes Schindelin | 3eaa38d | 2006-06-24 22:10:11 +0200 | [diff] [blame] | 2727 | |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 2728 | const char *whitespace_option = NULL; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2729 | |
Junio C Hamano | dc7b243 | 2007-02-17 13:12:52 -0800 | [diff] [blame] | 2730 | prefix = setup_git_directory_gently(&is_not_gitdir); |
| 2731 | prefix_length = prefix ? strlen(prefix) : 0; |
Junio C Hamano | 700ea47 | 2007-02-17 18:12:46 -0800 | [diff] [blame] | 2732 | git_config(git_apply_config); |
| 2733 | if (apply_default_whitespace) |
| 2734 | parse_whitespace_option(apply_default_whitespace); |
Junio C Hamano | 6716027 | 2007-02-17 12:37:25 -0800 | [diff] [blame] | 2735 | |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2736 | for (i = 1; i < argc; i++) { |
| 2737 | const char *arg = argv[i]; |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 2738 | char *end; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2739 | int fd; |
| 2740 | |
| 2741 | if (!strcmp(arg, "-")) { |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2742 | errs |= apply_patch(0, "<stdin>", inaccurate_eof); |
Linus Torvalds | 4dfdbe1 | 2005-05-23 16:42:21 -0700 | [diff] [blame] | 2743 | read_stdin = 0; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2744 | continue; |
| 2745 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 2746 | if (!prefixcmp(arg, "--exclude=")) { |
Junio C Hamano | d854f78 | 2005-07-22 09:56:57 -0700 | [diff] [blame] | 2747 | struct excludes *x = xmalloc(sizeof(*x)); |
| 2748 | x->path = arg + 10; |
| 2749 | x->next = excludes; |
| 2750 | excludes = x; |
| 2751 | continue; |
| 2752 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 2753 | if (!prefixcmp(arg, "-p")) { |
Daniel Barkalow | e36f8b6 | 2006-01-31 00:36:24 -0500 | [diff] [blame] | 2754 | p_value = atoi(arg + 2); |
Junio C Hamano | 3e8a5db | 2007-02-21 16:05:56 -0800 | [diff] [blame] | 2755 | p_value_known = 1; |
Daniel Barkalow | e36f8b6 | 2006-01-31 00:36:24 -0500 | [diff] [blame] | 2756 | continue; |
| 2757 | } |
Junio C Hamano | cb93c19 | 2005-11-09 20:38:33 -0800 | [diff] [blame] | 2758 | if (!strcmp(arg, "--no-add")) { |
| 2759 | no_add = 1; |
| 2760 | continue; |
| 2761 | } |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 2762 | if (!strcmp(arg, "--stat")) { |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2763 | apply = 0; |
Linus Torvalds | fab2c25 | 2005-05-26 12:25:52 -0700 | [diff] [blame] | 2764 | diffstat = 1; |
| 2765 | continue; |
| 2766 | } |
Junio C Hamano | 0660626 | 2006-05-05 02:41:53 -0700 | [diff] [blame] | 2767 | if (!strcmp(arg, "--allow-binary-replacement") || |
| 2768 | !strcmp(arg, "--binary")) { |
Junio C Hamano | 2b6eef9 | 2006-09-06 22:45:21 -0700 | [diff] [blame] | 2769 | continue; /* now no-op */ |
Junio C Hamano | 011f427 | 2005-11-14 17:37:05 -0800 | [diff] [blame] | 2770 | } |
Junio C Hamano | 7d8b7c2 | 2005-10-28 02:43:31 -0700 | [diff] [blame] | 2771 | if (!strcmp(arg, "--numstat")) { |
| 2772 | apply = 0; |
| 2773 | numstat = 1; |
| 2774 | continue; |
| 2775 | } |
Junio C Hamano | 96c912a | 2005-06-22 02:29:46 -0700 | [diff] [blame] | 2776 | if (!strcmp(arg, "--summary")) { |
| 2777 | apply = 0; |
| 2778 | summary = 1; |
| 2779 | continue; |
| 2780 | } |
Linus Torvalds | a577284 | 2005-05-26 15:10:02 -0700 | [diff] [blame] | 2781 | if (!strcmp(arg, "--check")) { |
| 2782 | apply = 0; |
| 2783 | check = 1; |
| 2784 | continue; |
| 2785 | } |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 2786 | if (!strcmp(arg, "--index")) { |
Junio C Hamano | dc7b243 | 2007-02-17 13:12:52 -0800 | [diff] [blame] | 2787 | if (is_not_gitdir) |
| 2788 | die("--index outside a repository"); |
Linus Torvalds | 3cca928 | 2005-06-05 11:03:13 -0700 | [diff] [blame] | 2789 | check_index = 1; |
| 2790 | continue; |
| 2791 | } |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2792 | if (!strcmp(arg, "--cached")) { |
Junio C Hamano | dc7b243 | 2007-02-17 13:12:52 -0800 | [diff] [blame] | 2793 | if (is_not_gitdir) |
| 2794 | die("--cached outside a repository"); |
Junio C Hamano | 04e4888 | 2006-05-15 15:15:47 -0700 | [diff] [blame] | 2795 | check_index = 1; |
| 2796 | cached = 1; |
| 2797 | continue; |
| 2798 | } |
Linus Torvalds | aefa4a5 | 2005-06-23 09:00:01 -0700 | [diff] [blame] | 2799 | if (!strcmp(arg, "--apply")) { |
| 2800 | apply = 1; |
| 2801 | continue; |
| 2802 | } |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 2803 | if (!strcmp(arg, "--build-fake-ancestor")) { |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2804 | apply = 0; |
Johannes Schindelin | 7a98869 | 2007-09-17 23:34:06 +0100 | [diff] [blame] | 2805 | if (++i >= argc) |
| 2806 | die ("need a filename"); |
| 2807 | fake_ancestor = argv[i]; |
Junio C Hamano | 2cf67f1 | 2005-10-07 03:42:00 -0700 | [diff] [blame] | 2808 | continue; |
| 2809 | } |
Junio C Hamano | 22943f1 | 2005-10-14 21:54:52 -0700 | [diff] [blame] | 2810 | if (!strcmp(arg, "-z")) { |
| 2811 | line_termination = 0; |
| 2812 | continue; |
| 2813 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 2814 | if (!prefixcmp(arg, "-C")) { |
Eric W. Biederman | 4749588 | 2006-04-10 03:33:06 -0600 | [diff] [blame] | 2815 | p_context = strtoul(arg + 2, &end, 0); |
| 2816 | if (*end != '\0') |
| 2817 | die("unrecognized context count '%s'", arg + 2); |
| 2818 | continue; |
| 2819 | } |
Junio C Hamano | cc44c76 | 2007-02-20 01:53:29 -0800 | [diff] [blame] | 2820 | if (!prefixcmp(arg, "--whitespace=")) { |
Junio C Hamano | 2ae1c53 | 2006-02-27 14:47:45 -0800 | [diff] [blame] | 2821 | whitespace_option = arg + 13; |
| 2822 | parse_whitespace_option(arg + 13); |
| 2823 | continue; |
Linus Torvalds | 19bfcd5 | 2006-02-26 09:29:00 -0800 | [diff] [blame] | 2824 | } |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 2825 | if (!strcmp(arg, "-R") || !strcmp(arg, "--reverse")) { |
Junio C Hamano | f686d03 | 2006-08-14 23:26:51 -0700 | [diff] [blame] | 2826 | apply_in_reverse = 1; |
Johannes Schindelin | e5a9431 | 2006-07-28 17:46:11 +0200 | [diff] [blame] | 2827 | continue; |
| 2828 | } |
Junio C Hamano | 4be6096 | 2006-09-17 01:04:24 -0700 | [diff] [blame] | 2829 | if (!strcmp(arg, "--unidiff-zero")) { |
| 2830 | unidiff_zero = 1; |
| 2831 | continue; |
| 2832 | } |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2833 | if (!strcmp(arg, "--reject")) { |
Junio C Hamano | 8938045 | 2006-08-27 15:53:20 -0700 | [diff] [blame] | 2834 | apply = apply_with_reject = apply_verbosely = 1; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2835 | continue; |
| 2836 | } |
Johannes Schindelin | aeabfa0 | 2007-02-22 20:11:21 +0100 | [diff] [blame] | 2837 | if (!strcmp(arg, "-v") || !strcmp(arg, "--verbose")) { |
Junio C Hamano | a2bf404 | 2006-08-18 03:14:48 -0700 | [diff] [blame] | 2838 | apply_verbosely = 1; |
| 2839 | continue; |
| 2840 | } |
Johannes Schindelin | 3eaa38d | 2006-06-24 22:10:11 +0200 | [diff] [blame] | 2841 | if (!strcmp(arg, "--inaccurate-eof")) { |
| 2842 | inaccurate_eof = 1; |
| 2843 | continue; |
| 2844 | } |
Junio C Hamano | edf2e37 | 2005-11-25 23:14:15 -0800 | [diff] [blame] | 2845 | if (0 < prefix_length) |
| 2846 | arg = prefix_filename(prefix, prefix_length, arg); |
| 2847 | |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2848 | fd = open(arg, O_RDONLY); |
| 2849 | if (fd < 0) |
| 2850 | usage(apply_usage); |
Linus Torvalds | 4dfdbe1 | 2005-05-23 16:42:21 -0700 | [diff] [blame] | 2851 | read_stdin = 0; |
Junio C Hamano | f21d672 | 2006-02-28 01:12:52 -0800 | [diff] [blame] | 2852 | set_default_whitespace_mode(whitespace_option); |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2853 | errs |= apply_patch(fd, arg, inaccurate_eof); |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2854 | close(fd); |
| 2855 | } |
Junio C Hamano | f21d672 | 2006-02-28 01:12:52 -0800 | [diff] [blame] | 2856 | set_default_whitespace_mode(whitespace_option); |
Linus Torvalds | 4dfdbe1 | 2005-05-23 16:42:21 -0700 | [diff] [blame] | 2857 | if (read_stdin) |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2858 | errs |= apply_patch(0, "<stdin>", inaccurate_eof); |
Junio C Hamano | fc96b7c | 2006-02-27 14:16:30 -0800 | [diff] [blame] | 2859 | if (whitespace_error) { |
| 2860 | if (squelch_whitespace_errors && |
| 2861 | squelch_whitespace_errors < whitespace_error) { |
| 2862 | int squelched = |
| 2863 | whitespace_error - squelch_whitespace_errors; |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2864 | fprintf(stderr, "warning: squelched %d " |
| 2865 | "whitespace error%s\n", |
Junio C Hamano | fc96b7c | 2006-02-27 14:16:30 -0800 | [diff] [blame] | 2866 | squelched, |
| 2867 | squelched == 1 ? "" : "s"); |
| 2868 | } |
| 2869 | if (new_whitespace == error_on_whitespace) |
Junio C Hamano | c94bf41 | 2007-06-02 19:55:54 -0700 | [diff] [blame] | 2870 | die("%d line%s add%s whitespace errors.", |
Junio C Hamano | fc96b7c | 2006-02-27 14:16:30 -0800 | [diff] [blame] | 2871 | whitespace_error, |
| 2872 | whitespace_error == 1 ? "" : "s", |
| 2873 | whitespace_error == 1 ? "s" : ""); |
Junio C Hamano | c94bf41 | 2007-06-02 19:55:54 -0700 | [diff] [blame] | 2874 | if (applied_after_fixing_ws) |
Junio C Hamano | fc96b7c | 2006-02-27 14:16:30 -0800 | [diff] [blame] | 2875 | fprintf(stderr, "warning: %d line%s applied after" |
Junio C Hamano | c94bf41 | 2007-06-02 19:55:54 -0700 | [diff] [blame] | 2876 | " fixing whitespace errors.\n", |
| 2877 | applied_after_fixing_ws, |
| 2878 | applied_after_fixing_ws == 1 ? "" : "s"); |
Junio C Hamano | fc96b7c | 2006-02-27 14:16:30 -0800 | [diff] [blame] | 2879 | else if (whitespace_error) |
Junio C Hamano | c94bf41 | 2007-06-02 19:55:54 -0700 | [diff] [blame] | 2880 | fprintf(stderr, "warning: %d line%s add%s whitespace errors.\n", |
Junio C Hamano | fc96b7c | 2006-02-27 14:16:30 -0800 | [diff] [blame] | 2881 | whitespace_error, |
| 2882 | whitespace_error == 1 ? "" : "s", |
| 2883 | whitespace_error == 1 ? "s" : ""); |
| 2884 | } |
Eric Wong | dbd0f7d | 2006-05-09 01:08:23 -0700 | [diff] [blame] | 2885 | |
Junio C Hamano | 7da3bf3 | 2007-04-01 22:46:06 -0700 | [diff] [blame] | 2886 | if (update_index) { |
Eric Wong | dbd0f7d | 2006-05-09 01:08:23 -0700 | [diff] [blame] | 2887 | if (write_cache(newfd, active_cache, active_nr) || |
Junio C Hamano | 30ca07a | 2007-03-31 23:09:02 -0700 | [diff] [blame] | 2888 | close(newfd) || commit_locked_index(&lock_file)) |
Junio C Hamano | 021b6e4 | 2006-06-06 12:51:49 -0700 | [diff] [blame] | 2889 | die("Unable to write new index file"); |
Eric Wong | dbd0f7d | 2006-05-09 01:08:23 -0700 | [diff] [blame] | 2890 | } |
| 2891 | |
Junio C Hamano | 57dc397 | 2006-08-16 17:55:29 -0700 | [diff] [blame] | 2892 | return !!errs; |
Linus Torvalds | c1bb935 | 2005-05-23 10:52:17 -0700 | [diff] [blame] | 2893 | } |