forked from googleprojectzero/fuzzilli
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Corpus.swift
60 lines (48 loc) · 2.27 KB
/
Corpus.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
import Foundation
/// Protocol defining a Corpus for use in Fuzzilli
/// It manages discovered programs, determines the next seed to target,
/// and provides programs to be used in the splice mutators
public protocol Corpus : ComponentBase {
var size: Int { get }
var isEmpty: Bool { get }
/// Whether this corpus is able to export and restore its internal state.
/// Used mainly for worker synchronization.
var supportsFastStateSynchronization: Bool { get }
/// Add new programs to the corpus, from various sources.
func add(_ program: Program, _ aspects: ProgramAspects)
/// Returns a random element for use in a splicing
func randomElementForSplicing() -> Program
/// Returns the next program to be used as the basis of a mutation round
func randomElementForMutating() -> Program
/// All programs currently in the corpus
/// We could also consider making Corpus a Collection instead, but this seems easier for now.
func allPrograms() -> [Program]
/// A corpus that supports fast state transfer needs to implement these two methods.
func exportState() throws -> Data
func importState(_ buffer: Data) throws
}
extension Corpus {
func prepareProgramForInclusion(_ program: Program, index: Int) {
// Program ancestor chains only go up to the next corpus element
program.clearParent()
// And programs in the corpus don't keep their comments
program.comments.removeAll()
if fuzzer.config.enableInspection {
// Except for one identifying them as part of the corpus
program.comments.add("Corpus entry #\(index) on instance \(fuzzer.id) with Corpus type \(name)", at: .header)
}
}
}