1 #include "git-compat-util.h"
10 #include "sha1-lookup.h"
11 #include "commit-graph.h"
12 #include "object-store.h"
15 #include "replace-object.h"
18 #include "commit-slab.h"
20 #include "json-writer.h"
23 void git_test_write_commit_graph_or_die(void)
26 if (!git_env_bool(GIT_TEST_COMMIT_GRAPH, 0))
29 if (git_env_bool(GIT_TEST_COMMIT_GRAPH_CHANGED_PATHS, 0))
30 flags = COMMIT_GRAPH_WRITE_BLOOM_FILTERS;
32 if (write_commit_graph_reachable(the_repository->objects->odb,
34 die("failed to write commit-graph under GIT_TEST_COMMIT_GRAPH");
37 #define GRAPH_SIGNATURE 0x43475048 /* "CGPH" */
38 #define GRAPH_CHUNKID_OIDFANOUT 0x4f494446 /* "OIDF" */
39 #define GRAPH_CHUNKID_OIDLOOKUP 0x4f49444c /* "OIDL" */
40 #define GRAPH_CHUNKID_DATA 0x43444154 /* "CDAT" */
41 #define GRAPH_CHUNKID_EXTRAEDGES 0x45444745 /* "EDGE" */
42 #define GRAPH_CHUNKID_BLOOMINDEXES 0x42494458 /* "BIDX" */
43 #define GRAPH_CHUNKID_BLOOMDATA 0x42444154 /* "BDAT" */
44 #define GRAPH_CHUNKID_BASE 0x42415345 /* "BASE" */
45 #define MAX_NUM_CHUNKS 7
47 #define GRAPH_DATA_WIDTH (the_hash_algo->rawsz + 16)
49 #define GRAPH_VERSION_1 0x1
50 #define GRAPH_VERSION GRAPH_VERSION_1
52 #define GRAPH_EXTRA_EDGES_NEEDED 0x80000000
53 #define GRAPH_EDGE_LAST_MASK 0x7fffffff
54 #define GRAPH_PARENT_NONE 0x70000000
56 #define GRAPH_LAST_EDGE 0x80000000
58 #define GRAPH_HEADER_SIZE 8
59 #define GRAPH_FANOUT_SIZE (4 * 256)
60 #define GRAPH_CHUNKLOOKUP_WIDTH 12
61 #define GRAPH_MIN_SIZE (GRAPH_HEADER_SIZE + 4 * GRAPH_CHUNKLOOKUP_WIDTH \
62 + GRAPH_FANOUT_SIZE + the_hash_algo->rawsz)
64 /* Remember to update object flag allocation in object.h */
65 #define REACHABLE (1u<<15)
67 /* Keep track of the order in which commits are added to our list. */
68 define_commit_slab(commit_pos, int);
69 static struct commit_pos commit_pos = COMMIT_SLAB_INIT(1, commit_pos);
71 static void set_commit_pos(struct repository *r, const struct object_id *oid)
73 static int32_t max_pos;
74 struct commit *commit = lookup_commit(r, oid);
77 return; /* should never happen, but be lenient */
79 *commit_pos_at(&commit_pos, commit) = max_pos++;
82 static int commit_pos_cmp(const void *va, const void *vb)
84 const struct commit *a = *(const struct commit **)va;
85 const struct commit *b = *(const struct commit **)vb;
86 return commit_pos_at(&commit_pos, a) -
87 commit_pos_at(&commit_pos, b);
90 define_commit_slab(commit_graph_data_slab, struct commit_graph_data);
91 static struct commit_graph_data_slab commit_graph_data_slab =
92 COMMIT_SLAB_INIT(1, commit_graph_data_slab);
94 uint32_t commit_graph_position(const struct commit *c)
96 struct commit_graph_data *data =
97 commit_graph_data_slab_peek(&commit_graph_data_slab, c);
99 return data ? data->graph_pos : COMMIT_NOT_FROM_GRAPH;
102 uint32_t commit_graph_generation(const struct commit *c)
104 struct commit_graph_data *data =
105 commit_graph_data_slab_peek(&commit_graph_data_slab, c);
108 return GENERATION_NUMBER_INFINITY;
109 else if (data->graph_pos == COMMIT_NOT_FROM_GRAPH)
110 return GENERATION_NUMBER_INFINITY;
112 return data->generation;
115 static struct commit_graph_data *commit_graph_data_at(const struct commit *c)
117 unsigned int i, nth_slab;
118 struct commit_graph_data *data =
119 commit_graph_data_slab_peek(&commit_graph_data_slab, c);
124 nth_slab = c->index / commit_graph_data_slab.slab_size;
125 data = commit_graph_data_slab_at(&commit_graph_data_slab, c);
128 * commit-slab initializes elements with zero, overwrite this with
129 * COMMIT_NOT_FROM_GRAPH for graph_pos.
131 * We avoid initializing generation with checking if graph position
132 * is not COMMIT_NOT_FROM_GRAPH.
134 for (i = 0; i < commit_graph_data_slab.slab_size; i++) {
135 commit_graph_data_slab.slab[nth_slab][i].graph_pos =
136 COMMIT_NOT_FROM_GRAPH;
142 static int commit_gen_cmp(const void *va, const void *vb)
144 const struct commit *a = *(const struct commit **)va;
145 const struct commit *b = *(const struct commit **)vb;
147 uint32_t generation_a = commit_graph_generation(a);
148 uint32_t generation_b = commit_graph_generation(b);
149 /* lower generation commits first */
150 if (generation_a < generation_b)
152 else if (generation_a > generation_b)
155 /* use date as a heuristic when generations are equal */
156 if (a->date < b->date)
158 else if (a->date > b->date)
163 char *get_commit_graph_filename(struct object_directory *obj_dir)
165 return xstrfmt("%s/info/commit-graph", obj_dir->path);
168 static char *get_split_graph_filename(struct object_directory *odb,
171 return xstrfmt("%s/info/commit-graphs/graph-%s.graph", odb->path,
175 static char *get_chain_filename(struct object_directory *odb)
177 return xstrfmt("%s/info/commit-graphs/commit-graph-chain", odb->path);
180 static uint8_t oid_version(void)
185 static struct commit_graph *alloc_commit_graph(void)
187 struct commit_graph *g = xcalloc(1, sizeof(*g));
192 extern int read_replace_refs;
194 static int commit_graph_compatible(struct repository *r)
199 if (read_replace_refs) {
200 prepare_replace_object(r);
201 if (hashmap_get_size(&r->objects->replace_map->map))
205 prepare_commit_graft(r);
206 if (r->parsed_objects &&
207 (r->parsed_objects->grafts_nr || r->parsed_objects->substituted_parent))
209 if (is_repository_shallow(r))
215 int open_commit_graph(const char *graph_file, int *fd, struct stat *st)
217 *fd = git_open(graph_file);
220 if (fstat(*fd, st)) {
227 struct commit_graph *load_commit_graph_one_fd_st(struct repository *r,
228 int fd, struct stat *st,
229 struct object_directory *odb)
233 struct commit_graph *ret;
235 graph_size = xsize_t(st->st_size);
237 if (graph_size < GRAPH_MIN_SIZE) {
239 error(_("commit-graph file is too small"));
242 graph_map = xmmap(NULL, graph_size, PROT_READ, MAP_PRIVATE, fd, 0);
244 ret = parse_commit_graph(r, graph_map, graph_size);
249 munmap(graph_map, graph_size);
254 static int verify_commit_graph_lite(struct commit_graph *g)
257 * Basic validation shared between parse_commit_graph()
258 * which'll be called every time the graph is used, and the
259 * much more expensive verify_commit_graph() used by
260 * "commit-graph verify".
262 * There should only be very basic checks here to ensure that
263 * we don't e.g. segfault in fill_commit_in_graph(), but
264 * because this is a very hot codepath nothing that e.g. loops
265 * over g->num_commits, or runs a checksum on the commit-graph
268 if (!g->chunk_oid_fanout) {
269 error("commit-graph is missing the OID Fanout chunk");
272 if (!g->chunk_oid_lookup) {
273 error("commit-graph is missing the OID Lookup chunk");
276 if (!g->chunk_commit_data) {
277 error("commit-graph is missing the Commit Data chunk");
284 struct commit_graph *parse_commit_graph(struct repository *r,
285 void *graph_map, size_t graph_size)
287 const unsigned char *data, *chunk_lookup;
289 struct commit_graph *graph;
290 uint64_t next_chunk_offset;
291 uint32_t graph_signature;
292 unsigned char graph_version, hash_version;
297 if (graph_size < GRAPH_MIN_SIZE)
300 data = (const unsigned char *)graph_map;
302 graph_signature = get_be32(data);
303 if (graph_signature != GRAPH_SIGNATURE) {
304 error(_("commit-graph signature %X does not match signature %X"),
305 graph_signature, GRAPH_SIGNATURE);
309 graph_version = *(unsigned char*)(data + 4);
310 if (graph_version != GRAPH_VERSION) {
311 error(_("commit-graph version %X does not match version %X"),
312 graph_version, GRAPH_VERSION);
316 hash_version = *(unsigned char*)(data + 5);
317 if (hash_version != oid_version()) {
318 error(_("commit-graph hash version %X does not match version %X"),
319 hash_version, oid_version());
323 prepare_repo_settings(r);
325 graph = alloc_commit_graph();
327 graph->hash_len = the_hash_algo->rawsz;
328 graph->num_chunks = *(unsigned char*)(data + 6);
329 graph->data = graph_map;
330 graph->data_len = graph_size;
332 if (graph_size < GRAPH_HEADER_SIZE +
333 (graph->num_chunks + 1) * GRAPH_CHUNKLOOKUP_WIDTH +
334 GRAPH_FANOUT_SIZE + the_hash_algo->rawsz) {
335 error(_("commit-graph file is too small to hold %u chunks"),
341 chunk_lookup = data + 8;
342 next_chunk_offset = get_be64(chunk_lookup + 4);
343 for (i = 0; i < graph->num_chunks; i++) {
345 uint64_t chunk_offset = next_chunk_offset;
346 int chunk_repeated = 0;
348 chunk_id = get_be32(chunk_lookup + 0);
350 chunk_lookup += GRAPH_CHUNKLOOKUP_WIDTH;
351 next_chunk_offset = get_be64(chunk_lookup + 4);
353 if (chunk_offset > graph_size - the_hash_algo->rawsz) {
354 error(_("commit-graph improper chunk offset %08x%08x"), (uint32_t)(chunk_offset >> 32),
355 (uint32_t)chunk_offset);
356 goto free_and_return;
360 case GRAPH_CHUNKID_OIDFANOUT:
361 if (graph->chunk_oid_fanout)
364 graph->chunk_oid_fanout = (uint32_t*)(data + chunk_offset);
367 case GRAPH_CHUNKID_OIDLOOKUP:
368 if (graph->chunk_oid_lookup)
371 graph->chunk_oid_lookup = data + chunk_offset;
372 graph->num_commits = (next_chunk_offset - chunk_offset)
377 case GRAPH_CHUNKID_DATA:
378 if (graph->chunk_commit_data)
381 graph->chunk_commit_data = data + chunk_offset;
384 case GRAPH_CHUNKID_EXTRAEDGES:
385 if (graph->chunk_extra_edges)
388 graph->chunk_extra_edges = data + chunk_offset;
391 case GRAPH_CHUNKID_BASE:
392 if (graph->chunk_base_graphs)
395 graph->chunk_base_graphs = data + chunk_offset;
398 case GRAPH_CHUNKID_BLOOMINDEXES:
399 if (graph->chunk_bloom_indexes)
401 else if (r->settings.commit_graph_read_changed_paths)
402 graph->chunk_bloom_indexes = data + chunk_offset;
405 case GRAPH_CHUNKID_BLOOMDATA:
406 if (graph->chunk_bloom_data)
408 else if (r->settings.commit_graph_read_changed_paths) {
409 uint32_t hash_version;
410 graph->chunk_bloom_data = data + chunk_offset;
411 hash_version = get_be32(data + chunk_offset);
413 if (hash_version != 1)
416 graph->bloom_filter_settings = xmalloc(sizeof(struct bloom_filter_settings));
417 graph->bloom_filter_settings->hash_version = hash_version;
418 graph->bloom_filter_settings->num_hashes = get_be32(data + chunk_offset + 4);
419 graph->bloom_filter_settings->bits_per_entry = get_be32(data + chunk_offset + 8);
424 if (chunk_repeated) {
425 error(_("commit-graph chunk id %08x appears multiple times"), chunk_id);
426 goto free_and_return;
430 if (graph->chunk_bloom_indexes && graph->chunk_bloom_data) {
431 init_bloom_filters();
433 /* We need both the bloom chunks to exist together. Else ignore the data */
434 graph->chunk_bloom_indexes = NULL;
435 graph->chunk_bloom_data = NULL;
436 FREE_AND_NULL(graph->bloom_filter_settings);
439 hashcpy(graph->oid.hash, graph->data + graph->data_len - graph->hash_len);
441 if (verify_commit_graph_lite(graph))
442 goto free_and_return;
447 free(graph->bloom_filter_settings);
452 static struct commit_graph *load_commit_graph_one(struct repository *r,
453 const char *graph_file,
454 struct object_directory *odb)
459 struct commit_graph *g;
460 int open_ok = open_commit_graph(graph_file, &fd, &st);
465 g = load_commit_graph_one_fd_st(r, fd, &st, odb);
468 g->filename = xstrdup(graph_file);
473 static struct commit_graph *load_commit_graph_v1(struct repository *r,
474 struct object_directory *odb)
476 char *graph_name = get_commit_graph_filename(odb);
477 struct commit_graph *g = load_commit_graph_one(r, graph_name, odb);
483 static int add_graph_to_chain(struct commit_graph *g,
484 struct commit_graph *chain,
485 struct object_id *oids,
488 struct commit_graph *cur_g = chain;
490 if (n && !g->chunk_base_graphs) {
491 warning(_("commit-graph has no base graphs chunk"));
499 !oideq(&oids[n], &cur_g->oid) ||
500 !hasheq(oids[n].hash, g->chunk_base_graphs + g->hash_len * n)) {
501 warning(_("commit-graph chain does not match"));
505 cur_g = cur_g->base_graph;
508 g->base_graph = chain;
511 g->num_commits_in_base = chain->num_commits + chain->num_commits_in_base;
516 static struct commit_graph *load_commit_graph_chain(struct repository *r,
517 struct object_directory *odb)
519 struct commit_graph *graph_chain = NULL;
520 struct strbuf line = STRBUF_INIT;
522 struct object_id *oids;
523 int i = 0, valid = 1, count;
524 char *chain_name = get_chain_filename(odb);
528 fp = fopen(chain_name, "r");
529 stat_res = stat(chain_name, &st);
534 st.st_size <= the_hash_algo->hexsz)
537 count = st.st_size / (the_hash_algo->hexsz + 1);
538 oids = xcalloc(count, sizeof(struct object_id));
542 for (i = 0; i < count; i++) {
543 struct object_directory *odb;
545 if (strbuf_getline_lf(&line, fp) == EOF)
548 if (get_oid_hex(line.buf, &oids[i])) {
549 warning(_("invalid commit-graph chain: line '%s' not a hash"),
556 for (odb = r->objects->odb; odb; odb = odb->next) {
557 char *graph_name = get_split_graph_filename(odb, line.buf);
558 struct commit_graph *g = load_commit_graph_one(r, graph_name, odb);
563 if (add_graph_to_chain(g, graph_chain, oids, i)) {
573 warning(_("unable to find all commit-graph files"));
580 strbuf_release(&line);
585 struct commit_graph *read_commit_graph_one(struct repository *r,
586 struct object_directory *odb)
588 struct commit_graph *g = load_commit_graph_v1(r, odb);
591 g = load_commit_graph_chain(r, odb);
596 static void prepare_commit_graph_one(struct repository *r,
597 struct object_directory *odb)
600 if (r->objects->commit_graph)
603 r->objects->commit_graph = read_commit_graph_one(r, odb);
607 * Return 1 if commit_graph is non-NULL, and 0 otherwise.
609 * On the first invocation, this function attempts to load the commit
610 * graph if the_repository is configured to have one.
612 static int prepare_commit_graph(struct repository *r)
614 struct object_directory *odb;
617 * This must come before the "already attempted?" check below, because
618 * we want to disable even an already-loaded graph file.
620 if (r->commit_graph_disabled)
623 if (r->objects->commit_graph_attempted)
624 return !!r->objects->commit_graph;
625 r->objects->commit_graph_attempted = 1;
627 prepare_repo_settings(r);
629 if (!git_env_bool(GIT_TEST_COMMIT_GRAPH, 0) &&
630 r->settings.core_commit_graph != 1)
632 * This repository is not configured to use commit graphs, so
633 * do not load one. (But report commit_graph_attempted anyway
634 * so that commit graph loading is not attempted again for this
639 if (!commit_graph_compatible(r))
643 for (odb = r->objects->odb;
644 !r->objects->commit_graph && odb;
646 prepare_commit_graph_one(r, odb);
647 return !!r->objects->commit_graph;
650 int generation_numbers_enabled(struct repository *r)
652 uint32_t first_generation;
653 struct commit_graph *g;
654 if (!prepare_commit_graph(r))
657 g = r->objects->commit_graph;
662 first_generation = get_be32(g->chunk_commit_data +
663 g->hash_len + 8) >> 2;
665 return !!first_generation;
668 struct bloom_filter_settings *get_bloom_filter_settings(struct repository *r)
670 struct commit_graph *g = r->objects->commit_graph;
672 if (g->bloom_filter_settings)
673 return g->bloom_filter_settings;
679 static void close_commit_graph_one(struct commit_graph *g)
684 close_commit_graph_one(g->base_graph);
685 free_commit_graph(g);
688 void close_commit_graph(struct raw_object_store *o)
690 close_commit_graph_one(o->commit_graph);
691 o->commit_graph = NULL;
694 static int bsearch_graph(struct commit_graph *g, struct object_id *oid, uint32_t *pos)
696 return bsearch_hash(oid->hash, g->chunk_oid_fanout,
697 g->chunk_oid_lookup, g->hash_len, pos);
700 static void load_oid_from_graph(struct commit_graph *g,
702 struct object_id *oid)
706 while (g && pos < g->num_commits_in_base)
710 BUG("NULL commit-graph");
712 if (pos >= g->num_commits + g->num_commits_in_base)
713 die(_("invalid commit position. commit-graph is likely corrupt"));
715 lex_index = pos - g->num_commits_in_base;
717 hashcpy(oid->hash, g->chunk_oid_lookup + g->hash_len * lex_index);
720 static struct commit_list **insert_parent_or_die(struct repository *r,
721 struct commit_graph *g,
723 struct commit_list **pptr)
726 struct object_id oid;
728 if (pos >= g->num_commits + g->num_commits_in_base)
729 die("invalid parent position %"PRIu32, pos);
731 load_oid_from_graph(g, pos, &oid);
732 c = lookup_commit(r, &oid);
734 die(_("could not find commit %s"), oid_to_hex(&oid));
735 commit_graph_data_at(c)->graph_pos = pos;
736 return &commit_list_insert(c, pptr)->next;
739 static void fill_commit_graph_info(struct commit *item, struct commit_graph *g, uint32_t pos)
741 const unsigned char *commit_data;
742 struct commit_graph_data *graph_data;
745 while (pos < g->num_commits_in_base)
748 lex_index = pos - g->num_commits_in_base;
749 commit_data = g->chunk_commit_data + GRAPH_DATA_WIDTH * lex_index;
751 graph_data = commit_graph_data_at(item);
752 graph_data->graph_pos = pos;
753 graph_data->generation = get_be32(commit_data + g->hash_len + 8) >> 2;
756 static inline void set_commit_tree(struct commit *c, struct tree *t)
761 static int fill_commit_in_graph(struct repository *r,
763 struct commit_graph *g, uint32_t pos)
766 uint32_t *parent_data_ptr;
767 uint64_t date_low, date_high;
768 struct commit_list **pptr;
769 struct commit_graph_data *graph_data;
770 const unsigned char *commit_data;
773 while (pos < g->num_commits_in_base)
776 if (pos >= g->num_commits + g->num_commits_in_base)
777 die(_("invalid commit position. commit-graph is likely corrupt"));
780 * Store the "full" position, but then use the
781 * "local" position for the rest of the calculation.
783 graph_data = commit_graph_data_at(item);
784 graph_data->graph_pos = pos;
785 lex_index = pos - g->num_commits_in_base;
787 commit_data = g->chunk_commit_data + (g->hash_len + 16) * lex_index;
789 item->object.parsed = 1;
791 set_commit_tree(item, NULL);
793 date_high = get_be32(commit_data + g->hash_len + 8) & 0x3;
794 date_low = get_be32(commit_data + g->hash_len + 12);
795 item->date = (timestamp_t)((date_high << 32) | date_low);
797 graph_data->generation = get_be32(commit_data + g->hash_len + 8) >> 2;
799 pptr = &item->parents;
801 edge_value = get_be32(commit_data + g->hash_len);
802 if (edge_value == GRAPH_PARENT_NONE)
804 pptr = insert_parent_or_die(r, g, edge_value, pptr);
806 edge_value = get_be32(commit_data + g->hash_len + 4);
807 if (edge_value == GRAPH_PARENT_NONE)
809 if (!(edge_value & GRAPH_EXTRA_EDGES_NEEDED)) {
810 pptr = insert_parent_or_die(r, g, edge_value, pptr);
814 parent_data_ptr = (uint32_t*)(g->chunk_extra_edges +
815 4 * (uint64_t)(edge_value & GRAPH_EDGE_LAST_MASK));
817 edge_value = get_be32(parent_data_ptr);
818 pptr = insert_parent_or_die(r, g,
819 edge_value & GRAPH_EDGE_LAST_MASK,
822 } while (!(edge_value & GRAPH_LAST_EDGE));
827 static int find_commit_in_graph(struct commit *item, struct commit_graph *g, uint32_t *pos)
829 uint32_t graph_pos = commit_graph_position(item);
830 if (graph_pos != COMMIT_NOT_FROM_GRAPH) {
834 struct commit_graph *cur_g = g;
837 while (cur_g && !bsearch_graph(cur_g, &(item->object.oid), &lex_index))
838 cur_g = cur_g->base_graph;
841 *pos = lex_index + cur_g->num_commits_in_base;
849 static int parse_commit_in_graph_one(struct repository *r,
850 struct commit_graph *g,
855 if (item->object.parsed)
858 if (find_commit_in_graph(item, g, &pos))
859 return fill_commit_in_graph(r, item, g, pos);
864 int parse_commit_in_graph(struct repository *r, struct commit *item)
866 static int checked_env = 0;
869 git_env_bool(GIT_TEST_COMMIT_GRAPH_DIE_ON_PARSE, 0))
870 die("dying as requested by the '%s' variable on commit-graph parse!",
871 GIT_TEST_COMMIT_GRAPH_DIE_ON_PARSE);
874 if (!prepare_commit_graph(r))
876 return parse_commit_in_graph_one(r, r->objects->commit_graph, item);
879 void load_commit_graph_info(struct repository *r, struct commit *item)
882 if (!prepare_commit_graph(r))
884 if (find_commit_in_graph(item, r->objects->commit_graph, &pos))
885 fill_commit_graph_info(item, r->objects->commit_graph, pos);
888 static struct tree *load_tree_for_commit(struct repository *r,
889 struct commit_graph *g,
892 struct object_id oid;
893 const unsigned char *commit_data;
894 uint32_t graph_pos = commit_graph_position(c);
896 while (graph_pos < g->num_commits_in_base)
899 commit_data = g->chunk_commit_data +
900 GRAPH_DATA_WIDTH * (graph_pos - g->num_commits_in_base);
902 hashcpy(oid.hash, commit_data);
903 set_commit_tree(c, lookup_tree(r, &oid));
905 return c->maybe_tree;
908 static struct tree *get_commit_tree_in_graph_one(struct repository *r,
909 struct commit_graph *g,
910 const struct commit *c)
913 return c->maybe_tree;
914 if (commit_graph_position(c) == COMMIT_NOT_FROM_GRAPH)
915 BUG("get_commit_tree_in_graph_one called from non-commit-graph commit");
917 return load_tree_for_commit(r, g, (struct commit *)c);
920 struct tree *get_commit_tree_in_graph(struct repository *r, const struct commit *c)
922 return get_commit_tree_in_graph_one(r, r->objects->commit_graph, c);
925 struct packed_commit_list {
926 struct commit **list;
931 struct packed_oid_list {
932 struct object_id *list;
937 struct write_commit_graph_context {
938 struct repository *r;
939 struct object_directory *odb;
941 struct packed_oid_list oids;
942 struct packed_commit_list commits;
944 unsigned long approx_nr_objects;
945 struct progress *progress;
947 uint64_t progress_cnt;
949 char *base_graph_name;
950 int num_commit_graphs_before;
951 int num_commit_graphs_after;
952 char **commit_graph_filenames_before;
953 char **commit_graph_filenames_after;
954 char **commit_graph_hash_after;
955 uint32_t new_num_commits_in_base;
956 struct commit_graph *new_base_graph;
964 const struct split_commit_graph_opts *split_opts;
965 size_t total_bloom_filter_data_size;
966 const struct bloom_filter_settings *bloom_settings;
969 static int write_graph_chunk_fanout(struct hashfile *f,
970 struct write_commit_graph_context *ctx)
973 struct commit **list = ctx->commits.list;
976 * Write the first-level table (the list is sorted,
977 * but we use a 256-entry lookup to be able to avoid
978 * having to do eight extra binary search iterations).
980 for (i = 0; i < 256; i++) {
981 while (count < ctx->commits.nr) {
982 if ((*list)->object.oid.hash[0] != i)
984 display_progress(ctx->progress, ++ctx->progress_cnt);
989 hashwrite_be32(f, count);
995 static int write_graph_chunk_oids(struct hashfile *f,
996 struct write_commit_graph_context *ctx)
998 struct commit **list = ctx->commits.list;
1000 for (count = 0; count < ctx->commits.nr; count++, list++) {
1001 display_progress(ctx->progress, ++ctx->progress_cnt);
1002 hashwrite(f, (*list)->object.oid.hash, the_hash_algo->rawsz);
1008 static const unsigned char *commit_to_sha1(size_t index, void *table)
1010 struct commit **commits = table;
1011 return commits[index]->object.oid.hash;
1014 static int write_graph_chunk_data(struct hashfile *f,
1015 struct write_commit_graph_context *ctx)
1017 struct commit **list = ctx->commits.list;
1018 struct commit **last = ctx->commits.list + ctx->commits.nr;
1019 uint32_t num_extra_edges = 0;
1021 while (list < last) {
1022 struct commit_list *parent;
1023 struct object_id *tree;
1025 uint32_t packedDate[2];
1026 display_progress(ctx->progress, ++ctx->progress_cnt);
1028 if (parse_commit_no_graph(*list))
1029 die(_("unable to parse commit %s"),
1030 oid_to_hex(&(*list)->object.oid));
1031 tree = get_commit_tree_oid(*list);
1032 hashwrite(f, tree->hash, the_hash_algo->rawsz);
1034 parent = (*list)->parents;
1037 edge_value = GRAPH_PARENT_NONE;
1039 edge_value = sha1_pos(parent->item->object.oid.hash,
1044 if (edge_value >= 0)
1045 edge_value += ctx->new_num_commits_in_base;
1046 else if (ctx->new_base_graph) {
1048 if (find_commit_in_graph(parent->item,
1049 ctx->new_base_graph,
1055 BUG("missing parent %s for commit %s",
1056 oid_to_hex(&parent->item->object.oid),
1057 oid_to_hex(&(*list)->object.oid));
1060 hashwrite_be32(f, edge_value);
1063 parent = parent->next;
1066 edge_value = GRAPH_PARENT_NONE;
1067 else if (parent->next)
1068 edge_value = GRAPH_EXTRA_EDGES_NEEDED | num_extra_edges;
1070 edge_value = sha1_pos(parent->item->object.oid.hash,
1075 if (edge_value >= 0)
1076 edge_value += ctx->new_num_commits_in_base;
1077 else if (ctx->new_base_graph) {
1079 if (find_commit_in_graph(parent->item,
1080 ctx->new_base_graph,
1086 BUG("missing parent %s for commit %s",
1087 oid_to_hex(&parent->item->object.oid),
1088 oid_to_hex(&(*list)->object.oid));
1091 hashwrite_be32(f, edge_value);
1093 if (edge_value & GRAPH_EXTRA_EDGES_NEEDED) {
1096 parent = parent->next;
1100 if (sizeof((*list)->date) > 4)
1101 packedDate[0] = htonl(((*list)->date >> 32) & 0x3);
1105 packedDate[0] |= htonl(commit_graph_data_at(*list)->generation << 2);
1107 packedDate[1] = htonl((*list)->date);
1108 hashwrite(f, packedDate, 8);
1116 static int write_graph_chunk_extra_edges(struct hashfile *f,
1117 struct write_commit_graph_context *ctx)
1119 struct commit **list = ctx->commits.list;
1120 struct commit **last = ctx->commits.list + ctx->commits.nr;
1121 struct commit_list *parent;
1123 while (list < last) {
1124 int num_parents = 0;
1126 display_progress(ctx->progress, ++ctx->progress_cnt);
1128 for (parent = (*list)->parents; num_parents < 3 && parent;
1129 parent = parent->next)
1132 if (num_parents <= 2) {
1137 /* Since num_parents > 2, this initializer is safe. */
1138 for (parent = (*list)->parents->next; parent; parent = parent->next) {
1139 int edge_value = sha1_pos(parent->item->object.oid.hash,
1144 if (edge_value >= 0)
1145 edge_value += ctx->new_num_commits_in_base;
1146 else if (ctx->new_base_graph) {
1148 if (find_commit_in_graph(parent->item,
1149 ctx->new_base_graph,
1155 BUG("missing parent %s for commit %s",
1156 oid_to_hex(&parent->item->object.oid),
1157 oid_to_hex(&(*list)->object.oid));
1158 else if (!parent->next)
1159 edge_value |= GRAPH_LAST_EDGE;
1161 hashwrite_be32(f, edge_value);
1170 static int write_graph_chunk_bloom_indexes(struct hashfile *f,
1171 struct write_commit_graph_context *ctx)
1173 struct commit **list = ctx->commits.list;
1174 struct commit **last = ctx->commits.list + ctx->commits.nr;
1175 uint32_t cur_pos = 0;
1177 while (list < last) {
1178 struct bloom_filter *filter = get_bloom_filter(ctx->r, *list, 0);
1179 size_t len = filter ? filter->len : 0;
1181 display_progress(ctx->progress, ++ctx->progress_cnt);
1182 hashwrite_be32(f, cur_pos);
1189 static void trace2_bloom_filter_settings(struct write_commit_graph_context *ctx)
1191 struct json_writer jw = JSON_WRITER_INIT;
1193 jw_object_begin(&jw, 0);
1194 jw_object_intmax(&jw, "hash_version", ctx->bloom_settings->hash_version);
1195 jw_object_intmax(&jw, "num_hashes", ctx->bloom_settings->num_hashes);
1196 jw_object_intmax(&jw, "bits_per_entry", ctx->bloom_settings->bits_per_entry);
1199 trace2_data_json("bloom", ctx->r, "settings", &jw);
1204 static int write_graph_chunk_bloom_data(struct hashfile *f,
1205 struct write_commit_graph_context *ctx)
1207 struct commit **list = ctx->commits.list;
1208 struct commit **last = ctx->commits.list + ctx->commits.nr;
1210 trace2_bloom_filter_settings(ctx);
1212 hashwrite_be32(f, ctx->bloom_settings->hash_version);
1213 hashwrite_be32(f, ctx->bloom_settings->num_hashes);
1214 hashwrite_be32(f, ctx->bloom_settings->bits_per_entry);
1216 while (list < last) {
1217 struct bloom_filter *filter = get_bloom_filter(ctx->r, *list, 0);
1218 size_t len = filter ? filter->len : 0;
1220 display_progress(ctx->progress, ++ctx->progress_cnt);
1222 hashwrite(f, filter->data, len * sizeof(unsigned char));
1229 static int oid_compare(const void *_a, const void *_b)
1231 const struct object_id *a = (const struct object_id *)_a;
1232 const struct object_id *b = (const struct object_id *)_b;
1233 return oidcmp(a, b);
1236 static int add_packed_commits(const struct object_id *oid,
1237 struct packed_git *pack,
1241 struct write_commit_graph_context *ctx = (struct write_commit_graph_context*)data;
1242 enum object_type type;
1243 off_t offset = nth_packed_object_offset(pack, pos);
1244 struct object_info oi = OBJECT_INFO_INIT;
1247 display_progress(ctx->progress, ++ctx->progress_done);
1250 if (packed_object_info(ctx->r, pack, offset, &oi) < 0)
1251 die(_("unable to get type of object %s"), oid_to_hex(oid));
1253 if (type != OBJ_COMMIT)
1256 ALLOC_GROW(ctx->oids.list, ctx->oids.nr + 1, ctx->oids.alloc);
1257 oidcpy(&(ctx->oids.list[ctx->oids.nr]), oid);
1260 set_commit_pos(ctx->r, oid);
1265 static void add_missing_parents(struct write_commit_graph_context *ctx, struct commit *commit)
1267 struct commit_list *parent;
1268 for (parent = commit->parents; parent; parent = parent->next) {
1269 if (!(parent->item->object.flags & REACHABLE)) {
1270 ALLOC_GROW(ctx->oids.list, ctx->oids.nr + 1, ctx->oids.alloc);
1271 oidcpy(&ctx->oids.list[ctx->oids.nr], &(parent->item->object.oid));
1273 parent->item->object.flags |= REACHABLE;
1278 static void close_reachable(struct write_commit_graph_context *ctx)
1281 struct commit *commit;
1282 enum commit_graph_split_flags flags = ctx->split_opts ?
1283 ctx->split_opts->flags : COMMIT_GRAPH_SPLIT_UNSPECIFIED;
1285 if (ctx->report_progress)
1286 ctx->progress = start_delayed_progress(
1287 _("Loading known commits in commit graph"),
1289 for (i = 0; i < ctx->oids.nr; i++) {
1290 display_progress(ctx->progress, i + 1);
1291 commit = lookup_commit(ctx->r, &ctx->oids.list[i]);
1293 commit->object.flags |= REACHABLE;
1295 stop_progress(&ctx->progress);
1298 * As this loop runs, ctx->oids.nr may grow, but not more
1299 * than the number of missing commits in the reachable
1302 if (ctx->report_progress)
1303 ctx->progress = start_delayed_progress(
1304 _("Expanding reachable commits in commit graph"),
1306 for (i = 0; i < ctx->oids.nr; i++) {
1307 display_progress(ctx->progress, i + 1);
1308 commit = lookup_commit(ctx->r, &ctx->oids.list[i]);
1313 if ((!parse_commit(commit) &&
1314 commit_graph_position(commit) == COMMIT_NOT_FROM_GRAPH) ||
1315 flags == COMMIT_GRAPH_SPLIT_REPLACE)
1316 add_missing_parents(ctx, commit);
1317 } else if (!parse_commit_no_graph(commit))
1318 add_missing_parents(ctx, commit);
1320 stop_progress(&ctx->progress);
1322 if (ctx->report_progress)
1323 ctx->progress = start_delayed_progress(
1324 _("Clearing commit marks in commit graph"),
1326 for (i = 0; i < ctx->oids.nr; i++) {
1327 display_progress(ctx->progress, i + 1);
1328 commit = lookup_commit(ctx->r, &ctx->oids.list[i]);
1331 commit->object.flags &= ~REACHABLE;
1333 stop_progress(&ctx->progress);
1336 static void compute_generation_numbers(struct write_commit_graph_context *ctx)
1339 struct commit_list *list = NULL;
1341 if (ctx->report_progress)
1342 ctx->progress = start_delayed_progress(
1343 _("Computing commit graph generation numbers"),
1345 for (i = 0; i < ctx->commits.nr; i++) {
1346 uint32_t generation = commit_graph_data_at(ctx->commits.list[i])->generation;
1348 display_progress(ctx->progress, i + 1);
1349 if (generation != GENERATION_NUMBER_INFINITY &&
1350 generation != GENERATION_NUMBER_ZERO)
1353 commit_list_insert(ctx->commits.list[i], &list);
1355 struct commit *current = list->item;
1356 struct commit_list *parent;
1357 int all_parents_computed = 1;
1358 uint32_t max_generation = 0;
1360 for (parent = current->parents; parent; parent = parent->next) {
1361 generation = commit_graph_data_at(parent->item)->generation;
1363 if (generation == GENERATION_NUMBER_INFINITY ||
1364 generation == GENERATION_NUMBER_ZERO) {
1365 all_parents_computed = 0;
1366 commit_list_insert(parent->item, &list);
1368 } else if (generation > max_generation) {
1369 max_generation = generation;
1373 if (all_parents_computed) {
1374 struct commit_graph_data *data = commit_graph_data_at(current);
1376 data->generation = max_generation + 1;
1379 if (data->generation > GENERATION_NUMBER_MAX)
1380 data->generation = GENERATION_NUMBER_MAX;
1384 stop_progress(&ctx->progress);
1387 static void compute_bloom_filters(struct write_commit_graph_context *ctx)
1390 struct progress *progress = NULL;
1391 struct commit **sorted_commits;
1393 init_bloom_filters();
1395 if (ctx->report_progress)
1396 progress = start_delayed_progress(
1397 _("Computing commit changed paths Bloom filters"),
1400 ALLOC_ARRAY(sorted_commits, ctx->commits.nr);
1401 COPY_ARRAY(sorted_commits, ctx->commits.list, ctx->commits.nr);
1403 if (ctx->order_by_pack)
1404 QSORT(sorted_commits, ctx->commits.nr, commit_pos_cmp);
1406 QSORT(sorted_commits, ctx->commits.nr, commit_gen_cmp);
1408 for (i = 0; i < ctx->commits.nr; i++) {
1409 struct commit *c = sorted_commits[i];
1410 struct bloom_filter *filter = get_bloom_filter(ctx->r, c, 1);
1411 ctx->total_bloom_filter_data_size += sizeof(unsigned char) * filter->len;
1412 display_progress(progress, i + 1);
1415 free(sorted_commits);
1416 stop_progress(&progress);
1419 struct refs_cb_data {
1420 struct oidset *commits;
1421 struct progress *progress;
1424 static int add_ref_to_set(const char *refname,
1425 const struct object_id *oid,
1426 int flags, void *cb_data)
1428 struct object_id peeled;
1429 struct refs_cb_data *data = (struct refs_cb_data *)cb_data;
1431 if (!peel_ref(refname, &peeled))
1433 if (oid_object_info(the_repository, oid, NULL) == OBJ_COMMIT)
1434 oidset_insert(data->commits, oid);
1436 display_progress(data->progress, oidset_size(data->commits));
1441 int write_commit_graph_reachable(struct object_directory *odb,
1442 enum commit_graph_write_flags flags,
1443 const struct split_commit_graph_opts *split_opts)
1445 struct oidset commits = OIDSET_INIT;
1446 struct refs_cb_data data;
1449 memset(&data, 0, sizeof(data));
1450 data.commits = &commits;
1451 if (flags & COMMIT_GRAPH_WRITE_PROGRESS)
1452 data.progress = start_delayed_progress(
1453 _("Collecting referenced commits"), 0);
1455 for_each_ref(add_ref_to_set, &data);
1457 stop_progress(&data.progress);
1459 result = write_commit_graph(odb, NULL, &commits,
1462 oidset_clear(&commits);
1466 static int fill_oids_from_packs(struct write_commit_graph_context *ctx,
1467 struct string_list *pack_indexes)
1470 struct strbuf progress_title = STRBUF_INIT;
1471 struct strbuf packname = STRBUF_INIT;
1474 strbuf_addf(&packname, "%s/pack/", ctx->odb->path);
1475 dirlen = packname.len;
1476 if (ctx->report_progress) {
1477 strbuf_addf(&progress_title,
1478 Q_("Finding commits for commit graph in %d pack",
1479 "Finding commits for commit graph in %d packs",
1482 ctx->progress = start_delayed_progress(progress_title.buf, 0);
1483 ctx->progress_done = 0;
1485 for (i = 0; i < pack_indexes->nr; i++) {
1486 struct packed_git *p;
1487 strbuf_setlen(&packname, dirlen);
1488 strbuf_addstr(&packname, pack_indexes->items[i].string);
1489 p = add_packed_git(packname.buf, packname.len, 1);
1491 error(_("error adding pack %s"), packname.buf);
1494 if (open_pack_index(p)) {
1495 error(_("error opening index for %s"), packname.buf);
1498 for_each_object_in_pack(p, add_packed_commits, ctx,
1499 FOR_EACH_OBJECT_PACK_ORDER);
1504 stop_progress(&ctx->progress);
1505 strbuf_release(&progress_title);
1506 strbuf_release(&packname);
1511 static int fill_oids_from_commits(struct write_commit_graph_context *ctx,
1512 struct oidset *commits)
1514 struct oidset_iter iter;
1515 struct object_id *oid;
1517 if (!oidset_size(commits))
1520 oidset_iter_init(commits, &iter);
1521 while ((oid = oidset_iter_next(&iter))) {
1522 ALLOC_GROW(ctx->oids.list, ctx->oids.nr + 1, ctx->oids.alloc);
1523 oidcpy(&ctx->oids.list[ctx->oids.nr], oid);
1530 static void fill_oids_from_all_packs(struct write_commit_graph_context *ctx)
1532 if (ctx->report_progress)
1533 ctx->progress = start_delayed_progress(
1534 _("Finding commits for commit graph among packed objects"),
1535 ctx->approx_nr_objects);
1536 for_each_packed_object(add_packed_commits, ctx,
1537 FOR_EACH_OBJECT_PACK_ORDER);
1538 if (ctx->progress_done < ctx->approx_nr_objects)
1539 display_progress(ctx->progress, ctx->approx_nr_objects);
1540 stop_progress(&ctx->progress);
1543 static uint32_t count_distinct_commits(struct write_commit_graph_context *ctx)
1545 uint32_t i, count_distinct = 1;
1547 if (ctx->report_progress)
1548 ctx->progress = start_delayed_progress(
1549 _("Counting distinct commits in commit graph"),
1551 display_progress(ctx->progress, 0); /* TODO: Measure QSORT() progress */
1552 QSORT(ctx->oids.list, ctx->oids.nr, oid_compare);
1554 for (i = 1; i < ctx->oids.nr; i++) {
1555 display_progress(ctx->progress, i + 1);
1556 if (!oideq(&ctx->oids.list[i - 1], &ctx->oids.list[i])) {
1558 struct commit *c = lookup_commit(ctx->r, &ctx->oids.list[i]);
1560 if (!c || commit_graph_position(c) != COMMIT_NOT_FROM_GRAPH)
1567 stop_progress(&ctx->progress);
1569 return count_distinct;
1572 static void copy_oids_to_commits(struct write_commit_graph_context *ctx)
1575 enum commit_graph_split_flags flags = ctx->split_opts ?
1576 ctx->split_opts->flags : COMMIT_GRAPH_SPLIT_UNSPECIFIED;
1578 ctx->num_extra_edges = 0;
1579 if (ctx->report_progress)
1580 ctx->progress = start_delayed_progress(
1581 _("Finding extra edges in commit graph"),
1583 for (i = 0; i < ctx->oids.nr; i++) {
1584 unsigned int num_parents;
1586 display_progress(ctx->progress, i + 1);
1587 if (i > 0 && oideq(&ctx->oids.list[i - 1], &ctx->oids.list[i]))
1590 ALLOC_GROW(ctx->commits.list, ctx->commits.nr + 1, ctx->commits.alloc);
1591 ctx->commits.list[ctx->commits.nr] = lookup_commit(ctx->r, &ctx->oids.list[i]);
1593 if (ctx->split && flags != COMMIT_GRAPH_SPLIT_REPLACE &&
1594 commit_graph_position(ctx->commits.list[ctx->commits.nr]) != COMMIT_NOT_FROM_GRAPH)
1597 if (ctx->split && flags == COMMIT_GRAPH_SPLIT_REPLACE)
1598 parse_commit(ctx->commits.list[ctx->commits.nr]);
1600 parse_commit_no_graph(ctx->commits.list[ctx->commits.nr]);
1602 num_parents = commit_list_count(ctx->commits.list[ctx->commits.nr]->parents);
1603 if (num_parents > 2)
1604 ctx->num_extra_edges += num_parents - 1;
1608 stop_progress(&ctx->progress);
1611 static int write_graph_chunk_base_1(struct hashfile *f,
1612 struct commit_graph *g)
1619 num = write_graph_chunk_base_1(f, g->base_graph);
1620 hashwrite(f, g->oid.hash, the_hash_algo->rawsz);
1624 static int write_graph_chunk_base(struct hashfile *f,
1625 struct write_commit_graph_context *ctx)
1627 int num = write_graph_chunk_base_1(f, ctx->new_base_graph);
1629 if (num != ctx->num_commit_graphs_after - 1) {
1630 error(_("failed to write correct number of base graph ids"));
1637 typedef int (*chunk_write_fn)(struct hashfile *f,
1638 struct write_commit_graph_context *ctx);
1643 chunk_write_fn write_fn;
1646 static int write_commit_graph_file(struct write_commit_graph_context *ctx)
1651 struct lock_file lk = LOCK_INIT;
1652 struct chunk_info chunks[MAX_NUM_CHUNKS + 1];
1653 const unsigned hashsz = the_hash_algo->rawsz;
1654 struct strbuf progress_title = STRBUF_INIT;
1656 uint64_t chunk_offset;
1657 struct object_id file_hash;
1658 struct bloom_filter_settings bloom_settings = DEFAULT_BLOOM_FILTER_SETTINGS;
1660 if (!ctx->bloom_settings) {
1661 bloom_settings.bits_per_entry = git_env_ulong("GIT_TEST_BLOOM_SETTINGS_BITS_PER_ENTRY",
1662 bloom_settings.bits_per_entry);
1663 bloom_settings.num_hashes = git_env_ulong("GIT_TEST_BLOOM_SETTINGS_NUM_HASHES",
1664 bloom_settings.num_hashes);
1665 ctx->bloom_settings = &bloom_settings;
1669 struct strbuf tmp_file = STRBUF_INIT;
1671 strbuf_addf(&tmp_file,
1672 "%s/info/commit-graphs/tmp_graph_XXXXXX",
1674 ctx->graph_name = strbuf_detach(&tmp_file, NULL);
1676 ctx->graph_name = get_commit_graph_filename(ctx->odb);
1679 if (safe_create_leading_directories(ctx->graph_name)) {
1680 UNLEAK(ctx->graph_name);
1681 error(_("unable to create leading directories of %s"),
1687 char *lock_name = get_chain_filename(ctx->odb);
1689 hold_lock_file_for_update_mode(&lk, lock_name,
1690 LOCK_DIE_ON_ERROR, 0444);
1692 fd = git_mkstemp_mode(ctx->graph_name, 0444);
1694 error(_("unable to create temporary graph layer"));
1698 if (adjust_shared_perm(ctx->graph_name)) {
1699 error(_("unable to adjust shared permissions for '%s'"),
1704 f = hashfd(fd, ctx->graph_name);
1706 hold_lock_file_for_update_mode(&lk, ctx->graph_name,
1707 LOCK_DIE_ON_ERROR, 0444);
1708 fd = lk.tempfile->fd;
1709 f = hashfd(lk.tempfile->fd, lk.tempfile->filename.buf);
1712 chunks[0].id = GRAPH_CHUNKID_OIDFANOUT;
1713 chunks[0].size = GRAPH_FANOUT_SIZE;
1714 chunks[0].write_fn = write_graph_chunk_fanout;
1715 chunks[1].id = GRAPH_CHUNKID_OIDLOOKUP;
1716 chunks[1].size = hashsz * ctx->commits.nr;
1717 chunks[1].write_fn = write_graph_chunk_oids;
1718 chunks[2].id = GRAPH_CHUNKID_DATA;
1719 chunks[2].size = (hashsz + 16) * ctx->commits.nr;
1720 chunks[2].write_fn = write_graph_chunk_data;
1721 if (ctx->num_extra_edges) {
1722 chunks[num_chunks].id = GRAPH_CHUNKID_EXTRAEDGES;
1723 chunks[num_chunks].size = 4 * ctx->num_extra_edges;
1724 chunks[num_chunks].write_fn = write_graph_chunk_extra_edges;
1727 if (ctx->changed_paths) {
1728 chunks[num_chunks].id = GRAPH_CHUNKID_BLOOMINDEXES;
1729 chunks[num_chunks].size = sizeof(uint32_t) * ctx->commits.nr;
1730 chunks[num_chunks].write_fn = write_graph_chunk_bloom_indexes;
1732 chunks[num_chunks].id = GRAPH_CHUNKID_BLOOMDATA;
1733 chunks[num_chunks].size = sizeof(uint32_t) * 3
1734 + ctx->total_bloom_filter_data_size;
1735 chunks[num_chunks].write_fn = write_graph_chunk_bloom_data;
1738 if (ctx->num_commit_graphs_after > 1) {
1739 chunks[num_chunks].id = GRAPH_CHUNKID_BASE;
1740 chunks[num_chunks].size = hashsz * (ctx->num_commit_graphs_after - 1);
1741 chunks[num_chunks].write_fn = write_graph_chunk_base;
1745 chunks[num_chunks].id = 0;
1746 chunks[num_chunks].size = 0;
1748 hashwrite_be32(f, GRAPH_SIGNATURE);
1750 hashwrite_u8(f, GRAPH_VERSION);
1751 hashwrite_u8(f, oid_version());
1752 hashwrite_u8(f, num_chunks);
1753 hashwrite_u8(f, ctx->num_commit_graphs_after - 1);
1755 chunk_offset = 8 + (num_chunks + 1) * GRAPH_CHUNKLOOKUP_WIDTH;
1756 for (i = 0; i <= num_chunks; i++) {
1757 uint32_t chunk_write[3];
1759 chunk_write[0] = htonl(chunks[i].id);
1760 chunk_write[1] = htonl(chunk_offset >> 32);
1761 chunk_write[2] = htonl(chunk_offset & 0xffffffff);
1762 hashwrite(f, chunk_write, 12);
1764 chunk_offset += chunks[i].size;
1767 if (ctx->report_progress) {
1768 strbuf_addf(&progress_title,
1769 Q_("Writing out commit graph in %d pass",
1770 "Writing out commit graph in %d passes",
1773 ctx->progress = start_delayed_progress(
1775 num_chunks * ctx->commits.nr);
1778 for (i = 0; i < num_chunks; i++) {
1779 uint64_t start_offset = f->total + f->offset;
1781 if (chunks[i].write_fn(f, ctx))
1784 if (f->total + f->offset != start_offset + chunks[i].size)
1785 BUG("expected to write %"PRId64" bytes to chunk %"PRIx32", but wrote %"PRId64" instead",
1786 chunks[i].size, chunks[i].id,
1787 f->total + f->offset - start_offset);
1790 stop_progress(&ctx->progress);
1791 strbuf_release(&progress_title);
1793 if (ctx->split && ctx->base_graph_name && ctx->num_commit_graphs_after > 1) {
1794 char *new_base_hash = xstrdup(oid_to_hex(&ctx->new_base_graph->oid));
1795 char *new_base_name = get_split_graph_filename(ctx->new_base_graph->odb, new_base_hash);
1797 free(ctx->commit_graph_filenames_after[ctx->num_commit_graphs_after - 2]);
1798 free(ctx->commit_graph_hash_after[ctx->num_commit_graphs_after - 2]);
1799 ctx->commit_graph_filenames_after[ctx->num_commit_graphs_after - 2] = new_base_name;
1800 ctx->commit_graph_hash_after[ctx->num_commit_graphs_after - 2] = new_base_hash;
1803 close_commit_graph(ctx->r->objects);
1804 finalize_hashfile(f, file_hash.hash, CSUM_HASH_IN_STREAM | CSUM_FSYNC);
1807 FILE *chainf = fdopen_lock_file(&lk, "w");
1808 char *final_graph_name;
1814 error(_("unable to open commit-graph chain file"));
1818 if (ctx->base_graph_name) {
1820 int idx = ctx->num_commit_graphs_after - 1;
1821 if (ctx->num_commit_graphs_after > 1)
1824 dest = ctx->commit_graph_filenames_after[idx];
1826 if (strcmp(ctx->base_graph_name, dest)) {
1827 result = rename(ctx->base_graph_name, dest);
1830 error(_("failed to rename base commit-graph file"));
1835 char *graph_name = get_commit_graph_filename(ctx->odb);
1839 ctx->commit_graph_hash_after[ctx->num_commit_graphs_after - 1] = xstrdup(oid_to_hex(&file_hash));
1840 final_graph_name = get_split_graph_filename(ctx->odb,
1841 ctx->commit_graph_hash_after[ctx->num_commit_graphs_after - 1]);
1842 ctx->commit_graph_filenames_after[ctx->num_commit_graphs_after - 1] = final_graph_name;
1844 result = rename(ctx->graph_name, final_graph_name);
1846 for (i = 0; i < ctx->num_commit_graphs_after; i++)
1847 fprintf(lk.tempfile->fp, "%s\n", ctx->commit_graph_hash_after[i]);
1850 error(_("failed to rename temporary commit-graph file"));
1855 commit_lock_file(&lk);
1860 static void split_graph_merge_strategy(struct write_commit_graph_context *ctx)
1862 struct commit_graph *g;
1863 uint32_t num_commits;
1864 enum commit_graph_split_flags flags = COMMIT_GRAPH_SPLIT_UNSPECIFIED;
1867 int max_commits = 0;
1870 if (ctx->split_opts) {
1871 max_commits = ctx->split_opts->max_commits;
1873 if (ctx->split_opts->size_multiple)
1874 size_mult = ctx->split_opts->size_multiple;
1876 flags = ctx->split_opts->flags;
1879 g = ctx->r->objects->commit_graph;
1880 num_commits = ctx->commits.nr;
1881 if (flags == COMMIT_GRAPH_SPLIT_REPLACE)
1882 ctx->num_commit_graphs_after = 1;
1884 ctx->num_commit_graphs_after = ctx->num_commit_graphs_before + 1;
1886 if (flags != COMMIT_GRAPH_SPLIT_MERGE_PROHIBITED &&
1887 flags != COMMIT_GRAPH_SPLIT_REPLACE) {
1888 while (g && (g->num_commits <= size_mult * num_commits ||
1889 (max_commits && num_commits > max_commits))) {
1890 if (g->odb != ctx->odb)
1893 num_commits += g->num_commits;
1896 ctx->num_commit_graphs_after--;
1900 if (flags != COMMIT_GRAPH_SPLIT_REPLACE)
1901 ctx->new_base_graph = g;
1902 else if (ctx->num_commit_graphs_after != 1)
1903 BUG("split_graph_merge_strategy: num_commit_graphs_after "
1904 "should be 1 with --split=replace");
1906 if (ctx->num_commit_graphs_after == 2) {
1907 char *old_graph_name = get_commit_graph_filename(g->odb);
1909 if (!strcmp(g->filename, old_graph_name) &&
1910 g->odb != ctx->odb) {
1911 ctx->num_commit_graphs_after = 1;
1912 ctx->new_base_graph = NULL;
1915 free(old_graph_name);
1918 CALLOC_ARRAY(ctx->commit_graph_filenames_after, ctx->num_commit_graphs_after);
1919 CALLOC_ARRAY(ctx->commit_graph_hash_after, ctx->num_commit_graphs_after);
1921 for (i = 0; i < ctx->num_commit_graphs_after &&
1922 i < ctx->num_commit_graphs_before; i++)
1923 ctx->commit_graph_filenames_after[i] = xstrdup(ctx->commit_graph_filenames_before[i]);
1925 i = ctx->num_commit_graphs_before - 1;
1926 g = ctx->r->objects->commit_graph;
1929 if (i < ctx->num_commit_graphs_after)
1930 ctx->commit_graph_hash_after[i] = xstrdup(oid_to_hex(&g->oid));
1937 static void merge_commit_graph(struct write_commit_graph_context *ctx,
1938 struct commit_graph *g)
1941 uint32_t offset = g->num_commits_in_base;
1943 ALLOC_GROW(ctx->commits.list, ctx->commits.nr + g->num_commits, ctx->commits.alloc);
1945 for (i = 0; i < g->num_commits; i++) {
1946 struct object_id oid;
1947 struct commit *result;
1949 display_progress(ctx->progress, i + 1);
1951 load_oid_from_graph(g, i + offset, &oid);
1953 /* only add commits if they still exist in the repo */
1954 result = lookup_commit_reference_gently(ctx->r, &oid, 1);
1957 ctx->commits.list[ctx->commits.nr] = result;
1963 static int commit_compare(const void *_a, const void *_b)
1965 const struct commit *a = *(const struct commit **)_a;
1966 const struct commit *b = *(const struct commit **)_b;
1967 return oidcmp(&a->object.oid, &b->object.oid);
1970 static void sort_and_scan_merged_commits(struct write_commit_graph_context *ctx)
1974 if (ctx->report_progress)
1975 ctx->progress = start_delayed_progress(
1976 _("Scanning merged commits"),
1979 QSORT(ctx->commits.list, ctx->commits.nr, commit_compare);
1981 ctx->num_extra_edges = 0;
1982 for (i = 0; i < ctx->commits.nr; i++) {
1983 display_progress(ctx->progress, i);
1985 if (i && oideq(&ctx->commits.list[i - 1]->object.oid,
1986 &ctx->commits.list[i]->object.oid)) {
1987 die(_("unexpected duplicate commit id %s"),
1988 oid_to_hex(&ctx->commits.list[i]->object.oid));
1990 unsigned int num_parents;
1992 num_parents = commit_list_count(ctx->commits.list[i]->parents);
1993 if (num_parents > 2)
1994 ctx->num_extra_edges += num_parents - 1;
1998 stop_progress(&ctx->progress);
2001 static void merge_commit_graphs(struct write_commit_graph_context *ctx)
2003 struct commit_graph *g = ctx->r->objects->commit_graph;
2004 uint32_t current_graph_number = ctx->num_commit_graphs_before;
2006 while (g && current_graph_number >= ctx->num_commit_graphs_after) {
2007 current_graph_number--;
2009 if (ctx->report_progress)
2010 ctx->progress = start_delayed_progress(_("Merging commit-graph"), 0);
2012 merge_commit_graph(ctx, g);
2013 stop_progress(&ctx->progress);
2019 ctx->new_base_graph = g;
2020 ctx->new_num_commits_in_base = g->num_commits + g->num_commits_in_base;
2023 if (ctx->new_base_graph)
2024 ctx->base_graph_name = xstrdup(ctx->new_base_graph->filename);
2026 sort_and_scan_merged_commits(ctx);
2029 static void mark_commit_graphs(struct write_commit_graph_context *ctx)
2032 time_t now = time(NULL);
2034 for (i = ctx->num_commit_graphs_after - 1; i < ctx->num_commit_graphs_before; i++) {
2036 struct utimbuf updated_time;
2038 stat(ctx->commit_graph_filenames_before[i], &st);
2040 updated_time.actime = st.st_atime;
2041 updated_time.modtime = now;
2042 utime(ctx->commit_graph_filenames_before[i], &updated_time);
2046 static void expire_commit_graphs(struct write_commit_graph_context *ctx)
2048 struct strbuf path = STRBUF_INIT;
2052 timestamp_t expire_time = time(NULL);
2054 if (ctx->split_opts && ctx->split_opts->expire_time)
2055 expire_time = ctx->split_opts->expire_time;
2057 char *chain_file_name = get_chain_filename(ctx->odb);
2058 unlink(chain_file_name);
2059 free(chain_file_name);
2060 ctx->num_commit_graphs_after = 0;
2063 strbuf_addstr(&path, ctx->odb->path);
2064 strbuf_addstr(&path, "/info/commit-graphs");
2065 dir = opendir(path.buf);
2070 strbuf_addch(&path, '/');
2071 dirnamelen = path.len;
2072 while ((de = readdir(dir)) != NULL) {
2074 uint32_t i, found = 0;
2076 strbuf_setlen(&path, dirnamelen);
2077 strbuf_addstr(&path, de->d_name);
2079 stat(path.buf, &st);
2081 if (st.st_mtime > expire_time)
2083 if (path.len < 6 || strcmp(path.buf + path.len - 6, ".graph"))
2086 for (i = 0; i < ctx->num_commit_graphs_after; i++) {
2087 if (!strcmp(ctx->commit_graph_filenames_after[i],
2099 strbuf_release(&path);
2102 int write_commit_graph(struct object_directory *odb,
2103 struct string_list *pack_indexes,
2104 struct oidset *commits,
2105 enum commit_graph_write_flags flags,
2106 const struct split_commit_graph_opts *split_opts)
2108 struct write_commit_graph_context *ctx;
2109 uint32_t i, count_distinct = 0;
2113 if (!commit_graph_compatible(the_repository))
2116 ctx = xcalloc(1, sizeof(struct write_commit_graph_context));
2117 ctx->r = the_repository;
2119 ctx->append = flags & COMMIT_GRAPH_WRITE_APPEND ? 1 : 0;
2120 ctx->report_progress = flags & COMMIT_GRAPH_WRITE_PROGRESS ? 1 : 0;
2121 ctx->split = flags & COMMIT_GRAPH_WRITE_SPLIT ? 1 : 0;
2122 ctx->split_opts = split_opts;
2123 ctx->total_bloom_filter_data_size = 0;
2125 if (flags & COMMIT_GRAPH_WRITE_BLOOM_FILTERS)
2126 ctx->changed_paths = 1;
2127 if (!(flags & COMMIT_GRAPH_NO_WRITE_BLOOM_FILTERS)) {
2128 struct commit_graph *g;
2129 prepare_commit_graph_one(ctx->r, ctx->odb);
2131 g = ctx->r->objects->commit_graph;
2133 /* We have changed-paths already. Keep them in the next graph */
2134 if (g && g->chunk_bloom_data) {
2135 ctx->changed_paths = 1;
2136 ctx->bloom_settings = g->bloom_filter_settings;
2141 struct commit_graph *g;
2142 prepare_commit_graph(ctx->r);
2144 g = ctx->r->objects->commit_graph;
2147 ctx->num_commit_graphs_before++;
2151 if (ctx->num_commit_graphs_before) {
2152 ALLOC_ARRAY(ctx->commit_graph_filenames_before, ctx->num_commit_graphs_before);
2153 i = ctx->num_commit_graphs_before;
2154 g = ctx->r->objects->commit_graph;
2157 ctx->commit_graph_filenames_before[--i] = xstrdup(g->filename);
2162 if (ctx->split_opts)
2163 replace = ctx->split_opts->flags & COMMIT_GRAPH_SPLIT_REPLACE;
2166 ctx->approx_nr_objects = approximate_object_count();
2167 ctx->oids.alloc = ctx->approx_nr_objects / 32;
2169 if (ctx->split && split_opts && ctx->oids.alloc > split_opts->max_commits)
2170 ctx->oids.alloc = split_opts->max_commits;
2173 prepare_commit_graph_one(ctx->r, ctx->odb);
2174 if (ctx->r->objects->commit_graph)
2175 ctx->oids.alloc += ctx->r->objects->commit_graph->num_commits;
2178 if (ctx->oids.alloc < 1024)
2179 ctx->oids.alloc = 1024;
2180 ALLOC_ARRAY(ctx->oids.list, ctx->oids.alloc);
2182 if (ctx->append && ctx->r->objects->commit_graph) {
2183 struct commit_graph *g = ctx->r->objects->commit_graph;
2184 for (i = 0; i < g->num_commits; i++) {
2185 const unsigned char *hash = g->chunk_oid_lookup + g->hash_len * i;
2186 hashcpy(ctx->oids.list[ctx->oids.nr++].hash, hash);
2191 ctx->order_by_pack = 1;
2192 if ((res = fill_oids_from_packs(ctx, pack_indexes)))
2197 if ((res = fill_oids_from_commits(ctx, commits)))
2201 if (!pack_indexes && !commits) {
2202 ctx->order_by_pack = 1;
2203 fill_oids_from_all_packs(ctx);
2206 close_reachable(ctx);
2208 count_distinct = count_distinct_commits(ctx);
2210 if (count_distinct >= GRAPH_EDGE_LAST_MASK) {
2211 error(_("the commit graph format cannot write %d commits"), count_distinct);
2216 ctx->commits.alloc = count_distinct;
2217 ALLOC_ARRAY(ctx->commits.list, ctx->commits.alloc);
2219 copy_oids_to_commits(ctx);
2221 if (ctx->commits.nr >= GRAPH_EDGE_LAST_MASK) {
2222 error(_("too many commits to write graph"));
2227 if (!ctx->commits.nr && !replace)
2231 split_graph_merge_strategy(ctx);
2234 merge_commit_graphs(ctx);
2236 ctx->num_commit_graphs_after = 1;
2238 compute_generation_numbers(ctx);
2240 if (ctx->changed_paths)
2241 compute_bloom_filters(ctx);
2243 res = write_commit_graph_file(ctx);
2246 mark_commit_graphs(ctx);
2248 expire_commit_graphs(ctx);
2251 free(ctx->graph_name);
2252 free(ctx->commits.list);
2253 free(ctx->oids.list);
2255 if (ctx->commit_graph_filenames_after) {
2256 for (i = 0; i < ctx->num_commit_graphs_after; i++) {
2257 free(ctx->commit_graph_filenames_after[i]);
2258 free(ctx->commit_graph_hash_after[i]);
2261 for (i = 0; i < ctx->num_commit_graphs_before; i++)
2262 free(ctx->commit_graph_filenames_before[i]);
2264 free(ctx->commit_graph_filenames_after);
2265 free(ctx->commit_graph_filenames_before);
2266 free(ctx->commit_graph_hash_after);
2274 #define VERIFY_COMMIT_GRAPH_ERROR_HASH 2
2275 static int verify_commit_graph_error;
2277 static void graph_report(const char *fmt, ...)
2281 verify_commit_graph_error = 1;
2283 vfprintf(stderr, fmt, ap);
2284 fprintf(stderr, "\n");
2288 #define GENERATION_ZERO_EXISTS 1
2289 #define GENERATION_NUMBER_EXISTS 2
2291 int verify_commit_graph(struct repository *r, struct commit_graph *g, int flags)
2293 uint32_t i, cur_fanout_pos = 0;
2294 struct object_id prev_oid, cur_oid, checksum;
2295 int generation_zero = 0;
2298 struct progress *progress = NULL;
2299 int local_error = 0;
2302 graph_report("no commit-graph file loaded");
2306 verify_commit_graph_error = verify_commit_graph_lite(g);
2307 if (verify_commit_graph_error)
2308 return verify_commit_graph_error;
2310 devnull = open("/dev/null", O_WRONLY);
2311 f = hashfd(devnull, NULL);
2312 hashwrite(f, g->data, g->data_len - g->hash_len);
2313 finalize_hashfile(f, checksum.hash, CSUM_CLOSE);
2314 if (!hasheq(checksum.hash, g->data + g->data_len - g->hash_len)) {
2315 graph_report(_("the commit-graph file has incorrect checksum and is likely corrupt"));
2316 verify_commit_graph_error = VERIFY_COMMIT_GRAPH_ERROR_HASH;
2319 for (i = 0; i < g->num_commits; i++) {
2320 struct commit *graph_commit;
2322 hashcpy(cur_oid.hash, g->chunk_oid_lookup + g->hash_len * i);
2324 if (i && oidcmp(&prev_oid, &cur_oid) >= 0)
2325 graph_report(_("commit-graph has incorrect OID order: %s then %s"),
2326 oid_to_hex(&prev_oid),
2327 oid_to_hex(&cur_oid));
2329 oidcpy(&prev_oid, &cur_oid);
2331 while (cur_oid.hash[0] > cur_fanout_pos) {
2332 uint32_t fanout_value = get_be32(g->chunk_oid_fanout + cur_fanout_pos);
2334 if (i != fanout_value)
2335 graph_report(_("commit-graph has incorrect fanout value: fanout[%d] = %u != %u"),
2336 cur_fanout_pos, fanout_value, i);
2340 graph_commit = lookup_commit(r, &cur_oid);
2341 if (!parse_commit_in_graph_one(r, g, graph_commit))
2342 graph_report(_("failed to parse commit %s from commit-graph"),
2343 oid_to_hex(&cur_oid));
2346 while (cur_fanout_pos < 256) {
2347 uint32_t fanout_value = get_be32(g->chunk_oid_fanout + cur_fanout_pos);
2349 if (g->num_commits != fanout_value)
2350 graph_report(_("commit-graph has incorrect fanout value: fanout[%d] = %u != %u"),
2351 cur_fanout_pos, fanout_value, i);
2356 if (verify_commit_graph_error & ~VERIFY_COMMIT_GRAPH_ERROR_HASH)
2357 return verify_commit_graph_error;
2359 if (flags & COMMIT_GRAPH_WRITE_PROGRESS)
2360 progress = start_progress(_("Verifying commits in commit graph"),
2363 for (i = 0; i < g->num_commits; i++) {
2364 struct commit *graph_commit, *odb_commit;
2365 struct commit_list *graph_parents, *odb_parents;
2366 uint32_t max_generation = 0;
2367 uint32_t generation;
2369 display_progress(progress, i + 1);
2370 hashcpy(cur_oid.hash, g->chunk_oid_lookup + g->hash_len * i);
2372 graph_commit = lookup_commit(r, &cur_oid);
2373 odb_commit = (struct commit *)create_object(r, &cur_oid, alloc_commit_node(r));
2374 if (parse_commit_internal(odb_commit, 0, 0)) {
2375 graph_report(_("failed to parse commit %s from object database for commit-graph"),
2376 oid_to_hex(&cur_oid));
2380 if (!oideq(&get_commit_tree_in_graph_one(r, g, graph_commit)->object.oid,
2381 get_commit_tree_oid(odb_commit)))
2382 graph_report(_("root tree OID for commit %s in commit-graph is %s != %s"),
2383 oid_to_hex(&cur_oid),
2384 oid_to_hex(get_commit_tree_oid(graph_commit)),
2385 oid_to_hex(get_commit_tree_oid(odb_commit)));
2387 graph_parents = graph_commit->parents;
2388 odb_parents = odb_commit->parents;
2390 while (graph_parents) {
2391 if (odb_parents == NULL) {
2392 graph_report(_("commit-graph parent list for commit %s is too long"),
2393 oid_to_hex(&cur_oid));
2397 /* parse parent in case it is in a base graph */
2398 parse_commit_in_graph_one(r, g, graph_parents->item);
2400 if (!oideq(&graph_parents->item->object.oid, &odb_parents->item->object.oid))
2401 graph_report(_("commit-graph parent for %s is %s != %s"),
2402 oid_to_hex(&cur_oid),
2403 oid_to_hex(&graph_parents->item->object.oid),
2404 oid_to_hex(&odb_parents->item->object.oid));
2406 generation = commit_graph_generation(graph_parents->item);
2407 if (generation > max_generation)
2408 max_generation = generation;
2410 graph_parents = graph_parents->next;
2411 odb_parents = odb_parents->next;
2414 if (odb_parents != NULL)
2415 graph_report(_("commit-graph parent list for commit %s terminates early"),
2416 oid_to_hex(&cur_oid));
2418 if (!commit_graph_generation(graph_commit)) {
2419 if (generation_zero == GENERATION_NUMBER_EXISTS)
2420 graph_report(_("commit-graph has generation number zero for commit %s, but non-zero elsewhere"),
2421 oid_to_hex(&cur_oid));
2422 generation_zero = GENERATION_ZERO_EXISTS;
2423 } else if (generation_zero == GENERATION_ZERO_EXISTS)
2424 graph_report(_("commit-graph has non-zero generation number for commit %s, but zero elsewhere"),
2425 oid_to_hex(&cur_oid));
2427 if (generation_zero == GENERATION_ZERO_EXISTS)
2431 * If one of our parents has generation GENERATION_NUMBER_MAX, then
2432 * our generation is also GENERATION_NUMBER_MAX. Decrement to avoid
2433 * extra logic in the following condition.
2435 if (max_generation == GENERATION_NUMBER_MAX)
2438 generation = commit_graph_generation(graph_commit);
2439 if (generation != max_generation + 1)
2440 graph_report(_("commit-graph generation for commit %s is %u != %u"),
2441 oid_to_hex(&cur_oid),
2443 max_generation + 1);
2445 if (graph_commit->date != odb_commit->date)
2446 graph_report(_("commit date for commit %s in commit-graph is %"PRItime" != %"PRItime),
2447 oid_to_hex(&cur_oid),
2451 stop_progress(&progress);
2453 local_error = verify_commit_graph_error;
2455 if (!(flags & COMMIT_GRAPH_VERIFY_SHALLOW) && g->base_graph)
2456 local_error |= verify_commit_graph(r, g->base_graph, flags);
2461 void free_commit_graph(struct commit_graph *g)
2466 munmap((void *)g->data, g->data_len);
2470 free(g->bloom_filter_settings);
2474 void disable_commit_graph(struct repository *r)
2476 r->commit_graph_disabled = 1;