@@ -148,6 +148,26 @@ def get_directories(parent_dir):
148
148
]
149
149
150
150
151
+ # pylint: disable=too-many-locals
152
+ def validate_custom_seed_corpus (custom_seed_corpus_dir , benchmarks ):
153
+ """Validate seed corpus provided by user"""
154
+ if not os .path .isdir (custom_seed_corpus_dir ):
155
+ raise ValidationError ('Corpus location "%s" is invalid.' %
156
+ custom_seed_corpus_dir )
157
+
158
+ for benchmark in benchmarks :
159
+ benchmark_corpus_dir = os .path .join (custom_seed_corpus_dir , benchmark )
160
+ if not os .path .exists (benchmark_corpus_dir ):
161
+ raise ValidationError ('Custom seed corpus directory for '
162
+ 'benchmark "%s" does not exist.' % benchmark )
163
+ if not os .path .isdir (benchmark_corpus_dir ):
164
+ raise ValidationError ('Seed corpus of benchmark "%s" must be '
165
+ 'a directory.' % benchmark )
166
+ if not os .listdir (benchmark_corpus_dir ):
167
+ raise ValidationError ('Seed corpus of benchmark "%s" is empty.' %
168
+ benchmark )
169
+
170
+
151
171
def validate_benchmarks (benchmarks : List [str ]):
152
172
"""Parses and validates list of benchmarks."""
153
173
benchmark_types = set ()
@@ -219,7 +239,8 @@ def start_experiment( # pylint: disable=too-many-arguments
219
239
allow_uncommitted_changes = False ,
220
240
concurrent_builds = None ,
221
241
measurers_cpus = None ,
222
- runners_cpus = None ):
242
+ runners_cpus = None ,
243
+ custom_seed_corpus_dir = None ):
223
244
"""Start a fuzzer benchmarking experiment."""
224
245
if not allow_uncommitted_changes :
225
246
check_no_uncommitted_changes ()
@@ -248,6 +269,12 @@ def start_experiment( # pylint: disable=too-many-arguments
248
269
# 12GB is just the amount that KLEE needs, use this default to make KLEE
249
270
# experiments easier to run.
250
271
config ['runner_memory' ] = config .get ('runner_memory' , '12GB' )
272
+
273
+ config ['custom_seed_corpus_dir' ] = custom_seed_corpus_dir
274
+ if config ['custom_seed_corpus_dir' ]:
275
+ validate_custom_seed_corpus (config ['custom_seed_corpus_dir' ],
276
+ benchmarks )
277
+
251
278
return start_experiment_from_full_config (config )
252
279
253
280
@@ -330,6 +357,16 @@ def filter_file(tar_info):
330
357
for benchmark in config ['benchmarks' ]:
331
358
add_oss_fuzz_corpus (benchmark , oss_fuzz_corpora_dir )
332
359
360
+ if config ['custom_seed_corpus_dir' ]:
361
+ for benchmark in config ['benchmarks' ]:
362
+ benchmark_custom_corpus_dir = os .path .join (
363
+ config ['custom_seed_corpus_dir' ], benchmark )
364
+ filestore_utils .cp (
365
+ benchmark_custom_corpus_dir ,
366
+ experiment_utils .get_custom_seed_corpora_filestore_path () + '/' ,
367
+ recursive = True ,
368
+ parallel = True )
369
+
333
370
334
371
class BaseDispatcher :
335
372
"""Class representing the dispatcher."""
@@ -522,6 +559,10 @@ def main():
522
559
'--runners-cpus' ,
523
560
help = 'Cpus available to the runners.' ,
524
561
required = False )
562
+ parser .add_argument ('-cs' ,
563
+ '--custom-seed-corpus-dir' ,
564
+ help = 'Path to the custom seed corpus' ,
565
+ required = False )
525
566
526
567
all_fuzzers = fuzzer_utils .get_fuzzer_names ()
527
568
parser .add_argument ('-f' ,
@@ -585,6 +626,14 @@ def main():
585
626
parser .error ('The sum of runners and measurers cpus is greater than the'
586
627
' available cpu cores (%d)' % os .cpu_count ())
587
628
629
+ if args .custom_seed_corpus_dir :
630
+ if args .no_seeds :
631
+ parser .error ('Cannot enable options "custom_seed_corpus_dir" and '
632
+ '"no_seeds" at the same time' )
633
+ if args .oss_fuzz_corpus :
634
+ parser .error ('Cannot enable options "custom_seed_corpus_dir" and '
635
+ '"oss_fuzz_corpus" at the same time' )
636
+
588
637
start_experiment (args .experiment_name ,
589
638
args .experiment_config ,
590
639
args .benchmarks ,
@@ -596,7 +645,8 @@ def main():
596
645
allow_uncommitted_changes = args .allow_uncommitted_changes ,
597
646
concurrent_builds = concurrent_builds ,
598
647
measurers_cpus = measurers_cpus ,
599
- runners_cpus = runners_cpus )
648
+ runners_cpus = runners_cpus ,
649
+ custom_seed_corpus_dir = args .custom_seed_corpus_dir )
600
650
return 0
601
651
602
652
0 commit comments