]> git.ipfire.org Git - thirdparty/git.git/blame - commit.c
The fifth batch
[thirdparty/git.git] / commit.c
CommitLineData
e7da9385
PS
1#define USE_THE_REPOSITORY_VARIABLE
2
d812c3b6 3#include "git-compat-util.h"
961784ee 4#include "tag.h"
175785e5 5#include "commit.h"
177722b3 6#include "commit-graph.h"
7ee24e18 7#include "environment.h"
f394e093 8#include "gettext.h"
41771fa4 9#include "hex.h"
6a1a79fd 10#include "repository.h"
dabab1d6 11#include "object-name.h"
68cd492a 12#include "object-store.h"
52883fbd 13#include "utf8.h"
199c45bf
JH
14#include "diff.h"
15#include "revision.h"
a97a7468 16#include "notes.h"
14ba97f8 17#include "alloc.h"
ba3c69a9 18#include "gpg-interface.h"
46905893 19#include "mergesort.h"
a84b794a 20#include "commit-slab.h"
da24b104 21#include "prio-queue.h"
bc626927 22#include "hash-lookup.h"
d76650b8 23#include "wt-status.h"
f9f99b3f 24#include "advice.h"
103148aa 25#include "refs.h"
02931217 26#include "commit-reach.h"
e38da487 27#include "setup.h"
120ad2b0 28#include "shallow.h"
d4a4f929 29#include "tree.h"
f443246b 30#include "hook.h"
7a5d6044 31#include "parse.h"
d9f517d0 32#include "object-file.h"
6206089c 33#include "object-file-convert.h"
175785e5 34
82a75299
JH
35static struct commit_extra_header *read_commit_extra_header_lines(const char *buf, size_t len, const char **);
36
60ab26de 37int save_commit_buffer = 1;
ab628588 38int no_graft_file_deprecated_advice;
60ab26de 39
175785e5
DB
40const char *commit_type = "commit";
41
d9a05e74 42struct commit *lookup_commit_reference_gently(struct repository *r,
21e1ee8f 43 const struct object_id *oid, int quiet)
961784ee 44{
d9a05e74
SB
45 struct object *obj = deref_tag(r,
46 parse_object(r, oid),
109cd76d 47 NULL, 0);
961784ee
LT
48
49 if (!obj)
50 return NULL;
6da43d93 51 return object_as_type(obj, OBJ_COMMIT, quiet);
f76412ed
JH
52}
53
1f6c72fe 54struct commit *lookup_commit_reference(struct repository *r, const struct object_id *oid)
f76412ed 55{
1f6c72fe 56 return lookup_commit_reference_gently(r, oid, 0);
961784ee
LT
57}
58
bc83266a 59struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref_name)
baf18fc2 60{
2122f675 61 struct commit *c = lookup_commit_reference(the_repository, oid);
baf18fc2
NTND
62 if (!c)
63 die(_("could not parse %s"), ref_name);
9001dc2a 64 if (!oideq(oid, &c->object.oid)) {
baf18fc2 65 warning(_("%s %s is not a commit!"),
bc83266a 66 ref_name, oid_to_hex(oid));
baf18fc2
NTND
67 }
68 return c;
69}
70
b8dbfd03
PW
71struct commit *lookup_commit_object(struct repository *r,
72 const struct object_id *oid)
73{
74 struct object *obj = parse_object(r, oid);
75 return obj ? object_as_type(obj, OBJ_COMMIT, 0) : NULL;
76
77}
78
bacf1687 79struct commit *lookup_commit(struct repository *r, const struct object_id *oid)
175785e5 80{
d0229abd 81 struct object *obj = lookup_object(r, oid);
d36f51c1 82 if (!obj)
a378509e 83 return create_object(r, oid, alloc_commit_node(r));
6da43d93 84 return object_as_type(obj, OBJ_COMMIT, 0);
175785e5
DB
85}
86
a6fa5992 87struct commit *lookup_commit_reference_by_name(const char *name)
69020d03
DS
88{
89 return lookup_commit_reference_by_name_gently(name, 0);
90}
91
92struct commit *lookup_commit_reference_by_name_gently(const char *name,
93 int quiet)
a6fa5992 94{
7683e2e6 95 struct object_id oid;
a6fa5992
PN
96 struct commit *commit;
97
d850b7a5 98 if (repo_get_oid_committish(the_repository, name, &oid))
a6fa5992 99 return NULL;
69020d03 100 commit = lookup_commit_reference_gently(the_repository, &oid, quiet);
ecb5091f 101 if (repo_parse_commit(the_repository, commit))
a6fa5992
PN
102 return NULL;
103 return commit;
104}
105
dddbad72 106static timestamp_t parse_commit_date(const char *buf, const char *tail)
175785e5 107{
0a617799 108 const char *dateptr;
ea1615df 109 const char *eol;
175785e5 110
0a617799
MK
111 if (buf + 6 >= tail)
112 return 0;
175785e5
DB
113 if (memcmp(buf, "author", 6))
114 return 0;
0a617799 115 while (buf < tail && *buf++ != '\n')
175785e5 116 /* nada */;
0a617799
MK
117 if (buf + 9 >= tail)
118 return 0;
175785e5
DB
119 if (memcmp(buf, "committer", 9))
120 return 0;
ea1615df
JK
121
122 /*
123 * Jump to end-of-line so that we can walk backwards to find the
124 * end-of-email ">". This is more forgiving of malformed cases
125 * because unexpected characters tend to be in the name and email
126 * fields.
127 */
128 eol = memchr(buf, '\n', tail - buf);
129 if (!eol)
0a617799 130 return 0;
ea1615df
JK
131 dateptr = eol;
132 while (dateptr > buf && dateptr[-1] != '>')
133 dateptr--;
089d9adf 134 if (dateptr == buf)
0a617799 135 return 0;
ea1615df 136
089d9adf
JK
137 /*
138 * Trim leading whitespace, but make sure we have at least one
139 * non-whitespace character, as parse_timestamp() will otherwise walk
140 * right past the newline we found in "eol" when skipping whitespace
141 * itself.
142 *
143 * In theory it would be sufficient to allow any character not matched
144 * by isspace(), but there's a catch: our isspace() does not
145 * necessarily match the behavior of parse_timestamp(), as the latter
146 * is implemented by system routines which match more exotic control
147 * codes, or even locale-dependent sequences.
148 *
149 * Since we expect the timestamp to be a number, we can check for that.
150 * Anything else (e.g., a non-numeric token like "foo") would just
151 * cause parse_timestamp() to return 0 anyway.
152 */
153 while (dateptr < eol && isspace(*dateptr))
154 dateptr++;
155 if (!isdigit(*dateptr) && *dateptr != '-')
156 return 0;
157
158 /*
159 * We know there is at least one digit (or dash), so we'll begin
160 * parsing there and stop at worst case at eol.
90ef0f14
JK
161 *
162 * Note that we may feed parse_timestamp() extra characters here if the
163 * commit is malformed, and it will parse as far as it can. For
164 * example, "123foo456" would return "123". That might be questionable
165 * (versus returning "0"), but it would help in a hypothetical case
166 * like "123456+0100", where the whitespace from the timezone is
167 * missing. Since such syntactic errors may be baked into history and
168 * hard to correct now, let's err on trying to make our best guess
169 * here, rather than insist on perfect syntax.
089d9adf 170 */
1aeb7e75 171 return parse_timestamp(dateptr, NULL, 10);
175785e5
DB
172}
173
8380dcd7 174static const struct object_id *commit_graft_oid_access(size_t index, const void *table)
0a9136f3 175{
8380dcd7 176 const struct commit_graft * const *commit_graft_table = table;
45ee13b9 177 return &commit_graft_table[index]->oid;
0a9136f3
DD
178}
179
98c431b6 180int commit_graft_pos(struct repository *r, const struct object_id *oid)
5da5c8f4 181{
45ee13b9
JK
182 return oid_pos(oid, r->parsed_objects->grafts,
183 r->parsed_objects->grafts_nr,
184 commit_graft_oid_access);
5da5c8f4
JH
185}
186
0d1d22f5 187void unparse_commit(struct repository *r, const struct object_id *oid)
4d4e49ff
JT
188{
189 struct commit *c = lookup_commit(r, oid);
190
191 if (!c->object.parsed)
192 return;
193 free_commit_list(c->parents);
194 c->parents = NULL;
195 c->object.parsed = 0;
196}
197
a3b78e83
BW
198int register_commit_graft(struct repository *r, struct commit_graft *graft,
199 int ignore_dups)
5040f17e 200{
98c431b6 201 int pos = commit_graft_pos(r, &graft->oid);
a6080a0a 202
5040f17e
JH
203 if (0 <= pos) {
204 if (ignore_dups)
205 free(graft);
206 else {
a3b78e83
BW
207 free(r->parsed_objects->grafts[pos]);
208 r->parsed_objects->grafts[pos] = graft;
5040f17e
JH
209 }
210 return 1;
211 }
212 pos = -pos - 1;
a3b78e83
BW
213 ALLOC_GROW(r->parsed_objects->grafts,
214 r->parsed_objects->grafts_nr + 1,
215 r->parsed_objects->grafts_alloc);
216 r->parsed_objects->grafts_nr++;
217 if (pos < r->parsed_objects->grafts_nr)
218 memmove(r->parsed_objects->grafts + pos + 1,
219 r->parsed_objects->grafts + pos,
220 (r->parsed_objects->grafts_nr - pos - 1) *
221 sizeof(*r->parsed_objects->grafts));
222 r->parsed_objects->grafts[pos] = graft;
4d4e49ff 223 unparse_commit(r, &graft->oid);
5040f17e
JH
224 return 0;
225}
226
9a934032 227struct commit_graft *read_graft_line(struct strbuf *line)
5040f17e
JH
228{
229 /* The format is just "Commit Parent1 Parent2 ...\n" */
cfa5bf16
PO
230 int i, phase;
231 const char *tail = NULL;
5040f17e 232 struct commit_graft *graft = NULL;
cfa5bf16 233 struct object_id dummy_oid, *oid;
5040f17e 234
9a934032
PO
235 strbuf_rtrim(line);
236 if (!line->len || line->buf[0] == '#')
5bc4ce58 237 return NULL;
cfa5bf16
PO
238 /*
239 * phase 0 verifies line, counts hashes in line and allocates graft
240 * phase 1 fills graft
241 */
242 for (phase = 0; phase < 2; phase++) {
243 oid = graft ? &graft->oid : &dummy_oid;
244 if (parse_oid_hex(line->buf, oid, &tail))
5040f17e 245 goto bad_graft_data;
cfa5bf16
PO
246 for (i = 0; *tail != '\0'; i++) {
247 oid = graft ? &graft->parent[i] : &dummy_oid;
248 if (!isspace(*tail++) || parse_oid_hex(tail, oid, &tail))
249 goto bad_graft_data;
250 }
251 if (!graft) {
252 graft = xmalloc(st_add(sizeof(*graft),
253 st_mult(sizeof(struct object_id), i)));
254 graft->nr_parent = i;
255 }
5040f17e
JH
256 }
257 return graft;
df5d43be
RT
258
259bad_graft_data:
9a934032 260 error("bad graft data: %s", line->buf);
cfa5bf16 261 assert(!graft);
df5d43be 262 return NULL;
5040f17e
JH
263}
264
d0e5dd0e 265static int read_graft_file(struct repository *r, const char *graft_file)
5da5c8f4 266{
e9d983f1 267 FILE *fp = fopen_or_warn(graft_file, "r");
e228c173 268 struct strbuf buf = STRBUF_INIT;
5040f17e
JH
269 if (!fp)
270 return -1;
ab628588
ÆAB
271 if (!no_graft_file_deprecated_advice &&
272 advice_enabled(ADVICE_GRAFT_FILE_DEPRECATED))
f9f99b3f
JS
273 advise(_("Support for <GIT_DIR>/info/grafts is deprecated\n"
274 "and will be removed in a future Git version.\n"
275 "\n"
276 "Please use \"git replace --convert-graft-file\"\n"
277 "to convert the grafts into replace refs.\n"
278 "\n"
279 "Turn this message off by running\n"
6c397d01 280 "\"git config set advice.graftFileDeprecated false\""));
e228c173 281 while (!strbuf_getwholeline(&buf, fp, '\n')) {
5da5c8f4 282 /* The format is just "Commit Parent1 Parent2 ...\n" */
9a934032 283 struct commit_graft *graft = read_graft_line(&buf);
5bc4ce58
JH
284 if (!graft)
285 continue;
d0e5dd0e 286 if (register_commit_graft(r, graft, 1))
e228c173 287 error("duplicate graft data: %s", buf.buf);
5da5c8f4
JH
288 }
289 fclose(fp);
e228c173 290 strbuf_release(&buf);
5040f17e
JH
291 return 0;
292}
293
20fd6d57 294void prepare_commit_graft(struct repository *r)
5040f17e 295{
14c90ac0 296 const char *graft_file;
5040f17e 297
2f6c767f 298 if (r->parsed_objects->commit_graft_prepared)
5040f17e 299 return;
14a9bd28
JK
300 if (!startup_info->have_repository)
301 return;
302
14c90ac0 303 graft_file = repo_get_graft_file(r);
2f6c767f 304 read_graft_file(r, graft_file);
ed09aef0 305 /* make sure shallows are read */
2f6c767f
SB
306 is_repository_shallow(r);
307 r->parsed_objects->commit_graft_prepared = 1;
5da5c8f4
JH
308}
309
b9dbddf6 310struct commit_graft *lookup_commit_graft(struct repository *r, const struct object_id *oid)
5da5c8f4
JH
311{
312 int pos;
b9dbddf6 313 prepare_commit_graft(r);
98c431b6 314 pos = commit_graft_pos(r, oid);
5da5c8f4
JH
315 if (pos < 0)
316 return NULL;
b9dbddf6 317 return r->parsed_objects->grafts[pos];
5da5c8f4
JH
318}
319
09d46644 320int for_each_commit_graft(each_commit_graft_fn fn, void *cb_data)
ed09aef0 321{
09d46644 322 int i, ret;
6a1a79fd
JN
323 for (i = ret = 0; i < the_repository->parsed_objects->grafts_nr && !ret; i++)
324 ret = fn(the_repository->parsed_objects->grafts[i], cb_data);
09d46644 325 return ret;
ed09aef0
JS
326}
327
8597ea3a
JK
328struct commit_buffer {
329 void *buffer;
330 unsigned long size;
331};
332define_commit_slab(buffer_slab, struct commit_buffer);
c1b3c71f 333
65ea9d4b 334struct buffer_slab *allocate_commit_buffer_slab(void)
66c2827e 335{
65ea9d4b
SB
336 struct buffer_slab *bs = xmalloc(sizeof(*bs));
337 init_buffer_slab(bs);
338 return bs;
339}
340
341void free_commit_buffer_slab(struct buffer_slab *bs)
342{
343 clear_buffer_slab(bs);
344 free(bs);
345}
c1b3c71f 346
1a40fc45 347void set_commit_buffer(struct repository *r, struct commit *commit, void *buffer, unsigned long size)
66c2827e 348{
65ea9d4b 349 struct commit_buffer *v = buffer_slab_at(
1a40fc45 350 r->parsed_objects->buffer_slab, commit);
8597ea3a
JK
351 v->buffer = buffer;
352 v->size = size;
66c2827e
JK
353}
354
4ff7e5c9 355const void *get_cached_commit_buffer(struct repository *r, const struct commit *commit, unsigned long *sizep)
152ff1cc 356{
65ea9d4b 357 struct commit_buffer *v = buffer_slab_peek(
4ff7e5c9 358 r->parsed_objects->buffer_slab, commit);
862e730e
JH
359 if (!v) {
360 if (sizep)
361 *sizep = 0;
362 return NULL;
363 }
8597ea3a
JK
364 if (sizep)
365 *sizep = v->size;
366 return v->buffer;
152ff1cc
JK
367}
368
07de3fd8
SB
369const void *repo_get_commit_buffer(struct repository *r,
370 const struct commit *commit,
371 unsigned long *sizep)
152ff1cc 372{
07de3fd8 373 const void *ret = get_cached_commit_buffer(r, commit, sizep);
152ff1cc
JK
374 if (!ret) {
375 enum object_type type;
376 unsigned long size;
07de3fd8 377 ret = repo_read_object_file(r, &commit->object.oid, &type, &size);
152ff1cc
JK
378 if (!ret)
379 die("cannot read commit object %s",
f2fd0760 380 oid_to_hex(&commit->object.oid));
152ff1cc
JK
381 if (type != OBJ_COMMIT)
382 die("expected commit for %s, got %s",
debca9d2 383 oid_to_hex(&commit->object.oid), type_name(type));
8597ea3a
JK
384 if (sizep)
385 *sizep = size;
152ff1cc
JK
386 }
387 return ret;
388}
389
70315373
SB
390void repo_unuse_commit_buffer(struct repository *r,
391 const struct commit *commit,
392 const void *buffer)
152ff1cc 393{
65ea9d4b 394 struct commit_buffer *v = buffer_slab_peek(
70315373 395 r->parsed_objects->buffer_slab, commit);
862e730e 396 if (!(v && v->buffer == buffer))
152ff1cc
JK
397 free((void *)buffer);
398}
399
6a7895fd 400void free_commit_buffer(struct parsed_object_pool *pool, struct commit *commit)
0fb370da 401{
65ea9d4b 402 struct commit_buffer *v = buffer_slab_peek(
6a7895fd 403 pool->buffer_slab, commit);
862e730e 404 if (v) {
6a83d902 405 FREE_AND_NULL(v->buffer);
862e730e
JH
406 v->size = 0;
407 }
0fb370da
JK
408}
409
a133c40b
NTND
410static inline void set_commit_tree(struct commit *c, struct tree *t)
411{
412 c->maybe_tree = t;
413}
414
301b8c7f
NTND
415struct tree *repo_get_commit_tree(struct repository *r,
416 const struct commit *commit)
5bb03de1 417{
7b8a21db
DS
418 if (commit->maybe_tree || !commit->object.parsed)
419 return commit->maybe_tree;
420
c49c82aa 421 if (commit_graph_position(commit) != COMMIT_NOT_FROM_GRAPH)
ea2dab1a 422 return get_commit_tree_in_graph(r, commit);
7b8a21db 423
83487663 424 return NULL;
5bb03de1
DS
425}
426
427struct object_id *get_commit_tree_oid(const struct commit *commit)
428{
ecb5091f 429 struct tree *tree = repo_get_commit_tree(the_repository, commit);
806278de 430 return tree ? &tree->object.oid : NULL;
5bb03de1
DS
431}
432
6a7895fd 433void release_commit_memory(struct parsed_object_pool *pool, struct commit *c)
14ba97f8 434{
a133c40b 435 set_commit_tree(c, NULL);
6a7895fd 436 free_commit_buffer(pool, c);
9784f973 437 c->index = 0;
14ba97f8 438 free_commit_list(c->parents);
14ba97f8
SB
439
440 c->object.parsed = 0;
441}
442
8597ea3a 443const void *detach_commit_buffer(struct commit *commit, unsigned long *sizep)
0fb370da 444{
65ea9d4b
SB
445 struct commit_buffer *v = buffer_slab_peek(
446 the_repository->parsed_objects->buffer_slab, commit);
8597ea3a
JK
447 void *ret;
448
862e730e
JH
449 if (!v) {
450 if (sizep)
451 *sizep = 0;
452 return NULL;
453 }
8597ea3a
JK
454 ret = v->buffer;
455 if (sizep)
456 *sizep = v->size;
457
458 v->buffer = NULL;
459 v->size = 0;
0fb370da
JK
460 return ret;
461}
462
fd8030c7 463int parse_commit_buffer(struct repository *r, struct commit *item, const void *buffer, unsigned long size, int check_graph)
175785e5 464{
cf7b1cad
NTND
465 const char *tail = buffer;
466 const char *bufptr = buffer;
7683e2e6 467 struct object_id parent;
6c88be16 468 struct commit_list **pptr;
5da5c8f4 469 struct commit_graft *graft;
2770ccbd 470 const int tree_entry_len = the_hash_algo->hexsz + 5;
471 const int parent_entry_len = the_hash_algo->hexsz + 7;
12736d2f 472 struct tree *tree;
bd2c39f5 473
175785e5
DB
474 if (item->object.parsed)
475 return 0;
bf20fe4c
ÆAB
476 /*
477 * Presumably this is leftover from an earlier failed parse;
478 * clear it out in preparation for us re-parsing (we'll hit the
479 * same error, but that's good, since it lets our caller know
480 * the result cannot be trusted.
481 */
482 free_commit_list(item->parents);
483 item->parents = NULL;
228c78fb 484
3b44f15a 485 tail += size;
7683e2e6 486 if (tail <= bufptr + tree_entry_len + 1 || memcmp(bufptr, "tree ", 5) ||
487 bufptr[tree_entry_len] != '\n')
f2fd0760 488 return error("bogus commit object %s", oid_to_hex(&item->object.oid));
26ea3e7d 489 if (get_oid_hex(bufptr + 5, &parent) < 0)
bd2afde8 490 return error("bad tree pointer in commit %s",
f2fd0760 491 oid_to_hex(&item->object.oid));
12736d2f
JK
492 tree = lookup_tree(r, &parent);
493 if (!tree)
494 return error("bad tree pointer %s in commit %s",
495 oid_to_hex(&parent),
496 oid_to_hex(&item->object.oid));
497 set_commit_tree(item, tree);
7683e2e6 498 bufptr += tree_entry_len + 1; /* "tree " + "hex sha1" + "\n" */
6c88be16 499 pptr = &item->parents;
5da5c8f4 500
fd8030c7 501 graft = lookup_commit_graft(r, &item->object.oid);
ce16364e
TB
502 if (graft)
503 r->parsed_objects->substituted_parent = 1;
7683e2e6 504 while (bufptr + parent_entry_len < tail && !memcmp(bufptr, "parent ", 7)) {
f7cc77d7
LT
505 struct commit *new_parent;
506
7683e2e6 507 if (tail <= bufptr + parent_entry_len + 1 ||
26ea3e7d 508 get_oid_hex(bufptr + 7, &parent) ||
7683e2e6 509 bufptr[parent_entry_len] != '\n')
f2fd0760 510 return error("bad parents in commit %s", oid_to_hex(&item->object.oid));
7683e2e6 511 bufptr += parent_entry_len + 1;
7f3140cd
JS
512 /*
513 * The clone is shallow if nr_parent < 0, and we must
514 * not traverse its real parents even when we unhide them.
515 */
3a5f3087 516 if (graft && (graft->nr_parent < 0 || !grafts_keep_true_parents))
5da5c8f4 517 continue;
fd8030c7 518 new_parent = lookup_commit(r, &parent);
c78fe004
JK
519 if (!new_parent)
520 return error("bad parent %s in commit %s",
521 oid_to_hex(&parent),
522 oid_to_hex(&item->object.oid));
523 pptr = &commit_list_insert(new_parent, pptr)->next;
5da5c8f4
JH
524 }
525 if (graft) {
526 int i;
527 struct commit *new_parent;
528 for (i = 0; i < graft->nr_parent; i++) {
fd8030c7 529 new_parent = lookup_commit(r,
c1f5eb49 530 &graft->parent[i]);
5da5c8f4 531 if (!new_parent)
c78fe004
JK
532 return error("bad graft parent %s in commit %s",
533 oid_to_hex(&graft->parent[i]),
534 oid_to_hex(&item->object.oid));
5da5c8f4 535 pptr = &commit_list_insert(new_parent, pptr)->next;
5da5c8f4 536 }
175785e5 537 }
0a617799 538 item->date = parse_commit_date(bufptr, tail);
27dedf0c 539
e2838d85 540 if (check_graph)
c7944050 541 load_commit_graph_info(r, item);
e2838d85 542
228c78fb 543 item->object.parsed = 1;
175785e5
DB
544 return 0;
545}
546
9e5252ab
SB
547int repo_parse_commit_internal(struct repository *r,
548 struct commit *item,
549 int quiet_on_missing,
550 int use_commit_graph)
bd2c39f5 551{
21666f1a 552 enum object_type type;
bd2c39f5
NP
553 void *buffer;
554 unsigned long size;
7e2ad1cd
JT
555 struct object_info oi = {
556 .typep = &type,
557 .sizep = &size,
558 .contentp = &buffer,
559 };
560 /*
561 * Git does not support partial clones that exclude commits, so set
562 * OBJECT_INFO_SKIP_FETCH_OBJECT to fail fast when an object is missing.
563 */
564 int flags = OBJECT_INFO_LOOKUP_REPLACE | OBJECT_INFO_SKIP_FETCH_OBJECT |
565 OBJECT_INFO_DIE_IF_CORRUPT;
bd2c39f5
NP
566 int ret;
567
9786f68b
MK
568 if (!item)
569 return -1;
bd2c39f5
NP
570 if (item->object.parsed)
571 return 0;
7a5d6044
PS
572 if (use_commit_graph && parse_commit_in_graph(r, item)) {
573 static int commit_graph_paranoia = -1;
574
575 if (commit_graph_paranoia == -1)
b1df3b38 576 commit_graph_paranoia = git_env_bool(GIT_COMMIT_GRAPH_PARANOIA, 0);
7a5d6044
PS
577
578 if (commit_graph_paranoia && !has_object(r, &item->object.oid, 0)) {
579 unparse_commit(r, &item->object.oid);
580 return quiet_on_missing ? -1 :
581 error(_("commit %s exists in commit-graph but not in the object database"),
582 oid_to_hex(&item->object.oid));
583 }
584
177722b3 585 return 0;
7a5d6044 586 }
7e2ad1cd
JT
587
588 if (oid_object_info_extended(r, &item->object.oid, &oi, flags) < 0)
9cc2b07a
JK
589 return quiet_on_missing ? -1 :
590 error("Could not read %s",
f2fd0760 591 oid_to_hex(&item->object.oid));
21666f1a 592 if (type != OBJ_COMMIT) {
bd2c39f5
NP
593 free(buffer);
594 return error("Object %s not a commit",
f2fd0760 595 oid_to_hex(&item->object.oid));
bd2c39f5 596 }
9b19adac 597
9e5252ab 598 ret = parse_commit_buffer(r, item, buffer, size, 0);
753f6708
JK
599 if (save_commit_buffer && !ret &&
600 !get_cached_commit_buffer(r, item, NULL)) {
9e5252ab 601 set_commit_buffer(r, item, buffer, size);
3ff1fbbb
LT
602 return 0;
603 }
bd2c39f5
NP
604 free(buffer);
605 return ret;
606}
607
9e5252ab
SB
608int repo_parse_commit_gently(struct repository *r,
609 struct commit *item, int quiet_on_missing)
9b19adac 610{
9e5252ab 611 return repo_parse_commit_internal(r, item, quiet_on_missing, 1);
9b19adac
DS
612}
613
7059dccc
JK
614void parse_commit_or_die(struct commit *item)
615{
ecb5091f 616 if (repo_parse_commit(the_repository, item))
7059dccc 617 die("unable to parse commit %s",
f2fd0760 618 item ? oid_to_hex(&item->object.oid) : "(null)");
7059dccc
JK
619}
620
11af2aae
CC
621int find_commit_subject(const char *commit_buffer, const char **subject)
622{
623 const char *eol;
624 const char *p = commit_buffer;
625
626 while (*p && (*p != '\n' || p[1] != '\n'))
627 p++;
628 if (*p) {
4e1b06da 629 p = skip_blank_lines(p + 2);
9c9b03b1 630 eol = strchrnul(p, '\n');
11af2aae
CC
631 } else
632 eol = p;
633
634 *subject = p;
635
636 return eol - p;
637}
638
6e0e2887
CM
639size_t commit_subject_length(const char *body)
640{
641 const char *p = body;
642 while (*p) {
643 const char *next = skip_blank_lines(p);
644 if (next != p)
645 break;
646 p = strchrnul(p, '\n');
647 if (*p)
648 p++;
649 }
650 return p - body;
651}
652
ac5155ef 653struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
dd97f850 654{
812666c8 655 struct commit_list *new_list = xmalloc(sizeof(struct commit_list));
dd97f850
DB
656 new_list->item = item;
657 new_list->next = *list_p;
658 *list_p = new_list;
ac5155ef 659 return new_list;
dd97f850
DB
660}
661
597b2c39
DS
662int commit_list_contains(struct commit *item, struct commit_list *list)
663{
664 while (list) {
665 if (list->item == item)
666 return 1;
667 list = list->next;
668 }
669
670 return 0;
671}
672
65319475
MV
673unsigned commit_list_count(const struct commit_list *l)
674{
675 unsigned c = 0;
676 for (; l; l = l->next )
677 c++;
678 return c;
679}
680
44ec7c57 681struct commit_list *copy_commit_list(const struct commit_list *list)
53d00b39
TR
682{
683 struct commit_list *head = NULL;
684 struct commit_list **pp = &head;
685 while (list) {
cb979dbd 686 pp = commit_list_append(list->item, pp);
53d00b39
TR
687 list = list->next;
688 }
689 return head;
690}
691
b0ca1205
EN
692struct commit_list *reverse_commit_list(struct commit_list *list)
693{
694 struct commit_list *next = NULL, *current, *backup;
695 for (current = list; current; current = backup) {
696 backup = current->next;
697 current->next = next;
698 next = current;
699 }
700 return next;
701}
702
175785e5
DB
703void free_commit_list(struct commit_list *list)
704{
e510ab89
RS
705 while (list)
706 pop_commit(&list);
175785e5 707}
dd97f850 708
47e44ed1 709struct commit_list * commit_list_insert_by_date(struct commit *item, struct commit_list **list)
dd97f850
DB
710{
711 struct commit_list **pp = list;
712 struct commit_list *p;
713 while ((p = *pp) != NULL) {
714 if (p->item->date < item->date) {
715 break;
716 }
717 pp = &p->next;
718 }
f755494c 719 return commit_list_insert(item, pp);
dd97f850
DB
720}
721
c0fb5774
RS
722static int commit_list_compare_by_date(const struct commit_list *a,
723 const struct commit_list *b)
46905893 724{
c0fb5774
RS
725 timestamp_t a_date = a->item->date;
726 timestamp_t b_date = b->item->date;
46905893
RS
727 if (a_date < b_date)
728 return 1;
729 if (a_date > b_date)
730 return -1;
731 return 0;
732}
733
c0fb5774 734DEFINE_LIST_SORT(static, commit_list_sort, struct commit_list, next);
a6080a0a 735
47e44ed1 736void commit_list_sort_by_date(struct commit_list **list)
dd97f850 737{
c0fb5774 738 commit_list_sort(list, commit_list_compare_by_date);
dd97f850
DB
739}
740
58e28af6
DB
741struct commit *pop_most_recent_commit(struct commit_list **list,
742 unsigned int mark)
dd97f850 743{
e510ab89 744 struct commit *ret = pop_commit(list);
dd97f850 745 struct commit_list *parents = ret->parents;
dd97f850
DB
746
747 while (parents) {
4056c091 748 struct commit *commit = parents->item;
ecb5091f 749 if (!repo_parse_commit(the_repository, commit) && !(commit->object.flags & mark)) {
58e28af6 750 commit->object.flags |= mark;
47e44ed1 751 commit_list_insert_by_date(commit, list);
4056c091 752 }
dd97f850
DB
753 parents = parents->next;
754 }
755 return ret;
756}
e3bc7a3b 757
941ba8db
NTND
758static void clear_commit_marks_1(struct commit_list **plist,
759 struct commit *commit, unsigned int mark)
f8f9c73c 760{
60fcc2e6
JS
761 while (commit) {
762 struct commit_list *parents;
f8f9c73c 763
60fcc2e6
JS
764 if (!(mark & commit->object.flags))
765 return;
58ecf5c1 766
60fcc2e6
JS
767 commit->object.flags &= ~mark;
768
769 parents = commit->parents;
770 if (!parents)
771 return;
772
4cb39fcf
RS
773 while ((parents = parents->next)) {
774 if (parents->item->object.flags & mark)
775 commit_list_insert(parents->item, plist);
776 }
60fcc2e6
JS
777
778 commit = commit->parents->item;
f8f9c73c
JH
779 }
780}
781
85ee0680 782void clear_commit_marks_many(size_t nr, struct commit **commit, unsigned int mark)
941ba8db 783{
98b423bc
RS
784 for (size_t i = 0; i < nr; i++)
785 clear_commit_marks(commit[i], mark);
941ba8db
NTND
786}
787
e895cb51
JH
788void clear_commit_marks(struct commit *commit, unsigned int mark)
789{
98b423bc
RS
790 struct commit_list *list = NULL;
791
792 clear_commit_marks_1(&list, commit, mark);
793 while (list)
794 clear_commit_marks_1(&list, pop_commit(&list), mark);
e895cb51
JH
795}
796
a3437b8c
JS
797struct commit *pop_commit(struct commit_list **stack)
798{
799 struct commit_list *top = *stack;
800 struct commit *item = top ? top->item : NULL;
801
802 if (top) {
803 *stack = top->next;
804 free(top);
805 }
806 return item;
807}
808
a84b794a
JH
809/*
810 * Topological sort support
811 */
96c4f4a3 812
a84b794a
JH
813/* count number of children that have not been emitted */
814define_commit_slab(indegree_slab, int);
96c4f4a3 815
18207030 816define_commit_slab(author_date_slab, timestamp_t);
81c6b38b 817
5284fc5c
DS
818void record_author_date(struct author_date_slab *author_date,
819 struct commit *commit)
81c6b38b 820{
ecb5091f
ÆAB
821 const char *buffer = repo_get_commit_buffer(the_repository, commit,
822 NULL);
81c6b38b 823 struct ident_split ident;
ea5517f0
JK
824 const char *ident_line;
825 size_t ident_len;
81c6b38b 826 char *date_end;
dddbad72 827 timestamp_t date;
81c6b38b 828
ea5517f0
JK
829 ident_line = find_commit_header(buffer, "author", &ident_len);
830 if (!ident_line)
831 goto fail_exit; /* no author line */
832 if (split_ident_line(&ident, ident_line, ident_len) ||
833 !ident.date_begin || !ident.date_end)
834 goto fail_exit; /* malformed "author" line */
81c6b38b 835
1aeb7e75 836 date = parse_timestamp(ident.date_begin, &date_end, 10);
81c6b38b
JH
837 if (date_end != ident.date_end)
838 goto fail_exit; /* malformed date */
839 *(author_date_slab_at(author_date, commit)) = date;
840
841fail_exit:
ecb5091f 842 repo_unuse_commit_buffer(the_repository, commit, buffer);
81c6b38b
JH
843}
844
5284fc5c
DS
845int compare_commits_by_author_date(const void *a_, const void *b_,
846 void *cb_data)
81c6b38b
JH
847{
848 const struct commit *a = a_, *b = b_;
849 struct author_date_slab *author_date = cb_data;
dddbad72
JS
850 timestamp_t a_date = *(author_date_slab_at(author_date, a));
851 timestamp_t b_date = *(author_date_slab_at(author_date, b));
81c6b38b
JH
852
853 /* newer commits with larger date first */
854 if (a_date < b_date)
855 return 1;
856 else if (a_date > b_date)
857 return -1;
858 return 0;
859}
860
17587122
JK
861int compare_commits_by_gen_then_commit_date(const void *a_, const void *b_,
862 void *unused UNUSED)
3afc679b
DS
863{
864 const struct commit *a = a_, *b = b_;
d7f92784
AK
865 const timestamp_t generation_a = commit_graph_generation(a),
866 generation_b = commit_graph_generation(b);
3afc679b
DS
867
868 /* newer commits first */
c752ad09 869 if (generation_a < generation_b)
3afc679b 870 return 1;
c752ad09 871 else if (generation_a > generation_b)
3afc679b
DS
872 return -1;
873
874 /* use date as a heuristic when generations are equal */
875 if (a->date < b->date)
876 return 1;
877 else if (a->date > b->date)
878 return -1;
879 return 0;
880}
881
17587122
JK
882int compare_commits_by_commit_date(const void *a_, const void *b_,
883 void *unused UNUSED)
da24b104
JH
884{
885 const struct commit *a = a_, *b = b_;
886 /* newer commits with larger date first */
887 if (a->date < b->date)
888 return 1;
889 else if (a->date > b->date)
890 return -1;
891 return 0;
892}
893
ab580ace
JS
894/*
895 * Performs an in-place topological sort on the list supplied.
896 */
da24b104 897void sort_in_topological_order(struct commit_list **list, enum rev_sort_order sort_order)
6b6dcfc2 898{
23c17d4a 899 struct commit_list *next, *orig = *list;
23c17d4a 900 struct commit_list **pptr;
a84b794a 901 struct indegree_slab indegree;
da24b104
JH
902 struct prio_queue queue;
903 struct commit *commit;
81c6b38b 904 struct author_date_slab author_date;
a6080a0a 905
23c17d4a 906 if (!orig)
7d6fb370 907 return;
23c17d4a
LT
908 *list = NULL;
909
a84b794a 910 init_indegree_slab(&indegree);
da24b104 911 memset(&queue, '\0', sizeof(queue));
81c6b38b 912
da24b104
JH
913 switch (sort_order) {
914 default: /* REV_SORT_IN_GRAPH_ORDER */
915 queue.compare = NULL;
916 break;
917 case REV_SORT_BY_COMMIT_DATE:
918 queue.compare = compare_commits_by_commit_date;
919 break;
81c6b38b
JH
920 case REV_SORT_BY_AUTHOR_DATE:
921 init_author_date_slab(&author_date);
922 queue.compare = compare_commits_by_author_date;
923 queue.cb_data = &author_date;
924 break;
da24b104 925 }
96c4f4a3 926
23c17d4a
LT
927 /* Mark them and clear the indegree */
928 for (next = orig; next; next = next->next) {
929 struct commit *commit = next->item;
a84b794a 930 *(indegree_slab_at(&indegree, commit)) = 1;
81c6b38b
JH
931 /* also record the author dates, if needed */
932 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
933 record_author_date(&author_date, commit);
ab580ace 934 }
23c17d4a 935
ab580ace 936 /* update the indegree */
23c17d4a 937 for (next = orig; next; next = next->next) {
da24b104 938 struct commit_list *parents = next->item->parents;
ab580ace 939 while (parents) {
23c17d4a 940 struct commit *parent = parents->item;
a84b794a 941 int *pi = indegree_slab_at(&indegree, parent);
6b6dcfc2 942
96c4f4a3
JK
943 if (*pi)
944 (*pi)++;
23c17d4a 945 parents = parents->next;
ab580ace 946 }
ab580ace 947 }
23c17d4a 948
a6080a0a 949 /*
674d1727
PH
950 * find the tips
951 *
952 * tips are nodes not reachable from any other node in the list
953 *
954 * the tips serve as a starting set for the work queue.
955 */
23c17d4a
LT
956 for (next = orig; next; next = next->next) {
957 struct commit *commit = next->item;
ab580ace 958
a84b794a 959 if (*(indegree_slab_at(&indegree, commit)) == 1)
da24b104 960 prio_queue_put(&queue, commit);
ab580ace 961 }
4c8725f1 962
da24b104
JH
963 /*
964 * This is unfortunate; the initial tips need to be shown
965 * in the order given from the revision traversal machinery.
966 */
967 if (sort_order == REV_SORT_IN_GRAPH_ORDER)
968 prio_queue_reverse(&queue);
969
970 /* We no longer need the commit list */
971 free_commit_list(orig);
23c17d4a
LT
972
973 pptr = list;
974 *list = NULL;
da24b104
JH
975 while ((commit = prio_queue_get(&queue)) != NULL) {
976 struct commit_list *parents;
23c17d4a 977
23c17d4a 978 for (parents = commit->parents; parents ; parents = parents->next) {
cd2b8ae9 979 struct commit *parent = parents->item;
a84b794a 980 int *pi = indegree_slab_at(&indegree, parent);
23c17d4a 981
96c4f4a3 982 if (!*pi)
23c17d4a
LT
983 continue;
984
985 /*
986 * parents are only enqueued for emission
987 * when all their children have been emitted thereby
988 * guaranteeing topological order.
989 */
da24b104
JH
990 if (--(*pi) == 1)
991 prio_queue_put(&queue, parent);
ab580ace
JS
992 }
993 /*
da24b104
JH
994 * all children of commit have already been
995 * emitted. we can emit it now.
674d1727 996 */
a84b794a 997 *(indegree_slab_at(&indegree, commit)) = 0;
da24b104
JH
998
999 pptr = &commit_list_insert(commit, pptr)->next;
ab580ace 1000 }
96c4f4a3 1001
a84b794a 1002 clear_indegree_slab(&indegree);
da24b104 1003 clear_prio_queue(&queue);
81c6b38b
JH
1004 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
1005 clear_author_date_slab(&author_date);
ab580ace 1006}
7c6f8aaf 1007
103148aa
PK
1008struct rev_collect {
1009 struct commit **commit;
1010 int nr;
1011 int alloc;
1012 unsigned int initial : 1;
1013};
1014
1015static void add_one_commit(struct object_id *oid, struct rev_collect *revs)
1016{
1017 struct commit *commit;
1018
1019 if (is_null_oid(oid))
1020 return;
1021
1022 commit = lookup_commit(the_repository, oid);
1023 if (!commit ||
1024 (commit->object.flags & TMP_MARK) ||
ecb5091f 1025 repo_parse_commit(the_repository, commit))
103148aa
PK
1026 return;
1027
1028 ALLOC_GROW(revs->commit, revs->nr + 1, revs->alloc);
1029 revs->commit[revs->nr++] = commit;
1030 commit->object.flags |= TMP_MARK;
1031}
1032
1033static int collect_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
5cf88fd8
ÆAB
1034 const char *ident UNUSED,
1035 timestamp_t timestamp UNUSED, int tz UNUSED,
1036 const char *message UNUSED, void *cbdata)
103148aa
PK
1037{
1038 struct rev_collect *revs = cbdata;
1039
1040 if (revs->initial) {
1041 revs->initial = 0;
1042 add_one_commit(ooid, revs);
1043 }
1044 add_one_commit(noid, revs);
1045 return 0;
1046}
1047
1048struct commit *get_fork_point(const char *refname, struct commit *commit)
1049{
1050 struct object_id oid;
1051 struct rev_collect revs;
53173805 1052 struct commit_list *bases = NULL;
103148aa
PK
1053 int i;
1054 struct commit *ret = NULL;
f08132f8
JH
1055 char *full_refname;
1056
12cb1c10
ÆAB
1057 switch (repo_dwim_ref(the_repository, refname, strlen(refname), &oid,
1058 &full_refname, 0)) {
f08132f8
JH
1059 case 0:
1060 die("No such ref: '%s'", refname);
1061 case 1:
1062 break; /* good */
1063 default:
1064 die("Ambiguous refname: '%s'", refname);
1065 }
103148aa
PK
1066
1067 memset(&revs, 0, sizeof(revs));
1068 revs.initial = 1;
2e5c4758
PS
1069 refs_for_each_reflog_ent(get_main_ref_store(the_repository),
1070 full_refname, collect_one_reflog_ent, &revs);
103148aa 1071
f08132f8 1072 if (!revs.nr)
103148aa
PK
1073 add_one_commit(&oid, &revs);
1074
1075 for (i = 0; i < revs.nr; i++)
1076 revs.commit[i]->object.flags &= ~TMP_MARK;
1077
53173805
JS
1078 if (repo_get_merge_bases_many(the_repository, commit, revs.nr,
1079 revs.commit, &bases) < 0)
1080 exit(128);
103148aa
PK
1081
1082 /*
1083 * There should be one and only one merge base, when we found
1084 * a common ancestor among reflog entries.
1085 */
1086 if (!bases || bases->next)
1087 goto cleanup_return;
1088
1089 /* And the found one must be one of the reflog entries */
1090 for (i = 0; i < revs.nr; i++)
1091 if (&bases->item->object == &revs.commit[i]->object)
1092 break; /* found */
1093 if (revs.nr <= i)
1094 goto cleanup_return;
1095
1096 ret = bases->item;
1097
1098cleanup_return:
0c10ed19 1099 free(revs.commit);
103148aa 1100 free_commit_list(bases);
f08132f8 1101 free(full_refname);
103148aa
PK
1102 return ret;
1103}
1104
42d4e1d1 1105/*
1106 * Indexed by hash algorithm identifier.
1107 */
1108static const char *gpg_sig_headers[] = {
1109 NULL,
1110 "gpgsig",
1111 "gpgsig-sha256",
1112};
ba3c69a9 1113
6bcc5fa2 1114int add_header_signature(struct strbuf *buf, struct strbuf *sig, const struct git_hash_algo *algo)
ba3c69a9 1115{
ba3c69a9 1116 int inspos, copypos;
3324dd8f 1117 const char *eoh;
6206089c 1118 const char *gpg_sig_header = gpg_sig_headers[hash_algo_by_ptr(algo)];
42d4e1d1 1119 int gpg_sig_header_len = strlen(gpg_sig_header);
ba3c69a9
JH
1120
1121 /* find the end of the header */
3324dd8f
JS
1122 eoh = strstr(buf->buf, "\n\n");
1123 if (!eoh)
1124 inspos = buf->len;
1125 else
1126 inspos = eoh - buf->buf + 1;
ba3c69a9 1127
6206089c 1128 for (copypos = 0; sig->buf[copypos]; ) {
1129 const char *bol = sig->buf + copypos;
ba3c69a9
JH
1130 const char *eol = strchrnul(bol, '\n');
1131 int len = (eol - bol) + !!*eol;
1132
1133 if (!copypos) {
1134 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len);
1135 inspos += gpg_sig_header_len;
1136 }
a91cc7fa 1137 strbuf_insertstr(buf, inspos++, " ");
ba3c69a9
JH
1138 strbuf_insert(buf, inspos, bol, len);
1139 inspos += len;
1140 copypos += len;
1141 }
ba3c69a9
JH
1142 return 0;
1143}
1144
6206089c 1145static int sign_commit_to_strbuf(struct strbuf *sig, struct strbuf *buf, const char *keyid)
1146{
b8849e23
PS
1147 char *keyid_to_free = NULL;
1148 int ret = 0;
6206089c 1149 if (!keyid || !*keyid)
b8849e23 1150 keyid = keyid_to_free = get_signing_key();
6206089c 1151 if (sign_buffer(buf, sig, keyid))
b8849e23
PS
1152 ret = -1;
1153 free(keyid_to_free);
1154 return ret;
6206089c 1155}
937032e1 1156
218aa3a6 1157int parse_signed_commit(const struct commit *commit,
1fb5cf0d 1158 struct strbuf *payload, struct strbuf *signature,
1159 const struct git_hash_algo *algop)
0c37f1fc
JH
1160{
1161 unsigned long size;
ecb5091f
ÆAB
1162 const char *buffer = repo_get_commit_buffer(the_repository, commit,
1163 &size);
937032e1 1164 int ret = parse_buffer_signed_by_header(buffer, size, payload, signature, algop);
1165
ecb5091f 1166 repo_unuse_commit_buffer(the_repository, commit, buffer);
937032e1 1167 return ret;
1168}
1169
1170int parse_buffer_signed_by_header(const char *buffer,
1171 unsigned long size,
1172 struct strbuf *payload,
1173 struct strbuf *signature,
1174 const struct git_hash_algo *algop)
1175{
1fb5cf0d 1176 int in_signature = 0, saw_signature = 0, other_signature = 0;
1177 const char *line, *tail, *p;
1178 const char *gpg_sig_header = gpg_sig_headers[hash_algo_by_ptr(algop)];
0c37f1fc
JH
1179
1180 line = buffer;
1181 tail = buffer + size;
0c37f1fc
JH
1182 while (line < tail) {
1183 const char *sig = NULL;
218aa3a6 1184 const char *next = memchr(line, '\n', tail - line);
0c37f1fc
JH
1185
1186 next = next ? next + 1 : tail;
1187 if (in_signature && line[0] == ' ')
1188 sig = line + 1;
1fb5cf0d 1189 else if (skip_prefix(line, gpg_sig_header, &p) &&
1190 *p == ' ') {
1191 sig = line + strlen(gpg_sig_header) + 1;
1192 other_signature = 0;
1193 }
1194 else if (starts_with(line, "gpgsig"))
1195 other_signature = 1;
1196 else if (other_signature && line[0] != ' ')
1197 other_signature = 0;
0c37f1fc
JH
1198 if (sig) {
1199 strbuf_add(signature, sig, next - sig);
1200 saw_signature = 1;
1201 in_signature = 1;
1202 } else {
1203 if (*line == '\n')
1204 /* dump the whole remainder of the buffer */
1205 next = tail;
1fb5cf0d 1206 if (!other_signature)
1207 strbuf_add(payload, line, next - line);
0c37f1fc
JH
1208 in_signature = 0;
1209 }
1210 line = next;
1211 }
0c37f1fc
JH
1212 return saw_signature;
1213}
1214
0b05ab6f
CC
1215int remove_signature(struct strbuf *buf)
1216{
1217 const char *line = buf->buf;
1218 const char *tail = buf->buf + buf->len;
1219 int in_signature = 0;
1fb5cf0d 1220 struct sigbuf {
1221 const char *start;
1222 const char *end;
1223 } sigs[2], *sigp = &sigs[0];
1224 int i;
1225 const char *orig_buf = buf->buf;
1226
1227 memset(sigs, 0, sizeof(sigs));
0b05ab6f
CC
1228
1229 while (line < tail) {
1230 const char *next = memchr(line, '\n', tail - line);
1231 next = next ? next + 1 : tail;
1232
1233 if (in_signature && line[0] == ' ')
1fb5cf0d 1234 sigp->end = next;
42d4e1d1 1235 else if (starts_with(line, "gpgsig")) {
1236 int i;
1237 for (i = 1; i < GIT_HASH_NALGOS; i++) {
1238 const char *p;
1239 if (skip_prefix(line, gpg_sig_headers[i], &p) &&
1240 *p == ' ') {
1fb5cf0d 1241 sigp->start = line;
1242 sigp->end = next;
42d4e1d1 1243 in_signature = 1;
1244 }
1245 }
0b05ab6f
CC
1246 } else {
1247 if (*line == '\n')
1248 /* dump the whole remainder of the buffer */
1249 next = tail;
1fb5cf0d 1250 if (in_signature && sigp - sigs != ARRAY_SIZE(sigs))
1251 sigp++;
0b05ab6f
CC
1252 in_signature = 0;
1253 }
1254 line = next;
1255 }
1256
1fb5cf0d 1257 for (i = ARRAY_SIZE(sigs) - 1; i >= 0; i--)
1258 if (sigs[i].start)
1259 strbuf_remove(buf, sigs[i].start - orig_buf, sigs[i].end - sigs[i].start);
0b05ab6f 1260
1fb5cf0d 1261 return sigs[0].start != NULL;
0b05ab6f
CC
1262}
1263
63c9bd37 1264static void handle_signed_tag(const struct commit *parent, struct commit_extra_header ***tail)
5231c633
JH
1265{
1266 struct merge_remote_desc *desc;
1267 struct commit_extra_header *mergetag;
1268 char *buf;
482c1191 1269 unsigned long size;
5231c633 1270 enum object_type type;
482c1191 1271 struct strbuf payload = STRBUF_INIT;
1272 struct strbuf signature = STRBUF_INIT;
5231c633
JH
1273
1274 desc = merge_remote_util(parent);
1275 if (!desc || !desc->obj)
1276 return;
bc726bd0
ÆAB
1277 buf = repo_read_object_file(the_repository, &desc->obj->oid, &type,
1278 &size);
5231c633
JH
1279 if (!buf || type != OBJ_TAG)
1280 goto free_return;
482c1191 1281 if (!parse_signature(buf, size, &payload, &signature))
5231c633
JH
1282 goto free_return;
1283 /*
1284 * We could verify this signature and either omit the tag when
1285 * it does not validate, but the integrator may not have the
0e20b229 1286 * public key of the signer of the tag being merged, while a
5231c633
JH
1287 * later auditor may have it while auditing, so let's not run
1288 * verify-signed-buffer here for now...
1289 *
1290 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1291 * warn("warning: signed tag unverified.");
1292 */
ca56dadb 1293 CALLOC_ARRAY(mergetag, 1);
5231c633
JH
1294 mergetag->key = xstrdup("mergetag");
1295 mergetag->value = buf;
1296 mergetag->len = size;
1297
1298 **tail = mergetag;
1299 *tail = &mergetag->next;
482c1191 1300 strbuf_release(&payload);
1301 strbuf_release(&signature);
5231c633
JH
1302 return;
1303
1304free_return:
1305 free(buf);
1306}
1307
434060ec 1308int check_commit_signature(const struct commit *commit, struct signature_check *sigc)
ffb6d7d5
SG
1309{
1310 struct strbuf payload = STRBUF_INIT;
1311 struct strbuf signature = STRBUF_INIT;
434060ec 1312 int ret = 1;
ffb6d7d5
SG
1313
1314 sigc->result = 'N';
1315
1fb5cf0d 1316 if (parse_signed_commit(commit, &payload, &signature, the_hash_algo) <= 0)
ffb6d7d5 1317 goto out;
02769437 1318
6393c956 1319 sigc->payload_type = SIGNATURE_PAYLOAD_COMMIT;
02769437
FS
1320 sigc->payload = strbuf_detach(&payload, &sigc->payload_len);
1321 ret = check_signature(sigc, signature.buf, signature.len);
ffb6d7d5
SG
1322
1323 out:
ffb6d7d5
SG
1324 strbuf_release(&payload);
1325 strbuf_release(&signature);
434060ec 1326
1327 return ret;
ffb6d7d5
SG
1328}
1329
54887b46
HJI
1330void verify_merge_signature(struct commit *commit, int verbosity,
1331 int check_trust)
edc4d47d
JK
1332{
1333 char hex[GIT_MAX_HEXSZ + 1];
1334 struct signature_check signature_check;
54887b46 1335 int ret;
edc4d47d
JK
1336 memset(&signature_check, 0, sizeof(signature_check));
1337
54887b46 1338 ret = check_commit_signature(commit, &signature_check);
edc4d47d 1339
d850b7a5
ÆAB
1340 repo_find_unique_abbrev_r(the_repository, hex, &commit->object.oid,
1341 DEFAULT_ABBREV);
edc4d47d
JK
1342 switch (signature_check.result) {
1343 case 'G':
54887b46
HJI
1344 if (ret || (check_trust && signature_check.trust_level < TRUST_MARGINAL))
1345 die(_("Commit %s has an untrusted GPG signature, "
1346 "allegedly by %s."), hex, signature_check.signer);
edc4d47d 1347 break;
edc4d47d
JK
1348 case 'B':
1349 die(_("Commit %s has a bad GPG signature "
1350 "allegedly by %s."), hex, signature_check.signer);
1351 default: /* 'N' */
1352 die(_("Commit %s does not have a GPG signature."), hex);
1353 }
1354 if (verbosity >= 0 && signature_check.result == 'G')
1355 printf(_("Commit %s has a good GPG signature by %s\n"),
1356 hex, signature_check.signer);
ffb6d7d5 1357
edc4d47d
JK
1358 signature_check_clear(&signature_check);
1359}
ffb6d7d5 1360
63c9bd37 1361void append_merge_tag_headers(const struct commit_list *parents,
5231c633
JH
1362 struct commit_extra_header ***tail)
1363{
1364 while (parents) {
63c9bd37 1365 const struct commit *parent = parents->item;
5231c633
JH
1366 handle_signed_tag(parent, tail);
1367 parents = parents->next;
1368 }
1369}
1370
63c9bd37 1371static int convert_commit_extra_headers(const struct commit_extra_header *orig,
a3e8ae54
EB
1372 struct commit_extra_header **result)
1373{
1374 const struct git_hash_algo *compat = the_repository->compat_hash_algo;
1375 const struct git_hash_algo *algo = the_repository->hash_algo;
1376 struct commit_extra_header *extra = NULL, **tail = &extra;
1377 struct strbuf out = STRBUF_INIT;
1378 while (orig) {
1379 struct commit_extra_header *new;
1380 CALLOC_ARRAY(new, 1);
1381 if (!strcmp(orig->key, "mergetag")) {
f6e174b2 1382 if (convert_object_file(the_repository, &out, algo, compat,
a3e8ae54
EB
1383 orig->value, orig->len,
1384 OBJ_TAG, 1)) {
1385 free(new);
1386 free_commit_extra_headers(extra);
1387 return -1;
1388 }
1389 new->key = xstrdup("mergetag");
1390 new->value = strbuf_detach(&out, &new->len);
1391 } else {
1392 new->key = xstrdup(orig->key);
1393 new->len = orig->len;
1394 new->value = xmemdupz(orig->value, orig->len);
1395 }
1396 *tail = new;
1397 tail = &new->next;
1398 orig = orig->next;
1399 }
1400 *result = extra;
1401 return 0;
1402}
1403
5231c633 1404static void add_extra_header(struct strbuf *buffer,
63c9bd37 1405 const struct commit_extra_header *extra)
5231c633
JH
1406{
1407 strbuf_addstr(buffer, extra->key);
ed7a42a0
JH
1408 if (extra->len)
1409 strbuf_add_lines(buffer, " ", extra->value, extra->len);
1410 else
1411 strbuf_addch(buffer, '\n');
1412}
1413
c871a1d1
JH
1414struct commit_extra_header *read_commit_extra_headers(struct commit *commit,
1415 const char **exclude)
ed7a42a0
JH
1416{
1417 struct commit_extra_header *extra = NULL;
1418 unsigned long size;
ecb5091f
ÆAB
1419 const char *buffer = repo_get_commit_buffer(the_repository, commit,
1420 &size);
218aa3a6 1421 extra = read_commit_extra_header_lines(buffer, size, exclude);
ecb5091f 1422 repo_unuse_commit_buffer(the_repository, commit, buffer);
ed7a42a0
JH
1423 return extra;
1424}
1425
fef461ea 1426int for_each_mergetag(each_mergetag_fn fn, struct commit *commit, void *data)
063da62b
CC
1427{
1428 struct commit_extra_header *extra, *to_free;
fef461ea 1429 int res = 0;
063da62b
CC
1430
1431 to_free = read_commit_extra_headers(commit, NULL);
fef461ea 1432 for (extra = to_free; !res && extra; extra = extra->next) {
063da62b
CC
1433 if (strcmp(extra->key, "mergetag"))
1434 continue; /* not a merge tag */
fef461ea 1435 res = fn(commit, extra, data);
063da62b
CC
1436 }
1437 free_commit_extra_headers(to_free);
fef461ea 1438 return res;
063da62b
CC
1439}
1440
ed7a42a0
JH
1441static inline int standard_header_field(const char *field, size_t len)
1442{
b072504c
RS
1443 return ((len == 4 && !memcmp(field, "tree", 4)) ||
1444 (len == 6 && !memcmp(field, "parent", 6)) ||
1445 (len == 6 && !memcmp(field, "author", 6)) ||
1446 (len == 9 && !memcmp(field, "committer", 9)) ||
1447 (len == 8 && !memcmp(field, "encoding", 8)));
ed7a42a0
JH
1448}
1449
c871a1d1
JH
1450static int excluded_header_field(const char *field, size_t len, const char **exclude)
1451{
1452 if (!exclude)
1453 return 0;
1454
1455 while (*exclude) {
1456 size_t xlen = strlen(*exclude);
b072504c 1457 if (len == xlen && !memcmp(field, *exclude, xlen))
c871a1d1
JH
1458 return 1;
1459 exclude++;
1460 }
1461 return 0;
1462}
1463
82a75299
JH
1464static struct commit_extra_header *read_commit_extra_header_lines(
1465 const char *buffer, size_t size,
1466 const char **exclude)
ed7a42a0
JH
1467{
1468 struct commit_extra_header *extra = NULL, **tail = &extra, *it = NULL;
1469 const char *line, *next, *eof, *eob;
1470 struct strbuf buf = STRBUF_INIT;
1471
1472 for (line = buffer, eob = line + size;
1473 line < eob && *line != '\n';
1474 line = next) {
1475 next = memchr(line, '\n', eob - line);
1476 next = next ? next + 1 : eob;
1477 if (*line == ' ') {
1478 /* continuation */
1479 if (it)
1480 strbuf_add(&buf, line + 1, next - (line + 1));
1481 continue;
1482 }
1483 if (it)
1484 it->value = strbuf_detach(&buf, &it->len);
1485 strbuf_reset(&buf);
1486 it = NULL;
1487
50a01cc4
RS
1488 eof = memchr(line, ' ', next - line);
1489 if (!eof)
ed7a42a0 1490 eof = next;
b072504c
RS
1491 else if (standard_header_field(line, eof - line) ||
1492 excluded_header_field(line, eof - line, exclude))
ed7a42a0
JH
1493 continue;
1494
ca56dadb 1495 CALLOC_ARRAY(it, 1);
ed7a42a0
JH
1496 it->key = xmemdupz(line, eof-line);
1497 *tail = it;
1498 tail = &it->next;
1499 if (eof + 1 < next)
1500 strbuf_add(&buf, eof + 1, next - (eof + 1));
1501 }
1502 if (it)
1503 it->value = strbuf_detach(&buf, &it->len);
1504 return extra;
5231c633
JH
1505}
1506
1507void free_commit_extra_headers(struct commit_extra_header *extra)
1508{
1509 while (extra) {
1510 struct commit_extra_header *next = extra->next;
1511 free(extra->key);
1512 free(extra->value);
1513 free(extra);
1514 extra = next;
1515 }
1516}
1517
5078f344 1518int commit_tree(const char *msg, size_t msg_len, const struct object_id *tree,
63c9bd37 1519 const struct commit_list *parents, struct object_id *ret,
ba3c69a9 1520 const char *author, const char *sign_commit)
5231c633
JH
1521{
1522 struct commit_extra_header *extra = NULL, **tail = &extra;
1523 int result;
1524
1525 append_merge_tag_headers(parents, &tail);
e8cbe211
PW
1526 result = commit_tree_extended(msg, msg_len, tree, parents, ret, author,
1527 NULL, sign_commit, extra);
5231c633
JH
1528 free_commit_extra_headers(extra);
1529 return result;
1530}
1531
08a94a14
LT
1532static int find_invalid_utf8(const char *buf, int len)
1533{
1534 int offset = 0;
e82bd6cc 1535 static const unsigned int max_codepoint[] = {
1536 0x7f, 0x7ff, 0xffff, 0x10ffff
1537 };
08a94a14
LT
1538
1539 while (len) {
1540 unsigned char c = *buf++;
1541 int bytes, bad_offset;
28110d4b 1542 unsigned int codepoint;
e82bd6cc 1543 unsigned int min_val, max_val;
08a94a14
LT
1544
1545 len--;
1546 offset++;
1547
1548 /* Simple US-ASCII? No worries. */
1549 if (c < 0x80)
1550 continue;
1551
1552 bad_offset = offset-1;
1553
1554 /*
1555 * Count how many more high bits set: that's how
1556 * many more bytes this sequence should have.
1557 */
1558 bytes = 0;
1559 while (c & 0x40) {
1560 c <<= 1;
1561 bytes++;
1562 }
1563
28110d4b 1564 /*
1565 * Must be between 1 and 3 more bytes. Longer sequences result in
1566 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1567 */
1568 if (bytes < 1 || 3 < bytes)
08a94a14
LT
1569 return bad_offset;
1570
1571 /* Do we *have* that many bytes? */
1572 if (len < bytes)
1573 return bad_offset;
1574
e82bd6cc 1575 /*
1576 * Place the encoded bits at the bottom of the value and compute the
1577 * valid range.
1578 */
28110d4b 1579 codepoint = (c & 0x7f) >> bytes;
e82bd6cc 1580 min_val = max_codepoint[bytes-1] + 1;
1581 max_val = max_codepoint[bytes];
28110d4b 1582
08a94a14
LT
1583 offset += bytes;
1584 len -= bytes;
1585
1586 /* And verify that they are good continuation bytes */
1587 do {
28110d4b 1588 codepoint <<= 6;
1589 codepoint |= *buf & 0x3f;
08a94a14
LT
1590 if ((*buf++ & 0xc0) != 0x80)
1591 return bad_offset;
1592 } while (--bytes);
1593
e82bd6cc 1594 /* Reject codepoints that are out of range for the sequence length. */
1595 if (codepoint < min_val || codepoint > max_val)
28110d4b 1596 return bad_offset;
1597 /* Surrogates are only for UTF-16 and cannot be encoded in UTF-8. */
1598 if ((codepoint & 0x1ff800) == 0xd800)
1599 return bad_offset;
81050ac6 1600 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
dc773a67 1601 if ((codepoint & 0xfffe) == 0xfffe)
81050ac6
PK
1602 return bad_offset;
1603 /* So are anything in the range U+FDD0..U+FDEF. */
1604 if (codepoint >= 0xfdd0 && codepoint <= 0xfdef)
28110d4b 1605 return bad_offset;
08a94a14
LT
1606 }
1607 return -1;
1608}
1609
1610/*
1611 * This verifies that the buffer is in proper utf8 format.
1612 *
1613 * If it isn't, it assumes any non-utf8 characters are Latin1,
1614 * and does the conversion.
08a94a14
LT
1615 */
1616static int verify_utf8(struct strbuf *buf)
1617{
1618 int ok = 1;
1619 long pos = 0;
1620
1621 for (;;) {
1622 int bad;
1623 unsigned char c;
1624 unsigned char replace[2];
1625
1626 bad = find_invalid_utf8(buf->buf + pos, buf->len - pos);
1627 if (bad < 0)
1628 return ok;
1629 pos += bad;
1630 ok = 0;
1631 c = buf->buf[pos];
1632 strbuf_remove(buf, pos, 1);
1633
1634 /* We know 'c' must be in the range 128-255 */
1635 replace[0] = 0xc0 + (c >> 6);
1636 replace[1] = 0x80 + (c & 0x3f);
1637 strbuf_insert(buf, pos, replace, 2);
1638 pos += 2;
1639 }
1640}
1641
40d52ff7 1642static const char commit_utf8_warn[] =
4fa4b315
VA
1643N_("Warning: commit message did not conform to UTF-8.\n"
1644 "You may want to amend it after fixing the message, or set the config\n"
b4eda05d 1645 "variable i18n.commitEncoding to the encoding your project uses.\n");
40d52ff7 1646
6206089c 1647static void write_commit_tree(struct strbuf *buffer, const char *msg, size_t msg_len,
1648 const struct object_id *tree,
1649 const struct object_id *parents, size_t parents_len,
1650 const char *author, const char *committer,
63c9bd37 1651 const struct commit_extra_header *extra)
40d52ff7 1652{
40d52ff7 1653 int encoding_is_utf8;
6206089c 1654 size_t i;
37576c14 1655
40d52ff7
JK
1656 /* Not having i18n.commitencoding is the same as having utf-8 */
1657 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
1658
6206089c 1659 strbuf_grow(buffer, 8192); /* should avoid reallocs for the headers */
1660 strbuf_addf(buffer, "tree %s\n", oid_to_hex(tree));
40d52ff7
JK
1661
1662 /*
1663 * NOTE! This ordering means that the same exact tree merged with a
1664 * different order of parents will be a _different_ changeset even
1665 * if everything else stays the same.
1666 */
6206089c 1667 for (i = 0; i < parents_len; i++)
1668 strbuf_addf(buffer, "parent %s\n", oid_to_hex(&parents[i]));
40d52ff7
JK
1669
1670 /* Person/date information */
1671 if (!author)
f9bc573f 1672 author = git_author_info(IDENT_STRICT);
6206089c 1673 strbuf_addf(buffer, "author %s\n", author);
e8cbe211
PW
1674 if (!committer)
1675 committer = git_committer_info(IDENT_STRICT);
6206089c 1676 strbuf_addf(buffer, "committer %s\n", committer);
40d52ff7 1677 if (!encoding_is_utf8)
6206089c 1678 strbuf_addf(buffer, "encoding %s\n", git_commit_encoding);
5231c633
JH
1679
1680 while (extra) {
6206089c 1681 add_extra_header(buffer, extra);
5231c633
JH
1682 extra = extra->next;
1683 }
6206089c 1684 strbuf_addch(buffer, '\n');
40d52ff7
JK
1685
1686 /* And add the comment */
6206089c 1687 strbuf_add(buffer, msg, msg_len);
1688}
40d52ff7 1689
6206089c 1690int commit_tree_extended(const char *msg, size_t msg_len,
1691 const struct object_id *tree,
63c9bd37 1692 const struct commit_list *parents, struct object_id *ret,
6206089c 1693 const char *author, const char *committer,
1694 const char *sign_commit,
63c9bd37 1695 const struct commit_extra_header *extra)
6206089c 1696{
1697 struct repository *r = the_repository;
1698 int result = 0;
1699 int encoding_is_utf8;
1700 struct strbuf buffer = STRBUF_INIT, compat_buffer = STRBUF_INIT;
1701 struct strbuf sig = STRBUF_INIT, compat_sig = STRBUF_INIT;
1702 struct object_id *parent_buf = NULL, *compat_oid = NULL;
1703 struct object_id compat_oid_buf;
1704 size_t i, nparents;
1705
1706 /* Not having i18n.commitencoding is the same as having utf-8 */
1707 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
1708
1709 assert_oid_type(tree, OBJ_TREE);
40d52ff7 1710
6206089c 1711 if (memchr(msg, '\0', msg_len))
1712 return error("a NUL byte in commit log message not allowed.");
40d52ff7 1713
6206089c 1714 nparents = commit_list_count(parents);
1715 CALLOC_ARRAY(parent_buf, nparents);
1716 i = 0;
63c9bd37
PS
1717 for (const struct commit_list *p = parents; p; p = p->next)
1718 oidcpy(&parent_buf[i++], &p->item->object.oid);
6206089c 1719
1720 write_commit_tree(&buffer, msg, msg_len, tree, parent_buf, nparents, author, committer, extra);
1721 if (sign_commit && sign_commit_to_strbuf(&sig, &buffer, sign_commit)) {
e505146d
RS
1722 result = -1;
1723 goto out;
1724 }
6206089c 1725 if (r->compat_hash_algo) {
a3e8ae54 1726 struct commit_extra_header *compat_extra = NULL;
6206089c 1727 struct object_id mapped_tree;
1728 struct object_id *mapped_parents;
1729
1730 CALLOC_ARRAY(mapped_parents, nparents);
ba3c69a9 1731
6206089c 1732 if (repo_oid_to_algop(r, tree, r->compat_hash_algo, &mapped_tree)) {
1733 result = -1;
1734 free(mapped_parents);
1735 goto out;
1736 }
1737 for (i = 0; i < nparents; i++)
1738 if (repo_oid_to_algop(r, &parent_buf[i], r->compat_hash_algo, &mapped_parents[i])) {
1739 result = -1;
1740 free(mapped_parents);
1741 goto out;
1742 }
a3e8ae54
EB
1743 if (convert_commit_extra_headers(extra, &compat_extra)) {
1744 result = -1;
1745 free(mapped_parents);
1746 goto out;
1747 }
6206089c 1748 write_commit_tree(&compat_buffer, msg, msg_len, &mapped_tree,
a3e8ae54
EB
1749 mapped_parents, nparents, author, committer, compat_extra);
1750 free_commit_extra_headers(compat_extra);
6206089c 1751 free(mapped_parents);
1752
1753 if (sign_commit && sign_commit_to_strbuf(&compat_sig, &compat_buffer, sign_commit)) {
1754 result = -1;
1755 goto out;
1756 }
1757 }
1758
1759 if (sign_commit) {
1760 struct sig_pairs {
1761 struct strbuf *sig;
1762 const struct git_hash_algo *algo;
1763 } bufs [2] = {
1764 { &compat_sig, r->compat_hash_algo },
1765 { &sig, r->hash_algo },
1766 };
6206089c 1767
1768 /*
1769 * We write algorithms in the order they were implemented in
1770 * Git to produce a stable hash when multiple algorithms are
1771 * used.
1772 */
1773 if (r->compat_hash_algo && hash_algo_by_ptr(bufs[0].algo) > hash_algo_by_ptr(bufs[1].algo))
1774 SWAP(bufs[0], bufs[1]);
1775
1776 /*
1777 * We traverse each algorithm in order, and apply the signature
1778 * to each buffer.
1779 */
80c9e70e 1780 for (size_t i = 0; i < ARRAY_SIZE(bufs); i++) {
6206089c 1781 if (!bufs[i].algo)
1782 continue;
6bcc5fa2 1783 add_header_signature(&buffer, bufs[i].sig, bufs[i].algo);
6206089c 1784 if (r->compat_hash_algo)
6bcc5fa2 1785 add_header_signature(&compat_buffer, bufs[i].sig, bufs[i].algo);
6206089c 1786 }
1787 }
ba3c69a9 1788
6206089c 1789 /* And check the encoding. */
1790 if (encoding_is_utf8 && (!verify_utf8(&buffer) || !verify_utf8(&compat_buffer)))
1791 fprintf(stderr, _(commit_utf8_warn));
1792
1793 if (r->compat_hash_algo) {
1794 hash_object_file(r->compat_hash_algo, compat_buffer.buf, compat_buffer.len,
1795 OBJ_COMMIT, &compat_oid_buf);
1796 compat_oid = &compat_oid_buf;
1797 }
1798
1799 result = write_object_file_flags(buffer.buf, buffer.len, OBJ_COMMIT,
1800 ret, compat_oid, 0);
e505146d 1801out:
6206089c 1802 free(parent_buf);
40d52ff7 1803 strbuf_release(&buffer);
6206089c 1804 strbuf_release(&compat_buffer);
1805 strbuf_release(&sig);
1806 strbuf_release(&compat_sig);
40d52ff7
JK
1807 return result;
1808}
ae8e4c9c 1809
e2e5ac23
NTND
1810define_commit_slab(merge_desc_slab, struct merge_remote_desc *);
1811static struct merge_desc_slab merge_desc_slab = COMMIT_SLAB_INIT(1, merge_desc_slab);
1812
63c9bd37 1813struct merge_remote_desc *merge_remote_util(const struct commit *commit)
e2e5ac23
NTND
1814{
1815 return *merge_desc_slab_at(&merge_desc_slab, commit);
1816}
1817
beb518c9
RS
1818void set_merge_remote_desc(struct commit *commit,
1819 const char *name, struct object *obj)
1820{
1821 struct merge_remote_desc *desc;
5447a76a 1822 FLEX_ALLOC_STR(desc, name, name);
beb518c9 1823 desc->obj = obj;
e2e5ac23 1824 *merge_desc_slab_at(&merge_desc_slab, commit) = desc;
beb518c9
RS
1825}
1826
ae8e4c9c
JH
1827struct commit *get_merge_parent(const char *name)
1828{
1829 struct object *obj;
1830 struct commit *commit;
7683e2e6 1831 struct object_id oid;
d850b7a5 1832 if (repo_get_oid(the_repository, name, &oid))
ae8e4c9c 1833 return NULL;
109cd76d 1834 obj = parse_object(the_repository, &oid);
d850b7a5
ÆAB
1835 commit = (struct commit *)repo_peel_to_type(the_repository, name, 0,
1836 obj, OBJ_COMMIT);
e2e5ac23 1837 if (commit && !merge_remote_util(commit))
beb518c9 1838 set_merge_remote_desc(commit, name, obj);
ae8e4c9c
JH
1839 return commit;
1840}
89b5f1d9
RS
1841
1842/*
1843 * Append a commit to the end of the commit_list.
1844 *
1845 * next starts by pointing to the variable that holds the head of an
1846 * empty commit_list, and is updated to point to the "next" field of
1847 * the last item on the list as new commits are appended.
1848 *
1849 * Usage example:
1850 *
1851 * struct commit_list *list;
1852 * struct commit_list **next = &list;
1853 *
1854 * next = commit_list_append(c1, next);
1855 * next = commit_list_append(c2, next);
1856 * assert(commit_list_count(list) == 2);
1857 * return list;
1858 */
1859struct commit_list **commit_list_append(struct commit *commit,
1860 struct commit_list **next)
1861{
258c03eb
BW
1862 struct commit_list *new_commit = xmalloc(sizeof(struct commit_list));
1863 new_commit->item = commit;
1864 *next = new_commit;
1865 new_commit->next = NULL;
1866 return &new_commit->next;
89b5f1d9 1867}
efc7df45 1868
28dc26dc 1869const char *find_commit_header(const char *msg, const char *key, size_t *out_len)
fe6eb7f2
JK
1870{
1871 int key_len = strlen(key);
1872 const char *line = msg;
1873
28dc26dc 1874 while (line) {
fe6eb7f2
JK
1875 const char *eol = strchrnul(line, '\n');
1876
1877 if (line == eol)
1878 return NULL;
1879
1880 if (eol - line > key_len &&
1881 !strncmp(line, key, key_len) &&
1882 line[key_len] == ' ') {
1883 *out_len = eol - line - key_len - 1;
1884 return line + key_len + 1;
1885 }
1886 line = *eol ? eol + 1 : NULL;
1887 }
1888 return NULL;
1889}
0ed8a4e1 1890
8c384589 1891/*
710714aa 1892 * Inspect the given string and determine the true "end" of the log message, in
3abd4a67 1893 * order to find where to put a new Signed-off-by trailer. Ignored are
d76650b8
BM
1894 * trailing comment lines and blank lines. To support "git commit -s
1895 * --amend" on an existing commit, we also ignore "Conflicts:". To
1896 * support "git commit -v", we truncate at cut lines.
8c384589
CC
1897 *
1898 * Returns the number of bytes from the tail to ignore, to be fed as
1899 * the second parameter to append_signoff().
1900 */
7cb26a17 1901size_t ignored_log_message_bytes(const char *buf, size_t len)
8c384589 1902{
66e83d9b
JK
1903 size_t boc = 0;
1904 size_t bol = 0;
8c384589 1905 int in_old_conflicts_block = 0;
d76650b8 1906 size_t cutoff = wt_status_locate_end(buf, len);
8c384589 1907
d76650b8 1908 while (bol < cutoff) {
710714aa 1909 const char *next_line = memchr(buf + bol, '\n', len - bol);
8c384589 1910
710714aa
JT
1911 if (!next_line)
1912 next_line = buf + len;
8c384589
CC
1913 else
1914 next_line++;
1915
2ec225d3
JK
1916 if (starts_with_mem(buf + bol, cutoff - bol, comment_line_str) ||
1917 buf[bol] == '\n') {
8c384589
CC
1918 /* is this the first of the run of comments? */
1919 if (!boc)
1920 boc = bol;
1921 /* otherwise, it is just continuing */
710714aa 1922 } else if (starts_with(buf + bol, "Conflicts:\n")) {
8c384589
CC
1923 in_old_conflicts_block = 1;
1924 if (!boc)
1925 boc = bol;
710714aa 1926 } else if (in_old_conflicts_block && buf[bol] == '\t') {
8c384589
CC
1927 ; /* a pathname in the conflicts block */
1928 } else if (boc) {
1929 /* the previous was not trailing comment */
1930 boc = 0;
1931 in_old_conflicts_block = 0;
1932 }
710714aa 1933 bol = next_line - buf;
8c384589 1934 }
d76650b8 1935 return boc ? len - boc : len - cutoff;
8c384589 1936}
49697cb7
PW
1937
1938int run_commit_hook(int editor_is_used, const char *index_file,
a8cc5943 1939 int *invoked_hook, const char *name, ...)
49697cb7 1940{
f443246b 1941 struct run_hooks_opt opt = RUN_HOOKS_OPT_INIT;
49697cb7 1942 va_list args;
f443246b 1943 const char *arg;
49697cb7 1944
f443246b 1945 strvec_pushf(&opt.env, "GIT_INDEX_FILE=%s", index_file);
49697cb7
PW
1946
1947 /*
1948 * Let the hook know that no editor will be launched.
1949 */
1950 if (!editor_is_used)
f443246b 1951 strvec_push(&opt.env, "GIT_EDITOR=:");
49697cb7
PW
1952
1953 va_start(args, name);
f443246b
ES
1954 while ((arg = va_arg(args, const char *)))
1955 strvec_push(&opt.args, arg);
49697cb7 1956 va_end(args);
49697cb7 1957
4369e3a1 1958 opt.invoked_hook = invoked_hook;
169c9797 1959 return run_hooks_opt(the_repository, name, &opt);
49697cb7 1960}