]> git.ipfire.org Git - thirdparty/git.git/blob - commit-graph.c
Merge branch 'en/header-cleanup'
[thirdparty/git.git] / commit-graph.c
1 #include "git-compat-util.h"
2 #include "config.h"
3 #include "hex.h"
4 #include "lockfile.h"
5 #include "pack.h"
6 #include "packfile.h"
7 #include "commit.h"
8 #include "object.h"
9 #include "refs.h"
10 #include "revision.h"
11 #include "hash-lookup.h"
12 #include "commit-graph.h"
13 #include "object-store.h"
14 #include "alloc.h"
15 #include "hashmap.h"
16 #include "replace-object.h"
17 #include "progress.h"
18 #include "bloom.h"
19 #include "commit-slab.h"
20 #include "shallow.h"
21 #include "json-writer.h"
22 #include "trace2.h"
23 #include "chunk-format.h"
24
25 void git_test_write_commit_graph_or_die(void)
26 {
27 int flags = 0;
28 if (!git_env_bool(GIT_TEST_COMMIT_GRAPH, 0))
29 return;
30
31 if (git_env_bool(GIT_TEST_COMMIT_GRAPH_CHANGED_PATHS, 0))
32 flags = COMMIT_GRAPH_WRITE_BLOOM_FILTERS;
33
34 if (write_commit_graph_reachable(the_repository->objects->odb,
35 flags, NULL))
36 die("failed to write commit-graph under GIT_TEST_COMMIT_GRAPH");
37 }
38
39 #define GRAPH_SIGNATURE 0x43475048 /* "CGPH" */
40 #define GRAPH_CHUNKID_OIDFANOUT 0x4f494446 /* "OIDF" */
41 #define GRAPH_CHUNKID_OIDLOOKUP 0x4f49444c /* "OIDL" */
42 #define GRAPH_CHUNKID_DATA 0x43444154 /* "CDAT" */
43 #define GRAPH_CHUNKID_GENERATION_DATA 0x47444132 /* "GDA2" */
44 #define GRAPH_CHUNKID_GENERATION_DATA_OVERFLOW 0x47444f32 /* "GDO2" */
45 #define GRAPH_CHUNKID_EXTRAEDGES 0x45444745 /* "EDGE" */
46 #define GRAPH_CHUNKID_BLOOMINDEXES 0x42494458 /* "BIDX" */
47 #define GRAPH_CHUNKID_BLOOMDATA 0x42444154 /* "BDAT" */
48 #define GRAPH_CHUNKID_BASE 0x42415345 /* "BASE" */
49
50 #define GRAPH_DATA_WIDTH (the_hash_algo->rawsz + 16)
51
52 #define GRAPH_VERSION_1 0x1
53 #define GRAPH_VERSION GRAPH_VERSION_1
54
55 #define GRAPH_EXTRA_EDGES_NEEDED 0x80000000
56 #define GRAPH_EDGE_LAST_MASK 0x7fffffff
57 #define GRAPH_PARENT_NONE 0x70000000
58
59 #define GRAPH_LAST_EDGE 0x80000000
60
61 #define GRAPH_HEADER_SIZE 8
62 #define GRAPH_FANOUT_SIZE (4 * 256)
63 #define GRAPH_MIN_SIZE (GRAPH_HEADER_SIZE + 4 * CHUNK_TOC_ENTRY_SIZE \
64 + GRAPH_FANOUT_SIZE + the_hash_algo->rawsz)
65
66 #define CORRECTED_COMMIT_DATE_OFFSET_OVERFLOW (1ULL << 31)
67
68 /* Remember to update object flag allocation in object.h */
69 #define REACHABLE (1u<<15)
70
71 define_commit_slab(topo_level_slab, uint32_t);
72
73 /* Keep track of the order in which commits are added to our list. */
74 define_commit_slab(commit_pos, int);
75 static struct commit_pos commit_pos = COMMIT_SLAB_INIT(1, commit_pos);
76
77 static void set_commit_pos(struct repository *r, const struct object_id *oid)
78 {
79 static int32_t max_pos;
80 struct commit *commit = lookup_commit(r, oid);
81
82 if (!commit)
83 return; /* should never happen, but be lenient */
84
85 *commit_pos_at(&commit_pos, commit) = max_pos++;
86 }
87
88 static int commit_pos_cmp(const void *va, const void *vb)
89 {
90 const struct commit *a = *(const struct commit **)va;
91 const struct commit *b = *(const struct commit **)vb;
92 return commit_pos_at(&commit_pos, a) -
93 commit_pos_at(&commit_pos, b);
94 }
95
96 define_commit_slab(commit_graph_data_slab, struct commit_graph_data);
97 static struct commit_graph_data_slab commit_graph_data_slab =
98 COMMIT_SLAB_INIT(1, commit_graph_data_slab);
99
100 static int get_configured_generation_version(struct repository *r)
101 {
102 int version = 2;
103 repo_config_get_int(r, "commitgraph.generationversion", &version);
104 return version;
105 }
106
107 uint32_t commit_graph_position(const struct commit *c)
108 {
109 struct commit_graph_data *data =
110 commit_graph_data_slab_peek(&commit_graph_data_slab, c);
111
112 return data ? data->graph_pos : COMMIT_NOT_FROM_GRAPH;
113 }
114
115 timestamp_t commit_graph_generation(const struct commit *c)
116 {
117 struct commit_graph_data *data =
118 commit_graph_data_slab_peek(&commit_graph_data_slab, c);
119
120 if (!data)
121 return GENERATION_NUMBER_INFINITY;
122 else if (data->graph_pos == COMMIT_NOT_FROM_GRAPH)
123 return GENERATION_NUMBER_INFINITY;
124
125 return data->generation;
126 }
127
128 static struct commit_graph_data *commit_graph_data_at(const struct commit *c)
129 {
130 unsigned int i, nth_slab;
131 struct commit_graph_data *data =
132 commit_graph_data_slab_peek(&commit_graph_data_slab, c);
133
134 if (data)
135 return data;
136
137 nth_slab = c->index / commit_graph_data_slab.slab_size;
138 data = commit_graph_data_slab_at(&commit_graph_data_slab, c);
139
140 /*
141 * commit-slab initializes elements with zero, overwrite this with
142 * COMMIT_NOT_FROM_GRAPH for graph_pos.
143 *
144 * We avoid initializing generation with checking if graph position
145 * is not COMMIT_NOT_FROM_GRAPH.
146 */
147 for (i = 0; i < commit_graph_data_slab.slab_size; i++) {
148 commit_graph_data_slab.slab[nth_slab][i].graph_pos =
149 COMMIT_NOT_FROM_GRAPH;
150 }
151
152 return data;
153 }
154
155 /*
156 * Should be used only while writing commit-graph as it compares
157 * generation value of commits by directly accessing commit-slab.
158 */
159 static int commit_gen_cmp(const void *va, const void *vb)
160 {
161 const struct commit *a = *(const struct commit **)va;
162 const struct commit *b = *(const struct commit **)vb;
163
164 const timestamp_t generation_a = commit_graph_data_at(a)->generation;
165 const timestamp_t generation_b = commit_graph_data_at(b)->generation;
166 /* lower generation commits first */
167 if (generation_a < generation_b)
168 return -1;
169 else if (generation_a > generation_b)
170 return 1;
171
172 /* use date as a heuristic when generations are equal */
173 if (a->date < b->date)
174 return -1;
175 else if (a->date > b->date)
176 return 1;
177 return 0;
178 }
179
180 char *get_commit_graph_filename(struct object_directory *obj_dir)
181 {
182 return xstrfmt("%s/info/commit-graph", obj_dir->path);
183 }
184
185 static char *get_split_graph_filename(struct object_directory *odb,
186 const char *oid_hex)
187 {
188 return xstrfmt("%s/info/commit-graphs/graph-%s.graph", odb->path,
189 oid_hex);
190 }
191
192 char *get_commit_graph_chain_filename(struct object_directory *odb)
193 {
194 return xstrfmt("%s/info/commit-graphs/commit-graph-chain", odb->path);
195 }
196
197 static struct commit_graph *alloc_commit_graph(void)
198 {
199 struct commit_graph *g = xcalloc(1, sizeof(*g));
200
201 return g;
202 }
203
204 extern int read_replace_refs;
205
206 static int commit_graph_compatible(struct repository *r)
207 {
208 if (!r->gitdir)
209 return 0;
210
211 if (read_replace_refs) {
212 prepare_replace_object(r);
213 if (hashmap_get_size(&r->objects->replace_map->map))
214 return 0;
215 }
216
217 prepare_commit_graft(r);
218 if (r->parsed_objects &&
219 (r->parsed_objects->grafts_nr || r->parsed_objects->substituted_parent))
220 return 0;
221 if (is_repository_shallow(r))
222 return 0;
223
224 return 1;
225 }
226
227 int open_commit_graph(const char *graph_file, int *fd, struct stat *st)
228 {
229 *fd = git_open(graph_file);
230 if (*fd < 0)
231 return 0;
232 if (fstat(*fd, st)) {
233 close(*fd);
234 return 0;
235 }
236 return 1;
237 }
238
239 struct commit_graph *load_commit_graph_one_fd_st(struct repository *r,
240 int fd, struct stat *st,
241 struct object_directory *odb)
242 {
243 void *graph_map;
244 size_t graph_size;
245 struct commit_graph *ret;
246
247 graph_size = xsize_t(st->st_size);
248
249 if (graph_size < GRAPH_MIN_SIZE) {
250 close(fd);
251 error(_("commit-graph file is too small"));
252 return NULL;
253 }
254 graph_map = xmmap(NULL, graph_size, PROT_READ, MAP_PRIVATE, fd, 0);
255 close(fd);
256 prepare_repo_settings(r);
257 ret = parse_commit_graph(&r->settings, graph_map, graph_size);
258
259 if (ret)
260 ret->odb = odb;
261 else
262 munmap(graph_map, graph_size);
263
264 return ret;
265 }
266
267 static int verify_commit_graph_lite(struct commit_graph *g)
268 {
269 /*
270 * Basic validation shared between parse_commit_graph()
271 * which'll be called every time the graph is used, and the
272 * much more expensive verify_commit_graph() used by
273 * "commit-graph verify".
274 *
275 * There should only be very basic checks here to ensure that
276 * we don't e.g. segfault in fill_commit_in_graph(), but
277 * because this is a very hot codepath nothing that e.g. loops
278 * over g->num_commits, or runs a checksum on the commit-graph
279 * itself.
280 */
281 if (!g->chunk_oid_fanout) {
282 error("commit-graph is missing the OID Fanout chunk");
283 return 1;
284 }
285 if (!g->chunk_oid_lookup) {
286 error("commit-graph is missing the OID Lookup chunk");
287 return 1;
288 }
289 if (!g->chunk_commit_data) {
290 error("commit-graph is missing the Commit Data chunk");
291 return 1;
292 }
293
294 return 0;
295 }
296
297 static int graph_read_oid_lookup(const unsigned char *chunk_start,
298 size_t chunk_size, void *data)
299 {
300 struct commit_graph *g = data;
301 g->chunk_oid_lookup = chunk_start;
302 g->num_commits = chunk_size / g->hash_len;
303 return 0;
304 }
305
306 static int graph_read_bloom_data(const unsigned char *chunk_start,
307 size_t chunk_size, void *data)
308 {
309 struct commit_graph *g = data;
310 uint32_t hash_version;
311 g->chunk_bloom_data = chunk_start;
312 hash_version = get_be32(chunk_start);
313
314 if (hash_version != 1)
315 return 0;
316
317 g->bloom_filter_settings = xmalloc(sizeof(struct bloom_filter_settings));
318 g->bloom_filter_settings->hash_version = hash_version;
319 g->bloom_filter_settings->num_hashes = get_be32(chunk_start + 4);
320 g->bloom_filter_settings->bits_per_entry = get_be32(chunk_start + 8);
321 g->bloom_filter_settings->max_changed_paths = DEFAULT_BLOOM_MAX_CHANGES;
322
323 return 0;
324 }
325
326 struct commit_graph *parse_commit_graph(struct repo_settings *s,
327 void *graph_map, size_t graph_size)
328 {
329 const unsigned char *data;
330 struct commit_graph *graph;
331 uint32_t graph_signature;
332 unsigned char graph_version, hash_version;
333 struct chunkfile *cf = NULL;
334
335 if (!graph_map)
336 return NULL;
337
338 if (graph_size < GRAPH_MIN_SIZE)
339 return NULL;
340
341 data = (const unsigned char *)graph_map;
342
343 graph_signature = get_be32(data);
344 if (graph_signature != GRAPH_SIGNATURE) {
345 error(_("commit-graph signature %X does not match signature %X"),
346 graph_signature, GRAPH_SIGNATURE);
347 return NULL;
348 }
349
350 graph_version = *(unsigned char*)(data + 4);
351 if (graph_version != GRAPH_VERSION) {
352 error(_("commit-graph version %X does not match version %X"),
353 graph_version, GRAPH_VERSION);
354 return NULL;
355 }
356
357 hash_version = *(unsigned char*)(data + 5);
358 if (hash_version != oid_version(the_hash_algo)) {
359 error(_("commit-graph hash version %X does not match version %X"),
360 hash_version, oid_version(the_hash_algo));
361 return NULL;
362 }
363
364 graph = alloc_commit_graph();
365
366 graph->hash_len = the_hash_algo->rawsz;
367 graph->num_chunks = *(unsigned char*)(data + 6);
368 graph->data = graph_map;
369 graph->data_len = graph_size;
370
371 if (graph_size < GRAPH_HEADER_SIZE +
372 (graph->num_chunks + 1) * CHUNK_TOC_ENTRY_SIZE +
373 GRAPH_FANOUT_SIZE + the_hash_algo->rawsz) {
374 error(_("commit-graph file is too small to hold %u chunks"),
375 graph->num_chunks);
376 free(graph);
377 return NULL;
378 }
379
380 cf = init_chunkfile(NULL);
381
382 if (read_table_of_contents(cf, graph->data, graph_size,
383 GRAPH_HEADER_SIZE, graph->num_chunks))
384 goto free_and_return;
385
386 pair_chunk(cf, GRAPH_CHUNKID_OIDFANOUT,
387 (const unsigned char **)&graph->chunk_oid_fanout);
388 read_chunk(cf, GRAPH_CHUNKID_OIDLOOKUP, graph_read_oid_lookup, graph);
389 pair_chunk(cf, GRAPH_CHUNKID_DATA, &graph->chunk_commit_data);
390 pair_chunk(cf, GRAPH_CHUNKID_EXTRAEDGES, &graph->chunk_extra_edges);
391 pair_chunk(cf, GRAPH_CHUNKID_BASE, &graph->chunk_base_graphs);
392
393 if (s->commit_graph_generation_version >= 2) {
394 pair_chunk(cf, GRAPH_CHUNKID_GENERATION_DATA,
395 &graph->chunk_generation_data);
396 pair_chunk(cf, GRAPH_CHUNKID_GENERATION_DATA_OVERFLOW,
397 &graph->chunk_generation_data_overflow);
398
399 if (graph->chunk_generation_data)
400 graph->read_generation_data = 1;
401 }
402
403 if (s->commit_graph_read_changed_paths) {
404 pair_chunk(cf, GRAPH_CHUNKID_BLOOMINDEXES,
405 &graph->chunk_bloom_indexes);
406 read_chunk(cf, GRAPH_CHUNKID_BLOOMDATA,
407 graph_read_bloom_data, graph);
408 }
409
410 if (graph->chunk_bloom_indexes && graph->chunk_bloom_data) {
411 init_bloom_filters();
412 } else {
413 /* We need both the bloom chunks to exist together. Else ignore the data */
414 graph->chunk_bloom_indexes = NULL;
415 graph->chunk_bloom_data = NULL;
416 FREE_AND_NULL(graph->bloom_filter_settings);
417 }
418
419 oidread(&graph->oid, graph->data + graph->data_len - graph->hash_len);
420
421 if (verify_commit_graph_lite(graph))
422 goto free_and_return;
423
424 free_chunkfile(cf);
425 return graph;
426
427 free_and_return:
428 free_chunkfile(cf);
429 free(graph->bloom_filter_settings);
430 free(graph);
431 return NULL;
432 }
433
434 static struct commit_graph *load_commit_graph_one(struct repository *r,
435 const char *graph_file,
436 struct object_directory *odb)
437 {
438
439 struct stat st;
440 int fd;
441 struct commit_graph *g;
442 int open_ok = open_commit_graph(graph_file, &fd, &st);
443
444 if (!open_ok)
445 return NULL;
446
447 g = load_commit_graph_one_fd_st(r, fd, &st, odb);
448
449 if (g)
450 g->filename = xstrdup(graph_file);
451
452 return g;
453 }
454
455 static struct commit_graph *load_commit_graph_v1(struct repository *r,
456 struct object_directory *odb)
457 {
458 char *graph_name = get_commit_graph_filename(odb);
459 struct commit_graph *g = load_commit_graph_one(r, graph_name, odb);
460 free(graph_name);
461
462 return g;
463 }
464
465 static int add_graph_to_chain(struct commit_graph *g,
466 struct commit_graph *chain,
467 struct object_id *oids,
468 int n)
469 {
470 struct commit_graph *cur_g = chain;
471
472 if (n && !g->chunk_base_graphs) {
473 warning(_("commit-graph has no base graphs chunk"));
474 return 0;
475 }
476
477 while (n) {
478 n--;
479
480 if (!cur_g ||
481 !oideq(&oids[n], &cur_g->oid) ||
482 !hasheq(oids[n].hash, g->chunk_base_graphs + g->hash_len * n)) {
483 warning(_("commit-graph chain does not match"));
484 return 0;
485 }
486
487 cur_g = cur_g->base_graph;
488 }
489
490 g->base_graph = chain;
491
492 if (chain)
493 g->num_commits_in_base = chain->num_commits + chain->num_commits_in_base;
494
495 return 1;
496 }
497
498 static struct commit_graph *load_commit_graph_chain(struct repository *r,
499 struct object_directory *odb)
500 {
501 struct commit_graph *graph_chain = NULL;
502 struct strbuf line = STRBUF_INIT;
503 struct stat st;
504 struct object_id *oids;
505 int i = 0, valid = 1, count;
506 char *chain_name = get_commit_graph_chain_filename(odb);
507 FILE *fp;
508 int stat_res;
509
510 fp = fopen(chain_name, "r");
511 stat_res = stat(chain_name, &st);
512 free(chain_name);
513
514 if (!fp)
515 return NULL;
516 if (stat_res ||
517 st.st_size <= the_hash_algo->hexsz) {
518 fclose(fp);
519 return NULL;
520 }
521
522 count = st.st_size / (the_hash_algo->hexsz + 1);
523 CALLOC_ARRAY(oids, count);
524
525 prepare_alt_odb(r);
526
527 for (i = 0; i < count; i++) {
528 struct object_directory *odb;
529
530 if (strbuf_getline_lf(&line, fp) == EOF)
531 break;
532
533 if (get_oid_hex(line.buf, &oids[i])) {
534 warning(_("invalid commit-graph chain: line '%s' not a hash"),
535 line.buf);
536 valid = 0;
537 break;
538 }
539
540 valid = 0;
541 for (odb = r->objects->odb; odb; odb = odb->next) {
542 char *graph_name = get_split_graph_filename(odb, line.buf);
543 struct commit_graph *g = load_commit_graph_one(r, graph_name, odb);
544
545 free(graph_name);
546
547 if (g) {
548 if (add_graph_to_chain(g, graph_chain, oids, i)) {
549 graph_chain = g;
550 valid = 1;
551 }
552
553 break;
554 }
555 }
556
557 if (!valid) {
558 warning(_("unable to find all commit-graph files"));
559 break;
560 }
561 }
562
563 free(oids);
564 fclose(fp);
565 strbuf_release(&line);
566
567 return graph_chain;
568 }
569
570 /*
571 * returns 1 if and only if all graphs in the chain have
572 * corrected commit dates stored in the generation_data chunk.
573 */
574 static int validate_mixed_generation_chain(struct commit_graph *g)
575 {
576 int read_generation_data = 1;
577 struct commit_graph *p = g;
578
579 while (read_generation_data && p) {
580 read_generation_data = p->read_generation_data;
581 p = p->base_graph;
582 }
583
584 if (read_generation_data)
585 return 1;
586
587 while (g) {
588 g->read_generation_data = 0;
589 g = g->base_graph;
590 }
591
592 return 0;
593 }
594
595 struct commit_graph *read_commit_graph_one(struct repository *r,
596 struct object_directory *odb)
597 {
598 struct commit_graph *g = load_commit_graph_v1(r, odb);
599
600 if (!g)
601 g = load_commit_graph_chain(r, odb);
602
603 validate_mixed_generation_chain(g);
604
605 return g;
606 }
607
608 static void prepare_commit_graph_one(struct repository *r,
609 struct object_directory *odb)
610 {
611
612 if (r->objects->commit_graph)
613 return;
614
615 r->objects->commit_graph = read_commit_graph_one(r, odb);
616 }
617
618 /*
619 * Return 1 if commit_graph is non-NULL, and 0 otherwise.
620 *
621 * On the first invocation, this function attempts to load the commit
622 * graph if the_repository is configured to have one.
623 */
624 static int prepare_commit_graph(struct repository *r)
625 {
626 struct object_directory *odb;
627
628 /*
629 * Early return if there is no git dir or if the commit graph is
630 * disabled.
631 *
632 * This must come before the "already attempted?" check below, because
633 * we want to disable even an already-loaded graph file.
634 */
635 if (!r->gitdir || r->commit_graph_disabled)
636 return 0;
637
638 if (r->objects->commit_graph_attempted)
639 return !!r->objects->commit_graph;
640 r->objects->commit_graph_attempted = 1;
641
642 prepare_repo_settings(r);
643
644 if (!git_env_bool(GIT_TEST_COMMIT_GRAPH, 0) &&
645 r->settings.core_commit_graph != 1)
646 /*
647 * This repository is not configured to use commit graphs, so
648 * do not load one. (But report commit_graph_attempted anyway
649 * so that commit graph loading is not attempted again for this
650 * repository.)
651 */
652 return 0;
653
654 if (!commit_graph_compatible(r))
655 return 0;
656
657 prepare_alt_odb(r);
658 for (odb = r->objects->odb;
659 !r->objects->commit_graph && odb;
660 odb = odb->next)
661 prepare_commit_graph_one(r, odb);
662 return !!r->objects->commit_graph;
663 }
664
665 int generation_numbers_enabled(struct repository *r)
666 {
667 uint32_t first_generation;
668 struct commit_graph *g;
669 if (!prepare_commit_graph(r))
670 return 0;
671
672 g = r->objects->commit_graph;
673
674 if (!g->num_commits)
675 return 0;
676
677 first_generation = get_be32(g->chunk_commit_data +
678 g->hash_len + 8) >> 2;
679
680 return !!first_generation;
681 }
682
683 int corrected_commit_dates_enabled(struct repository *r)
684 {
685 struct commit_graph *g;
686 if (!prepare_commit_graph(r))
687 return 0;
688
689 g = r->objects->commit_graph;
690
691 if (!g->num_commits)
692 return 0;
693
694 return g->read_generation_data;
695 }
696
697 struct bloom_filter_settings *get_bloom_filter_settings(struct repository *r)
698 {
699 struct commit_graph *g = r->objects->commit_graph;
700 while (g) {
701 if (g->bloom_filter_settings)
702 return g->bloom_filter_settings;
703 g = g->base_graph;
704 }
705 return NULL;
706 }
707
708 static void close_commit_graph_one(struct commit_graph *g)
709 {
710 if (!g)
711 return;
712
713 clear_commit_graph_data_slab(&commit_graph_data_slab);
714 close_commit_graph_one(g->base_graph);
715 free_commit_graph(g);
716 }
717
718 void close_commit_graph(struct raw_object_store *o)
719 {
720 close_commit_graph_one(o->commit_graph);
721 o->commit_graph = NULL;
722 }
723
724 static int bsearch_graph(struct commit_graph *g, const struct object_id *oid, uint32_t *pos)
725 {
726 return bsearch_hash(oid->hash, g->chunk_oid_fanout,
727 g->chunk_oid_lookup, g->hash_len, pos);
728 }
729
730 static void load_oid_from_graph(struct commit_graph *g,
731 uint32_t pos,
732 struct object_id *oid)
733 {
734 uint32_t lex_index;
735
736 while (g && pos < g->num_commits_in_base)
737 g = g->base_graph;
738
739 if (!g)
740 BUG("NULL commit-graph");
741
742 if (pos >= g->num_commits + g->num_commits_in_base)
743 die(_("invalid commit position. commit-graph is likely corrupt"));
744
745 lex_index = pos - g->num_commits_in_base;
746
747 oidread(oid, g->chunk_oid_lookup + g->hash_len * lex_index);
748 }
749
750 static struct commit_list **insert_parent_or_die(struct repository *r,
751 struct commit_graph *g,
752 uint32_t pos,
753 struct commit_list **pptr)
754 {
755 struct commit *c;
756 struct object_id oid;
757
758 if (pos >= g->num_commits + g->num_commits_in_base)
759 die("invalid parent position %"PRIu32, pos);
760
761 load_oid_from_graph(g, pos, &oid);
762 c = lookup_commit(r, &oid);
763 if (!c)
764 die(_("could not find commit %s"), oid_to_hex(&oid));
765 commit_graph_data_at(c)->graph_pos = pos;
766 return &commit_list_insert(c, pptr)->next;
767 }
768
769 static void fill_commit_graph_info(struct commit *item, struct commit_graph *g, uint32_t pos)
770 {
771 const unsigned char *commit_data;
772 struct commit_graph_data *graph_data;
773 uint32_t lex_index, offset_pos;
774 uint64_t date_high, date_low, offset;
775
776 while (pos < g->num_commits_in_base)
777 g = g->base_graph;
778
779 if (pos >= g->num_commits + g->num_commits_in_base)
780 die(_("invalid commit position. commit-graph is likely corrupt"));
781
782 lex_index = pos - g->num_commits_in_base;
783 commit_data = g->chunk_commit_data + GRAPH_DATA_WIDTH * lex_index;
784
785 graph_data = commit_graph_data_at(item);
786 graph_data->graph_pos = pos;
787
788 date_high = get_be32(commit_data + g->hash_len + 8) & 0x3;
789 date_low = get_be32(commit_data + g->hash_len + 12);
790 item->date = (timestamp_t)((date_high << 32) | date_low);
791
792 if (g->read_generation_data) {
793 offset = (timestamp_t)get_be32(g->chunk_generation_data + sizeof(uint32_t) * lex_index);
794
795 if (offset & CORRECTED_COMMIT_DATE_OFFSET_OVERFLOW) {
796 if (!g->chunk_generation_data_overflow)
797 die(_("commit-graph requires overflow generation data but has none"));
798
799 offset_pos = offset ^ CORRECTED_COMMIT_DATE_OFFSET_OVERFLOW;
800 graph_data->generation = item->date + get_be64(g->chunk_generation_data_overflow + 8 * offset_pos);
801 } else
802 graph_data->generation = item->date + offset;
803 } else
804 graph_data->generation = get_be32(commit_data + g->hash_len + 8) >> 2;
805
806 if (g->topo_levels)
807 *topo_level_slab_at(g->topo_levels, item) = get_be32(commit_data + g->hash_len + 8) >> 2;
808 }
809
810 static inline void set_commit_tree(struct commit *c, struct tree *t)
811 {
812 c->maybe_tree = t;
813 }
814
815 static int fill_commit_in_graph(struct repository *r,
816 struct commit *item,
817 struct commit_graph *g, uint32_t pos)
818 {
819 uint32_t edge_value;
820 uint32_t *parent_data_ptr;
821 struct commit_list **pptr;
822 const unsigned char *commit_data;
823 uint32_t lex_index;
824
825 while (pos < g->num_commits_in_base)
826 g = g->base_graph;
827
828 fill_commit_graph_info(item, g, pos);
829
830 lex_index = pos - g->num_commits_in_base;
831 commit_data = g->chunk_commit_data + (g->hash_len + 16) * lex_index;
832
833 item->object.parsed = 1;
834
835 set_commit_tree(item, NULL);
836
837 pptr = &item->parents;
838
839 edge_value = get_be32(commit_data + g->hash_len);
840 if (edge_value == GRAPH_PARENT_NONE)
841 return 1;
842 pptr = insert_parent_or_die(r, g, edge_value, pptr);
843
844 edge_value = get_be32(commit_data + g->hash_len + 4);
845 if (edge_value == GRAPH_PARENT_NONE)
846 return 1;
847 if (!(edge_value & GRAPH_EXTRA_EDGES_NEEDED)) {
848 pptr = insert_parent_or_die(r, g, edge_value, pptr);
849 return 1;
850 }
851
852 parent_data_ptr = (uint32_t*)(g->chunk_extra_edges +
853 4 * (uint64_t)(edge_value & GRAPH_EDGE_LAST_MASK));
854 do {
855 edge_value = get_be32(parent_data_ptr);
856 pptr = insert_parent_or_die(r, g,
857 edge_value & GRAPH_EDGE_LAST_MASK,
858 pptr);
859 parent_data_ptr++;
860 } while (!(edge_value & GRAPH_LAST_EDGE));
861
862 return 1;
863 }
864
865 static int search_commit_pos_in_graph(const struct object_id *id, struct commit_graph *g, uint32_t *pos)
866 {
867 struct commit_graph *cur_g = g;
868 uint32_t lex_index;
869
870 while (cur_g && !bsearch_graph(cur_g, id, &lex_index))
871 cur_g = cur_g->base_graph;
872
873 if (cur_g) {
874 *pos = lex_index + cur_g->num_commits_in_base;
875 return 1;
876 }
877
878 return 0;
879 }
880
881 static int find_commit_pos_in_graph(struct commit *item, struct commit_graph *g, uint32_t *pos)
882 {
883 uint32_t graph_pos = commit_graph_position(item);
884 if (graph_pos != COMMIT_NOT_FROM_GRAPH) {
885 *pos = graph_pos;
886 return 1;
887 } else {
888 return search_commit_pos_in_graph(&item->object.oid, g, pos);
889 }
890 }
891
892 int repo_find_commit_pos_in_graph(struct repository *r, struct commit *c,
893 uint32_t *pos)
894 {
895 if (!prepare_commit_graph(r))
896 return 0;
897 return find_commit_pos_in_graph(c, r->objects->commit_graph, pos);
898 }
899
900 struct commit *lookup_commit_in_graph(struct repository *repo, const struct object_id *id)
901 {
902 struct commit *commit;
903 uint32_t pos;
904
905 if (!prepare_commit_graph(repo))
906 return NULL;
907 if (!search_commit_pos_in_graph(id, repo->objects->commit_graph, &pos))
908 return NULL;
909 if (!has_object(repo, id, 0))
910 return NULL;
911
912 commit = lookup_commit(repo, id);
913 if (!commit)
914 return NULL;
915 if (commit->object.parsed)
916 return commit;
917
918 if (!fill_commit_in_graph(repo, commit, repo->objects->commit_graph, pos))
919 return NULL;
920
921 return commit;
922 }
923
924 static int parse_commit_in_graph_one(struct repository *r,
925 struct commit_graph *g,
926 struct commit *item)
927 {
928 uint32_t pos;
929
930 if (item->object.parsed)
931 return 1;
932
933 if (find_commit_pos_in_graph(item, g, &pos))
934 return fill_commit_in_graph(r, item, g, pos);
935
936 return 0;
937 }
938
939 int parse_commit_in_graph(struct repository *r, struct commit *item)
940 {
941 static int checked_env = 0;
942
943 if (!checked_env &&
944 git_env_bool(GIT_TEST_COMMIT_GRAPH_DIE_ON_PARSE, 0))
945 die("dying as requested by the '%s' variable on commit-graph parse!",
946 GIT_TEST_COMMIT_GRAPH_DIE_ON_PARSE);
947 checked_env = 1;
948
949 if (!prepare_commit_graph(r))
950 return 0;
951 return parse_commit_in_graph_one(r, r->objects->commit_graph, item);
952 }
953
954 void load_commit_graph_info(struct repository *r, struct commit *item)
955 {
956 uint32_t pos;
957 if (repo_find_commit_pos_in_graph(r, item, &pos))
958 fill_commit_graph_info(item, r->objects->commit_graph, pos);
959 }
960
961 static struct tree *load_tree_for_commit(struct repository *r,
962 struct commit_graph *g,
963 struct commit *c)
964 {
965 struct object_id oid;
966 const unsigned char *commit_data;
967 uint32_t graph_pos = commit_graph_position(c);
968
969 while (graph_pos < g->num_commits_in_base)
970 g = g->base_graph;
971
972 commit_data = g->chunk_commit_data +
973 GRAPH_DATA_WIDTH * (graph_pos - g->num_commits_in_base);
974
975 oidread(&oid, commit_data);
976 set_commit_tree(c, lookup_tree(r, &oid));
977
978 return c->maybe_tree;
979 }
980
981 static struct tree *get_commit_tree_in_graph_one(struct repository *r,
982 struct commit_graph *g,
983 const struct commit *c)
984 {
985 if (c->maybe_tree)
986 return c->maybe_tree;
987 if (commit_graph_position(c) == COMMIT_NOT_FROM_GRAPH)
988 BUG("get_commit_tree_in_graph_one called from non-commit-graph commit");
989
990 return load_tree_for_commit(r, g, (struct commit *)c);
991 }
992
993 struct tree *get_commit_tree_in_graph(struct repository *r, const struct commit *c)
994 {
995 return get_commit_tree_in_graph_one(r, r->objects->commit_graph, c);
996 }
997
998 struct packed_commit_list {
999 struct commit **list;
1000 size_t nr;
1001 size_t alloc;
1002 };
1003
1004 struct write_commit_graph_context {
1005 struct repository *r;
1006 struct object_directory *odb;
1007 char *graph_name;
1008 struct oid_array oids;
1009 struct packed_commit_list commits;
1010 int num_extra_edges;
1011 int num_generation_data_overflows;
1012 unsigned long approx_nr_objects;
1013 struct progress *progress;
1014 int progress_done;
1015 uint64_t progress_cnt;
1016
1017 char *base_graph_name;
1018 int num_commit_graphs_before;
1019 int num_commit_graphs_after;
1020 char **commit_graph_filenames_before;
1021 char **commit_graph_filenames_after;
1022 char **commit_graph_hash_after;
1023 uint32_t new_num_commits_in_base;
1024 struct commit_graph *new_base_graph;
1025
1026 unsigned append:1,
1027 report_progress:1,
1028 split:1,
1029 changed_paths:1,
1030 order_by_pack:1,
1031 write_generation_data:1,
1032 trust_generation_numbers:1;
1033
1034 struct topo_level_slab *topo_levels;
1035 const struct commit_graph_opts *opts;
1036 size_t total_bloom_filter_data_size;
1037 const struct bloom_filter_settings *bloom_settings;
1038
1039 int count_bloom_filter_computed;
1040 int count_bloom_filter_not_computed;
1041 int count_bloom_filter_trunc_empty;
1042 int count_bloom_filter_trunc_large;
1043 };
1044
1045 static int write_graph_chunk_fanout(struct hashfile *f,
1046 void *data)
1047 {
1048 struct write_commit_graph_context *ctx = data;
1049 int i, count = 0;
1050 struct commit **list = ctx->commits.list;
1051
1052 /*
1053 * Write the first-level table (the list is sorted,
1054 * but we use a 256-entry lookup to be able to avoid
1055 * having to do eight extra binary search iterations).
1056 */
1057 for (i = 0; i < 256; i++) {
1058 while (count < ctx->commits.nr) {
1059 if ((*list)->object.oid.hash[0] != i)
1060 break;
1061 display_progress(ctx->progress, ++ctx->progress_cnt);
1062 count++;
1063 list++;
1064 }
1065
1066 hashwrite_be32(f, count);
1067 }
1068
1069 return 0;
1070 }
1071
1072 static int write_graph_chunk_oids(struct hashfile *f,
1073 void *data)
1074 {
1075 struct write_commit_graph_context *ctx = data;
1076 struct commit **list = ctx->commits.list;
1077 int count;
1078 for (count = 0; count < ctx->commits.nr; count++, list++) {
1079 display_progress(ctx->progress, ++ctx->progress_cnt);
1080 hashwrite(f, (*list)->object.oid.hash, the_hash_algo->rawsz);
1081 }
1082
1083 return 0;
1084 }
1085
1086 static const struct object_id *commit_to_oid(size_t index, const void *table)
1087 {
1088 const struct commit * const *commits = table;
1089 return &commits[index]->object.oid;
1090 }
1091
1092 static int write_graph_chunk_data(struct hashfile *f,
1093 void *data)
1094 {
1095 struct write_commit_graph_context *ctx = data;
1096 struct commit **list = ctx->commits.list;
1097 struct commit **last = ctx->commits.list + ctx->commits.nr;
1098 uint32_t num_extra_edges = 0;
1099
1100 while (list < last) {
1101 struct commit_list *parent;
1102 struct object_id *tree;
1103 int edge_value;
1104 uint32_t packedDate[2];
1105 display_progress(ctx->progress, ++ctx->progress_cnt);
1106
1107 if (repo_parse_commit_no_graph(ctx->r, *list))
1108 die(_("unable to parse commit %s"),
1109 oid_to_hex(&(*list)->object.oid));
1110 tree = get_commit_tree_oid(*list);
1111 hashwrite(f, tree->hash, the_hash_algo->rawsz);
1112
1113 parent = (*list)->parents;
1114
1115 if (!parent)
1116 edge_value = GRAPH_PARENT_NONE;
1117 else {
1118 edge_value = oid_pos(&parent->item->object.oid,
1119 ctx->commits.list,
1120 ctx->commits.nr,
1121 commit_to_oid);
1122
1123 if (edge_value >= 0)
1124 edge_value += ctx->new_num_commits_in_base;
1125 else if (ctx->new_base_graph) {
1126 uint32_t pos;
1127 if (find_commit_pos_in_graph(parent->item,
1128 ctx->new_base_graph,
1129 &pos))
1130 edge_value = pos;
1131 }
1132
1133 if (edge_value < 0)
1134 BUG("missing parent %s for commit %s",
1135 oid_to_hex(&parent->item->object.oid),
1136 oid_to_hex(&(*list)->object.oid));
1137 }
1138
1139 hashwrite_be32(f, edge_value);
1140
1141 if (parent)
1142 parent = parent->next;
1143
1144 if (!parent)
1145 edge_value = GRAPH_PARENT_NONE;
1146 else if (parent->next)
1147 edge_value = GRAPH_EXTRA_EDGES_NEEDED | num_extra_edges;
1148 else {
1149 edge_value = oid_pos(&parent->item->object.oid,
1150 ctx->commits.list,
1151 ctx->commits.nr,
1152 commit_to_oid);
1153
1154 if (edge_value >= 0)
1155 edge_value += ctx->new_num_commits_in_base;
1156 else if (ctx->new_base_graph) {
1157 uint32_t pos;
1158 if (find_commit_pos_in_graph(parent->item,
1159 ctx->new_base_graph,
1160 &pos))
1161 edge_value = pos;
1162 }
1163
1164 if (edge_value < 0)
1165 BUG("missing parent %s for commit %s",
1166 oid_to_hex(&parent->item->object.oid),
1167 oid_to_hex(&(*list)->object.oid));
1168 }
1169
1170 hashwrite_be32(f, edge_value);
1171
1172 if (edge_value & GRAPH_EXTRA_EDGES_NEEDED) {
1173 do {
1174 num_extra_edges++;
1175 parent = parent->next;
1176 } while (parent);
1177 }
1178
1179 if (sizeof((*list)->date) > 4)
1180 packedDate[0] = htonl(((*list)->date >> 32) & 0x3);
1181 else
1182 packedDate[0] = 0;
1183
1184 packedDate[0] |= htonl(*topo_level_slab_at(ctx->topo_levels, *list) << 2);
1185
1186 packedDate[1] = htonl((*list)->date);
1187 hashwrite(f, packedDate, 8);
1188
1189 list++;
1190 }
1191
1192 return 0;
1193 }
1194
1195 static int write_graph_chunk_generation_data(struct hashfile *f,
1196 void *data)
1197 {
1198 struct write_commit_graph_context *ctx = data;
1199 int i, num_generation_data_overflows = 0;
1200
1201 for (i = 0; i < ctx->commits.nr; i++) {
1202 struct commit *c = ctx->commits.list[i];
1203 timestamp_t offset;
1204 repo_parse_commit(ctx->r, c);
1205 offset = commit_graph_data_at(c)->generation - c->date;
1206 display_progress(ctx->progress, ++ctx->progress_cnt);
1207
1208 if (offset > GENERATION_NUMBER_V2_OFFSET_MAX) {
1209 offset = CORRECTED_COMMIT_DATE_OFFSET_OVERFLOW | num_generation_data_overflows;
1210 num_generation_data_overflows++;
1211 }
1212
1213 hashwrite_be32(f, offset);
1214 }
1215
1216 return 0;
1217 }
1218
1219 static int write_graph_chunk_generation_data_overflow(struct hashfile *f,
1220 void *data)
1221 {
1222 struct write_commit_graph_context *ctx = data;
1223 int i;
1224 for (i = 0; i < ctx->commits.nr; i++) {
1225 struct commit *c = ctx->commits.list[i];
1226 timestamp_t offset = commit_graph_data_at(c)->generation - c->date;
1227 display_progress(ctx->progress, ++ctx->progress_cnt);
1228
1229 if (offset > GENERATION_NUMBER_V2_OFFSET_MAX) {
1230 hashwrite_be32(f, offset >> 32);
1231 hashwrite_be32(f, (uint32_t) offset);
1232 }
1233 }
1234
1235 return 0;
1236 }
1237
1238 static int write_graph_chunk_extra_edges(struct hashfile *f,
1239 void *data)
1240 {
1241 struct write_commit_graph_context *ctx = data;
1242 struct commit **list = ctx->commits.list;
1243 struct commit **last = ctx->commits.list + ctx->commits.nr;
1244 struct commit_list *parent;
1245
1246 while (list < last) {
1247 int num_parents = 0;
1248
1249 display_progress(ctx->progress, ++ctx->progress_cnt);
1250
1251 for (parent = (*list)->parents; num_parents < 3 && parent;
1252 parent = parent->next)
1253 num_parents++;
1254
1255 if (num_parents <= 2) {
1256 list++;
1257 continue;
1258 }
1259
1260 /* Since num_parents > 2, this initializer is safe. */
1261 for (parent = (*list)->parents->next; parent; parent = parent->next) {
1262 int edge_value = oid_pos(&parent->item->object.oid,
1263 ctx->commits.list,
1264 ctx->commits.nr,
1265 commit_to_oid);
1266
1267 if (edge_value >= 0)
1268 edge_value += ctx->new_num_commits_in_base;
1269 else if (ctx->new_base_graph) {
1270 uint32_t pos;
1271 if (find_commit_pos_in_graph(parent->item,
1272 ctx->new_base_graph,
1273 &pos))
1274 edge_value = pos;
1275 }
1276
1277 if (edge_value < 0)
1278 BUG("missing parent %s for commit %s",
1279 oid_to_hex(&parent->item->object.oid),
1280 oid_to_hex(&(*list)->object.oid));
1281 else if (!parent->next)
1282 edge_value |= GRAPH_LAST_EDGE;
1283
1284 hashwrite_be32(f, edge_value);
1285 }
1286
1287 list++;
1288 }
1289
1290 return 0;
1291 }
1292
1293 static int write_graph_chunk_bloom_indexes(struct hashfile *f,
1294 void *data)
1295 {
1296 struct write_commit_graph_context *ctx = data;
1297 struct commit **list = ctx->commits.list;
1298 struct commit **last = ctx->commits.list + ctx->commits.nr;
1299 uint32_t cur_pos = 0;
1300
1301 while (list < last) {
1302 struct bloom_filter *filter = get_bloom_filter(ctx->r, *list);
1303 size_t len = filter ? filter->len : 0;
1304 cur_pos += len;
1305 display_progress(ctx->progress, ++ctx->progress_cnt);
1306 hashwrite_be32(f, cur_pos);
1307 list++;
1308 }
1309
1310 return 0;
1311 }
1312
1313 static void trace2_bloom_filter_settings(struct write_commit_graph_context *ctx)
1314 {
1315 struct json_writer jw = JSON_WRITER_INIT;
1316
1317 jw_object_begin(&jw, 0);
1318 jw_object_intmax(&jw, "hash_version", ctx->bloom_settings->hash_version);
1319 jw_object_intmax(&jw, "num_hashes", ctx->bloom_settings->num_hashes);
1320 jw_object_intmax(&jw, "bits_per_entry", ctx->bloom_settings->bits_per_entry);
1321 jw_object_intmax(&jw, "max_changed_paths", ctx->bloom_settings->max_changed_paths);
1322 jw_end(&jw);
1323
1324 trace2_data_json("bloom", ctx->r, "settings", &jw);
1325
1326 jw_release(&jw);
1327 }
1328
1329 static int write_graph_chunk_bloom_data(struct hashfile *f,
1330 void *data)
1331 {
1332 struct write_commit_graph_context *ctx = data;
1333 struct commit **list = ctx->commits.list;
1334 struct commit **last = ctx->commits.list + ctx->commits.nr;
1335
1336 trace2_bloom_filter_settings(ctx);
1337
1338 hashwrite_be32(f, ctx->bloom_settings->hash_version);
1339 hashwrite_be32(f, ctx->bloom_settings->num_hashes);
1340 hashwrite_be32(f, ctx->bloom_settings->bits_per_entry);
1341
1342 while (list < last) {
1343 struct bloom_filter *filter = get_bloom_filter(ctx->r, *list);
1344 size_t len = filter ? filter->len : 0;
1345
1346 display_progress(ctx->progress, ++ctx->progress_cnt);
1347 if (len)
1348 hashwrite(f, filter->data, len * sizeof(unsigned char));
1349 list++;
1350 }
1351
1352 return 0;
1353 }
1354
1355 static int add_packed_commits(const struct object_id *oid,
1356 struct packed_git *pack,
1357 uint32_t pos,
1358 void *data)
1359 {
1360 struct write_commit_graph_context *ctx = (struct write_commit_graph_context*)data;
1361 enum object_type type;
1362 off_t offset = nth_packed_object_offset(pack, pos);
1363 struct object_info oi = OBJECT_INFO_INIT;
1364
1365 if (ctx->progress)
1366 display_progress(ctx->progress, ++ctx->progress_done);
1367
1368 oi.typep = &type;
1369 if (packed_object_info(ctx->r, pack, offset, &oi) < 0)
1370 die(_("unable to get type of object %s"), oid_to_hex(oid));
1371
1372 if (type != OBJ_COMMIT)
1373 return 0;
1374
1375 oid_array_append(&ctx->oids, oid);
1376 set_commit_pos(ctx->r, oid);
1377
1378 return 0;
1379 }
1380
1381 static void add_missing_parents(struct write_commit_graph_context *ctx, struct commit *commit)
1382 {
1383 struct commit_list *parent;
1384 for (parent = commit->parents; parent; parent = parent->next) {
1385 if (!(parent->item->object.flags & REACHABLE)) {
1386 oid_array_append(&ctx->oids, &parent->item->object.oid);
1387 parent->item->object.flags |= REACHABLE;
1388 }
1389 }
1390 }
1391
1392 static void close_reachable(struct write_commit_graph_context *ctx)
1393 {
1394 int i;
1395 struct commit *commit;
1396 enum commit_graph_split_flags flags = ctx->opts ?
1397 ctx->opts->split_flags : COMMIT_GRAPH_SPLIT_UNSPECIFIED;
1398
1399 if (ctx->report_progress)
1400 ctx->progress = start_delayed_progress(
1401 _("Loading known commits in commit graph"),
1402 ctx->oids.nr);
1403 for (i = 0; i < ctx->oids.nr; i++) {
1404 display_progress(ctx->progress, i + 1);
1405 commit = lookup_commit(ctx->r, &ctx->oids.oid[i]);
1406 if (commit)
1407 commit->object.flags |= REACHABLE;
1408 }
1409 stop_progress(&ctx->progress);
1410
1411 /*
1412 * As this loop runs, ctx->oids.nr may grow, but not more
1413 * than the number of missing commits in the reachable
1414 * closure.
1415 */
1416 if (ctx->report_progress)
1417 ctx->progress = start_delayed_progress(
1418 _("Expanding reachable commits in commit graph"),
1419 0);
1420 for (i = 0; i < ctx->oids.nr; i++) {
1421 display_progress(ctx->progress, i + 1);
1422 commit = lookup_commit(ctx->r, &ctx->oids.oid[i]);
1423
1424 if (!commit)
1425 continue;
1426 if (ctx->split) {
1427 if ((!repo_parse_commit(ctx->r, commit) &&
1428 commit_graph_position(commit) == COMMIT_NOT_FROM_GRAPH) ||
1429 flags == COMMIT_GRAPH_SPLIT_REPLACE)
1430 add_missing_parents(ctx, commit);
1431 } else if (!repo_parse_commit_no_graph(ctx->r, commit))
1432 add_missing_parents(ctx, commit);
1433 }
1434 stop_progress(&ctx->progress);
1435
1436 if (ctx->report_progress)
1437 ctx->progress = start_delayed_progress(
1438 _("Clearing commit marks in commit graph"),
1439 ctx->oids.nr);
1440 for (i = 0; i < ctx->oids.nr; i++) {
1441 display_progress(ctx->progress, i + 1);
1442 commit = lookup_commit(ctx->r, &ctx->oids.oid[i]);
1443
1444 if (commit)
1445 commit->object.flags &= ~REACHABLE;
1446 }
1447 stop_progress(&ctx->progress);
1448 }
1449
1450 static void compute_topological_levels(struct write_commit_graph_context *ctx)
1451 {
1452 int i;
1453 struct commit_list *list = NULL;
1454
1455 if (ctx->report_progress)
1456 ctx->progress = start_delayed_progress(
1457 _("Computing commit graph topological levels"),
1458 ctx->commits.nr);
1459 for (i = 0; i < ctx->commits.nr; i++) {
1460 struct commit *c = ctx->commits.list[i];
1461 uint32_t level;
1462
1463 repo_parse_commit(ctx->r, c);
1464 level = *topo_level_slab_at(ctx->topo_levels, c);
1465
1466 display_progress(ctx->progress, i + 1);
1467 if (level != GENERATION_NUMBER_ZERO)
1468 continue;
1469
1470 commit_list_insert(c, &list);
1471 while (list) {
1472 struct commit *current = list->item;
1473 struct commit_list *parent;
1474 int all_parents_computed = 1;
1475 uint32_t max_level = 0;
1476
1477 for (parent = current->parents; parent; parent = parent->next) {
1478 repo_parse_commit(ctx->r, parent->item);
1479 level = *topo_level_slab_at(ctx->topo_levels, parent->item);
1480
1481 if (level == GENERATION_NUMBER_ZERO) {
1482 all_parents_computed = 0;
1483 commit_list_insert(parent->item, &list);
1484 break;
1485 }
1486
1487 if (level > max_level)
1488 max_level = level;
1489 }
1490
1491 if (all_parents_computed) {
1492 pop_commit(&list);
1493
1494 if (max_level > GENERATION_NUMBER_V1_MAX - 1)
1495 max_level = GENERATION_NUMBER_V1_MAX - 1;
1496 *topo_level_slab_at(ctx->topo_levels, current) = max_level + 1;
1497 }
1498 }
1499 }
1500 stop_progress(&ctx->progress);
1501 }
1502
1503 static void compute_generation_numbers(struct write_commit_graph_context *ctx)
1504 {
1505 int i;
1506 struct commit_list *list = NULL;
1507
1508 if (ctx->report_progress)
1509 ctx->progress = start_delayed_progress(
1510 _("Computing commit graph generation numbers"),
1511 ctx->commits.nr);
1512
1513 if (!ctx->trust_generation_numbers) {
1514 for (i = 0; i < ctx->commits.nr; i++) {
1515 struct commit *c = ctx->commits.list[i];
1516 repo_parse_commit(ctx->r, c);
1517 commit_graph_data_at(c)->generation = GENERATION_NUMBER_ZERO;
1518 }
1519 }
1520
1521 for (i = 0; i < ctx->commits.nr; i++) {
1522 struct commit *c = ctx->commits.list[i];
1523 timestamp_t corrected_commit_date;
1524
1525 repo_parse_commit(ctx->r, c);
1526 corrected_commit_date = commit_graph_data_at(c)->generation;
1527
1528 display_progress(ctx->progress, i + 1);
1529 if (corrected_commit_date != GENERATION_NUMBER_ZERO)
1530 continue;
1531
1532 commit_list_insert(c, &list);
1533 while (list) {
1534 struct commit *current = list->item;
1535 struct commit_list *parent;
1536 int all_parents_computed = 1;
1537 timestamp_t max_corrected_commit_date = 0;
1538
1539 for (parent = current->parents; parent; parent = parent->next) {
1540 repo_parse_commit(ctx->r, parent->item);
1541 corrected_commit_date = commit_graph_data_at(parent->item)->generation;
1542
1543 if (corrected_commit_date == GENERATION_NUMBER_ZERO) {
1544 all_parents_computed = 0;
1545 commit_list_insert(parent->item, &list);
1546 break;
1547 }
1548
1549 if (corrected_commit_date > max_corrected_commit_date)
1550 max_corrected_commit_date = corrected_commit_date;
1551 }
1552
1553 if (all_parents_computed) {
1554 pop_commit(&list);
1555
1556 if (current->date && current->date > max_corrected_commit_date)
1557 max_corrected_commit_date = current->date - 1;
1558 commit_graph_data_at(current)->generation = max_corrected_commit_date + 1;
1559 }
1560 }
1561 }
1562
1563 for (i = 0; i < ctx->commits.nr; i++) {
1564 struct commit *c = ctx->commits.list[i];
1565 timestamp_t offset = commit_graph_data_at(c)->generation - c->date;
1566 if (offset > GENERATION_NUMBER_V2_OFFSET_MAX)
1567 ctx->num_generation_data_overflows++;
1568 }
1569 stop_progress(&ctx->progress);
1570 }
1571
1572 static void trace2_bloom_filter_write_statistics(struct write_commit_graph_context *ctx)
1573 {
1574 trace2_data_intmax("commit-graph", ctx->r, "filter-computed",
1575 ctx->count_bloom_filter_computed);
1576 trace2_data_intmax("commit-graph", ctx->r, "filter-not-computed",
1577 ctx->count_bloom_filter_not_computed);
1578 trace2_data_intmax("commit-graph", ctx->r, "filter-trunc-empty",
1579 ctx->count_bloom_filter_trunc_empty);
1580 trace2_data_intmax("commit-graph", ctx->r, "filter-trunc-large",
1581 ctx->count_bloom_filter_trunc_large);
1582 }
1583
1584 static void compute_bloom_filters(struct write_commit_graph_context *ctx)
1585 {
1586 int i;
1587 struct progress *progress = NULL;
1588 struct commit **sorted_commits;
1589 int max_new_filters;
1590
1591 init_bloom_filters();
1592
1593 if (ctx->report_progress)
1594 progress = start_delayed_progress(
1595 _("Computing commit changed paths Bloom filters"),
1596 ctx->commits.nr);
1597
1598 DUP_ARRAY(sorted_commits, ctx->commits.list, ctx->commits.nr);
1599
1600 if (ctx->order_by_pack)
1601 QSORT(sorted_commits, ctx->commits.nr, commit_pos_cmp);
1602 else
1603 QSORT(sorted_commits, ctx->commits.nr, commit_gen_cmp);
1604
1605 max_new_filters = ctx->opts && ctx->opts->max_new_filters >= 0 ?
1606 ctx->opts->max_new_filters : ctx->commits.nr;
1607
1608 for (i = 0; i < ctx->commits.nr; i++) {
1609 enum bloom_filter_computed computed = 0;
1610 struct commit *c = sorted_commits[i];
1611 struct bloom_filter *filter = get_or_compute_bloom_filter(
1612 ctx->r,
1613 c,
1614 ctx->count_bloom_filter_computed < max_new_filters,
1615 ctx->bloom_settings,
1616 &computed);
1617 if (computed & BLOOM_COMPUTED) {
1618 ctx->count_bloom_filter_computed++;
1619 if (computed & BLOOM_TRUNC_EMPTY)
1620 ctx->count_bloom_filter_trunc_empty++;
1621 if (computed & BLOOM_TRUNC_LARGE)
1622 ctx->count_bloom_filter_trunc_large++;
1623 } else if (computed & BLOOM_NOT_COMPUTED)
1624 ctx->count_bloom_filter_not_computed++;
1625 ctx->total_bloom_filter_data_size += filter
1626 ? sizeof(unsigned char) * filter->len : 0;
1627 display_progress(progress, i + 1);
1628 }
1629
1630 if (trace2_is_enabled())
1631 trace2_bloom_filter_write_statistics(ctx);
1632
1633 free(sorted_commits);
1634 stop_progress(&progress);
1635 }
1636
1637 struct refs_cb_data {
1638 struct oidset *commits;
1639 struct progress *progress;
1640 };
1641
1642 static int add_ref_to_set(const char *refname UNUSED,
1643 const struct object_id *oid,
1644 int flags UNUSED, void *cb_data)
1645 {
1646 struct object_id peeled;
1647 struct refs_cb_data *data = (struct refs_cb_data *)cb_data;
1648
1649 if (!peel_iterated_oid(oid, &peeled))
1650 oid = &peeled;
1651 if (oid_object_info(the_repository, oid, NULL) == OBJ_COMMIT)
1652 oidset_insert(data->commits, oid);
1653
1654 display_progress(data->progress, oidset_size(data->commits));
1655
1656 return 0;
1657 }
1658
1659 int write_commit_graph_reachable(struct object_directory *odb,
1660 enum commit_graph_write_flags flags,
1661 const struct commit_graph_opts *opts)
1662 {
1663 struct oidset commits = OIDSET_INIT;
1664 struct refs_cb_data data;
1665 int result;
1666
1667 memset(&data, 0, sizeof(data));
1668 data.commits = &commits;
1669 if (flags & COMMIT_GRAPH_WRITE_PROGRESS)
1670 data.progress = start_delayed_progress(
1671 _("Collecting referenced commits"), 0);
1672
1673 for_each_ref(add_ref_to_set, &data);
1674
1675 stop_progress(&data.progress);
1676
1677 result = write_commit_graph(odb, NULL, &commits,
1678 flags, opts);
1679
1680 oidset_clear(&commits);
1681 return result;
1682 }
1683
1684 static int fill_oids_from_packs(struct write_commit_graph_context *ctx,
1685 const struct string_list *pack_indexes)
1686 {
1687 uint32_t i;
1688 struct strbuf progress_title = STRBUF_INIT;
1689 struct strbuf packname = STRBUF_INIT;
1690 int dirlen;
1691 int ret = 0;
1692
1693 strbuf_addf(&packname, "%s/pack/", ctx->odb->path);
1694 dirlen = packname.len;
1695 if (ctx->report_progress) {
1696 strbuf_addf(&progress_title,
1697 Q_("Finding commits for commit graph in %"PRIuMAX" pack",
1698 "Finding commits for commit graph in %"PRIuMAX" packs",
1699 pack_indexes->nr),
1700 (uintmax_t)pack_indexes->nr);
1701 ctx->progress = start_delayed_progress(progress_title.buf, 0);
1702 ctx->progress_done = 0;
1703 }
1704 for (i = 0; i < pack_indexes->nr; i++) {
1705 struct packed_git *p;
1706 strbuf_setlen(&packname, dirlen);
1707 strbuf_addstr(&packname, pack_indexes->items[i].string);
1708 p = add_packed_git(packname.buf, packname.len, 1);
1709 if (!p) {
1710 ret = error(_("error adding pack %s"), packname.buf);
1711 goto cleanup;
1712 }
1713 if (open_pack_index(p)) {
1714 ret = error(_("error opening index for %s"), packname.buf);
1715 goto cleanup;
1716 }
1717 for_each_object_in_pack(p, add_packed_commits, ctx,
1718 FOR_EACH_OBJECT_PACK_ORDER);
1719 close_pack(p);
1720 free(p);
1721 }
1722
1723 cleanup:
1724 stop_progress(&ctx->progress);
1725 strbuf_release(&progress_title);
1726 strbuf_release(&packname);
1727
1728 return ret;
1729 }
1730
1731 static int fill_oids_from_commits(struct write_commit_graph_context *ctx,
1732 struct oidset *commits)
1733 {
1734 struct oidset_iter iter;
1735 struct object_id *oid;
1736
1737 if (!oidset_size(commits))
1738 return 0;
1739
1740 oidset_iter_init(commits, &iter);
1741 while ((oid = oidset_iter_next(&iter))) {
1742 oid_array_append(&ctx->oids, oid);
1743 }
1744
1745 return 0;
1746 }
1747
1748 static void fill_oids_from_all_packs(struct write_commit_graph_context *ctx)
1749 {
1750 if (ctx->report_progress)
1751 ctx->progress = start_delayed_progress(
1752 _("Finding commits for commit graph among packed objects"),
1753 ctx->approx_nr_objects);
1754 for_each_packed_object(add_packed_commits, ctx,
1755 FOR_EACH_OBJECT_PACK_ORDER);
1756 if (ctx->progress_done < ctx->approx_nr_objects)
1757 display_progress(ctx->progress, ctx->approx_nr_objects);
1758 stop_progress(&ctx->progress);
1759 }
1760
1761 static void copy_oids_to_commits(struct write_commit_graph_context *ctx)
1762 {
1763 uint32_t i;
1764 enum commit_graph_split_flags flags = ctx->opts ?
1765 ctx->opts->split_flags : COMMIT_GRAPH_SPLIT_UNSPECIFIED;
1766
1767 ctx->num_extra_edges = 0;
1768 if (ctx->report_progress)
1769 ctx->progress = start_delayed_progress(
1770 _("Finding extra edges in commit graph"),
1771 ctx->oids.nr);
1772 oid_array_sort(&ctx->oids);
1773 for (i = 0; i < ctx->oids.nr; i = oid_array_next_unique(&ctx->oids, i)) {
1774 unsigned int num_parents;
1775
1776 display_progress(ctx->progress, i + 1);
1777
1778 ALLOC_GROW(ctx->commits.list, ctx->commits.nr + 1, ctx->commits.alloc);
1779 ctx->commits.list[ctx->commits.nr] = lookup_commit(ctx->r, &ctx->oids.oid[i]);
1780
1781 if (ctx->split && flags != COMMIT_GRAPH_SPLIT_REPLACE &&
1782 commit_graph_position(ctx->commits.list[ctx->commits.nr]) != COMMIT_NOT_FROM_GRAPH)
1783 continue;
1784
1785 if (ctx->split && flags == COMMIT_GRAPH_SPLIT_REPLACE)
1786 repo_parse_commit(ctx->r, ctx->commits.list[ctx->commits.nr]);
1787 else
1788 repo_parse_commit_no_graph(ctx->r, ctx->commits.list[ctx->commits.nr]);
1789
1790 num_parents = commit_list_count(ctx->commits.list[ctx->commits.nr]->parents);
1791 if (num_parents > 2)
1792 ctx->num_extra_edges += num_parents - 1;
1793
1794 ctx->commits.nr++;
1795 }
1796 stop_progress(&ctx->progress);
1797 }
1798
1799 static int write_graph_chunk_base_1(struct hashfile *f,
1800 struct commit_graph *g)
1801 {
1802 int num = 0;
1803
1804 if (!g)
1805 return 0;
1806
1807 num = write_graph_chunk_base_1(f, g->base_graph);
1808 hashwrite(f, g->oid.hash, the_hash_algo->rawsz);
1809 return num + 1;
1810 }
1811
1812 static int write_graph_chunk_base(struct hashfile *f,
1813 void *data)
1814 {
1815 struct write_commit_graph_context *ctx = data;
1816 int num = write_graph_chunk_base_1(f, ctx->new_base_graph);
1817
1818 if (num != ctx->num_commit_graphs_after - 1) {
1819 error(_("failed to write correct number of base graph ids"));
1820 return -1;
1821 }
1822
1823 return 0;
1824 }
1825
1826 static int write_commit_graph_file(struct write_commit_graph_context *ctx)
1827 {
1828 uint32_t i;
1829 int fd;
1830 struct hashfile *f;
1831 struct lock_file lk = LOCK_INIT;
1832 const unsigned hashsz = the_hash_algo->rawsz;
1833 struct strbuf progress_title = STRBUF_INIT;
1834 struct chunkfile *cf;
1835 unsigned char file_hash[GIT_MAX_RAWSZ];
1836
1837 if (ctx->split) {
1838 struct strbuf tmp_file = STRBUF_INIT;
1839
1840 strbuf_addf(&tmp_file,
1841 "%s/info/commit-graphs/tmp_graph_XXXXXX",
1842 ctx->odb->path);
1843 ctx->graph_name = strbuf_detach(&tmp_file, NULL);
1844 } else {
1845 ctx->graph_name = get_commit_graph_filename(ctx->odb);
1846 }
1847
1848 if (safe_create_leading_directories(ctx->graph_name)) {
1849 UNLEAK(ctx->graph_name);
1850 error(_("unable to create leading directories of %s"),
1851 ctx->graph_name);
1852 return -1;
1853 }
1854
1855 if (ctx->split) {
1856 char *lock_name = get_commit_graph_chain_filename(ctx->odb);
1857
1858 hold_lock_file_for_update_mode(&lk, lock_name,
1859 LOCK_DIE_ON_ERROR, 0444);
1860 free(lock_name);
1861
1862 fd = git_mkstemp_mode(ctx->graph_name, 0444);
1863 if (fd < 0) {
1864 error(_("unable to create temporary graph layer"));
1865 return -1;
1866 }
1867
1868 if (adjust_shared_perm(ctx->graph_name)) {
1869 error(_("unable to adjust shared permissions for '%s'"),
1870 ctx->graph_name);
1871 return -1;
1872 }
1873
1874 f = hashfd(fd, ctx->graph_name);
1875 } else {
1876 hold_lock_file_for_update_mode(&lk, ctx->graph_name,
1877 LOCK_DIE_ON_ERROR, 0444);
1878 fd = get_lock_file_fd(&lk);
1879 f = hashfd(fd, get_lock_file_path(&lk));
1880 }
1881
1882 cf = init_chunkfile(f);
1883
1884 add_chunk(cf, GRAPH_CHUNKID_OIDFANOUT, GRAPH_FANOUT_SIZE,
1885 write_graph_chunk_fanout);
1886 add_chunk(cf, GRAPH_CHUNKID_OIDLOOKUP, hashsz * ctx->commits.nr,
1887 write_graph_chunk_oids);
1888 add_chunk(cf, GRAPH_CHUNKID_DATA, (hashsz + 16) * ctx->commits.nr,
1889 write_graph_chunk_data);
1890
1891 if (ctx->write_generation_data)
1892 add_chunk(cf, GRAPH_CHUNKID_GENERATION_DATA,
1893 sizeof(uint32_t) * ctx->commits.nr,
1894 write_graph_chunk_generation_data);
1895 if (ctx->num_generation_data_overflows)
1896 add_chunk(cf, GRAPH_CHUNKID_GENERATION_DATA_OVERFLOW,
1897 sizeof(timestamp_t) * ctx->num_generation_data_overflows,
1898 write_graph_chunk_generation_data_overflow);
1899 if (ctx->num_extra_edges)
1900 add_chunk(cf, GRAPH_CHUNKID_EXTRAEDGES,
1901 4 * ctx->num_extra_edges,
1902 write_graph_chunk_extra_edges);
1903 if (ctx->changed_paths) {
1904 add_chunk(cf, GRAPH_CHUNKID_BLOOMINDEXES,
1905 sizeof(uint32_t) * ctx->commits.nr,
1906 write_graph_chunk_bloom_indexes);
1907 add_chunk(cf, GRAPH_CHUNKID_BLOOMDATA,
1908 sizeof(uint32_t) * 3
1909 + ctx->total_bloom_filter_data_size,
1910 write_graph_chunk_bloom_data);
1911 }
1912 if (ctx->num_commit_graphs_after > 1)
1913 add_chunk(cf, GRAPH_CHUNKID_BASE,
1914 hashsz * (ctx->num_commit_graphs_after - 1),
1915 write_graph_chunk_base);
1916
1917 hashwrite_be32(f, GRAPH_SIGNATURE);
1918
1919 hashwrite_u8(f, GRAPH_VERSION);
1920 hashwrite_u8(f, oid_version(the_hash_algo));
1921 hashwrite_u8(f, get_num_chunks(cf));
1922 hashwrite_u8(f, ctx->num_commit_graphs_after - 1);
1923
1924 if (ctx->report_progress) {
1925 strbuf_addf(&progress_title,
1926 Q_("Writing out commit graph in %d pass",
1927 "Writing out commit graph in %d passes",
1928 get_num_chunks(cf)),
1929 get_num_chunks(cf));
1930 ctx->progress = start_delayed_progress(
1931 progress_title.buf,
1932 get_num_chunks(cf) * ctx->commits.nr);
1933 }
1934
1935 write_chunkfile(cf, ctx);
1936
1937 stop_progress(&ctx->progress);
1938 strbuf_release(&progress_title);
1939
1940 if (ctx->split && ctx->base_graph_name && ctx->num_commit_graphs_after > 1) {
1941 char *new_base_hash = xstrdup(oid_to_hex(&ctx->new_base_graph->oid));
1942 char *new_base_name = get_split_graph_filename(ctx->new_base_graph->odb, new_base_hash);
1943
1944 free(ctx->commit_graph_filenames_after[ctx->num_commit_graphs_after - 2]);
1945 free(ctx->commit_graph_hash_after[ctx->num_commit_graphs_after - 2]);
1946 ctx->commit_graph_filenames_after[ctx->num_commit_graphs_after - 2] = new_base_name;
1947 ctx->commit_graph_hash_after[ctx->num_commit_graphs_after - 2] = new_base_hash;
1948 }
1949
1950 close_commit_graph(ctx->r->objects);
1951 finalize_hashfile(f, file_hash, FSYNC_COMPONENT_COMMIT_GRAPH,
1952 CSUM_HASH_IN_STREAM | CSUM_FSYNC);
1953 free_chunkfile(cf);
1954
1955 if (ctx->split) {
1956 FILE *chainf = fdopen_lock_file(&lk, "w");
1957 char *final_graph_name;
1958 int result;
1959
1960 close(fd);
1961
1962 if (!chainf) {
1963 error(_("unable to open commit-graph chain file"));
1964 return -1;
1965 }
1966
1967 if (ctx->base_graph_name) {
1968 const char *dest;
1969 int idx = ctx->num_commit_graphs_after - 1;
1970 if (ctx->num_commit_graphs_after > 1)
1971 idx--;
1972
1973 dest = ctx->commit_graph_filenames_after[idx];
1974
1975 if (strcmp(ctx->base_graph_name, dest)) {
1976 result = rename(ctx->base_graph_name, dest);
1977
1978 if (result) {
1979 error(_("failed to rename base commit-graph file"));
1980 return -1;
1981 }
1982 }
1983 } else {
1984 char *graph_name = get_commit_graph_filename(ctx->odb);
1985 unlink(graph_name);
1986 free(graph_name);
1987 }
1988
1989 ctx->commit_graph_hash_after[ctx->num_commit_graphs_after - 1] = xstrdup(hash_to_hex(file_hash));
1990 final_graph_name = get_split_graph_filename(ctx->odb,
1991 ctx->commit_graph_hash_after[ctx->num_commit_graphs_after - 1]);
1992 ctx->commit_graph_filenames_after[ctx->num_commit_graphs_after - 1] = final_graph_name;
1993
1994 result = rename(ctx->graph_name, final_graph_name);
1995
1996 for (i = 0; i < ctx->num_commit_graphs_after; i++)
1997 fprintf(get_lock_file_fp(&lk), "%s\n", ctx->commit_graph_hash_after[i]);
1998
1999 if (result) {
2000 error(_("failed to rename temporary commit-graph file"));
2001 return -1;
2002 }
2003 }
2004
2005 commit_lock_file(&lk);
2006
2007 return 0;
2008 }
2009
2010 static void split_graph_merge_strategy(struct write_commit_graph_context *ctx)
2011 {
2012 struct commit_graph *g;
2013 uint32_t num_commits;
2014 enum commit_graph_split_flags flags = COMMIT_GRAPH_SPLIT_UNSPECIFIED;
2015 uint32_t i;
2016
2017 int max_commits = 0;
2018 int size_mult = 2;
2019
2020 if (ctx->opts) {
2021 max_commits = ctx->opts->max_commits;
2022
2023 if (ctx->opts->size_multiple)
2024 size_mult = ctx->opts->size_multiple;
2025
2026 flags = ctx->opts->split_flags;
2027 }
2028
2029 g = ctx->r->objects->commit_graph;
2030 num_commits = ctx->commits.nr;
2031 if (flags == COMMIT_GRAPH_SPLIT_REPLACE)
2032 ctx->num_commit_graphs_after = 1;
2033 else
2034 ctx->num_commit_graphs_after = ctx->num_commit_graphs_before + 1;
2035
2036 if (flags != COMMIT_GRAPH_SPLIT_MERGE_PROHIBITED &&
2037 flags != COMMIT_GRAPH_SPLIT_REPLACE) {
2038 while (g && (g->num_commits <= size_mult * num_commits ||
2039 (max_commits && num_commits > max_commits))) {
2040 if (g->odb != ctx->odb)
2041 break;
2042
2043 num_commits += g->num_commits;
2044 g = g->base_graph;
2045
2046 ctx->num_commit_graphs_after--;
2047 }
2048 }
2049
2050 if (flags != COMMIT_GRAPH_SPLIT_REPLACE)
2051 ctx->new_base_graph = g;
2052 else if (ctx->num_commit_graphs_after != 1)
2053 BUG("split_graph_merge_strategy: num_commit_graphs_after "
2054 "should be 1 with --split=replace");
2055
2056 if (ctx->num_commit_graphs_after == 2) {
2057 char *old_graph_name = get_commit_graph_filename(g->odb);
2058
2059 if (!strcmp(g->filename, old_graph_name) &&
2060 g->odb != ctx->odb) {
2061 ctx->num_commit_graphs_after = 1;
2062 ctx->new_base_graph = NULL;
2063 }
2064
2065 free(old_graph_name);
2066 }
2067
2068 CALLOC_ARRAY(ctx->commit_graph_filenames_after, ctx->num_commit_graphs_after);
2069 CALLOC_ARRAY(ctx->commit_graph_hash_after, ctx->num_commit_graphs_after);
2070
2071 for (i = 0; i < ctx->num_commit_graphs_after &&
2072 i < ctx->num_commit_graphs_before; i++)
2073 ctx->commit_graph_filenames_after[i] = xstrdup(ctx->commit_graph_filenames_before[i]);
2074
2075 i = ctx->num_commit_graphs_before - 1;
2076 g = ctx->r->objects->commit_graph;
2077
2078 while (g) {
2079 if (i < ctx->num_commit_graphs_after)
2080 ctx->commit_graph_hash_after[i] = xstrdup(oid_to_hex(&g->oid));
2081
2082 /*
2083 * If the topmost remaining layer has generation data chunk, the
2084 * resultant layer also has generation data chunk.
2085 */
2086 if (i == ctx->num_commit_graphs_after - 2)
2087 ctx->write_generation_data = !!g->chunk_generation_data;
2088
2089 i--;
2090 g = g->base_graph;
2091 }
2092 }
2093
2094 static void merge_commit_graph(struct write_commit_graph_context *ctx,
2095 struct commit_graph *g)
2096 {
2097 uint32_t i;
2098 uint32_t offset = g->num_commits_in_base;
2099
2100 ALLOC_GROW(ctx->commits.list, ctx->commits.nr + g->num_commits, ctx->commits.alloc);
2101
2102 for (i = 0; i < g->num_commits; i++) {
2103 struct object_id oid;
2104 struct commit *result;
2105
2106 display_progress(ctx->progress, i + 1);
2107
2108 load_oid_from_graph(g, i + offset, &oid);
2109
2110 /* only add commits if they still exist in the repo */
2111 result = lookup_commit_reference_gently(ctx->r, &oid, 1);
2112
2113 if (result) {
2114 ctx->commits.list[ctx->commits.nr] = result;
2115 ctx->commits.nr++;
2116 }
2117 }
2118 }
2119
2120 static int commit_compare(const void *_a, const void *_b)
2121 {
2122 const struct commit *a = *(const struct commit **)_a;
2123 const struct commit *b = *(const struct commit **)_b;
2124 return oidcmp(&a->object.oid, &b->object.oid);
2125 }
2126
2127 static void sort_and_scan_merged_commits(struct write_commit_graph_context *ctx)
2128 {
2129 uint32_t i, dedup_i = 0;
2130
2131 if (ctx->report_progress)
2132 ctx->progress = start_delayed_progress(
2133 _("Scanning merged commits"),
2134 ctx->commits.nr);
2135
2136 QSORT(ctx->commits.list, ctx->commits.nr, commit_compare);
2137
2138 ctx->num_extra_edges = 0;
2139 for (i = 0; i < ctx->commits.nr; i++) {
2140 display_progress(ctx->progress, i + 1);
2141
2142 if (i && oideq(&ctx->commits.list[i - 1]->object.oid,
2143 &ctx->commits.list[i]->object.oid)) {
2144 /*
2145 * Silently ignore duplicates. These were likely
2146 * created due to a commit appearing in multiple
2147 * layers of the chain, which is unexpected but
2148 * not invalid. We should make sure there is a
2149 * unique copy in the new layer.
2150 */
2151 } else {
2152 unsigned int num_parents;
2153
2154 ctx->commits.list[dedup_i] = ctx->commits.list[i];
2155 dedup_i++;
2156
2157 num_parents = commit_list_count(ctx->commits.list[i]->parents);
2158 if (num_parents > 2)
2159 ctx->num_extra_edges += num_parents - 1;
2160 }
2161 }
2162
2163 ctx->commits.nr = dedup_i;
2164
2165 stop_progress(&ctx->progress);
2166 }
2167
2168 static void merge_commit_graphs(struct write_commit_graph_context *ctx)
2169 {
2170 struct commit_graph *g = ctx->r->objects->commit_graph;
2171 uint32_t current_graph_number = ctx->num_commit_graphs_before;
2172
2173 while (g && current_graph_number >= ctx->num_commit_graphs_after) {
2174 current_graph_number--;
2175
2176 if (ctx->report_progress)
2177 ctx->progress = start_delayed_progress(_("Merging commit-graph"), 0);
2178
2179 merge_commit_graph(ctx, g);
2180 stop_progress(&ctx->progress);
2181
2182 g = g->base_graph;
2183 }
2184
2185 if (g) {
2186 ctx->new_base_graph = g;
2187 ctx->new_num_commits_in_base = g->num_commits + g->num_commits_in_base;
2188 }
2189
2190 if (ctx->new_base_graph)
2191 ctx->base_graph_name = xstrdup(ctx->new_base_graph->filename);
2192
2193 sort_and_scan_merged_commits(ctx);
2194 }
2195
2196 static void mark_commit_graphs(struct write_commit_graph_context *ctx)
2197 {
2198 uint32_t i;
2199 time_t now = time(NULL);
2200
2201 for (i = ctx->num_commit_graphs_after - 1; i < ctx->num_commit_graphs_before; i++) {
2202 struct stat st;
2203 struct utimbuf updated_time;
2204
2205 if (stat(ctx->commit_graph_filenames_before[i], &st) < 0)
2206 continue;
2207
2208 updated_time.actime = st.st_atime;
2209 updated_time.modtime = now;
2210 utime(ctx->commit_graph_filenames_before[i], &updated_time);
2211 }
2212 }
2213
2214 static void expire_commit_graphs(struct write_commit_graph_context *ctx)
2215 {
2216 struct strbuf path = STRBUF_INIT;
2217 DIR *dir;
2218 struct dirent *de;
2219 size_t dirnamelen;
2220 timestamp_t expire_time = time(NULL);
2221
2222 if (ctx->opts && ctx->opts->expire_time)
2223 expire_time = ctx->opts->expire_time;
2224 if (!ctx->split) {
2225 char *chain_file_name = get_commit_graph_chain_filename(ctx->odb);
2226 unlink(chain_file_name);
2227 free(chain_file_name);
2228 ctx->num_commit_graphs_after = 0;
2229 }
2230
2231 strbuf_addstr(&path, ctx->odb->path);
2232 strbuf_addstr(&path, "/info/commit-graphs");
2233 dir = opendir(path.buf);
2234
2235 if (!dir)
2236 goto out;
2237
2238 strbuf_addch(&path, '/');
2239 dirnamelen = path.len;
2240 while ((de = readdir(dir)) != NULL) {
2241 struct stat st;
2242 uint32_t i, found = 0;
2243
2244 strbuf_setlen(&path, dirnamelen);
2245 strbuf_addstr(&path, de->d_name);
2246
2247 if (stat(path.buf, &st) < 0)
2248 continue;
2249
2250 if (st.st_mtime > expire_time)
2251 continue;
2252 if (path.len < 6 || strcmp(path.buf + path.len - 6, ".graph"))
2253 continue;
2254
2255 for (i = 0; i < ctx->num_commit_graphs_after; i++) {
2256 if (!strcmp(ctx->commit_graph_filenames_after[i],
2257 path.buf)) {
2258 found = 1;
2259 break;
2260 }
2261 }
2262
2263 if (!found)
2264 unlink(path.buf);
2265 }
2266
2267 out:
2268 if(dir)
2269 closedir(dir);
2270 strbuf_release(&path);
2271 }
2272
2273 int write_commit_graph(struct object_directory *odb,
2274 const struct string_list *const pack_indexes,
2275 struct oidset *commits,
2276 enum commit_graph_write_flags flags,
2277 const struct commit_graph_opts *opts)
2278 {
2279 struct repository *r = the_repository;
2280 struct write_commit_graph_context *ctx;
2281 uint32_t i;
2282 int res = 0;
2283 int replace = 0;
2284 struct bloom_filter_settings bloom_settings = DEFAULT_BLOOM_FILTER_SETTINGS;
2285 struct topo_level_slab topo_levels;
2286
2287 prepare_repo_settings(r);
2288 if (!r->settings.core_commit_graph) {
2289 warning(_("attempting to write a commit-graph, but 'core.commitGraph' is disabled"));
2290 return 0;
2291 }
2292 if (!commit_graph_compatible(r))
2293 return 0;
2294
2295 CALLOC_ARRAY(ctx, 1);
2296 ctx->r = r;
2297 ctx->odb = odb;
2298 ctx->append = flags & COMMIT_GRAPH_WRITE_APPEND ? 1 : 0;
2299 ctx->report_progress = flags & COMMIT_GRAPH_WRITE_PROGRESS ? 1 : 0;
2300 ctx->split = flags & COMMIT_GRAPH_WRITE_SPLIT ? 1 : 0;
2301 ctx->opts = opts;
2302 ctx->total_bloom_filter_data_size = 0;
2303 ctx->write_generation_data = (get_configured_generation_version(r) == 2);
2304 ctx->num_generation_data_overflows = 0;
2305
2306 bloom_settings.bits_per_entry = git_env_ulong("GIT_TEST_BLOOM_SETTINGS_BITS_PER_ENTRY",
2307 bloom_settings.bits_per_entry);
2308 bloom_settings.num_hashes = git_env_ulong("GIT_TEST_BLOOM_SETTINGS_NUM_HASHES",
2309 bloom_settings.num_hashes);
2310 bloom_settings.max_changed_paths = git_env_ulong("GIT_TEST_BLOOM_SETTINGS_MAX_CHANGED_PATHS",
2311 bloom_settings.max_changed_paths);
2312 ctx->bloom_settings = &bloom_settings;
2313
2314 init_topo_level_slab(&topo_levels);
2315 ctx->topo_levels = &topo_levels;
2316
2317 prepare_commit_graph(ctx->r);
2318 if (ctx->r->objects->commit_graph) {
2319 struct commit_graph *g = ctx->r->objects->commit_graph;
2320
2321 while (g) {
2322 g->topo_levels = &topo_levels;
2323 g = g->base_graph;
2324 }
2325 }
2326
2327 if (flags & COMMIT_GRAPH_WRITE_BLOOM_FILTERS)
2328 ctx->changed_paths = 1;
2329 if (!(flags & COMMIT_GRAPH_NO_WRITE_BLOOM_FILTERS)) {
2330 struct commit_graph *g;
2331
2332 g = ctx->r->objects->commit_graph;
2333
2334 /* We have changed-paths already. Keep them in the next graph */
2335 if (g && g->chunk_bloom_data) {
2336 ctx->changed_paths = 1;
2337 ctx->bloom_settings = g->bloom_filter_settings;
2338 }
2339 }
2340
2341 if (ctx->split) {
2342 struct commit_graph *g = ctx->r->objects->commit_graph;
2343
2344 while (g) {
2345 ctx->num_commit_graphs_before++;
2346 g = g->base_graph;
2347 }
2348
2349 if (ctx->num_commit_graphs_before) {
2350 ALLOC_ARRAY(ctx->commit_graph_filenames_before, ctx->num_commit_graphs_before);
2351 i = ctx->num_commit_graphs_before;
2352 g = ctx->r->objects->commit_graph;
2353
2354 while (g) {
2355 ctx->commit_graph_filenames_before[--i] = xstrdup(g->filename);
2356 g = g->base_graph;
2357 }
2358 }
2359
2360 if (ctx->opts)
2361 replace = ctx->opts->split_flags & COMMIT_GRAPH_SPLIT_REPLACE;
2362 }
2363
2364 ctx->approx_nr_objects = approximate_object_count();
2365
2366 if (ctx->append && ctx->r->objects->commit_graph) {
2367 struct commit_graph *g = ctx->r->objects->commit_graph;
2368 for (i = 0; i < g->num_commits; i++) {
2369 struct object_id oid;
2370 oidread(&oid, g->chunk_oid_lookup + g->hash_len * i);
2371 oid_array_append(&ctx->oids, &oid);
2372 }
2373 }
2374
2375 if (pack_indexes) {
2376 ctx->order_by_pack = 1;
2377 if ((res = fill_oids_from_packs(ctx, pack_indexes)))
2378 goto cleanup;
2379 }
2380
2381 if (commits) {
2382 if ((res = fill_oids_from_commits(ctx, commits)))
2383 goto cleanup;
2384 }
2385
2386 if (!pack_indexes && !commits) {
2387 ctx->order_by_pack = 1;
2388 fill_oids_from_all_packs(ctx);
2389 }
2390
2391 close_reachable(ctx);
2392
2393 copy_oids_to_commits(ctx);
2394
2395 if (ctx->commits.nr >= GRAPH_EDGE_LAST_MASK) {
2396 error(_("too many commits to write graph"));
2397 res = -1;
2398 goto cleanup;
2399 }
2400
2401 if (!ctx->commits.nr && !replace)
2402 goto cleanup;
2403
2404 if (ctx->split) {
2405 split_graph_merge_strategy(ctx);
2406
2407 if (!replace)
2408 merge_commit_graphs(ctx);
2409 } else
2410 ctx->num_commit_graphs_after = 1;
2411
2412 ctx->trust_generation_numbers = validate_mixed_generation_chain(ctx->r->objects->commit_graph);
2413
2414 compute_topological_levels(ctx);
2415 if (ctx->write_generation_data)
2416 compute_generation_numbers(ctx);
2417
2418 if (ctx->changed_paths)
2419 compute_bloom_filters(ctx);
2420
2421 res = write_commit_graph_file(ctx);
2422
2423 if (ctx->split)
2424 mark_commit_graphs(ctx);
2425
2426 expire_commit_graphs(ctx);
2427
2428 cleanup:
2429 free(ctx->graph_name);
2430 free(ctx->commits.list);
2431 oid_array_clear(&ctx->oids);
2432 clear_topo_level_slab(&topo_levels);
2433
2434 if (ctx->commit_graph_filenames_after) {
2435 for (i = 0; i < ctx->num_commit_graphs_after; i++) {
2436 free(ctx->commit_graph_filenames_after[i]);
2437 free(ctx->commit_graph_hash_after[i]);
2438 }
2439
2440 for (i = 0; i < ctx->num_commit_graphs_before; i++)
2441 free(ctx->commit_graph_filenames_before[i]);
2442
2443 free(ctx->commit_graph_filenames_after);
2444 free(ctx->commit_graph_filenames_before);
2445 free(ctx->commit_graph_hash_after);
2446 }
2447
2448 free(ctx);
2449
2450 return res;
2451 }
2452
2453 #define VERIFY_COMMIT_GRAPH_ERROR_HASH 2
2454 static int verify_commit_graph_error;
2455
2456 __attribute__((format (printf, 1, 2)))
2457 static void graph_report(const char *fmt, ...)
2458 {
2459 va_list ap;
2460
2461 verify_commit_graph_error = 1;
2462 va_start(ap, fmt);
2463 vfprintf(stderr, fmt, ap);
2464 fprintf(stderr, "\n");
2465 va_end(ap);
2466 }
2467
2468 #define GENERATION_ZERO_EXISTS 1
2469 #define GENERATION_NUMBER_EXISTS 2
2470
2471 static int commit_graph_checksum_valid(struct commit_graph *g)
2472 {
2473 return hashfile_checksum_valid(g->data, g->data_len);
2474 }
2475
2476 int verify_commit_graph(struct repository *r, struct commit_graph *g, int flags)
2477 {
2478 uint32_t i, cur_fanout_pos = 0;
2479 struct object_id prev_oid, cur_oid;
2480 int generation_zero = 0;
2481 struct progress *progress = NULL;
2482 int local_error = 0;
2483
2484 if (!g) {
2485 graph_report("no commit-graph file loaded");
2486 return 1;
2487 }
2488
2489 verify_commit_graph_error = verify_commit_graph_lite(g);
2490 if (verify_commit_graph_error)
2491 return verify_commit_graph_error;
2492
2493 if (!commit_graph_checksum_valid(g)) {
2494 graph_report(_("the commit-graph file has incorrect checksum and is likely corrupt"));
2495 verify_commit_graph_error = VERIFY_COMMIT_GRAPH_ERROR_HASH;
2496 }
2497
2498 for (i = 0; i < g->num_commits; i++) {
2499 struct commit *graph_commit;
2500
2501 oidread(&cur_oid, g->chunk_oid_lookup + g->hash_len * i);
2502
2503 if (i && oidcmp(&prev_oid, &cur_oid) >= 0)
2504 graph_report(_("commit-graph has incorrect OID order: %s then %s"),
2505 oid_to_hex(&prev_oid),
2506 oid_to_hex(&cur_oid));
2507
2508 oidcpy(&prev_oid, &cur_oid);
2509
2510 while (cur_oid.hash[0] > cur_fanout_pos) {
2511 uint32_t fanout_value = get_be32(g->chunk_oid_fanout + cur_fanout_pos);
2512
2513 if (i != fanout_value)
2514 graph_report(_("commit-graph has incorrect fanout value: fanout[%d] = %u != %u"),
2515 cur_fanout_pos, fanout_value, i);
2516 cur_fanout_pos++;
2517 }
2518
2519 graph_commit = lookup_commit(r, &cur_oid);
2520 if (!parse_commit_in_graph_one(r, g, graph_commit))
2521 graph_report(_("failed to parse commit %s from commit-graph"),
2522 oid_to_hex(&cur_oid));
2523 }
2524
2525 while (cur_fanout_pos < 256) {
2526 uint32_t fanout_value = get_be32(g->chunk_oid_fanout + cur_fanout_pos);
2527
2528 if (g->num_commits != fanout_value)
2529 graph_report(_("commit-graph has incorrect fanout value: fanout[%d] = %u != %u"),
2530 cur_fanout_pos, fanout_value, i);
2531
2532 cur_fanout_pos++;
2533 }
2534
2535 if (verify_commit_graph_error & ~VERIFY_COMMIT_GRAPH_ERROR_HASH)
2536 return verify_commit_graph_error;
2537
2538 if (flags & COMMIT_GRAPH_WRITE_PROGRESS)
2539 progress = start_progress(_("Verifying commits in commit graph"),
2540 g->num_commits);
2541
2542 for (i = 0; i < g->num_commits; i++) {
2543 struct commit *graph_commit, *odb_commit;
2544 struct commit_list *graph_parents, *odb_parents;
2545 timestamp_t max_generation = 0;
2546 timestamp_t generation;
2547
2548 display_progress(progress, i + 1);
2549 oidread(&cur_oid, g->chunk_oid_lookup + g->hash_len * i);
2550
2551 graph_commit = lookup_commit(r, &cur_oid);
2552 odb_commit = (struct commit *)create_object(r, &cur_oid, alloc_commit_node(r));
2553 if (parse_commit_internal(odb_commit, 0, 0)) {
2554 graph_report(_("failed to parse commit %s from object database for commit-graph"),
2555 oid_to_hex(&cur_oid));
2556 continue;
2557 }
2558
2559 if (!oideq(&get_commit_tree_in_graph_one(r, g, graph_commit)->object.oid,
2560 get_commit_tree_oid(odb_commit)))
2561 graph_report(_("root tree OID for commit %s in commit-graph is %s != %s"),
2562 oid_to_hex(&cur_oid),
2563 oid_to_hex(get_commit_tree_oid(graph_commit)),
2564 oid_to_hex(get_commit_tree_oid(odb_commit)));
2565
2566 graph_parents = graph_commit->parents;
2567 odb_parents = odb_commit->parents;
2568
2569 while (graph_parents) {
2570 if (!odb_parents) {
2571 graph_report(_("commit-graph parent list for commit %s is too long"),
2572 oid_to_hex(&cur_oid));
2573 break;
2574 }
2575
2576 /* parse parent in case it is in a base graph */
2577 parse_commit_in_graph_one(r, g, graph_parents->item);
2578
2579 if (!oideq(&graph_parents->item->object.oid, &odb_parents->item->object.oid))
2580 graph_report(_("commit-graph parent for %s is %s != %s"),
2581 oid_to_hex(&cur_oid),
2582 oid_to_hex(&graph_parents->item->object.oid),
2583 oid_to_hex(&odb_parents->item->object.oid));
2584
2585 generation = commit_graph_generation(graph_parents->item);
2586 if (generation > max_generation)
2587 max_generation = generation;
2588
2589 graph_parents = graph_parents->next;
2590 odb_parents = odb_parents->next;
2591 }
2592
2593 if (odb_parents)
2594 graph_report(_("commit-graph parent list for commit %s terminates early"),
2595 oid_to_hex(&cur_oid));
2596
2597 if (!commit_graph_generation(graph_commit)) {
2598 if (generation_zero == GENERATION_NUMBER_EXISTS)
2599 graph_report(_("commit-graph has generation number zero for commit %s, but non-zero elsewhere"),
2600 oid_to_hex(&cur_oid));
2601 generation_zero = GENERATION_ZERO_EXISTS;
2602 } else if (generation_zero == GENERATION_ZERO_EXISTS)
2603 graph_report(_("commit-graph has non-zero generation number for commit %s, but zero elsewhere"),
2604 oid_to_hex(&cur_oid));
2605
2606 if (generation_zero == GENERATION_ZERO_EXISTS)
2607 continue;
2608
2609 /*
2610 * If we are using topological level and one of our parents has
2611 * generation GENERATION_NUMBER_V1_MAX, then our generation is
2612 * also GENERATION_NUMBER_V1_MAX. Decrement to avoid extra logic
2613 * in the following condition.
2614 */
2615 if (!g->read_generation_data && max_generation == GENERATION_NUMBER_V1_MAX)
2616 max_generation--;
2617
2618 generation = commit_graph_generation(graph_commit);
2619 if (generation < max_generation + 1)
2620 graph_report(_("commit-graph generation for commit %s is %"PRItime" < %"PRItime),
2621 oid_to_hex(&cur_oid),
2622 generation,
2623 max_generation + 1);
2624
2625 if (graph_commit->date != odb_commit->date)
2626 graph_report(_("commit date for commit %s in commit-graph is %"PRItime" != %"PRItime),
2627 oid_to_hex(&cur_oid),
2628 graph_commit->date,
2629 odb_commit->date);
2630 }
2631 stop_progress(&progress);
2632
2633 local_error = verify_commit_graph_error;
2634
2635 if (!(flags & COMMIT_GRAPH_VERIFY_SHALLOW) && g->base_graph)
2636 local_error |= verify_commit_graph(r, g->base_graph, flags);
2637
2638 return local_error;
2639 }
2640
2641 void free_commit_graph(struct commit_graph *g)
2642 {
2643 if (!g)
2644 return;
2645 if (g->data) {
2646 munmap((void *)g->data, g->data_len);
2647 g->data = NULL;
2648 }
2649 free(g->filename);
2650 free(g->bloom_filter_settings);
2651 free(g);
2652 }
2653
2654 void disable_commit_graph(struct repository *r)
2655 {
2656 r->commit_graph_disabled = 1;
2657 }