summaryrefslogtreecommitdiffstats
path: root/ossfuzz
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo found by codespellDimitri Papadopoulos2023-01-081-1/+1
|
* fixed direct-leak in round_trip_fuzzer.cYann Collet2022-07-101-2/+3
| | | | reported by oss-fuzz
* - Fixed incorrect free in `round_trip_fuzzer.c` ↵Yonatan Komornik2022-07-092-110/+106
| | | | | | (https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48884) - Fixed `round_trip_frame_uncompressed_fuzzer.c` to not use uninitialized memory (https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48910)
* ignore ossfuzz artifactYann Collet2022-07-051-23/+4
|
* Merge pull request #1094 from alexmohr/add-uncompressed-apiYann Collet2022-07-052-0/+139
|\ | | | | frame-api: add function to insert uncomressed data
| * review: fix findingsAlexander Mohr2022-07-051-8/+0
| | | | | | | | | | | | | | | | | | * replace assert with test for LZ4F_uncompressedUpdate * update documentation to incldue correct docstring * remove unecessary entry point * remove compress_linked_block_mode from fuzzing test Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
| * ossfuzz: extend fuzzing test to include linked blocksAlexander Mohr2022-06-131-5/+24
| | | | | | | | | | | | fuzzing test now tests linked and independent blocks Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
| * fuzz-test: add fuzz test for uncompressed apiAlexander Mohr2022-06-113-5/+128
| | | | | | | | | | | | add a fuzzing test for uncompressed frame api Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
| * review: Fix review findingsAlexander Mohr2022-06-101-0/+5
| | | | | | | | | | | | This commit fixes the review findings Signed-off-by: Alexander Mohr <alexander.m.mohr@mercedes-benz.com>
* | clarify yet another time what dual-license meansYann Collet2022-07-041-1/+2
| |
* | ignore ossfuzz artifactsYann Collet2022-07-011-0/+27
| |
* | ossfuzz: add fuzz for `LZ4_decompress_safe_partial_usingDict`Qi Wang2022-06-072-4/+79
|/ | | | Signed-off-by: Qi Wang <wangqi@linux.alibaba.com>
* Fix typos found by codespellDimitri Papadopoulos2021-11-252-2/+2
|
* [ossfuzz] Fix parallel buildsNick Terrell2020-11-051-7/+7
| | | | | | With `make -j` multiple builds of `standaloneengine.o` happened in parallel. Fix this by detecting `standaloneengine.o` and moving it to a depedency.
* fix minor static analyzer warningsYann Collet2020-09-302-4/+4
| | | | | detected by scan-build and cppcheck fix #786
* [CI][ossfuzz] Fix string equalNick Terrell2020-08-241-1/+1
|
* [CI][Fuzz] Fix Travis-CI fuzzer testsNick Terrell2020-08-201-1/+6
| | | | Fixes #781
* added target lz4-wlibYann Collet2020-08-111-1/+5
| | | | | | | | variant of lz4 linking to liblz4 dynamic library requires the dynamic library to expose static-only symbols (experimental API) Example for #888
* Using size instead of LZ4_compressBound(size) <- causes heap overflowBimba Shrestha2019-09-231-1/+1
|
* Retreiving 32 bits from the end for fuzzerBimba Shrestha2019-09-1410-50/+36
|
* Addressing naming nits and moving size modification up in all fuzzersBimba Shrestha2019-09-1310-68/+63
|
* Seperating the seed generation and useBimba Shrestha2019-09-1310-33/+68
|
* Making fuzzers use dataProducer api instead of random seed for decisionsBimba Shrestha2019-08-305-7/+56
|
* Adding comments, fixing nit, and hiding the struct in data producer apibimbashrestha2019-08-178-11/+25
|
* Seperating fuzz data producer api impl and header, using data producer on ↵bimbashrestha2019-08-169-42/+78
| | | | the easy fuzzers
* Created a data producer API and used in decompress_fuzzerbimbashrestha2019-08-162-6/+26
|
* Adding fuzz data producer for uint32 and using in decompress_fuzzerbimbashrestha2019-08-162-3/+29
| | | | | | | | | | | | | | Summary: Consuming bytes from the end of data instead of from the front to prevent "all-in-one" decisions. Test Plan: Reviewers: Subscribers: Tasks: Tags:
* [fuzz] Add LZ4 frame fuzzersNick Terrell2019-07-196-3/+219
| | | | | | * Round trip fuzzer * Compress fuzzer * Decompress fuzzer
* [fuzz] Add HC fuzzers for round trip, compress, and streamingNick Terrell2019-07-185-14/+202
|
* [fuzzer] Update scripts for new fuzzersNick Terrell2019-07-183-6/+11
|
* [fuzz] Add a streaming round trip fuzzerNick Terrell2019-07-181-0/+217
|
* [ossfuzz] Improve the fuzzersNick Terrell2019-07-158-44/+273
| | | | | | | | | | | * Run more decompression variants * Round trip the compression fuzzer and do partial decompression as well * Add a compression fuzzer that compresses into a smaller output buffer and test the destSize variant These fuzzers caught 2 bugs that were fixed in the previous commit. * Input buffer over-read in partial decompress * Partial decompress fails if output size is 0
* Remove unnecessary call to Makefile.incMax Dymond2019-06-301-2/+0
|
* More markups for style changesMax Dymond2019-06-284-28/+39
|
* Move to using C rather than C++ for compilationMax Dymond2019-06-285-6/+12
|
* Write a simple decompress target as wellMax Dymond2019-06-283-5/+34
|
* Code review markups:Max Dymond2019-06-283-17/+18
| | | | | | - Correct use of CPPFLAGS - Detect allocation failure - Add a CHECK macro for failure
* Add a fuzzing target that compiles in the oss-fuzz environmentMax Dymond2019-06-286-0/+203