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 void reset_commit_grafts(struct repository
*r
)
256 for (i
= 0; i
< r
->parsed_objects
->grafts_nr
; i
++)
257 free(r
->parsed_objects
->grafts
[i
]);
258 r
->parsed_objects
->grafts_nr
= 0;
259 r
->parsed_objects
->commit_graft_prepared
= 0;
262 struct commit_buffer
{
266 define_commit_slab(buffer_slab
, struct commit_buffer
);
268 struct buffer_slab
*allocate_commit_buffer_slab(void)
270 struct buffer_slab
*bs
= xmalloc(sizeof(*bs
));
271 init_buffer_slab(bs
);
275 void free_commit_buffer_slab(struct buffer_slab
*bs
)
277 clear_buffer_slab(bs
);
281 void set_commit_buffer(struct repository
*r
, struct commit
*commit
, void *buffer
, unsigned long size
)
283 struct commit_buffer
*v
= buffer_slab_at(
284 r
->parsed_objects
->buffer_slab
, commit
);
289 const void *get_cached_commit_buffer(struct repository
*r
, const struct commit
*commit
, unsigned long *sizep
)
291 struct commit_buffer
*v
= buffer_slab_peek(
292 r
->parsed_objects
->buffer_slab
, commit
);
303 const void *repo_get_commit_buffer(struct repository
*r
,
304 const struct commit
*commit
,
305 unsigned long *sizep
)
307 const void *ret
= get_cached_commit_buffer(r
, commit
, sizep
);
309 enum object_type type
;
311 ret
= repo_read_object_file(r
, &commit
->object
.oid
, &type
, &size
);
313 die("cannot read commit object %s",
314 oid_to_hex(&commit
->object
.oid
));
315 if (type
!= OBJ_COMMIT
)
316 die("expected commit for %s, got %s",
317 oid_to_hex(&commit
->object
.oid
), type_name(type
));
324 void repo_unuse_commit_buffer(struct repository
*r
,
325 const struct commit
*commit
,
328 struct commit_buffer
*v
= buffer_slab_peek(
329 r
->parsed_objects
->buffer_slab
, commit
);
330 if (!(v
&& v
->buffer
== buffer
))
331 free((void *)buffer
);
334 void free_commit_buffer(struct parsed_object_pool
*pool
, struct commit
*commit
)
336 struct commit_buffer
*v
= buffer_slab_peek(
337 pool
->buffer_slab
, commit
);
339 FREE_AND_NULL(v
->buffer
);
344 static inline void set_commit_tree(struct commit
*c
, struct tree
*t
)
349 struct tree
*repo_get_commit_tree(struct repository
*r
,
350 const struct commit
*commit
)
352 if (commit
->maybe_tree
|| !commit
->object
.parsed
)
353 return commit
->maybe_tree
;
355 if (commit_graph_position(commit
) != COMMIT_NOT_FROM_GRAPH
)
356 return get_commit_tree_in_graph(r
, commit
);
361 struct object_id
*get_commit_tree_oid(const struct commit
*commit
)
363 struct tree
*tree
= get_commit_tree(commit
);
364 return tree
? &tree
->object
.oid
: NULL
;
367 void release_commit_memory(struct parsed_object_pool
*pool
, struct commit
*c
)
369 set_commit_tree(c
, NULL
);
370 free_commit_buffer(pool
, c
);
372 free_commit_list(c
->parents
);
374 c
->object
.parsed
= 0;
377 const void *detach_commit_buffer(struct commit
*commit
, unsigned long *sizep
)
379 struct commit_buffer
*v
= buffer_slab_peek(
380 the_repository
->parsed_objects
->buffer_slab
, commit
);
397 int parse_commit_buffer(struct repository
*r
, struct commit
*item
, const void *buffer
, unsigned long size
, int check_graph
)
399 const char *tail
= buffer
;
400 const char *bufptr
= buffer
;
401 struct object_id parent
;
402 struct commit_list
**pptr
;
403 struct commit_graft
*graft
;
404 const int tree_entry_len
= the_hash_algo
->hexsz
+ 5;
405 const int parent_entry_len
= the_hash_algo
->hexsz
+ 7;
408 if (item
->object
.parsed
)
413 * Presumably this is leftover from an earlier failed parse;
414 * clear it out in preparation for us re-parsing (we'll hit the
415 * same error, but that's good, since it lets our caller know
416 * the result cannot be trusted.
418 free_commit_list(item
->parents
);
419 item
->parents
= NULL
;
423 if (tail
<= bufptr
+ tree_entry_len
+ 1 || memcmp(bufptr
, "tree ", 5) ||
424 bufptr
[tree_entry_len
] != '\n')
425 return error("bogus commit object %s", oid_to_hex(&item
->object
.oid
));
426 if (get_oid_hex(bufptr
+ 5, &parent
) < 0)
427 return error("bad tree pointer in commit %s",
428 oid_to_hex(&item
->object
.oid
));
429 tree
= lookup_tree(r
, &parent
);
431 return error("bad tree pointer %s in commit %s",
433 oid_to_hex(&item
->object
.oid
));
434 set_commit_tree(item
, tree
);
435 bufptr
+= tree_entry_len
+ 1; /* "tree " + "hex sha1" + "\n" */
436 pptr
= &item
->parents
;
438 graft
= lookup_commit_graft(r
, &item
->object
.oid
);
440 r
->parsed_objects
->substituted_parent
= 1;
441 while (bufptr
+ parent_entry_len
< tail
&& !memcmp(bufptr
, "parent ", 7)) {
442 struct commit
*new_parent
;
444 if (tail
<= bufptr
+ parent_entry_len
+ 1 ||
445 get_oid_hex(bufptr
+ 7, &parent
) ||
446 bufptr
[parent_entry_len
] != '\n')
447 return error("bad parents in commit %s", oid_to_hex(&item
->object
.oid
));
448 bufptr
+= parent_entry_len
+ 1;
450 * The clone is shallow if nr_parent < 0, and we must
451 * not traverse its real parents even when we unhide them.
453 if (graft
&& (graft
->nr_parent
< 0 || grafts_replace_parents
))
455 new_parent
= lookup_commit(r
, &parent
);
457 return error("bad parent %s in commit %s",
459 oid_to_hex(&item
->object
.oid
));
460 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
464 struct commit
*new_parent
;
465 for (i
= 0; i
< graft
->nr_parent
; i
++) {
466 new_parent
= lookup_commit(r
,
469 return error("bad graft parent %s in commit %s",
470 oid_to_hex(&graft
->parent
[i
]),
471 oid_to_hex(&item
->object
.oid
));
472 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
475 item
->date
= parse_commit_date(bufptr
, tail
);
478 load_commit_graph_info(r
, item
);
480 item
->object
.parsed
= 1;
484 int repo_parse_commit_internal(struct repository
*r
,
486 int quiet_on_missing
,
487 int use_commit_graph
)
489 enum object_type type
;
496 if (item
->object
.parsed
)
498 if (use_commit_graph
&& parse_commit_in_graph(r
, item
))
500 buffer
= repo_read_object_file(r
, &item
->object
.oid
, &type
, &size
);
502 return quiet_on_missing
? -1 :
503 error("Could not read %s",
504 oid_to_hex(&item
->object
.oid
));
505 if (type
!= OBJ_COMMIT
) {
507 return error("Object %s not a commit",
508 oid_to_hex(&item
->object
.oid
));
511 ret
= parse_commit_buffer(r
, item
, buffer
, size
, 0);
512 if (save_commit_buffer
&& !ret
) {
513 set_commit_buffer(r
, item
, buffer
, size
);
520 int repo_parse_commit_gently(struct repository
*r
,
521 struct commit
*item
, int quiet_on_missing
)
523 return repo_parse_commit_internal(r
, item
, quiet_on_missing
, 1);
526 void parse_commit_or_die(struct commit
*item
)
528 if (parse_commit(item
))
529 die("unable to parse commit %s",
530 item
? oid_to_hex(&item
->object
.oid
) : "(null)");
533 int find_commit_subject(const char *commit_buffer
, const char **subject
)
536 const char *p
= commit_buffer
;
538 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
541 p
= skip_blank_lines(p
+ 2);
542 eol
= strchrnul(p
, '\n');
551 size_t commit_subject_length(const char *body
)
553 const char *p
= body
;
555 const char *next
= skip_blank_lines(p
);
558 p
= strchrnul(p
, '\n');
565 struct commit_list
*commit_list_insert(struct commit
*item
, struct commit_list
**list_p
)
567 struct commit_list
*new_list
= xmalloc(sizeof(struct commit_list
));
568 new_list
->item
= item
;
569 new_list
->next
= *list_p
;
574 int commit_list_contains(struct commit
*item
, struct commit_list
*list
)
577 if (list
->item
== item
)
585 unsigned commit_list_count(const struct commit_list
*l
)
588 for (; l
; l
= l
->next
)
593 struct commit_list
*copy_commit_list(struct commit_list
*list
)
595 struct commit_list
*head
= NULL
;
596 struct commit_list
**pp
= &head
;
598 pp
= commit_list_append(list
->item
, pp
);
604 struct commit_list
*reverse_commit_list(struct commit_list
*list
)
606 struct commit_list
*next
= NULL
, *current
, *backup
;
607 for (current
= list
; current
; current
= backup
) {
608 backup
= current
->next
;
609 current
->next
= next
;
615 void free_commit_list(struct commit_list
*list
)
621 struct commit_list
* commit_list_insert_by_date(struct commit
*item
, struct commit_list
**list
)
623 struct commit_list
**pp
= list
;
624 struct commit_list
*p
;
625 while ((p
= *pp
) != NULL
) {
626 if (p
->item
->date
< item
->date
) {
631 return commit_list_insert(item
, pp
);
634 static int commit_list_compare_by_date(const void *a
, const void *b
)
636 timestamp_t a_date
= ((const struct commit_list
*)a
)->item
->date
;
637 timestamp_t b_date
= ((const struct commit_list
*)b
)->item
->date
;
645 static void *commit_list_get_next(const void *a
)
647 return ((const struct commit_list
*)a
)->next
;
650 static void commit_list_set_next(void *a
, void *next
)
652 ((struct commit_list
*)a
)->next
= next
;
655 void commit_list_sort_by_date(struct commit_list
**list
)
657 *list
= llist_mergesort(*list
, commit_list_get_next
, commit_list_set_next
,
658 commit_list_compare_by_date
);
661 struct commit
*pop_most_recent_commit(struct commit_list
**list
,
664 struct commit
*ret
= pop_commit(list
);
665 struct commit_list
*parents
= ret
->parents
;
668 struct commit
*commit
= parents
->item
;
669 if (!parse_commit(commit
) && !(commit
->object
.flags
& mark
)) {
670 commit
->object
.flags
|= mark
;
671 commit_list_insert_by_date(commit
, list
);
673 parents
= parents
->next
;
678 static void clear_commit_marks_1(struct commit_list
**plist
,
679 struct commit
*commit
, unsigned int mark
)
682 struct commit_list
*parents
;
684 if (!(mark
& commit
->object
.flags
))
687 commit
->object
.flags
&= ~mark
;
689 parents
= commit
->parents
;
693 while ((parents
= parents
->next
))
694 commit_list_insert(parents
->item
, plist
);
696 commit
= commit
->parents
->item
;
700 void clear_commit_marks_many(int nr
, struct commit
**commit
, unsigned int mark
)
702 struct commit_list
*list
= NULL
;
705 clear_commit_marks_1(&list
, *commit
, mark
);
709 clear_commit_marks_1(&list
, pop_commit(&list
), mark
);
712 void clear_commit_marks(struct commit
*commit
, unsigned int mark
)
714 clear_commit_marks_many(1, &commit
, mark
);
717 struct commit
*pop_commit(struct commit_list
**stack
)
719 struct commit_list
*top
= *stack
;
720 struct commit
*item
= top
? top
->item
: NULL
;
730 * Topological sort support
733 /* count number of children that have not been emitted */
734 define_commit_slab(indegree_slab
, int);
736 define_commit_slab(author_date_slab
, timestamp_t
);
738 void record_author_date(struct author_date_slab
*author_date
,
739 struct commit
*commit
)
741 const char *buffer
= get_commit_buffer(commit
, NULL
);
742 struct ident_split ident
;
743 const char *ident_line
;
748 ident_line
= find_commit_header(buffer
, "author", &ident_len
);
750 goto fail_exit
; /* no author line */
751 if (split_ident_line(&ident
, ident_line
, ident_len
) ||
752 !ident
.date_begin
|| !ident
.date_end
)
753 goto fail_exit
; /* malformed "author" line */
755 date
= parse_timestamp(ident
.date_begin
, &date_end
, 10);
756 if (date_end
!= ident
.date_end
)
757 goto fail_exit
; /* malformed date */
758 *(author_date_slab_at(author_date
, commit
)) = date
;
761 unuse_commit_buffer(commit
, buffer
);
764 int compare_commits_by_author_date(const void *a_
, const void *b_
,
767 const struct commit
*a
= a_
, *b
= b_
;
768 struct author_date_slab
*author_date
= cb_data
;
769 timestamp_t a_date
= *(author_date_slab_at(author_date
, a
));
770 timestamp_t b_date
= *(author_date_slab_at(author_date
, b
));
772 /* newer commits with larger date first */
775 else if (a_date
> b_date
)
780 int compare_commits_by_gen_then_commit_date(const void *a_
, const void *b_
, void *unused
)
782 const struct commit
*a
= a_
, *b
= b_
;
783 const timestamp_t generation_a
= commit_graph_generation(a
),
784 generation_b
= commit_graph_generation(b
);
786 /* newer commits first */
787 if (generation_a
< generation_b
)
789 else if (generation_a
> generation_b
)
792 /* use date as a heuristic when generations are equal */
793 if (a
->date
< b
->date
)
795 else if (a
->date
> b
->date
)
800 int compare_commits_by_commit_date(const void *a_
, const void *b_
, void *unused
)
802 const struct commit
*a
= a_
, *b
= b_
;
803 /* newer commits with larger date first */
804 if (a
->date
< b
->date
)
806 else if (a
->date
> b
->date
)
812 * Performs an in-place topological sort on the list supplied.
814 void sort_in_topological_order(struct commit_list
**list
, enum rev_sort_order sort_order
)
816 struct commit_list
*next
, *orig
= *list
;
817 struct commit_list
**pptr
;
818 struct indegree_slab indegree
;
819 struct prio_queue queue
;
820 struct commit
*commit
;
821 struct author_date_slab author_date
;
827 init_indegree_slab(&indegree
);
828 memset(&queue
, '\0', sizeof(queue
));
830 switch (sort_order
) {
831 default: /* REV_SORT_IN_GRAPH_ORDER */
832 queue
.compare
= NULL
;
834 case REV_SORT_BY_COMMIT_DATE
:
835 queue
.compare
= compare_commits_by_commit_date
;
837 case REV_SORT_BY_AUTHOR_DATE
:
838 init_author_date_slab(&author_date
);
839 queue
.compare
= compare_commits_by_author_date
;
840 queue
.cb_data
= &author_date
;
844 /* Mark them and clear the indegree */
845 for (next
= orig
; next
; next
= next
->next
) {
846 struct commit
*commit
= next
->item
;
847 *(indegree_slab_at(&indegree
, commit
)) = 1;
848 /* also record the author dates, if needed */
849 if (sort_order
== REV_SORT_BY_AUTHOR_DATE
)
850 record_author_date(&author_date
, commit
);
853 /* update the indegree */
854 for (next
= orig
; next
; next
= next
->next
) {
855 struct commit_list
*parents
= next
->item
->parents
;
857 struct commit
*parent
= parents
->item
;
858 int *pi
= indegree_slab_at(&indegree
, parent
);
862 parents
= parents
->next
;
869 * tips are nodes not reachable from any other node in the list
871 * the tips serve as a starting set for the work queue.
873 for (next
= orig
; next
; next
= next
->next
) {
874 struct commit
*commit
= next
->item
;
876 if (*(indegree_slab_at(&indegree
, commit
)) == 1)
877 prio_queue_put(&queue
, commit
);
881 * This is unfortunate; the initial tips need to be shown
882 * in the order given from the revision traversal machinery.
884 if (sort_order
== REV_SORT_IN_GRAPH_ORDER
)
885 prio_queue_reverse(&queue
);
887 /* We no longer need the commit list */
888 free_commit_list(orig
);
892 while ((commit
= prio_queue_get(&queue
)) != NULL
) {
893 struct commit_list
*parents
;
895 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
896 struct commit
*parent
= parents
->item
;
897 int *pi
= indegree_slab_at(&indegree
, parent
);
903 * parents are only enqueued for emission
904 * when all their children have been emitted thereby
905 * guaranteeing topological order.
908 prio_queue_put(&queue
, parent
);
911 * all children of commit have already been
912 * emitted. we can emit it now.
914 *(indegree_slab_at(&indegree
, commit
)) = 0;
916 pptr
= &commit_list_insert(commit
, pptr
)->next
;
919 clear_indegree_slab(&indegree
);
920 clear_prio_queue(&queue
);
921 if (sort_order
== REV_SORT_BY_AUTHOR_DATE
)
922 clear_author_date_slab(&author_date
);
926 struct commit
**commit
;
929 unsigned int initial
: 1;
932 static void add_one_commit(struct object_id
*oid
, struct rev_collect
*revs
)
934 struct commit
*commit
;
936 if (is_null_oid(oid
))
939 commit
= lookup_commit(the_repository
, oid
);
941 (commit
->object
.flags
& TMP_MARK
) ||
942 parse_commit(commit
))
945 ALLOC_GROW(revs
->commit
, revs
->nr
+ 1, revs
->alloc
);
946 revs
->commit
[revs
->nr
++] = commit
;
947 commit
->object
.flags
|= TMP_MARK
;
950 static int collect_one_reflog_ent(struct object_id
*ooid
, struct object_id
*noid
,
951 const char *ident
, timestamp_t timestamp
,
952 int tz
, const char *message
, void *cbdata
)
954 struct rev_collect
*revs
= cbdata
;
958 add_one_commit(ooid
, revs
);
960 add_one_commit(noid
, revs
);
964 struct commit
*get_fork_point(const char *refname
, struct commit
*commit
)
966 struct object_id oid
;
967 struct rev_collect revs
;
968 struct commit_list
*bases
;
970 struct commit
*ret
= NULL
;
973 switch (dwim_ref(refname
, strlen(refname
), &oid
, &full_refname
, 0)) {
975 die("No such ref: '%s'", refname
);
979 die("Ambiguous refname: '%s'", refname
);
982 memset(&revs
, 0, sizeof(revs
));
984 for_each_reflog_ent(full_refname
, collect_one_reflog_ent
, &revs
);
987 add_one_commit(&oid
, &revs
);
989 for (i
= 0; i
< revs
.nr
; i
++)
990 revs
.commit
[i
]->object
.flags
&= ~TMP_MARK
;
992 bases
= get_merge_bases_many(commit
, revs
.nr
, revs
.commit
);
995 * There should be one and only one merge base, when we found
996 * a common ancestor among reflog entries.
998 if (!bases
|| bases
->next
)
1001 /* And the found one must be one of the reflog entries */
1002 for (i
= 0; i
< revs
.nr
; i
++)
1003 if (&bases
->item
->object
== &revs
.commit
[i
]->object
)
1006 goto cleanup_return
;
1011 free_commit_list(bases
);
1017 * Indexed by hash algorithm identifier.
1019 static const char *gpg_sig_headers
[] = {
1025 int sign_with_header(struct strbuf
*buf
, const char *keyid
)
1027 struct strbuf sig
= STRBUF_INIT
;
1028 int inspos
, copypos
;
1030 const char *gpg_sig_header
= gpg_sig_headers
[hash_algo_by_ptr(the_hash_algo
)];
1031 int gpg_sig_header_len
= strlen(gpg_sig_header
);
1033 /* find the end of the header */
1034 eoh
= strstr(buf
->buf
, "\n\n");
1038 inspos
= eoh
- buf
->buf
+ 1;
1040 if (!keyid
|| !*keyid
)
1041 keyid
= get_signing_key();
1042 if (sign_buffer(buf
, &sig
, keyid
)) {
1043 strbuf_release(&sig
);
1047 for (copypos
= 0; sig
.buf
[copypos
]; ) {
1048 const char *bol
= sig
.buf
+ copypos
;
1049 const char *eol
= strchrnul(bol
, '\n');
1050 int len
= (eol
- bol
) + !!*eol
;
1053 strbuf_insert(buf
, inspos
, gpg_sig_header
, gpg_sig_header_len
);
1054 inspos
+= gpg_sig_header_len
;
1056 strbuf_insertstr(buf
, inspos
++, " ");
1057 strbuf_insert(buf
, inspos
, bol
, len
);
1061 strbuf_release(&sig
);
1067 int parse_signed_commit(const struct commit
*commit
,
1068 struct strbuf
*payload
, struct strbuf
*signature
,
1069 const struct git_hash_algo
*algop
)
1072 const char *buffer
= get_commit_buffer(commit
, &size
);
1073 int ret
= parse_buffer_signed_by_header(buffer
, size
, payload
, signature
, algop
);
1075 unuse_commit_buffer(commit
, buffer
);
1079 int parse_buffer_signed_by_header(const char *buffer
,
1081 struct strbuf
*payload
,
1082 struct strbuf
*signature
,
1083 const struct git_hash_algo
*algop
)
1085 int in_signature
= 0, saw_signature
= 0, other_signature
= 0;
1086 const char *line
, *tail
, *p
;
1087 const char *gpg_sig_header
= gpg_sig_headers
[hash_algo_by_ptr(algop
)];
1090 tail
= buffer
+ size
;
1091 while (line
< tail
) {
1092 const char *sig
= NULL
;
1093 const char *next
= memchr(line
, '\n', tail
- line
);
1095 next
= next
? next
+ 1 : tail
;
1096 if (in_signature
&& line
[0] == ' ')
1098 else if (skip_prefix(line
, gpg_sig_header
, &p
) &&
1100 sig
= line
+ strlen(gpg_sig_header
) + 1;
1101 other_signature
= 0;
1103 else if (starts_with(line
, "gpgsig"))
1104 other_signature
= 1;
1105 else if (other_signature
&& line
[0] != ' ')
1106 other_signature
= 0;
1108 strbuf_add(signature
, sig
, next
- sig
);
1113 /* dump the whole remainder of the buffer */
1115 if (!other_signature
)
1116 strbuf_add(payload
, line
, next
- line
);
1121 return saw_signature
;
1124 int remove_signature(struct strbuf
*buf
)
1126 const char *line
= buf
->buf
;
1127 const char *tail
= buf
->buf
+ buf
->len
;
1128 int in_signature
= 0;
1132 } sigs
[2], *sigp
= &sigs
[0];
1134 const char *orig_buf
= buf
->buf
;
1136 memset(sigs
, 0, sizeof(sigs
));
1138 while (line
< tail
) {
1139 const char *next
= memchr(line
, '\n', tail
- line
);
1140 next
= next
? next
+ 1 : tail
;
1142 if (in_signature
&& line
[0] == ' ')
1144 else if (starts_with(line
, "gpgsig")) {
1146 for (i
= 1; i
< GIT_HASH_NALGOS
; i
++) {
1148 if (skip_prefix(line
, gpg_sig_headers
[i
], &p
) &&
1157 /* dump the whole remainder of the buffer */
1159 if (in_signature
&& sigp
- sigs
!= ARRAY_SIZE(sigs
))
1166 for (i
= ARRAY_SIZE(sigs
) - 1; i
>= 0; i
--)
1168 strbuf_remove(buf
, sigs
[i
].start
- orig_buf
, sigs
[i
].end
- sigs
[i
].start
);
1170 return sigs
[0].start
!= NULL
;
1173 static void handle_signed_tag(struct commit
*parent
, struct commit_extra_header
***tail
)
1175 struct merge_remote_desc
*desc
;
1176 struct commit_extra_header
*mergetag
;
1179 enum object_type type
;
1180 struct strbuf payload
= STRBUF_INIT
;
1181 struct strbuf signature
= STRBUF_INIT
;
1183 desc
= merge_remote_util(parent
);
1184 if (!desc
|| !desc
->obj
)
1186 buf
= read_object_file(&desc
->obj
->oid
, &type
, &size
);
1187 if (!buf
|| type
!= OBJ_TAG
)
1189 if (!parse_signature(buf
, size
, &payload
, &signature
))
1192 * We could verify this signature and either omit the tag when
1193 * it does not validate, but the integrator may not have the
1194 * public key of the signer of the tag being merged, while a
1195 * later auditor may have it while auditing, so let's not run
1196 * verify-signed-buffer here for now...
1198 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1199 * warn("warning: signed tag unverified.");
1201 CALLOC_ARRAY(mergetag
, 1);
1202 mergetag
->key
= xstrdup("mergetag");
1203 mergetag
->value
= buf
;
1204 mergetag
->len
= size
;
1207 *tail
= &mergetag
->next
;
1208 strbuf_release(&payload
);
1209 strbuf_release(&signature
);
1216 int check_commit_signature(const struct commit
*commit
, struct signature_check
*sigc
)
1218 struct strbuf payload
= STRBUF_INIT
;
1219 struct strbuf signature
= STRBUF_INIT
;
1224 if (parse_signed_commit(commit
, &payload
, &signature
, the_hash_algo
) <= 0)
1227 sigc
->payload_type
= SIGNATURE_PAYLOAD_COMMIT
;
1228 sigc
->payload
= strbuf_detach(&payload
, &sigc
->payload_len
);
1229 ret
= check_signature(sigc
, signature
.buf
, signature
.len
);
1232 strbuf_release(&payload
);
1233 strbuf_release(&signature
);
1238 void verify_merge_signature(struct commit
*commit
, int verbosity
,
1241 char hex
[GIT_MAX_HEXSZ
+ 1];
1242 struct signature_check signature_check
;
1244 memset(&signature_check
, 0, sizeof(signature_check
));
1246 ret
= check_commit_signature(commit
, &signature_check
);
1248 find_unique_abbrev_r(hex
, &commit
->object
.oid
, DEFAULT_ABBREV
);
1249 switch (signature_check
.result
) {
1251 if (ret
|| (check_trust
&& signature_check
.trust_level
< TRUST_MARGINAL
))
1252 die(_("Commit %s has an untrusted GPG signature, "
1253 "allegedly by %s."), hex
, signature_check
.signer
);
1256 die(_("Commit %s has a bad GPG signature "
1257 "allegedly by %s."), hex
, signature_check
.signer
);
1259 die(_("Commit %s does not have a GPG signature."), hex
);
1261 if (verbosity
>= 0 && signature_check
.result
== 'G')
1262 printf(_("Commit %s has a good GPG signature by %s\n"),
1263 hex
, signature_check
.signer
);
1265 signature_check_clear(&signature_check
);
1268 void append_merge_tag_headers(struct commit_list
*parents
,
1269 struct commit_extra_header
***tail
)
1272 struct commit
*parent
= parents
->item
;
1273 handle_signed_tag(parent
, tail
);
1274 parents
= parents
->next
;
1278 static void add_extra_header(struct strbuf
*buffer
,
1279 struct commit_extra_header
*extra
)
1281 strbuf_addstr(buffer
, extra
->key
);
1283 strbuf_add_lines(buffer
, " ", extra
->value
, extra
->len
);
1285 strbuf_addch(buffer
, '\n');
1288 struct commit_extra_header
*read_commit_extra_headers(struct commit
*commit
,
1289 const char **exclude
)
1291 struct commit_extra_header
*extra
= NULL
;
1293 const char *buffer
= get_commit_buffer(commit
, &size
);
1294 extra
= read_commit_extra_header_lines(buffer
, size
, exclude
);
1295 unuse_commit_buffer(commit
, buffer
);
1299 int for_each_mergetag(each_mergetag_fn fn
, struct commit
*commit
, void *data
)
1301 struct commit_extra_header
*extra
, *to_free
;
1304 to_free
= read_commit_extra_headers(commit
, NULL
);
1305 for (extra
= to_free
; !res
&& extra
; extra
= extra
->next
) {
1306 if (strcmp(extra
->key
, "mergetag"))
1307 continue; /* not a merge tag */
1308 res
= fn(commit
, extra
, data
);
1310 free_commit_extra_headers(to_free
);
1314 static inline int standard_header_field(const char *field
, size_t len
)
1316 return ((len
== 4 && !memcmp(field
, "tree", 4)) ||
1317 (len
== 6 && !memcmp(field
, "parent", 6)) ||
1318 (len
== 6 && !memcmp(field
, "author", 6)) ||
1319 (len
== 9 && !memcmp(field
, "committer", 9)) ||
1320 (len
== 8 && !memcmp(field
, "encoding", 8)));
1323 static int excluded_header_field(const char *field
, size_t len
, const char **exclude
)
1329 size_t xlen
= strlen(*exclude
);
1330 if (len
== xlen
&& !memcmp(field
, *exclude
, xlen
))
1337 static struct commit_extra_header
*read_commit_extra_header_lines(
1338 const char *buffer
, size_t size
,
1339 const char **exclude
)
1341 struct commit_extra_header
*extra
= NULL
, **tail
= &extra
, *it
= NULL
;
1342 const char *line
, *next
, *eof
, *eob
;
1343 struct strbuf buf
= STRBUF_INIT
;
1345 for (line
= buffer
, eob
= line
+ size
;
1346 line
< eob
&& *line
!= '\n';
1348 next
= memchr(line
, '\n', eob
- line
);
1349 next
= next
? next
+ 1 : eob
;
1353 strbuf_add(&buf
, line
+ 1, next
- (line
+ 1));
1357 it
->value
= strbuf_detach(&buf
, &it
->len
);
1361 eof
= memchr(line
, ' ', next
- line
);
1364 else if (standard_header_field(line
, eof
- line
) ||
1365 excluded_header_field(line
, eof
- line
, exclude
))
1368 CALLOC_ARRAY(it
, 1);
1369 it
->key
= xmemdupz(line
, eof
-line
);
1373 strbuf_add(&buf
, eof
+ 1, next
- (eof
+ 1));
1376 it
->value
= strbuf_detach(&buf
, &it
->len
);
1380 void free_commit_extra_headers(struct commit_extra_header
*extra
)
1383 struct commit_extra_header
*next
= extra
->next
;
1391 int commit_tree(const char *msg
, size_t msg_len
, const struct object_id
*tree
,
1392 struct commit_list
*parents
, struct object_id
*ret
,
1393 const char *author
, const char *sign_commit
)
1395 struct commit_extra_header
*extra
= NULL
, **tail
= &extra
;
1398 append_merge_tag_headers(parents
, &tail
);
1399 result
= commit_tree_extended(msg
, msg_len
, tree
, parents
, ret
, author
,
1400 NULL
, sign_commit
, extra
);
1401 free_commit_extra_headers(extra
);
1405 static int find_invalid_utf8(const char *buf
, int len
)
1408 static const unsigned int max_codepoint
[] = {
1409 0x7f, 0x7ff, 0xffff, 0x10ffff
1413 unsigned char c
= *buf
++;
1414 int bytes
, bad_offset
;
1415 unsigned int codepoint
;
1416 unsigned int min_val
, max_val
;
1421 /* Simple US-ASCII? No worries. */
1425 bad_offset
= offset
-1;
1428 * Count how many more high bits set: that's how
1429 * many more bytes this sequence should have.
1438 * Must be between 1 and 3 more bytes. Longer sequences result in
1439 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1441 if (bytes
< 1 || 3 < bytes
)
1444 /* Do we *have* that many bytes? */
1449 * Place the encoded bits at the bottom of the value and compute the
1452 codepoint
= (c
& 0x7f) >> bytes
;
1453 min_val
= max_codepoint
[bytes
-1] + 1;
1454 max_val
= max_codepoint
[bytes
];
1459 /* And verify that they are good continuation bytes */
1462 codepoint
|= *buf
& 0x3f;
1463 if ((*buf
++ & 0xc0) != 0x80)
1467 /* Reject codepoints that are out of range for the sequence length. */
1468 if (codepoint
< min_val
|| codepoint
> max_val
)
1470 /* Surrogates are only for UTF-16 and cannot be encoded in UTF-8. */
1471 if ((codepoint
& 0x1ff800) == 0xd800)
1473 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
1474 if ((codepoint
& 0xfffe) == 0xfffe)
1476 /* So are anything in the range U+FDD0..U+FDEF. */
1477 if (codepoint
>= 0xfdd0 && codepoint
<= 0xfdef)
1484 * This verifies that the buffer is in proper utf8 format.
1486 * If it isn't, it assumes any non-utf8 characters are Latin1,
1487 * and does the conversion.
1489 static int verify_utf8(struct strbuf
*buf
)
1497 unsigned char replace
[2];
1499 bad
= find_invalid_utf8(buf
->buf
+ pos
, buf
->len
- pos
);
1505 strbuf_remove(buf
, pos
, 1);
1507 /* We know 'c' must be in the range 128-255 */
1508 replace
[0] = 0xc0 + (c
>> 6);
1509 replace
[1] = 0x80 + (c
& 0x3f);
1510 strbuf_insert(buf
, pos
, replace
, 2);
1515 static const char commit_utf8_warn
[] =
1516 N_("Warning: commit message did not conform to UTF-8.\n"
1517 "You may want to amend it after fixing the message, or set the config\n"
1518 "variable i18n.commitencoding to the encoding your project uses.\n");
1520 int commit_tree_extended(const char *msg
, size_t msg_len
,
1521 const struct object_id
*tree
,
1522 struct commit_list
*parents
, struct object_id
*ret
,
1523 const char *author
, const char *committer
,
1524 const char *sign_commit
,
1525 struct commit_extra_header
*extra
)
1528 int encoding_is_utf8
;
1529 struct strbuf buffer
;
1531 assert_oid_type(tree
, OBJ_TREE
);
1533 if (memchr(msg
, '\0', msg_len
))
1534 return error("a NUL byte in commit log message not allowed.");
1536 /* Not having i18n.commitencoding is the same as having utf-8 */
1537 encoding_is_utf8
= is_encoding_utf8(git_commit_encoding
);
1539 strbuf_init(&buffer
, 8192); /* should avoid reallocs for the headers */
1540 strbuf_addf(&buffer
, "tree %s\n", oid_to_hex(tree
));
1543 * NOTE! This ordering means that the same exact tree merged with a
1544 * different order of parents will be a _different_ changeset even
1545 * if everything else stays the same.
1548 struct commit
*parent
= pop_commit(&parents
);
1549 strbuf_addf(&buffer
, "parent %s\n",
1550 oid_to_hex(&parent
->object
.oid
));
1553 /* Person/date information */
1555 author
= git_author_info(IDENT_STRICT
);
1556 strbuf_addf(&buffer
, "author %s\n", author
);
1558 committer
= git_committer_info(IDENT_STRICT
);
1559 strbuf_addf(&buffer
, "committer %s\n", committer
);
1560 if (!encoding_is_utf8
)
1561 strbuf_addf(&buffer
, "encoding %s\n", git_commit_encoding
);
1564 add_extra_header(&buffer
, extra
);
1565 extra
= extra
->next
;
1567 strbuf_addch(&buffer
, '\n');
1569 /* And add the comment */
1570 strbuf_add(&buffer
, msg
, msg_len
);
1572 /* And check the encoding */
1573 if (encoding_is_utf8
&& !verify_utf8(&buffer
))
1574 fprintf(stderr
, _(commit_utf8_warn
));
1576 if (sign_commit
&& sign_with_header(&buffer
, sign_commit
)) {
1581 result
= write_object_file(buffer
.buf
, buffer
.len
, OBJ_COMMIT
, ret
);
1583 strbuf_release(&buffer
);
1587 define_commit_slab(merge_desc_slab
, struct merge_remote_desc
*);
1588 static struct merge_desc_slab merge_desc_slab
= COMMIT_SLAB_INIT(1, merge_desc_slab
);
1590 struct merge_remote_desc
*merge_remote_util(struct commit
*commit
)
1592 return *merge_desc_slab_at(&merge_desc_slab
, commit
);
1595 void set_merge_remote_desc(struct commit
*commit
,
1596 const char *name
, struct object
*obj
)
1598 struct merge_remote_desc
*desc
;
1599 FLEX_ALLOC_STR(desc
, name
, name
);
1601 *merge_desc_slab_at(&merge_desc_slab
, commit
) = desc
;
1604 struct commit
*get_merge_parent(const char *name
)
1607 struct commit
*commit
;
1608 struct object_id oid
;
1609 if (get_oid(name
, &oid
))
1611 obj
= parse_object(the_repository
, &oid
);
1612 commit
= (struct commit
*)peel_to_type(name
, 0, obj
, OBJ_COMMIT
);
1613 if (commit
&& !merge_remote_util(commit
))
1614 set_merge_remote_desc(commit
, name
, obj
);
1619 * Append a commit to the end of the commit_list.
1621 * next starts by pointing to the variable that holds the head of an
1622 * empty commit_list, and is updated to point to the "next" field of
1623 * the last item on the list as new commits are appended.
1627 * struct commit_list *list;
1628 * struct commit_list **next = &list;
1630 * next = commit_list_append(c1, next);
1631 * next = commit_list_append(c2, next);
1632 * assert(commit_list_count(list) == 2);
1635 struct commit_list
**commit_list_append(struct commit
*commit
,
1636 struct commit_list
**next
)
1638 struct commit_list
*new_commit
= xmalloc(sizeof(struct commit_list
));
1639 new_commit
->item
= commit
;
1641 new_commit
->next
= NULL
;
1642 return &new_commit
->next
;
1645 const char *find_header_mem(const char *msg
, size_t len
,
1646 const char *key
, size_t *out_len
)
1648 int key_len
= strlen(key
);
1649 const char *line
= msg
;
1652 * NEEDSWORK: It's possible for strchrnul() to scan beyond the range
1653 * given by len. However, current callers are safe because they compute
1654 * len by scanning a NUL-terminated block of memory starting at msg.
1655 * Nonetheless, it would be better to ensure the function does not look
1656 * at msg beyond the len provided by the caller.
1658 while (line
&& line
< msg
+ len
) {
1659 const char *eol
= strchrnul(line
, '\n');
1664 if (eol
- line
> key_len
&&
1665 !strncmp(line
, key
, key_len
) &&
1666 line
[key_len
] == ' ') {
1667 *out_len
= eol
- line
- key_len
- 1;
1668 return line
+ key_len
+ 1;
1670 line
= *eol
? eol
+ 1 : NULL
;
1675 const char *find_commit_header(const char *msg
, const char *key
, size_t *out_len
)
1677 return find_header_mem(msg
, strlen(msg
), key
, out_len
);
1680 * Inspect the given string and determine the true "end" of the log message, in
1681 * order to find where to put a new Signed-off-by trailer. Ignored are
1682 * trailing comment lines and blank lines. To support "git commit -s
1683 * --amend" on an existing commit, we also ignore "Conflicts:". To
1684 * support "git commit -v", we truncate at cut lines.
1686 * Returns the number of bytes from the tail to ignore, to be fed as
1687 * the second parameter to append_signoff().
1689 size_t ignore_non_trailer(const char *buf
, size_t len
)
1693 int in_old_conflicts_block
= 0;
1694 size_t cutoff
= wt_status_locate_end(buf
, len
);
1696 while (bol
< cutoff
) {
1697 const char *next_line
= memchr(buf
+ bol
, '\n', len
- bol
);
1700 next_line
= buf
+ len
;
1704 if (buf
[bol
] == comment_line_char
|| buf
[bol
] == '\n') {
1705 /* is this the first of the run of comments? */
1708 /* otherwise, it is just continuing */
1709 } else if (starts_with(buf
+ bol
, "Conflicts:\n")) {
1710 in_old_conflicts_block
= 1;
1713 } else if (in_old_conflicts_block
&& buf
[bol
] == '\t') {
1714 ; /* a pathname in the conflicts block */
1716 /* the previous was not trailing comment */
1718 in_old_conflicts_block
= 0;
1720 bol
= next_line
- buf
;
1722 return boc
? len
- boc
: len
- cutoff
;
1725 int run_commit_hook(int editor_is_used
, const char *index_file
,
1726 int *invoked_hook
, const char *name
, ...)
1728 struct run_hooks_opt opt
= RUN_HOOKS_OPT_INIT
;
1732 strvec_pushf(&opt
.env
, "GIT_INDEX_FILE=%s", index_file
);
1735 * Let the hook know that no editor will be launched.
1737 if (!editor_is_used
)
1738 strvec_push(&opt
.env
, "GIT_EDITOR=:");
1740 va_start(args
, name
);
1741 while ((arg
= va_arg(args
, const char *)))
1742 strvec_push(&opt
.args
, arg
);
1745 opt
.invoked_hook
= invoked_hook
;
1746 return run_hooks_opt(name
, &opt
);