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