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