 ecf7fc600a
			
		
	
	ecf7fc600a
	
	
	
		
			
			The Bloom filter used for path limited history traversal was broken on systems whose "char" is unsigned; update the implementation and bump the format version to 2. * tb/path-filter-fix: bloom: introduce `deinit_bloom_filters()` commit-graph: reuse existing Bloom filters where possible object.h: fix mis-aligned flag bits table commit-graph: new Bloom filter version that fixes murmur3 commit-graph: unconditionally load Bloom filters bloom: prepare to discard incompatible Bloom filters bloom: annotate filters with hash version repo-settings: introduce commitgraph.changedPathsVersion t4216: test changed path filters with high bit paths t/helper/test-read-graph: implement `bloom-filters` mode bloom.h: make `load_bloom_filter_from_graph()` public t/helper/test-read-graph.c: extract `dump_graph_info()` gitformat-commit-graph: describe version 2 of BDAT commit-graph: ensure Bloom filters are read with consistent settings revision.c: consult Bloom filters for root commits t/t4216-log-bloom.sh: harden `test_bloom_filters_not_used()`
		
			
				
	
	
		
			33 lines
		
	
	
		
			968 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			968 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #define USE_THE_REPOSITORY_VARIABLE
 | |
| 
 | |
| #include "git-compat-util.h"
 | |
| #include "commit-graph.h"
 | |
| #include "repository.h"
 | |
| 
 | |
| struct commit_graph *parse_commit_graph(struct repo_settings *s,
 | |
| 					void *graph_map, size_t graph_size);
 | |
| 
 | |
| int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
 | |
| 
 | |
| int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
 | |
| {
 | |
| 	struct commit_graph *g;
 | |
| 
 | |
| 	initialize_repository(the_repository);
 | |
| 
 | |
| 	/*
 | |
| 	 * Initialize the_repository with commit-graph settings that would
 | |
| 	 * normally be read from the repository's gitdir. We want to avoid
 | |
| 	 * touching the disk to keep the individual fuzz-test cases as fast as
 | |
| 	 * possible.
 | |
| 	 */
 | |
| 	repo_set_hash_algo(the_repository, GIT_HASH_SHA1);
 | |
| 	the_repository->settings.commit_graph_generation_version = 2;
 | |
| 	the_repository->settings.commit_graph_changed_paths_version = 1;
 | |
| 	g = parse_commit_graph(&the_repository->settings, (void *)data, size);
 | |
| 	repo_clear(the_repository);
 | |
| 	free_commit_graph(g);
 | |
| 
 | |
| 	return 0;
 | |
| }
 |