2023-12-04 16:23:24 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2023-12-06 10:30:25 +00:00
|
|
|
/// \file fuzz_decode_alone.c
|
|
|
|
/// \brief Fuzz test program for liblzma .lzma decoding
|
2023-12-04 16:23:24 +00:00
|
|
|
//
|
2023-12-06 10:30:25 +00:00
|
|
|
// Authors: Maksym Vatsyk
|
|
|
|
// Lasse Collin
|
2023-12-04 16:23:24 +00:00
|
|
|
//
|
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "lzma.h"
|
|
|
|
#include "fuzz_common.h"
|
|
|
|
|
|
|
|
|
|
|
|
extern int
|
|
|
|
LLVMFuzzerTestOneInput(const uint8_t *inbuf, size_t inbuf_size)
|
|
|
|
{
|
|
|
|
lzma_stream strm = LZMA_STREAM_INIT;
|
|
|
|
// Initialize a LZMA alone decoder using the memory usage limit
|
|
|
|
// defined in fuzz_common.h
|
2023-12-06 10:30:25 +00:00
|
|
|
lzma_ret ret = lzma_alone_decoder(&strm, MEM_LIMIT);
|
|
|
|
|
|
|
|
if (ret != LZMA_OK) {
|
2023-12-04 16:23:24 +00:00
|
|
|
// This should never happen unless the system has
|
|
|
|
// no free memory or address space to allow the small
|
|
|
|
// allocations that the initialization requires.
|
2023-12-06 10:30:25 +00:00
|
|
|
fprintf(stderr, "lzma_alone_decoder() failed (%d)\n", ret);
|
2023-12-04 16:23:24 +00:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
fuzz_code(&strm, inbuf, inbuf_size);
|
|
|
|
|
|
|
|
// Free the allocated memory.
|
|
|
|
lzma_end(&strm);
|
|
|
|
return 0;
|
|
|
|
}
|