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