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