blob: 73c78c2b80c1a21e83f1942347a76fb76511a0d3 [file] [log] [blame]
Junio C Hamano8f1d2e62006-01-07 01:33:54 -08001#include "cache.h"
Linus Torvalds961784e2005-05-18 16:14:22 -07002#include "tag.h"
Daniel Barkalow175785e2005-04-18 11:39:48 -07003#include "commit.h"
Johannes Schindelined09aef2006-10-30 20:09:06 +01004#include "pkt-line.h"
Junio C Hamano52883fb2006-12-25 11:48:35 -08005#include "utf8.h"
Junio C Hamano199c45b2007-04-09 02:34:05 -07006#include "diff.h"
7#include "revision.h"
Johannes Schindelina97a7462009-10-09 12:21:57 +02008#include "notes.h"
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07009#include "gpg-interface.h"
René Scharfe46905892012-04-01 00:10:39 +020010#include "mergesort.h"
Junio C Hamanoa84b7942013-04-13 11:56:41 -070011#include "commit-slab.h"
Junio C Hamanoda24b102013-06-06 21:58:12 -070012#include "prio-queue.h"
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +040013#include "sha1-lookup.h"
Daniel Barkalow175785e2005-04-18 11:39:48 -070014
Junio C Hamano82a75292012-09-15 13:58:15 -070015static struct commit_extra_header *read_commit_extra_header_lines(const char *buf, size_t len, const char **);
16
Linus Torvalds60ab26d2005-09-15 14:43:17 -070017int save_commit_buffer = 1;
18
Daniel Barkalow175785e2005-04-18 11:39:48 -070019const char *commit_type = "commit";
20
Junio C Hamanof76412e2005-08-21 02:51:10 -070021struct commit *lookup_commit_reference_gently(const unsigned char *sha1,
22 int quiet)
Linus Torvalds961784e2005-05-18 16:14:22 -070023{
Junio C Hamano9534f402005-11-02 15:19:13 -080024 struct object *obj = deref_tag(parse_object(sha1), NULL, 0);
Linus Torvalds961784e2005-05-18 16:14:22 -070025
26 if (!obj)
27 return NULL;
Jeff King8ff226a2014-07-13 02:42:03 -040028 return object_as_type(obj, OBJ_COMMIT, quiet);
Junio C Hamanof76412e2005-08-21 02:51:10 -070029}
30
31struct commit *lookup_commit_reference(const unsigned char *sha1)
32{
33 return lookup_commit_reference_gently(sha1, 0);
Linus Torvalds961784e2005-05-18 16:14:22 -070034}
35
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100036struct commit *lookup_commit_or_die(const unsigned char *sha1, const char *ref_name)
37{
38 struct commit *c = lookup_commit_reference(sha1);
39 if (!c)
40 die(_("could not parse %s"), ref_name);
brian m. carlsoned1c9972015-11-10 02:22:29 +000041 if (hashcmp(sha1, c->object.oid.hash)) {
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100042 warning(_("%s %s is not a commit!"),
43 ref_name, sha1_to_hex(sha1));
44 }
45 return c;
46}
47
Jason McMullan5d6ccf52005-06-03 11:05:39 -040048struct commit *lookup_commit(const unsigned char *sha1)
Daniel Barkalow175785e2005-04-18 11:39:48 -070049{
50 struct object *obj = lookup_object(sha1);
Jeff Kingd36f51c2014-07-13 02:41:55 -040051 if (!obj)
52 return create_object(sha1, alloc_commit_node());
Jeff King8ff226a2014-07-13 02:42:03 -040053 return object_as_type(obj, OBJ_COMMIT, 0);
Daniel Barkalow175785e2005-04-18 11:39:48 -070054}
55
Pat Notza6fa5992010-11-02 13:59:07 -060056struct commit *lookup_commit_reference_by_name(const char *name)
57{
brian m. carlson7683e2e2015-03-13 23:39:34 +000058 struct object_id oid;
Pat Notza6fa5992010-11-02 13:59:07 -060059 struct commit *commit;
60
brian m. carlson7683e2e2015-03-13 23:39:34 +000061 if (get_sha1_committish(name, oid.hash))
Pat Notza6fa5992010-11-02 13:59:07 -060062 return NULL;
brian m. carlson7683e2e2015-03-13 23:39:34 +000063 commit = lookup_commit_reference(oid.hash);
Jeff King5e7d4d32013-10-24 04:53:19 -040064 if (parse_commit(commit))
Pat Notza6fa5992010-11-02 13:59:07 -060065 return NULL;
66 return commit;
67}
68
Martin Koegler0a617792008-01-19 18:35:23 +010069static unsigned long parse_commit_date(const char *buf, const char *tail)
Daniel Barkalow175785e2005-04-18 11:39:48 -070070{
Martin Koegler0a617792008-01-19 18:35:23 +010071 const char *dateptr;
Daniel Barkalow175785e2005-04-18 11:39:48 -070072
Martin Koegler0a617792008-01-19 18:35:23 +010073 if (buf + 6 >= tail)
74 return 0;
Daniel Barkalow175785e2005-04-18 11:39:48 -070075 if (memcmp(buf, "author", 6))
76 return 0;
Martin Koegler0a617792008-01-19 18:35:23 +010077 while (buf < tail && *buf++ != '\n')
Daniel Barkalow175785e2005-04-18 11:39:48 -070078 /* nada */;
Martin Koegler0a617792008-01-19 18:35:23 +010079 if (buf + 9 >= tail)
80 return 0;
Daniel Barkalow175785e2005-04-18 11:39:48 -070081 if (memcmp(buf, "committer", 9))
82 return 0;
Martin Koegler0a617792008-01-19 18:35:23 +010083 while (buf < tail && *buf++ != '>')
Daniel Barkalow175785e2005-04-18 11:39:48 -070084 /* nada */;
Martin Koegler0a617792008-01-19 18:35:23 +010085 if (buf >= tail)
86 return 0;
87 dateptr = buf;
88 while (buf < tail && *buf++ != '\n')
89 /* nada */;
90 if (buf >= tail)
91 return 0;
92 /* dateptr < buf && buf[-1] == '\n', so strtoul will stop at buf-1 */
Eric Wongf2909742009-07-02 21:34:54 -070093 return strtoul(dateptr, NULL, 10);
Daniel Barkalow175785e2005-04-18 11:39:48 -070094}
95
Junio C Hamano5040f172006-04-06 23:58:51 -070096static struct commit_graft **commit_graft;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -070097static int commit_graft_alloc, commit_graft_nr;
98
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +040099static const unsigned char *commit_graft_sha1_access(size_t index, void *table)
100{
101 struct commit_graft **commit_graft_table = table;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000102 return commit_graft_table[index]->oid.hash;
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +0400103}
104
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700105static int commit_graft_pos(const unsigned char *sha1)
106{
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +0400107 return sha1_pos(sha1, commit_graft, commit_graft_nr,
108 commit_graft_sha1_access);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700109}
110
Junio C Hamano5040f172006-04-06 23:58:51 -0700111int register_commit_graft(struct commit_graft *graft, int ignore_dups)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700112{
brian m. carlson7683e2e2015-03-13 23:39:34 +0000113 int pos = commit_graft_pos(graft->oid.hash);
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700114
Junio C Hamano5040f172006-04-06 23:58:51 -0700115 if (0 <= pos) {
116 if (ignore_dups)
117 free(graft);
118 else {
119 free(commit_graft[pos]);
120 commit_graft[pos] = graft;
121 }
122 return 1;
123 }
124 pos = -pos - 1;
Dmitry S. Dolzhenkod6e82b52014-03-04 02:31:52 +0400125 ALLOC_GROW(commit_graft, commit_graft_nr + 1, commit_graft_alloc);
126 commit_graft_nr++;
Junio C Hamano5040f172006-04-06 23:58:51 -0700127 if (pos < commit_graft_nr)
128 memmove(commit_graft + pos + 1,
129 commit_graft + pos,
130 (commit_graft_nr - pos - 1) *
131 sizeof(*commit_graft));
132 commit_graft[pos] = graft;
133 return 0;
134}
135
136struct commit_graft *read_graft_line(char *buf, int len)
137{
138 /* The format is just "Commit Parent1 Parent2 ...\n" */
139 int i;
140 struct commit_graft *graft = NULL;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000141 const int entry_size = GIT_SHA1_HEXSZ + 1;
Junio C Hamano5040f172006-04-06 23:58:51 -0700142
Junio C Hamanofe0a3cb2009-10-14 11:51:03 -0700143 while (len && isspace(buf[len-1]))
144 buf[--len] = '\0';
Yann Dirson360204c2006-04-17 13:41:49 +0200145 if (buf[0] == '#' || buf[0] == '\0')
Junio C Hamano5bc4ce52006-04-16 14:24:56 -0700146 return NULL;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000147 if ((len + 1) % entry_size)
Ralf Thielowdf5d43b2010-12-01 20:15:59 +0100148 goto bad_graft_data;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000149 i = (len + 1) / entry_size - 1;
Jeff King50a6c8e2016-02-22 17:44:35 -0500150 graft = xmalloc(st_add(sizeof(*graft), st_mult(GIT_SHA1_RAWSZ, i)));
Junio C Hamano5040f172006-04-06 23:58:51 -0700151 graft->nr_parent = i;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000152 if (get_oid_hex(buf, &graft->oid))
Junio C Hamano5040f172006-04-06 23:58:51 -0700153 goto bad_graft_data;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000154 for (i = GIT_SHA1_HEXSZ; i < len; i += entry_size) {
Junio C Hamano5040f172006-04-06 23:58:51 -0700155 if (buf[i] != ' ')
156 goto bad_graft_data;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000157 if (get_sha1_hex(buf + i + 1, graft->parent[i/entry_size].hash))
Junio C Hamano5040f172006-04-06 23:58:51 -0700158 goto bad_graft_data;
159 }
160 return graft;
Ralf Thielowdf5d43b2010-12-01 20:15:59 +0100161
162bad_graft_data:
163 error("bad graft data: %s", buf);
164 free(graft);
165 return NULL;
Junio C Hamano5040f172006-04-06 23:58:51 -0700166}
167
Nanako Shiraishic5ae6432008-10-02 19:14:30 +0900168static int read_graft_file(const char *graft_file)
Junio C Hamano5040f172006-04-06 23:58:51 -0700169{
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700170 FILE *fp = fopen(graft_file, "r");
Johannes Schindeline228c172013-12-27 21:49:57 +0100171 struct strbuf buf = STRBUF_INIT;
Junio C Hamano5040f172006-04-06 23:58:51 -0700172 if (!fp)
173 return -1;
Johannes Schindeline228c172013-12-27 21:49:57 +0100174 while (!strbuf_getwholeline(&buf, fp, '\n')) {
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700175 /* The format is just "Commit Parent1 Parent2 ...\n" */
Johannes Schindeline228c172013-12-27 21:49:57 +0100176 struct commit_graft *graft = read_graft_line(buf.buf, buf.len);
Junio C Hamano5bc4ce52006-04-16 14:24:56 -0700177 if (!graft)
178 continue;
Junio C Hamano5040f172006-04-06 23:58:51 -0700179 if (register_commit_graft(graft, 1))
Johannes Schindeline228c172013-12-27 21:49:57 +0100180 error("duplicate graft data: %s", buf.buf);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700181 }
182 fclose(fp);
Johannes Schindeline228c172013-12-27 21:49:57 +0100183 strbuf_release(&buf);
Junio C Hamano5040f172006-04-06 23:58:51 -0700184 return 0;
185}
186
187static void prepare_commit_graft(void)
188{
189 static int commit_graft_prepared;
190 char *graft_file;
191
192 if (commit_graft_prepared)
193 return;
194 graft_file = get_graft_file();
195 read_graft_file(graft_file);
Johannes Schindelined09aef2006-10-30 20:09:06 +0100196 /* make sure shallows are read */
197 is_repository_shallow();
Junio C Hamano5040f172006-04-06 23:58:51 -0700198 commit_graft_prepared = 1;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700199}
200
Martin Koegler45163382008-02-25 22:46:07 +0100201struct commit_graft *lookup_commit_graft(const unsigned char *sha1)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700202{
203 int pos;
Junio C Hamano5040f172006-04-06 23:58:51 -0700204 prepare_commit_graft();
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700205 pos = commit_graft_pos(sha1);
206 if (pos < 0)
207 return NULL;
208 return commit_graft[pos];
209}
210
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700211int for_each_commit_graft(each_commit_graft_fn fn, void *cb_data)
Johannes Schindelined09aef2006-10-30 20:09:06 +0100212{
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700213 int i, ret;
214 for (i = ret = 0; i < commit_graft_nr && !ret; i++)
215 ret = fn(commit_graft[i], cb_data);
216 return ret;
Johannes Schindelined09aef2006-10-30 20:09:06 +0100217}
218
Johannes Schindelinf53514b2006-10-30 20:09:53 +0100219int unregister_shallow(const unsigned char *sha1)
220{
221 int pos = commit_graft_pos(sha1);
222 if (pos < 0)
223 return -1;
224 if (pos + 1 < commit_graft_nr)
Jeff King65d41d42010-01-29 05:28:44 -0500225 memmove(commit_graft + pos, commit_graft + pos + 1,
Johannes Schindelinf53514b2006-10-30 20:09:53 +0100226 sizeof(struct commit_graft *)
227 * (commit_graft_nr - pos - 1));
228 commit_graft_nr--;
229 return 0;
230}
231
Jeff King8597ea32014-06-10 17:44:13 -0400232struct commit_buffer {
233 void *buffer;
234 unsigned long size;
235};
236define_commit_slab(buffer_slab, struct commit_buffer);
Jeff Kingc1b3c712014-06-10 17:43:02 -0400237static struct buffer_slab buffer_slab = COMMIT_SLAB_INIT(1, buffer_slab);
238
Jeff King8597ea32014-06-10 17:44:13 -0400239void set_commit_buffer(struct commit *commit, void *buffer, unsigned long size)
Jeff King66c28272014-06-10 17:40:14 -0400240{
Jeff King8597ea32014-06-10 17:44:13 -0400241 struct commit_buffer *v = buffer_slab_at(&buffer_slab, commit);
242 v->buffer = buffer;
243 v->size = size;
Jeff King66c28272014-06-10 17:40:14 -0400244}
245
Jeff King8597ea32014-06-10 17:44:13 -0400246const void *get_cached_commit_buffer(const struct commit *commit, unsigned long *sizep)
Jeff King152ff1c2014-06-10 17:40:39 -0400247{
Junio C Hamano862e7302015-05-14 15:25:52 -0700248 struct commit_buffer *v = buffer_slab_peek(&buffer_slab, commit);
249 if (!v) {
250 if (sizep)
251 *sizep = 0;
252 return NULL;
253 }
Jeff King8597ea32014-06-10 17:44:13 -0400254 if (sizep)
255 *sizep = v->size;
256 return v->buffer;
Jeff King152ff1c2014-06-10 17:40:39 -0400257}
258
Jeff King8597ea32014-06-10 17:44:13 -0400259const void *get_commit_buffer(const struct commit *commit, unsigned long *sizep)
Jeff King152ff1c2014-06-10 17:40:39 -0400260{
Jeff King8597ea32014-06-10 17:44:13 -0400261 const void *ret = get_cached_commit_buffer(commit, sizep);
Jeff King152ff1c2014-06-10 17:40:39 -0400262 if (!ret) {
263 enum object_type type;
264 unsigned long size;
brian m. carlsoned1c9972015-11-10 02:22:29 +0000265 ret = read_sha1_file(commit->object.oid.hash, &type, &size);
Jeff King152ff1c2014-06-10 17:40:39 -0400266 if (!ret)
267 die("cannot read commit object %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000268 oid_to_hex(&commit->object.oid));
Jeff King152ff1c2014-06-10 17:40:39 -0400269 if (type != OBJ_COMMIT)
270 die("expected commit for %s, got %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000271 oid_to_hex(&commit->object.oid), typename(type));
Jeff King8597ea32014-06-10 17:44:13 -0400272 if (sizep)
273 *sizep = size;
Jeff King152ff1c2014-06-10 17:40:39 -0400274 }
275 return ret;
276}
277
278void unuse_commit_buffer(const struct commit *commit, const void *buffer)
279{
Junio C Hamano862e7302015-05-14 15:25:52 -0700280 struct commit_buffer *v = buffer_slab_peek(&buffer_slab, commit);
281 if (!(v && v->buffer == buffer))
Jeff King152ff1c2014-06-10 17:40:39 -0400282 free((void *)buffer);
283}
284
Jeff King0fb370d2014-06-12 18:05:37 -0400285void free_commit_buffer(struct commit *commit)
286{
Junio C Hamano862e7302015-05-14 15:25:52 -0700287 struct commit_buffer *v = buffer_slab_peek(&buffer_slab, commit);
288 if (v) {
289 free(v->buffer);
290 v->buffer = NULL;
291 v->size = 0;
292 }
Jeff King0fb370d2014-06-12 18:05:37 -0400293}
294
Jeff King8597ea32014-06-10 17:44:13 -0400295const void *detach_commit_buffer(struct commit *commit, unsigned long *sizep)
Jeff King0fb370d2014-06-12 18:05:37 -0400296{
Junio C Hamano862e7302015-05-14 15:25:52 -0700297 struct commit_buffer *v = buffer_slab_peek(&buffer_slab, commit);
Jeff King8597ea32014-06-10 17:44:13 -0400298 void *ret;
299
Junio C Hamano862e7302015-05-14 15:25:52 -0700300 if (!v) {
301 if (sizep)
302 *sizep = 0;
303 return NULL;
304 }
Jeff King8597ea32014-06-10 17:44:13 -0400305 ret = v->buffer;
306 if (sizep)
307 *sizep = v->size;
308
309 v->buffer = NULL;
310 v->size = 0;
Jeff King0fb370d2014-06-12 18:05:37 -0400311 return ret;
312}
313
Nguyễn Thái Ngọc Duycf7b1ca2011-02-05 17:52:20 +0700314int parse_commit_buffer(struct commit *item, const void *buffer, unsigned long size)
Daniel Barkalow175785e2005-04-18 11:39:48 -0700315{
Nguyễn Thái Ngọc Duycf7b1ca2011-02-05 17:52:20 +0700316 const char *tail = buffer;
317 const char *bufptr = buffer;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000318 struct object_id parent;
Linus Torvalds6c88be12005-06-20 20:26:03 -0700319 struct commit_list **pptr;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700320 struct commit_graft *graft;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000321 const int tree_entry_len = GIT_SHA1_HEXSZ + 5;
322 const int parent_entry_len = GIT_SHA1_HEXSZ + 7;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400323
Daniel Barkalow175785e2005-04-18 11:39:48 -0700324 if (item->object.parsed)
325 return 0;
326 item->object.parsed = 1;
Junio C Hamano3b44f152006-06-28 03:51:00 -0700327 tail += size;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000328 if (tail <= bufptr + tree_entry_len + 1 || memcmp(bufptr, "tree ", 5) ||
329 bufptr[tree_entry_len] != '\n')
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000330 return error("bogus commit object %s", oid_to_hex(&item->object.oid));
brian m. carlson7683e2e2015-03-13 23:39:34 +0000331 if (get_sha1_hex(bufptr + 5, parent.hash) < 0)
Junio C Hamanobd2afde2006-02-22 17:47:10 -0800332 return error("bad tree pointer in commit %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000333 oid_to_hex(&item->object.oid));
brian m. carlson7683e2e2015-03-13 23:39:34 +0000334 item->tree = lookup_tree(parent.hash);
335 bufptr += tree_entry_len + 1; /* "tree " + "hex sha1" + "\n" */
Linus Torvalds6c88be12005-06-20 20:26:03 -0700336 pptr = &item->parents;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700337
brian m. carlsoned1c9972015-11-10 02:22:29 +0000338 graft = lookup_commit_graft(item->object.oid.hash);
brian m. carlson7683e2e2015-03-13 23:39:34 +0000339 while (bufptr + parent_entry_len < tail && !memcmp(bufptr, "parent ", 7)) {
Linus Torvaldsf7cc77d2005-07-27 15:12:48 -0700340 struct commit *new_parent;
341
brian m. carlson7683e2e2015-03-13 23:39:34 +0000342 if (tail <= bufptr + parent_entry_len + 1 ||
343 get_sha1_hex(bufptr + 7, parent.hash) ||
344 bufptr[parent_entry_len] != '\n')
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000345 return error("bad parents in commit %s", oid_to_hex(&item->object.oid));
brian m. carlson7683e2e2015-03-13 23:39:34 +0000346 bufptr += parent_entry_len + 1;
Johannes Schindelin7f3140c2009-07-23 17:33:49 +0200347 /*
348 * The clone is shallow if nr_parent < 0, and we must
349 * not traverse its real parents even when we unhide them.
350 */
351 if (graft && (graft->nr_parent < 0 || grafts_replace_parents))
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700352 continue;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000353 new_parent = lookup_commit(parent.hash);
Miklos Vajna39468de2008-06-07 22:38:37 +0200354 if (new_parent)
Linus Torvalds6c88be12005-06-20 20:26:03 -0700355 pptr = &commit_list_insert(new_parent, pptr)->next;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700356 }
357 if (graft) {
358 int i;
359 struct commit *new_parent;
360 for (i = 0; i < graft->nr_parent; i++) {
brian m. carlson7683e2e2015-03-13 23:39:34 +0000361 new_parent = lookup_commit(graft->parent[i].hash);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700362 if (!new_parent)
363 continue;
364 pptr = &commit_list_insert(new_parent, pptr)->next;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700365 }
Daniel Barkalow175785e2005-04-18 11:39:48 -0700366 }
Martin Koegler0a617792008-01-19 18:35:23 +0100367 item->date = parse_commit_date(bufptr, tail);
Junio C Hamano27dedf02005-11-16 21:32:44 -0800368
Daniel Barkalow175785e2005-04-18 11:39:48 -0700369 return 0;
370}
371
Jeff King9cc2b072015-06-01 05:56:26 -0400372int parse_commit_gently(struct commit *item, int quiet_on_missing)
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400373{
Nicolas Pitre21666f12007-02-26 14:55:59 -0500374 enum object_type type;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400375 void *buffer;
376 unsigned long size;
377 int ret;
378
Martin Koegler9786f682008-02-18 21:48:02 +0100379 if (!item)
380 return -1;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400381 if (item->object.parsed)
382 return 0;
brian m. carlsoned1c9972015-11-10 02:22:29 +0000383 buffer = read_sha1_file(item->object.oid.hash, &type, &size);
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400384 if (!buffer)
Jeff King9cc2b072015-06-01 05:56:26 -0400385 return quiet_on_missing ? -1 :
386 error("Could not read %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000387 oid_to_hex(&item->object.oid));
Nicolas Pitre21666f12007-02-26 14:55:59 -0500388 if (type != OBJ_COMMIT) {
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400389 free(buffer);
390 return error("Object %s not a commit",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000391 oid_to_hex(&item->object.oid));
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400392 }
393 ret = parse_commit_buffer(item, buffer, size);
Linus Torvalds60ab26d2005-09-15 14:43:17 -0700394 if (save_commit_buffer && !ret) {
Jeff King8597ea32014-06-10 17:44:13 -0400395 set_commit_buffer(item, buffer, size);
Linus Torvalds3ff1fbb2005-05-25 18:27:14 -0700396 return 0;
397 }
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400398 free(buffer);
399 return ret;
400}
401
Jeff King7059dcc2013-10-24 04:52:36 -0400402void parse_commit_or_die(struct commit *item)
403{
404 if (parse_commit(item))
405 die("unable to parse commit %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000406 item ? oid_to_hex(&item->object.oid) : "(null)");
Jeff King7059dcc2013-10-24 04:52:36 -0400407}
408
Christian Couder11af2aa2010-07-22 15:18:30 +0200409int find_commit_subject(const char *commit_buffer, const char **subject)
410{
411 const char *eol;
412 const char *p = commit_buffer;
413
414 while (*p && (*p != '\n' || p[1] != '\n'))
415 p++;
416 if (*p) {
Johannes Schindelin4e1b06d2016-06-22 22:20:20 +0200417 p = skip_blank_lines(p + 2);
Junio C Hamano9c9b03b2017-01-27 18:01:41 -0800418 eol = strchrnul(p, '\n');
Christian Couder11af2aa2010-07-22 15:18:30 +0200419 } else
420 eol = p;
421
422 *subject = p;
423
424 return eol - p;
425}
426
Linus Torvaldsac5155e2005-05-30 18:44:02 -0700427struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700428{
Christopher Li812666c2005-04-26 12:00:58 -0700429 struct commit_list *new_list = xmalloc(sizeof(struct commit_list));
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700430 new_list->item = item;
431 new_list->next = *list_p;
432 *list_p = new_list;
Linus Torvaldsac5155e2005-05-30 18:44:02 -0700433 return new_list;
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700434}
435
Miklos Vajna65319472008-06-27 18:21:55 +0200436unsigned commit_list_count(const struct commit_list *l)
437{
438 unsigned c = 0;
439 for (; l; l = l->next )
440 c++;
441 return c;
442}
443
Thomas Rast53d00b32013-07-31 22:13:20 +0200444struct commit_list *copy_commit_list(struct commit_list *list)
445{
446 struct commit_list *head = NULL;
447 struct commit_list **pp = &head;
448 while (list) {
René Scharfecb979db2014-07-10 11:47:47 +0200449 pp = commit_list_append(list->item, pp);
Thomas Rast53d00b32013-07-31 22:13:20 +0200450 list = list->next;
451 }
452 return head;
453}
454
Daniel Barkalow175785e2005-04-18 11:39:48 -0700455void free_commit_list(struct commit_list *list)
456{
René Scharfee510ab82015-10-24 18:21:31 +0200457 while (list)
458 pop_commit(&list);
Daniel Barkalow175785e2005-04-18 11:39:48 -0700459}
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700460
Thiago Farina47e44ed2010-11-26 23:58:14 -0200461struct commit_list * commit_list_insert_by_date(struct commit *item, struct commit_list **list)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700462{
463 struct commit_list **pp = list;
464 struct commit_list *p;
465 while ((p = *pp) != NULL) {
466 if (p->item->date < item->date) {
467 break;
468 }
469 pp = &p->next;
470 }
Linus Torvaldsf7554942005-07-06 09:31:17 -0700471 return commit_list_insert(item, pp);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700472}
473
René Scharfe46905892012-04-01 00:10:39 +0200474static int commit_list_compare_by_date(const void *a, const void *b)
475{
476 unsigned long a_date = ((const struct commit_list *)a)->item->date;
477 unsigned long b_date = ((const struct commit_list *)b)->item->date;
478 if (a_date < b_date)
479 return 1;
480 if (a_date > b_date)
481 return -1;
482 return 0;
483}
484
485static void *commit_list_get_next(const void *a)
486{
487 return ((const struct commit_list *)a)->next;
488}
489
490static void commit_list_set_next(void *a, void *next)
491{
492 ((struct commit_list *)a)->next = next;
493}
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700494
Thiago Farina47e44ed2010-11-26 23:58:14 -0200495void commit_list_sort_by_date(struct commit_list **list)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700496{
Junio C Hamano7365c952012-04-17 11:07:01 -0700497 *list = llist_mergesort(*list, commit_list_get_next, commit_list_set_next,
498 commit_list_compare_by_date);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700499}
500
Daniel Barkalow58e28af2005-04-23 20:29:22 -0700501struct commit *pop_most_recent_commit(struct commit_list **list,
502 unsigned int mark)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700503{
René Scharfee510ab82015-10-24 18:21:31 +0200504 struct commit *ret = pop_commit(list);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700505 struct commit_list *parents = ret->parents;
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700506
507 while (parents) {
Linus Torvalds4056c092005-04-23 19:21:28 -0700508 struct commit *commit = parents->item;
Martin Koeglerdec38c82008-02-18 21:48:03 +0100509 if (!parse_commit(commit) && !(commit->object.flags & mark)) {
Daniel Barkalow58e28af2005-04-23 20:29:22 -0700510 commit->object.flags |= mark;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200511 commit_list_insert_by_date(commit, list);
Linus Torvalds4056c092005-04-23 19:21:28 -0700512 }
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700513 parents = parents->next;
514 }
515 return ret;
516}
Linus Torvaldse3bc7a32005-06-01 08:34:23 -0700517
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700518static void clear_commit_marks_1(struct commit_list **plist,
519 struct commit *commit, unsigned int mark)
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800520{
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100521 while (commit) {
522 struct commit_list *parents;
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800523
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100524 if (!(mark & commit->object.flags))
525 return;
Junio C Hamano58ecf5c2006-07-04 17:45:22 -0700526
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100527 commit->object.flags &= ~mark;
528
529 parents = commit->parents;
530 if (!parents)
531 return;
532
533 while ((parents = parents->next))
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700534 commit_list_insert(parents->item, plist);
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100535
536 commit = commit->parents->item;
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800537 }
538}
539
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800540void clear_commit_marks_many(int nr, struct commit **commit, unsigned int mark)
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700541{
542 struct commit_list *list = NULL;
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800543
544 while (nr--) {
545 commit_list_insert(*commit, &list);
546 commit++;
547 }
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700548 while (list)
549 clear_commit_marks_1(&list, pop_commit(&list), mark);
550}
551
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800552void clear_commit_marks(struct commit *commit, unsigned int mark)
553{
554 clear_commit_marks_many(1, &commit, mark);
555}
556
René Scharfe86a0a402011-10-01 18:16:08 +0200557void clear_commit_marks_for_object_array(struct object_array *a, unsigned mark)
558{
559 struct object *object;
560 struct commit *commit;
561 unsigned int i;
562
563 for (i = 0; i < a->nr; i++) {
564 object = a->objects[i].item;
brian m. carlsoned1c9972015-11-10 02:22:29 +0000565 commit = lookup_commit_reference_gently(object->oid.hash, 1);
René Scharfe86a0a402011-10-01 18:16:08 +0200566 if (commit)
567 clear_commit_marks(commit, mark);
568 }
569}
570
jon@blackcubes.dyndns.orga3437b82005-06-06 15:39:40 +0000571struct commit *pop_commit(struct commit_list **stack)
572{
573 struct commit_list *top = *stack;
574 struct commit *item = top ? top->item : NULL;
575
576 if (top) {
577 *stack = top->next;
578 free(top);
579 }
580 return item;
581}
582
Jon Seymourab580ac2005-07-07 02:39:34 +1000583/*
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700584 * Topological sort support
585 */
Junio C Hamano66eb3752013-04-12 23:25:49 -0700586
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700587/* count number of children that have not been emitted */
588define_commit_slab(indegree_slab, int);
Jeff King96c4f4a2013-04-09 02:52:56 -0400589
Junio C Hamano81c6b382013-06-07 10:35:54 -0700590/* record author-date for each commit object */
591define_commit_slab(author_date_slab, unsigned long);
592
593static void record_author_date(struct author_date_slab *author_date,
594 struct commit *commit)
595{
Jeff King8597ea32014-06-10 17:44:13 -0400596 const char *buffer = get_commit_buffer(commit, NULL);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700597 struct ident_split ident;
Jeff Kingea5517f2014-08-27 03:56:55 -0400598 const char *ident_line;
599 size_t ident_len;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700600 char *date_end;
601 unsigned long date;
602
Jeff Kingea5517f2014-08-27 03:56:55 -0400603 ident_line = find_commit_header(buffer, "author", &ident_len);
604 if (!ident_line)
605 goto fail_exit; /* no author line */
606 if (split_ident_line(&ident, ident_line, ident_len) ||
607 !ident.date_begin || !ident.date_end)
608 goto fail_exit; /* malformed "author" line */
Junio C Hamano81c6b382013-06-07 10:35:54 -0700609
610 date = strtoul(ident.date_begin, &date_end, 10);
611 if (date_end != ident.date_end)
612 goto fail_exit; /* malformed date */
613 *(author_date_slab_at(author_date, commit)) = date;
614
615fail_exit:
Jeff Kingba41c1c2014-06-10 17:41:02 -0400616 unuse_commit_buffer(commit, buffer);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700617}
618
619static int compare_commits_by_author_date(const void *a_, const void *b_,
620 void *cb_data)
621{
622 const struct commit *a = a_, *b = b_;
623 struct author_date_slab *author_date = cb_data;
624 unsigned long a_date = *(author_date_slab_at(author_date, a));
625 unsigned long b_date = *(author_date_slab_at(author_date, b));
626
627 /* newer commits with larger date first */
628 if (a_date < b_date)
629 return 1;
630 else if (a_date > b_date)
631 return -1;
632 return 0;
633}
634
Jeff King727377f2013-07-02 02:21:48 -0400635int compare_commits_by_commit_date(const void *a_, const void *b_, void *unused)
Junio C Hamanoda24b102013-06-06 21:58:12 -0700636{
637 const struct commit *a = a_, *b = b_;
638 /* newer commits with larger date first */
639 if (a->date < b->date)
640 return 1;
641 else if (a->date > b->date)
642 return -1;
643 return 0;
644}
645
Jon Seymourab580ac2005-07-07 02:39:34 +1000646/*
647 * Performs an in-place topological sort on the list supplied.
648 */
Junio C Hamanoda24b102013-06-06 21:58:12 -0700649void sort_in_topological_order(struct commit_list **list, enum rev_sort_order sort_order)
Jon Seymourab580ac2005-07-07 02:39:34 +1000650{
Linus Torvalds23c17d42007-11-02 13:32:58 -0700651 struct commit_list *next, *orig = *list;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700652 struct commit_list **pptr;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700653 struct indegree_slab indegree;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700654 struct prio_queue queue;
655 struct commit *commit;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700656 struct author_date_slab author_date;
Fredrik Kuivinen6b6dcfc2006-03-10 10:21:37 +0100657
Linus Torvalds23c17d42007-11-02 13:32:58 -0700658 if (!orig)
Eric Wong7d6fb372005-12-24 04:12:43 -0800659 return;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700660 *list = NULL;
661
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700662 init_indegree_slab(&indegree);
Junio C Hamanoda24b102013-06-06 21:58:12 -0700663 memset(&queue, '\0', sizeof(queue));
Junio C Hamano81c6b382013-06-07 10:35:54 -0700664
Junio C Hamanoda24b102013-06-06 21:58:12 -0700665 switch (sort_order) {
666 default: /* REV_SORT_IN_GRAPH_ORDER */
667 queue.compare = NULL;
668 break;
669 case REV_SORT_BY_COMMIT_DATE:
670 queue.compare = compare_commits_by_commit_date;
671 break;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700672 case REV_SORT_BY_AUTHOR_DATE:
673 init_author_date_slab(&author_date);
674 queue.compare = compare_commits_by_author_date;
675 queue.cb_data = &author_date;
676 break;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700677 }
Jeff King96c4f4a2013-04-09 02:52:56 -0400678
Linus Torvalds23c17d42007-11-02 13:32:58 -0700679 /* Mark them and clear the indegree */
680 for (next = orig; next; next = next->next) {
681 struct commit *commit = next->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700682 *(indegree_slab_at(&indegree, commit)) = 1;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700683 /* also record the author dates, if needed */
684 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
685 record_author_date(&author_date, commit);
Jon Seymourab580ac2005-07-07 02:39:34 +1000686 }
Linus Torvalds23c17d42007-11-02 13:32:58 -0700687
Jon Seymourab580ac2005-07-07 02:39:34 +1000688 /* update the indegree */
Linus Torvalds23c17d42007-11-02 13:32:58 -0700689 for (next = orig; next; next = next->next) {
Junio C Hamanoda24b102013-06-06 21:58:12 -0700690 struct commit_list *parents = next->item->parents;
Jon Seymourab580ac2005-07-07 02:39:34 +1000691 while (parents) {
Linus Torvalds23c17d42007-11-02 13:32:58 -0700692 struct commit *parent = parents->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700693 int *pi = indegree_slab_at(&indegree, parent);
Fredrik Kuivinen6b6dcfc2006-03-10 10:21:37 +0100694
Jeff King96c4f4a2013-04-09 02:52:56 -0400695 if (*pi)
696 (*pi)++;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700697 parents = parents->next;
Jon Seymourab580ac2005-07-07 02:39:34 +1000698 }
Jon Seymourab580ac2005-07-07 02:39:34 +1000699 }
Linus Torvalds23c17d42007-11-02 13:32:58 -0700700
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700701 /*
Pierre Habouzit674d1722007-09-10 12:35:06 +0200702 * find the tips
703 *
704 * tips are nodes not reachable from any other node in the list
705 *
706 * the tips serve as a starting set for the work queue.
707 */
Linus Torvalds23c17d42007-11-02 13:32:58 -0700708 for (next = orig; next; next = next->next) {
709 struct commit *commit = next->item;
Jon Seymourab580ac2005-07-07 02:39:34 +1000710
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700711 if (*(indegree_slab_at(&indegree, commit)) == 1)
Junio C Hamanoda24b102013-06-06 21:58:12 -0700712 prio_queue_put(&queue, commit);
Jon Seymourab580ac2005-07-07 02:39:34 +1000713 }
Junio C Hamano4c8725f2006-02-15 22:05:33 -0800714
Junio C Hamanoda24b102013-06-06 21:58:12 -0700715 /*
716 * This is unfortunate; the initial tips need to be shown
717 * in the order given from the revision traversal machinery.
718 */
719 if (sort_order == REV_SORT_IN_GRAPH_ORDER)
720 prio_queue_reverse(&queue);
721
722 /* We no longer need the commit list */
723 free_commit_list(orig);
Linus Torvalds23c17d42007-11-02 13:32:58 -0700724
725 pptr = list;
726 *list = NULL;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700727 while ((commit = prio_queue_get(&queue)) != NULL) {
728 struct commit_list *parents;
Jon Seymourab580ac2005-07-07 02:39:34 +1000729
Linus Torvalds23c17d42007-11-02 13:32:58 -0700730 for (parents = commit->parents; parents ; parents = parents->next) {
Junio C Hamanocd2b8ae2011-08-25 14:46:52 -0700731 struct commit *parent = parents->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700732 int *pi = indegree_slab_at(&indegree, parent);
Linus Torvalds23c17d42007-11-02 13:32:58 -0700733
Jeff King96c4f4a2013-04-09 02:52:56 -0400734 if (!*pi)
Linus Torvalds23c17d42007-11-02 13:32:58 -0700735 continue;
736
737 /*
738 * parents are only enqueued for emission
739 * when all their children have been emitted thereby
740 * guaranteeing topological order.
741 */
Junio C Hamanoda24b102013-06-06 21:58:12 -0700742 if (--(*pi) == 1)
743 prio_queue_put(&queue, parent);
Jon Seymourab580ac2005-07-07 02:39:34 +1000744 }
745 /*
Junio C Hamanoda24b102013-06-06 21:58:12 -0700746 * all children of commit have already been
747 * emitted. we can emit it now.
Pierre Habouzit674d1722007-09-10 12:35:06 +0200748 */
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700749 *(indegree_slab_at(&indegree, commit)) = 0;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700750
751 pptr = &commit_list_insert(commit, pptr)->next;
Jon Seymourab580ac2005-07-07 02:39:34 +1000752 }
Jeff King96c4f4a2013-04-09 02:52:56 -0400753
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700754 clear_indegree_slab(&indegree);
Junio C Hamanoda24b102013-06-06 21:58:12 -0700755 clear_prio_queue(&queue);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700756 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
757 clear_author_date_slab(&author_date);
Jon Seymourab580ac2005-07-07 02:39:34 +1000758}
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200759
Junio C Hamano12952282007-01-08 23:10:49 -0800760/* merge-base stuff */
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200761
Nguyễn Thái Ngọc Duy208acbf2014-03-25 20:23:26 +0700762/* Remember to update object flag allocation in object.h */
Junio C Hamano577ed5c2006-10-22 17:32:47 -0700763#define PARENT1 (1u<<16)
764#define PARENT2 (1u<<17)
765#define STALE (1u<<18)
766#define RESULT (1u<<19)
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200767
Junio C Hamano12952282007-01-08 23:10:49 -0800768static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT);
769
Jeff King73f43f22014-07-14 01:53:54 -0400770static int queue_has_nonstale(struct prio_queue *queue)
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200771{
Jeff King73f43f22014-07-14 01:53:54 -0400772 int i;
773 for (i = 0; i < queue->nr; i++) {
774 struct commit *commit = queue->array[i].data;
775 if (!(commit->object.flags & STALE))
776 return 1;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200777 }
Jeff King73f43f22014-07-14 01:53:54 -0400778 return 0;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200779}
780
Junio C Hamanod8669242012-10-04 15:37:15 -0700781/* all input commits in one and twos[] must have been parsed! */
Junio C Hamanoda1f5152012-08-30 14:39:03 -0700782static struct commit_list *paint_down_to_common(struct commit *one, int n, struct commit **twos)
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200783{
Jeff King73f43f22014-07-14 01:53:54 -0400784 struct prio_queue queue = { compare_commits_by_commit_date };
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200785 struct commit_list *result = NULL;
Junio C Hamano6a938642008-06-27 18:22:02 +0200786 int i;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200787
Junio C Hamanof3249432006-07-04 18:46:42 -0700788 one->object.flags |= PARENT1;
Jeff King73f43f22014-07-14 01:53:54 -0400789 if (!n) {
790 commit_list_append(one, &result);
791 return result;
792 }
793 prio_queue_put(&queue, one);
794
Junio C Hamano6a938642008-06-27 18:22:02 +0200795 for (i = 0; i < n; i++) {
796 twos[i]->object.flags |= PARENT2;
Jeff King73f43f22014-07-14 01:53:54 -0400797 prio_queue_put(&queue, twos[i]);
Junio C Hamano6a938642008-06-27 18:22:02 +0200798 }
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200799
Jeff King73f43f22014-07-14 01:53:54 -0400800 while (queue_has_nonstale(&queue)) {
801 struct commit *commit = prio_queue_get(&queue);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200802 struct commit_list *parents;
Junio C Hamanof3249432006-07-04 18:46:42 -0700803 int flags;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200804
Junio C Hamanof3249432006-07-04 18:46:42 -0700805 flags = commit->object.flags & (PARENT1 | PARENT2 | STALE);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200806 if (flags == (PARENT1 | PARENT2)) {
Junio C Hamanof3249432006-07-04 18:46:42 -0700807 if (!(commit->object.flags & RESULT)) {
808 commit->object.flags |= RESULT;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200809 commit_list_insert_by_date(commit, &result);
Junio C Hamanof3249432006-07-04 18:46:42 -0700810 }
Junio C Hamano542ccef2006-07-02 11:34:17 -0700811 /* Mark parents of a found merge stale */
812 flags |= STALE;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200813 }
814 parents = commit->parents;
815 while (parents) {
816 struct commit *p = parents->item;
817 parents = parents->next;
818 if ((p->object.flags & flags) == flags)
819 continue;
Martin Koegler172947e2008-02-18 21:47:57 +0100820 if (parse_commit(p))
821 return NULL;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200822 p->object.flags |= flags;
Jeff King73f43f22014-07-14 01:53:54 -0400823 prio_queue_put(&queue, p);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200824 }
825 }
826
Jeff King73f43f22014-07-14 01:53:54 -0400827 clear_prio_queue(&queue);
Junio C Hamanoda1f5152012-08-30 14:39:03 -0700828 return result;
829}
830
831static struct commit_list *merge_bases_many(struct commit *one, int n, struct commit **twos)
832{
833 struct commit_list *list = NULL;
834 struct commit_list *result = NULL;
835 int i;
836
837 for (i = 0; i < n; i++) {
838 if (one == twos[i])
839 /*
840 * We do not mark this even with RESULT so we do not
841 * have to clean it up.
842 */
843 return commit_list_insert(one, &result);
844 }
845
846 if (parse_commit(one))
847 return NULL;
848 for (i = 0; i < n; i++) {
849 if (parse_commit(twos[i]))
850 return NULL;
851 }
852
853 list = paint_down_to_common(one, n, twos);
854
Junio C Hamanof3249432006-07-04 18:46:42 -0700855 while (list) {
René Scharfee510ab82015-10-24 18:21:31 +0200856 struct commit *commit = pop_commit(&list);
857 if (!(commit->object.flags & STALE))
858 commit_list_insert_by_date(commit, &result);
Junio C Hamanof3249432006-07-04 18:46:42 -0700859 }
860 return result;
861}
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200862
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200863struct commit_list *get_octopus_merge_bases(struct commit_list *in)
864{
865 struct commit_list *i, *j, *k, *ret = NULL;
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200866
Vasily Makarov6bc76722014-01-03 18:45:46 +0400867 if (!in)
868 return ret;
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200869
Vasily Makarov6bc76722014-01-03 18:45:46 +0400870 commit_list_insert(in->item, &ret);
871
872 for (i = in->next; i; i = i->next) {
873 struct commit_list *new = NULL, *end = NULL;
874
875 for (j = ret; j; j = j->next) {
876 struct commit_list *bases;
Junio C Hamano2ce406c2014-10-30 12:20:44 -0700877 bases = get_merge_bases(i->item, j->item);
Vasily Makarov6bc76722014-01-03 18:45:46 +0400878 if (!new)
879 new = bases;
880 else
881 end->next = bases;
882 for (k = bases; k; k = k->next)
883 end = k;
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200884 }
Vasily Makarov6bc76722014-01-03 18:45:46 +0400885 ret = new;
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200886 }
887 return ret;
888}
889
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700890static int remove_redundant(struct commit **array, int cnt)
891{
892 /*
893 * Some commit in the array may be an ancestor of
894 * another commit. Move such commit to the end of
895 * the array, and return the number of commits that
896 * are independent from each other.
897 */
898 struct commit **work;
899 unsigned char *redundant;
900 int *filled_index;
901 int i, j, filled;
902
903 work = xcalloc(cnt, sizeof(*work));
904 redundant = xcalloc(cnt, 1);
Jeff Kingb32fa952016-02-22 17:44:25 -0500905 ALLOC_ARRAY(filled_index, cnt - 1);
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700906
Junio C Hamanod8669242012-10-04 15:37:15 -0700907 for (i = 0; i < cnt; i++)
908 parse_commit(array[i]);
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700909 for (i = 0; i < cnt; i++) {
910 struct commit_list *common;
911
912 if (redundant[i])
913 continue;
914 for (j = filled = 0; j < cnt; j++) {
915 if (i == j || redundant[j])
916 continue;
917 filled_index[filled] = j;
918 work[filled++] = array[j];
919 }
920 common = paint_down_to_common(array[i], filled, work);
921 if (array[i]->object.flags & PARENT2)
922 redundant[i] = 1;
923 for (j = 0; j < filled; j++)
924 if (work[j]->object.flags & PARENT1)
925 redundant[filled_index[j]] = 1;
926 clear_commit_marks(array[i], all_flags);
927 for (j = 0; j < filled; j++)
928 clear_commit_marks(work[j], all_flags);
929 free_commit_list(common);
930 }
931
932 /* Now collect the result */
René Scharfe45ccef82016-09-25 09:24:03 +0200933 COPY_ARRAY(work, array, cnt);
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700934 for (i = filled = 0; i < cnt; i++)
935 if (!redundant[i])
936 array[filled++] = work[i];
937 for (j = filled, i = 0; i < cnt; i++)
938 if (redundant[i])
939 array[j++] = work[i];
940 free(work);
941 free(redundant);
942 free(filled_index);
943 return filled;
944}
945
Junio C Hamano2ce406c2014-10-30 12:20:44 -0700946static struct commit_list *get_merge_bases_many_0(struct commit *one,
947 int n,
948 struct commit **twos,
949 int cleanup)
Junio C Hamanof3249432006-07-04 18:46:42 -0700950{
Junio C Hamanof3249432006-07-04 18:46:42 -0700951 struct commit_list *list;
952 struct commit **rslt;
953 struct commit_list *result;
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700954 int cnt, i;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200955
Junio C Hamano6a938642008-06-27 18:22:02 +0200956 result = merge_bases_many(one, n, twos);
957 for (i = 0; i < n; i++) {
958 if (one == twos[i])
959 return result;
960 }
Junio C Hamanof3249432006-07-04 18:46:42 -0700961 if (!result || !result->next) {
962 if (cleanup) {
963 clear_commit_marks(one, all_flags);
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800964 clear_commit_marks_many(n, twos, all_flags);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200965 }
Junio C Hamanof3249432006-07-04 18:46:42 -0700966 return result;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200967 }
968
Junio C Hamanof3249432006-07-04 18:46:42 -0700969 /* There are more than one */
René Scharfe4bbaa1e2014-07-17 01:52:09 +0200970 cnt = commit_list_count(result);
Junio C Hamanof3249432006-07-04 18:46:42 -0700971 rslt = xcalloc(cnt, sizeof(*rslt));
972 for (list = result, i = 0; list; list = list->next)
973 rslt[i++] = list->item;
974 free_commit_list(result);
975
976 clear_commit_marks(one, all_flags);
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800977 clear_commit_marks_many(n, twos, all_flags);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200978
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700979 cnt = remove_redundant(rslt, cnt);
Junio C Hamanof3249432006-07-04 18:46:42 -0700980 result = NULL;
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700981 for (i = 0; i < cnt; i++)
982 commit_list_insert_by_date(rslt[i], &result);
Junio C Hamanof3249432006-07-04 18:46:42 -0700983 free(rslt);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200984 return result;
985}
Junio C Hamano2ecd2bb2006-12-19 00:14:04 -0800986
Junio C Hamano2ce406c2014-10-30 12:20:44 -0700987struct commit_list *get_merge_bases_many(struct commit *one,
988 int n,
989 struct commit **twos)
Junio C Hamano6a938642008-06-27 18:22:02 +0200990{
Junio C Hamano2ce406c2014-10-30 12:20:44 -0700991 return get_merge_bases_many_0(one, n, twos, 1);
992}
993
994struct commit_list *get_merge_bases_many_dirty(struct commit *one,
995 int n,
996 struct commit **twos)
997{
998 return get_merge_bases_many_0(one, n, twos, 0);
999}
1000
1001struct commit_list *get_merge_bases(struct commit *one, struct commit *two)
1002{
1003 return get_merge_bases_many_0(one, 1, &two, 1);
Junio C Hamano6a938642008-06-27 18:22:02 +02001004}
1005
Junio C Hamanoa20efee2012-08-27 14:46:01 -07001006/*
Stefano Lattarini41ccfdd2013-04-12 00:36:10 +02001007 * Is "commit" a descendant of one of the elements on the "with_commit" list?
Junio C Hamanoa20efee2012-08-27 14:46:01 -07001008 */
Jake Goulding7fcdb362009-01-26 09:13:24 -05001009int is_descendant_of(struct commit *commit, struct commit_list *with_commit)
1010{
1011 if (!with_commit)
1012 return 1;
1013 while (with_commit) {
1014 struct commit *other;
1015
1016 other = with_commit->item;
1017 with_commit = with_commit->next;
Junio C Hamanoa20efee2012-08-27 14:46:01 -07001018 if (in_merge_bases(other, commit))
Jake Goulding7fcdb362009-01-26 09:13:24 -05001019 return 1;
1020 }
1021 return 0;
1022}
1023
Junio C Hamanoa20efee2012-08-27 14:46:01 -07001024/*
Junio C Hamano4c4b27e2013-03-04 10:16:42 -08001025 * Is "commit" an ancestor of one of the "references"?
1026 */
1027int in_merge_bases_many(struct commit *commit, int nr_reference, struct commit **reference)
1028{
1029 struct commit_list *bases;
1030 int ret = 0, i;
1031
1032 if (parse_commit(commit))
1033 return ret;
1034 for (i = 0; i < nr_reference; i++)
1035 if (parse_commit(reference[i]))
1036 return ret;
1037
1038 bases = paint_down_to_common(commit, nr_reference, reference);
1039 if (commit->object.flags & PARENT2)
1040 ret = 1;
1041 clear_commit_marks(commit, all_flags);
Junio C Hamano557899f2013-03-05 11:56:03 -08001042 clear_commit_marks_many(nr_reference, reference, all_flags);
Junio C Hamano4c4b27e2013-03-04 10:16:42 -08001043 free_commit_list(bases);
1044 return ret;
1045}
1046
1047/*
Junio C Hamanoa20efee2012-08-27 14:46:01 -07001048 * Is "commit" an ancestor of (i.e. reachable from) the "reference"?
1049 */
1050int in_merge_bases(struct commit *commit, struct commit *reference)
Junio C Hamano2ecd2bb2006-12-19 00:14:04 -08001051{
Junio C Hamano4c4b27e2013-03-04 10:16:42 -08001052 return in_merge_bases_many(commit, 1, &reference);
Junio C Hamano2ecd2bb2006-12-19 00:14:04 -08001053}
Junio C Hamano98cf9c32008-06-27 18:22:03 +02001054
1055struct commit_list *reduce_heads(struct commit_list *heads)
1056{
1057 struct commit_list *p;
1058 struct commit_list *result = NULL, **tail = &result;
Junio C Hamanof37d3c72012-08-30 23:20:40 -07001059 struct commit **array;
1060 int num_head, i;
Junio C Hamano98cf9c32008-06-27 18:22:03 +02001061
1062 if (!heads)
1063 return NULL;
1064
Junio C Hamanof37d3c72012-08-30 23:20:40 -07001065 /* Uniquify */
1066 for (p = heads; p; p = p->next)
1067 p->item->object.flags &= ~STALE;
1068 for (p = heads, num_head = 0; p; p = p->next) {
1069 if (p->item->object.flags & STALE)
Junio C Hamano711f6b22008-07-14 00:09:41 -07001070 continue;
Junio C Hamanof37d3c72012-08-30 23:20:40 -07001071 p->item->object.flags |= STALE;
1072 num_head++;
Junio C Hamano98cf9c32008-06-27 18:22:03 +02001073 }
Brian Gesiakc4a7b002014-05-27 00:33:45 +09001074 array = xcalloc(num_head, sizeof(*array));
Junio C Hamanof37d3c72012-08-30 23:20:40 -07001075 for (p = heads, i = 0; p; p = p->next) {
1076 if (p->item->object.flags & STALE) {
1077 array[i++] = p->item;
1078 p->item->object.flags &= ~STALE;
1079 }
1080 }
1081 num_head = remove_redundant(array, num_head);
1082 for (i = 0; i < num_head; i++)
1083 tail = &commit_list_insert(array[i], tail)->next;
Junio C Hamano98cf9c32008-06-27 18:22:03 +02001084 return result;
1085}
Jeff King40d52ff2010-04-01 20:05:23 -04001086
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001087static const char gpg_sig_header[] = "gpgsig";
1088static const int gpg_sig_header_len = sizeof(gpg_sig_header) - 1;
1089
1090static int do_sign_commit(struct strbuf *buf, const char *keyid)
1091{
1092 struct strbuf sig = STRBUF_INIT;
1093 int inspos, copypos;
Johannes Schindelin3324dd82016-06-29 16:14:54 +02001094 const char *eoh;
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001095
1096 /* find the end of the header */
Johannes Schindelin3324dd82016-06-29 16:14:54 +02001097 eoh = strstr(buf->buf, "\n\n");
1098 if (!eoh)
1099 inspos = buf->len;
1100 else
1101 inspos = eoh - buf->buf + 1;
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001102
1103 if (!keyid || !*keyid)
1104 keyid = get_signing_key();
1105 if (sign_buffer(buf, &sig, keyid)) {
1106 strbuf_release(&sig);
1107 return -1;
1108 }
1109
1110 for (copypos = 0; sig.buf[copypos]; ) {
1111 const char *bol = sig.buf + copypos;
1112 const char *eol = strchrnul(bol, '\n');
1113 int len = (eol - bol) + !!*eol;
1114
1115 if (!copypos) {
1116 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len);
1117 inspos += gpg_sig_header_len;
1118 }
1119 strbuf_insert(buf, inspos++, " ", 1);
1120 strbuf_insert(buf, inspos, bol, len);
1121 inspos += len;
1122 copypos += len;
1123 }
1124 strbuf_release(&sig);
1125 return 0;
1126}
1127
Jeff King218aa3a2014-06-13 02:32:11 -04001128int parse_signed_commit(const struct commit *commit,
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001129 struct strbuf *payload, struct strbuf *signature)
1130{
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001131
Jeff King218aa3a2014-06-13 02:32:11 -04001132 unsigned long size;
1133 const char *buffer = get_commit_buffer(commit, &size);
1134 int in_signature, saw_signature = -1;
1135 const char *line, *tail;
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001136
1137 line = buffer;
1138 tail = buffer + size;
1139 in_signature = 0;
1140 saw_signature = 0;
1141 while (line < tail) {
1142 const char *sig = NULL;
Jeff King218aa3a2014-06-13 02:32:11 -04001143 const char *next = memchr(line, '\n', tail - line);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001144
1145 next = next ? next + 1 : tail;
1146 if (in_signature && line[0] == ' ')
1147 sig = line + 1;
Christian Couder59556542013-11-30 21:55:40 +01001148 else if (starts_with(line, gpg_sig_header) &&
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001149 line[gpg_sig_header_len] == ' ')
1150 sig = line + gpg_sig_header_len + 1;
1151 if (sig) {
1152 strbuf_add(signature, sig, next - sig);
1153 saw_signature = 1;
1154 in_signature = 1;
1155 } else {
1156 if (*line == '\n')
1157 /* dump the whole remainder of the buffer */
1158 next = tail;
1159 strbuf_add(payload, line, next - line);
1160 in_signature = 0;
1161 }
1162 line = next;
1163 }
Jeff King218aa3a2014-06-13 02:32:11 -04001164 unuse_commit_buffer(commit, buffer);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001165 return saw_signature;
1166}
1167
Christian Couder0b05ab62014-07-19 17:01:12 +02001168int remove_signature(struct strbuf *buf)
1169{
1170 const char *line = buf->buf;
1171 const char *tail = buf->buf + buf->len;
1172 int in_signature = 0;
1173 const char *sig_start = NULL;
1174 const char *sig_end = NULL;
1175
1176 while (line < tail) {
1177 const char *next = memchr(line, '\n', tail - line);
1178 next = next ? next + 1 : tail;
1179
1180 if (in_signature && line[0] == ' ')
1181 sig_end = next;
1182 else if (starts_with(line, gpg_sig_header) &&
1183 line[gpg_sig_header_len] == ' ') {
1184 sig_start = line;
1185 sig_end = next;
1186 in_signature = 1;
1187 } else {
1188 if (*line == '\n')
1189 /* dump the whole remainder of the buffer */
1190 next = tail;
1191 in_signature = 0;
1192 }
1193 line = next;
1194 }
1195
1196 if (sig_start)
1197 strbuf_remove(buf, sig_start - buf->buf, sig_end - sig_start);
1198
1199 return sig_start != NULL;
1200}
1201
Junio C Hamano5231c632011-11-07 16:21:32 -08001202static void handle_signed_tag(struct commit *parent, struct commit_extra_header ***tail)
1203{
1204 struct merge_remote_desc *desc;
1205 struct commit_extra_header *mergetag;
1206 char *buf;
1207 unsigned long size, len;
1208 enum object_type type;
1209
1210 desc = merge_remote_util(parent);
1211 if (!desc || !desc->obj)
1212 return;
brian m. carlsoned1c9972015-11-10 02:22:29 +00001213 buf = read_sha1_file(desc->obj->oid.hash, &type, &size);
Junio C Hamano5231c632011-11-07 16:21:32 -08001214 if (!buf || type != OBJ_TAG)
1215 goto free_return;
1216 len = parse_signature(buf, size);
1217 if (size == len)
1218 goto free_return;
1219 /*
1220 * We could verify this signature and either omit the tag when
1221 * it does not validate, but the integrator may not have the
1222 * public key of the signer of the tag he is merging, while a
1223 * later auditor may have it while auditing, so let's not run
1224 * verify-signed-buffer here for now...
1225 *
1226 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1227 * warn("warning: signed tag unverified.");
1228 */
1229 mergetag = xcalloc(1, sizeof(*mergetag));
1230 mergetag->key = xstrdup("mergetag");
1231 mergetag->value = buf;
1232 mergetag->len = size;
1233
1234 **tail = mergetag;
1235 *tail = &mergetag->next;
1236 return;
1237
1238free_return:
1239 free(buf);
1240}
1241
brian m. carlson434060e2015-06-21 23:14:40 +00001242int check_commit_signature(const struct commit *commit, struct signature_check *sigc)
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001243{
1244 struct strbuf payload = STRBUF_INIT;
1245 struct strbuf signature = STRBUF_INIT;
brian m. carlson434060e2015-06-21 23:14:40 +00001246 int ret = 1;
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001247
1248 sigc->result = 'N';
1249
Jeff King218aa3a2014-06-13 02:32:11 -04001250 if (parse_signed_commit(commit, &payload, &signature) <= 0)
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001251 goto out;
brian m. carlson434060e2015-06-21 23:14:40 +00001252 ret = check_signature(payload.buf, payload.len, signature.buf,
1253 signature.len, sigc);
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001254
1255 out:
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001256 strbuf_release(&payload);
1257 strbuf_release(&signature);
brian m. carlson434060e2015-06-21 23:14:40 +00001258
1259 return ret;
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001260}
1261
1262
1263
Junio C Hamano5231c632011-11-07 16:21:32 -08001264void append_merge_tag_headers(struct commit_list *parents,
1265 struct commit_extra_header ***tail)
1266{
1267 while (parents) {
1268 struct commit *parent = parents->item;
1269 handle_signed_tag(parent, tail);
1270 parents = parents->next;
1271 }
1272}
1273
1274static void add_extra_header(struct strbuf *buffer,
1275 struct commit_extra_header *extra)
1276{
1277 strbuf_addstr(buffer, extra->key);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001278 if (extra->len)
1279 strbuf_add_lines(buffer, " ", extra->value, extra->len);
1280 else
1281 strbuf_addch(buffer, '\n');
1282}
1283
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001284struct commit_extra_header *read_commit_extra_headers(struct commit *commit,
1285 const char **exclude)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001286{
1287 struct commit_extra_header *extra = NULL;
1288 unsigned long size;
Jeff King218aa3a2014-06-13 02:32:11 -04001289 const char *buffer = get_commit_buffer(commit, &size);
1290 extra = read_commit_extra_header_lines(buffer, size, exclude);
1291 unuse_commit_buffer(commit, buffer);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001292 return extra;
1293}
1294
Christian Couder063da622014-07-07 08:35:37 +02001295void for_each_mergetag(each_mergetag_fn fn, struct commit *commit, void *data)
1296{
1297 struct commit_extra_header *extra, *to_free;
1298
1299 to_free = read_commit_extra_headers(commit, NULL);
1300 for (extra = to_free; extra; extra = extra->next) {
1301 if (strcmp(extra->key, "mergetag"))
1302 continue; /* not a merge tag */
1303 fn(commit, extra, data);
1304 }
1305 free_commit_extra_headers(to_free);
1306}
1307
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001308static inline int standard_header_field(const char *field, size_t len)
1309{
René Scharfeb0725042017-02-25 20:27:40 +01001310 return ((len == 4 && !memcmp(field, "tree", 4)) ||
1311 (len == 6 && !memcmp(field, "parent", 6)) ||
1312 (len == 6 && !memcmp(field, "author", 6)) ||
1313 (len == 9 && !memcmp(field, "committer", 9)) ||
1314 (len == 8 && !memcmp(field, "encoding", 8)));
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001315}
1316
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001317static int excluded_header_field(const char *field, size_t len, const char **exclude)
1318{
1319 if (!exclude)
1320 return 0;
1321
1322 while (*exclude) {
1323 size_t xlen = strlen(*exclude);
René Scharfeb0725042017-02-25 20:27:40 +01001324 if (len == xlen && !memcmp(field, *exclude, xlen))
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001325 return 1;
1326 exclude++;
1327 }
1328 return 0;
1329}
1330
Junio C Hamano82a75292012-09-15 13:58:15 -07001331static struct commit_extra_header *read_commit_extra_header_lines(
1332 const char *buffer, size_t size,
1333 const char **exclude)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001334{
1335 struct commit_extra_header *extra = NULL, **tail = &extra, *it = NULL;
1336 const char *line, *next, *eof, *eob;
1337 struct strbuf buf = STRBUF_INIT;
1338
1339 for (line = buffer, eob = line + size;
1340 line < eob && *line != '\n';
1341 line = next) {
1342 next = memchr(line, '\n', eob - line);
1343 next = next ? next + 1 : eob;
1344 if (*line == ' ') {
1345 /* continuation */
1346 if (it)
1347 strbuf_add(&buf, line + 1, next - (line + 1));
1348 continue;
1349 }
1350 if (it)
1351 it->value = strbuf_detach(&buf, &it->len);
1352 strbuf_reset(&buf);
1353 it = NULL;
1354
René Scharfe50a01cc2017-02-25 20:21:52 +01001355 eof = memchr(line, ' ', next - line);
1356 if (!eof)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001357 eof = next;
René Scharfeb0725042017-02-25 20:27:40 +01001358 else if (standard_header_field(line, eof - line) ||
1359 excluded_header_field(line, eof - line, exclude))
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001360 continue;
1361
1362 it = xcalloc(1, sizeof(*it));
1363 it->key = xmemdupz(line, eof-line);
1364 *tail = it;
1365 tail = &it->next;
1366 if (eof + 1 < next)
1367 strbuf_add(&buf, eof + 1, next - (eof + 1));
1368 }
1369 if (it)
1370 it->value = strbuf_detach(&buf, &it->len);
1371 return extra;
Junio C Hamano5231c632011-11-07 16:21:32 -08001372}
1373
1374void free_commit_extra_headers(struct commit_extra_header *extra)
1375{
1376 while (extra) {
1377 struct commit_extra_header *next = extra->next;
1378 free(extra->key);
1379 free(extra->value);
1380 free(extra);
1381 extra = next;
1382 }
1383}
1384
Jeff King3ffefb52014-06-10 17:36:52 -04001385int commit_tree(const char *msg, size_t msg_len,
1386 const unsigned char *tree,
Junio C Hamano5231c632011-11-07 16:21:32 -08001387 struct commit_list *parents, unsigned char *ret,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001388 const char *author, const char *sign_commit)
Junio C Hamano5231c632011-11-07 16:21:32 -08001389{
1390 struct commit_extra_header *extra = NULL, **tail = &extra;
1391 int result;
1392
1393 append_merge_tag_headers(parents, &tail);
Jeff King3ffefb52014-06-10 17:36:52 -04001394 result = commit_tree_extended(msg, msg_len, tree, parents, ret,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001395 author, sign_commit, extra);
Junio C Hamano5231c632011-11-07 16:21:32 -08001396 free_commit_extra_headers(extra);
1397 return result;
1398}
1399
Linus Torvalds08a94a12012-06-28 11:24:14 -07001400static int find_invalid_utf8(const char *buf, int len)
1401{
1402 int offset = 0;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001403 static const unsigned int max_codepoint[] = {
1404 0x7f, 0x7ff, 0xffff, 0x10ffff
1405 };
Linus Torvalds08a94a12012-06-28 11:24:14 -07001406
1407 while (len) {
1408 unsigned char c = *buf++;
1409 int bytes, bad_offset;
brian m. carlson28110d42013-07-04 17:19:43 +00001410 unsigned int codepoint;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001411 unsigned int min_val, max_val;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001412
1413 len--;
1414 offset++;
1415
1416 /* Simple US-ASCII? No worries. */
1417 if (c < 0x80)
1418 continue;
1419
1420 bad_offset = offset-1;
1421
1422 /*
1423 * Count how many more high bits set: that's how
1424 * many more bytes this sequence should have.
1425 */
1426 bytes = 0;
1427 while (c & 0x40) {
1428 c <<= 1;
1429 bytes++;
1430 }
1431
brian m. carlson28110d42013-07-04 17:19:43 +00001432 /*
1433 * Must be between 1 and 3 more bytes. Longer sequences result in
1434 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1435 */
1436 if (bytes < 1 || 3 < bytes)
Linus Torvalds08a94a12012-06-28 11:24:14 -07001437 return bad_offset;
1438
1439 /* Do we *have* that many bytes? */
1440 if (len < bytes)
1441 return bad_offset;
1442
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001443 /*
1444 * Place the encoded bits at the bottom of the value and compute the
1445 * valid range.
1446 */
brian m. carlson28110d42013-07-04 17:19:43 +00001447 codepoint = (c & 0x7f) >> bytes;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001448 min_val = max_codepoint[bytes-1] + 1;
1449 max_val = max_codepoint[bytes];
brian m. carlson28110d42013-07-04 17:19:43 +00001450
Linus Torvalds08a94a12012-06-28 11:24:14 -07001451 offset += bytes;
1452 len -= bytes;
1453
1454 /* And verify that they are good continuation bytes */
1455 do {
brian m. carlson28110d42013-07-04 17:19:43 +00001456 codepoint <<= 6;
1457 codepoint |= *buf & 0x3f;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001458 if ((*buf++ & 0xc0) != 0x80)
1459 return bad_offset;
1460 } while (--bytes);
1461
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001462 /* Reject codepoints that are out of range for the sequence length. */
1463 if (codepoint < min_val || codepoint > max_val)
brian m. carlson28110d42013-07-04 17:19:43 +00001464 return bad_offset;
1465 /* Surrogates are only for UTF-16 and cannot be encoded in UTF-8. */
1466 if ((codepoint & 0x1ff800) == 0xd800)
1467 return bad_offset;
Peter Krefting81050ac2013-07-09 12:16:33 +01001468 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
Junio C Hamanodc773a62013-08-05 09:52:28 -07001469 if ((codepoint & 0xfffe) == 0xfffe)
Peter Krefting81050ac2013-07-09 12:16:33 +01001470 return bad_offset;
1471 /* So are anything in the range U+FDD0..U+FDEF. */
1472 if (codepoint >= 0xfdd0 && codepoint <= 0xfdef)
brian m. carlson28110d42013-07-04 17:19:43 +00001473 return bad_offset;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001474 }
1475 return -1;
1476}
1477
1478/*
1479 * This verifies that the buffer is in proper utf8 format.
1480 *
1481 * If it isn't, it assumes any non-utf8 characters are Latin1,
1482 * and does the conversion.
Linus Torvalds08a94a12012-06-28 11:24:14 -07001483 */
1484static int verify_utf8(struct strbuf *buf)
1485{
1486 int ok = 1;
1487 long pos = 0;
1488
1489 for (;;) {
1490 int bad;
1491 unsigned char c;
1492 unsigned char replace[2];
1493
1494 bad = find_invalid_utf8(buf->buf + pos, buf->len - pos);
1495 if (bad < 0)
1496 return ok;
1497 pos += bad;
1498 ok = 0;
1499 c = buf->buf[pos];
1500 strbuf_remove(buf, pos, 1);
1501
1502 /* We know 'c' must be in the range 128-255 */
1503 replace[0] = 0xc0 + (c >> 6);
1504 replace[1] = 0x80 + (c & 0x3f);
1505 strbuf_insert(buf, pos, replace, 2);
1506 pos += 2;
1507 }
1508}
1509
Jeff King40d52ff2010-04-01 20:05:23 -04001510static const char commit_utf8_warn[] =
Vasco Almeida4fa4b312016-09-19 13:08:16 +00001511N_("Warning: commit message did not conform to UTF-8.\n"
1512 "You may want to amend it after fixing the message, or set the config\n"
1513 "variable i18n.commitencoding to the encoding your project uses.\n");
Jeff King40d52ff2010-04-01 20:05:23 -04001514
Jeff King3ffefb52014-06-10 17:36:52 -04001515int commit_tree_extended(const char *msg, size_t msg_len,
1516 const unsigned char *tree,
Junio C Hamano5231c632011-11-07 16:21:32 -08001517 struct commit_list *parents, unsigned char *ret,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001518 const char *author, const char *sign_commit,
1519 struct commit_extra_header *extra)
Jeff King40d52ff2010-04-01 20:05:23 -04001520{
1521 int result;
1522 int encoding_is_utf8;
1523 struct strbuf buffer;
1524
1525 assert_sha1_type(tree, OBJ_TREE);
1526
Jeff King3ffefb52014-06-10 17:36:52 -04001527 if (memchr(msg, '\0', msg_len))
Nguyễn Thái Ngọc Duy37576c12011-12-15 20:47:23 +07001528 return error("a NUL byte in commit log message not allowed.");
1529
Jeff King40d52ff2010-04-01 20:05:23 -04001530 /* Not having i18n.commitencoding is the same as having utf-8 */
1531 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
1532
1533 strbuf_init(&buffer, 8192); /* should avoid reallocs for the headers */
1534 strbuf_addf(&buffer, "tree %s\n", sha1_to_hex(tree));
1535
1536 /*
1537 * NOTE! This ordering means that the same exact tree merged with a
1538 * different order of parents will be a _different_ changeset even
1539 * if everything else stays the same.
1540 */
1541 while (parents) {
René Scharfee510ab82015-10-24 18:21:31 +02001542 struct commit *parent = pop_commit(&parents);
Jeff King40d52ff2010-04-01 20:05:23 -04001543 strbuf_addf(&buffer, "parent %s\n",
brian m. carlsonf2fd0762015-11-10 02:22:28 +00001544 oid_to_hex(&parent->object.oid));
Jeff King40d52ff2010-04-01 20:05:23 -04001545 }
1546
1547 /* Person/date information */
1548 if (!author)
Jeff Kingf9bc5732012-05-24 19:28:40 -04001549 author = git_author_info(IDENT_STRICT);
Jeff King40d52ff2010-04-01 20:05:23 -04001550 strbuf_addf(&buffer, "author %s\n", author);
Jeff Kingf9bc5732012-05-24 19:28:40 -04001551 strbuf_addf(&buffer, "committer %s\n", git_committer_info(IDENT_STRICT));
Jeff King40d52ff2010-04-01 20:05:23 -04001552 if (!encoding_is_utf8)
1553 strbuf_addf(&buffer, "encoding %s\n", git_commit_encoding);
Junio C Hamano5231c632011-11-07 16:21:32 -08001554
1555 while (extra) {
1556 add_extra_header(&buffer, extra);
1557 extra = extra->next;
1558 }
Jeff King40d52ff2010-04-01 20:05:23 -04001559 strbuf_addch(&buffer, '\n');
1560
1561 /* And add the comment */
Jeff King3ffefb52014-06-10 17:36:52 -04001562 strbuf_add(&buffer, msg, msg_len);
Jeff King40d52ff2010-04-01 20:05:23 -04001563
1564 /* And check the encoding */
Linus Torvalds08a94a12012-06-28 11:24:14 -07001565 if (encoding_is_utf8 && !verify_utf8(&buffer))
Vasco Almeida4fa4b312016-09-19 13:08:16 +00001566 fprintf(stderr, _(commit_utf8_warn));
Jeff King40d52ff2010-04-01 20:05:23 -04001567
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001568 if (sign_commit && do_sign_commit(&buffer, sign_commit))
1569 return -1;
1570
Jeff King40d52ff2010-04-01 20:05:23 -04001571 result = write_sha1_file(buffer.buf, buffer.len, commit_type, ret);
1572 strbuf_release(&buffer);
1573 return result;
1574}
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001575
René Scharfebeb518c2016-08-13 14:11:27 +02001576void set_merge_remote_desc(struct commit *commit,
1577 const char *name, struct object *obj)
1578{
1579 struct merge_remote_desc *desc;
René Scharfe5447a762016-08-13 14:21:27 +02001580 FLEX_ALLOC_STR(desc, name, name);
René Scharfebeb518c2016-08-13 14:11:27 +02001581 desc->obj = obj;
René Scharfebeb518c2016-08-13 14:11:27 +02001582 commit->util = desc;
1583}
1584
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001585struct commit *get_merge_parent(const char *name)
1586{
1587 struct object *obj;
1588 struct commit *commit;
brian m. carlson7683e2e2015-03-13 23:39:34 +00001589 struct object_id oid;
1590 if (get_sha1(name, oid.hash))
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001591 return NULL;
brian m. carlson7683e2e2015-03-13 23:39:34 +00001592 obj = parse_object(oid.hash);
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001593 commit = (struct commit *)peel_to_type(name, 0, obj, OBJ_COMMIT);
René Scharfebeb518c2016-08-13 14:11:27 +02001594 if (commit && !commit->util)
1595 set_merge_remote_desc(commit, name, obj);
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001596 return commit;
1597}
René Scharfe89b5f1d2012-04-25 22:35:27 +02001598
1599/*
1600 * Append a commit to the end of the commit_list.
1601 *
1602 * next starts by pointing to the variable that holds the head of an
1603 * empty commit_list, and is updated to point to the "next" field of
1604 * the last item on the list as new commits are appended.
1605 *
1606 * Usage example:
1607 *
1608 * struct commit_list *list;
1609 * struct commit_list **next = &list;
1610 *
1611 * next = commit_list_append(c1, next);
1612 * next = commit_list_append(c2, next);
1613 * assert(commit_list_count(list) == 2);
1614 * return list;
1615 */
1616struct commit_list **commit_list_append(struct commit *commit,
1617 struct commit_list **next)
1618{
1619 struct commit_list *new = xmalloc(sizeof(struct commit_list));
1620 new->item = commit;
1621 *next = new;
1622 new->next = NULL;
1623 return &new->next;
1624}
Nguyễn Thái Ngọc Duyefc7df42012-10-26 22:53:51 +07001625
Jeff Kingfe6eb7f2014-08-27 03:56:01 -04001626const char *find_commit_header(const char *msg, const char *key, size_t *out_len)
1627{
1628 int key_len = strlen(key);
1629 const char *line = msg;
1630
1631 while (line) {
1632 const char *eol = strchrnul(line, '\n');
1633
1634 if (line == eol)
1635 return NULL;
1636
1637 if (eol - line > key_len &&
1638 !strncmp(line, key, key_len) &&
1639 line[key_len] == ' ') {
1640 *out_len = eol - line - key_len - 1;
1641 return line + key_len + 1;
1642 }
1643 line = *eol ? eol + 1 : NULL;
1644 }
1645 return NULL;
1646}
Junio C Hamano0ed8a4e2014-12-22 12:26:23 -08001647
Christian Couder8c384582014-11-09 10:23:41 +01001648/*
Jonathan Tan710714a2016-11-02 10:29:17 -07001649 * Inspect the given string and determine the true "end" of the log message, in
Christian Couder8c384582014-11-09 10:23:41 +01001650 * order to find where to put a new Signed-off-by: line. Ignored are
1651 * trailing comment lines and blank lines, and also the traditional
1652 * "Conflicts:" block that is not commented out, so that we can use
1653 * "git commit -s --amend" on an existing commit that forgot to remove
1654 * it.
1655 *
1656 * Returns the number of bytes from the tail to ignore, to be fed as
1657 * the second parameter to append_signoff().
1658 */
Jonathan Tan710714a2016-11-02 10:29:17 -07001659int ignore_non_trailer(const char *buf, size_t len)
Christian Couder8c384582014-11-09 10:23:41 +01001660{
1661 int boc = 0;
1662 int bol = 0;
1663 int in_old_conflicts_block = 0;
1664
Jonathan Tan710714a2016-11-02 10:29:17 -07001665 while (bol < len) {
1666 const char *next_line = memchr(buf + bol, '\n', len - bol);
Christian Couder8c384582014-11-09 10:23:41 +01001667
Jonathan Tan710714a2016-11-02 10:29:17 -07001668 if (!next_line)
1669 next_line = buf + len;
Christian Couder8c384582014-11-09 10:23:41 +01001670 else
1671 next_line++;
1672
Jonathan Tan710714a2016-11-02 10:29:17 -07001673 if (buf[bol] == comment_line_char || buf[bol] == '\n') {
Christian Couder8c384582014-11-09 10:23:41 +01001674 /* is this the first of the run of comments? */
1675 if (!boc)
1676 boc = bol;
1677 /* otherwise, it is just continuing */
Jonathan Tan710714a2016-11-02 10:29:17 -07001678 } else if (starts_with(buf + bol, "Conflicts:\n")) {
Christian Couder8c384582014-11-09 10:23:41 +01001679 in_old_conflicts_block = 1;
1680 if (!boc)
1681 boc = bol;
Jonathan Tan710714a2016-11-02 10:29:17 -07001682 } else if (in_old_conflicts_block && buf[bol] == '\t') {
Christian Couder8c384582014-11-09 10:23:41 +01001683 ; /* a pathname in the conflicts block */
1684 } else if (boc) {
1685 /* the previous was not trailing comment */
1686 boc = 0;
1687 in_old_conflicts_block = 0;
1688 }
Jonathan Tan710714a2016-11-02 10:29:17 -07001689 bol = next_line - buf;
Christian Couder8c384582014-11-09 10:23:41 +01001690 }
Jonathan Tan710714a2016-11-02 10:29:17 -07001691 return boc ? len - boc : 0;
Christian Couder8c384582014-11-09 10:23:41 +01001692}