blob: 0d325328723e6915696530f1b8033dbd6cc7a620 [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"
Brian Malehornd76650b2017-05-15 23:06:49 -070014#include "wt-status.h"
Daniel Barkalow175785e2005-04-18 11:39:48 -070015
Junio C Hamano82a75292012-09-15 13:58:15 -070016static struct commit_extra_header *read_commit_extra_header_lines(const char *buf, size_t len, const char **);
17
Linus Torvalds60ab26d2005-09-15 14:43:17 -070018int save_commit_buffer = 1;
19
Daniel Barkalow175785e2005-04-18 11:39:48 -070020const char *commit_type = "commit";
21
brian m. carlsonbc832662017-05-06 22:10:10 +000022struct commit *lookup_commit_reference_gently(const struct object_id *oid,
Junio C Hamanof76412e2005-08-21 02:51:10 -070023 int quiet)
Linus Torvalds961784e2005-05-18 16:14:22 -070024{
brian m. carlsonc251c832017-05-06 22:10:38 +000025 struct object *obj = deref_tag(parse_object(oid), NULL, 0);
Linus Torvalds961784e2005-05-18 16:14:22 -070026
27 if (!obj)
28 return NULL;
Jeff King8ff226a2014-07-13 02:42:03 -040029 return object_as_type(obj, OBJ_COMMIT, quiet);
Junio C Hamanof76412e2005-08-21 02:51:10 -070030}
31
brian m. carlsonbc832662017-05-06 22:10:10 +000032struct commit *lookup_commit_reference(const struct object_id *oid)
Junio C Hamanof76412e2005-08-21 02:51:10 -070033{
brian m. carlsonbc832662017-05-06 22:10:10 +000034 return lookup_commit_reference_gently(oid, 0);
Linus Torvalds961784e2005-05-18 16:14:22 -070035}
36
brian m. carlsonbc832662017-05-06 22:10:10 +000037struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref_name)
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100038{
brian m. carlsonbc832662017-05-06 22:10:10 +000039 struct commit *c = lookup_commit_reference(oid);
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100040 if (!c)
41 die(_("could not parse %s"), ref_name);
brian m. carlsonbc832662017-05-06 22:10:10 +000042 if (oidcmp(oid, &c->object.oid)) {
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100043 warning(_("%s %s is not a commit!"),
brian m. carlsonbc832662017-05-06 22:10:10 +000044 ref_name, oid_to_hex(oid));
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100045 }
46 return c;
47}
48
brian m. carlsonbc832662017-05-06 22:10:10 +000049struct commit *lookup_commit(const struct object_id *oid)
Daniel Barkalow175785e2005-04-18 11:39:48 -070050{
brian m. carlsonbc832662017-05-06 22:10:10 +000051 struct object *obj = lookup_object(oid->hash);
Jeff Kingd36f51c2014-07-13 02:41:55 -040052 if (!obj)
brian m. carlsonbc832662017-05-06 22:10:10 +000053 return create_object(oid->hash, alloc_commit_node());
Jeff King8ff226a2014-07-13 02:42:03 -040054 return object_as_type(obj, OBJ_COMMIT, 0);
Daniel Barkalow175785e2005-04-18 11:39:48 -070055}
56
Pat Notza6fa5992010-11-02 13:59:07 -060057struct commit *lookup_commit_reference_by_name(const char *name)
58{
brian m. carlson7683e2e2015-03-13 23:39:34 +000059 struct object_id oid;
Pat Notza6fa5992010-11-02 13:59:07 -060060 struct commit *commit;
61
brian m. carlsone82caf32017-07-13 23:49:28 +000062 if (get_oid_committish(name, &oid))
Pat Notza6fa5992010-11-02 13:59:07 -060063 return NULL;
brian m. carlsonbc832662017-05-06 22:10:10 +000064 commit = lookup_commit_reference(&oid);
Jeff King5e7d4d32013-10-24 04:53:19 -040065 if (parse_commit(commit))
Pat Notza6fa5992010-11-02 13:59:07 -060066 return NULL;
67 return commit;
68}
69
Johannes Schindelindddbad72017-04-26 21:29:31 +020070static timestamp_t parse_commit_date(const char *buf, const char *tail)
Daniel Barkalow175785e2005-04-18 11:39:48 -070071{
Martin Koegler0a617792008-01-19 18:35:23 +010072 const char *dateptr;
Daniel Barkalow175785e2005-04-18 11:39:48 -070073
Martin Koegler0a617792008-01-19 18:35:23 +010074 if (buf + 6 >= tail)
75 return 0;
Daniel Barkalow175785e2005-04-18 11:39:48 -070076 if (memcmp(buf, "author", 6))
77 return 0;
Martin Koegler0a617792008-01-19 18:35:23 +010078 while (buf < tail && *buf++ != '\n')
Daniel Barkalow175785e2005-04-18 11:39:48 -070079 /* nada */;
Martin Koegler0a617792008-01-19 18:35:23 +010080 if (buf + 9 >= tail)
81 return 0;
Daniel Barkalow175785e2005-04-18 11:39:48 -070082 if (memcmp(buf, "committer", 9))
83 return 0;
Martin Koegler0a617792008-01-19 18:35:23 +010084 while (buf < tail && *buf++ != '>')
Daniel Barkalow175785e2005-04-18 11:39:48 -070085 /* nada */;
Martin Koegler0a617792008-01-19 18:35:23 +010086 if (buf >= tail)
87 return 0;
88 dateptr = buf;
89 while (buf < tail && *buf++ != '\n')
90 /* nada */;
91 if (buf >= tail)
92 return 0;
Johannes Schindelin1aeb7e72017-04-21 12:45:44 +020093 /* dateptr < buf && buf[-1] == '\n', so parsing will stop at buf-1 */
94 return parse_timestamp(dateptr, NULL, 10);
Daniel Barkalow175785e2005-04-18 11:39:48 -070095}
96
Junio C Hamano5040f172006-04-06 23:58:51 -070097static struct commit_graft **commit_graft;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -070098static int commit_graft_alloc, commit_graft_nr;
99
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +0400100static const unsigned char *commit_graft_sha1_access(size_t index, void *table)
101{
102 struct commit_graft **commit_graft_table = table;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000103 return commit_graft_table[index]->oid.hash;
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +0400104}
105
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700106static int commit_graft_pos(const unsigned char *sha1)
107{
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +0400108 return sha1_pos(sha1, commit_graft, commit_graft_nr,
109 commit_graft_sha1_access);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700110}
111
Junio C Hamano5040f172006-04-06 23:58:51 -0700112int register_commit_graft(struct commit_graft *graft, int ignore_dups)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700113{
brian m. carlson7683e2e2015-03-13 23:39:34 +0000114 int pos = commit_graft_pos(graft->oid.hash);
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700115
Junio C Hamano5040f172006-04-06 23:58:51 -0700116 if (0 <= pos) {
117 if (ignore_dups)
118 free(graft);
119 else {
120 free(commit_graft[pos]);
121 commit_graft[pos] = graft;
122 }
123 return 1;
124 }
125 pos = -pos - 1;
Dmitry S. Dolzhenkod6e82b52014-03-04 02:31:52 +0400126 ALLOC_GROW(commit_graft, commit_graft_nr + 1, commit_graft_alloc);
127 commit_graft_nr++;
Junio C Hamano5040f172006-04-06 23:58:51 -0700128 if (pos < commit_graft_nr)
129 memmove(commit_graft + pos + 1,
130 commit_graft + pos,
131 (commit_graft_nr - pos - 1) *
132 sizeof(*commit_graft));
133 commit_graft[pos] = graft;
134 return 0;
135}
136
Patryk Obara9a934032017-08-18 20:33:12 +0200137struct commit_graft *read_graft_line(struct strbuf *line)
Junio C Hamano5040f172006-04-06 23:58:51 -0700138{
139 /* The format is just "Commit Parent1 Parent2 ...\n" */
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200140 int i, phase;
141 const char *tail = NULL;
Junio C Hamano5040f172006-04-06 23:58:51 -0700142 struct commit_graft *graft = NULL;
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200143 struct object_id dummy_oid, *oid;
Junio C Hamano5040f172006-04-06 23:58:51 -0700144
Patryk Obara9a934032017-08-18 20:33:12 +0200145 strbuf_rtrim(line);
146 if (!line->len || line->buf[0] == '#')
Junio C Hamano5bc4ce52006-04-16 14:24:56 -0700147 return NULL;
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200148 /*
149 * phase 0 verifies line, counts hashes in line and allocates graft
150 * phase 1 fills graft
151 */
152 for (phase = 0; phase < 2; phase++) {
153 oid = graft ? &graft->oid : &dummy_oid;
154 if (parse_oid_hex(line->buf, oid, &tail))
Junio C Hamano5040f172006-04-06 23:58:51 -0700155 goto bad_graft_data;
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200156 for (i = 0; *tail != '\0'; i++) {
157 oid = graft ? &graft->parent[i] : &dummy_oid;
158 if (!isspace(*tail++) || parse_oid_hex(tail, oid, &tail))
159 goto bad_graft_data;
160 }
161 if (!graft) {
162 graft = xmalloc(st_add(sizeof(*graft),
163 st_mult(sizeof(struct object_id), i)));
164 graft->nr_parent = i;
165 }
Junio C Hamano5040f172006-04-06 23:58:51 -0700166 }
167 return graft;
Ralf Thielowdf5d43b2010-12-01 20:15:59 +0100168
169bad_graft_data:
Patryk Obara9a934032017-08-18 20:33:12 +0200170 error("bad graft data: %s", line->buf);
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200171 assert(!graft);
Ralf Thielowdf5d43b2010-12-01 20:15:59 +0100172 return NULL;
Junio C Hamano5040f172006-04-06 23:58:51 -0700173}
174
Nanako Shiraishic5ae6432008-10-02 19:14:30 +0900175static int read_graft_file(const char *graft_file)
Junio C Hamano5040f172006-04-06 23:58:51 -0700176{
Nguyễn Thái Ngọc Duye9d983f2017-05-03 17:16:50 +0700177 FILE *fp = fopen_or_warn(graft_file, "r");
Johannes Schindeline228c172013-12-27 21:49:57 +0100178 struct strbuf buf = STRBUF_INIT;
Junio C Hamano5040f172006-04-06 23:58:51 -0700179 if (!fp)
180 return -1;
Johannes Schindeline228c172013-12-27 21:49:57 +0100181 while (!strbuf_getwholeline(&buf, fp, '\n')) {
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700182 /* The format is just "Commit Parent1 Parent2 ...\n" */
Patryk Obara9a934032017-08-18 20:33:12 +0200183 struct commit_graft *graft = read_graft_line(&buf);
Junio C Hamano5bc4ce52006-04-16 14:24:56 -0700184 if (!graft)
185 continue;
Junio C Hamano5040f172006-04-06 23:58:51 -0700186 if (register_commit_graft(graft, 1))
Johannes Schindeline228c172013-12-27 21:49:57 +0100187 error("duplicate graft data: %s", buf.buf);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700188 }
189 fclose(fp);
Johannes Schindeline228c172013-12-27 21:49:57 +0100190 strbuf_release(&buf);
Junio C Hamano5040f172006-04-06 23:58:51 -0700191 return 0;
192}
193
194static void prepare_commit_graft(void)
195{
196 static int commit_graft_prepared;
197 char *graft_file;
198
199 if (commit_graft_prepared)
200 return;
201 graft_file = get_graft_file();
202 read_graft_file(graft_file);
Johannes Schindelined09aef2006-10-30 20:09:06 +0100203 /* make sure shallows are read */
204 is_repository_shallow();
Junio C Hamano5040f172006-04-06 23:58:51 -0700205 commit_graft_prepared = 1;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700206}
207
Stefan Beller8b65a342017-07-12 17:44:14 -0700208struct commit_graft *lookup_commit_graft(const struct object_id *oid)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700209{
210 int pos;
Junio C Hamano5040f172006-04-06 23:58:51 -0700211 prepare_commit_graft();
Stefan Beller8b65a342017-07-12 17:44:14 -0700212 pos = commit_graft_pos(oid->hash);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700213 if (pos < 0)
214 return NULL;
215 return commit_graft[pos];
216}
217
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700218int for_each_commit_graft(each_commit_graft_fn fn, void *cb_data)
Johannes Schindelined09aef2006-10-30 20:09:06 +0100219{
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700220 int i, ret;
221 for (i = ret = 0; i < commit_graft_nr && !ret; i++)
222 ret = fn(commit_graft[i], cb_data);
223 return ret;
Johannes Schindelined09aef2006-10-30 20:09:06 +0100224}
225
brian m. carlsone92b8482017-05-06 22:10:06 +0000226int unregister_shallow(const struct object_id *oid)
Johannes Schindelinf53514b2006-10-30 20:09:53 +0100227{
brian m. carlsone92b8482017-05-06 22:10:06 +0000228 int pos = commit_graft_pos(oid->hash);
Johannes Schindelinf53514b2006-10-30 20:09:53 +0100229 if (pos < 0)
230 return -1;
231 if (pos + 1 < commit_graft_nr)
René Scharfef331ab92017-07-15 22:00:45 +0200232 MOVE_ARRAY(commit_graft + pos, commit_graft + pos + 1,
233 commit_graft_nr - pos - 1);
Johannes Schindelinf53514b2006-10-30 20:09:53 +0100234 commit_graft_nr--;
235 return 0;
236}
237
Jeff King8597ea32014-06-10 17:44:13 -0400238struct commit_buffer {
239 void *buffer;
240 unsigned long size;
241};
242define_commit_slab(buffer_slab, struct commit_buffer);
Jeff Kingc1b3c712014-06-10 17:43:02 -0400243static struct buffer_slab buffer_slab = COMMIT_SLAB_INIT(1, buffer_slab);
244
Jeff King8597ea32014-06-10 17:44:13 -0400245void set_commit_buffer(struct commit *commit, void *buffer, unsigned long size)
Jeff King66c28272014-06-10 17:40:14 -0400246{
Jeff King8597ea32014-06-10 17:44:13 -0400247 struct commit_buffer *v = buffer_slab_at(&buffer_slab, commit);
248 v->buffer = buffer;
249 v->size = size;
Jeff King66c28272014-06-10 17:40:14 -0400250}
251
Jeff King8597ea32014-06-10 17:44:13 -0400252const void *get_cached_commit_buffer(const struct commit *commit, unsigned long *sizep)
Jeff King152ff1c2014-06-10 17:40:39 -0400253{
Junio C Hamano862e7302015-05-14 15:25:52 -0700254 struct commit_buffer *v = buffer_slab_peek(&buffer_slab, commit);
255 if (!v) {
256 if (sizep)
257 *sizep = 0;
258 return NULL;
259 }
Jeff King8597ea32014-06-10 17:44:13 -0400260 if (sizep)
261 *sizep = v->size;
262 return v->buffer;
Jeff King152ff1c2014-06-10 17:40:39 -0400263}
264
Jeff King8597ea32014-06-10 17:44:13 -0400265const void *get_commit_buffer(const struct commit *commit, unsigned long *sizep)
Jeff King152ff1c2014-06-10 17:40:39 -0400266{
Jeff King8597ea32014-06-10 17:44:13 -0400267 const void *ret = get_cached_commit_buffer(commit, sizep);
Jeff King152ff1c2014-06-10 17:40:39 -0400268 if (!ret) {
269 enum object_type type;
270 unsigned long size;
brian m. carlsoned1c9972015-11-10 02:22:29 +0000271 ret = read_sha1_file(commit->object.oid.hash, &type, &size);
Jeff King152ff1c2014-06-10 17:40:39 -0400272 if (!ret)
273 die("cannot read commit object %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000274 oid_to_hex(&commit->object.oid));
Jeff King152ff1c2014-06-10 17:40:39 -0400275 if (type != OBJ_COMMIT)
276 die("expected commit for %s, got %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000277 oid_to_hex(&commit->object.oid), typename(type));
Jeff King8597ea32014-06-10 17:44:13 -0400278 if (sizep)
279 *sizep = size;
Jeff King152ff1c2014-06-10 17:40:39 -0400280 }
281 return ret;
282}
283
284void unuse_commit_buffer(const struct commit *commit, const void *buffer)
285{
Junio C Hamano862e7302015-05-14 15:25:52 -0700286 struct commit_buffer *v = buffer_slab_peek(&buffer_slab, commit);
287 if (!(v && v->buffer == buffer))
Jeff King152ff1c2014-06-10 17:40:39 -0400288 free((void *)buffer);
289}
290
Jeff King0fb370d2014-06-12 18:05:37 -0400291void free_commit_buffer(struct commit *commit)
292{
Junio C Hamano862e7302015-05-14 15:25:52 -0700293 struct commit_buffer *v = buffer_slab_peek(&buffer_slab, commit);
294 if (v) {
Ævar Arnfjörð Bjarmason6a83d902017-06-15 23:15:46 +0000295 FREE_AND_NULL(v->buffer);
Junio C Hamano862e7302015-05-14 15:25:52 -0700296 v->size = 0;
297 }
Jeff King0fb370d2014-06-12 18:05:37 -0400298}
299
Jeff King8597ea32014-06-10 17:44:13 -0400300const void *detach_commit_buffer(struct commit *commit, unsigned long *sizep)
Jeff King0fb370d2014-06-12 18:05:37 -0400301{
Junio C Hamano862e7302015-05-14 15:25:52 -0700302 struct commit_buffer *v = buffer_slab_peek(&buffer_slab, commit);
Jeff King8597ea32014-06-10 17:44:13 -0400303 void *ret;
304
Junio C Hamano862e7302015-05-14 15:25:52 -0700305 if (!v) {
306 if (sizep)
307 *sizep = 0;
308 return NULL;
309 }
Jeff King8597ea32014-06-10 17:44:13 -0400310 ret = v->buffer;
311 if (sizep)
312 *sizep = v->size;
313
314 v->buffer = NULL;
315 v->size = 0;
Jeff King0fb370d2014-06-12 18:05:37 -0400316 return ret;
317}
318
Nguyễn Thái Ngọc Duycf7b1ca2011-02-05 17:52:20 +0700319int parse_commit_buffer(struct commit *item, const void *buffer, unsigned long size)
Daniel Barkalow175785e2005-04-18 11:39:48 -0700320{
Nguyễn Thái Ngọc Duycf7b1ca2011-02-05 17:52:20 +0700321 const char *tail = buffer;
322 const char *bufptr = buffer;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000323 struct object_id parent;
Linus Torvalds6c88be12005-06-20 20:26:03 -0700324 struct commit_list **pptr;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700325 struct commit_graft *graft;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000326 const int tree_entry_len = GIT_SHA1_HEXSZ + 5;
327 const int parent_entry_len = GIT_SHA1_HEXSZ + 7;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400328
Daniel Barkalow175785e2005-04-18 11:39:48 -0700329 if (item->object.parsed)
330 return 0;
331 item->object.parsed = 1;
Junio C Hamano3b44f152006-06-28 03:51:00 -0700332 tail += size;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000333 if (tail <= bufptr + tree_entry_len + 1 || memcmp(bufptr, "tree ", 5) ||
334 bufptr[tree_entry_len] != '\n')
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000335 return error("bogus commit object %s", oid_to_hex(&item->object.oid));
brian m. carlson7683e2e2015-03-13 23:39:34 +0000336 if (get_sha1_hex(bufptr + 5, parent.hash) < 0)
Junio C Hamanobd2afde2006-02-22 17:47:10 -0800337 return error("bad tree pointer in commit %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000338 oid_to_hex(&item->object.oid));
brian m. carlson740ee052017-05-06 22:10:17 +0000339 item->tree = lookup_tree(&parent);
brian m. carlson7683e2e2015-03-13 23:39:34 +0000340 bufptr += tree_entry_len + 1; /* "tree " + "hex sha1" + "\n" */
Linus Torvalds6c88be12005-06-20 20:26:03 -0700341 pptr = &item->parents;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700342
Stefan Beller8b65a342017-07-12 17:44:14 -0700343 graft = lookup_commit_graft(&item->object.oid);
brian m. carlson7683e2e2015-03-13 23:39:34 +0000344 while (bufptr + parent_entry_len < tail && !memcmp(bufptr, "parent ", 7)) {
Linus Torvaldsf7cc77d2005-07-27 15:12:48 -0700345 struct commit *new_parent;
346
brian m. carlson7683e2e2015-03-13 23:39:34 +0000347 if (tail <= bufptr + parent_entry_len + 1 ||
348 get_sha1_hex(bufptr + 7, parent.hash) ||
349 bufptr[parent_entry_len] != '\n')
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000350 return error("bad parents in commit %s", oid_to_hex(&item->object.oid));
brian m. carlson7683e2e2015-03-13 23:39:34 +0000351 bufptr += parent_entry_len + 1;
Johannes Schindelin7f3140c2009-07-23 17:33:49 +0200352 /*
353 * The clone is shallow if nr_parent < 0, and we must
354 * not traverse its real parents even when we unhide them.
355 */
356 if (graft && (graft->nr_parent < 0 || grafts_replace_parents))
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700357 continue;
brian m. carlsonbc832662017-05-06 22:10:10 +0000358 new_parent = lookup_commit(&parent);
Miklos Vajna39468de2008-06-07 22:38:37 +0200359 if (new_parent)
Linus Torvalds6c88be12005-06-20 20:26:03 -0700360 pptr = &commit_list_insert(new_parent, pptr)->next;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700361 }
362 if (graft) {
363 int i;
364 struct commit *new_parent;
365 for (i = 0; i < graft->nr_parent; i++) {
brian m. carlsonbc832662017-05-06 22:10:10 +0000366 new_parent = lookup_commit(&graft->parent[i]);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700367 if (!new_parent)
368 continue;
369 pptr = &commit_list_insert(new_parent, pptr)->next;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700370 }
Daniel Barkalow175785e2005-04-18 11:39:48 -0700371 }
Martin Koegler0a617792008-01-19 18:35:23 +0100372 item->date = parse_commit_date(bufptr, tail);
Junio C Hamano27dedf02005-11-16 21:32:44 -0800373
Daniel Barkalow175785e2005-04-18 11:39:48 -0700374 return 0;
375}
376
Jeff King9cc2b072015-06-01 05:56:26 -0400377int parse_commit_gently(struct commit *item, int quiet_on_missing)
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400378{
Nicolas Pitre21666f12007-02-26 14:55:59 -0500379 enum object_type type;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400380 void *buffer;
381 unsigned long size;
382 int ret;
383
Martin Koegler9786f682008-02-18 21:48:02 +0100384 if (!item)
385 return -1;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400386 if (item->object.parsed)
387 return 0;
brian m. carlsoned1c9972015-11-10 02:22:29 +0000388 buffer = read_sha1_file(item->object.oid.hash, &type, &size);
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400389 if (!buffer)
Jeff King9cc2b072015-06-01 05:56:26 -0400390 return quiet_on_missing ? -1 :
391 error("Could not read %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000392 oid_to_hex(&item->object.oid));
Nicolas Pitre21666f12007-02-26 14:55:59 -0500393 if (type != OBJ_COMMIT) {
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400394 free(buffer);
395 return error("Object %s not a commit",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000396 oid_to_hex(&item->object.oid));
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400397 }
398 ret = parse_commit_buffer(item, buffer, size);
Linus Torvalds60ab26d2005-09-15 14:43:17 -0700399 if (save_commit_buffer && !ret) {
Jeff King8597ea32014-06-10 17:44:13 -0400400 set_commit_buffer(item, buffer, size);
Linus Torvalds3ff1fbb2005-05-25 18:27:14 -0700401 return 0;
402 }
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400403 free(buffer);
404 return ret;
405}
406
Jeff King7059dcc2013-10-24 04:52:36 -0400407void parse_commit_or_die(struct commit *item)
408{
409 if (parse_commit(item))
410 die("unable to parse commit %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000411 item ? oid_to_hex(&item->object.oid) : "(null)");
Jeff King7059dcc2013-10-24 04:52:36 -0400412}
413
Christian Couder11af2aa2010-07-22 15:18:30 +0200414int find_commit_subject(const char *commit_buffer, const char **subject)
415{
416 const char *eol;
417 const char *p = commit_buffer;
418
419 while (*p && (*p != '\n' || p[1] != '\n'))
420 p++;
421 if (*p) {
Johannes Schindelin4e1b06d2016-06-22 22:20:20 +0200422 p = skip_blank_lines(p + 2);
Junio C Hamano9c9b03b2017-01-27 18:01:41 -0800423 eol = strchrnul(p, '\n');
Christian Couder11af2aa2010-07-22 15:18:30 +0200424 } else
425 eol = p;
426
427 *subject = p;
428
429 return eol - p;
430}
431
Linus Torvaldsac5155e2005-05-30 18:44:02 -0700432struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700433{
Christopher Li812666c2005-04-26 12:00:58 -0700434 struct commit_list *new_list = xmalloc(sizeof(struct commit_list));
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700435 new_list->item = item;
436 new_list->next = *list_p;
437 *list_p = new_list;
Linus Torvaldsac5155e2005-05-30 18:44:02 -0700438 return new_list;
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700439}
440
Miklos Vajna65319472008-06-27 18:21:55 +0200441unsigned commit_list_count(const struct commit_list *l)
442{
443 unsigned c = 0;
444 for (; l; l = l->next )
445 c++;
446 return c;
447}
448
Thomas Rast53d00b32013-07-31 22:13:20 +0200449struct commit_list *copy_commit_list(struct commit_list *list)
450{
451 struct commit_list *head = NULL;
452 struct commit_list **pp = &head;
453 while (list) {
René Scharfecb979db2014-07-10 11:47:47 +0200454 pp = commit_list_append(list->item, pp);
Thomas Rast53d00b32013-07-31 22:13:20 +0200455 list = list->next;
456 }
457 return head;
458}
459
Daniel Barkalow175785e2005-04-18 11:39:48 -0700460void free_commit_list(struct commit_list *list)
461{
René Scharfee510ab82015-10-24 18:21:31 +0200462 while (list)
463 pop_commit(&list);
Daniel Barkalow175785e2005-04-18 11:39:48 -0700464}
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700465
Thiago Farina47e44ed2010-11-26 23:58:14 -0200466struct commit_list * commit_list_insert_by_date(struct commit *item, struct commit_list **list)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700467{
468 struct commit_list **pp = list;
469 struct commit_list *p;
470 while ((p = *pp) != NULL) {
471 if (p->item->date < item->date) {
472 break;
473 }
474 pp = &p->next;
475 }
Linus Torvaldsf7554942005-07-06 09:31:17 -0700476 return commit_list_insert(item, pp);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700477}
478
René Scharfe46905892012-04-01 00:10:39 +0200479static int commit_list_compare_by_date(const void *a, const void *b)
480{
Johannes Schindelindddbad72017-04-26 21:29:31 +0200481 timestamp_t a_date = ((const struct commit_list *)a)->item->date;
482 timestamp_t b_date = ((const struct commit_list *)b)->item->date;
René Scharfe46905892012-04-01 00:10:39 +0200483 if (a_date < b_date)
484 return 1;
485 if (a_date > b_date)
486 return -1;
487 return 0;
488}
489
490static void *commit_list_get_next(const void *a)
491{
492 return ((const struct commit_list *)a)->next;
493}
494
495static void commit_list_set_next(void *a, void *next)
496{
497 ((struct commit_list *)a)->next = next;
498}
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700499
Thiago Farina47e44ed2010-11-26 23:58:14 -0200500void commit_list_sort_by_date(struct commit_list **list)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700501{
Junio C Hamano7365c952012-04-17 11:07:01 -0700502 *list = llist_mergesort(*list, commit_list_get_next, commit_list_set_next,
503 commit_list_compare_by_date);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700504}
505
Daniel Barkalow58e28af2005-04-23 20:29:22 -0700506struct commit *pop_most_recent_commit(struct commit_list **list,
507 unsigned int mark)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700508{
René Scharfee510ab82015-10-24 18:21:31 +0200509 struct commit *ret = pop_commit(list);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700510 struct commit_list *parents = ret->parents;
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700511
512 while (parents) {
Linus Torvalds4056c092005-04-23 19:21:28 -0700513 struct commit *commit = parents->item;
Martin Koeglerdec38c82008-02-18 21:48:03 +0100514 if (!parse_commit(commit) && !(commit->object.flags & mark)) {
Daniel Barkalow58e28af2005-04-23 20:29:22 -0700515 commit->object.flags |= mark;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200516 commit_list_insert_by_date(commit, list);
Linus Torvalds4056c092005-04-23 19:21:28 -0700517 }
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700518 parents = parents->next;
519 }
520 return ret;
521}
Linus Torvaldse3bc7a32005-06-01 08:34:23 -0700522
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700523static void clear_commit_marks_1(struct commit_list **plist,
524 struct commit *commit, unsigned int mark)
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800525{
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100526 while (commit) {
527 struct commit_list *parents;
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800528
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100529 if (!(mark & commit->object.flags))
530 return;
Junio C Hamano58ecf5c2006-07-04 17:45:22 -0700531
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100532 commit->object.flags &= ~mark;
533
534 parents = commit->parents;
535 if (!parents)
536 return;
537
538 while ((parents = parents->next))
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700539 commit_list_insert(parents->item, plist);
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100540
541 commit = commit->parents->item;
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800542 }
543}
544
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800545void clear_commit_marks_many(int nr, struct commit **commit, unsigned int mark)
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700546{
547 struct commit_list *list = NULL;
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800548
549 while (nr--) {
René Scharfe07f7d552017-12-25 18:43:37 +0100550 clear_commit_marks_1(&list, *commit, mark);
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800551 commit++;
552 }
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700553 while (list)
554 clear_commit_marks_1(&list, pop_commit(&list), mark);
555}
556
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800557void clear_commit_marks(struct commit *commit, unsigned int mark)
558{
559 clear_commit_marks_many(1, &commit, mark);
560}
561
jon@blackcubes.dyndns.orga3437b82005-06-06 15:39:40 +0000562struct commit *pop_commit(struct commit_list **stack)
563{
564 struct commit_list *top = *stack;
565 struct commit *item = top ? top->item : NULL;
566
567 if (top) {
568 *stack = top->next;
569 free(top);
570 }
571 return item;
572}
573
Jon Seymourab580ac2005-07-07 02:39:34 +1000574/*
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700575 * Topological sort support
576 */
Junio C Hamano66eb3752013-04-12 23:25:49 -0700577
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700578/* count number of children that have not been emitted */
579define_commit_slab(indegree_slab, int);
Jeff King96c4f4a2013-04-09 02:52:56 -0400580
Junio C Hamano81c6b382013-06-07 10:35:54 -0700581/* record author-date for each commit object */
582define_commit_slab(author_date_slab, unsigned long);
583
584static void record_author_date(struct author_date_slab *author_date,
585 struct commit *commit)
586{
Jeff King8597ea32014-06-10 17:44:13 -0400587 const char *buffer = get_commit_buffer(commit, NULL);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700588 struct ident_split ident;
Jeff Kingea5517f2014-08-27 03:56:55 -0400589 const char *ident_line;
590 size_t ident_len;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700591 char *date_end;
Johannes Schindelindddbad72017-04-26 21:29:31 +0200592 timestamp_t date;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700593
Jeff Kingea5517f2014-08-27 03:56:55 -0400594 ident_line = find_commit_header(buffer, "author", &ident_len);
595 if (!ident_line)
596 goto fail_exit; /* no author line */
597 if (split_ident_line(&ident, ident_line, ident_len) ||
598 !ident.date_begin || !ident.date_end)
599 goto fail_exit; /* malformed "author" line */
Junio C Hamano81c6b382013-06-07 10:35:54 -0700600
Johannes Schindelin1aeb7e72017-04-21 12:45:44 +0200601 date = parse_timestamp(ident.date_begin, &date_end, 10);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700602 if (date_end != ident.date_end)
603 goto fail_exit; /* malformed date */
604 *(author_date_slab_at(author_date, commit)) = date;
605
606fail_exit:
Jeff Kingba41c1c2014-06-10 17:41:02 -0400607 unuse_commit_buffer(commit, buffer);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700608}
609
610static int compare_commits_by_author_date(const void *a_, const void *b_,
611 void *cb_data)
612{
613 const struct commit *a = a_, *b = b_;
614 struct author_date_slab *author_date = cb_data;
Johannes Schindelindddbad72017-04-26 21:29:31 +0200615 timestamp_t a_date = *(author_date_slab_at(author_date, a));
616 timestamp_t b_date = *(author_date_slab_at(author_date, b));
Junio C Hamano81c6b382013-06-07 10:35:54 -0700617
618 /* newer commits with larger date first */
619 if (a_date < b_date)
620 return 1;
621 else if (a_date > b_date)
622 return -1;
623 return 0;
624}
625
Jeff King727377f2013-07-02 02:21:48 -0400626int compare_commits_by_commit_date(const void *a_, const void *b_, void *unused)
Junio C Hamanoda24b102013-06-06 21:58:12 -0700627{
628 const struct commit *a = a_, *b = b_;
629 /* newer commits with larger date first */
630 if (a->date < b->date)
631 return 1;
632 else if (a->date > b->date)
633 return -1;
634 return 0;
635}
636
Jon Seymourab580ac2005-07-07 02:39:34 +1000637/*
638 * Performs an in-place topological sort on the list supplied.
639 */
Junio C Hamanoda24b102013-06-06 21:58:12 -0700640void sort_in_topological_order(struct commit_list **list, enum rev_sort_order sort_order)
Jon Seymourab580ac2005-07-07 02:39:34 +1000641{
Linus Torvalds23c17d42007-11-02 13:32:58 -0700642 struct commit_list *next, *orig = *list;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700643 struct commit_list **pptr;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700644 struct indegree_slab indegree;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700645 struct prio_queue queue;
646 struct commit *commit;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700647 struct author_date_slab author_date;
Fredrik Kuivinen6b6dcfc2006-03-10 10:21:37 +0100648
Linus Torvalds23c17d42007-11-02 13:32:58 -0700649 if (!orig)
Eric Wong7d6fb372005-12-24 04:12:43 -0800650 return;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700651 *list = NULL;
652
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700653 init_indegree_slab(&indegree);
Junio C Hamanoda24b102013-06-06 21:58:12 -0700654 memset(&queue, '\0', sizeof(queue));
Junio C Hamano81c6b382013-06-07 10:35:54 -0700655
Junio C Hamanoda24b102013-06-06 21:58:12 -0700656 switch (sort_order) {
657 default: /* REV_SORT_IN_GRAPH_ORDER */
658 queue.compare = NULL;
659 break;
660 case REV_SORT_BY_COMMIT_DATE:
661 queue.compare = compare_commits_by_commit_date;
662 break;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700663 case REV_SORT_BY_AUTHOR_DATE:
664 init_author_date_slab(&author_date);
665 queue.compare = compare_commits_by_author_date;
666 queue.cb_data = &author_date;
667 break;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700668 }
Jeff King96c4f4a2013-04-09 02:52:56 -0400669
Linus Torvalds23c17d42007-11-02 13:32:58 -0700670 /* Mark them and clear the indegree */
671 for (next = orig; next; next = next->next) {
672 struct commit *commit = next->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700673 *(indegree_slab_at(&indegree, commit)) = 1;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700674 /* also record the author dates, if needed */
675 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
676 record_author_date(&author_date, commit);
Jon Seymourab580ac2005-07-07 02:39:34 +1000677 }
Linus Torvalds23c17d42007-11-02 13:32:58 -0700678
Jon Seymourab580ac2005-07-07 02:39:34 +1000679 /* update the indegree */
Linus Torvalds23c17d42007-11-02 13:32:58 -0700680 for (next = orig; next; next = next->next) {
Junio C Hamanoda24b102013-06-06 21:58:12 -0700681 struct commit_list *parents = next->item->parents;
Jon Seymourab580ac2005-07-07 02:39:34 +1000682 while (parents) {
Linus Torvalds23c17d42007-11-02 13:32:58 -0700683 struct commit *parent = parents->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700684 int *pi = indegree_slab_at(&indegree, parent);
Fredrik Kuivinen6b6dcfc2006-03-10 10:21:37 +0100685
Jeff King96c4f4a2013-04-09 02:52:56 -0400686 if (*pi)
687 (*pi)++;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700688 parents = parents->next;
Jon Seymourab580ac2005-07-07 02:39:34 +1000689 }
Jon Seymourab580ac2005-07-07 02:39:34 +1000690 }
Linus Torvalds23c17d42007-11-02 13:32:58 -0700691
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700692 /*
Pierre Habouzit674d1722007-09-10 12:35:06 +0200693 * find the tips
694 *
695 * tips are nodes not reachable from any other node in the list
696 *
697 * the tips serve as a starting set for the work queue.
698 */
Linus Torvalds23c17d42007-11-02 13:32:58 -0700699 for (next = orig; next; next = next->next) {
700 struct commit *commit = next->item;
Jon Seymourab580ac2005-07-07 02:39:34 +1000701
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700702 if (*(indegree_slab_at(&indegree, commit)) == 1)
Junio C Hamanoda24b102013-06-06 21:58:12 -0700703 prio_queue_put(&queue, commit);
Jon Seymourab580ac2005-07-07 02:39:34 +1000704 }
Junio C Hamano4c8725f2006-02-15 22:05:33 -0800705
Junio C Hamanoda24b102013-06-06 21:58:12 -0700706 /*
707 * This is unfortunate; the initial tips need to be shown
708 * in the order given from the revision traversal machinery.
709 */
710 if (sort_order == REV_SORT_IN_GRAPH_ORDER)
711 prio_queue_reverse(&queue);
712
713 /* We no longer need the commit list */
714 free_commit_list(orig);
Linus Torvalds23c17d42007-11-02 13:32:58 -0700715
716 pptr = list;
717 *list = NULL;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700718 while ((commit = prio_queue_get(&queue)) != NULL) {
719 struct commit_list *parents;
Jon Seymourab580ac2005-07-07 02:39:34 +1000720
Linus Torvalds23c17d42007-11-02 13:32:58 -0700721 for (parents = commit->parents; parents ; parents = parents->next) {
Junio C Hamanocd2b8ae2011-08-25 14:46:52 -0700722 struct commit *parent = parents->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700723 int *pi = indegree_slab_at(&indegree, parent);
Linus Torvalds23c17d42007-11-02 13:32:58 -0700724
Jeff King96c4f4a2013-04-09 02:52:56 -0400725 if (!*pi)
Linus Torvalds23c17d42007-11-02 13:32:58 -0700726 continue;
727
728 /*
729 * parents are only enqueued for emission
730 * when all their children have been emitted thereby
731 * guaranteeing topological order.
732 */
Junio C Hamanoda24b102013-06-06 21:58:12 -0700733 if (--(*pi) == 1)
734 prio_queue_put(&queue, parent);
Jon Seymourab580ac2005-07-07 02:39:34 +1000735 }
736 /*
Junio C Hamanoda24b102013-06-06 21:58:12 -0700737 * all children of commit have already been
738 * emitted. we can emit it now.
Pierre Habouzit674d1722007-09-10 12:35:06 +0200739 */
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700740 *(indegree_slab_at(&indegree, commit)) = 0;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700741
742 pptr = &commit_list_insert(commit, pptr)->next;
Jon Seymourab580ac2005-07-07 02:39:34 +1000743 }
Jeff King96c4f4a2013-04-09 02:52:56 -0400744
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700745 clear_indegree_slab(&indegree);
Junio C Hamanoda24b102013-06-06 21:58:12 -0700746 clear_prio_queue(&queue);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700747 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
748 clear_author_date_slab(&author_date);
Jon Seymourab580ac2005-07-07 02:39:34 +1000749}
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200750
Junio C Hamano12952282007-01-08 23:10:49 -0800751/* merge-base stuff */
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200752
Nguyễn Thái Ngọc Duy208acbf2014-03-25 20:23:26 +0700753/* Remember to update object flag allocation in object.h */
Junio C Hamano577ed5c2006-10-22 17:32:47 -0700754#define PARENT1 (1u<<16)
755#define PARENT2 (1u<<17)
756#define STALE (1u<<18)
757#define RESULT (1u<<19)
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200758
Junio C Hamano12952282007-01-08 23:10:49 -0800759static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT);
760
Jeff King73f43f22014-07-14 01:53:54 -0400761static int queue_has_nonstale(struct prio_queue *queue)
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200762{
Jeff King73f43f22014-07-14 01:53:54 -0400763 int i;
764 for (i = 0; i < queue->nr; i++) {
765 struct commit *commit = queue->array[i].data;
766 if (!(commit->object.flags & STALE))
767 return 1;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200768 }
Jeff King73f43f22014-07-14 01:53:54 -0400769 return 0;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200770}
771
Junio C Hamanod8669242012-10-04 15:37:15 -0700772/* all input commits in one and twos[] must have been parsed! */
Junio C Hamanoda1f5152012-08-30 14:39:03 -0700773static struct commit_list *paint_down_to_common(struct commit *one, int n, struct commit **twos)
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200774{
Jeff King73f43f22014-07-14 01:53:54 -0400775 struct prio_queue queue = { compare_commits_by_commit_date };
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200776 struct commit_list *result = NULL;
Junio C Hamano6a938642008-06-27 18:22:02 +0200777 int i;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200778
Junio C Hamanof3249432006-07-04 18:46:42 -0700779 one->object.flags |= PARENT1;
Jeff King73f43f22014-07-14 01:53:54 -0400780 if (!n) {
781 commit_list_append(one, &result);
782 return result;
783 }
784 prio_queue_put(&queue, one);
785
Junio C Hamano6a938642008-06-27 18:22:02 +0200786 for (i = 0; i < n; i++) {
787 twos[i]->object.flags |= PARENT2;
Jeff King73f43f22014-07-14 01:53:54 -0400788 prio_queue_put(&queue, twos[i]);
Junio C Hamano6a938642008-06-27 18:22:02 +0200789 }
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200790
Jeff King73f43f22014-07-14 01:53:54 -0400791 while (queue_has_nonstale(&queue)) {
792 struct commit *commit = prio_queue_get(&queue);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200793 struct commit_list *parents;
Junio C Hamanof3249432006-07-04 18:46:42 -0700794 int flags;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200795
Junio C Hamanof3249432006-07-04 18:46:42 -0700796 flags = commit->object.flags & (PARENT1 | PARENT2 | STALE);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200797 if (flags == (PARENT1 | PARENT2)) {
Junio C Hamanof3249432006-07-04 18:46:42 -0700798 if (!(commit->object.flags & RESULT)) {
799 commit->object.flags |= RESULT;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200800 commit_list_insert_by_date(commit, &result);
Junio C Hamanof3249432006-07-04 18:46:42 -0700801 }
Junio C Hamano542ccef2006-07-02 11:34:17 -0700802 /* Mark parents of a found merge stale */
803 flags |= STALE;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200804 }
805 parents = commit->parents;
806 while (parents) {
807 struct commit *p = parents->item;
808 parents = parents->next;
809 if ((p->object.flags & flags) == flags)
810 continue;
Martin Koegler172947e2008-02-18 21:47:57 +0100811 if (parse_commit(p))
812 return NULL;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200813 p->object.flags |= flags;
Jeff King73f43f22014-07-14 01:53:54 -0400814 prio_queue_put(&queue, p);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200815 }
816 }
817
Jeff King73f43f22014-07-14 01:53:54 -0400818 clear_prio_queue(&queue);
Junio C Hamanoda1f5152012-08-30 14:39:03 -0700819 return result;
820}
821
822static struct commit_list *merge_bases_many(struct commit *one, int n, struct commit **twos)
823{
824 struct commit_list *list = NULL;
825 struct commit_list *result = NULL;
826 int i;
827
828 for (i = 0; i < n; i++) {
829 if (one == twos[i])
830 /*
831 * We do not mark this even with RESULT so we do not
832 * have to clean it up.
833 */
834 return commit_list_insert(one, &result);
835 }
836
837 if (parse_commit(one))
838 return NULL;
839 for (i = 0; i < n; i++) {
840 if (parse_commit(twos[i]))
841 return NULL;
842 }
843
844 list = paint_down_to_common(one, n, twos);
845
Junio C Hamanof3249432006-07-04 18:46:42 -0700846 while (list) {
René Scharfee510ab82015-10-24 18:21:31 +0200847 struct commit *commit = pop_commit(&list);
848 if (!(commit->object.flags & STALE))
849 commit_list_insert_by_date(commit, &result);
Junio C Hamanof3249432006-07-04 18:46:42 -0700850 }
851 return result;
852}
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200853
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200854struct commit_list *get_octopus_merge_bases(struct commit_list *in)
855{
856 struct commit_list *i, *j, *k, *ret = NULL;
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200857
Vasily Makarov6bc76722014-01-03 18:45:46 +0400858 if (!in)
859 return ret;
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200860
Vasily Makarov6bc76722014-01-03 18:45:46 +0400861 commit_list_insert(in->item, &ret);
862
863 for (i = in->next; i; i = i->next) {
864 struct commit_list *new = NULL, *end = NULL;
865
866 for (j = ret; j; j = j->next) {
867 struct commit_list *bases;
Junio C Hamano2ce406c2014-10-30 12:20:44 -0700868 bases = get_merge_bases(i->item, j->item);
Vasily Makarov6bc76722014-01-03 18:45:46 +0400869 if (!new)
870 new = bases;
871 else
872 end->next = bases;
873 for (k = bases; k; k = k->next)
874 end = k;
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200875 }
Vasily Makarov6bc76722014-01-03 18:45:46 +0400876 ret = new;
Miklos Vajna5240c9d2008-06-27 18:22:00 +0200877 }
878 return ret;
879}
880
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700881static int remove_redundant(struct commit **array, int cnt)
882{
883 /*
884 * Some commit in the array may be an ancestor of
885 * another commit. Move such commit to the end of
886 * the array, and return the number of commits that
887 * are independent from each other.
888 */
889 struct commit **work;
890 unsigned char *redundant;
891 int *filled_index;
892 int i, j, filled;
893
894 work = xcalloc(cnt, sizeof(*work));
895 redundant = xcalloc(cnt, 1);
Jeff Kingb32fa952016-02-22 17:44:25 -0500896 ALLOC_ARRAY(filled_index, cnt - 1);
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700897
Junio C Hamanod8669242012-10-04 15:37:15 -0700898 for (i = 0; i < cnt; i++)
899 parse_commit(array[i]);
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700900 for (i = 0; i < cnt; i++) {
901 struct commit_list *common;
902
903 if (redundant[i])
904 continue;
905 for (j = filled = 0; j < cnt; j++) {
906 if (i == j || redundant[j])
907 continue;
908 filled_index[filled] = j;
909 work[filled++] = array[j];
910 }
911 common = paint_down_to_common(array[i], filled, work);
912 if (array[i]->object.flags & PARENT2)
913 redundant[i] = 1;
914 for (j = 0; j < filled; j++)
915 if (work[j]->object.flags & PARENT1)
916 redundant[filled_index[j]] = 1;
917 clear_commit_marks(array[i], all_flags);
René Scharfeabc03512017-12-25 18:44:03 +0100918 clear_commit_marks_many(filled, work, all_flags);
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700919 free_commit_list(common);
920 }
921
922 /* Now collect the result */
René Scharfe45ccef82016-09-25 09:24:03 +0200923 COPY_ARRAY(work, array, cnt);
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700924 for (i = filled = 0; i < cnt; i++)
925 if (!redundant[i])
926 array[filled++] = work[i];
927 for (j = filled, i = 0; i < cnt; i++)
928 if (redundant[i])
929 array[j++] = work[i];
930 free(work);
931 free(redundant);
932 free(filled_index);
933 return filled;
934}
935
Junio C Hamano2ce406c2014-10-30 12:20:44 -0700936static struct commit_list *get_merge_bases_many_0(struct commit *one,
937 int n,
938 struct commit **twos,
939 int cleanup)
Junio C Hamanof3249432006-07-04 18:46:42 -0700940{
Junio C Hamanof3249432006-07-04 18:46:42 -0700941 struct commit_list *list;
942 struct commit **rslt;
943 struct commit_list *result;
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700944 int cnt, i;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200945
Junio C Hamano6a938642008-06-27 18:22:02 +0200946 result = merge_bases_many(one, n, twos);
947 for (i = 0; i < n; i++) {
948 if (one == twos[i])
949 return result;
950 }
Junio C Hamanof3249432006-07-04 18:46:42 -0700951 if (!result || !result->next) {
952 if (cleanup) {
953 clear_commit_marks(one, all_flags);
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800954 clear_commit_marks_many(n, twos, all_flags);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200955 }
Junio C Hamanof3249432006-07-04 18:46:42 -0700956 return result;
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200957 }
958
Junio C Hamanof3249432006-07-04 18:46:42 -0700959 /* There are more than one */
René Scharfe4bbaa1e2014-07-17 01:52:09 +0200960 cnt = commit_list_count(result);
Junio C Hamanof3249432006-07-04 18:46:42 -0700961 rslt = xcalloc(cnt, sizeof(*rslt));
962 for (list = result, i = 0; list; list = list->next)
963 rslt[i++] = list->item;
964 free_commit_list(result);
965
966 clear_commit_marks(one, all_flags);
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800967 clear_commit_marks_many(n, twos, all_flags);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200968
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700969 cnt = remove_redundant(rslt, cnt);
Junio C Hamanof3249432006-07-04 18:46:42 -0700970 result = NULL;
Junio C Hamano94f0ced2012-08-30 15:35:39 -0700971 for (i = 0; i < cnt; i++)
972 commit_list_insert_by_date(rslt[i], &result);
Junio C Hamanof3249432006-07-04 18:46:42 -0700973 free(rslt);
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200974 return result;
975}
Junio C Hamano2ecd2bb2006-12-19 00:14:04 -0800976
Junio C Hamano2ce406c2014-10-30 12:20:44 -0700977struct commit_list *get_merge_bases_many(struct commit *one,
978 int n,
979 struct commit **twos)
Junio C Hamano6a938642008-06-27 18:22:02 +0200980{
Junio C Hamano2ce406c2014-10-30 12:20:44 -0700981 return get_merge_bases_many_0(one, n, twos, 1);
982}
983
984struct commit_list *get_merge_bases_many_dirty(struct commit *one,
985 int n,
986 struct commit **twos)
987{
988 return get_merge_bases_many_0(one, n, twos, 0);
989}
990
991struct commit_list *get_merge_bases(struct commit *one, struct commit *two)
992{
993 return get_merge_bases_many_0(one, 1, &two, 1);
Junio C Hamano6a938642008-06-27 18:22:02 +0200994}
995
Junio C Hamanoa20efee2012-08-27 14:46:01 -0700996/*
Stefano Lattarini41ccfdd2013-04-12 00:36:10 +0200997 * Is "commit" a descendant of one of the elements on the "with_commit" list?
Junio C Hamanoa20efee2012-08-27 14:46:01 -0700998 */
Jake Goulding7fcdb362009-01-26 09:13:24 -0500999int is_descendant_of(struct commit *commit, struct commit_list *with_commit)
1000{
1001 if (!with_commit)
1002 return 1;
1003 while (with_commit) {
1004 struct commit *other;
1005
1006 other = with_commit->item;
1007 with_commit = with_commit->next;
Junio C Hamanoa20efee2012-08-27 14:46:01 -07001008 if (in_merge_bases(other, commit))
Jake Goulding7fcdb362009-01-26 09:13:24 -05001009 return 1;
1010 }
1011 return 0;
1012}
1013
Junio C Hamanoa20efee2012-08-27 14:46:01 -07001014/*
Junio C Hamano4c4b27e2013-03-04 10:16:42 -08001015 * Is "commit" an ancestor of one of the "references"?
1016 */
1017int in_merge_bases_many(struct commit *commit, int nr_reference, struct commit **reference)
1018{
1019 struct commit_list *bases;
1020 int ret = 0, i;
1021
1022 if (parse_commit(commit))
1023 return ret;
1024 for (i = 0; i < nr_reference; i++)
1025 if (parse_commit(reference[i]))
1026 return ret;
1027
1028 bases = paint_down_to_common(commit, nr_reference, reference);
1029 if (commit->object.flags & PARENT2)
1030 ret = 1;
1031 clear_commit_marks(commit, all_flags);
Junio C Hamano557899f2013-03-05 11:56:03 -08001032 clear_commit_marks_many(nr_reference, reference, all_flags);
Junio C Hamano4c4b27e2013-03-04 10:16:42 -08001033 free_commit_list(bases);
1034 return ret;
1035}
1036
1037/*
Junio C Hamanoa20efee2012-08-27 14:46:01 -07001038 * Is "commit" an ancestor of (i.e. reachable from) the "reference"?
1039 */
1040int in_merge_bases(struct commit *commit, struct commit *reference)
Junio C Hamano2ecd2bb2006-12-19 00:14:04 -08001041{
Junio C Hamano4c4b27e2013-03-04 10:16:42 -08001042 return in_merge_bases_many(commit, 1, &reference);
Junio C Hamano2ecd2bb2006-12-19 00:14:04 -08001043}
Junio C Hamano98cf9c32008-06-27 18:22:03 +02001044
1045struct commit_list *reduce_heads(struct commit_list *heads)
1046{
1047 struct commit_list *p;
1048 struct commit_list *result = NULL, **tail = &result;
Junio C Hamanof37d3c72012-08-30 23:20:40 -07001049 struct commit **array;
1050 int num_head, i;
Junio C Hamano98cf9c32008-06-27 18:22:03 +02001051
1052 if (!heads)
1053 return NULL;
1054
Junio C Hamanof37d3c72012-08-30 23:20:40 -07001055 /* Uniquify */
1056 for (p = heads; p; p = p->next)
1057 p->item->object.flags &= ~STALE;
1058 for (p = heads, num_head = 0; p; p = p->next) {
1059 if (p->item->object.flags & STALE)
Junio C Hamano711f6b22008-07-14 00:09:41 -07001060 continue;
Junio C Hamanof37d3c72012-08-30 23:20:40 -07001061 p->item->object.flags |= STALE;
1062 num_head++;
Junio C Hamano98cf9c32008-06-27 18:22:03 +02001063 }
Brian Gesiakc4a7b002014-05-27 00:33:45 +09001064 array = xcalloc(num_head, sizeof(*array));
Junio C Hamanof37d3c72012-08-30 23:20:40 -07001065 for (p = heads, i = 0; p; p = p->next) {
1066 if (p->item->object.flags & STALE) {
1067 array[i++] = p->item;
1068 p->item->object.flags &= ~STALE;
1069 }
1070 }
1071 num_head = remove_redundant(array, num_head);
1072 for (i = 0; i < num_head; i++)
1073 tail = &commit_list_insert(array[i], tail)->next;
Martin Ågrencb7b29e2017-09-23 01:34:50 +02001074 free(array);
Junio C Hamano98cf9c32008-06-27 18:22:03 +02001075 return result;
1076}
Jeff King40d52ff2010-04-01 20:05:23 -04001077
Martin Ågren4da72642017-11-07 21:39:45 +01001078void reduce_heads_replace(struct commit_list **heads)
1079{
1080 struct commit_list *result = reduce_heads(*heads);
1081 free_commit_list(*heads);
1082 *heads = result;
1083}
1084
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001085static const char gpg_sig_header[] = "gpgsig";
1086static const int gpg_sig_header_len = sizeof(gpg_sig_header) - 1;
1087
1088static int do_sign_commit(struct strbuf *buf, const char *keyid)
1089{
1090 struct strbuf sig = STRBUF_INIT;
1091 int inspos, copypos;
Johannes Schindelin3324dd82016-06-29 16:14:54 +02001092 const char *eoh;
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001093
1094 /* find the end of the header */
Johannes Schindelin3324dd82016-06-29 16:14:54 +02001095 eoh = strstr(buf->buf, "\n\n");
1096 if (!eoh)
1097 inspos = buf->len;
1098 else
1099 inspos = eoh - buf->buf + 1;
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001100
1101 if (!keyid || !*keyid)
1102 keyid = get_signing_key();
1103 if (sign_buffer(buf, &sig, keyid)) {
1104 strbuf_release(&sig);
1105 return -1;
1106 }
1107
1108 for (copypos = 0; sig.buf[copypos]; ) {
1109 const char *bol = sig.buf + copypos;
1110 const char *eol = strchrnul(bol, '\n');
1111 int len = (eol - bol) + !!*eol;
1112
1113 if (!copypos) {
1114 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len);
1115 inspos += gpg_sig_header_len;
1116 }
1117 strbuf_insert(buf, inspos++, " ", 1);
1118 strbuf_insert(buf, inspos, bol, len);
1119 inspos += len;
1120 copypos += len;
1121 }
1122 strbuf_release(&sig);
1123 return 0;
1124}
1125
Jeff King218aa3a2014-06-13 02:32:11 -04001126int parse_signed_commit(const struct commit *commit,
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001127 struct strbuf *payload, struct strbuf *signature)
1128{
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001129
Jeff King218aa3a2014-06-13 02:32:11 -04001130 unsigned long size;
1131 const char *buffer = get_commit_buffer(commit, &size);
1132 int in_signature, saw_signature = -1;
1133 const char *line, *tail;
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001134
1135 line = buffer;
1136 tail = buffer + size;
1137 in_signature = 0;
1138 saw_signature = 0;
1139 while (line < tail) {
1140 const char *sig = NULL;
Jeff King218aa3a2014-06-13 02:32:11 -04001141 const char *next = memchr(line, '\n', tail - line);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001142
1143 next = next ? next + 1 : tail;
1144 if (in_signature && line[0] == ' ')
1145 sig = line + 1;
Christian Couder59556542013-11-30 21:55:40 +01001146 else if (starts_with(line, gpg_sig_header) &&
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001147 line[gpg_sig_header_len] == ' ')
1148 sig = line + gpg_sig_header_len + 1;
1149 if (sig) {
1150 strbuf_add(signature, sig, next - sig);
1151 saw_signature = 1;
1152 in_signature = 1;
1153 } else {
1154 if (*line == '\n')
1155 /* dump the whole remainder of the buffer */
1156 next = tail;
1157 strbuf_add(payload, line, next - line);
1158 in_signature = 0;
1159 }
1160 line = next;
1161 }
Jeff King218aa3a2014-06-13 02:32:11 -04001162 unuse_commit_buffer(commit, buffer);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001163 return saw_signature;
1164}
1165
Christian Couder0b05ab62014-07-19 17:01:12 +02001166int remove_signature(struct strbuf *buf)
1167{
1168 const char *line = buf->buf;
1169 const char *tail = buf->buf + buf->len;
1170 int in_signature = 0;
1171 const char *sig_start = NULL;
1172 const char *sig_end = NULL;
1173
1174 while (line < tail) {
1175 const char *next = memchr(line, '\n', tail - line);
1176 next = next ? next + 1 : tail;
1177
1178 if (in_signature && line[0] == ' ')
1179 sig_end = next;
1180 else if (starts_with(line, gpg_sig_header) &&
1181 line[gpg_sig_header_len] == ' ') {
1182 sig_start = line;
1183 sig_end = next;
1184 in_signature = 1;
1185 } else {
1186 if (*line == '\n')
1187 /* dump the whole remainder of the buffer */
1188 next = tail;
1189 in_signature = 0;
1190 }
1191 line = next;
1192 }
1193
1194 if (sig_start)
1195 strbuf_remove(buf, sig_start - buf->buf, sig_end - sig_start);
1196
1197 return sig_start != NULL;
1198}
1199
Junio C Hamano5231c632011-11-07 16:21:32 -08001200static void handle_signed_tag(struct commit *parent, struct commit_extra_header ***tail)
1201{
1202 struct merge_remote_desc *desc;
1203 struct commit_extra_header *mergetag;
1204 char *buf;
1205 unsigned long size, len;
1206 enum object_type type;
1207
1208 desc = merge_remote_util(parent);
1209 if (!desc || !desc->obj)
1210 return;
brian m. carlsoned1c9972015-11-10 02:22:29 +00001211 buf = read_sha1_file(desc->obj->oid.hash, &type, &size);
Junio C Hamano5231c632011-11-07 16:21:32 -08001212 if (!buf || type != OBJ_TAG)
1213 goto free_return;
1214 len = parse_signature(buf, size);
1215 if (size == len)
1216 goto free_return;
1217 /*
1218 * We could verify this signature and either omit the tag when
1219 * it does not validate, but the integrator may not have the
1220 * public key of the signer of the tag he is merging, while a
1221 * later auditor may have it while auditing, so let's not run
1222 * verify-signed-buffer here for now...
1223 *
1224 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1225 * warn("warning: signed tag unverified.");
1226 */
1227 mergetag = xcalloc(1, sizeof(*mergetag));
1228 mergetag->key = xstrdup("mergetag");
1229 mergetag->value = buf;
1230 mergetag->len = size;
1231
1232 **tail = mergetag;
1233 *tail = &mergetag->next;
1234 return;
1235
1236free_return:
1237 free(buf);
1238}
1239
brian m. carlson434060e2015-06-21 23:14:40 +00001240int check_commit_signature(const struct commit *commit, struct signature_check *sigc)
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001241{
1242 struct strbuf payload = STRBUF_INIT;
1243 struct strbuf signature = STRBUF_INIT;
brian m. carlson434060e2015-06-21 23:14:40 +00001244 int ret = 1;
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001245
1246 sigc->result = 'N';
1247
Jeff King218aa3a2014-06-13 02:32:11 -04001248 if (parse_signed_commit(commit, &payload, &signature) <= 0)
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001249 goto out;
brian m. carlson434060e2015-06-21 23:14:40 +00001250 ret = check_signature(payload.buf, payload.len, signature.buf,
1251 signature.len, sigc);
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001252
1253 out:
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001254 strbuf_release(&payload);
1255 strbuf_release(&signature);
brian m. carlson434060e2015-06-21 23:14:40 +00001256
1257 return ret;
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001258}
1259
1260
1261
Junio C Hamano5231c632011-11-07 16:21:32 -08001262void append_merge_tag_headers(struct commit_list *parents,
1263 struct commit_extra_header ***tail)
1264{
1265 while (parents) {
1266 struct commit *parent = parents->item;
1267 handle_signed_tag(parent, tail);
1268 parents = parents->next;
1269 }
1270}
1271
1272static void add_extra_header(struct strbuf *buffer,
1273 struct commit_extra_header *extra)
1274{
1275 strbuf_addstr(buffer, extra->key);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001276 if (extra->len)
1277 strbuf_add_lines(buffer, " ", extra->value, extra->len);
1278 else
1279 strbuf_addch(buffer, '\n');
1280}
1281
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001282struct commit_extra_header *read_commit_extra_headers(struct commit *commit,
1283 const char **exclude)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001284{
1285 struct commit_extra_header *extra = NULL;
1286 unsigned long size;
Jeff King218aa3a2014-06-13 02:32:11 -04001287 const char *buffer = get_commit_buffer(commit, &size);
1288 extra = read_commit_extra_header_lines(buffer, size, exclude);
1289 unuse_commit_buffer(commit, buffer);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001290 return extra;
1291}
1292
Christian Couder063da622014-07-07 08:35:37 +02001293void for_each_mergetag(each_mergetag_fn fn, struct commit *commit, void *data)
1294{
1295 struct commit_extra_header *extra, *to_free;
1296
1297 to_free = read_commit_extra_headers(commit, NULL);
1298 for (extra = to_free; extra; extra = extra->next) {
1299 if (strcmp(extra->key, "mergetag"))
1300 continue; /* not a merge tag */
1301 fn(commit, extra, data);
1302 }
1303 free_commit_extra_headers(to_free);
1304}
1305
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001306static inline int standard_header_field(const char *field, size_t len)
1307{
René Scharfeb0725042017-02-25 20:27:40 +01001308 return ((len == 4 && !memcmp(field, "tree", 4)) ||
1309 (len == 6 && !memcmp(field, "parent", 6)) ||
1310 (len == 6 && !memcmp(field, "author", 6)) ||
1311 (len == 9 && !memcmp(field, "committer", 9)) ||
1312 (len == 8 && !memcmp(field, "encoding", 8)));
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001313}
1314
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001315static int excluded_header_field(const char *field, size_t len, const char **exclude)
1316{
1317 if (!exclude)
1318 return 0;
1319
1320 while (*exclude) {
1321 size_t xlen = strlen(*exclude);
René Scharfeb0725042017-02-25 20:27:40 +01001322 if (len == xlen && !memcmp(field, *exclude, xlen))
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001323 return 1;
1324 exclude++;
1325 }
1326 return 0;
1327}
1328
Junio C Hamano82a75292012-09-15 13:58:15 -07001329static struct commit_extra_header *read_commit_extra_header_lines(
1330 const char *buffer, size_t size,
1331 const char **exclude)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001332{
1333 struct commit_extra_header *extra = NULL, **tail = &extra, *it = NULL;
1334 const char *line, *next, *eof, *eob;
1335 struct strbuf buf = STRBUF_INIT;
1336
1337 for (line = buffer, eob = line + size;
1338 line < eob && *line != '\n';
1339 line = next) {
1340 next = memchr(line, '\n', eob - line);
1341 next = next ? next + 1 : eob;
1342 if (*line == ' ') {
1343 /* continuation */
1344 if (it)
1345 strbuf_add(&buf, line + 1, next - (line + 1));
1346 continue;
1347 }
1348 if (it)
1349 it->value = strbuf_detach(&buf, &it->len);
1350 strbuf_reset(&buf);
1351 it = NULL;
1352
René Scharfe50a01cc2017-02-25 20:21:52 +01001353 eof = memchr(line, ' ', next - line);
1354 if (!eof)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001355 eof = next;
René Scharfeb0725042017-02-25 20:27:40 +01001356 else if (standard_header_field(line, eof - line) ||
1357 excluded_header_field(line, eof - line, exclude))
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001358 continue;
1359
1360 it = xcalloc(1, sizeof(*it));
1361 it->key = xmemdupz(line, eof-line);
1362 *tail = it;
1363 tail = &it->next;
1364 if (eof + 1 < next)
1365 strbuf_add(&buf, eof + 1, next - (eof + 1));
1366 }
1367 if (it)
1368 it->value = strbuf_detach(&buf, &it->len);
1369 return extra;
Junio C Hamano5231c632011-11-07 16:21:32 -08001370}
1371
1372void free_commit_extra_headers(struct commit_extra_header *extra)
1373{
1374 while (extra) {
1375 struct commit_extra_header *next = extra->next;
1376 free(extra->key);
1377 free(extra->value);
1378 free(extra);
1379 extra = next;
1380 }
1381}
1382
Patryk Obara5078f342018-01-28 01:13:16 +01001383int commit_tree(const char *msg, size_t msg_len, const struct object_id *tree,
1384 struct commit_list *parents, struct object_id *ret,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001385 const char *author, const char *sign_commit)
Junio C Hamano5231c632011-11-07 16:21:32 -08001386{
1387 struct commit_extra_header *extra = NULL, **tail = &extra;
1388 int result;
1389
1390 append_merge_tag_headers(parents, &tail);
Jeff King3ffefb52014-06-10 17:36:52 -04001391 result = commit_tree_extended(msg, msg_len, tree, parents, ret,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001392 author, sign_commit, extra);
Junio C Hamano5231c632011-11-07 16:21:32 -08001393 free_commit_extra_headers(extra);
1394 return result;
1395}
1396
Linus Torvalds08a94a12012-06-28 11:24:14 -07001397static int find_invalid_utf8(const char *buf, int len)
1398{
1399 int offset = 0;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001400 static const unsigned int max_codepoint[] = {
1401 0x7f, 0x7ff, 0xffff, 0x10ffff
1402 };
Linus Torvalds08a94a12012-06-28 11:24:14 -07001403
1404 while (len) {
1405 unsigned char c = *buf++;
1406 int bytes, bad_offset;
brian m. carlson28110d42013-07-04 17:19:43 +00001407 unsigned int codepoint;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001408 unsigned int min_val, max_val;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001409
1410 len--;
1411 offset++;
1412
1413 /* Simple US-ASCII? No worries. */
1414 if (c < 0x80)
1415 continue;
1416
1417 bad_offset = offset-1;
1418
1419 /*
1420 * Count how many more high bits set: that's how
1421 * many more bytes this sequence should have.
1422 */
1423 bytes = 0;
1424 while (c & 0x40) {
1425 c <<= 1;
1426 bytes++;
1427 }
1428
brian m. carlson28110d42013-07-04 17:19:43 +00001429 /*
1430 * Must be between 1 and 3 more bytes. Longer sequences result in
1431 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1432 */
1433 if (bytes < 1 || 3 < bytes)
Linus Torvalds08a94a12012-06-28 11:24:14 -07001434 return bad_offset;
1435
1436 /* Do we *have* that many bytes? */
1437 if (len < bytes)
1438 return bad_offset;
1439
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001440 /*
1441 * Place the encoded bits at the bottom of the value and compute the
1442 * valid range.
1443 */
brian m. carlson28110d42013-07-04 17:19:43 +00001444 codepoint = (c & 0x7f) >> bytes;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001445 min_val = max_codepoint[bytes-1] + 1;
1446 max_val = max_codepoint[bytes];
brian m. carlson28110d42013-07-04 17:19:43 +00001447
Linus Torvalds08a94a12012-06-28 11:24:14 -07001448 offset += bytes;
1449 len -= bytes;
1450
1451 /* And verify that they are good continuation bytes */
1452 do {
brian m. carlson28110d42013-07-04 17:19:43 +00001453 codepoint <<= 6;
1454 codepoint |= *buf & 0x3f;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001455 if ((*buf++ & 0xc0) != 0x80)
1456 return bad_offset;
1457 } while (--bytes);
1458
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001459 /* Reject codepoints that are out of range for the sequence length. */
1460 if (codepoint < min_val || codepoint > max_val)
brian m. carlson28110d42013-07-04 17:19:43 +00001461 return bad_offset;
1462 /* Surrogates are only for UTF-16 and cannot be encoded in UTF-8. */
1463 if ((codepoint & 0x1ff800) == 0xd800)
1464 return bad_offset;
Peter Krefting81050ac2013-07-09 12:16:33 +01001465 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
Junio C Hamanodc773a62013-08-05 09:52:28 -07001466 if ((codepoint & 0xfffe) == 0xfffe)
Peter Krefting81050ac2013-07-09 12:16:33 +01001467 return bad_offset;
1468 /* So are anything in the range U+FDD0..U+FDEF. */
1469 if (codepoint >= 0xfdd0 && codepoint <= 0xfdef)
brian m. carlson28110d42013-07-04 17:19:43 +00001470 return bad_offset;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001471 }
1472 return -1;
1473}
1474
1475/*
1476 * This verifies that the buffer is in proper utf8 format.
1477 *
1478 * If it isn't, it assumes any non-utf8 characters are Latin1,
1479 * and does the conversion.
Linus Torvalds08a94a12012-06-28 11:24:14 -07001480 */
1481static int verify_utf8(struct strbuf *buf)
1482{
1483 int ok = 1;
1484 long pos = 0;
1485
1486 for (;;) {
1487 int bad;
1488 unsigned char c;
1489 unsigned char replace[2];
1490
1491 bad = find_invalid_utf8(buf->buf + pos, buf->len - pos);
1492 if (bad < 0)
1493 return ok;
1494 pos += bad;
1495 ok = 0;
1496 c = buf->buf[pos];
1497 strbuf_remove(buf, pos, 1);
1498
1499 /* We know 'c' must be in the range 128-255 */
1500 replace[0] = 0xc0 + (c >> 6);
1501 replace[1] = 0x80 + (c & 0x3f);
1502 strbuf_insert(buf, pos, replace, 2);
1503 pos += 2;
1504 }
1505}
1506
Jeff King40d52ff2010-04-01 20:05:23 -04001507static const char commit_utf8_warn[] =
Vasco Almeida4fa4b312016-09-19 13:08:16 +00001508N_("Warning: commit message did not conform to UTF-8.\n"
1509 "You may want to amend it after fixing the message, or set the config\n"
1510 "variable i18n.commitencoding to the encoding your project uses.\n");
Jeff King40d52ff2010-04-01 20:05:23 -04001511
Jeff King3ffefb52014-06-10 17:36:52 -04001512int commit_tree_extended(const char *msg, size_t msg_len,
Patryk Obara5078f342018-01-28 01:13:16 +01001513 const struct object_id *tree,
1514 struct commit_list *parents, struct object_id *ret,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001515 const char *author, const char *sign_commit,
1516 struct commit_extra_header *extra)
Jeff King40d52ff2010-04-01 20:05:23 -04001517{
1518 int result;
1519 int encoding_is_utf8;
1520 struct strbuf buffer;
1521
Patryk Obara5078f342018-01-28 01:13:16 +01001522 assert_sha1_type(tree->hash, OBJ_TREE);
Jeff King40d52ff2010-04-01 20:05:23 -04001523
Jeff King3ffefb52014-06-10 17:36:52 -04001524 if (memchr(msg, '\0', msg_len))
Nguyễn Thái Ngọc Duy37576c12011-12-15 20:47:23 +07001525 return error("a NUL byte in commit log message not allowed.");
1526
Jeff King40d52ff2010-04-01 20:05:23 -04001527 /* Not having i18n.commitencoding is the same as having utf-8 */
1528 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
1529
1530 strbuf_init(&buffer, 8192); /* should avoid reallocs for the headers */
Patryk Obara5078f342018-01-28 01:13:16 +01001531 strbuf_addf(&buffer, "tree %s\n", oid_to_hex(tree));
Jeff King40d52ff2010-04-01 20:05:23 -04001532
1533 /*
1534 * NOTE! This ordering means that the same exact tree merged with a
1535 * different order of parents will be a _different_ changeset even
1536 * if everything else stays the same.
1537 */
1538 while (parents) {
René Scharfee510ab82015-10-24 18:21:31 +02001539 struct commit *parent = pop_commit(&parents);
Jeff King40d52ff2010-04-01 20:05:23 -04001540 strbuf_addf(&buffer, "parent %s\n",
brian m. carlsonf2fd0762015-11-10 02:22:28 +00001541 oid_to_hex(&parent->object.oid));
Jeff King40d52ff2010-04-01 20:05:23 -04001542 }
1543
1544 /* Person/date information */
1545 if (!author)
Jeff Kingf9bc5732012-05-24 19:28:40 -04001546 author = git_author_info(IDENT_STRICT);
Jeff King40d52ff2010-04-01 20:05:23 -04001547 strbuf_addf(&buffer, "author %s\n", author);
Jeff Kingf9bc5732012-05-24 19:28:40 -04001548 strbuf_addf(&buffer, "committer %s\n", git_committer_info(IDENT_STRICT));
Jeff King40d52ff2010-04-01 20:05:23 -04001549 if (!encoding_is_utf8)
1550 strbuf_addf(&buffer, "encoding %s\n", git_commit_encoding);
Junio C Hamano5231c632011-11-07 16:21:32 -08001551
1552 while (extra) {
1553 add_extra_header(&buffer, extra);
1554 extra = extra->next;
1555 }
Jeff King40d52ff2010-04-01 20:05:23 -04001556 strbuf_addch(&buffer, '\n');
1557
1558 /* And add the comment */
Jeff King3ffefb52014-06-10 17:36:52 -04001559 strbuf_add(&buffer, msg, msg_len);
Jeff King40d52ff2010-04-01 20:05:23 -04001560
1561 /* And check the encoding */
Linus Torvalds08a94a12012-06-28 11:24:14 -07001562 if (encoding_is_utf8 && !verify_utf8(&buffer))
Vasco Almeida4fa4b312016-09-19 13:08:16 +00001563 fprintf(stderr, _(commit_utf8_warn));
Jeff King40d52ff2010-04-01 20:05:23 -04001564
Rene Scharfee5051462017-08-30 19:49:38 +02001565 if (sign_commit && do_sign_commit(&buffer, sign_commit)) {
1566 result = -1;
1567 goto out;
1568 }
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001569
Patryk Obaraa09c9852018-01-28 01:13:19 +01001570 result = write_object_file(buffer.buf, buffer.len, commit_type, ret);
Rene Scharfee5051462017-08-30 19:49:38 +02001571out:
Jeff King40d52ff2010-04-01 20:05:23 -04001572 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;
brian m. carlsone82caf32017-07-13 23:49:28 +00001590 if (get_oid(name, &oid))
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001591 return NULL;
brian m. carlsonc251c832017-05-06 22:10:38 +00001592 obj = parse_object(&oid);
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
Brian Malehornd76650b2017-05-15 23:06:49 -07001651 * trailing comment lines and blank lines. To support "git commit -s
1652 * --amend" on an existing commit, we also ignore "Conflicts:". To
1653 * support "git commit -v", we truncate at cut lines.
Christian Couder8c384582014-11-09 10:23:41 +01001654 *
1655 * Returns the number of bytes from the tail to ignore, to be fed as
1656 * the second parameter to append_signoff().
1657 */
Jonathan Tan710714a2016-11-02 10:29:17 -07001658int ignore_non_trailer(const char *buf, size_t len)
Christian Couder8c384582014-11-09 10:23:41 +01001659{
1660 int boc = 0;
1661 int bol = 0;
1662 int in_old_conflicts_block = 0;
Brian Malehornd76650b2017-05-15 23:06:49 -07001663 size_t cutoff = wt_status_locate_end(buf, len);
Christian Couder8c384582014-11-09 10:23:41 +01001664
Brian Malehornd76650b2017-05-15 23:06:49 -07001665 while (bol < cutoff) {
Jonathan Tan710714a2016-11-02 10:29:17 -07001666 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 }
Brian Malehornd76650b2017-05-15 23:06:49 -07001691 return boc ? len - boc : len - cutoff;
Christian Couder8c384582014-11-09 10:23:41 +01001692}