Ver a proveniência

Remove .options files for libFuzzers and update FUZZING.md documentation.

Due to https://codereview.chromium.org/1867833002/ replacing .options files.

Change-Id: I17f0d5b8b1784fdcf163791e72f6b58b29657e95
Reviewed-on: https://boringssl-review.googlesource.com/7640
Reviewed-by: David Benjamin <davidben@google.com>
kris/onging/CECPQ3_patch15
Max Moroz há 8 anos
committed by David Benjamin
ascendente
cometimento
188487faad
5 ficheiros alterados com 11 adições e 9 eliminações
  1. +11
    -1
      FUZZING.md
  2. +0
    -2
      fuzz/cert.options
  3. +0
    -2
      fuzz/client.options
  4. +0
    -2
      fuzz/privkey.options
  5. +0
    -2
      fuzz/server.options

+ 11
- 1
FUZZING.md Ver ficheiro

@@ -28,7 +28,17 @@ From the `build/` directory, you can then run the fuzzers. For example:

The arguments to `jobs` and `workers` should be the number of cores that you wish to dedicate to fuzzing. By default, libFuzzer uses the largest test in the corpus (or 64 if empty) as the maximum test case length. The `max_len` argument overrides this.

The recommended values of `max_len` for each test may be found in `.options` files alongside the test source. These were determined by rounding up the length of the largest case in the corpus. When writing a new fuzzer, configure `max_len` in a similar file.
The recommended values of `max_len` for each test are:

| Test | `max_len` value |
|-----------|-----------------|
| `privkey` | 2048 |
| `cert` | 3072 |
| `server` | 4096 |
| `client` | 20000 |


These were determined by rounding up the length of the largest case in the corpus.

There are directories in `fuzz/` for each of the fuzzing tests which contain seed files for fuzzing. Some of the seed files were generated manually but many of them are “interesting” results generated by the fuzzing itself. (Where “interesting” means that it triggered a previously unknown path in the code.)



+ 0
- 2
fuzz/cert.options Ver ficheiro

@@ -1,2 +0,0 @@
[libfuzzer]
max_len = 3072

+ 0
- 2
fuzz/client.options Ver ficheiro

@@ -1,2 +0,0 @@
[libfuzzer]
max_len = 20000

+ 0
- 2
fuzz/privkey.options Ver ficheiro

@@ -1,2 +0,0 @@
[libfuzzer]
max_len = 2048

+ 0
- 2
fuzz/server.options Ver ficheiro

@@ -1,2 +0,0 @@
[libfuzzer]
max_len = 4096

Carregando…
Cancelar
Guardar