Commit Graph

17 Commits

Author SHA1 Message Date
TensorFlower Gardener
7a88f7fb5c Merge pull request from grasskin:master
PiperOrigin-RevId: 317342869
Change-Id: Idba753083b1033b112309966e9f15379a2eaef94
2020-06-19 11:19:25 -07:00
Mihai Maruseac
fccd345ab3
Merge branch 'master' into master 2020-06-19 17:23:54 +00:00
Mihai Maruseac
f1f5ed6859
Update tensorflow/security/fuzzing/status_group_fuzz.cc 2020-06-19 17:22:51 +00:00
Gabriel Rasskin
40b9713f64
Doubling syntax 2020-06-19 10:17:22 -07:00
Gabriel Rasskin
390b259dfc
Fix unused variable issue with fuzzing methods 2020-06-19 10:16:47 -07:00
Mihai Maruseac
c3cc3c40b0 Move fuzzers for TF ops to own subdir. Trim some dependencies.
This duplicates some of the BUILD dependency tree to go around the need to link huge bottleneck dependencies (such as `//tensorflow/core:framework`). Until TF can use `cc_shared_library` in a stable way (and all support in Bazel exists), we will need to use the duplicated tree for fuzzing.

PiperOrigin-RevId: 317326319
Change-Id: I1493e3ae7340298971fe15bd3702b63657f9bf9f
2020-06-19 09:59:12 -07:00
Gabriel Rasskin
71bbebbf4d
Moved final StatusGroup method calls 2020-06-18 15:32:15 -07:00
Gabriel Rasskin
14e942faaa
Update spacing and variable declaration 2020-06-18 15:31:26 -07:00
Gabriel Rasskin
852cde437f
Make error_message constant
Co-authored-by: Mihai Maruseac <mihai.maruseac@gmail.com>
2020-06-18 15:27:56 -07:00
Gabriel Rasskin
dda51e1c94
Added status group fuzzer build rules 2020-06-18 13:59:11 -07:00
Gabriel Rasskin
8452c9f80e
Added status_group fuzzer 2020-06-18 13:58:25 -07:00
TensorFlower Gardener
2779d9e29d Merge pull request from grasskin:patch-1
PiperOrigin-RevId: 316909136
Change-Id: Ic626efedf856449575e5f730119bbbf3c95a054a
2020-06-17 10:07:27 -07:00
Gabriel Rasskin
e3a423a949
Added FuzzedDataProvider to split fuzzer data
Switched manual data splicing to FuzzedDataProvider @mihaimaruseac
2020-06-16 16:34:38 -07:00
Mihai Maruseac
f36313a753 Remove demo_fuzz and fix OSSFuzz error.
Since we have a fuzzer for `Status`, we no longer need `demo_fuzz.cc` and the associated `demo_fuzz` `BUILD` target.

The `Status` fuzzer fails to compile in OSSFuzz as `string` is not `std::string`. Fix this in the same commit.

PiperOrigin-RevId: 316184164
Change-Id: I7001533e899c0aea399da19fd1b72099294d6be2
2020-06-12 15:17:20 -07:00
Mihai Maruseac
255df2c8d8 Add fuzzer for Status.
This should allow us to test fuzzing infrastructure with minimal dependencies.

Since `Status` is used almost everywhere, we need to ensure that the common functionality is safe. We don't expect many crashes from this fuzzer since we only create a status and then look at the error message from it but this is a good test of the fuzzing infrastructure, with minimal dependencies (thus, it is a good test to weed out linker bloat and other linker issues).

PiperOrigin-RevId: 316163409
Change-Id: I62d192348b5f90209ce9188039e4962fe34872a8
2020-06-12 13:26:42 -07:00
Mihai Maruseac
b546504c58 Move identity_fuzz to new location. Add linkstatic=1 to fuzz target.
PiperOrigin-RevId: 315378448
Change-Id: I1df43a32fa81f2c9ff34aa2defbdb431831244ca
2020-06-08 16:43:06 -07:00
Mihai Maruseac
a646c1280d Create tensorflow/security/fuzzing.
This should enable us to create fuzzers that can be used in open source, both in OSSFuzz (in the end, this is part of stabilizing the OSSFuzz integration) and by themselves alone (by passing the corresponding flags).

PiperOrigin-RevId: 315182751
Change-Id: I3b6c38b0bd0613fcfe12d0d61726a5a4bab9c09c
2020-06-07 14:36:31 -07:00