Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
1399abc5
Commit
1399abc5
authored
Dec 25, 2016
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
🚧
added MessagePack fuzz target
parent
e4cc62e6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
79 additions
and
0 deletions
+79
-0
Makefile
Makefile
+8
-0
test/Makefile
test/Makefile
+3
-0
test/src/fuzzer-parse_msgpack.cpp
test/src/fuzzer-parse_msgpack.cpp
+68
-0
No files found.
Makefile
View file @
1399abc5
...
...
@@ -62,6 +62,14 @@ fuzz_testing_cbor:
find
test
/data
-size
-5k
-name
*
.cbor | xargs
-I
{}
cp
"{}"
fuzz-testing/testcases
@
echo
"Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
fuzz_testing_msgpack
:
rm
-fr
fuzz-testing
mkdir
-p
fuzz-testing fuzz-testing/testcases fuzz-testing/out
$(MAKE)
parse_msgpack_fuzzer
-C
test
CXX
=
afl-clang++
mv test
/parse_msgpack_fuzzer fuzz-testing/fuzzer
find
test
/data
-size
-5k
-name
*
.msgpack | xargs
-I
{}
cp
"{}"
fuzz-testing/testcases
@
echo
"Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
##########################################################################
# static analyzer
...
...
test/Makefile
View file @
1399abc5
...
...
@@ -89,3 +89,6 @@ parse_afl_fuzzer:
parse_cbor_fuzzer
:
$(CXX)
$(CXXFLAGS)
$(CPPFLAGS)
src/fuzzer-driver_afl.cpp src/fuzzer-parse_cbor.cpp
-o
$@
parse_msgpack_fuzzer
:
$(CXX)
$(CXXFLAGS)
$(CPPFLAGS)
src/fuzzer-driver_afl.cpp src/fuzzer-parse_msgpack.cpp
-o
$@
test/src/fuzzer-parse_msgpack.cpp
0 → 100644
View file @
1399abc5
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (fuzz test support)
| | |__ | | | | | | version 2.0.9
|_____|_____|_____|_|___| https://github.com/nlohmann/json
This file implements a parser test suitable for fuzz testing. Given a byte
array data, it performs the following steps:
- j1 = from_msgpack(data)
- vec = to_msgpack(j1)
- j2 = from_msgpack(vec)
- assert(j1 == j2)
The provided function `LLVMFuzzerTestOneInput` can be used in different fuzzer
drivers.
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
*/
#include <iostream>
#include <sstream>
#include <json.hpp>
using
json
=
nlohmann
::
json
;
// see http://llvm.org/docs/LibFuzzer.html
extern
"C"
int
LLVMFuzzerTestOneInput
(
const
uint8_t
*
data
,
size_t
size
)
{
try
{
// step 1: parse input
std
::
vector
<
uint8_t
>
vec1
(
data
,
data
+
size
);
json
j1
=
json
::
from_msgpack
(
vec1
);
try
{
// step 2: round trip
std
::
vector
<
uint8_t
>
vec2
=
json
::
to_msgpack
(
j1
);
// parse serialization
json
j2
=
json
::
from_msgpack
(
vec2
);
// deserializations must match
assert
(
j1
==
j2
);
}
catch
(
const
std
::
invalid_argument
&
)
{
// parsing a MessagePack serialization must not fail
assert
(
false
);
}
}
catch
(
const
std
::
invalid_argument
&
)
{
// parse errors are ok, because input may be random bytes
}
catch
(
const
std
::
out_of_range
&
)
{
// parse errors are ok, because input may be random bytes
}
catch
(
const
std
::
domain_error
&
)
{
// parse errors are ok, because input may be random bytes
}
// return 0 - non-zero return values are reserved for future use
return
0
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment