/* roundTripCrash Copyright (C) Yann Collet 2013-2016 GPL v2 License This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. You can contact the author at : - zstd homepage : http://www.zstd.net */ /* This program takes a file in input, performs a zstd round-trip test (compression - decompress) compares the result with original and generates a crash (double free) on corruption detection. */ /*=========================================== * Dependencies *==========================================*/ #include /* size_t */ #include /* malloc, free, exit */ #include /* fprintf */ #include /* stat */ #include /* stat */ #include "xxhash.h" #include "zstd.h" /*=========================================== * Macros *==========================================*/ #define MIN(a,b) ( (a) < (b) ? (a) : (b) ) /** roundTripTest() : * Compresses `srcBuff` into `compressedBuff`, * then decompresses `compressedBuff` into `resultBuff`. * Compression level used is derived from first content byte. * @return : result of decompression, which should be == `srcSize` * or an error code if either compression or decompression fails. * Note : `compressedBuffCapacity` should be `>= ZSTD_compressBound(srcSize)` * for compression to be guaranteed to work */ static size_t roundTripTest(void* resultBuff, size_t resultBuffCapacity, void* compressedBuff, size_t compressedBuffCapacity, const void* srcBuff, size_t srcBuffSize) { static const int maxClevel = 19; size_t const hashLength = MIN(128, srcBuffSize); unsigned const h32 = XXH32(srcBuff, hashLength, 0); int const cLevel = h32 % maxClevel; size_t const cSize = ZSTD_compress(compressedBuff, compressedBuffCapacity, srcBuff, srcBuffSize, cLevel); if (ZSTD_isError(cSize)) { fprintf(stderr, "Compression error : %s \n", ZSTD_getErrorName(cSize)); return cSize; } return ZSTD_decompress(resultBuff, resultBuffCapacity, compressedBuff, cSize); } static size_t checkBuffers(const void* buff1, const void* buff2, size_t buffSize) { const char* ip1 = (const char*)buff1; const char* ip2 = (const char*)buff2; size_t pos; for (pos=0; pos= `fileSize` */ static void loadFile(void* buffer, const char* fileName, size_t fileSize) { FILE* const f = fopen(fileName, "rb"); if (isDirectory(fileName)) { fprintf(stderr, "Ignoring %s directory \n", fileName); exit(2); } if (f==NULL) { fprintf(stderr, "Impossible to open %s \n", fileName); exit(3); } { size_t const readSize = fread(buffer, 1, fileSize, f); if (readSize != fileSize) { fprintf(stderr, "Error reading %s \n", fileName); exit(5); } } fclose(f); } static void fileCheck(const char* fileName) { size_t const fileSize = getFileSize(fileName); void* buffer = malloc(fileSize); if (!buffer) { fprintf(stderr, "not enough memory \n"); exit(4); } loadFile(buffer, fileName, fileSize); roundTripCheck(buffer, fileSize); free (buffer); } int main(int argCount, const char** argv) { if (argCount < 2) { fprintf(stderr, "Error : no argument : need input file \n"); exit(9); } fileCheck(argv[1]); fprintf(stderr, "no pb detected\n"); return 0; }