4 #include "commit-graph.h"
5 #include "repository.h"
6 #include "object-store.h"
13 #include "gpg-interface.h"
14 #include "mergesort.h"
15 #include "commit-slab.h"
16 #include "prio-queue.h"
17 #include "hash-lookup.h"
18 #include "wt-status.h"
21 #include "commit-reach.h"
22 #include "run-command.h"
26 static struct commit_extra_header
*read_commit_extra_header_lines(const char *buf
, size_t len
, const char **);
28 int save_commit_buffer
= 1;
29 int no_graft_file_deprecated_advice
;
31 const char *commit_type
= "commit";
33 struct commit
*lookup_commit_reference_gently(struct repository
*r
,
34 const struct object_id
*oid
, int quiet
)
36 struct object
*obj
= deref_tag(r
,
42 return object_as_type(obj
, OBJ_COMMIT
, quiet
);
45 struct commit
*lookup_commit_reference(struct repository
*r
, const struct object_id
*oid
)
47 return lookup_commit_reference_gently(r
, oid
, 0);
50 struct commit
*lookup_commit_or_die(const struct object_id
*oid
, const char *ref_name
)
52 struct commit
*c
= lookup_commit_reference(the_repository
, oid
);
54 die(_("could not parse %s"), ref_name
);
55 if (!oideq(oid
, &c
->object
.oid
)) {
56 warning(_("%s %s is not a commit!"),
57 ref_name
, oid_to_hex(oid
));
62 struct commit
*lookup_commit(struct repository
*r
, const struct object_id
*oid
)
64 struct object
*obj
= lookup_object(r
, oid
);
66 return create_object(r
, oid
, alloc_commit_node(r
));
67 return object_as_type(obj
, OBJ_COMMIT
, 0);
70 struct commit
*lookup_commit_reference_by_name(const char *name
)
73 struct commit
*commit
;
75 if (get_oid_committish(name
, &oid
))
77 commit
= lookup_commit_reference(the_repository
, &oid
);
78 if (parse_commit(commit
))
83 static timestamp_t
parse_commit_date(const char *buf
, const char *tail
)
89 if (memcmp(buf
, "author", 6))
91 while (buf
< tail
&& *buf
++ != '\n')
95 if (memcmp(buf
, "committer", 9))
97 while (buf
< tail
&& *buf
++ != '>')
102 while (buf
< tail
&& *buf
++ != '\n')
106 /* dateptr < buf && buf[-1] == '\n', so parsing will stop at buf-1 */
107 return parse_timestamp(dateptr
, NULL
, 10);
110 static const struct object_id
*commit_graft_oid_access(size_t index
, const void *table
)
112 const struct commit_graft
* const *commit_graft_table
= table
;
113 return &commit_graft_table
[index
]->oid
;
116 int commit_graft_pos(struct repository
*r
, const struct object_id
*oid
)
118 return oid_pos(oid
, r
->parsed_objects
->grafts
,
119 r
->parsed_objects
->grafts_nr
,
120 commit_graft_oid_access
);
123 int register_commit_graft(struct repository
*r
, struct commit_graft
*graft
,
126 int pos
= commit_graft_pos(r
, &graft
->oid
);
132 free(r
->parsed_objects
->grafts
[pos
]);
133 r
->parsed_objects
->grafts
[pos
] = graft
;
138 ALLOC_GROW(r
->parsed_objects
->grafts
,
139 r
->parsed_objects
->grafts_nr
+ 1,
140 r
->parsed_objects
->grafts_alloc
);
141 r
->parsed_objects
->grafts_nr
++;
142 if (pos
< r
->parsed_objects
->grafts_nr
)
143 memmove(r
->parsed_objects
->grafts
+ pos
+ 1,
144 r
->parsed_objects
->grafts
+ pos
,
145 (r
->parsed_objects
->grafts_nr
- pos
- 1) *
146 sizeof(*r
->parsed_objects
->grafts
));
147 r
->parsed_objects
->grafts
[pos
] = graft
;
151 struct commit_graft
*read_graft_line(struct strbuf
*line
)
153 /* The format is just "Commit Parent1 Parent2 ...\n" */
155 const char *tail
= NULL
;
156 struct commit_graft
*graft
= NULL
;
157 struct object_id dummy_oid
, *oid
;
160 if (!line
->len
|| line
->buf
[0] == '#')
163 * phase 0 verifies line, counts hashes in line and allocates graft
164 * phase 1 fills graft
166 for (phase
= 0; phase
< 2; phase
++) {
167 oid
= graft
? &graft
->oid
: &dummy_oid
;
168 if (parse_oid_hex(line
->buf
, oid
, &tail
))
170 for (i
= 0; *tail
!= '\0'; i
++) {
171 oid
= graft
? &graft
->parent
[i
] : &dummy_oid
;
172 if (!isspace(*tail
++) || parse_oid_hex(tail
, oid
, &tail
))
176 graft
= xmalloc(st_add(sizeof(*graft
),
177 st_mult(sizeof(struct object_id
), i
)));
178 graft
->nr_parent
= i
;
184 error("bad graft data: %s", line
->buf
);
189 static int read_graft_file(struct repository
*r
, const char *graft_file
)
191 FILE *fp
= fopen_or_warn(graft_file
, "r");
192 struct strbuf buf
= STRBUF_INIT
;
195 if (!no_graft_file_deprecated_advice
&&
196 advice_enabled(ADVICE_GRAFT_FILE_DEPRECATED
))
197 advise(_("Support for <GIT_DIR>/info/grafts is deprecated\n"
198 "and will be removed in a future Git version.\n"
200 "Please use \"git replace --convert-graft-file\"\n"
201 "to convert the grafts into replace refs.\n"
203 "Turn this message off by running\n"
204 "\"git config advice.graftFileDeprecated false\""));
205 while (!strbuf_getwholeline(&buf
, fp
, '\n')) {
206 /* The format is just "Commit Parent1 Parent2 ...\n" */
207 struct commit_graft
*graft
= read_graft_line(&buf
);
210 if (register_commit_graft(r
, graft
, 1))
211 error("duplicate graft data: %s", buf
.buf
);
214 strbuf_release(&buf
);
218 void prepare_commit_graft(struct repository
*r
)
222 if (r
->parsed_objects
->commit_graft_prepared
)
224 if (!startup_info
->have_repository
)
227 graft_file
= get_graft_file(r
);
228 read_graft_file(r
, graft_file
);
229 /* make sure shallows are read */
230 is_repository_shallow(r
);
231 r
->parsed_objects
->commit_graft_prepared
= 1;
234 struct commit_graft
*lookup_commit_graft(struct repository
*r
, const struct object_id
*oid
)
237 prepare_commit_graft(r
);
238 pos
= commit_graft_pos(r
, oid
);
241 return r
->parsed_objects
->grafts
[pos
];
244 int for_each_commit_graft(each_commit_graft_fn fn
, void *cb_data
)
247 for (i
= ret
= 0; i
< the_repository
->parsed_objects
->grafts_nr
&& !ret
; i
++)
248 ret
= fn(the_repository
->parsed_objects
->grafts
[i
], cb_data
);
252 struct commit_buffer
{
256 define_commit_slab(buffer_slab
, struct commit_buffer
);
258 struct buffer_slab
*allocate_commit_buffer_slab(void)
260 struct buffer_slab
*bs
= xmalloc(sizeof(*bs
));
261 init_buffer_slab(bs
);
265 void free_commit_buffer_slab(struct buffer_slab
*bs
)
267 clear_buffer_slab(bs
);
271 void set_commit_buffer(struct repository
*r
, struct commit
*commit
, void *buffer
, unsigned long size
)
273 struct commit_buffer
*v
= buffer_slab_at(
274 r
->parsed_objects
->buffer_slab
, commit
);
279 const void *get_cached_commit_buffer(struct repository
*r
, const struct commit
*commit
, unsigned long *sizep
)
281 struct commit_buffer
*v
= buffer_slab_peek(
282 r
->parsed_objects
->buffer_slab
, commit
);
293 const void *repo_get_commit_buffer(struct repository
*r
,
294 const struct commit
*commit
,
295 unsigned long *sizep
)
297 const void *ret
= get_cached_commit_buffer(r
, commit
, sizep
);
299 enum object_type type
;
301 ret
= repo_read_object_file(r
, &commit
->object
.oid
, &type
, &size
);
303 die("cannot read commit object %s",
304 oid_to_hex(&commit
->object
.oid
));
305 if (type
!= OBJ_COMMIT
)
306 die("expected commit for %s, got %s",
307 oid_to_hex(&commit
->object
.oid
), type_name(type
));
314 void repo_unuse_commit_buffer(struct repository
*r
,
315 const struct commit
*commit
,
318 struct commit_buffer
*v
= buffer_slab_peek(
319 r
->parsed_objects
->buffer_slab
, commit
);
320 if (!(v
&& v
->buffer
== buffer
))
321 free((void *)buffer
);
324 void free_commit_buffer(struct parsed_object_pool
*pool
, struct commit
*commit
)
326 struct commit_buffer
*v
= buffer_slab_peek(
327 pool
->buffer_slab
, commit
);
329 FREE_AND_NULL(v
->buffer
);
334 static inline void set_commit_tree(struct commit
*c
, struct tree
*t
)
339 struct tree
*repo_get_commit_tree(struct repository
*r
,
340 const struct commit
*commit
)
342 if (commit
->maybe_tree
|| !commit
->object
.parsed
)
343 return commit
->maybe_tree
;
345 if (commit_graph_position(commit
) != COMMIT_NOT_FROM_GRAPH
)
346 return get_commit_tree_in_graph(r
, commit
);
351 struct object_id
*get_commit_tree_oid(const struct commit
*commit
)
353 struct tree
*tree
= get_commit_tree(commit
);
354 return tree
? &tree
->object
.oid
: NULL
;
357 void release_commit_memory(struct parsed_object_pool
*pool
, struct commit
*c
)
359 set_commit_tree(c
, NULL
);
360 free_commit_buffer(pool
, c
);
362 free_commit_list(c
->parents
);
364 c
->object
.parsed
= 0;
367 const void *detach_commit_buffer(struct commit
*commit
, unsigned long *sizep
)
369 struct commit_buffer
*v
= buffer_slab_peek(
370 the_repository
->parsed_objects
->buffer_slab
, commit
);
387 int parse_commit_buffer(struct repository
*r
, struct commit
*item
, const void *buffer
, unsigned long size
, int check_graph
)
389 const char *tail
= buffer
;
390 const char *bufptr
= buffer
;
391 struct object_id parent
;
392 struct commit_list
**pptr
;
393 struct commit_graft
*graft
;
394 const int tree_entry_len
= the_hash_algo
->hexsz
+ 5;
395 const int parent_entry_len
= the_hash_algo
->hexsz
+ 7;
398 if (item
->object
.parsed
)
403 * Presumably this is leftover from an earlier failed parse;
404 * clear it out in preparation for us re-parsing (we'll hit the
405 * same error, but that's good, since it lets our caller know
406 * the result cannot be trusted.
408 free_commit_list(item
->parents
);
409 item
->parents
= NULL
;
413 if (tail
<= bufptr
+ tree_entry_len
+ 1 || memcmp(bufptr
, "tree ", 5) ||
414 bufptr
[tree_entry_len
] != '\n')
415 return error("bogus commit object %s", oid_to_hex(&item
->object
.oid
));
416 if (get_oid_hex(bufptr
+ 5, &parent
) < 0)
417 return error("bad tree pointer in commit %s",
418 oid_to_hex(&item
->object
.oid
));
419 tree
= lookup_tree(r
, &parent
);
421 return error("bad tree pointer %s in commit %s",
423 oid_to_hex(&item
->object
.oid
));
424 set_commit_tree(item
, tree
);
425 bufptr
+= tree_entry_len
+ 1; /* "tree " + "hex sha1" + "\n" */
426 pptr
= &item
->parents
;
428 graft
= lookup_commit_graft(r
, &item
->object
.oid
);
430 r
->parsed_objects
->substituted_parent
= 1;
431 while (bufptr
+ parent_entry_len
< tail
&& !memcmp(bufptr
, "parent ", 7)) {
432 struct commit
*new_parent
;
434 if (tail
<= bufptr
+ parent_entry_len
+ 1 ||
435 get_oid_hex(bufptr
+ 7, &parent
) ||
436 bufptr
[parent_entry_len
] != '\n')
437 return error("bad parents in commit %s", oid_to_hex(&item
->object
.oid
));
438 bufptr
+= parent_entry_len
+ 1;
440 * The clone is shallow if nr_parent < 0, and we must
441 * not traverse its real parents even when we unhide them.
443 if (graft
&& (graft
->nr_parent
< 0 || grafts_replace_parents
))
445 new_parent
= lookup_commit(r
, &parent
);
447 return error("bad parent %s in commit %s",
449 oid_to_hex(&item
->object
.oid
));
450 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
454 struct commit
*new_parent
;
455 for (i
= 0; i
< graft
->nr_parent
; i
++) {
456 new_parent
= lookup_commit(r
,
459 return error("bad graft parent %s in commit %s",
460 oid_to_hex(&graft
->parent
[i
]),
461 oid_to_hex(&item
->object
.oid
));
462 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
465 item
->date
= parse_commit_date(bufptr
, tail
);
468 load_commit_graph_info(r
, item
);
470 item
->object
.parsed
= 1;
474 int repo_parse_commit_internal(struct repository
*r
,
476 int quiet_on_missing
,
477 int use_commit_graph
)
479 enum object_type type
;
486 if (item
->object
.parsed
)
488 if (use_commit_graph
&& parse_commit_in_graph(r
, item
))
490 buffer
= repo_read_object_file(r
, &item
->object
.oid
, &type
, &size
);
492 return quiet_on_missing
? -1 :
493 error("Could not read %s",
494 oid_to_hex(&item
->object
.oid
));
495 if (type
!= OBJ_COMMIT
) {
497 return error("Object %s not a commit",
498 oid_to_hex(&item
->object
.oid
));
501 ret
= parse_commit_buffer(r
, item
, buffer
, size
, 0);
502 if (save_commit_buffer
&& !ret
) {
503 set_commit_buffer(r
, item
, buffer
, size
);
510 int repo_parse_commit_gently(struct repository
*r
,
511 struct commit
*item
, int quiet_on_missing
)
513 return repo_parse_commit_internal(r
, item
, quiet_on_missing
, 1);
516 void parse_commit_or_die(struct commit
*item
)
518 if (parse_commit(item
))
519 die("unable to parse commit %s",
520 item
? oid_to_hex(&item
->object
.oid
) : "(null)");
523 int find_commit_subject(const char *commit_buffer
, const char **subject
)
526 const char *p
= commit_buffer
;
528 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
531 p
= skip_blank_lines(p
+ 2);
532 eol
= strchrnul(p
, '\n');
541 size_t commit_subject_length(const char *body
)
543 const char *p
= body
;
545 const char *next
= skip_blank_lines(p
);
548 p
= strchrnul(p
, '\n');
555 struct commit_list
*commit_list_insert(struct commit
*item
, struct commit_list
**list_p
)
557 struct commit_list
*new_list
= xmalloc(sizeof(struct commit_list
));
558 new_list
->item
= item
;
559 new_list
->next
= *list_p
;
564 int commit_list_contains(struct commit
*item
, struct commit_list
*list
)
567 if (list
->item
== item
)
575 unsigned commit_list_count(const struct commit_list
*l
)
578 for (; l
; l
= l
->next
)
583 struct commit_list
*copy_commit_list(struct commit_list
*list
)
585 struct commit_list
*head
= NULL
;
586 struct commit_list
**pp
= &head
;
588 pp
= commit_list_append(list
->item
, pp
);
594 struct commit_list
*reverse_commit_list(struct commit_list
*list
)
596 struct commit_list
*next
= NULL
, *current
, *backup
;
597 for (current
= list
; current
; current
= backup
) {
598 backup
= current
->next
;
599 current
->next
= next
;
605 void free_commit_list(struct commit_list
*list
)
611 struct commit_list
* commit_list_insert_by_date(struct commit
*item
, struct commit_list
**list
)
613 struct commit_list
**pp
= list
;
614 struct commit_list
*p
;
615 while ((p
= *pp
) != NULL
) {
616 if (p
->item
->date
< item
->date
) {
621 return commit_list_insert(item
, pp
);
624 static int commit_list_compare_by_date(const void *a
, const void *b
)
626 timestamp_t a_date
= ((const struct commit_list
*)a
)->item
->date
;
627 timestamp_t b_date
= ((const struct commit_list
*)b
)->item
->date
;
635 static void *commit_list_get_next(const void *a
)
637 return ((const struct commit_list
*)a
)->next
;
640 static void commit_list_set_next(void *a
, void *next
)
642 ((struct commit_list
*)a
)->next
= next
;
645 void commit_list_sort_by_date(struct commit_list
**list
)
647 *list
= llist_mergesort(*list
, commit_list_get_next
, commit_list_set_next
,
648 commit_list_compare_by_date
);
651 struct commit
*pop_most_recent_commit(struct commit_list
**list
,
654 struct commit
*ret
= pop_commit(list
);
655 struct commit_list
*parents
= ret
->parents
;
658 struct commit
*commit
= parents
->item
;
659 if (!parse_commit(commit
) && !(commit
->object
.flags
& mark
)) {
660 commit
->object
.flags
|= mark
;
661 commit_list_insert_by_date(commit
, list
);
663 parents
= parents
->next
;
668 static void clear_commit_marks_1(struct commit_list
**plist
,
669 struct commit
*commit
, unsigned int mark
)
672 struct commit_list
*parents
;
674 if (!(mark
& commit
->object
.flags
))
677 commit
->object
.flags
&= ~mark
;
679 parents
= commit
->parents
;
683 while ((parents
= parents
->next
))
684 commit_list_insert(parents
->item
, plist
);
686 commit
= commit
->parents
->item
;
690 void clear_commit_marks_many(int nr
, struct commit
**commit
, unsigned int mark
)
692 struct commit_list
*list
= NULL
;
695 clear_commit_marks_1(&list
, *commit
, mark
);
699 clear_commit_marks_1(&list
, pop_commit(&list
), mark
);
702 void clear_commit_marks(struct commit
*commit
, unsigned int mark
)
704 clear_commit_marks_many(1, &commit
, mark
);
707 struct commit
*pop_commit(struct commit_list
**stack
)
709 struct commit_list
*top
= *stack
;
710 struct commit
*item
= top
? top
->item
: NULL
;
720 * Topological sort support
723 /* count number of children that have not been emitted */
724 define_commit_slab(indegree_slab
, int);
726 define_commit_slab(author_date_slab
, timestamp_t
);
728 void record_author_date(struct author_date_slab
*author_date
,
729 struct commit
*commit
)
731 const char *buffer
= get_commit_buffer(commit
, NULL
);
732 struct ident_split ident
;
733 const char *ident_line
;
738 ident_line
= find_commit_header(buffer
, "author", &ident_len
);
740 goto fail_exit
; /* no author line */
741 if (split_ident_line(&ident
, ident_line
, ident_len
) ||
742 !ident
.date_begin
|| !ident
.date_end
)
743 goto fail_exit
; /* malformed "author" line */
745 date
= parse_timestamp(ident
.date_begin
, &date_end
, 10);
746 if (date_end
!= ident
.date_end
)
747 goto fail_exit
; /* malformed date */
748 *(author_date_slab_at(author_date
, commit
)) = date
;
751 unuse_commit_buffer(commit
, buffer
);
754 int compare_commits_by_author_date(const void *a_
, const void *b_
,
757 const struct commit
*a
= a_
, *b
= b_
;
758 struct author_date_slab
*author_date
= cb_data
;
759 timestamp_t a_date
= *(author_date_slab_at(author_date
, a
));
760 timestamp_t b_date
= *(author_date_slab_at(author_date
, b
));
762 /* newer commits with larger date first */
765 else if (a_date
> b_date
)
770 int compare_commits_by_gen_then_commit_date(const void *a_
, const void *b_
, void *unused
)
772 const struct commit
*a
= a_
, *b
= b_
;
773 const timestamp_t generation_a
= commit_graph_generation(a
),
774 generation_b
= commit_graph_generation(b
);
776 /* newer commits first */
777 if (generation_a
< generation_b
)
779 else if (generation_a
> generation_b
)
782 /* use date as a heuristic when generations are equal */
783 if (a
->date
< b
->date
)
785 else if (a
->date
> b
->date
)
790 int compare_commits_by_commit_date(const void *a_
, const void *b_
, void *unused
)
792 const struct commit
*a
= a_
, *b
= b_
;
793 /* newer commits with larger date first */
794 if (a
->date
< b
->date
)
796 else if (a
->date
> b
->date
)
802 * Performs an in-place topological sort on the list supplied.
804 void sort_in_topological_order(struct commit_list
**list
, enum rev_sort_order sort_order
)
806 struct commit_list
*next
, *orig
= *list
;
807 struct commit_list
**pptr
;
808 struct indegree_slab indegree
;
809 struct prio_queue queue
;
810 struct commit
*commit
;
811 struct author_date_slab author_date
;
817 init_indegree_slab(&indegree
);
818 memset(&queue
, '\0', sizeof(queue
));
820 switch (sort_order
) {
821 default: /* REV_SORT_IN_GRAPH_ORDER */
822 queue
.compare
= NULL
;
824 case REV_SORT_BY_COMMIT_DATE
:
825 queue
.compare
= compare_commits_by_commit_date
;
827 case REV_SORT_BY_AUTHOR_DATE
:
828 init_author_date_slab(&author_date
);
829 queue
.compare
= compare_commits_by_author_date
;
830 queue
.cb_data
= &author_date
;
834 /* Mark them and clear the indegree */
835 for (next
= orig
; next
; next
= next
->next
) {
836 struct commit
*commit
= next
->item
;
837 *(indegree_slab_at(&indegree
, commit
)) = 1;
838 /* also record the author dates, if needed */
839 if (sort_order
== REV_SORT_BY_AUTHOR_DATE
)
840 record_author_date(&author_date
, commit
);
843 /* update the indegree */
844 for (next
= orig
; next
; next
= next
->next
) {
845 struct commit_list
*parents
= next
->item
->parents
;
847 struct commit
*parent
= parents
->item
;
848 int *pi
= indegree_slab_at(&indegree
, parent
);
852 parents
= parents
->next
;
859 * tips are nodes not reachable from any other node in the list
861 * the tips serve as a starting set for the work queue.
863 for (next
= orig
; next
; next
= next
->next
) {
864 struct commit
*commit
= next
->item
;
866 if (*(indegree_slab_at(&indegree
, commit
)) == 1)
867 prio_queue_put(&queue
, commit
);
871 * This is unfortunate; the initial tips need to be shown
872 * in the order given from the revision traversal machinery.
874 if (sort_order
== REV_SORT_IN_GRAPH_ORDER
)
875 prio_queue_reverse(&queue
);
877 /* We no longer need the commit list */
878 free_commit_list(orig
);
882 while ((commit
= prio_queue_get(&queue
)) != NULL
) {
883 struct commit_list
*parents
;
885 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
886 struct commit
*parent
= parents
->item
;
887 int *pi
= indegree_slab_at(&indegree
, parent
);
893 * parents are only enqueued for emission
894 * when all their children have been emitted thereby
895 * guaranteeing topological order.
898 prio_queue_put(&queue
, parent
);
901 * all children of commit have already been
902 * emitted. we can emit it now.
904 *(indegree_slab_at(&indegree
, commit
)) = 0;
906 pptr
= &commit_list_insert(commit
, pptr
)->next
;
909 clear_indegree_slab(&indegree
);
910 clear_prio_queue(&queue
);
911 if (sort_order
== REV_SORT_BY_AUTHOR_DATE
)
912 clear_author_date_slab(&author_date
);
916 struct commit
**commit
;
919 unsigned int initial
: 1;
922 static void add_one_commit(struct object_id
*oid
, struct rev_collect
*revs
)
924 struct commit
*commit
;
926 if (is_null_oid(oid
))
929 commit
= lookup_commit(the_repository
, oid
);
931 (commit
->object
.flags
& TMP_MARK
) ||
932 parse_commit(commit
))
935 ALLOC_GROW(revs
->commit
, revs
->nr
+ 1, revs
->alloc
);
936 revs
->commit
[revs
->nr
++] = commit
;
937 commit
->object
.flags
|= TMP_MARK
;
940 static int collect_one_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
941 const char *ident
, timestamp_t timestamp
,
942 int tz
, const char *message
, void *cbdata
)
944 struct rev_collect
*revs
= cbdata
;
948 add_one_commit(ooid
, revs
);
950 add_one_commit(noid
, revs
);
954 struct commit
*get_fork_point(const char *refname
, struct commit
*commit
)
956 struct object_id oid
;
957 struct rev_collect revs
;
958 struct commit_list
*bases
;
960 struct commit
*ret
= NULL
;
963 switch (dwim_ref(refname
, strlen(refname
), &oid
, &full_refname
, 0)) {
965 die("No such ref: '%s'", refname
);
969 die("Ambiguous refname: '%s'", refname
);
972 memset(&revs
, 0, sizeof(revs
));
974 for_each_reflog_ent(full_refname
, collect_one_reflog_ent
, &revs
);
977 add_one_commit(&oid
, &revs
);
979 for (i
= 0; i
< revs
.nr
; i
++)
980 revs
.commit
[i
]->object
.flags
&= ~TMP_MARK
;
982 bases
= get_merge_bases_many(commit
, revs
.nr
, revs
.commit
);
985 * There should be one and only one merge base, when we found
986 * a common ancestor among reflog entries.
988 if (!bases
|| bases
->next
)
991 /* And the found one must be one of the reflog entries */
992 for (i
= 0; i
< revs
.nr
; i
++)
993 if (&bases
->item
->object
== &revs
.commit
[i
]->object
)
1001 free_commit_list(bases
);
1007 * Indexed by hash algorithm identifier.
1009 static const char *gpg_sig_headers
[] = {
1015 int sign_with_header(struct strbuf
*buf
, const char *keyid
)
1017 struct strbuf sig
= STRBUF_INIT
;
1018 int inspos
, copypos
;
1020 const char *gpg_sig_header
= gpg_sig_headers
[hash_algo_by_ptr(the_hash_algo
)];
1021 int gpg_sig_header_len
= strlen(gpg_sig_header
);
1023 /* find the end of the header */
1024 eoh
= strstr(buf
->buf
, "\n\n");
1028 inspos
= eoh
- buf
->buf
+ 1;
1030 if (!keyid
|| !*keyid
)
1031 keyid
= get_signing_key();
1032 if (sign_buffer(buf
, &sig
, keyid
)) {
1033 strbuf_release(&sig
);
1037 for (copypos
= 0; sig
.buf
[copypos
]; ) {
1038 const char *bol
= sig
.buf
+ copypos
;
1039 const char *eol
= strchrnul(bol
, '\n');
1040 int len
= (eol
- bol
) + !!*eol
;
1043 strbuf_insert(buf
, inspos
, gpg_sig_header
, gpg_sig_header_len
);
1044 inspos
+= gpg_sig_header_len
;
1046 strbuf_insertstr(buf
, inspos
++, " ");
1047 strbuf_insert(buf
, inspos
, bol
, len
);
1051 strbuf_release(&sig
);
1057 int parse_signed_commit(const struct commit
*commit
,
1058 struct strbuf
*payload
, struct strbuf
*signature
,
1059 const struct git_hash_algo
*algop
)
1062 const char *buffer
= get_commit_buffer(commit
, &size
);
1063 int ret
= parse_buffer_signed_by_header(buffer
, size
, payload
, signature
, algop
);
1065 unuse_commit_buffer(commit
, buffer
);
1069 int parse_buffer_signed_by_header(const char *buffer
,
1071 struct strbuf
*payload
,
1072 struct strbuf
*signature
,
1073 const struct git_hash_algo
*algop
)
1075 int in_signature
= 0, saw_signature
= 0, other_signature
= 0;
1076 const char *line
, *tail
, *p
;
1077 const char *gpg_sig_header
= gpg_sig_headers
[hash_algo_by_ptr(algop
)];
1080 tail
= buffer
+ size
;
1081 while (line
< tail
) {
1082 const char *sig
= NULL
;
1083 const char *next
= memchr(line
, '\n', tail
- line
);
1085 next
= next
? next
+ 1 : tail
;
1086 if (in_signature
&& line
[0] == ' ')
1088 else if (skip_prefix(line
, gpg_sig_header
, &p
) &&
1090 sig
= line
+ strlen(gpg_sig_header
) + 1;
1091 other_signature
= 0;
1093 else if (starts_with(line
, "gpgsig"))
1094 other_signature
= 1;
1095 else if (other_signature
&& line
[0] != ' ')
1096 other_signature
= 0;
1098 strbuf_add(signature
, sig
, next
- sig
);
1103 /* dump the whole remainder of the buffer */
1105 if (!other_signature
)
1106 strbuf_add(payload
, line
, next
- line
);
1111 return saw_signature
;
1114 int remove_signature(struct strbuf
*buf
)
1116 const char *line
= buf
->buf
;
1117 const char *tail
= buf
->buf
+ buf
->len
;
1118 int in_signature
= 0;
1122 } sigs
[2], *sigp
= &sigs
[0];
1124 const char *orig_buf
= buf
->buf
;
1126 memset(sigs
, 0, sizeof(sigs
));
1128 while (line
< tail
) {
1129 const char *next
= memchr(line
, '\n', tail
- line
);
1130 next
= next
? next
+ 1 : tail
;
1132 if (in_signature
&& line
[0] == ' ')
1134 else if (starts_with(line
, "gpgsig")) {
1136 for (i
= 1; i
< GIT_HASH_NALGOS
; i
++) {
1138 if (skip_prefix(line
, gpg_sig_headers
[i
], &p
) &&
1147 /* dump the whole remainder of the buffer */
1149 if (in_signature
&& sigp
- sigs
!= ARRAY_SIZE(sigs
))
1156 for (i
= ARRAY_SIZE(sigs
) - 1; i
>= 0; i
--)
1158 strbuf_remove(buf
, sigs
[i
].start
- orig_buf
, sigs
[i
].end
- sigs
[i
].start
);
1160 return sigs
[0].start
!= NULL
;
1163 static void handle_signed_tag(struct commit
*parent
, struct commit_extra_header
***tail
)
1165 struct merge_remote_desc
*desc
;
1166 struct commit_extra_header
*mergetag
;
1169 enum object_type type
;
1170 struct strbuf payload
= STRBUF_INIT
;
1171 struct strbuf signature
= STRBUF_INIT
;
1173 desc
= merge_remote_util(parent
);
1174 if (!desc
|| !desc
->obj
)
1176 buf
= read_object_file(&desc
->obj
->oid
, &type
, &size
);
1177 if (!buf
|| type
!= OBJ_TAG
)
1179 if (!parse_signature(buf
, size
, &payload
, &signature
))
1182 * We could verify this signature and either omit the tag when
1183 * it does not validate, but the integrator may not have the
1184 * public key of the signer of the tag being merged, while a
1185 * later auditor may have it while auditing, so let's not run
1186 * verify-signed-buffer here for now...
1188 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1189 * warn("warning: signed tag unverified.");
1191 CALLOC_ARRAY(mergetag
, 1);
1192 mergetag
->key
= xstrdup("mergetag");
1193 mergetag
->value
= buf
;
1194 mergetag
->len
= size
;
1197 *tail
= &mergetag
->next
;
1198 strbuf_release(&payload
);
1199 strbuf_release(&signature
);
1206 int check_commit_signature(const struct commit
*commit
, struct signature_check
*sigc
)
1208 struct strbuf payload
= STRBUF_INIT
;
1209 struct strbuf signature
= STRBUF_INIT
;
1214 if (parse_signed_commit(commit
, &payload
, &signature
, the_hash_algo
) <= 0)
1217 sigc
->payload_type
= SIGNATURE_PAYLOAD_COMMIT
;
1218 sigc
->payload
= strbuf_detach(&payload
, &sigc
->payload_len
);
1219 ret
= check_signature(sigc
, signature
.buf
, signature
.len
);
1222 strbuf_release(&payload
);
1223 strbuf_release(&signature
);
1228 void verify_merge_signature(struct commit
*commit
, int verbosity
,
1231 char hex
[GIT_MAX_HEXSZ
+ 1];
1232 struct signature_check signature_check
;
1234 memset(&signature_check
, 0, sizeof(signature_check
));
1236 ret
= check_commit_signature(commit
, &signature_check
);
1238 find_unique_abbrev_r(hex
, &commit
->object
.oid
, DEFAULT_ABBREV
);
1239 switch (signature_check
.result
) {
1241 if (ret
|| (check_trust
&& signature_check
.trust_level
< TRUST_MARGINAL
))
1242 die(_("Commit %s has an untrusted GPG signature, "
1243 "allegedly by %s."), hex
, signature_check
.signer
);
1246 die(_("Commit %s has a bad GPG signature "
1247 "allegedly by %s."), hex
, signature_check
.signer
);
1249 die(_("Commit %s does not have a GPG signature."), hex
);
1251 if (verbosity
>= 0 && signature_check
.result
== 'G')
1252 printf(_("Commit %s has a good GPG signature by %s\n"),
1253 hex
, signature_check
.signer
);
1255 signature_check_clear(&signature_check
);
1258 void append_merge_tag_headers(struct commit_list
*parents
,
1259 struct commit_extra_header
***tail
)
1262 struct commit
*parent
= parents
->item
;
1263 handle_signed_tag(parent
, tail
);
1264 parents
= parents
->next
;
1268 static void add_extra_header(struct strbuf
*buffer
,
1269 struct commit_extra_header
*extra
)
1271 strbuf_addstr(buffer
, extra
->key
);
1273 strbuf_add_lines(buffer
, " ", extra
->value
, extra
->len
);
1275 strbuf_addch(buffer
, '\n');
1278 struct commit_extra_header
*read_commit_extra_headers(struct commit
*commit
,
1279 const char **exclude
)
1281 struct commit_extra_header
*extra
= NULL
;
1283 const char *buffer
= get_commit_buffer(commit
, &size
);
1284 extra
= read_commit_extra_header_lines(buffer
, size
, exclude
);
1285 unuse_commit_buffer(commit
, buffer
);
1289 int for_each_mergetag(each_mergetag_fn fn
, struct commit
*commit
, void *data
)
1291 struct commit_extra_header
*extra
, *to_free
;
1294 to_free
= read_commit_extra_headers(commit
, NULL
);
1295 for (extra
= to_free
; !res
&& extra
; extra
= extra
->next
) {
1296 if (strcmp(extra
->key
, "mergetag"))
1297 continue; /* not a merge tag */
1298 res
= fn(commit
, extra
, data
);
1300 free_commit_extra_headers(to_free
);
1304 static inline int standard_header_field(const char *field
, size_t len
)
1306 return ((len
== 4 && !memcmp(field
, "tree", 4)) ||
1307 (len
== 6 && !memcmp(field
, "parent", 6)) ||
1308 (len
== 6 && !memcmp(field
, "author", 6)) ||
1309 (len
== 9 && !memcmp(field
, "committer", 9)) ||
1310 (len
== 8 && !memcmp(field
, "encoding", 8)));
1313 static int excluded_header_field(const char *field
, size_t len
, const char **exclude
)
1319 size_t xlen
= strlen(*exclude
);
1320 if (len
== xlen
&& !memcmp(field
, *exclude
, xlen
))
1327 static struct commit_extra_header
*read_commit_extra_header_lines(
1328 const char *buffer
, size_t size
,
1329 const char **exclude
)
1331 struct commit_extra_header
*extra
= NULL
, **tail
= &extra
, *it
= NULL
;
1332 const char *line
, *next
, *eof
, *eob
;
1333 struct strbuf buf
= STRBUF_INIT
;
1335 for (line
= buffer
, eob
= line
+ size
;
1336 line
< eob
&& *line
!= '\n';
1338 next
= memchr(line
, '\n', eob
- line
);
1339 next
= next
? next
+ 1 : eob
;
1343 strbuf_add(&buf
, line
+ 1, next
- (line
+ 1));
1347 it
->value
= strbuf_detach(&buf
, &it
->len
);
1351 eof
= memchr(line
, ' ', next
- line
);
1354 else if (standard_header_field(line
, eof
- line
) ||
1355 excluded_header_field(line
, eof
- line
, exclude
))
1358 CALLOC_ARRAY(it
, 1);
1359 it
->key
= xmemdupz(line
, eof
-line
);
1363 strbuf_add(&buf
, eof
+ 1, next
- (eof
+ 1));
1366 it
->value
= strbuf_detach(&buf
, &it
->len
);
1370 void free_commit_extra_headers(struct commit_extra_header
*extra
)
1373 struct commit_extra_header
*next
= extra
->next
;
1381 int commit_tree(const char *msg
, size_t msg_len
, const struct object_id
*tree
,
1382 struct commit_list
*parents
, struct object_id
*ret
,
1383 const char *author
, const char *sign_commit
)
1385 struct commit_extra_header
*extra
= NULL
, **tail
= &extra
;
1388 append_merge_tag_headers(parents
, &tail
);
1389 result
= commit_tree_extended(msg
, msg_len
, tree
, parents
, ret
, author
,
1390 NULL
, sign_commit
, extra
);
1391 free_commit_extra_headers(extra
);
1395 static int find_invalid_utf8(const char *buf
, int len
)
1398 static const unsigned int max_codepoint
[] = {
1399 0x7f, 0x7ff, 0xffff, 0x10ffff
1403 unsigned char c
= *buf
++;
1404 int bytes
, bad_offset
;
1405 unsigned int codepoint
;
1406 unsigned int min_val
, max_val
;
1411 /* Simple US-ASCII? No worries. */
1415 bad_offset
= offset
-1;
1418 * Count how many more high bits set: that's how
1419 * many more bytes this sequence should have.
1428 * Must be between 1 and 3 more bytes. Longer sequences result in
1429 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1431 if (bytes
< 1 || 3 < bytes
)
1434 /* Do we *have* that many bytes? */
1439 * Place the encoded bits at the bottom of the value and compute the
1442 codepoint
= (c
& 0x7f) >> bytes
;
1443 min_val
= max_codepoint
[bytes
-1] + 1;
1444 max_val
= max_codepoint
[bytes
];
1449 /* And verify that they are good continuation bytes */
1452 codepoint
|= *buf
& 0x3f;
1453 if ((*buf
++ & 0xc0) != 0x80)
1457 /* Reject codepoints that are out of range for the sequence length. */
1458 if (codepoint
< min_val
|| codepoint
> max_val
)
1460 /* Surrogates are only for UTF-16 and cannot be encoded in UTF-8. */
1461 if ((codepoint
& 0x1ff800) == 0xd800)
1463 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
1464 if ((codepoint
& 0xfffe) == 0xfffe)
1466 /* So are anything in the range U+FDD0..U+FDEF. */
1467 if (codepoint
>= 0xfdd0 && codepoint
<= 0xfdef)
1474 * This verifies that the buffer is in proper utf8 format.
1476 * If it isn't, it assumes any non-utf8 characters are Latin1,
1477 * and does the conversion.
1479 static int verify_utf8(struct strbuf
*buf
)
1487 unsigned char replace
[2];
1489 bad
= find_invalid_utf8(buf
->buf
+ pos
, buf
->len
- pos
);
1495 strbuf_remove(buf
, pos
, 1);
1497 /* We know 'c' must be in the range 128-255 */
1498 replace
[0] = 0xc0 + (c
>> 6);
1499 replace
[1] = 0x80 + (c
& 0x3f);
1500 strbuf_insert(buf
, pos
, replace
, 2);
1505 static const char commit_utf8_warn
[] =
1506 N_("Warning: commit message did not conform to UTF-8.\n"
1507 "You may want to amend it after fixing the message, or set the config\n"
1508 "variable i18n.commitencoding to the encoding your project uses.\n");
1510 int commit_tree_extended(const char *msg
, size_t msg_len
,
1511 const struct object_id
*tree
,
1512 struct commit_list
*parents
, struct object_id
*ret
,
1513 const char *author
, const char *committer
,
1514 const char *sign_commit
,
1515 struct commit_extra_header
*extra
)
1518 int encoding_is_utf8
;
1519 struct strbuf buffer
;
1521 assert_oid_type(tree
, OBJ_TREE
);
1523 if (memchr(msg
, '\0', msg_len
))
1524 return error("a NUL byte in commit log message not allowed.");
1526 /* Not having i18n.commitencoding is the same as having utf-8 */
1527 encoding_is_utf8
= is_encoding_utf8(git_commit_encoding
);
1529 strbuf_init(&buffer
, 8192); /* should avoid reallocs for the headers */
1530 strbuf_addf(&buffer
, "tree %s\n", oid_to_hex(tree
));
1533 * NOTE! This ordering means that the same exact tree merged with a
1534 * different order of parents will be a _different_ changeset even
1535 * if everything else stays the same.
1538 struct commit
*parent
= pop_commit(&parents
);
1539 strbuf_addf(&buffer
, "parent %s\n",
1540 oid_to_hex(&parent
->object
.oid
));
1543 /* Person/date information */
1545 author
= git_author_info(IDENT_STRICT
);
1546 strbuf_addf(&buffer
, "author %s\n", author
);
1548 committer
= git_committer_info(IDENT_STRICT
);
1549 strbuf_addf(&buffer
, "committer %s\n", committer
);
1550 if (!encoding_is_utf8
)
1551 strbuf_addf(&buffer
, "encoding %s\n", git_commit_encoding
);
1554 add_extra_header(&buffer
, extra
);
1555 extra
= extra
->next
;
1557 strbuf_addch(&buffer
, '\n');
1559 /* And add the comment */
1560 strbuf_add(&buffer
, msg
, msg_len
);
1562 /* And check the encoding */
1563 if (encoding_is_utf8
&& !verify_utf8(&buffer
))
1564 fprintf(stderr
, _(commit_utf8_warn
));
1566 if (sign_commit
&& sign_with_header(&buffer
, sign_commit
)) {
1571 result
= write_object_file(buffer
.buf
, buffer
.len
, commit_type
, ret
);
1573 strbuf_release(&buffer
);
1577 define_commit_slab(merge_desc_slab
, struct merge_remote_desc
*);
1578 static struct merge_desc_slab merge_desc_slab
= COMMIT_SLAB_INIT(1, merge_desc_slab
);
1580 struct merge_remote_desc
*merge_remote_util(struct commit
*commit
)
1582 return *merge_desc_slab_at(&merge_desc_slab
, commit
);
1585 void set_merge_remote_desc(struct commit
*commit
,
1586 const char *name
, struct object
*obj
)
1588 struct merge_remote_desc
*desc
;
1589 FLEX_ALLOC_STR(desc
, name
, name
);
1591 *merge_desc_slab_at(&merge_desc_slab
, commit
) = desc
;
1594 struct commit
*get_merge_parent(const char *name
)
1597 struct commit
*commit
;
1598 struct object_id oid
;
1599 if (get_oid(name
, &oid
))
1601 obj
= parse_object(the_repository
, &oid
);
1602 commit
= (struct commit
*)peel_to_type(name
, 0, obj
, OBJ_COMMIT
);
1603 if (commit
&& !merge_remote_util(commit
))
1604 set_merge_remote_desc(commit
, name
, obj
);
1609 * Append a commit to the end of the commit_list.
1611 * next starts by pointing to the variable that holds the head of an
1612 * empty commit_list, and is updated to point to the "next" field of
1613 * the last item on the list as new commits are appended.
1617 * struct commit_list *list;
1618 * struct commit_list **next = &list;
1620 * next = commit_list_append(c1, next);
1621 * next = commit_list_append(c2, next);
1622 * assert(commit_list_count(list) == 2);
1625 struct commit_list
**commit_list_append(struct commit
*commit
,
1626 struct commit_list
**next
)
1628 struct commit_list
*new_commit
= xmalloc(sizeof(struct commit_list
));
1629 new_commit
->item
= commit
;
1631 new_commit
->next
= NULL
;
1632 return &new_commit
->next
;
1635 const char *find_header_mem(const char *msg
, size_t len
,
1636 const char *key
, size_t *out_len
)
1638 int key_len
= strlen(key
);
1639 const char *line
= msg
;
1642 * NEEDSWORK: It's possible for strchrnul() to scan beyond the range
1643 * given by len. However, current callers are safe because they compute
1644 * len by scanning a NUL-terminated block of memory starting at msg.
1645 * Nonetheless, it would be better to ensure the function does not look
1646 * at msg beyond the len provided by the caller.
1648 while (line
&& line
< msg
+ len
) {
1649 const char *eol
= strchrnul(line
, '\n');
1654 if (eol
- line
> key_len
&&
1655 !strncmp(line
, key
, key_len
) &&
1656 line
[key_len
] == ' ') {
1657 *out_len
= eol
- line
- key_len
- 1;
1658 return line
+ key_len
+ 1;
1660 line
= *eol
? eol
+ 1 : NULL
;
1665 const char *find_commit_header(const char *msg
, const char *key
, size_t *out_len
)
1667 return find_header_mem(msg
, strlen(msg
), key
, out_len
);
1670 * Inspect the given string and determine the true "end" of the log message, in
1671 * order to find where to put a new Signed-off-by trailer. Ignored are
1672 * trailing comment lines and blank lines. To support "git commit -s
1673 * --amend" on an existing commit, we also ignore "Conflicts:". To
1674 * support "git commit -v", we truncate at cut lines.
1676 * Returns the number of bytes from the tail to ignore, to be fed as
1677 * the second parameter to append_signoff().
1679 size_t ignore_non_trailer(const char *buf
, size_t len
)
1683 int in_old_conflicts_block
= 0;
1684 size_t cutoff
= wt_status_locate_end(buf
, len
);
1686 while (bol
< cutoff
) {
1687 const char *next_line
= memchr(buf
+ bol
, '\n', len
- bol
);
1690 next_line
= buf
+ len
;
1694 if (buf
[bol
] == comment_line_char
|| buf
[bol
] == '\n') {
1695 /* is this the first of the run of comments? */
1698 /* otherwise, it is just continuing */
1699 } else if (starts_with(buf
+ bol
, "Conflicts:\n")) {
1700 in_old_conflicts_block
= 1;
1703 } else if (in_old_conflicts_block
&& buf
[bol
] == '\t') {
1704 ; /* a pathname in the conflicts block */
1706 /* the previous was not trailing comment */
1708 in_old_conflicts_block
= 0;
1710 bol
= next_line
- buf
;
1712 return boc
? len
- boc
: len
- cutoff
;
1715 int run_commit_hook(int editor_is_used
, const char *index_file
,
1716 const char *name
, ...)
1718 struct run_hooks_opt opt
= RUN_HOOKS_OPT_INIT
;
1722 strvec_pushf(&opt
.env
, "GIT_INDEX_FILE=%s", index_file
);
1725 * Let the hook know that no editor will be launched.
1727 if (!editor_is_used
)
1728 strvec_push(&opt
.env
, "GIT_EDITOR=:");
1730 va_start(args
, name
);
1731 while ((arg
= va_arg(args
, const char *)))
1732 strvec_push(&opt
.args
, arg
);
1735 return run_hooks_opt(name
, &opt
);