123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448 |
- /* Copyright (c) 2004, Roger Dingledine.
- * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
- * Copyright (c) 2007-2017, The Tor Project, Inc. */
- /* See LICENSE for licensing information */
- /**
- * \file compress_zstd.c
- * \brief Compression backend for Zstandard.
- *
- * This module should never be invoked directly. Use the compress module
- * instead.
- **/
- #include "orconfig.h"
- #include "util.h"
- #include "torlog.h"
- #include "compress.h"
- #include "compress_zstd.h"
- #ifdef HAVE_ZSTD
- #ifdef HAVE_CFLAG_WUNUSED_CONST_VARIABLE
- DISABLE_GCC_WARNING(unused-const-variable)
- #endif
- #include <zstd.h>
- #ifdef HAVE_CFLAG_WUNUSED_CONST_VARIABLE
- ENABLE_GCC_WARNING(unused-const-variable)
- #endif
- #endif
- /** Total number of bytes allocated for Zstandard state. */
- static atomic_counter_t total_zstd_allocation;
- #ifdef HAVE_ZSTD
- /** Given <b>level</b> return the memory level. */
- static int
- memory_level(compression_level_t level)
- {
- switch (level) {
- default:
- case BEST_COMPRESSION:
- case HIGH_COMPRESSION: return 9;
- case MEDIUM_COMPRESSION: return 8;
- case LOW_COMPRESSION: return 7;
- }
- }
- #endif /* defined(HAVE_ZSTD) */
- /** Return 1 if Zstandard compression is supported; otherwise 0. */
- int
- tor_zstd_method_supported(void)
- {
- #ifdef HAVE_ZSTD
- return 1;
- #else
- return 0;
- #endif
- }
- /** Return a string representation of the version of the currently running
- * version of libzstd. Returns NULL if Zstandard is unsupported. */
- const char *
- tor_zstd_get_version_str(void)
- {
- #ifdef HAVE_ZSTD
- static char version_str[16];
- size_t version_number;
- version_number = ZSTD_versionNumber();
- tor_snprintf(version_str, sizeof(version_str),
- "%d.%d.%d",
- (int) version_number / 10000 % 100,
- (int) version_number / 100 % 100,
- (int) version_number % 100);
- return version_str;
- #else /* !(defined(HAVE_ZSTD)) */
- return NULL;
- #endif /* defined(HAVE_ZSTD) */
- }
- /** Return a string representation of the version of the version of libzstd
- * used at compilation time. Returns NULL if Zstandard is unsupported. */
- const char *
- tor_zstd_get_header_version_str(void)
- {
- #ifdef HAVE_ZSTD
- return ZSTD_VERSION_STRING;
- #else
- return NULL;
- #endif
- }
- /** Internal Zstandard state for incremental compression/decompression.
- * The body of this struct is not exposed. */
- struct tor_zstd_compress_state_t {
- #ifdef HAVE_ZSTD
- union {
- /** Compression stream. Used when <b>compress</b> is true. */
- ZSTD_CStream *compress_stream;
- /** Decompression stream. Used when <b>compress</b> is false. */
- ZSTD_DStream *decompress_stream;
- } u; /**< Zstandard stream objects. */
- #endif /* defined(HAVE_ZSTD) */
- int compress; /**< True if we are compressing; false if we are inflating */
- int have_called_end; /**< True if we are compressing and we've called
- * ZSTD_endStream */
- /** Number of bytes read so far. Used to detect compression bombs. */
- size_t input_so_far;
- /** Number of bytes written so far. Used to detect compression bombs. */
- size_t output_so_far;
- /** Approximate number of bytes allocated for this object. */
- size_t allocation;
- };
- #ifdef HAVE_ZSTD
- /** Return an approximate number of bytes stored in memory to hold the
- * Zstandard compression/decompression state. */
- static size_t
- tor_zstd_state_size_precalc(int compress, int preset)
- {
- tor_assert(preset > 0);
- size_t memory_usage = sizeof(tor_zstd_compress_state_t);
- // The Zstandard library provides a number of functions that would be useful
- // here, but they are, unfortunately, still considered experimental and are
- // thus only available in libzstd if we link against the library statically.
- //
- // The code in this function tries to approximate the calculations without
- // being able to use the following:
- //
- // - We do not have access to neither the internal members of ZSTD_CStream
- // and ZSTD_DStream and their internal context objects.
- //
- // - We cannot use ZSTD_sizeof_CStream() and ZSTD_sizeof_DStream() since they
- // are unexposed.
- //
- // In the future it might be useful to check if libzstd have started
- // providing these functions in a stable manner and simplify this function.
- if (compress) {
- // We try to approximate the ZSTD_sizeof_CStream(ZSTD_CStream *stream)
- // function here. This function uses the following fields to make its
- // estimate:
- // - sizeof(ZSTD_CStream): Around 192 bytes on a 64-bit machine:
- memory_usage += 192;
- // - ZSTD_sizeof_CCtx(stream->cctx): This function requires access to
- // variables that are not exposed via the public API. We use a _very_
- // simplified function to calculate the estimated amount of bytes used in
- // this struct.
- // memory_usage += (preset - 0.5) * 1024 * 1024;
- memory_usage += (preset * 1024 * 1024) - (512 * 1024);
- // - ZSTD_sizeof_CDict(stream->cdictLocal): Unused in Tor: 0 bytes.
- // - stream->outBuffSize: 128 KB:
- memory_usage += 128 * 1024;
- // - stream->inBuffSize: 2048 KB:
- memory_usage += 2048 * 1024;
- } else {
- // We try to approximate the ZSTD_sizeof_DStream(ZSTD_DStream *stream)
- // function here. This function uses the following fields to make its
- // estimate:
- // - sizeof(ZSTD_DStream): Around 208 bytes on a 64-bit machine:
- memory_usage += 208;
- // - ZSTD_sizeof_DCtx(stream->dctx): Around 150 KB.
- memory_usage += 150 * 1024;
- // - ZSTD_sizeof_DDict(stream->ddictLocal): Unused in Tor: 0 bytes.
- // - stream->inBuffSize: 0 KB.
- // - stream->outBuffSize: 0 KB.
- }
- return memory_usage;
- }
- #endif /* defined(HAVE_ZSTD) */
- /** Construct and return a tor_zstd_compress_state_t object using
- * <b>method</b>. If <b>compress</b>, it's for compression; otherwise it's for
- * decompression. */
- tor_zstd_compress_state_t *
- tor_zstd_compress_new(int compress,
- compress_method_t method,
- compression_level_t level)
- {
- tor_assert(method == ZSTD_METHOD);
- #ifdef HAVE_ZSTD
- const int preset = memory_level(level);
- tor_zstd_compress_state_t *result;
- size_t retval;
- result = tor_malloc_zero(sizeof(tor_zstd_compress_state_t));
- result->compress = compress;
- result->allocation = tor_zstd_state_size_precalc(compress, preset);
- if (compress) {
- result->u.compress_stream = ZSTD_createCStream();
- if (result->u.compress_stream == NULL) {
- // LCOV_EXCL_START
- log_warn(LD_GENERAL, "Error while creating Zstandard compression "
- "stream");
- goto err;
- // LCOV_EXCL_STOP
- }
- retval = ZSTD_initCStream(result->u.compress_stream, preset);
- if (ZSTD_isError(retval)) {
- // LCOV_EXCL_START
- log_warn(LD_GENERAL, "Zstandard stream initialization error: %s",
- ZSTD_getErrorName(retval));
- goto err;
- // LCOV_EXCL_STOP
- }
- } else {
- result->u.decompress_stream = ZSTD_createDStream();
- if (result->u.decompress_stream == NULL) {
- // LCOV_EXCL_START
- log_warn(LD_GENERAL, "Error while creating Zstandard decompression "
- "stream");
- goto err;
- // LCOV_EXCL_STOP
- }
- retval = ZSTD_initDStream(result->u.decompress_stream);
- if (ZSTD_isError(retval)) {
- // LCOV_EXCL_START
- log_warn(LD_GENERAL, "Zstandard stream initialization error: %s",
- ZSTD_getErrorName(retval));
- goto err;
- // LCOV_EXCL_STOP
- }
- }
- atomic_counter_add(&total_zstd_allocation, result->allocation);
- return result;
- err:
- // LCOV_EXCL_START
- if (compress) {
- ZSTD_freeCStream(result->u.compress_stream);
- } else {
- ZSTD_freeDStream(result->u.decompress_stream);
- }
- tor_free(result);
- return NULL;
- // LCOV_EXCL_STOP
- #else /* !(defined(HAVE_ZSTD)) */
- (void)compress;
- (void)method;
- (void)level;
- return NULL;
- #endif /* defined(HAVE_ZSTD) */
- }
- /** Compress/decompress some bytes using <b>state</b>. Read up to
- * *<b>in_len</b> bytes from *<b>in</b>, and write up to *<b>out_len</b> bytes
- * to *<b>out</b>, adjusting the values as we go. If <b>finish</b> is true,
- * we've reached the end of the input.
- *
- * Return TOR_COMPRESS_DONE if we've finished the entire
- * compression/decompression.
- * Return TOR_COMPRESS_OK if we're processed everything from the input.
- * Return TOR_COMPRESS_BUFFER_FULL if we're out of space on <b>out</b>.
- * Return TOR_COMPRESS_ERROR if the stream is corrupt.
- */
- tor_compress_output_t
- tor_zstd_compress_process(tor_zstd_compress_state_t *state,
- char **out, size_t *out_len,
- const char **in, size_t *in_len,
- int finish)
- {
- #ifdef HAVE_ZSTD
- size_t retval;
- tor_assert(state != NULL);
- tor_assert(*in_len <= UINT_MAX);
- tor_assert(*out_len <= UINT_MAX);
- ZSTD_inBuffer input = { *in, *in_len, 0 };
- ZSTD_outBuffer output = { *out, *out_len, 0 };
- if (BUG(finish == 0 && state->have_called_end)) {
- finish = 1;
- }
- if (state->compress) {
- if (! state->have_called_end)
- retval = ZSTD_compressStream(state->u.compress_stream,
- &output, &input);
- else
- retval = 0;
- } else {
- retval = ZSTD_decompressStream(state->u.decompress_stream,
- &output, &input);
- }
- state->input_so_far += input.pos;
- state->output_so_far += output.pos;
- *out = (char *)output.dst + output.pos;
- *out_len = output.size - output.pos;
- *in = (char *)input.src + input.pos;
- *in_len = input.size - input.pos;
- if (! state->compress &&
- tor_compress_is_compression_bomb(state->input_so_far,
- state->output_so_far)) {
- log_warn(LD_DIR, "Possible compression bomb; abandoning stream.");
- return TOR_COMPRESS_ERROR;
- }
- if (ZSTD_isError(retval)) {
- log_warn(LD_GENERAL, "Zstandard %s didn't finish: %s.",
- state->compress ? "compression" : "decompression",
- ZSTD_getErrorName(retval));
- return TOR_COMPRESS_ERROR;
- }
- if (state->compress && !state->have_called_end) {
- retval = ZSTD_flushStream(state->u.compress_stream, &output);
- *out = (char *)output.dst + output.pos;
- *out_len = output.size - output.pos;
- if (ZSTD_isError(retval)) {
- log_warn(LD_GENERAL, "Zstandard compression unable to flush: %s.",
- ZSTD_getErrorName(retval));
- return TOR_COMPRESS_ERROR;
- }
- // ZSTD_flushStream returns 0 if the frame is done, or >0 if it
- // is incomplete.
- if (retval > 0) {
- return TOR_COMPRESS_BUFFER_FULL;
- }
- }
- if (!finish) {
- // The caller says we're not done with the input, so no need to write an
- // epilogue.
- return TOR_COMPRESS_OK;
- } else if (state->compress) {
- if (*in_len) {
- // We say that we're not done with the input, so we can't write an
- // epilogue.
- return TOR_COMPRESS_OK;
- }
- retval = ZSTD_endStream(state->u.compress_stream, &output);
- state->have_called_end = 1;
- *out = (char *)output.dst + output.pos;
- *out_len = output.size - output.pos;
- if (ZSTD_isError(retval)) {
- log_warn(LD_GENERAL, "Zstandard compression unable to write "
- "epilogue: %s.",
- ZSTD_getErrorName(retval));
- return TOR_COMPRESS_ERROR;
- }
- // endStream returns the number of bytes that is needed to write the
- // epilogue.
- if (retval > 0)
- return TOR_COMPRESS_BUFFER_FULL;
- return TOR_COMPRESS_DONE;
- } else /* if (!state->compress) */ {
- // ZSTD_decompressStream returns 0 if the frame is done, or >0 if it
- // is incomplete.
- // We check this above.
- tor_assert_nonfatal(!ZSTD_isError(retval));
- // Start a new frame if this frame is done
- if (retval == 0)
- return TOR_COMPRESS_DONE;
- // Don't check out_len, it might have some space left if the next output
- // chunk is larger than the remaining space
- else if (*in_len > 0)
- return TOR_COMPRESS_BUFFER_FULL;
- else
- return TOR_COMPRESS_OK;
- }
- #else /* !(defined(HAVE_ZSTD)) */
- (void)state;
- (void)out;
- (void)out_len;
- (void)in;
- (void)in_len;
- (void)finish;
- return TOR_COMPRESS_ERROR;
- #endif /* defined(HAVE_ZSTD) */
- }
- /** Deallocate <b>state</b>. */
- void
- tor_zstd_compress_free_(tor_zstd_compress_state_t *state)
- {
- if (state == NULL)
- return;
- atomic_counter_sub(&total_zstd_allocation, state->allocation);
- #ifdef HAVE_ZSTD
- if (state->compress) {
- ZSTD_freeCStream(state->u.compress_stream);
- } else {
- ZSTD_freeDStream(state->u.decompress_stream);
- }
- #endif /* defined(HAVE_ZSTD) */
- tor_free(state);
- }
- /** Return the approximate number of bytes allocated for <b>state</b>. */
- size_t
- tor_zstd_compress_state_size(const tor_zstd_compress_state_t *state)
- {
- tor_assert(state != NULL);
- return state->allocation;
- }
- /** Return the approximate number of bytes allocated for all Zstandard
- * states. */
- size_t
- tor_zstd_get_total_allocation(void)
- {
- return atomic_counter_get(&total_zstd_allocation);
- }
- /** Initialize the zstd module */
- void
- tor_zstd_init(void)
- {
- atomic_counter_init(&total_zstd_allocation);
- }
|