1 #include "git-compat-util.h"
4 #include "commit-graph.h"
5 #include "environment.h"
8 #include "repository.h"
9 #include "object-name.h"
10 #include "object-store-ll.h"
17 #include "gpg-interface.h"
18 #include "mergesort.h"
19 #include "commit-slab.h"
20 #include "prio-queue.h"
21 #include "hash-lookup.h"
22 #include "wt-status.h"
25 #include "commit-reach.h"
26 #include "run-command.h"
32 static struct commit_extra_header
*read_commit_extra_header_lines(const char *buf
, size_t len
, const char **);
34 int save_commit_buffer
= 1;
35 int no_graft_file_deprecated_advice
;
37 const char *commit_type
= "commit";
39 struct commit
*lookup_commit_reference_gently(struct repository
*r
,
40 const struct object_id
*oid
, int quiet
)
42 struct object
*obj
= deref_tag(r
,
48 return object_as_type(obj
, OBJ_COMMIT
, quiet
);
51 struct commit
*lookup_commit_reference(struct repository
*r
, const struct object_id
*oid
)
53 return lookup_commit_reference_gently(r
, oid
, 0);
56 struct commit
*lookup_commit_or_die(const struct object_id
*oid
, const char *ref_name
)
58 struct commit
*c
= lookup_commit_reference(the_repository
, oid
);
60 die(_("could not parse %s"), ref_name
);
61 if (!oideq(oid
, &c
->object
.oid
)) {
62 warning(_("%s %s is not a commit!"),
63 ref_name
, oid_to_hex(oid
));
68 struct commit
*lookup_commit_object(struct repository
*r
,
69 const struct object_id
*oid
)
71 struct object
*obj
= parse_object(r
, oid
);
72 return obj
? object_as_type(obj
, OBJ_COMMIT
, 0) : NULL
;
76 struct commit
*lookup_commit(struct repository
*r
, const struct object_id
*oid
)
78 struct object
*obj
= lookup_object(r
, oid
);
80 return create_object(r
, oid
, alloc_commit_node(r
));
81 return object_as_type(obj
, OBJ_COMMIT
, 0);
84 struct commit
*lookup_commit_reference_by_name(const char *name
)
87 struct commit
*commit
;
89 if (repo_get_oid_committish(the_repository
, name
, &oid
))
91 commit
= lookup_commit_reference(the_repository
, &oid
);
92 if (repo_parse_commit(the_repository
, commit
))
97 static timestamp_t
parse_commit_date(const char *buf
, const char *tail
)
104 if (memcmp(buf
, "author", 6))
106 while (buf
< tail
&& *buf
++ != '\n')
110 if (memcmp(buf
, "committer", 9))
114 * Jump to end-of-line so that we can walk backwards to find the
115 * end-of-email ">". This is more forgiving of malformed cases
116 * because unexpected characters tend to be in the name and email
119 eol
= memchr(buf
, '\n', tail
- buf
);
123 while (dateptr
> buf
&& dateptr
[-1] != '>')
129 * Trim leading whitespace, but make sure we have at least one
130 * non-whitespace character, as parse_timestamp() will otherwise walk
131 * right past the newline we found in "eol" when skipping whitespace
134 * In theory it would be sufficient to allow any character not matched
135 * by isspace(), but there's a catch: our isspace() does not
136 * necessarily match the behavior of parse_timestamp(), as the latter
137 * is implemented by system routines which match more exotic control
138 * codes, or even locale-dependent sequences.
140 * Since we expect the timestamp to be a number, we can check for that.
141 * Anything else (e.g., a non-numeric token like "foo") would just
142 * cause parse_timestamp() to return 0 anyway.
144 while (dateptr
< eol
&& isspace(*dateptr
))
146 if (!isdigit(*dateptr
) && *dateptr
!= '-')
150 * We know there is at least one digit (or dash), so we'll begin
151 * parsing there and stop at worst case at eol.
153 * Note that we may feed parse_timestamp() extra characters here if the
154 * commit is malformed, and it will parse as far as it can. For
155 * example, "123foo456" would return "123". That might be questionable
156 * (versus returning "0"), but it would help in a hypothetical case
157 * like "123456+0100", where the whitespace from the timezone is
158 * missing. Since such syntactic errors may be baked into history and
159 * hard to correct now, let's err on trying to make our best guess
160 * here, rather than insist on perfect syntax.
162 return parse_timestamp(dateptr
, NULL
, 10);
165 static const struct object_id
*commit_graft_oid_access(size_t index
, const void *table
)
167 const struct commit_graft
* const *commit_graft_table
= table
;
168 return &commit_graft_table
[index
]->oid
;
171 int commit_graft_pos(struct repository
*r
, const struct object_id
*oid
)
173 return oid_pos(oid
, r
->parsed_objects
->grafts
,
174 r
->parsed_objects
->grafts_nr
,
175 commit_graft_oid_access
);
178 static void unparse_commit(struct repository
*r
, const struct object_id
*oid
)
180 struct commit
*c
= lookup_commit(r
, oid
);
182 if (!c
->object
.parsed
)
184 free_commit_list(c
->parents
);
186 c
->object
.parsed
= 0;
189 int register_commit_graft(struct repository
*r
, struct commit_graft
*graft
,
192 int pos
= commit_graft_pos(r
, &graft
->oid
);
198 free(r
->parsed_objects
->grafts
[pos
]);
199 r
->parsed_objects
->grafts
[pos
] = graft
;
204 ALLOC_GROW(r
->parsed_objects
->grafts
,
205 r
->parsed_objects
->grafts_nr
+ 1,
206 r
->parsed_objects
->grafts_alloc
);
207 r
->parsed_objects
->grafts_nr
++;
208 if (pos
< r
->parsed_objects
->grafts_nr
)
209 memmove(r
->parsed_objects
->grafts
+ pos
+ 1,
210 r
->parsed_objects
->grafts
+ pos
,
211 (r
->parsed_objects
->grafts_nr
- pos
- 1) *
212 sizeof(*r
->parsed_objects
->grafts
));
213 r
->parsed_objects
->grafts
[pos
] = graft
;
214 unparse_commit(r
, &graft
->oid
);
218 struct commit_graft
*read_graft_line(struct strbuf
*line
)
220 /* The format is just "Commit Parent1 Parent2 ...\n" */
222 const char *tail
= NULL
;
223 struct commit_graft
*graft
= NULL
;
224 struct object_id dummy_oid
, *oid
;
227 if (!line
->len
|| line
->buf
[0] == '#')
230 * phase 0 verifies line, counts hashes in line and allocates graft
231 * phase 1 fills graft
233 for (phase
= 0; phase
< 2; phase
++) {
234 oid
= graft
? &graft
->oid
: &dummy_oid
;
235 if (parse_oid_hex(line
->buf
, oid
, &tail
))
237 for (i
= 0; *tail
!= '\0'; i
++) {
238 oid
= graft
? &graft
->parent
[i
] : &dummy_oid
;
239 if (!isspace(*tail
++) || parse_oid_hex(tail
, oid
, &tail
))
243 graft
= xmalloc(st_add(sizeof(*graft
),
244 st_mult(sizeof(struct object_id
), i
)));
245 graft
->nr_parent
= i
;
251 error("bad graft data: %s", line
->buf
);
256 static int read_graft_file(struct repository
*r
, const char *graft_file
)
258 FILE *fp
= fopen_or_warn(graft_file
, "r");
259 struct strbuf buf
= STRBUF_INIT
;
262 if (!no_graft_file_deprecated_advice
&&
263 advice_enabled(ADVICE_GRAFT_FILE_DEPRECATED
))
264 advise(_("Support for <GIT_DIR>/info/grafts is deprecated\n"
265 "and will be removed in a future Git version.\n"
267 "Please use \"git replace --convert-graft-file\"\n"
268 "to convert the grafts into replace refs.\n"
270 "Turn this message off by running\n"
271 "\"git config advice.graftFileDeprecated false\""));
272 while (!strbuf_getwholeline(&buf
, fp
, '\n')) {
273 /* The format is just "Commit Parent1 Parent2 ...\n" */
274 struct commit_graft
*graft
= read_graft_line(&buf
);
277 if (register_commit_graft(r
, graft
, 1))
278 error("duplicate graft data: %s", buf
.buf
);
281 strbuf_release(&buf
);
285 void prepare_commit_graft(struct repository
*r
)
289 if (r
->parsed_objects
->commit_graft_prepared
)
291 if (!startup_info
->have_repository
)
294 graft_file
= get_graft_file(r
);
295 read_graft_file(r
, graft_file
);
296 /* make sure shallows are read */
297 is_repository_shallow(r
);
298 r
->parsed_objects
->commit_graft_prepared
= 1;
301 struct commit_graft
*lookup_commit_graft(struct repository
*r
, const struct object_id
*oid
)
304 prepare_commit_graft(r
);
305 pos
= commit_graft_pos(r
, oid
);
308 return r
->parsed_objects
->grafts
[pos
];
311 int for_each_commit_graft(each_commit_graft_fn fn
, void *cb_data
)
314 for (i
= ret
= 0; i
< the_repository
->parsed_objects
->grafts_nr
&& !ret
; i
++)
315 ret
= fn(the_repository
->parsed_objects
->grafts
[i
], cb_data
);
319 void reset_commit_grafts(struct repository
*r
)
323 for (i
= 0; i
< r
->parsed_objects
->grafts_nr
; i
++) {
324 unparse_commit(r
, &r
->parsed_objects
->grafts
[i
]->oid
);
325 free(r
->parsed_objects
->grafts
[i
]);
327 r
->parsed_objects
->grafts_nr
= 0;
328 r
->parsed_objects
->commit_graft_prepared
= 0;
331 struct commit_buffer
{
335 define_commit_slab(buffer_slab
, struct commit_buffer
);
337 struct buffer_slab
*allocate_commit_buffer_slab(void)
339 struct buffer_slab
*bs
= xmalloc(sizeof(*bs
));
340 init_buffer_slab(bs
);
344 void free_commit_buffer_slab(struct buffer_slab
*bs
)
346 clear_buffer_slab(bs
);
350 void set_commit_buffer(struct repository
*r
, struct commit
*commit
, void *buffer
, unsigned long size
)
352 struct commit_buffer
*v
= buffer_slab_at(
353 r
->parsed_objects
->buffer_slab
, commit
);
358 const void *get_cached_commit_buffer(struct repository
*r
, const struct commit
*commit
, unsigned long *sizep
)
360 struct commit_buffer
*v
= buffer_slab_peek(
361 r
->parsed_objects
->buffer_slab
, commit
);
372 const void *repo_get_commit_buffer(struct repository
*r
,
373 const struct commit
*commit
,
374 unsigned long *sizep
)
376 const void *ret
= get_cached_commit_buffer(r
, commit
, sizep
);
378 enum object_type type
;
380 ret
= repo_read_object_file(r
, &commit
->object
.oid
, &type
, &size
);
382 die("cannot read commit object %s",
383 oid_to_hex(&commit
->object
.oid
));
384 if (type
!= OBJ_COMMIT
)
385 die("expected commit for %s, got %s",
386 oid_to_hex(&commit
->object
.oid
), type_name(type
));
393 void repo_unuse_commit_buffer(struct repository
*r
,
394 const struct commit
*commit
,
397 struct commit_buffer
*v
= buffer_slab_peek(
398 r
->parsed_objects
->buffer_slab
, commit
);
399 if (!(v
&& v
->buffer
== buffer
))
400 free((void *)buffer
);
403 void free_commit_buffer(struct parsed_object_pool
*pool
, struct commit
*commit
)
405 struct commit_buffer
*v
= buffer_slab_peek(
406 pool
->buffer_slab
, commit
);
408 FREE_AND_NULL(v
->buffer
);
413 static inline void set_commit_tree(struct commit
*c
, struct tree
*t
)
418 struct tree
*repo_get_commit_tree(struct repository
*r
,
419 const struct commit
*commit
)
421 if (commit
->maybe_tree
|| !commit
->object
.parsed
)
422 return commit
->maybe_tree
;
424 if (commit_graph_position(commit
) != COMMIT_NOT_FROM_GRAPH
)
425 return get_commit_tree_in_graph(r
, commit
);
430 struct object_id
*get_commit_tree_oid(const struct commit
*commit
)
432 struct tree
*tree
= repo_get_commit_tree(the_repository
, commit
);
433 return tree
? &tree
->object
.oid
: NULL
;
436 void release_commit_memory(struct parsed_object_pool
*pool
, struct commit
*c
)
438 set_commit_tree(c
, NULL
);
439 free_commit_buffer(pool
, c
);
441 free_commit_list(c
->parents
);
443 c
->object
.parsed
= 0;
446 const void *detach_commit_buffer(struct commit
*commit
, unsigned long *sizep
)
448 struct commit_buffer
*v
= buffer_slab_peek(
449 the_repository
->parsed_objects
->buffer_slab
, commit
);
466 int parse_commit_buffer(struct repository
*r
, struct commit
*item
, const void *buffer
, unsigned long size
, int check_graph
)
468 const char *tail
= buffer
;
469 const char *bufptr
= buffer
;
470 struct object_id parent
;
471 struct commit_list
**pptr
;
472 struct commit_graft
*graft
;
473 const int tree_entry_len
= the_hash_algo
->hexsz
+ 5;
474 const int parent_entry_len
= the_hash_algo
->hexsz
+ 7;
477 if (item
->object
.parsed
)
480 * Presumably this is leftover from an earlier failed parse;
481 * clear it out in preparation for us re-parsing (we'll hit the
482 * same error, but that's good, since it lets our caller know
483 * the result cannot be trusted.
485 free_commit_list(item
->parents
);
486 item
->parents
= NULL
;
489 if (tail
<= bufptr
+ tree_entry_len
+ 1 || memcmp(bufptr
, "tree ", 5) ||
490 bufptr
[tree_entry_len
] != '\n')
491 return error("bogus commit object %s", oid_to_hex(&item
->object
.oid
));
492 if (get_oid_hex(bufptr
+ 5, &parent
) < 0)
493 return error("bad tree pointer in commit %s",
494 oid_to_hex(&item
->object
.oid
));
495 tree
= lookup_tree(r
, &parent
);
497 return error("bad tree pointer %s in commit %s",
499 oid_to_hex(&item
->object
.oid
));
500 set_commit_tree(item
, tree
);
501 bufptr
+= tree_entry_len
+ 1; /* "tree " + "hex sha1" + "\n" */
502 pptr
= &item
->parents
;
504 graft
= lookup_commit_graft(r
, &item
->object
.oid
);
506 r
->parsed_objects
->substituted_parent
= 1;
507 while (bufptr
+ parent_entry_len
< tail
&& !memcmp(bufptr
, "parent ", 7)) {
508 struct commit
*new_parent
;
510 if (tail
<= bufptr
+ parent_entry_len
+ 1 ||
511 get_oid_hex(bufptr
+ 7, &parent
) ||
512 bufptr
[parent_entry_len
] != '\n')
513 return error("bad parents in commit %s", oid_to_hex(&item
->object
.oid
));
514 bufptr
+= parent_entry_len
+ 1;
516 * The clone is shallow if nr_parent < 0, and we must
517 * not traverse its real parents even when we unhide them.
519 if (graft
&& (graft
->nr_parent
< 0 || !grafts_keep_true_parents
))
521 new_parent
= lookup_commit(r
, &parent
);
523 return error("bad parent %s in commit %s",
525 oid_to_hex(&item
->object
.oid
));
526 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
530 struct commit
*new_parent
;
531 for (i
= 0; i
< graft
->nr_parent
; i
++) {
532 new_parent
= lookup_commit(r
,
535 return error("bad graft parent %s in commit %s",
536 oid_to_hex(&graft
->parent
[i
]),
537 oid_to_hex(&item
->object
.oid
));
538 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
541 item
->date
= parse_commit_date(bufptr
, tail
);
544 load_commit_graph_info(r
, item
);
546 item
->object
.parsed
= 1;
550 int repo_parse_commit_internal(struct repository
*r
,
552 int quiet_on_missing
,
553 int use_commit_graph
)
555 enum object_type type
;
558 struct object_info oi
= {
564 * Git does not support partial clones that exclude commits, so set
565 * OBJECT_INFO_SKIP_FETCH_OBJECT to fail fast when an object is missing.
567 int flags
= OBJECT_INFO_LOOKUP_REPLACE
| OBJECT_INFO_SKIP_FETCH_OBJECT
|
568 OBJECT_INFO_DIE_IF_CORRUPT
;
573 if (item
->object
.parsed
)
575 if (use_commit_graph
&& parse_commit_in_graph(r
, item
))
578 if (oid_object_info_extended(r
, &item
->object
.oid
, &oi
, flags
) < 0)
579 return quiet_on_missing
? -1 :
580 error("Could not read %s",
581 oid_to_hex(&item
->object
.oid
));
582 if (type
!= OBJ_COMMIT
) {
584 return error("Object %s not a commit",
585 oid_to_hex(&item
->object
.oid
));
588 ret
= parse_commit_buffer(r
, item
, buffer
, size
, 0);
589 if (save_commit_buffer
&& !ret
) {
590 set_commit_buffer(r
, item
, buffer
, size
);
597 int repo_parse_commit_gently(struct repository
*r
,
598 struct commit
*item
, int quiet_on_missing
)
600 return repo_parse_commit_internal(r
, item
, quiet_on_missing
, 1);
603 void parse_commit_or_die(struct commit
*item
)
605 if (repo_parse_commit(the_repository
, item
))
606 die("unable to parse commit %s",
607 item
? oid_to_hex(&item
->object
.oid
) : "(null)");
610 int find_commit_subject(const char *commit_buffer
, const char **subject
)
613 const char *p
= commit_buffer
;
615 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
618 p
= skip_blank_lines(p
+ 2);
619 eol
= strchrnul(p
, '\n');
628 size_t commit_subject_length(const char *body
)
630 const char *p
= body
;
632 const char *next
= skip_blank_lines(p
);
635 p
= strchrnul(p
, '\n');
642 struct commit_list
*commit_list_insert(struct commit
*item
, struct commit_list
**list_p
)
644 struct commit_list
*new_list
= xmalloc(sizeof(struct commit_list
));
645 new_list
->item
= item
;
646 new_list
->next
= *list_p
;
651 int commit_list_contains(struct commit
*item
, struct commit_list
*list
)
654 if (list
->item
== item
)
662 unsigned commit_list_count(const struct commit_list
*l
)
665 for (; l
; l
= l
->next
)
670 struct commit_list
*copy_commit_list(struct commit_list
*list
)
672 struct commit_list
*head
= NULL
;
673 struct commit_list
**pp
= &head
;
675 pp
= commit_list_append(list
->item
, pp
);
681 struct commit_list
*reverse_commit_list(struct commit_list
*list
)
683 struct commit_list
*next
= NULL
, *current
, *backup
;
684 for (current
= list
; current
; current
= backup
) {
685 backup
= current
->next
;
686 current
->next
= next
;
692 void free_commit_list(struct commit_list
*list
)
698 struct commit_list
* commit_list_insert_by_date(struct commit
*item
, struct commit_list
**list
)
700 struct commit_list
**pp
= list
;
701 struct commit_list
*p
;
702 while ((p
= *pp
) != NULL
) {
703 if (p
->item
->date
< item
->date
) {
708 return commit_list_insert(item
, pp
);
711 static int commit_list_compare_by_date(const struct commit_list
*a
,
712 const struct commit_list
*b
)
714 timestamp_t a_date
= a
->item
->date
;
715 timestamp_t b_date
= b
->item
->date
;
723 DEFINE_LIST_SORT(static, commit_list_sort
, struct commit_list
, next
);
725 void commit_list_sort_by_date(struct commit_list
**list
)
727 commit_list_sort(list
, commit_list_compare_by_date
);
730 struct commit
*pop_most_recent_commit(struct commit_list
**list
,
733 struct commit
*ret
= pop_commit(list
);
734 struct commit_list
*parents
= ret
->parents
;
737 struct commit
*commit
= parents
->item
;
738 if (!repo_parse_commit(the_repository
, commit
) && !(commit
->object
.flags
& mark
)) {
739 commit
->object
.flags
|= mark
;
740 commit_list_insert_by_date(commit
, list
);
742 parents
= parents
->next
;
747 static void clear_commit_marks_1(struct commit_list
**plist
,
748 struct commit
*commit
, unsigned int mark
)
751 struct commit_list
*parents
;
753 if (!(mark
& commit
->object
.flags
))
756 commit
->object
.flags
&= ~mark
;
758 parents
= commit
->parents
;
762 while ((parents
= parents
->next
)) {
763 if (parents
->item
->object
.flags
& mark
)
764 commit_list_insert(parents
->item
, plist
);
767 commit
= commit
->parents
->item
;
771 void clear_commit_marks_many(int nr
, struct commit
**commit
, unsigned int mark
)
773 struct commit_list
*list
= NULL
;
776 clear_commit_marks_1(&list
, *commit
, mark
);
780 clear_commit_marks_1(&list
, pop_commit(&list
), mark
);
783 void clear_commit_marks(struct commit
*commit
, unsigned int mark
)
785 clear_commit_marks_many(1, &commit
, mark
);
788 struct commit
*pop_commit(struct commit_list
**stack
)
790 struct commit_list
*top
= *stack
;
791 struct commit
*item
= top
? top
->item
: NULL
;
801 * Topological sort support
804 /* count number of children that have not been emitted */
805 define_commit_slab(indegree_slab
, int);
807 define_commit_slab(author_date_slab
, timestamp_t
);
809 void record_author_date(struct author_date_slab
*author_date
,
810 struct commit
*commit
)
812 const char *buffer
= repo_get_commit_buffer(the_repository
, commit
,
814 struct ident_split ident
;
815 const char *ident_line
;
820 ident_line
= find_commit_header(buffer
, "author", &ident_len
);
822 goto fail_exit
; /* no author line */
823 if (split_ident_line(&ident
, ident_line
, ident_len
) ||
824 !ident
.date_begin
|| !ident
.date_end
)
825 goto fail_exit
; /* malformed "author" line */
827 date
= parse_timestamp(ident
.date_begin
, &date_end
, 10);
828 if (date_end
!= ident
.date_end
)
829 goto fail_exit
; /* malformed date */
830 *(author_date_slab_at(author_date
, commit
)) = date
;
833 repo_unuse_commit_buffer(the_repository
, commit
, buffer
);
836 int compare_commits_by_author_date(const void *a_
, const void *b_
,
839 const struct commit
*a
= a_
, *b
= b_
;
840 struct author_date_slab
*author_date
= cb_data
;
841 timestamp_t a_date
= *(author_date_slab_at(author_date
, a
));
842 timestamp_t b_date
= *(author_date_slab_at(author_date
, b
));
844 /* newer commits with larger date first */
847 else if (a_date
> b_date
)
852 int compare_commits_by_gen_then_commit_date(const void *a_
, const void *b_
,
855 const struct commit
*a
= a_
, *b
= b_
;
856 const timestamp_t generation_a
= commit_graph_generation(a
),
857 generation_b
= commit_graph_generation(b
);
859 /* newer commits first */
860 if (generation_a
< generation_b
)
862 else if (generation_a
> generation_b
)
865 /* use date as a heuristic when generations are equal */
866 if (a
->date
< b
->date
)
868 else if (a
->date
> b
->date
)
873 int compare_commits_by_commit_date(const void *a_
, const void *b_
,
876 const struct commit
*a
= a_
, *b
= b_
;
877 /* newer commits with larger date first */
878 if (a
->date
< b
->date
)
880 else if (a
->date
> b
->date
)
886 * Performs an in-place topological sort on the list supplied.
888 void sort_in_topological_order(struct commit_list
**list
, enum rev_sort_order sort_order
)
890 struct commit_list
*next
, *orig
= *list
;
891 struct commit_list
**pptr
;
892 struct indegree_slab indegree
;
893 struct prio_queue queue
;
894 struct commit
*commit
;
895 struct author_date_slab author_date
;
901 init_indegree_slab(&indegree
);
902 memset(&queue
, '\0', sizeof(queue
));
904 switch (sort_order
) {
905 default: /* REV_SORT_IN_GRAPH_ORDER */
906 queue
.compare
= NULL
;
908 case REV_SORT_BY_COMMIT_DATE
:
909 queue
.compare
= compare_commits_by_commit_date
;
911 case REV_SORT_BY_AUTHOR_DATE
:
912 init_author_date_slab(&author_date
);
913 queue
.compare
= compare_commits_by_author_date
;
914 queue
.cb_data
= &author_date
;
918 /* Mark them and clear the indegree */
919 for (next
= orig
; next
; next
= next
->next
) {
920 struct commit
*commit
= next
->item
;
921 *(indegree_slab_at(&indegree
, commit
)) = 1;
922 /* also record the author dates, if needed */
923 if (sort_order
== REV_SORT_BY_AUTHOR_DATE
)
924 record_author_date(&author_date
, commit
);
927 /* update the indegree */
928 for (next
= orig
; next
; next
= next
->next
) {
929 struct commit_list
*parents
= next
->item
->parents
;
931 struct commit
*parent
= parents
->item
;
932 int *pi
= indegree_slab_at(&indegree
, parent
);
936 parents
= parents
->next
;
943 * tips are nodes not reachable from any other node in the list
945 * the tips serve as a starting set for the work queue.
947 for (next
= orig
; next
; next
= next
->next
) {
948 struct commit
*commit
= next
->item
;
950 if (*(indegree_slab_at(&indegree
, commit
)) == 1)
951 prio_queue_put(&queue
, commit
);
955 * This is unfortunate; the initial tips need to be shown
956 * in the order given from the revision traversal machinery.
958 if (sort_order
== REV_SORT_IN_GRAPH_ORDER
)
959 prio_queue_reverse(&queue
);
961 /* We no longer need the commit list */
962 free_commit_list(orig
);
966 while ((commit
= prio_queue_get(&queue
)) != NULL
) {
967 struct commit_list
*parents
;
969 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
970 struct commit
*parent
= parents
->item
;
971 int *pi
= indegree_slab_at(&indegree
, parent
);
977 * parents are only enqueued for emission
978 * when all their children have been emitted thereby
979 * guaranteeing topological order.
982 prio_queue_put(&queue
, parent
);
985 * all children of commit have already been
986 * emitted. we can emit it now.
988 *(indegree_slab_at(&indegree
, commit
)) = 0;
990 pptr
= &commit_list_insert(commit
, pptr
)->next
;
993 clear_indegree_slab(&indegree
);
994 clear_prio_queue(&queue
);
995 if (sort_order
== REV_SORT_BY_AUTHOR_DATE
)
996 clear_author_date_slab(&author_date
);
1000 struct commit
**commit
;
1003 unsigned int initial
: 1;
1006 static void add_one_commit(struct object_id
*oid
, struct rev_collect
*revs
)
1008 struct commit
*commit
;
1010 if (is_null_oid(oid
))
1013 commit
= lookup_commit(the_repository
, oid
);
1015 (commit
->object
.flags
& TMP_MARK
) ||
1016 repo_parse_commit(the_repository
, commit
))
1019 ALLOC_GROW(revs
->commit
, revs
->nr
+ 1, revs
->alloc
);
1020 revs
->commit
[revs
->nr
++] = commit
;
1021 commit
->object
.flags
|= TMP_MARK
;
1024 static int collect_one_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
1025 const char *ident UNUSED
,
1026 timestamp_t timestamp UNUSED
, int tz UNUSED
,
1027 const char *message UNUSED
, void *cbdata
)
1029 struct rev_collect
*revs
= cbdata
;
1031 if (revs
->initial
) {
1033 add_one_commit(ooid
, revs
);
1035 add_one_commit(noid
, revs
);
1039 struct commit
*get_fork_point(const char *refname
, struct commit
*commit
)
1041 struct object_id oid
;
1042 struct rev_collect revs
;
1043 struct commit_list
*bases
;
1045 struct commit
*ret
= NULL
;
1048 switch (repo_dwim_ref(the_repository
, refname
, strlen(refname
), &oid
,
1049 &full_refname
, 0)) {
1051 die("No such ref: '%s'", refname
);
1055 die("Ambiguous refname: '%s'", refname
);
1058 memset(&revs
, 0, sizeof(revs
));
1060 for_each_reflog_ent(full_refname
, collect_one_reflog_ent
, &revs
);
1063 add_one_commit(&oid
, &revs
);
1065 for (i
= 0; i
< revs
.nr
; i
++)
1066 revs
.commit
[i
]->object
.flags
&= ~TMP_MARK
;
1068 bases
= repo_get_merge_bases_many(the_repository
, commit
, revs
.nr
,
1072 * There should be one and only one merge base, when we found
1073 * a common ancestor among reflog entries.
1075 if (!bases
|| bases
->next
)
1076 goto cleanup_return
;
1078 /* And the found one must be one of the reflog entries */
1079 for (i
= 0; i
< revs
.nr
; i
++)
1080 if (&bases
->item
->object
== &revs
.commit
[i
]->object
)
1083 goto cleanup_return
;
1089 free_commit_list(bases
);
1095 * Indexed by hash algorithm identifier.
1097 static const char *gpg_sig_headers
[] = {
1103 int sign_with_header(struct strbuf
*buf
, const char *keyid
)
1105 struct strbuf sig
= STRBUF_INIT
;
1106 int inspos
, copypos
;
1108 const char *gpg_sig_header
= gpg_sig_headers
[hash_algo_by_ptr(the_hash_algo
)];
1109 int gpg_sig_header_len
= strlen(gpg_sig_header
);
1111 /* find the end of the header */
1112 eoh
= strstr(buf
->buf
, "\n\n");
1116 inspos
= eoh
- buf
->buf
+ 1;
1118 if (!keyid
|| !*keyid
)
1119 keyid
= get_signing_key();
1120 if (sign_buffer(buf
, &sig
, keyid
)) {
1121 strbuf_release(&sig
);
1125 for (copypos
= 0; sig
.buf
[copypos
]; ) {
1126 const char *bol
= sig
.buf
+ copypos
;
1127 const char *eol
= strchrnul(bol
, '\n');
1128 int len
= (eol
- bol
) + !!*eol
;
1131 strbuf_insert(buf
, inspos
, gpg_sig_header
, gpg_sig_header_len
);
1132 inspos
+= gpg_sig_header_len
;
1134 strbuf_insertstr(buf
, inspos
++, " ");
1135 strbuf_insert(buf
, inspos
, bol
, len
);
1139 strbuf_release(&sig
);
1145 int parse_signed_commit(const struct commit
*commit
,
1146 struct strbuf
*payload
, struct strbuf
*signature
,
1147 const struct git_hash_algo
*algop
)
1150 const char *buffer
= repo_get_commit_buffer(the_repository
, commit
,
1152 int ret
= parse_buffer_signed_by_header(buffer
, size
, payload
, signature
, algop
);
1154 repo_unuse_commit_buffer(the_repository
, commit
, buffer
);
1158 int parse_buffer_signed_by_header(const char *buffer
,
1160 struct strbuf
*payload
,
1161 struct strbuf
*signature
,
1162 const struct git_hash_algo
*algop
)
1164 int in_signature
= 0, saw_signature
= 0, other_signature
= 0;
1165 const char *line
, *tail
, *p
;
1166 const char *gpg_sig_header
= gpg_sig_headers
[hash_algo_by_ptr(algop
)];
1169 tail
= buffer
+ size
;
1170 while (line
< tail
) {
1171 const char *sig
= NULL
;
1172 const char *next
= memchr(line
, '\n', tail
- line
);
1174 next
= next
? next
+ 1 : tail
;
1175 if (in_signature
&& line
[0] == ' ')
1177 else if (skip_prefix(line
, gpg_sig_header
, &p
) &&
1179 sig
= line
+ strlen(gpg_sig_header
) + 1;
1180 other_signature
= 0;
1182 else if (starts_with(line
, "gpgsig"))
1183 other_signature
= 1;
1184 else if (other_signature
&& line
[0] != ' ')
1185 other_signature
= 0;
1187 strbuf_add(signature
, sig
, next
- sig
);
1192 /* dump the whole remainder of the buffer */
1194 if (!other_signature
)
1195 strbuf_add(payload
, line
, next
- line
);
1200 return saw_signature
;
1203 int remove_signature(struct strbuf
*buf
)
1205 const char *line
= buf
->buf
;
1206 const char *tail
= buf
->buf
+ buf
->len
;
1207 int in_signature
= 0;
1211 } sigs
[2], *sigp
= &sigs
[0];
1213 const char *orig_buf
= buf
->buf
;
1215 memset(sigs
, 0, sizeof(sigs
));
1217 while (line
< tail
) {
1218 const char *next
= memchr(line
, '\n', tail
- line
);
1219 next
= next
? next
+ 1 : tail
;
1221 if (in_signature
&& line
[0] == ' ')
1223 else if (starts_with(line
, "gpgsig")) {
1225 for (i
= 1; i
< GIT_HASH_NALGOS
; i
++) {
1227 if (skip_prefix(line
, gpg_sig_headers
[i
], &p
) &&
1236 /* dump the whole remainder of the buffer */
1238 if (in_signature
&& sigp
- sigs
!= ARRAY_SIZE(sigs
))
1245 for (i
= ARRAY_SIZE(sigs
) - 1; i
>= 0; i
--)
1247 strbuf_remove(buf
, sigs
[i
].start
- orig_buf
, sigs
[i
].end
- sigs
[i
].start
);
1249 return sigs
[0].start
!= NULL
;
1252 static void handle_signed_tag(struct commit
*parent
, struct commit_extra_header
***tail
)
1254 struct merge_remote_desc
*desc
;
1255 struct commit_extra_header
*mergetag
;
1258 enum object_type type
;
1259 struct strbuf payload
= STRBUF_INIT
;
1260 struct strbuf signature
= STRBUF_INIT
;
1262 desc
= merge_remote_util(parent
);
1263 if (!desc
|| !desc
->obj
)
1265 buf
= repo_read_object_file(the_repository
, &desc
->obj
->oid
, &type
,
1267 if (!buf
|| type
!= OBJ_TAG
)
1269 if (!parse_signature(buf
, size
, &payload
, &signature
))
1272 * We could verify this signature and either omit the tag when
1273 * it does not validate, but the integrator may not have the
1274 * public key of the signer of the tag being merged, while a
1275 * later auditor may have it while auditing, so let's not run
1276 * verify-signed-buffer here for now...
1278 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1279 * warn("warning: signed tag unverified.");
1281 CALLOC_ARRAY(mergetag
, 1);
1282 mergetag
->key
= xstrdup("mergetag");
1283 mergetag
->value
= buf
;
1284 mergetag
->len
= size
;
1287 *tail
= &mergetag
->next
;
1288 strbuf_release(&payload
);
1289 strbuf_release(&signature
);
1296 int check_commit_signature(const struct commit
*commit
, struct signature_check
*sigc
)
1298 struct strbuf payload
= STRBUF_INIT
;
1299 struct strbuf signature
= STRBUF_INIT
;
1304 if (parse_signed_commit(commit
, &payload
, &signature
, the_hash_algo
) <= 0)
1307 sigc
->payload_type
= SIGNATURE_PAYLOAD_COMMIT
;
1308 sigc
->payload
= strbuf_detach(&payload
, &sigc
->payload_len
);
1309 ret
= check_signature(sigc
, signature
.buf
, signature
.len
);
1312 strbuf_release(&payload
);
1313 strbuf_release(&signature
);
1318 void verify_merge_signature(struct commit
*commit
, int verbosity
,
1321 char hex
[GIT_MAX_HEXSZ
+ 1];
1322 struct signature_check signature_check
;
1324 memset(&signature_check
, 0, sizeof(signature_check
));
1326 ret
= check_commit_signature(commit
, &signature_check
);
1328 repo_find_unique_abbrev_r(the_repository
, hex
, &commit
->object
.oid
,
1330 switch (signature_check
.result
) {
1332 if (ret
|| (check_trust
&& signature_check
.trust_level
< TRUST_MARGINAL
))
1333 die(_("Commit %s has an untrusted GPG signature, "
1334 "allegedly by %s."), hex
, signature_check
.signer
);
1337 die(_("Commit %s has a bad GPG signature "
1338 "allegedly by %s."), hex
, signature_check
.signer
);
1340 die(_("Commit %s does not have a GPG signature."), hex
);
1342 if (verbosity
>= 0 && signature_check
.result
== 'G')
1343 printf(_("Commit %s has a good GPG signature by %s\n"),
1344 hex
, signature_check
.signer
);
1346 signature_check_clear(&signature_check
);
1349 void append_merge_tag_headers(struct commit_list
*parents
,
1350 struct commit_extra_header
***tail
)
1353 struct commit
*parent
= parents
->item
;
1354 handle_signed_tag(parent
, tail
);
1355 parents
= parents
->next
;
1359 static void add_extra_header(struct strbuf
*buffer
,
1360 struct commit_extra_header
*extra
)
1362 strbuf_addstr(buffer
, extra
->key
);
1364 strbuf_add_lines(buffer
, " ", extra
->value
, extra
->len
);
1366 strbuf_addch(buffer
, '\n');
1369 struct commit_extra_header
*read_commit_extra_headers(struct commit
*commit
,
1370 const char **exclude
)
1372 struct commit_extra_header
*extra
= NULL
;
1374 const char *buffer
= repo_get_commit_buffer(the_repository
, commit
,
1376 extra
= read_commit_extra_header_lines(buffer
, size
, exclude
);
1377 repo_unuse_commit_buffer(the_repository
, commit
, buffer
);
1381 int for_each_mergetag(each_mergetag_fn fn
, struct commit
*commit
, void *data
)
1383 struct commit_extra_header
*extra
, *to_free
;
1386 to_free
= read_commit_extra_headers(commit
, NULL
);
1387 for (extra
= to_free
; !res
&& extra
; extra
= extra
->next
) {
1388 if (strcmp(extra
->key
, "mergetag"))
1389 continue; /* not a merge tag */
1390 res
= fn(commit
, extra
, data
);
1392 free_commit_extra_headers(to_free
);
1396 static inline int standard_header_field(const char *field
, size_t len
)
1398 return ((len
== 4 && !memcmp(field
, "tree", 4)) ||
1399 (len
== 6 && !memcmp(field
, "parent", 6)) ||
1400 (len
== 6 && !memcmp(field
, "author", 6)) ||
1401 (len
== 9 && !memcmp(field
, "committer", 9)) ||
1402 (len
== 8 && !memcmp(field
, "encoding", 8)));
1405 static int excluded_header_field(const char *field
, size_t len
, const char **exclude
)
1411 size_t xlen
= strlen(*exclude
);
1412 if (len
== xlen
&& !memcmp(field
, *exclude
, xlen
))
1419 static struct commit_extra_header
*read_commit_extra_header_lines(
1420 const char *buffer
, size_t size
,
1421 const char **exclude
)
1423 struct commit_extra_header
*extra
= NULL
, **tail
= &extra
, *it
= NULL
;
1424 const char *line
, *next
, *eof
, *eob
;
1425 struct strbuf buf
= STRBUF_INIT
;
1427 for (line
= buffer
, eob
= line
+ size
;
1428 line
< eob
&& *line
!= '\n';
1430 next
= memchr(line
, '\n', eob
- line
);
1431 next
= next
? next
+ 1 : eob
;
1435 strbuf_add(&buf
, line
+ 1, next
- (line
+ 1));
1439 it
->value
= strbuf_detach(&buf
, &it
->len
);
1443 eof
= memchr(line
, ' ', next
- line
);
1446 else if (standard_header_field(line
, eof
- line
) ||
1447 excluded_header_field(line
, eof
- line
, exclude
))
1450 CALLOC_ARRAY(it
, 1);
1451 it
->key
= xmemdupz(line
, eof
-line
);
1455 strbuf_add(&buf
, eof
+ 1, next
- (eof
+ 1));
1458 it
->value
= strbuf_detach(&buf
, &it
->len
);
1462 void free_commit_extra_headers(struct commit_extra_header
*extra
)
1465 struct commit_extra_header
*next
= extra
->next
;
1473 int commit_tree(const char *msg
, size_t msg_len
, const struct object_id
*tree
,
1474 struct commit_list
*parents
, struct object_id
*ret
,
1475 const char *author
, const char *sign_commit
)
1477 struct commit_extra_header
*extra
= NULL
, **tail
= &extra
;
1480 append_merge_tag_headers(parents
, &tail
);
1481 result
= commit_tree_extended(msg
, msg_len
, tree
, parents
, ret
, author
,
1482 NULL
, sign_commit
, extra
);
1483 free_commit_extra_headers(extra
);
1487 static int find_invalid_utf8(const char *buf
, int len
)
1490 static const unsigned int max_codepoint
[] = {
1491 0x7f, 0x7ff, 0xffff, 0x10ffff
1495 unsigned char c
= *buf
++;
1496 int bytes
, bad_offset
;
1497 unsigned int codepoint
;
1498 unsigned int min_val
, max_val
;
1503 /* Simple US-ASCII? No worries. */
1507 bad_offset
= offset
-1;
1510 * Count how many more high bits set: that's how
1511 * many more bytes this sequence should have.
1520 * Must be between 1 and 3 more bytes. Longer sequences result in
1521 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1523 if (bytes
< 1 || 3 < bytes
)
1526 /* Do we *have* that many bytes? */
1531 * Place the encoded bits at the bottom of the value and compute the
1534 codepoint
= (c
& 0x7f) >> bytes
;
1535 min_val
= max_codepoint
[bytes
-1] + 1;
1536 max_val
= max_codepoint
[bytes
];
1541 /* And verify that they are good continuation bytes */
1544 codepoint
|= *buf
& 0x3f;
1545 if ((*buf
++ & 0xc0) != 0x80)
1549 /* Reject codepoints that are out of range for the sequence length. */
1550 if (codepoint
< min_val
|| codepoint
> max_val
)
1552 /* Surrogates are only for UTF-16 and cannot be encoded in UTF-8. */
1553 if ((codepoint
& 0x1ff800) == 0xd800)
1555 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
1556 if ((codepoint
& 0xfffe) == 0xfffe)
1558 /* So are anything in the range U+FDD0..U+FDEF. */
1559 if (codepoint
>= 0xfdd0 && codepoint
<= 0xfdef)
1566 * This verifies that the buffer is in proper utf8 format.
1568 * If it isn't, it assumes any non-utf8 characters are Latin1,
1569 * and does the conversion.
1571 static int verify_utf8(struct strbuf
*buf
)
1579 unsigned char replace
[2];
1581 bad
= find_invalid_utf8(buf
->buf
+ pos
, buf
->len
- pos
);
1587 strbuf_remove(buf
, pos
, 1);
1589 /* We know 'c' must be in the range 128-255 */
1590 replace
[0] = 0xc0 + (c
>> 6);
1591 replace
[1] = 0x80 + (c
& 0x3f);
1592 strbuf_insert(buf
, pos
, replace
, 2);
1597 static const char commit_utf8_warn
[] =
1598 N_("Warning: commit message did not conform to UTF-8.\n"
1599 "You may want to amend it after fixing the message, or set the config\n"
1600 "variable i18n.commitEncoding to the encoding your project uses.\n");
1602 int commit_tree_extended(const char *msg
, size_t msg_len
,
1603 const struct object_id
*tree
,
1604 struct commit_list
*parents
, struct object_id
*ret
,
1605 const char *author
, const char *committer
,
1606 const char *sign_commit
,
1607 struct commit_extra_header
*extra
)
1610 int encoding_is_utf8
;
1611 struct strbuf buffer
;
1613 assert_oid_type(tree
, OBJ_TREE
);
1615 if (memchr(msg
, '\0', msg_len
))
1616 return error("a NUL byte in commit log message not allowed.");
1618 /* Not having i18n.commitencoding is the same as having utf-8 */
1619 encoding_is_utf8
= is_encoding_utf8(git_commit_encoding
);
1621 strbuf_init(&buffer
, 8192); /* should avoid reallocs for the headers */
1622 strbuf_addf(&buffer
, "tree %s\n", oid_to_hex(tree
));
1625 * NOTE! This ordering means that the same exact tree merged with a
1626 * different order of parents will be a _different_ changeset even
1627 * if everything else stays the same.
1630 struct commit
*parent
= pop_commit(&parents
);
1631 strbuf_addf(&buffer
, "parent %s\n",
1632 oid_to_hex(&parent
->object
.oid
));
1635 /* Person/date information */
1637 author
= git_author_info(IDENT_STRICT
);
1638 strbuf_addf(&buffer
, "author %s\n", author
);
1640 committer
= git_committer_info(IDENT_STRICT
);
1641 strbuf_addf(&buffer
, "committer %s\n", committer
);
1642 if (!encoding_is_utf8
)
1643 strbuf_addf(&buffer
, "encoding %s\n", git_commit_encoding
);
1646 add_extra_header(&buffer
, extra
);
1647 extra
= extra
->next
;
1649 strbuf_addch(&buffer
, '\n');
1651 /* And add the comment */
1652 strbuf_add(&buffer
, msg
, msg_len
);
1654 /* And check the encoding */
1655 if (encoding_is_utf8
&& !verify_utf8(&buffer
))
1656 fprintf(stderr
, _(commit_utf8_warn
));
1658 if (sign_commit
&& sign_with_header(&buffer
, sign_commit
)) {
1663 result
= write_object_file(buffer
.buf
, buffer
.len
, OBJ_COMMIT
, ret
);
1665 strbuf_release(&buffer
);
1669 define_commit_slab(merge_desc_slab
, struct merge_remote_desc
*);
1670 static struct merge_desc_slab merge_desc_slab
= COMMIT_SLAB_INIT(1, merge_desc_slab
);
1672 struct merge_remote_desc
*merge_remote_util(struct commit
*commit
)
1674 return *merge_desc_slab_at(&merge_desc_slab
, commit
);
1677 void set_merge_remote_desc(struct commit
*commit
,
1678 const char *name
, struct object
*obj
)
1680 struct merge_remote_desc
*desc
;
1681 FLEX_ALLOC_STR(desc
, name
, name
);
1683 *merge_desc_slab_at(&merge_desc_slab
, commit
) = desc
;
1686 struct commit
*get_merge_parent(const char *name
)
1689 struct commit
*commit
;
1690 struct object_id oid
;
1691 if (repo_get_oid(the_repository
, name
, &oid
))
1693 obj
= parse_object(the_repository
, &oid
);
1694 commit
= (struct commit
*)repo_peel_to_type(the_repository
, name
, 0,
1696 if (commit
&& !merge_remote_util(commit
))
1697 set_merge_remote_desc(commit
, name
, obj
);
1702 * Append a commit to the end of the commit_list.
1704 * next starts by pointing to the variable that holds the head of an
1705 * empty commit_list, and is updated to point to the "next" field of
1706 * the last item on the list as new commits are appended.
1710 * struct commit_list *list;
1711 * struct commit_list **next = &list;
1713 * next = commit_list_append(c1, next);
1714 * next = commit_list_append(c2, next);
1715 * assert(commit_list_count(list) == 2);
1718 struct commit_list
**commit_list_append(struct commit
*commit
,
1719 struct commit_list
**next
)
1721 struct commit_list
*new_commit
= xmalloc(sizeof(struct commit_list
));
1722 new_commit
->item
= commit
;
1724 new_commit
->next
= NULL
;
1725 return &new_commit
->next
;
1728 const char *find_header_mem(const char *msg
, size_t len
,
1729 const char *key
, size_t *out_len
)
1731 int key_len
= strlen(key
);
1732 const char *line
= msg
;
1735 * NEEDSWORK: It's possible for strchrnul() to scan beyond the range
1736 * given by len. However, current callers are safe because they compute
1737 * len by scanning a NUL-terminated block of memory starting at msg.
1738 * Nonetheless, it would be better to ensure the function does not look
1739 * at msg beyond the len provided by the caller.
1741 while (line
&& line
< msg
+ len
) {
1742 const char *eol
= strchrnul(line
, '\n');
1747 if (eol
- line
> key_len
&&
1748 !strncmp(line
, key
, key_len
) &&
1749 line
[key_len
] == ' ') {
1750 *out_len
= eol
- line
- key_len
- 1;
1751 return line
+ key_len
+ 1;
1753 line
= *eol
? eol
+ 1 : NULL
;
1758 const char *find_commit_header(const char *msg
, const char *key
, size_t *out_len
)
1760 return find_header_mem(msg
, strlen(msg
), key
, out_len
);
1763 * Inspect the given string and determine the true "end" of the log message, in
1764 * order to find where to put a new Signed-off-by trailer. Ignored are
1765 * trailing comment lines and blank lines. To support "git commit -s
1766 * --amend" on an existing commit, we also ignore "Conflicts:". To
1767 * support "git commit -v", we truncate at cut lines.
1769 * Returns the number of bytes from the tail to ignore, to be fed as
1770 * the second parameter to append_signoff().
1772 size_t ignore_non_trailer(const char *buf
, size_t len
)
1776 int in_old_conflicts_block
= 0;
1777 size_t cutoff
= wt_status_locate_end(buf
, len
);
1779 while (bol
< cutoff
) {
1780 const char *next_line
= memchr(buf
+ bol
, '\n', len
- bol
);
1783 next_line
= buf
+ len
;
1787 if (buf
[bol
] == comment_line_char
|| buf
[bol
] == '\n') {
1788 /* is this the first of the run of comments? */
1791 /* otherwise, it is just continuing */
1792 } else if (starts_with(buf
+ bol
, "Conflicts:\n")) {
1793 in_old_conflicts_block
= 1;
1796 } else if (in_old_conflicts_block
&& buf
[bol
] == '\t') {
1797 ; /* a pathname in the conflicts block */
1799 /* the previous was not trailing comment */
1801 in_old_conflicts_block
= 0;
1803 bol
= next_line
- buf
;
1805 return boc
? len
- boc
: len
- cutoff
;
1808 int run_commit_hook(int editor_is_used
, const char *index_file
,
1809 int *invoked_hook
, const char *name
, ...)
1811 struct run_hooks_opt opt
= RUN_HOOKS_OPT_INIT
;
1815 strvec_pushf(&opt
.env
, "GIT_INDEX_FILE=%s", index_file
);
1818 * Let the hook know that no editor will be launched.
1820 if (!editor_is_used
)
1821 strvec_push(&opt
.env
, "GIT_EDITOR=:");
1823 va_start(args
, name
);
1824 while ((arg
= va_arg(args
, const char *)))
1825 strvec_push(&opt
.args
, arg
);
1828 opt
.invoked_hook
= invoked_hook
;
1829 return run_hooks_opt(name
, &opt
);