2014-08-15 09:27:04 +00:00
|
|
|
/*
|
2016-04-07 23:50:06 +00:00
|
|
|
* xxhsum - Command line interface for xxhash algorithms
|
|
|
|
* Copyright (C) Yann Collet 2012-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 :
|
|
|
|
* - xxHash homepage : http://www.xxhash.com
|
|
|
|
* - xxHash source repository : https://github.com/Cyan4973/xxHash
|
2014-08-15 09:27:04 +00:00
|
|
|
*/
|
|
|
|
|
2016-04-07 23:50:06 +00:00
|
|
|
/* xxhsum :
|
2016-01-07 22:54:51 +00:00
|
|
|
* Provides hash value of a file content, or a list of files, or stdin
|
|
|
|
* Display convention is Big Endian, for both 32 and 64 bits algorithms
|
|
|
|
*/
|
|
|
|
|
2016-06-06 12:12:27 +00:00
|
|
|
#ifndef XXHASH_C_2097394837
|
|
|
|
#define XXHASH_C_2097394837
|
2016-01-07 22:54:51 +00:00
|
|
|
|
2016-01-04 07:32:38 +00:00
|
|
|
/* ************************************
|
2018-03-20 17:41:22 +00:00
|
|
|
* Compiler Options
|
|
|
|
**************************************/
|
2014-10-29 01:42:26 +00:00
|
|
|
/* MS Visual */
|
|
|
|
#if defined(_MSC_VER) || defined(_WIN32)
|
|
|
|
# define _CRT_SECURE_NO_WARNINGS /* removes visual warnings */
|
|
|
|
#endif
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2014-10-29 01:42:26 +00:00
|
|
|
/* Under Linux at least, pull in the *64 commands */
|
2016-01-14 02:01:39 +00:00
|
|
|
#ifndef _LARGEFILE64_SOURCE
|
|
|
|
# define _LARGEFILE64_SOURCE
|
|
|
|
#endif
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-01-04 07:32:38 +00:00
|
|
|
/* ************************************
|
2018-03-20 17:41:22 +00:00
|
|
|
* Includes
|
|
|
|
**************************************/
|
2016-08-14 02:28:17 +00:00
|
|
|
#include <stdlib.h> /* malloc, calloc, free, exit */
|
2018-02-19 00:56:14 +00:00
|
|
|
#include <stdio.h> /* fprintf, fopen, ftello64, fread, stdin, stdout, _fileno (when present) */
|
2014-12-17 11:15:03 +00:00
|
|
|
#include <string.h> /* strcmp */
|
2018-02-19 00:56:14 +00:00
|
|
|
#include <sys/types.h> /* stat, stat64, _stat64 */
|
|
|
|
#include <sys/stat.h> /* stat, stat64, _stat64 */
|
2016-04-07 23:50:06 +00:00
|
|
|
#include <time.h> /* clock_t, clock, CLOCKS_PER_SEC */
|
2018-02-19 00:56:14 +00:00
|
|
|
#include <assert.h> /* assert */
|
2019-03-15 15:56:58 +00:00
|
|
|
#include <errno.h> /* errno */
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-08-06 18:40:25 +00:00
|
|
|
#define XXH_STATIC_LINKING_ONLY /* *_state_t */
|
2016-06-06 12:12:27 +00:00
|
|
|
#include "xxhash.h"
|
2014-10-29 12:55:58 +00:00
|
|
|
|
|
|
|
|
2018-03-20 17:41:22 +00:00
|
|
|
/* ************************************
|
|
|
|
* OS-Specific Includes
|
|
|
|
**************************************/
|
2018-09-30 06:09:23 +00:00
|
|
|
#if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__)) /* UNIX-like OS */ \
|
|
|
|
|| defined(__midipix__) || defined(__VMS))
|
|
|
|
# if (defined(__APPLE__) && defined(__MACH__)) || defined(__SVR4) || defined(_AIX) || defined(__hpux) /* POSIX.1-2001 (SUSv3) conformant */ \
|
|
|
|
|| defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) /* BSD distros */
|
|
|
|
# define PLATFORM_POSIX_VERSION 200112L
|
|
|
|
# else
|
|
|
|
# if defined(__linux__) || defined(__linux)
|
|
|
|
# ifndef _POSIX_C_SOURCE
|
|
|
|
# define _POSIX_C_SOURCE 200112L /* use feature test macro */
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
# include <unistd.h> /* declares _POSIX_VERSION */
|
|
|
|
# if defined(_POSIX_VERSION) /* POSIX compliant */
|
|
|
|
# define PLATFORM_POSIX_VERSION _POSIX_VERSION
|
|
|
|
# else
|
|
|
|
# define PLATFORM_POSIX_VERSION 0
|
|
|
|
# endif
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#if !defined(PLATFORM_POSIX_VERSION)
|
|
|
|
# define PLATFORM_POSIX_VERSION -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (defined(__linux__) && (PLATFORM_POSIX_VERSION >= 1)) \
|
|
|
|
|| (PLATFORM_POSIX_VERSION >= 200112L) \
|
|
|
|
|| defined(__DJGPP__) \
|
|
|
|
|| defined(__MSYS__)
|
|
|
|
# include <unistd.h> /* isatty */
|
|
|
|
# define IS_CONSOLE(stdStream) isatty(fileno(stdStream))
|
|
|
|
#elif defined(MSDOS) || defined(OS2) || defined(__CYGWIN__)
|
|
|
|
# include <io.h> /* _isatty */
|
2014-10-29 12:55:58 +00:00
|
|
|
# define IS_CONSOLE(stdStream) _isatty(_fileno(stdStream))
|
2018-09-30 06:09:23 +00:00
|
|
|
#elif defined(WIN32) || defined(_WIN32)
|
|
|
|
# include <io.h> /* _isatty */
|
|
|
|
# include <windows.h> /* DeviceIoControl, HANDLE, FSCTL_SET_SPARSE */
|
|
|
|
# include <stdio.h> /* FILE */
|
|
|
|
static __inline int IS_CONSOLE(FILE* stdStream) {
|
|
|
|
DWORD dummy;
|
|
|
|
return _isatty(_fileno(stdStream)) && GetConsoleMode((HANDLE)_get_osfhandle(_fileno(stdStream)), &dummy);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
# define IS_CONSOLE(stdStream) 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(MSDOS) || defined(OS2) || defined(WIN32) || defined(_WIN32)
|
|
|
|
# include <fcntl.h> /* _O_BINARY */
|
|
|
|
# include <io.h> /* _setmode, _fileno, _get_osfhandle */
|
|
|
|
# if !defined(__DJGPP__)
|
|
|
|
# include <windows.h> /* DeviceIoControl, HANDLE, FSCTL_SET_SPARSE */
|
|
|
|
# include <winioctl.h> /* FSCTL_SET_SPARSE */
|
|
|
|
# define SET_BINARY_MODE(file) { int const unused=_setmode(_fileno(file), _O_BINARY); (void)unused; }
|
|
|
|
# define SET_SPARSE_FILE_MODE(file) { DWORD dw; DeviceIoControl((HANDLE) _get_osfhandle(_fileno(file)), FSCTL_SET_SPARSE, 0, 0, 0, 0, &dw, 0); }
|
|
|
|
# else
|
|
|
|
# define SET_BINARY_MODE(file) setmode(fileno(file), O_BINARY)
|
|
|
|
# define SET_SPARSE_FILE_MODE(file)
|
|
|
|
# endif
|
2014-10-29 12:55:58 +00:00
|
|
|
#else
|
|
|
|
# define SET_BINARY_MODE(file)
|
2018-09-30 06:09:23 +00:00
|
|
|
# define SET_SPARSE_FILE_MODE(file)
|
2014-10-29 12:55:58 +00:00
|
|
|
#endif
|
2014-08-15 09:27:04 +00:00
|
|
|
|
|
|
|
#if !defined(S_ISREG)
|
|
|
|
# define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2016-01-04 07:32:38 +00:00
|
|
|
/* ************************************
|
2015-05-04 21:56:53 +00:00
|
|
|
* Basic Types
|
2016-01-04 07:32:38 +00:00
|
|
|
**************************************/
|
|
|
|
#ifndef MEM_MODULE
|
|
|
|
# define MEM_MODULE
|
|
|
|
# if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L /* C99 */
|
|
|
|
# include <stdint.h>
|
|
|
|
typedef uint8_t BYTE;
|
|
|
|
typedef uint16_t U16;
|
|
|
|
typedef uint32_t U32;
|
|
|
|
typedef int32_t S32;
|
|
|
|
typedef uint64_t U64;
|
|
|
|
# else
|
|
|
|
typedef unsigned char BYTE;
|
|
|
|
typedef unsigned short U16;
|
|
|
|
typedef unsigned int U32;
|
|
|
|
typedef signed int S32;
|
|
|
|
typedef unsigned long long U64;
|
|
|
|
# endif
|
2014-08-15 09:27:04 +00:00
|
|
|
#endif
|
|
|
|
|
2015-05-07 14:27:27 +00:00
|
|
|
static unsigned BMK_isLittleEndian(void)
|
|
|
|
{
|
2016-05-28 00:14:28 +00:00
|
|
|
const union { U32 u; BYTE c[4]; } one = { 1 }; /* don't use static : performance detrimental */
|
2015-05-07 14:27:27 +00:00
|
|
|
return one.c[0];
|
|
|
|
}
|
|
|
|
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-01-04 07:32:38 +00:00
|
|
|
/* *************************************
|
2018-03-20 17:41:22 +00:00
|
|
|
* Constants
|
|
|
|
***************************************/
|
2016-01-03 22:56:13 +00:00
|
|
|
#define LIB_VERSION XXH_VERSION_MAJOR.XXH_VERSION_MINOR.XXH_VERSION_RELEASE
|
|
|
|
#define QUOTE(str) #str
|
|
|
|
#define EXPAND_AND_QUOTE(str) QUOTE(str)
|
|
|
|
#define PROGRAM_VERSION EXPAND_AND_QUOTE(LIB_VERSION)
|
2019-03-15 15:56:58 +00:00
|
|
|
|
|
|
|
/* Show compiler versions in WELCOME_MESSAGE. VERSION_FMT will return the printf specifiers,
|
|
|
|
* and VERSION will contain the comma separated list of arguments to the VERSION_FMT string. */
|
|
|
|
#if defined(__clang_version__)
|
|
|
|
/* Clang does its own thing. */
|
|
|
|
# ifdef __apple_build_version__
|
|
|
|
# define VERSION_FMT ", Apple Clang %s"
|
|
|
|
# else
|
|
|
|
# define VERSION_FMT ", Clang %s"
|
|
|
|
# endif
|
|
|
|
# define VERSION __clang_version__
|
|
|
|
#elif defined(__VERSION__)
|
|
|
|
/* GCC and ICC */
|
|
|
|
# define VERSION_FMT ", %s"
|
|
|
|
# ifdef __INTEL_COMPILER /* icc adds its prefix */
|
|
|
|
# define VERSION_STRING __VERSION__
|
|
|
|
# else /* assume GCC */
|
|
|
|
# define VERSION "GCC " __VERSION__
|
|
|
|
# endif
|
|
|
|
#elif defined(_MSC_FULL_VER) && defined(_MSC_BUILD)
|
|
|
|
/* "For example, if the version number of the Visual C++ compiler is 15.00.20706.01, the _MSC_FULL_VER macro
|
|
|
|
* evaluates to 150020706." https://docs.microsoft.com/en-us/cpp/preprocessor/predefined-macros?view=vs-2017 */
|
|
|
|
# define VERSION _MSC_FULL_VER / 10000000 % 100, _MSC_FULL_VER / 100000 % 100, _MSC_FULL_VER % 100000, _MSC_BUILD
|
|
|
|
# define VERSION_FMT ", MSVC %02i.%02i.%05i.%02i"
|
|
|
|
#elif defined(__TINYC__)
|
|
|
|
/* tcc stores its version in the __TINYC__ macro. */
|
|
|
|
# define VERSION_FMT ", tcc %i.%i.%i"
|
|
|
|
# define VERSION __TINYC__ / 10000 % 100, __TINYC__ / 100 % 100, __TINYC__ % 100
|
|
|
|
#else
|
|
|
|
# define VERSION_FMT "%s"
|
|
|
|
# define VERSION ""
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* makes the next part easier */
|
|
|
|
#if defined(__x86_64__) || defined(_M_AMD64) || defined(_M_X64)
|
|
|
|
# define ARCH_X86 "x86_64"
|
|
|
|
#elif defined(__i386__) || defined(_M_X86) || defined(_M_X86_FP)
|
|
|
|
# define ARCH_X86 "i386"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Try to detect the architecture. */
|
|
|
|
#if defined(ARCH_X86)
|
|
|
|
# if defined(__AVX2__)
|
|
|
|
# define ARCH ARCH_X86 " + AVX2"
|
|
|
|
# elif defined(__AVX__)
|
|
|
|
# define ARCH ARCH_X86 " + AVX"
|
|
|
|
# elif defined(__SSE2__)
|
|
|
|
# define ARCH ARCH_X86 " + SSE2"
|
|
|
|
# else
|
|
|
|
# define ARCH ARCH_X86
|
|
|
|
# endif
|
|
|
|
#elif defined(__aarch64__) || defined(__arm64__) || defined(_M_ARM64)
|
|
|
|
# define ARCH "aarch64"
|
|
|
|
#elif defined(__arm__) || defined(__thumb__) || defined(__thumb2__) || defined(_M_ARM)
|
|
|
|
# if defined(__ARM_NEON) || defined(__ARM_NEON__)
|
|
|
|
# define ARCH "arm + NEON"
|
|
|
|
# else
|
|
|
|
# define ARCH "arm"
|
|
|
|
# endif
|
|
|
|
#elif defined(__powerpc64__) || defined(__ppc64__) || defined(__PPC64__)
|
2019-04-26 19:56:26 +00:00
|
|
|
# if defined(__GNUC__) && defined(__VSX__)
|
|
|
|
# define ARCH "ppc64 + VSX"
|
|
|
|
# else
|
|
|
|
# define ARCH "ppc64"
|
|
|
|
# endif
|
2019-03-15 15:56:58 +00:00
|
|
|
#elif defined(__powerpc__) || defined(__ppc__) || defined(__PPC__)
|
|
|
|
# define ARCH "ppc"
|
|
|
|
#elif defined(__AVR)
|
|
|
|
# define ARCH "AVR"
|
|
|
|
#elif defined(__mips64)
|
|
|
|
# define ARCH "mips64"
|
|
|
|
#elif defined(__mips)
|
|
|
|
# define ARCH "mips"
|
|
|
|
#else
|
|
|
|
# define ARCH "unknown"
|
|
|
|
#endif
|
|
|
|
|
2015-08-19 14:11:24 +00:00
|
|
|
static const int g_nbBits = (int)(sizeof(void*)*8);
|
|
|
|
static const char g_lename[] = "little endian";
|
|
|
|
static const char g_bename[] = "big endian";
|
|
|
|
#define ENDIAN_NAME (BMK_isLittleEndian() ? g_lename : g_bename)
|
2015-05-07 14:27:27 +00:00
|
|
|
static const char author[] = "Yann Collet";
|
2019-03-15 15:56:58 +00:00
|
|
|
#define WELCOME_MESSAGE(exename) "%s %s (%i-bits %s %s)" VERSION_FMT ", by %s \n", \
|
|
|
|
exename, PROGRAM_VERSION, g_nbBits, ARCH, ENDIAN_NAME, VERSION, author
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2018-02-19 01:38:48 +00:00
|
|
|
#define KB *( 1<<10)
|
|
|
|
#define MB *( 1<<20)
|
|
|
|
#define GB *(1U<<30)
|
|
|
|
|
|
|
|
static size_t XXH_DEFAULT_SAMPLE_SIZE = 100 KB;
|
2016-04-07 23:50:06 +00:00
|
|
|
#define NBLOOPS 3 /* Default number of benchmark iterations */
|
|
|
|
#define TIMELOOP_S 1
|
|
|
|
#define TIMELOOP (TIMELOOP_S * CLOCKS_PER_SEC) /* Minimum timing per iteration */
|
|
|
|
#define XXHSUM32_DEFAULT_SEED 0 /* Default seed for algo_xxh32 */
|
|
|
|
#define XXHSUM64_DEFAULT_SEED 0 /* Default seed for algo_xxh64 */
|
2014-08-15 09:27:04 +00:00
|
|
|
|
|
|
|
#define MAX_MEM (2 GB - 64 MB)
|
|
|
|
|
2014-10-29 12:55:58 +00:00
|
|
|
static const char stdinName[] = "-";
|
2016-01-10 16:06:34 +00:00
|
|
|
typedef enum { algo_xxh32, algo_xxh64 } algoType;
|
|
|
|
static const algoType g_defaultAlgo = algo_xxh64; /* required within main() & usage() */
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-01-22 05:53:32 +00:00
|
|
|
/* <16 hex char> <SPC> <SPC> <filename> <'\0'>
|
|
|
|
* '4096' is typical Linux PATH_MAX configuration. */
|
|
|
|
#define DEFAULT_LINE_LENGTH (sizeof(XXH64_hash_t) * 2 + 2 + 4096 + 1)
|
2016-01-20 14:45:52 +00:00
|
|
|
|
2016-01-22 05:53:32 +00:00
|
|
|
/* Maximum acceptable line length. */
|
|
|
|
#define MAX_LINE_LENGTH (32 KB)
|
2016-01-20 14:45:52 +00:00
|
|
|
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-01-04 07:32:38 +00:00
|
|
|
/* ************************************
|
2018-03-20 17:41:22 +00:00
|
|
|
* Display macros
|
|
|
|
**************************************/
|
2014-10-23 20:36:23 +00:00
|
|
|
#define DISPLAY(...) fprintf(stderr, __VA_ARGS__)
|
|
|
|
#define DISPLAYRESULT(...) fprintf(stdout, __VA_ARGS__)
|
2018-02-17 18:53:52 +00:00
|
|
|
#define DISPLAYLEVEL(l, ...) do { if (g_displayLevel>=l) DISPLAY(__VA_ARGS__); } while (0)
|
|
|
|
static int g_displayLevel = 2;
|
2014-10-18 11:03:38 +00:00
|
|
|
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-01-04 07:32:38 +00:00
|
|
|
/* ************************************
|
2018-03-20 17:41:22 +00:00
|
|
|
* Local variables
|
|
|
|
**************************************/
|
2016-04-07 23:50:06 +00:00
|
|
|
static U32 g_nbIterations = NBLOOPS;
|
2014-08-15 09:27:04 +00:00
|
|
|
|
|
|
|
|
2016-01-04 07:32:38 +00:00
|
|
|
/* ************************************
|
2018-03-20 17:41:22 +00:00
|
|
|
* Benchmark Functions
|
|
|
|
**************************************/
|
2016-04-07 23:50:06 +00:00
|
|
|
static clock_t BMK_clockSpan( clock_t start )
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
2016-04-07 23:50:06 +00:00
|
|
|
return clock() - start; /* works even if overflow; Typical max span ~ 30 mn */
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-28 11:20:23 +00:00
|
|
|
static size_t BMK_findMaxMem(U64 requiredMem)
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
2016-05-28 00:14:28 +00:00
|
|
|
size_t const step = 64 MB;
|
2016-06-06 12:12:27 +00:00
|
|
|
void* testmem = NULL;
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2015-06-28 11:20:23 +00:00
|
|
|
requiredMem = (((requiredMem >> 26) + 1) << 26);
|
|
|
|
requiredMem += 2*step;
|
|
|
|
if (requiredMem > MAX_MEM) requiredMem = MAX_MEM;
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-05-28 00:14:28 +00:00
|
|
|
while (!testmem) {
|
2015-06-28 11:20:23 +00:00
|
|
|
if (requiredMem > step) requiredMem -= step;
|
|
|
|
else requiredMem >>= 1;
|
2016-06-06 12:12:27 +00:00
|
|
|
testmem = malloc ((size_t)requiredMem);
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
|
|
|
free (testmem);
|
|
|
|
|
2015-06-28 11:20:23 +00:00
|
|
|
/* keep some space available */
|
|
|
|
if (requiredMem > step) requiredMem -= step;
|
|
|
|
else requiredMem >>= 1;
|
|
|
|
|
|
|
|
return (size_t)requiredMem;
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-08-07 23:22:56 +00:00
|
|
|
static U64 BMK_GetFileSize(const char* infilename)
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
|
|
|
int r;
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
struct _stat64 statbuf;
|
|
|
|
r = _stat64(infilename, &statbuf);
|
|
|
|
#else
|
|
|
|
struct stat statbuf;
|
|
|
|
r = stat(infilename, &statbuf);
|
|
|
|
#endif
|
2015-01-01 16:10:04 +00:00
|
|
|
if (r || !S_ISREG(statbuf.st_mode)) return 0; /* No good... */
|
2014-08-15 09:27:04 +00:00
|
|
|
return (U64)statbuf.st_size;
|
|
|
|
}
|
|
|
|
|
2016-06-06 12:12:27 +00:00
|
|
|
typedef U32 (*hashFunction)(const void* buffer, size_t bufferSize, U32 seed);
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-06-06 12:12:27 +00:00
|
|
|
static U32 localXXH32(const void* buffer, size_t bufferSize, U32 seed) { return XXH32(buffer, bufferSize, seed); }
|
2015-08-17 14:17:12 +00:00
|
|
|
|
2016-06-06 12:12:27 +00:00
|
|
|
static U32 localXXH64(const void* buffer, size_t bufferSize, U32 seed) { return (U32)XXH64(buffer, bufferSize, seed); }
|
2015-08-17 14:17:12 +00:00
|
|
|
|
2019-03-11 22:09:27 +00:00
|
|
|
static U32 localXXH3_64b(const void* buffer, size_t bufferSize, U32 seed) { (void)seed; return (U32)XXH3_64bits(buffer, bufferSize); }
|
2019-02-26 20:36:23 +00:00
|
|
|
|
2019-04-25 16:55:10 +00:00
|
|
|
static U32 localXXH128(const void* buffer, size_t bufferSize, U32 seed) { return (U32)(XXH128(buffer, bufferSize, seed).low64); }
|
|
|
|
|
2015-08-17 14:17:12 +00:00
|
|
|
static void BMK_benchHash(hashFunction h, const char* hName, const void* buffer, size_t bufferSize)
|
2015-05-07 12:30:27 +00:00
|
|
|
{
|
2018-10-17 04:47:53 +00:00
|
|
|
U32 nbh_perIteration = (U32)((300 MB) / (bufferSize+1)) + 1; /* first loop conservatively aims for 300 MB/s */
|
2016-04-07 23:50:06 +00:00
|
|
|
U32 iterationNb;
|
2015-08-17 14:17:12 +00:00
|
|
|
double fastestH = 100000000.;
|
2015-05-07 12:30:27 +00:00
|
|
|
|
2018-02-17 18:53:52 +00:00
|
|
|
DISPLAYLEVEL(2, "\r%70s\r", ""); /* Clean display line */
|
2015-08-17 14:17:12 +00:00
|
|
|
if (g_nbIterations<1) g_nbIterations=1;
|
2016-04-07 23:19:06 +00:00
|
|
|
for (iterationNb = 1; iterationNb <= g_nbIterations; iterationNb++) {
|
2018-02-19 00:56:14 +00:00
|
|
|
U32 r=0;
|
2016-04-07 23:50:06 +00:00
|
|
|
clock_t cStart;
|
|
|
|
|
2018-09-17 19:12:44 +00:00
|
|
|
DISPLAYLEVEL(2, "%1u-%-17.17s : %10u ->\r", iterationNb, hName, (U32)bufferSize);
|
2016-04-07 23:50:06 +00:00
|
|
|
cStart = clock();
|
|
|
|
while (clock() == cStart); /* starts clock() at its exact beginning */
|
|
|
|
cStart = clock();
|
|
|
|
|
2019-03-13 22:55:24 +00:00
|
|
|
{ U32 u;
|
|
|
|
for (u=0; u<nbh_perIteration; u++)
|
|
|
|
r += h(buffer, bufferSize, u);
|
2015-05-07 12:30:27 +00:00
|
|
|
}
|
2019-03-13 22:55:24 +00:00
|
|
|
if (r==0) DISPLAYLEVEL(3,".\r"); /* do something with r to defeat compiler "optimizing" away hash */
|
|
|
|
|
|
|
|
{ clock_t const nbTicks = BMK_clockSpan(cStart);
|
|
|
|
double const timeS = ((double)nbTicks / CLOCKS_PER_SEC) / nbh_perIteration;
|
|
|
|
if (nbTicks == 0) { /* faster than resolution timer */
|
|
|
|
nbh_perIteration *= 100;
|
|
|
|
iterationNb--; /* try again */
|
|
|
|
continue;
|
|
|
|
}
|
2016-04-07 23:50:06 +00:00
|
|
|
if (timeS < fastestH) fastestH = timeS;
|
2018-09-17 19:12:44 +00:00
|
|
|
DISPLAYLEVEL(2, "%1u-%-17.17s : %10u -> %8.0f it/s (%7.1f MB/s) \r",
|
2018-02-17 02:58:40 +00:00
|
|
|
iterationNb, hName, (U32)bufferSize,
|
|
|
|
(double)1 / fastestH,
|
|
|
|
((double)bufferSize / (1<<20)) / fastestH );
|
2016-04-07 23:50:06 +00:00
|
|
|
}
|
2019-03-13 22:55:24 +00:00
|
|
|
{ double nbh_perSecond = (1 / fastestH) + 1;
|
|
|
|
if (nbh_perSecond > (double)(4000U<<20)) nbh_perSecond = (double)(4000U<<20);
|
|
|
|
nbh_perIteration = (U32)nbh_perSecond;
|
|
|
|
}
|
2015-05-07 12:30:27 +00:00
|
|
|
}
|
2018-02-19 01:54:58 +00:00
|
|
|
DISPLAYLEVEL(1, "%-19.19s : %10u -> %8.0f it/s (%7.1f MB/s) \n", hName, (U32)bufferSize,
|
2018-02-17 02:58:40 +00:00
|
|
|
(double)1 / fastestH,
|
|
|
|
((double)bufferSize / (1<<20)) / fastestH);
|
2018-02-19 01:54:58 +00:00
|
|
|
if (g_displayLevel<1)
|
|
|
|
DISPLAYLEVEL(0, "%u, ", (U32)((double)1 / fastestH));
|
2015-08-17 14:17:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-19 01:38:48 +00:00
|
|
|
/* BMK_benchMem():
|
|
|
|
* specificTest : 0 == run all tests, 1+ run only specific test
|
|
|
|
* buffer : is supposed 8-bytes aligned (if malloc'ed, it should be)
|
2018-03-20 19:49:13 +00:00
|
|
|
* the real allocated size of buffer is supposed to be >= (bufferSize+3).
|
2018-02-19 01:38:48 +00:00
|
|
|
* @return : 0 on success, 1 if error (invalid mode selected) */
|
|
|
|
static int BMK_benchMem(const void* buffer, size_t bufferSize, U32 specificTest)
|
2015-08-17 14:17:12 +00:00
|
|
|
{
|
2018-02-19 01:38:48 +00:00
|
|
|
assert((((size_t)buffer) & 8) == 0); /* ensure alignment */
|
|
|
|
|
2015-08-17 14:17:12 +00:00
|
|
|
/* XXH32 bench */
|
2018-02-19 01:38:48 +00:00
|
|
|
if ((specificTest==0) | (specificTest==1))
|
|
|
|
BMK_benchHash(localXXH32, "XXH32", buffer, bufferSize);
|
2015-05-07 12:30:27 +00:00
|
|
|
|
|
|
|
/* Bench XXH32 on Unaligned input */
|
2018-02-19 01:38:48 +00:00
|
|
|
if ((specificTest==0) | (specificTest==2))
|
|
|
|
BMK_benchHash(localXXH32, "XXH32 unaligned", ((const char*)buffer)+1, bufferSize);
|
2015-05-07 12:30:27 +00:00
|
|
|
|
|
|
|
/* Bench XXH64 */
|
2018-02-19 01:38:48 +00:00
|
|
|
if ((specificTest==0) | (specificTest==3))
|
|
|
|
BMK_benchHash(localXXH64, "XXH64", buffer, bufferSize);
|
2015-05-07 12:30:27 +00:00
|
|
|
|
2015-08-17 14:17:12 +00:00
|
|
|
/* Bench XXH64 on Unaligned input */
|
2018-02-19 01:38:48 +00:00
|
|
|
if ((specificTest==0) | (specificTest==4))
|
|
|
|
BMK_benchHash(localXXH64, "XXH64 unaligned", ((const char*)buffer)+3, bufferSize);
|
|
|
|
|
2019-02-26 20:36:23 +00:00
|
|
|
/* Bench XXH3 */
|
|
|
|
if ((specificTest==0) | (specificTest==5))
|
|
|
|
BMK_benchHash(localXXH3_64b, "XXH3_64bits", buffer, bufferSize);
|
|
|
|
|
|
|
|
/* Bench XXH3 on Unaligned input */
|
|
|
|
if ((specificTest==0) | (specificTest==6))
|
|
|
|
BMK_benchHash(localXXH3_64b, "XXH3_64b unaligned", ((const char*)buffer)+3, bufferSize);
|
|
|
|
|
2019-04-25 16:55:10 +00:00
|
|
|
/* Bench XXH3 */
|
|
|
|
if ((specificTest==0) | (specificTest==7))
|
|
|
|
BMK_benchHash(localXXH128, "XXH128", buffer, bufferSize);
|
|
|
|
|
|
|
|
/* Bench XXH3 on Unaligned input */
|
|
|
|
if ((specificTest==0) | (specificTest==8))
|
|
|
|
BMK_benchHash(localXXH128, "XXH128 unaligned", ((const char*)buffer)+3, bufferSize);
|
|
|
|
|
|
|
|
if (specificTest > 8) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("Benchmark mode invalid.\n");
|
2018-02-19 01:38:48 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
2015-05-07 12:30:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-06 12:12:27 +00:00
|
|
|
static size_t BMK_selectBenchedSize(const char* fileName)
|
|
|
|
{ U64 const inFileSize = BMK_GetFileSize(fileName);
|
|
|
|
size_t benchedSize = (size_t) BMK_findMaxMem(inFileSize);
|
|
|
|
if ((U64)benchedSize > inFileSize) benchedSize = (size_t)inFileSize;
|
|
|
|
if (benchedSize < inFileSize) {
|
|
|
|
DISPLAY("Not enough memory for '%s' full size; testing %i MB only...\n", fileName, (int)(benchedSize>>20));
|
|
|
|
}
|
|
|
|
return benchedSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-02-19 01:38:48 +00:00
|
|
|
static int BMK_benchFiles(const char** fileNamesTable, int nbFiles, U32 specificTest)
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
2018-02-19 01:38:48 +00:00
|
|
|
int result = 0;
|
2016-06-06 12:12:27 +00:00
|
|
|
int fileIdx;
|
2018-02-19 01:38:48 +00:00
|
|
|
|
2016-06-06 12:12:27 +00:00
|
|
|
for (fileIdx=0; fileIdx<nbFiles; fileIdx++) {
|
|
|
|
const char* const inFileName = fileNamesTable[fileIdx];
|
2018-09-17 19:28:59 +00:00
|
|
|
assert(inFileName != NULL);
|
|
|
|
{
|
|
|
|
FILE* const inFile = fopen( inFileName, "rb" );
|
|
|
|
size_t const benchedSize = BMK_selectBenchedSize(inFileName);
|
|
|
|
char* const buffer = (char*)calloc(benchedSize+16+3, 1);
|
|
|
|
void* const alignedBuffer = (buffer+15) - (((size_t)(buffer+15)) & 0xF); /* align on next 16 bytes */
|
|
|
|
|
|
|
|
/* Checks */
|
|
|
|
if (inFile==NULL){
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("Error: Could not open '%s': %s.\n", inFileName, strerror(errno));
|
2016-05-28 00:14:28 +00:00
|
|
|
free(buffer);
|
2018-09-17 19:28:59 +00:00
|
|
|
return 11;
|
|
|
|
}
|
|
|
|
if(!buffer) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("\nError: Out of memory.\n");
|
2018-09-17 19:28:59 +00:00
|
|
|
fclose(inFile);
|
|
|
|
return 12;
|
|
|
|
}
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2018-09-17 19:28:59 +00:00
|
|
|
/* Fill input buffer */
|
|
|
|
DISPLAYLEVEL(1, "\rLoading %s... \n", inFileName);
|
|
|
|
{ size_t const readSize = fread(alignedBuffer, 1, benchedSize, inFile);
|
|
|
|
fclose(inFile);
|
|
|
|
if(readSize != benchedSize) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("\nError: Could not read '%s': %s.\n", inFileName, strerror(errno));
|
2018-09-17 19:28:59 +00:00
|
|
|
free(buffer);
|
|
|
|
return 13;
|
|
|
|
} }
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2018-09-17 19:28:59 +00:00
|
|
|
/* bench */
|
|
|
|
result |= BMK_benchMem(alignedBuffer, benchedSize, specificTest);
|
|
|
|
|
|
|
|
free(buffer);
|
|
|
|
}
|
2015-05-07 12:30:27 +00:00
|
|
|
}
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2018-02-19 01:38:48 +00:00
|
|
|
return result;
|
2015-05-07 12:30:27 +00:00
|
|
|
}
|
2014-08-15 09:27:04 +00:00
|
|
|
|
|
|
|
|
2019-02-26 20:36:23 +00:00
|
|
|
static int BMK_benchInternal(size_t keySize, U32 specificTest)
|
2015-05-07 12:30:27 +00:00
|
|
|
{
|
2018-03-21 13:18:58 +00:00
|
|
|
void* const buffer = calloc(keySize+16+3, 1);
|
2019-02-26 20:36:23 +00:00
|
|
|
if (!buffer) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("\nError: Out of memory.\n");
|
2015-05-07 12:30:27 +00:00
|
|
|
return 12;
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 20:36:23 +00:00
|
|
|
{ const void* const alignedBuffer = ((char*)buffer+15) - (((size_t)((char*)buffer+15)) & 0xF); /* align on next 16 bytes */
|
2015-05-07 12:30:27 +00:00
|
|
|
|
2018-09-17 19:28:59 +00:00
|
|
|
/* bench */
|
|
|
|
DISPLAYLEVEL(1, "Sample of ");
|
|
|
|
if (keySize > 10 KB) {
|
|
|
|
DISPLAYLEVEL(1, "%u KB", (U32)(keySize >> 10));
|
|
|
|
} else {
|
|
|
|
DISPLAYLEVEL(1, "%u bytes", (U32)keySize);
|
|
|
|
}
|
|
|
|
DISPLAYLEVEL(1, "... \n");
|
|
|
|
|
|
|
|
{ int const result = BMK_benchMem(alignedBuffer, keySize, specificTest);
|
|
|
|
free(buffer);
|
|
|
|
return result;
|
|
|
|
}
|
2018-02-19 01:38:48 +00:00
|
|
|
}
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-03-11 22:09:27 +00:00
|
|
|
/* ************************************************
|
|
|
|
* Self-test :
|
|
|
|
* ensure results consistency accross platforms
|
|
|
|
*********************************************** */
|
|
|
|
|
2019-03-13 21:44:41 +00:00
|
|
|
static void BMK_checkResult32(XXH32_hash_t r1, XXH32_hash_t r2)
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
|
|
|
static int nbTests = 1;
|
2019-03-11 22:09:27 +00:00
|
|
|
if (r1!=r2) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("\rError: 32-bit hash test %i: Internal sanity check failed!\n", nbTests);
|
|
|
|
DISPLAY("\rGot 0x%08X, expected 0x%08X.\n", r1, r2);
|
|
|
|
DISPLAY("\rNote: If you modified the hash functions, make sure to either update the values\n"
|
|
|
|
"or temporarily comment out the tests in BMK_sanityCheck.\n");
|
2014-08-15 09:27:04 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
nbTests++;
|
|
|
|
}
|
|
|
|
|
2019-03-13 21:44:41 +00:00
|
|
|
static void BMK_checkResult64(XXH64_hash_t r1, XXH64_hash_t r2)
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
|
|
|
static int nbTests = 1;
|
2016-04-07 23:19:06 +00:00
|
|
|
if (r1!=r2) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("\rError: 64-bit hash test %i: Internal sanity check failed!\n", nbTests);
|
|
|
|
DISPLAY("\rGot 0x%08X%08XULL, expected 0x%08X%08XULL.\n", (U32)(r1>>32), (U32)r1, (U32)(r2>>32), (U32)r2);
|
|
|
|
DISPLAY("\rNote: If you modified the hash functions, make sure to either update the values\n"
|
|
|
|
"or temporarily comment out the tests in BMK_sanityCheck.\n");
|
2014-08-15 09:27:04 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
nbTests++;
|
|
|
|
}
|
|
|
|
|
2019-03-13 21:44:41 +00:00
|
|
|
static void BMK_checkResult128(XXH128_hash_t r1, XXH128_hash_t r2)
|
|
|
|
{
|
|
|
|
static int nbTests = 1;
|
2019-03-14 20:08:38 +00:00
|
|
|
if ((r1.low64 != r2.low64) || (r1.high64 != r2.high64)) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("\rError: 128-bit hash test %i: Internal sanity check failed.\n", nbTests);
|
|
|
|
DISPLAY("\rGot { 0x%08X%08XULL, 0x%08X%08XULL }, expected { 0x%08X%08XULL, %08X%08XULL } \n",
|
2019-03-14 20:08:38 +00:00
|
|
|
(U32)(r1.low64>>32), (U32)r1.low64, (U32)(r1.high64>>32), (U32)r1.high64,
|
|
|
|
(U32)(r2.low64>>32), (U32)r2.low64, (U32)(r2.high64>>32), (U32)r2.high64 );
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("\rNote: If you modified the hash functions, make sure to either update the values\n"
|
|
|
|
"or temporarily comment out the tests in BMK_sanityCheck.\n");
|
2019-03-13 21:44:41 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
nbTests++;
|
|
|
|
}
|
|
|
|
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2019-06-14 18:51:44 +00:00
|
|
|
static void BMK_testXXH32(const void* sequence, size_t len, U32 seed, U32 Nresult)
|
|
|
|
{
|
|
|
|
XXH32_state_t state;
|
|
|
|
size_t pos;
|
|
|
|
|
|
|
|
BMK_checkResult32(XXH32(sequence, len, seed), Nresult);
|
|
|
|
|
|
|
|
(void)XXH32_reset(&state, seed);
|
|
|
|
(void)XXH32_update(&state, sequence, len);
|
|
|
|
BMK_checkResult32(XXH32_digest(&state), Nresult);
|
|
|
|
|
|
|
|
(void)XXH32_reset(&state, seed);
|
|
|
|
for (pos=0; pos<len; pos++)
|
|
|
|
(void)XXH32_update(&state, ((const char*)sequence)+pos, 1);
|
|
|
|
BMK_checkResult32(XXH32_digest(&state), Nresult);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void BMK_testXXH64(const void* data, size_t len, U64 seed, U64 Nresult)
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
2016-05-28 00:14:28 +00:00
|
|
|
XXH64_state_t state;
|
2016-08-10 23:32:10 +00:00
|
|
|
size_t pos;
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2019-05-05 03:10:52 +00:00
|
|
|
BMK_checkResult64(XXH64(data, len, seed), Nresult);
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2018-09-17 19:39:18 +00:00
|
|
|
(void)XXH64_reset(&state, seed);
|
2019-05-05 03:10:52 +00:00
|
|
|
(void)XXH64_update(&state, data, len);
|
2019-05-03 17:14:42 +00:00
|
|
|
BMK_checkResult64(XXH64_digest(&state), Nresult);
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2018-09-17 19:39:18 +00:00
|
|
|
(void)XXH64_reset(&state, seed);
|
2018-02-17 18:53:52 +00:00
|
|
|
for (pos=0; pos<len; pos++)
|
2019-05-05 03:10:52 +00:00
|
|
|
(void)XXH64_update(&state, ((const char*)data)+pos, 1);
|
2019-05-03 17:14:42 +00:00
|
|
|
BMK_checkResult64(XXH64_digest(&state), Nresult);
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
|
|
|
|
2019-03-11 22:09:27 +00:00
|
|
|
static void BMK_testXXH3(const void* data, size_t len, U64 seed, U64 Nresult)
|
|
|
|
{
|
|
|
|
{ U64 const Dresult = XXH3_64bits_withSeed(data, len, seed);
|
|
|
|
BMK_checkResult64(Dresult, Nresult);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check that the no-seed variant produces same result as seed==0 */
|
|
|
|
if (seed == 0) {
|
|
|
|
U64 const Dresult = XXH3_64bits(data, len);
|
|
|
|
BMK_checkResult64(Dresult, Nresult);
|
|
|
|
}
|
2019-05-05 03:10:52 +00:00
|
|
|
|
|
|
|
/* streaming API test */
|
|
|
|
{ XXH3_state_t state;
|
2019-06-14 01:22:46 +00:00
|
|
|
(void)XXH3_64bits_reset_withSeed(&state, seed);
|
|
|
|
(void)XXH3_64bits_update(&state, data, len);
|
|
|
|
BMK_checkResult64(XXH3_64bits_digest(&state), Nresult);
|
2019-05-05 03:10:52 +00:00
|
|
|
|
|
|
|
/* byte by byte ingestion */
|
|
|
|
{ size_t pos;
|
2019-06-14 01:22:46 +00:00
|
|
|
(void)XXH3_64bits_reset_withSeed(&state, seed);
|
2019-05-05 03:10:52 +00:00
|
|
|
for (pos=0; pos<len; pos++)
|
2019-06-14 01:22:46 +00:00
|
|
|
(void)XXH3_64bits_update(&state, ((const char*)data)+pos, 1);
|
2019-06-14 19:26:33 +00:00
|
|
|
BMK_checkResult64(XXH3_64bits_digest(&state), Nresult);
|
|
|
|
} }
|
|
|
|
}
|
|
|
|
|
|
|
|
static void BMK_testXXH3_withSecret(const void* data, size_t len, const void* secret, size_t secretSize, U64 Nresult)
|
|
|
|
{
|
|
|
|
{ U64 const Dresult = XXH3_64bits_withSecret(data, len, secret, secretSize);
|
|
|
|
BMK_checkResult64(Dresult, Nresult);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* streaming API test */
|
|
|
|
{ XXH3_state_t state;
|
|
|
|
(void)XXH3_64bits_reset_withSecret(&state, secret, secretSize);
|
|
|
|
(void)XXH3_64bits_update(&state, data, len);
|
|
|
|
BMK_checkResult64(XXH3_64bits_digest(&state), Nresult);
|
|
|
|
|
|
|
|
/* byte by byte ingestion */
|
|
|
|
{ size_t pos;
|
|
|
|
(void)XXH3_64bits_reset_withSecret(&state, secret, secretSize);
|
|
|
|
for (pos=0; pos<len; pos++)
|
|
|
|
(void)XXH3_64bits_update(&state, ((const char*)data)+pos, 1);
|
2019-06-14 01:22:46 +00:00
|
|
|
BMK_checkResult64(XXH3_64bits_digest(&state), Nresult);
|
2019-05-05 03:10:52 +00:00
|
|
|
} }
|
2019-03-11 22:09:27 +00:00
|
|
|
}
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2019-03-29 04:50:30 +00:00
|
|
|
void BMK_testXXH128(const void* data, size_t len, U64 seed, XXH128_hash_t Nresult)
|
2019-03-13 21:44:41 +00:00
|
|
|
{
|
|
|
|
{ XXH128_hash_t const Dresult = XXH3_128bits_withSeed(data, len, seed);
|
|
|
|
BMK_checkResult128(Dresult, Nresult);
|
|
|
|
|
|
|
|
/* check that XXH128() is identical to XXH3_128bits_withSeed() */
|
|
|
|
{ XXH128_hash_t const Dresult2 = XXH128(data, len, seed);
|
|
|
|
BMK_checkResult128(Dresult2, Nresult);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check that first field is equal to _64bits variant */
|
2019-03-17 04:27:39 +00:00
|
|
|
/* this property is currently lost
|
2019-03-13 21:44:41 +00:00
|
|
|
{ U64 const result64 = XXH3_64bits_withSeed(data, len, seed);
|
2019-03-14 20:08:38 +00:00
|
|
|
BMK_checkResult64(result64, Nresult.low64);
|
2019-03-17 04:27:39 +00:00
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
2019-03-13 21:44:41 +00:00
|
|
|
|
|
|
|
/* check that the no-seed variant produces same result as seed==0 */
|
|
|
|
if (seed == 0) {
|
|
|
|
XXH128_hash_t const Dresult = XXH3_128bits(data, len);
|
|
|
|
BMK_checkResult128(Dresult, Nresult);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-11 22:09:27 +00:00
|
|
|
#define SANITY_BUFFER_SIZE 2243
|
2014-08-15 09:27:04 +00:00
|
|
|
static void BMK_sanityCheck(void)
|
|
|
|
{
|
2019-03-17 03:32:20 +00:00
|
|
|
const U32 prime = 2654435761U;
|
2019-06-14 18:51:44 +00:00
|
|
|
const U64 prime64 = 11400714785074694797ULL;
|
2016-04-08 01:57:04 +00:00
|
|
|
BYTE sanityBuffer[SANITY_BUFFER_SIZE];
|
2019-06-14 18:51:44 +00:00
|
|
|
U64 byteGen = prime;
|
2015-05-07 14:27:27 +00:00
|
|
|
|
2016-04-08 01:57:04 +00:00
|
|
|
int i;
|
2016-04-07 23:19:06 +00:00
|
|
|
for (i=0; i<SANITY_BUFFER_SIZE; i++) {
|
2019-06-14 18:51:44 +00:00
|
|
|
sanityBuffer[i] = (BYTE)(byteGen>>56);
|
|
|
|
byteGen *= prime64;
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
|
|
|
|
2019-06-14 18:51:44 +00:00
|
|
|
|
|
|
|
BMK_testXXH32(NULL, 0, 0, 0x02CC5D05);
|
|
|
|
BMK_testXXH32(NULL, 0, prime, 0x36B78AE7);
|
|
|
|
BMK_testXXH32(sanityBuffer, 1, 0, 0xCF65B03E);
|
|
|
|
BMK_testXXH32(sanityBuffer, 1, prime, 0xB4545AA4);
|
|
|
|
BMK_testXXH32(sanityBuffer, 14, 0, 0x1208E7E2);
|
|
|
|
BMK_testXXH32(sanityBuffer, 14, prime, 0x6AF1D1FE);
|
|
|
|
BMK_testXXH32(sanityBuffer,222, 0, 0x5BD11DBD);
|
|
|
|
BMK_testXXH32(sanityBuffer,222, prime, 0x58803C5F);
|
|
|
|
|
|
|
|
BMK_testXXH64(NULL , 0, 0, 0xEF46DB3751D8E999ULL);
|
|
|
|
BMK_testXXH64(NULL , 0, prime, 0xAC75FDA2929B17EFULL);
|
|
|
|
BMK_testXXH64(sanityBuffer, 1, 0, 0xE934A84ADB052768ULL);
|
|
|
|
BMK_testXXH64(sanityBuffer, 1, prime, 0x5014607643A9B4C3ULL);
|
|
|
|
BMK_testXXH64(sanityBuffer, 14, 0, 0x8282DCC4994E35C8ULL);
|
|
|
|
BMK_testXXH64(sanityBuffer, 14, prime, 0xC3BD6BF63DEB6DF0ULL);
|
|
|
|
BMK_testXXH64(sanityBuffer,222, 0, 0xB641AE8CB691C174ULL);
|
|
|
|
BMK_testXXH64(sanityBuffer,222, prime, 0x20CB8AB7AE10C14AULL);
|
2019-03-11 22:09:27 +00:00
|
|
|
|
2019-06-11 18:13:44 +00:00
|
|
|
|
2019-06-14 19:26:33 +00:00
|
|
|
BMK_testXXH3(NULL, 0, 0, 0); /* zero-length hash is always 0 */
|
2019-06-14 18:34:24 +00:00
|
|
|
BMK_testXXH3(NULL, 0, prime64, 0);
|
2019-06-14 18:51:44 +00:00
|
|
|
BMK_testXXH3(sanityBuffer, 1, 0, 0x51A09C6754528C92ULL); /* 1 - 3 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 1, prime64, 0xC6A3FA27998F00CDULL); /* 1 - 3 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 6, 0, 0xC31D0F9A9F209FAFULL); /* 4 - 8 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 6, prime64, 0x6283518C5377FF0AULL); /* 4 - 8 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 12, 0, 0xD5361CCEEBB5A0CCULL); /* 9 - 16 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 12, prime64, 0xC4C125E75A808C3DULL); /* 9 - 16 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 24, 0, 0x46796F3F78B20F6BULL); /* 17 - 32 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 24, prime64, 0x60171A7CD0A44C10ULL); /* 17 - 32 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 48, 0, 0xD8D4D3590D136E11ULL); /* 33 - 64 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 48, prime64, 0x05441F2AEC2A1296ULL); /* 33 - 64 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 80, 0, 0xA1DC8ADB3145B86AULL); /* 65 - 96 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 80, prime64, 0xC9D55256965B7093ULL); /* 65 - 96 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 112, 0, 0xE43E5717A61D3759ULL); /* 97 -128 */
|
|
|
|
BMK_testXXH3(sanityBuffer, 112, prime64, 0x5A5F89A3FECE44A5ULL); /* 97 -128 */
|
|
|
|
|
|
|
|
BMK_testXXH3(sanityBuffer, 192, 0, 0x657FDAF1B5B85A98ULL); /* one block, finishing at stripe boundary */
|
|
|
|
BMK_testXXH3(sanityBuffer, 192, prime64, 0xCE739A124E5395BFULL); /* one block, finishing at stripe boundary */
|
|
|
|
BMK_testXXH3(sanityBuffer, 222, 0, 0x9D1CEA1C7134C072ULL); /* one block, last stripe is overlapping */
|
|
|
|
BMK_testXXH3(sanityBuffer, 222, prime64, 0x71CFC4572F8FCD9DULL); /* one block, last stripe is overlapping */
|
|
|
|
BMK_testXXH3(sanityBuffer,2048, 0, 0xEFEFD4449323CDD4ULL); /* 2 blocks, finishing at block boundary */
|
|
|
|
BMK_testXXH3(sanityBuffer,2048, prime64, 0x01C85E405ECA3F6EULL); /* 2 blocks, finishing at block boundary */
|
|
|
|
BMK_testXXH3(sanityBuffer,2240, 0, 0x998C0437486672C7ULL); /* 3 blocks, finishing at stripe boundary */
|
|
|
|
BMK_testXXH3(sanityBuffer,2240, prime64, 0x4ED38056B87ABC7FULL); /* 3 blocks, finishing at stripe boundary */
|
|
|
|
BMK_testXXH3(sanityBuffer,2243, 0, 0xA559D20581D742D3ULL); /* 3 blocks, last stripe is overlapping */
|
|
|
|
BMK_testXXH3(sanityBuffer,2243, prime64, 0x96E051AB57F21FC8ULL); /* 3 blocks, last stripe is overlapping */
|
|
|
|
|
2019-06-14 19:26:33 +00:00
|
|
|
{ const void* const secret = sanityBuffer + 7;
|
|
|
|
const size_t secretSize = XXH_SECRET_SIZE_MIN + 11;
|
|
|
|
BMK_testXXH3_withSecret(NULL, 0, secret, secretSize, 0); /* zero-length hash is always 0 */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer, 1, secret, secretSize, 0x420EAC06C004273FULL); /* 1 - 3 */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer, 6, secret, secretSize, 0x5A90048A433D5017ULL); /* 6 - 8 */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer, 12, secret, secretSize, 0x8C50DC90AC9206FCULL); /* 9 - 16 */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer, 24, secret, secretSize, 0x1CD2C2EE9B9A0928ULL); /* 17 - 32 */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer, 48, secret, secretSize, 0xA785256D9D65D514ULL); /* 33 - 64 */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer, 80, secret, secretSize, 0x6F3053360D21BBB7ULL); /* 65 - 96 */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer, 112, secret, secretSize, 0x560E82D25684154CULL); /* 97 -128 */
|
|
|
|
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer, 192, secret, secretSize, 0x615B7F3B2DA09681ULL); /* one block, finishing at stripe boundary */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer, 222, secret, secretSize, 0x6E5D78EEE071A11AULL); /* one block, last stripe is overlapping */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer,2048, secret, secretSize, 0x2836B83880AD3C0CULL); /* > one block, at least one scrambling */
|
|
|
|
BMK_testXXH3_withSecret(sanityBuffer,2243, secret, secretSize, 0x3446E248A00CB44AULL); /* > one block, at least one scrambling, last stripe unaligned */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-14 18:51:44 +00:00
|
|
|
#if 0
|
2019-04-22 23:21:03 +00:00
|
|
|
|
2019-03-13 21:44:41 +00:00
|
|
|
{ XXH128_hash_t const expected = { 0, 0 };
|
|
|
|
BMK_testXXH128(NULL, 0, 0, expected); /* zero-length hash is { seed, -seed } by default */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { prime, -(U64)prime };
|
|
|
|
BMK_testXXH128(NULL, 0, prime, expected);
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0xE2C6D3B40D6F9203ULL, 0x82895983D246CA74ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 1, 0, expected); /* 1-3 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0xCEE5DF124E6135DCULL, 0xFA2DA0269396F32DULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 1, prime, expected); /* 1-3 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x585D6F8D1AAD96A2ULL, 0x2791F3B193F0AB86ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 6, 0, expected); /* 4-8 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x133EC8CA1739250FULL, 0xDF3F422D70BDE07FULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 6, prime, expected); /* 4-8 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x0E85E122FE5356ACULL, 0xD933CC7EDF4D95DAULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 12, 0, expected); /* 9-16 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0xE0DB5E70DA67EB16ULL, 0x114C8C76E74C669FULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 12, prime, expected); /* 9-16 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x6C213B15B89230C9ULL, 0x3F3AACF5F277AC02ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 24, 0, expected); /* 17-32 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x71892DB847A8F53CULL, 0xD11561AC7D0F5ECDULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 24, prime, expected); /* 17-32 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0xECED834E8E99DA1EULL, 0x0F85E76A60898313ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 48, 0, expected); /* 33-64 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0xA901250B336F9133ULL, 0xA35D3FB395E1DDE0ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 48, prime, expected); /* 33-64 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x338B2F6E103D5B4EULL, 0x5DD1777C8FA671ABULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 81, 0, expected); /* 65-96 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x0718382B6D4264C3ULL, 0x1D542DAFEFA1790EULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 81, prime, expected); /* 65-96 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x7DE871A4FE41C90EULL, 0x786CB41C46C6B7B6ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 103, 0, expected); /* 97-128 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0xAD8B0B428C940A2CULL, 0xF8BA6D8B8CB05EB7ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 103, prime, expected); /* 97-128 */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x6D96AC3F415CFCFEULL, 0x947EDFA54DD68990ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 192, 0, expected); /* one block, ends at stripe boundary */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0xE4BD30AA1673B966ULL, 0x8132EF45FF3D51F2ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 192, prime, expected); /* one block, ends at stripe boundary */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0xB62929C362EF3BF5ULL, 0x1946A7A9E6DD3032ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 222, 0, expected); /* one block, last stripe is overlapping */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x2782C3C49E3FD25EULL, 0x98CE16C40C2D59F6ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer, 222, prime, expected); /* one block, last stripe is overlapping */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x802EB54C97564FD7ULL, 0x384AADF242348D00ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer,2048, 0, expected); /* two blocks, finishing at block boundary */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0xC9F188CFAFDA22CDULL, 0x7936B69445BE9EEDULL };
|
|
|
|
BMK_testXXH128(sanityBuffer,2048, prime, expected); /* two blocks, finishing at block boundary */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x16B0035F6ABC1F46ULL, 0x1F6602850A1AA7EEULL };
|
|
|
|
BMK_testXXH128(sanityBuffer,2240, 0, expected); /* two blocks, ends at stripe boundary */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x389E68C2348B9161ULL, 0xA7D1E8C96586A052ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer,2240, prime, expected); /* two blocks, ends at stripe boundary */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x8B1DE79158C397D3ULL, 0x9B6B2EEFAC2DE0ADULL };
|
|
|
|
BMK_testXXH128(sanityBuffer,2237, 0, expected); /* two blocks, ends at stripe boundary */
|
|
|
|
}
|
|
|
|
{ XXH128_hash_t const expected = { 0x9DDF09ABA2B93DD6ULL, 0xB9CEDBE2582CA371ULL };
|
|
|
|
BMK_testXXH128(sanityBuffer,2237, prime, expected); /* two blocks, ends at stripe boundary */
|
|
|
|
}
|
2019-03-29 04:47:22 +00:00
|
|
|
#endif
|
2019-03-13 21:44:41 +00:00
|
|
|
|
2018-02-17 18:53:52 +00:00
|
|
|
DISPLAYLEVEL(3, "\r%70s\r", ""); /* Clean display line */
|
|
|
|
DISPLAYLEVEL(3, "Sanity check -- all tests ok\n");
|
2014-09-25 20:22:59 +00:00
|
|
|
}
|
|
|
|
|
2015-05-07 12:30:27 +00:00
|
|
|
|
2016-01-11 00:31:04 +00:00
|
|
|
/* ********************************************************
|
|
|
|
* File Hashing
|
|
|
|
**********************************************************/
|
|
|
|
|
2016-01-10 16:06:34 +00:00
|
|
|
static void BMK_display_LittleEndian(const void* ptr, size_t length)
|
|
|
|
{
|
|
|
|
const BYTE* p = (const BYTE*)ptr;
|
2016-08-11 17:07:23 +00:00
|
|
|
size_t idx;
|
|
|
|
for (idx=length-1; idx<length; idx--) /* intentional underflow to negative to detect end */
|
|
|
|
DISPLAYRESULT("%02x", p[idx]);
|
2016-01-10 16:06:34 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 17:42:33 +00:00
|
|
|
static void BMK_display_BigEndian(const void* ptr, size_t length)
|
|
|
|
{
|
2015-05-05 00:01:10 +00:00
|
|
|
const BYTE* p = (const BYTE*)ptr;
|
2016-08-11 17:07:23 +00:00
|
|
|
size_t idx;
|
|
|
|
for (idx=0; idx<length; idx++)
|
|
|
|
DISPLAYRESULT("%02x", p[idx]);
|
2014-12-09 17:42:33 +00:00
|
|
|
}
|
2014-09-25 20:22:59 +00:00
|
|
|
|
2016-01-20 14:06:35 +00:00
|
|
|
static void BMK_hashStream(void* xxhHashValue, const algoType hashType, FILE* inFile, void* buffer, size_t blockSize)
|
|
|
|
{
|
2016-05-28 00:14:28 +00:00
|
|
|
XXH64_state_t state64;
|
|
|
|
XXH32_state_t state32;
|
2016-01-20 14:06:35 +00:00
|
|
|
size_t readSize;
|
|
|
|
|
|
|
|
/* Init */
|
2018-09-17 19:39:18 +00:00
|
|
|
(void)XXH32_reset(&state32, XXHSUM32_DEFAULT_SEED);
|
|
|
|
(void)XXH64_reset(&state64, XXHSUM64_DEFAULT_SEED);
|
2016-01-20 14:06:35 +00:00
|
|
|
|
|
|
|
/* Load file & update hash */
|
|
|
|
readSize = 1;
|
2016-04-07 23:19:06 +00:00
|
|
|
while (readSize) {
|
2016-01-20 14:06:35 +00:00
|
|
|
readSize = fread(buffer, 1, blockSize, inFile);
|
|
|
|
switch(hashType)
|
|
|
|
{
|
|
|
|
case algo_xxh32:
|
2018-09-17 19:39:18 +00:00
|
|
|
(void)XXH32_update(&state32, buffer, readSize);
|
2016-01-20 14:06:35 +00:00
|
|
|
break;
|
|
|
|
case algo_xxh64:
|
2018-09-17 19:39:18 +00:00
|
|
|
(void)XXH64_update(&state64, buffer, readSize);
|
2016-01-20 14:06:35 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch(hashType)
|
|
|
|
{
|
|
|
|
case algo_xxh32:
|
2016-05-28 00:14:28 +00:00
|
|
|
{ U32 const h32 = XXH32_digest(&state32);
|
2016-01-20 14:06:35 +00:00
|
|
|
memcpy(xxhHashValue, &h32, sizeof(h32));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case algo_xxh64:
|
2016-05-28 00:14:28 +00:00
|
|
|
{ U64 const h64 = XXH64_digest(&state64);
|
2016-01-20 14:06:35 +00:00
|
|
|
memcpy(xxhHashValue, &h64, sizeof(h64));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-14 02:01:39 +00:00
|
|
|
|
2016-01-10 16:06:34 +00:00
|
|
|
typedef enum { big_endian, little_endian} endianess;
|
2015-05-07 12:30:27 +00:00
|
|
|
|
2016-01-10 16:06:34 +00:00
|
|
|
static int BMK_hash(const char* fileName,
|
|
|
|
const algoType hashType,
|
|
|
|
const endianess displayEndianess)
|
2014-09-25 20:22:59 +00:00
|
|
|
{
|
|
|
|
FILE* inFile;
|
|
|
|
size_t const blockSize = 64 KB;
|
2015-08-07 23:22:56 +00:00
|
|
|
void* buffer;
|
2016-01-20 14:06:35 +00:00
|
|
|
U32 h32 = 0;
|
|
|
|
U64 h64 = 0;
|
2014-09-25 20:22:59 +00:00
|
|
|
|
2015-05-07 12:30:27 +00:00
|
|
|
/* Check file existence */
|
2016-04-07 23:19:06 +00:00
|
|
|
if (fileName == stdinName) {
|
2014-10-29 12:55:58 +00:00
|
|
|
inFile = stdin;
|
2019-03-15 15:56:58 +00:00
|
|
|
fileName = "stdin";
|
2014-10-29 12:55:58 +00:00
|
|
|
SET_BINARY_MODE(stdin);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
inFile = fopen( fileName, "rb" );
|
2016-04-07 23:19:06 +00:00
|
|
|
if (inFile==NULL) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("Error: Could not open '%s': %s.\n", fileName, strerror(errno));
|
2016-01-10 16:06:34 +00:00
|
|
|
return 1;
|
2014-09-25 20:22:59 +00:00
|
|
|
}
|
|
|
|
|
2015-05-07 12:30:27 +00:00
|
|
|
/* Memory allocation & restrictions */
|
2015-08-07 23:22:56 +00:00
|
|
|
buffer = malloc(blockSize);
|
2016-04-07 23:19:06 +00:00
|
|
|
if(!buffer) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("\nError: Out of memory.\n");
|
2014-09-25 20:22:59 +00:00
|
|
|
fclose(inFile);
|
2016-01-10 16:06:34 +00:00
|
|
|
return 1;
|
2014-09-25 20:22:59 +00:00
|
|
|
}
|
|
|
|
|
2016-01-10 23:30:08 +00:00
|
|
|
/* loading notification */
|
2016-04-07 23:19:06 +00:00
|
|
|
{ const size_t fileNameSize = strlen(fileName);
|
2016-01-10 23:30:08 +00:00
|
|
|
const char* const fileNameEnd = fileName + fileNameSize;
|
2018-03-20 19:51:36 +00:00
|
|
|
const int maxInfoFilenameSize = (int)(fileNameSize > 30 ? 30 : fileNameSize);
|
|
|
|
int infoFilenameSize = 1;
|
2018-03-20 19:49:13 +00:00
|
|
|
while ((infoFilenameSize < maxInfoFilenameSize)
|
|
|
|
&& (fileNameEnd[-1-infoFilenameSize] != '/')
|
|
|
|
&& (fileNameEnd[-1-infoFilenameSize] != '\\') )
|
2016-01-10 23:30:08 +00:00
|
|
|
infoFilenameSize++;
|
2017-08-21 20:27:49 +00:00
|
|
|
DISPLAY("\rLoading %s... \r", fileNameEnd - infoFilenameSize);
|
2016-01-10 23:30:08 +00:00
|
|
|
|
2017-08-21 20:27:49 +00:00
|
|
|
/* Load file & update hash */
|
|
|
|
switch(hashType)
|
|
|
|
{
|
|
|
|
case algo_xxh32:
|
|
|
|
BMK_hashStream(&h32, algo_xxh32, inFile, buffer, blockSize);
|
|
|
|
break;
|
|
|
|
case algo_xxh64:
|
|
|
|
BMK_hashStream(&h64, algo_xxh64, inFile, buffer, blockSize);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-01-20 14:06:35 +00:00
|
|
|
|
2017-08-21 20:27:49 +00:00
|
|
|
fclose(inFile);
|
|
|
|
free(buffer);
|
|
|
|
DISPLAY("%s \r", fileNameEnd - infoFilenameSize); /* erase line */
|
|
|
|
}
|
2014-09-25 20:22:59 +00:00
|
|
|
|
2015-05-07 12:30:27 +00:00
|
|
|
/* display Hash */
|
2016-01-10 16:06:34 +00:00
|
|
|
switch(hashType)
|
2014-09-25 20:22:59 +00:00
|
|
|
{
|
2016-01-10 16:06:34 +00:00
|
|
|
case algo_xxh32:
|
2016-04-07 23:19:06 +00:00
|
|
|
{ XXH32_canonical_t hcbe32;
|
2018-09-17 19:39:18 +00:00
|
|
|
(void)XXH32_canonicalFromHash(&hcbe32, h32);
|
2016-01-14 02:01:39 +00:00
|
|
|
displayEndianess==big_endian ?
|
|
|
|
BMK_display_BigEndian(&hcbe32, sizeof(hcbe32)) : BMK_display_LittleEndian(&hcbe32, sizeof(hcbe32));
|
2016-01-10 23:30:08 +00:00
|
|
|
DISPLAYRESULT(" %s\n", fileName);
|
2014-09-25 20:22:59 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-01-10 16:06:34 +00:00
|
|
|
case algo_xxh64:
|
2016-04-07 23:19:06 +00:00
|
|
|
{ XXH64_canonical_t hcbe64;
|
2018-09-17 19:39:18 +00:00
|
|
|
(void)XXH64_canonicalFromHash(&hcbe64, h64);
|
2016-01-14 02:01:39 +00:00
|
|
|
displayEndianess==big_endian ?
|
|
|
|
BMK_display_BigEndian(&hcbe64, sizeof(hcbe64)) : BMK_display_LittleEndian(&hcbe64, sizeof(hcbe64));
|
2016-01-10 23:30:08 +00:00
|
|
|
DISPLAYRESULT(" %s\n", fileName);
|
2014-09-25 20:22:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-10 16:06:34 +00:00
|
|
|
static int BMK_hashFiles(const char** fnList, int fnTotal,
|
|
|
|
algoType hashType, endianess displayEndianess)
|
2015-08-07 23:22:56 +00:00
|
|
|
{
|
|
|
|
int fnNb;
|
|
|
|
int result = 0;
|
2016-01-10 16:06:34 +00:00
|
|
|
|
2015-08-07 23:22:56 +00:00
|
|
|
if (fnTotal==0)
|
2016-01-10 16:06:34 +00:00
|
|
|
return BMK_hash(stdinName, hashType, displayEndianess);
|
|
|
|
|
|
|
|
for (fnNb=0; fnNb<fnTotal; fnNb++)
|
|
|
|
result += BMK_hash(fnList[fnNb], hashType, displayEndianess);
|
2016-01-10 23:30:08 +00:00
|
|
|
DISPLAY("\r%70s\r", "");
|
2015-08-07 23:22:56 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-22 05:53:32 +00:00
|
|
|
typedef enum {
|
|
|
|
GetLine_ok,
|
|
|
|
GetLine_eof,
|
|
|
|
GetLine_exceedMaxLineLength,
|
|
|
|
GetLine_outOfMemory,
|
|
|
|
} GetLineResult;
|
|
|
|
|
2016-01-20 14:45:52 +00:00
|
|
|
typedef enum {
|
|
|
|
CanonicalFromString_ok,
|
|
|
|
CanonicalFromString_invalidFormat,
|
|
|
|
} CanonicalFromStringResult;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
ParseLine_ok,
|
|
|
|
ParseLine_invalidFormat,
|
|
|
|
} ParseLineResult;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
LineStatus_hashOk,
|
|
|
|
LineStatus_hashFailed,
|
|
|
|
LineStatus_failedToOpen,
|
|
|
|
} LineStatus;
|
|
|
|
|
|
|
|
typedef union {
|
2016-05-28 00:14:28 +00:00
|
|
|
XXH32_canonical_t xxh32;
|
|
|
|
XXH64_canonical_t xxh64;
|
2016-01-20 14:45:52 +00:00
|
|
|
} Canonical;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Canonical canonical;
|
|
|
|
const char* filename;
|
|
|
|
int xxhBits; /* canonical type : 32:xxh32, 64:xxh64 */
|
|
|
|
} ParsedLine;
|
|
|
|
|
|
|
|
typedef struct {
|
2016-01-22 04:22:35 +00:00
|
|
|
unsigned long nProperlyFormattedLines;
|
|
|
|
unsigned long nImproperlyFormattedLines;
|
|
|
|
unsigned long nMismatchedChecksums;
|
|
|
|
unsigned long nOpenOrReadFailures;
|
|
|
|
unsigned long nMixedFormatLines;
|
|
|
|
int xxhBits;
|
|
|
|
int quit;
|
2016-01-20 14:45:52 +00:00
|
|
|
} ParseFileReport;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
const char* inFileName;
|
|
|
|
FILE* inFile;
|
2016-01-22 05:53:32 +00:00
|
|
|
int lineMax;
|
2016-01-20 14:45:52 +00:00
|
|
|
char* lineBuf;
|
|
|
|
size_t blockSize;
|
|
|
|
char* blockBuf;
|
2019-02-26 20:36:23 +00:00
|
|
|
U32 strictMode;
|
|
|
|
U32 statusOnly;
|
|
|
|
U32 warn;
|
|
|
|
U32 quiet;
|
2016-01-20 14:45:52 +00:00
|
|
|
ParseFileReport report;
|
|
|
|
} ParseFileArg;
|
|
|
|
|
|
|
|
|
2016-01-22 05:53:32 +00:00
|
|
|
/* Read line from stream.
|
|
|
|
Returns GetLine_ok, if it reads line successfully.
|
|
|
|
Returns GetLine_eof, if stream reaches EOF.
|
|
|
|
Returns GetLine_exceedMaxLineLength, if line length is longer than MAX_LINE_LENGTH.
|
|
|
|
Returns GetLine_outOfMemory, if line buffer memory allocation failed.
|
2016-01-20 14:45:52 +00:00
|
|
|
*/
|
2016-01-22 05:53:32 +00:00
|
|
|
static GetLineResult getLine(char** lineBuf, int* lineMax, FILE* inFile)
|
2016-01-20 14:45:52 +00:00
|
|
|
{
|
2016-01-22 05:53:32 +00:00
|
|
|
GetLineResult result = GetLine_ok;
|
2019-02-26 20:36:23 +00:00
|
|
|
size_t len = 0;
|
2016-01-22 05:53:32 +00:00
|
|
|
|
2017-06-15 00:07:25 +00:00
|
|
|
if ((*lineBuf == NULL) || (*lineMax<1)) {
|
|
|
|
free(*lineBuf); /* in case it's != NULL */
|
|
|
|
*lineMax = 0;
|
|
|
|
*lineBuf = (char*)malloc(DEFAULT_LINE_LENGTH);
|
2016-01-22 05:53:32 +00:00
|
|
|
if(*lineBuf == NULL) return GetLine_outOfMemory;
|
2017-06-15 00:07:25 +00:00
|
|
|
*lineMax = DEFAULT_LINE_LENGTH;
|
2016-01-22 05:53:32 +00:00
|
|
|
}
|
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
for (;;) {
|
2016-01-22 05:53:32 +00:00
|
|
|
const int c = fgetc(inFile);
|
2016-04-07 23:19:06 +00:00
|
|
|
if (c == EOF) {
|
2016-01-22 05:53:32 +00:00
|
|
|
/* If we meet EOF before first character, returns GetLine_eof,
|
|
|
|
* otherwise GetLine_ok.
|
|
|
|
*/
|
2016-04-07 23:19:06 +00:00
|
|
|
if (len == 0) result = GetLine_eof;
|
2016-01-22 05:53:32 +00:00
|
|
|
break;
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
2016-01-22 05:53:32 +00:00
|
|
|
|
|
|
|
/* Make enough space for len+1 (for final NUL) bytes. */
|
2019-02-26 20:36:23 +00:00
|
|
|
if (len+1 >= (size_t)*lineMax) {
|
2016-01-22 05:53:32 +00:00
|
|
|
char* newLineBuf = NULL;
|
2019-02-26 20:36:23 +00:00
|
|
|
size_t newBufSize = (size_t)*lineMax;
|
2016-01-22 05:53:32 +00:00
|
|
|
|
|
|
|
newBufSize += (newBufSize/2) + 1; /* x 1.5 */
|
|
|
|
if (newBufSize > MAX_LINE_LENGTH) newBufSize = MAX_LINE_LENGTH;
|
|
|
|
if (len+1 >= newBufSize) return GetLine_exceedMaxLineLength;
|
|
|
|
|
|
|
|
newLineBuf = (char*) realloc(*lineBuf, newBufSize);
|
|
|
|
if (newLineBuf == NULL) return GetLine_outOfMemory;
|
|
|
|
|
|
|
|
*lineBuf = newLineBuf;
|
2019-02-26 20:36:23 +00:00
|
|
|
*lineMax = (int)newBufSize;
|
2016-01-22 05:53:32 +00:00
|
|
|
}
|
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
if (c == '\n') break;
|
2016-01-22 05:53:32 +00:00
|
|
|
(*lineBuf)[len++] = (char) c;
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
2016-01-22 05:53:32 +00:00
|
|
|
|
|
|
|
(*lineBuf)[len] = '\0';
|
|
|
|
return result;
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Converts one hexadecimal character to integer.
|
|
|
|
* Returns -1, if given character is not hexadecimal.
|
|
|
|
*/
|
|
|
|
static int charToHex(char c)
|
|
|
|
{
|
|
|
|
int result = -1;
|
|
|
|
if (c >= '0' && c <= '9') {
|
|
|
|
result = (int) (c - '0');
|
|
|
|
} else if (c >= 'A' && c <= 'F') {
|
|
|
|
result = (int) (c - 'A') + 0x0a;
|
|
|
|
} else if (c >= 'a' && c <= 'f') {
|
|
|
|
result = (int) (c - 'a') + 0x0a;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Converts XXH32 canonical hexadecimal string hashStr to big endian unsigned char array dst.
|
|
|
|
* Returns CANONICAL_FROM_STRING_INVALID_FORMAT, if hashStr is not well formatted.
|
|
|
|
* Returns CANONICAL_FROM_STRING_OK, if hashStr is parsed successfully.
|
|
|
|
*/
|
|
|
|
static CanonicalFromStringResult canonicalFromString(unsigned char* dst,
|
2016-04-07 23:19:06 +00:00
|
|
|
size_t dstSize,
|
2016-01-20 14:45:52 +00:00
|
|
|
const char* hashStr)
|
|
|
|
{
|
|
|
|
size_t i;
|
2016-04-07 23:19:06 +00:00
|
|
|
for (i = 0; i < dstSize; ++i) {
|
2016-01-20 14:45:52 +00:00
|
|
|
int h0, h1;
|
|
|
|
|
|
|
|
h0 = charToHex(hashStr[i*2 + 0]);
|
2016-04-07 23:19:06 +00:00
|
|
|
if (h0 < 0) return CanonicalFromString_invalidFormat;
|
2016-01-20 14:45:52 +00:00
|
|
|
|
|
|
|
h1 = charToHex(hashStr[i*2 + 1]);
|
2016-04-07 23:19:06 +00:00
|
|
|
if (h1 < 0) return CanonicalFromString_invalidFormat;
|
2016-01-20 14:45:52 +00:00
|
|
|
|
|
|
|
dst[i] = (unsigned char) ((h0 << 4) | h1);
|
|
|
|
}
|
|
|
|
return CanonicalFromString_ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Parse single line of xxHash checksum file.
|
|
|
|
* Returns PARSE_LINE_ERROR_INVALID_FORMAT, if line is not well formatted.
|
|
|
|
* Returns PARSE_LINE_OK if line is parsed successfully.
|
|
|
|
* And members of parseLine will be filled by parsed values.
|
|
|
|
*
|
|
|
|
* - line must be ended with '\0'.
|
|
|
|
* - Since parsedLine.filename will point within given argument `line`,
|
|
|
|
* users must keep `line`s content during they are using parsedLine.
|
|
|
|
*
|
|
|
|
* Given xxHash checksum line should have the following format:
|
|
|
|
*
|
|
|
|
* <8 or 16 hexadecimal char> <space> <space> <filename...> <'\0'>
|
|
|
|
*/
|
|
|
|
static ParseLineResult parseLine(ParsedLine* parsedLine, const char* line)
|
|
|
|
{
|
|
|
|
const char* const firstSpace = strchr(line, ' ');
|
2018-09-17 19:28:59 +00:00
|
|
|
if (firstSpace == NULL) return ParseLine_invalidFormat;
|
2016-01-20 14:45:52 +00:00
|
|
|
|
2018-09-17 19:28:59 +00:00
|
|
|
{ const char* const secondSpace = firstSpace + 1;
|
|
|
|
if (*secondSpace != ' ') return ParseLine_invalidFormat;
|
2016-01-20 14:45:52 +00:00
|
|
|
|
2018-09-17 19:28:59 +00:00
|
|
|
parsedLine->filename = NULL;
|
|
|
|
parsedLine->xxhBits = 0;
|
2016-01-20 14:45:52 +00:00
|
|
|
|
2018-09-17 19:28:59 +00:00
|
|
|
switch (firstSpace - line)
|
|
|
|
{
|
|
|
|
case 8:
|
|
|
|
{ XXH32_canonical_t* xxh32c = &parsedLine->canonical.xxh32;
|
|
|
|
if (canonicalFromString(xxh32c->digest, sizeof(xxh32c->digest), line)
|
|
|
|
!= CanonicalFromString_ok) {
|
|
|
|
return ParseLine_invalidFormat;
|
|
|
|
}
|
|
|
|
parsedLine->xxhBits = 32;
|
|
|
|
break;
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 19:28:59 +00:00
|
|
|
case 16:
|
|
|
|
{ XXH64_canonical_t* xxh64c = &parsedLine->canonical.xxh64;
|
|
|
|
if (canonicalFromString(xxh64c->digest, sizeof(xxh64c->digest), line)
|
|
|
|
!= CanonicalFromString_ok) {
|
|
|
|
return ParseLine_invalidFormat;
|
|
|
|
}
|
|
|
|
parsedLine->xxhBits = 64;
|
|
|
|
break;
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
2018-09-17 19:28:59 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
return ParseLine_invalidFormat;
|
|
|
|
break;
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
|
2018-09-17 19:28:59 +00:00
|
|
|
parsedLine->filename = secondSpace + 1;
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
return ParseLine_ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-28 00:14:28 +00:00
|
|
|
/*! Parse xxHash checksum file.
|
2016-01-20 14:45:52 +00:00
|
|
|
*/
|
|
|
|
static void parseFile1(ParseFileArg* parseFileArg)
|
|
|
|
{
|
|
|
|
const char* const inFileName = parseFileArg->inFileName;
|
|
|
|
ParseFileReport* const report = &parseFileArg->report;
|
|
|
|
|
2016-01-22 04:22:35 +00:00
|
|
|
unsigned long lineNumber = 0;
|
2016-01-20 14:45:52 +00:00
|
|
|
memset(report, 0, sizeof(*report));
|
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
while (!report->quit) {
|
2016-01-20 14:45:52 +00:00
|
|
|
FILE* fp = NULL;
|
|
|
|
LineStatus lineStatus = LineStatus_hashFailed;
|
2016-01-22 05:53:32 +00:00
|
|
|
GetLineResult getLineResult;
|
2016-01-20 14:45:52 +00:00
|
|
|
ParsedLine parsedLine;
|
|
|
|
memset(&parsedLine, 0, sizeof(parsedLine));
|
|
|
|
|
2016-01-22 04:22:35 +00:00
|
|
|
lineNumber++;
|
2016-04-07 23:19:06 +00:00
|
|
|
if (lineNumber == 0) {
|
2016-01-20 14:45:52 +00:00
|
|
|
/* This is unlikely happen, but md5sum.c has this
|
|
|
|
* error check. */
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("%s: Error: Too many checksum lines\n", inFileName);
|
2016-01-20 14:45:52 +00:00
|
|
|
report->quit = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-01-22 05:53:32 +00:00
|
|
|
getLineResult = getLine(&parseFileArg->lineBuf, &parseFileArg->lineMax,
|
|
|
|
parseFileArg->inFile);
|
2016-04-07 23:19:06 +00:00
|
|
|
if (getLineResult != GetLine_ok) {
|
|
|
|
if (getLineResult == GetLine_eof) break;
|
2016-01-22 05:53:32 +00:00
|
|
|
|
|
|
|
switch (getLineResult)
|
|
|
|
{
|
2016-01-22 06:06:25 +00:00
|
|
|
case GetLine_ok:
|
|
|
|
case GetLine_eof:
|
|
|
|
/* These cases never happen. See above getLineResult related "if"s.
|
|
|
|
They exist just for make gcc's -Wswitch-enum happy. */
|
|
|
|
break;
|
|
|
|
|
2016-01-22 05:53:32 +00:00
|
|
|
default:
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("%s:%lu: Error: Unknown error.\n", inFileName, lineNumber);
|
2016-01-22 05:53:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GetLine_exceedMaxLineLength:
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("%s:%lu: Error: Line too long.\n", inFileName, lineNumber);
|
2016-01-22 05:53:32 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GetLine_outOfMemory:
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("%s:%lu: Error: Out of memory.\n", inFileName, lineNumber);
|
2016-01-22 05:53:32 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
report->quit = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
if (parseLine(&parsedLine, parseFileArg->lineBuf) != ParseLine_ok) {
|
2016-01-20 14:45:52 +00:00
|
|
|
report->nImproperlyFormattedLines++;
|
2016-04-07 23:19:06 +00:00
|
|
|
if (parseFileArg->warn) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("%s:%lu: Error: Improperly formatted checksum line.\n"
|
2016-01-22 04:22:35 +00:00
|
|
|
, inFileName, lineNumber);
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
if (report->xxhBits != 0 && report->xxhBits != parsedLine.xxhBits) {
|
2016-01-20 14:45:52 +00:00
|
|
|
/* Don't accept xxh32/xxh64 mixed file */
|
|
|
|
report->nImproperlyFormattedLines++;
|
|
|
|
report->nMixedFormatLines++;
|
2016-04-07 23:19:06 +00:00
|
|
|
if (parseFileArg->warn) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("%s : %lu: Error: Multiple hash types in one file.\n"
|
2016-01-22 04:22:35 +00:00
|
|
|
, inFileName, lineNumber);
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
report->nProperlyFormattedLines++;
|
2016-04-07 23:19:06 +00:00
|
|
|
if (report->xxhBits == 0) {
|
2016-01-20 14:45:52 +00:00
|
|
|
report->xxhBits = parsedLine.xxhBits;
|
|
|
|
}
|
|
|
|
|
|
|
|
fp = fopen(parsedLine.filename, "rb");
|
2016-04-07 23:19:06 +00:00
|
|
|
if (fp == NULL) {
|
2016-01-20 14:45:52 +00:00
|
|
|
lineStatus = LineStatus_failedToOpen;
|
2016-05-28 00:14:28 +00:00
|
|
|
} else {
|
2016-01-20 14:45:52 +00:00
|
|
|
lineStatus = LineStatus_hashFailed;
|
|
|
|
switch (parsedLine.xxhBits)
|
|
|
|
{
|
|
|
|
case 32:
|
2016-04-07 23:19:06 +00:00
|
|
|
{ XXH32_hash_t xxh;
|
2016-01-20 14:45:52 +00:00
|
|
|
BMK_hashStream(&xxh, algo_xxh32, fp, parseFileArg->blockBuf, parseFileArg->blockSize);
|
2016-04-07 23:19:06 +00:00
|
|
|
if (xxh == XXH32_hashFromCanonical(&parsedLine.canonical.xxh32)) {
|
2016-01-20 14:45:52 +00:00
|
|
|
lineStatus = LineStatus_hashOk;
|
2016-04-07 23:19:06 +00:00
|
|
|
} }
|
2016-01-20 14:45:52 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 64:
|
2016-04-07 23:19:06 +00:00
|
|
|
{ XXH64_hash_t xxh;
|
2016-01-20 14:45:52 +00:00
|
|
|
BMK_hashStream(&xxh, algo_xxh64, fp, parseFileArg->blockBuf, parseFileArg->blockSize);
|
2016-04-07 23:19:06 +00:00
|
|
|
if (xxh == XXH64_hashFromCanonical(&parsedLine.canonical.xxh64)) {
|
2016-01-20 14:45:52 +00:00
|
|
|
lineStatus = LineStatus_hashOk;
|
2016-04-07 23:19:06 +00:00
|
|
|
} }
|
2016-01-20 14:45:52 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (lineStatus)
|
|
|
|
{
|
|
|
|
default:
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("%s: Error: Unknown error.\n", inFileName);
|
2016-01-20 14:45:52 +00:00
|
|
|
report->quit = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LineStatus_failedToOpen:
|
|
|
|
report->nOpenOrReadFailures++;
|
2016-04-07 23:19:06 +00:00
|
|
|
if (!parseFileArg->statusOnly) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAYRESULT("%s:%lu: Could not open or read '%s': %s.\n",
|
|
|
|
inFileName, lineNumber, parsedLine.filename, strerror(errno));
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LineStatus_hashOk:
|
|
|
|
case LineStatus_hashFailed:
|
2016-04-07 23:19:06 +00:00
|
|
|
{ int b = 1;
|
|
|
|
if (lineStatus == LineStatus_hashOk) {
|
2016-01-20 14:45:52 +00:00
|
|
|
/* If --quiet is specified, don't display "OK" */
|
2016-04-07 23:19:06 +00:00
|
|
|
if (parseFileArg->quiet) b = 0;
|
|
|
|
} else {
|
2016-01-20 14:45:52 +00:00
|
|
|
report->nMismatchedChecksums++;
|
|
|
|
}
|
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
if (b && !parseFileArg->statusOnly) {
|
2016-01-20 14:45:52 +00:00
|
|
|
DISPLAYRESULT("%s: %s\n", parsedLine.filename
|
|
|
|
, lineStatus == LineStatus_hashOk ? "OK" : "FAILED");
|
2016-04-07 23:19:06 +00:00
|
|
|
} }
|
2016-01-20 14:45:52 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-05-28 00:14:28 +00:00
|
|
|
} /* while (!report->quit) */
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Parse xxHash checksum file.
|
|
|
|
* Returns 1, if all procedures were succeeded.
|
|
|
|
* Returns 0, if any procedures was failed.
|
|
|
|
*
|
|
|
|
* If strictMode != 0, return error code if any line is invalid.
|
|
|
|
* If statusOnly != 0, don't generate any output.
|
|
|
|
* If warn != 0, print a warning message to stderr.
|
|
|
|
* If quiet != 0, suppress "OK" line.
|
|
|
|
*
|
|
|
|
* "All procedures are succeeded" means:
|
|
|
|
* - Checksum file contains at least one line and less than SIZE_T_MAX lines.
|
|
|
|
* - All files are properly opened and read.
|
|
|
|
* - All hash values match with its content.
|
|
|
|
* - (strict mode) All lines in checksum file are consistent and well formatted.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static int checkFile(const char* inFileName,
|
|
|
|
const endianess displayEndianess,
|
|
|
|
U32 strictMode,
|
|
|
|
U32 statusOnly,
|
|
|
|
U32 warn,
|
|
|
|
U32 quiet)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
FILE* inFile = NULL;
|
|
|
|
ParseFileArg parseFileArgBody;
|
|
|
|
ParseFileArg* const parseFileArg = &parseFileArgBody;
|
|
|
|
ParseFileReport* const report = &parseFileArg->report;
|
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
if (displayEndianess != big_endian) {
|
2016-01-20 14:45:52 +00:00
|
|
|
/* Don't accept little endian */
|
2016-01-22 04:22:35 +00:00
|
|
|
DISPLAY( "Check file mode doesn't support little endian\n" );
|
2016-01-22 04:19:19 +00:00
|
|
|
return 0;
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
|
2016-01-25 09:59:01 +00:00
|
|
|
/* note : stdinName is special constant pointer. It is not a string. */
|
2016-04-07 23:19:06 +00:00
|
|
|
if (inFileName == stdinName) {
|
2016-01-25 09:59:01 +00:00
|
|
|
/* note : Since we expect text input for xxhash -c mode,
|
|
|
|
* Don't set binary mode for stdin */
|
2019-03-15 15:56:58 +00:00
|
|
|
inFileName = "stdin";
|
2016-01-20 14:45:52 +00:00
|
|
|
inFile = stdin;
|
2016-04-07 23:19:06 +00:00
|
|
|
} else {
|
2016-01-20 14:45:52 +00:00
|
|
|
inFile = fopen( inFileName, "rt" );
|
|
|
|
}
|
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
if (inFile == NULL) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("Error: Could not open '%s': %s\n", inFileName, strerror(errno));
|
2016-01-22 04:19:19 +00:00
|
|
|
return 0;
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
parseFileArg->inFileName = inFileName;
|
|
|
|
parseFileArg->inFile = inFile;
|
2016-01-22 05:53:32 +00:00
|
|
|
parseFileArg->lineMax = DEFAULT_LINE_LENGTH;
|
|
|
|
parseFileArg->lineBuf = (char*) malloc((size_t) parseFileArg->lineMax);
|
2016-01-20 14:45:52 +00:00
|
|
|
parseFileArg->blockSize = 64 * 1024;
|
|
|
|
parseFileArg->blockBuf = (char*) malloc(parseFileArg->blockSize);
|
|
|
|
parseFileArg->strictMode = strictMode;
|
|
|
|
parseFileArg->statusOnly = statusOnly;
|
|
|
|
parseFileArg->warn = warn;
|
|
|
|
parseFileArg->quiet = quiet;
|
|
|
|
|
|
|
|
parseFile1(parseFileArg);
|
|
|
|
|
|
|
|
free(parseFileArg->blockBuf);
|
|
|
|
free(parseFileArg->lineBuf);
|
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
if (inFile != stdin) fclose(inFile);
|
2016-01-20 14:45:52 +00:00
|
|
|
|
|
|
|
/* Show error/warning messages. All messages are copied from md5sum.c
|
|
|
|
*/
|
2016-04-07 23:19:06 +00:00
|
|
|
if (report->nProperlyFormattedLines == 0) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAY("%s: no properly formatted xxHash checksum lines found\n", inFileName);
|
2016-04-07 23:19:06 +00:00
|
|
|
} else if (!statusOnly) {
|
|
|
|
if (report->nImproperlyFormattedLines) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAYRESULT("%lu %s are improperly formatted\n"
|
|
|
|
, report->nImproperlyFormattedLines
|
|
|
|
, report->nImproperlyFormattedLines == 1 ? "line" : "lines");
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
2016-04-07 23:19:06 +00:00
|
|
|
if (report->nOpenOrReadFailures) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAYRESULT("%lu listed %s could not be read\n"
|
|
|
|
, report->nOpenOrReadFailures
|
|
|
|
, report->nOpenOrReadFailures == 1 ? "file" : "files");
|
2016-01-20 14:45:52 +00:00
|
|
|
}
|
2016-04-07 23:19:06 +00:00
|
|
|
if (report->nMismatchedChecksums) {
|
2019-03-15 15:56:58 +00:00
|
|
|
DISPLAYRESULT("%lu computed %s did NOT match\n"
|
|
|
|
, report->nMismatchedChecksums
|
|
|
|
, report->nMismatchedChecksums == 1 ? "checksum" : "checksums");
|
2016-04-07 23:19:06 +00:00
|
|
|
} }
|
2016-01-20 14:45:52 +00:00
|
|
|
|
|
|
|
/* Result (exit) code logic is copied from
|
|
|
|
* gnu coreutils/src/md5sum.c digest_check() */
|
|
|
|
result = report->nProperlyFormattedLines != 0
|
|
|
|
&& report->nMismatchedChecksums == 0
|
|
|
|
&& report->nOpenOrReadFailures == 0
|
|
|
|
&& (!strictMode || report->nImproperlyFormattedLines == 0)
|
|
|
|
&& report->quit == 0;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int checkFiles(const char** fnList, int fnTotal,
|
|
|
|
const endianess displayEndianess,
|
|
|
|
U32 strictMode,
|
|
|
|
U32 statusOnly,
|
|
|
|
U32 warn,
|
|
|
|
U32 quiet)
|
|
|
|
{
|
|
|
|
int ok = 1;
|
2016-01-25 09:59:01 +00:00
|
|
|
|
|
|
|
/* Special case for stdinName "-",
|
|
|
|
* note: stdinName is not a string. It's special pointer. */
|
2016-04-07 23:19:06 +00:00
|
|
|
if (fnTotal==0) {
|
2016-01-25 09:59:01 +00:00
|
|
|
ok &= checkFile(stdinName, displayEndianess, strictMode, statusOnly, warn, quiet);
|
2016-04-07 23:19:06 +00:00
|
|
|
} else {
|
2016-01-25 09:59:01 +00:00
|
|
|
int fnNb;
|
|
|
|
for (fnNb=0; fnNb<fnTotal; fnNb++)
|
|
|
|
ok &= checkFile(fnList[fnNb], displayEndianess, strictMode, statusOnly, warn, quiet);
|
|
|
|
}
|
2016-01-20 14:45:52 +00:00
|
|
|
return ok ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-01-04 07:32:38 +00:00
|
|
|
/* ********************************************************
|
2015-05-04 21:56:53 +00:00
|
|
|
* Main
|
2016-01-04 07:32:38 +00:00
|
|
|
**********************************************************/
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2014-10-29 12:55:58 +00:00
|
|
|
static int usage(const char* exename)
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
2016-04-07 23:50:06 +00:00
|
|
|
DISPLAY( WELCOME_MESSAGE(exename) );
|
2014-08-15 09:27:04 +00:00
|
|
|
DISPLAY( "Usage :\n");
|
2016-01-07 22:54:51 +00:00
|
|
|
DISPLAY( " %s [arg] [filenames]\n", exename);
|
2014-10-29 12:55:58 +00:00
|
|
|
DISPLAY( "When no filename provided, or - provided : use stdin as input\n");
|
2014-08-15 09:27:04 +00:00
|
|
|
DISPLAY( "Arguments :\n");
|
2016-01-10 16:06:34 +00:00
|
|
|
DISPLAY( " -H# : hash selection : 0=32bits, 1=64bits (default: %i)\n", (int)g_defaultAlgo);
|
2016-02-19 14:21:43 +00:00
|
|
|
DISPLAY( " -c : read xxHash sums from the [filenames] and check them\n");
|
2016-01-14 02:01:39 +00:00
|
|
|
DISPLAY( " -h : help \n");
|
2016-01-10 16:06:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int usage_advanced(const char* exename)
|
|
|
|
{
|
|
|
|
usage(exename);
|
|
|
|
DISPLAY( "Advanced :\n");
|
2016-02-22 13:17:12 +00:00
|
|
|
DISPLAY( " --little-endian : hash printed using little endian convention (default: big endian)\n");
|
|
|
|
DISPLAY( " -V, --version : display version\n");
|
|
|
|
DISPLAY( " -h, --help : display long help and exit\n");
|
2014-09-25 20:22:59 +00:00
|
|
|
DISPLAY( " -b : benchmark mode \n");
|
2018-09-17 19:12:44 +00:00
|
|
|
DISPLAY( " -i# : number of iterations (benchmark mode; default %u)\n", g_nbIterations);
|
2016-02-19 14:21:43 +00:00
|
|
|
DISPLAY( "\n");
|
|
|
|
DISPLAY( "The following four options are useful only when verifying checksums (-c):\n");
|
|
|
|
DISPLAY( "--strict : don't print OK for each successfully verified file\n");
|
|
|
|
DISPLAY( "--status : don't output anything, status code shows success\n");
|
|
|
|
DISPLAY( "--quiet : exit non-zero for improperly formatted checksum lines\n");
|
|
|
|
DISPLAY( "--warn : warn about improperly formatted checksum lines\n");
|
2014-08-15 09:27:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-29 12:55:58 +00:00
|
|
|
static int badusage(const char* exename)
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
|
|
|
DISPLAY("Wrong parameters\n");
|
|
|
|
usage(exename);
|
2014-09-25 20:22:59 +00:00
|
|
|
return 1;
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
|
|
|
|
2019-02-26 20:36:23 +00:00
|
|
|
static void errorOut(const char* msg)
|
|
|
|
{
|
|
|
|
DISPLAY("%s \n", msg); exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! readU32FromCharChecked() :
|
|
|
|
* @return 0 if success, and store the result in *value.
|
|
|
|
* allows and interprets K, KB, KiB, M, MB and MiB suffix.
|
|
|
|
* Will also modify `*stringPtr`, advancing it to position where it stopped reading.
|
|
|
|
* @return 1 if an overflow error occurs */
|
|
|
|
static int readU32FromCharChecked(const char** stringPtr, unsigned* value)
|
2018-02-19 01:38:48 +00:00
|
|
|
{
|
2019-02-26 20:36:23 +00:00
|
|
|
static unsigned const max = (((unsigned)(-1)) / 10) - 1;
|
2018-02-19 01:38:48 +00:00
|
|
|
unsigned result = 0;
|
2019-02-26 20:36:23 +00:00
|
|
|
while ((**stringPtr >='0') && (**stringPtr <='9')) {
|
2019-02-26 23:24:59 +00:00
|
|
|
if (result > max) return 1; /* overflow error */
|
2019-02-26 20:36:23 +00:00
|
|
|
result *= 10;
|
|
|
|
result += (unsigned)(**stringPtr - '0');
|
|
|
|
(*stringPtr)++ ;
|
|
|
|
}
|
2018-02-19 01:38:48 +00:00
|
|
|
if ((**stringPtr=='K') || (**stringPtr=='M')) {
|
2019-02-26 20:36:23 +00:00
|
|
|
unsigned const maxK = ((unsigned)(-1)) >> 10;
|
2019-02-26 23:24:59 +00:00
|
|
|
if (result > maxK) return 1; /* overflow error */
|
2018-02-19 01:38:48 +00:00
|
|
|
result <<= 10;
|
2019-02-26 20:36:23 +00:00
|
|
|
if (**stringPtr=='M') {
|
2019-02-26 23:24:59 +00:00
|
|
|
if (result > maxK) return 1; /* overflow error */
|
2019-02-26 20:36:23 +00:00
|
|
|
result <<= 10;
|
|
|
|
}
|
|
|
|
(*stringPtr)++; /* skip `K` or `M` */
|
2018-02-19 01:38:48 +00:00
|
|
|
if (**stringPtr=='i') (*stringPtr)++;
|
|
|
|
if (**stringPtr=='B') (*stringPtr)++;
|
|
|
|
}
|
2019-02-26 20:36:23 +00:00
|
|
|
*value = result;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! readU32FromChar() :
|
|
|
|
* @return : unsigned integer value read from input in `char` format.
|
|
|
|
* allows and interprets K, KB, KiB, M, MB and MiB suffix.
|
|
|
|
* Will also modify `*stringPtr`, advancing it to position where it stopped reading.
|
|
|
|
* Note : function will exit() program if digit sequence overflows */
|
|
|
|
static unsigned readU32FromChar(const char** stringPtr) {
|
|
|
|
unsigned result;
|
2019-02-27 00:42:50 +00:00
|
|
|
if (readU32FromCharChecked(stringPtr, &result)) {
|
2019-03-15 15:56:58 +00:00
|
|
|
static const char errorMsg[] = "Error: numeric value too large";
|
2019-02-27 00:42:50 +00:00
|
|
|
errorOut(errorMsg);
|
|
|
|
}
|
2018-02-19 01:38:48 +00:00
|
|
|
return result;
|
|
|
|
}
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2015-08-07 23:22:56 +00:00
|
|
|
int main(int argc, const char** argv)
|
2014-08-15 09:27:04 +00:00
|
|
|
{
|
2018-03-20 17:34:08 +00:00
|
|
|
int i, filenamesStart = 0;
|
2016-08-10 05:00:29 +00:00
|
|
|
const char* const exename = argv[0];
|
2014-09-25 20:22:59 +00:00
|
|
|
U32 benchmarkMode = 0;
|
2016-01-20 14:45:52 +00:00
|
|
|
U32 fileCheckMode = 0;
|
|
|
|
U32 strictMode = 0;
|
|
|
|
U32 statusOnly = 0;
|
|
|
|
U32 warn = 0;
|
|
|
|
U32 quiet = 0;
|
2018-02-19 01:38:48 +00:00
|
|
|
U32 specificTest = 0;
|
|
|
|
size_t keySize = XXH_DEFAULT_SAMPLE_SIZE;
|
2018-03-20 17:34:08 +00:00
|
|
|
algoType algo = g_defaultAlgo;
|
2016-01-10 16:06:34 +00:00
|
|
|
endianess displayEndianess = big_endian;
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2015-08-12 17:24:35 +00:00
|
|
|
/* special case : xxh32sum default to 32 bits checksum */
|
2016-01-10 16:06:34 +00:00
|
|
|
if (strstr(exename, "xxh32sum") != NULL) algo = algo_xxh32;
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
for(i=1; i<argc; i++) {
|
2015-08-07 23:22:56 +00:00
|
|
|
const char* argument = argv[i];
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2015-05-07 12:30:27 +00:00
|
|
|
if(!argument) continue; /* Protection, if argument empty */
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-01-10 16:06:34 +00:00
|
|
|
if (!strcmp(argument, "--little-endian")) { displayEndianess = little_endian; continue; }
|
2016-01-20 14:45:52 +00:00
|
|
|
if (!strcmp(argument, "--check")) { fileCheckMode = 1; continue; }
|
|
|
|
if (!strcmp(argument, "--strict")) { strictMode = 1; continue; }
|
|
|
|
if (!strcmp(argument, "--status")) { statusOnly = 1; continue; }
|
|
|
|
if (!strcmp(argument, "--quiet")) { quiet = 1; continue; }
|
|
|
|
if (!strcmp(argument, "--warn")) { warn = 1; continue; }
|
2016-02-22 13:12:43 +00:00
|
|
|
if (!strcmp(argument, "--help")) { return usage_advanced(exename); }
|
2016-04-07 23:50:06 +00:00
|
|
|
if (!strcmp(argument, "--version")) { DISPLAY(WELCOME_MESSAGE(exename)); return 0; }
|
2016-01-10 16:06:34 +00:00
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
if (*argument!='-') {
|
2015-08-07 23:22:56 +00:00
|
|
|
if (filenamesStart==0) filenamesStart=i; /* only supports a continuous list of filenames */
|
2014-10-29 12:55:58 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2015-05-07 12:30:27 +00:00
|
|
|
/* command selection */
|
|
|
|
argument++; /* note : *argument=='-' */
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2016-04-07 23:19:06 +00:00
|
|
|
while (*argument!=0) {
|
2014-10-29 12:55:58 +00:00
|
|
|
switch(*argument)
|
2014-09-25 20:22:59 +00:00
|
|
|
{
|
2015-08-19 14:11:24 +00:00
|
|
|
/* Display version */
|
|
|
|
case 'V':
|
2016-04-07 23:50:06 +00:00
|
|
|
DISPLAY(WELCOME_MESSAGE(exename)); return 0;
|
2015-08-19 14:11:24 +00:00
|
|
|
|
2015-05-07 14:27:27 +00:00
|
|
|
/* Display help on usage */
|
2014-10-29 12:55:58 +00:00
|
|
|
case 'h':
|
2016-01-10 16:06:34 +00:00
|
|
|
return usage_advanced(exename);
|
2014-10-29 12:55:58 +00:00
|
|
|
|
2015-05-07 14:27:27 +00:00
|
|
|
/* select hash algorithm */
|
2014-10-29 12:55:58 +00:00
|
|
|
case 'H':
|
2016-01-10 16:06:34 +00:00
|
|
|
algo = (algoType)(argument[1] - '0');
|
2014-10-29 12:55:58 +00:00
|
|
|
argument+=2;
|
|
|
|
break;
|
|
|
|
|
2016-01-20 14:45:52 +00:00
|
|
|
/* File check mode */
|
|
|
|
case 'c':
|
|
|
|
fileCheckMode=1;
|
|
|
|
argument++;
|
|
|
|
break;
|
|
|
|
|
2016-02-22 13:10:25 +00:00
|
|
|
/* Warning mode (file check mode only, alias of "--warning") */
|
|
|
|
case 'w':
|
|
|
|
warn=1;
|
|
|
|
argument++;
|
|
|
|
break;
|
|
|
|
|
2015-05-07 12:30:27 +00:00
|
|
|
/* Trigger benchmark mode */
|
2014-10-29 12:55:58 +00:00
|
|
|
case 'b':
|
|
|
|
argument++;
|
2018-02-19 01:38:48 +00:00
|
|
|
benchmarkMode = 1;
|
2018-02-19 09:06:07 +00:00
|
|
|
specificTest = readU32FromChar(&argument); /* select one specific test (hidden option) */
|
2014-10-29 12:55:58 +00:00
|
|
|
break;
|
|
|
|
|
2015-05-07 14:27:27 +00:00
|
|
|
/* Modify Nb Iterations (benchmark only) */
|
2014-10-29 12:55:58 +00:00
|
|
|
case 'i':
|
2018-02-19 01:38:48 +00:00
|
|
|
argument++;
|
|
|
|
g_nbIterations = readU32FromChar(&argument);
|
2014-10-29 12:55:58 +00:00
|
|
|
break;
|
|
|
|
|
2015-08-12 16:10:16 +00:00
|
|
|
/* Modify Block size (benchmark only) */
|
|
|
|
case 'B':
|
|
|
|
argument++;
|
2018-02-19 01:38:48 +00:00
|
|
|
keySize = readU32FromChar(&argument);
|
2015-08-12 16:10:16 +00:00
|
|
|
break;
|
|
|
|
|
2018-02-17 18:53:52 +00:00
|
|
|
/* Modify verbosity of benchmark output (hidden option) */
|
|
|
|
case 'q':
|
|
|
|
argument++;
|
|
|
|
g_displayLevel--;
|
|
|
|
break;
|
|
|
|
|
2014-10-29 12:55:58 +00:00
|
|
|
default:
|
|
|
|
return badusage(exename);
|
2014-09-25 20:22:59 +00:00
|
|
|
}
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
2016-04-07 23:19:06 +00:00
|
|
|
} /* for(i=1; i<argc; i++) */
|
2014-08-15 09:27:04 +00:00
|
|
|
|
2015-05-07 12:30:27 +00:00
|
|
|
/* Check benchmark mode */
|
2016-04-07 23:19:06 +00:00
|
|
|
if (benchmarkMode) {
|
2018-02-17 18:53:52 +00:00
|
|
|
DISPLAYLEVEL(2, WELCOME_MESSAGE(exename) );
|
2019-03-29 04:47:22 +00:00
|
|
|
BMK_sanityCheck();
|
2018-02-19 01:38:48 +00:00
|
|
|
if (filenamesStart==0) return BMK_benchInternal(keySize, specificTest);
|
|
|
|
return BMK_benchFiles(argv+filenamesStart, argc-filenamesStart, specificTest);
|
2014-10-18 11:10:27 +00:00
|
|
|
}
|
2014-09-25 20:22:59 +00:00
|
|
|
|
2015-05-07 12:30:27 +00:00
|
|
|
/* Check if input is defined as console; trigger an error in this case */
|
2015-08-07 23:22:56 +00:00
|
|
|
if ( (filenamesStart==0) && IS_CONSOLE(stdin) ) return badusage(exename);
|
2015-05-07 12:30:27 +00:00
|
|
|
|
2015-08-07 23:22:56 +00:00
|
|
|
if (filenamesStart==0) filenamesStart = argc;
|
2016-04-07 23:19:06 +00:00
|
|
|
if (fileCheckMode) {
|
2017-10-09 19:26:59 +00:00
|
|
|
return checkFiles(argv+filenamesStart, argc-filenamesStart,
|
|
|
|
displayEndianess, strictMode, statusOnly, warn, quiet);
|
2016-04-07 23:19:06 +00:00
|
|
|
} else {
|
2016-01-20 14:45:52 +00:00
|
|
|
return BMK_hashFiles(argv+filenamesStart, argc-filenamesStart, algo, displayEndianess);
|
|
|
|
}
|
2014-08-15 09:27:04 +00:00
|
|
|
}
|
2016-06-06 12:12:27 +00:00
|
|
|
|
|
|
|
#endif /* XXHASH_C_2097394837 */
|