blob: 3cf54d11f75ea50b1761c78ddd522f79242e78a4 [file] [log] [blame]
Brandon Maier4b9b25d2023-01-12 10:27:45 -06001/* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */
Marek Behún8509f222019-04-29 22:40:44 +02002/*
Brandon Maier4b9b25d2023-01-12 10:27:45 -06003 * Copyright (c) Yann Collet, Facebook, Inc.
Marek Behún8509f222019-04-29 22:40:44 +02004 * All rights reserved.
Brandon Maier4b9b25d2023-01-12 10:27:45 -06005 *
6 * This source code is licensed under both the BSD-style license (found in the
7 * LICENSE file in the root directory of https://github.com/facebook/zstd) and
8 * the GPLv2 (found in the COPYING file in the root directory of
9 * https://github.com/facebook/zstd). You may select, at your option, one of the
10 * above-listed licenses.
Marek Behún8509f222019-04-29 22:40:44 +020011 */
12
Brandon Maier4b9b25d2023-01-12 10:27:45 -060013#ifndef LINUX_ZSTD_H
14#define LINUX_ZSTD_H
Marek Behún8509f222019-04-29 22:40:44 +020015
16/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -060017 * This is a kernel-style API that wraps the upstream zstd API, which cannot be
18 * used directly because the symbols aren't exported. It exposes the minimal
19 * functionality which is currently required by users of zstd in the kernel.
20 * Expose extra functions from lib/zstd/zstd.h as needed.
Marek Behún8509f222019-04-29 22:40:44 +020021 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -060022
23/* ====== Dependency ====== */
24#include <linux/types.h>
25#include <linux/zstd_errors.h>
26#include <linux/zstd_lib.h>
27
28/* ====== Helper Functions ====== */
29/**
30 * zstd_compress_bound() - maximum compressed size in worst case scenario
31 * @src_size: The size of the data to compress.
32 *
33 * Return: The maximum compressed size in the worst case scenario.
34 */
35size_t zstd_compress_bound(size_t src_size);
Marek Behún8509f222019-04-29 22:40:44 +020036
37/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -060038 * zstd_is_error() - tells if a size_t function result is an error code
Marek Behún8509f222019-04-29 22:40:44 +020039 * @code: The function result to check for error.
40 *
41 * Return: Non-zero iff the code is an error.
42 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -060043unsigned int zstd_is_error(size_t code);
Marek Behún8509f222019-04-29 22:40:44 +020044
45/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -060046 * enum zstd_error_code - zstd error codes
Marek Behún8509f222019-04-29 22:40:44 +020047 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -060048typedef ZSTD_ErrorCode zstd_error_code;
Marek Behún8509f222019-04-29 22:40:44 +020049
50/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -060051 * zstd_get_error_code() - translates an error function result to an error code
52 * @code: The function result for which zstd_is_error(code) is true.
53 *
54 * Return: A unique error code for this error.
55 */
56zstd_error_code zstd_get_error_code(size_t code);
57
58/**
59 * zstd_get_error_name() - translates an error function result to a string
60 * @code: The function result for which zstd_is_error(code) is true.
61 *
62 * Return: An error string corresponding to the error code.
63 */
64const char *zstd_get_error_name(size_t code);
65
66/**
67 * zstd_min_clevel() - minimum allowed compression level
68 *
69 * Return: The minimum allowed compression level.
70 */
71int zstd_min_clevel(void);
72
73/**
74 * zstd_max_clevel() - maximum allowed compression level
75 *
76 * Return: The maximum allowed compression level.
77 */
78int zstd_max_clevel(void);
79
80/* ====== Parameter Selection ====== */
81
82/**
83 * enum zstd_strategy - zstd compression search strategy
84 *
85 * From faster to stronger. See zstd_lib.h.
86 */
87typedef ZSTD_strategy zstd_strategy;
88
89/**
90 * struct zstd_compression_parameters - zstd compression parameters
Marek Behún8509f222019-04-29 22:40:44 +020091 * @windowLog: Log of the largest match distance. Larger means more
92 * compression, and more memory needed during decompression.
Brandon Maier4b9b25d2023-01-12 10:27:45 -060093 * @chainLog: Fully searched segment. Larger means more compression,
94 * slower, and more memory (useless for fast).
Marek Behún8509f222019-04-29 22:40:44 +020095 * @hashLog: Dispatch table. Larger means more compression,
96 * slower, and more memory.
97 * @searchLog: Number of searches. Larger means more compression and slower.
98 * @searchLength: Match length searched. Larger means faster decompression,
99 * sometimes less compression.
100 * @targetLength: Acceptable match size for optimal parser (only). Larger means
101 * more compression, and slower.
102 * @strategy: The zstd compression strategy.
Marek Behún8509f222019-04-29 22:40:44 +0200103 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600104 * See zstd_lib.h.
Marek Behún8509f222019-04-29 22:40:44 +0200105 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600106typedef ZSTD_compressionParameters zstd_compression_parameters;
Marek Behún8509f222019-04-29 22:40:44 +0200107
108/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600109 * struct zstd_frame_parameters - zstd frame parameters
110 * @contentSizeFlag: Controls whether content size will be present in the
111 * frame header (when known).
112 * @checksumFlag: Controls whether a 32-bit checksum is generated at the
113 * end of the frame for error detection.
114 * @noDictIDFlag: Controls whether dictID will be saved into the frame
115 * header when using dictionary compression.
116 *
117 * The default value is all fields set to 0. See zstd_lib.h.
118 */
119typedef ZSTD_frameParameters zstd_frame_parameters;
120
121/**
122 * struct zstd_parameters - zstd parameters
Marek Behún8509f222019-04-29 22:40:44 +0200123 * @cParams: The compression parameters.
124 * @fParams: The frame parameters.
125 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600126typedef ZSTD_parameters zstd_parameters;
Marek Behún8509f222019-04-29 22:40:44 +0200127
128/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600129 * zstd_get_params() - returns zstd_parameters for selected level
130 * @level: The compression level
131 * @estimated_src_size: The estimated source size to compress or 0
132 * if unknown.
Marek Behún8509f222019-04-29 22:40:44 +0200133 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600134 * Return: The selected zstd_parameters.
Marek Behún8509f222019-04-29 22:40:44 +0200135 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600136zstd_parameters zstd_get_params(int level,
137 unsigned long long estimated_src_size);
138
139/* ====== Single-pass Compression ====== */
140
141typedef ZSTD_CCtx zstd_cctx;
Marek Behún8509f222019-04-29 22:40:44 +0200142
143/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600144 * zstd_cctx_workspace_bound() - max memory needed to initialize a zstd_cctx
145 * @parameters: The compression parameters to be used.
Marek Behún8509f222019-04-29 22:40:44 +0200146 *
147 * If multiple compression parameters might be used, the caller must call
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600148 * zstd_cctx_workspace_bound() for each set of parameters and use the maximum
Marek Behún8509f222019-04-29 22:40:44 +0200149 * size.
150 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600151 * Return: A lower bound on the size of the workspace that is passed to
152 * zstd_init_cctx().
Marek Behún8509f222019-04-29 22:40:44 +0200153 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600154size_t zstd_cctx_workspace_bound(const zstd_compression_parameters *parameters);
Marek Behún8509f222019-04-29 22:40:44 +0200155
156/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600157 * zstd_init_cctx() - initialize a zstd compression context
158 * @workspace: The workspace to emplace the context into. It must outlive
159 * the returned context.
160 * @workspace_size: The size of workspace. Use zstd_cctx_workspace_bound() to
161 * determine how large the workspace must be.
Marek Behún8509f222019-04-29 22:40:44 +0200162 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600163 * Return: A zstd compression context or NULL on error.
Marek Behún8509f222019-04-29 22:40:44 +0200164 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600165zstd_cctx *zstd_init_cctx(void *workspace, size_t workspace_size);
Marek Behún8509f222019-04-29 22:40:44 +0200166
167/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600168 * zstd_compress_cctx() - compress src into dst with the initialized parameters
169 * @cctx: The context. Must have been initialized with zstd_init_cctx().
170 * @dst: The buffer to compress src into.
171 * @dst_capacity: The size of the destination buffer. May be any size, but
172 * ZSTD_compressBound(srcSize) is guaranteed to be large enough.
173 * @src: The data to compress.
174 * @src_size: The size of the data to compress.
175 * @parameters: The compression parameters to be used.
Marek Behún8509f222019-04-29 22:40:44 +0200176 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600177 * Return: The compressed size or an error, which can be checked using
178 * zstd_is_error().
Marek Behún8509f222019-04-29 22:40:44 +0200179 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600180size_t zstd_compress_cctx(zstd_cctx *cctx, void *dst, size_t dst_capacity,
181 const void *src, size_t src_size, const zstd_parameters *parameters);
182
183/* ====== Single-pass Decompression ====== */
184
185typedef ZSTD_DCtx zstd_dctx;
Marek Behún8509f222019-04-29 22:40:44 +0200186
187/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600188 * zstd_dctx_workspace_bound() - max memory needed to initialize a zstd_dctx
Marek Behún8509f222019-04-29 22:40:44 +0200189 *
190 * Return: A lower bound on the size of the workspace that is passed to
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600191 * zstd_init_dctx().
Marek Behún8509f222019-04-29 22:40:44 +0200192 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600193size_t zstd_dctx_workspace_bound(void);
Marek Behún8509f222019-04-29 22:40:44 +0200194
195/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600196 * zstd_init_dctx() - initialize a zstd decompression context
197 * @workspace: The workspace to emplace the context into. It must outlive
198 * the returned context.
199 * @workspace_size: The size of workspace. Use zstd_dctx_workspace_bound() to
200 * determine how large the workspace must be.
Marek Behún8509f222019-04-29 22:40:44 +0200201 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600202 * Return: A zstd decompression context or NULL on error.
Marek Behún8509f222019-04-29 22:40:44 +0200203 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600204zstd_dctx *zstd_init_dctx(void *workspace, size_t workspace_size);
Marek Behún8509f222019-04-29 22:40:44 +0200205
206/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600207 * zstd_decompress_dctx() - decompress zstd compressed src into dst
208 * @dctx: The decompression context.
209 * @dst: The buffer to decompress src into.
210 * @dst_capacity: The size of the destination buffer. Must be at least as large
211 * as the decompressed size. If the caller cannot upper bound the
212 * decompressed size, then it's better to use the streaming API.
213 * @src: The zstd compressed data to decompress. Multiple concatenated
214 * frames and skippable frames are allowed.
215 * @src_size: The exact size of the data to decompress.
Marek Behún8509f222019-04-29 22:40:44 +0200216 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600217 * Return: The decompressed size or an error, which can be checked using
218 * zstd_is_error().
Marek Behún8509f222019-04-29 22:40:44 +0200219 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600220size_t zstd_decompress_dctx(zstd_dctx *dctx, void *dst, size_t dst_capacity,
221 const void *src, size_t src_size);
Marek Behún8509f222019-04-29 22:40:44 +0200222
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600223/* ====== Streaming Buffers ====== */
Marek Behún8509f222019-04-29 22:40:44 +0200224
225/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600226 * struct zstd_in_buffer - input buffer for streaming
Marek Behún8509f222019-04-29 22:40:44 +0200227 * @src: Start of the input buffer.
228 * @size: Size of the input buffer.
229 * @pos: Position where reading stopped. Will be updated.
230 * Necessarily 0 <= pos <= size.
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600231 *
232 * See zstd_lib.h.
Marek Behún8509f222019-04-29 22:40:44 +0200233 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600234typedef ZSTD_inBuffer zstd_in_buffer;
Marek Behún8509f222019-04-29 22:40:44 +0200235
236/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600237 * struct zstd_out_buffer - output buffer for streaming
Marek Behún8509f222019-04-29 22:40:44 +0200238 * @dst: Start of the output buffer.
239 * @size: Size of the output buffer.
240 * @pos: Position where writing stopped. Will be updated.
241 * Necessarily 0 <= pos <= size.
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600242 *
243 * See zstd_lib.h.
Marek Behún8509f222019-04-29 22:40:44 +0200244 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600245typedef ZSTD_outBuffer zstd_out_buffer;
Marek Behún8509f222019-04-29 22:40:44 +0200246
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600247/* ====== Streaming Compression ====== */
Marek Behún8509f222019-04-29 22:40:44 +0200248
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600249typedef ZSTD_CStream zstd_cstream;
Marek Behún8509f222019-04-29 22:40:44 +0200250
251/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600252 * zstd_cstream_workspace_bound() - memory needed to initialize a zstd_cstream
253 * @cparams: The compression parameters to be used for compression.
Marek Behún8509f222019-04-29 22:40:44 +0200254 *
255 * Return: A lower bound on the size of the workspace that is passed to
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600256 * zstd_init_cstream().
Marek Behún8509f222019-04-29 22:40:44 +0200257 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600258size_t zstd_cstream_workspace_bound(const zstd_compression_parameters *cparams);
Marek Behún8509f222019-04-29 22:40:44 +0200259
260/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600261 * zstd_init_cstream() - initialize a zstd streaming compression context
262 * @parameters The zstd parameters to use for compression.
263 * @pledged_src_size: If params.fParams.contentSizeFlag == 1 then the caller
264 * must pass the source size (zero means empty source).
265 * Otherwise, the caller may optionally pass the source
266 * size, or zero if unknown.
267 * @workspace: The workspace to emplace the context into. It must outlive
268 * the returned context.
269 * @workspace_size: The size of workspace.
270 * Use zstd_cstream_workspace_bound(params->cparams) to
271 * determine how large the workspace must be.
Marek Behún8509f222019-04-29 22:40:44 +0200272 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600273 * Return: The zstd streaming compression context or NULL on error.
Marek Behún8509f222019-04-29 22:40:44 +0200274 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600275zstd_cstream *zstd_init_cstream(const zstd_parameters *parameters,
276 unsigned long long pledged_src_size, void *workspace, size_t workspace_size);
Marek Behún8509f222019-04-29 22:40:44 +0200277
278/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600279 * zstd_reset_cstream() - reset the context using parameters from creation
280 * @cstream: The zstd streaming compression context to reset.
281 * @pledged_src_size: Optionally the source size, or zero if unknown.
Marek Behún8509f222019-04-29 22:40:44 +0200282 *
283 * Resets the context using the parameters from creation. Skips dictionary
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600284 * loading, since it can be reused. If `pledged_src_size` is non-zero the frame
Marek Behún8509f222019-04-29 22:40:44 +0200285 * content size is always written into the frame header.
286 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600287 * Return: Zero or an error, which can be checked using
288 * zstd_is_error().
Marek Behún8509f222019-04-29 22:40:44 +0200289 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600290size_t zstd_reset_cstream(zstd_cstream *cstream,
291 unsigned long long pledged_src_size);
292
Marek Behún8509f222019-04-29 22:40:44 +0200293/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600294 * zstd_compress_stream() - streaming compress some of input into output
295 * @cstream: The zstd streaming compression context.
296 * @output: Destination buffer. `output->pos` is updated to indicate how much
297 * compressed data was written.
298 * @input: Source buffer. `input->pos` is updated to indicate how much data
299 * was read. Note that it may not consume the entire input, in which
300 * case `input->pos < input->size`, and it's up to the caller to
301 * present remaining data again.
Marek Behún8509f222019-04-29 22:40:44 +0200302 *
303 * The `input` and `output` buffers may be any size. Guaranteed to make some
304 * forward progress if `input` and `output` are not empty.
305 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600306 * Return: A hint for the number of bytes to use as the input for the next
307 * function call or an error, which can be checked using
308 * zstd_is_error().
Marek Behún8509f222019-04-29 22:40:44 +0200309 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600310size_t zstd_compress_stream(zstd_cstream *cstream, zstd_out_buffer *output,
311 zstd_in_buffer *input);
312
Marek Behún8509f222019-04-29 22:40:44 +0200313/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600314 * zstd_flush_stream() - flush internal buffers into output
315 * @cstream: The zstd streaming compression context.
316 * @output: Destination buffer. `output->pos` is updated to indicate how much
317 * compressed data was written.
Marek Behún8509f222019-04-29 22:40:44 +0200318 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600319 * zstd_flush_stream() must be called until it returns 0, meaning all the data
320 * has been flushed. Since zstd_flush_stream() causes a block to be ended,
Marek Behún8509f222019-04-29 22:40:44 +0200321 * calling it too often will degrade the compression ratio.
322 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600323 * Return: The number of bytes still present within internal buffers or an
324 * error, which can be checked using zstd_is_error().
Marek Behún8509f222019-04-29 22:40:44 +0200325 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600326size_t zstd_flush_stream(zstd_cstream *cstream, zstd_out_buffer *output);
327
Marek Behún8509f222019-04-29 22:40:44 +0200328/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600329 * zstd_end_stream() - flush internal buffers into output and end the frame
330 * @cstream: The zstd streaming compression context.
331 * @output: Destination buffer. `output->pos` is updated to indicate how much
332 * compressed data was written.
Marek Behún8509f222019-04-29 22:40:44 +0200333 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600334 * zstd_end_stream() must be called until it returns 0, meaning all the data has
Marek Behún8509f222019-04-29 22:40:44 +0200335 * been flushed and the frame epilogue has been written.
336 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600337 * Return: The number of bytes still present within internal buffers or an
338 * error, which can be checked using zstd_is_error().
Marek Behún8509f222019-04-29 22:40:44 +0200339 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600340size_t zstd_end_stream(zstd_cstream *cstream, zstd_out_buffer *output);
341
342/* ====== Streaming Decompression ====== */
343
344typedef ZSTD_DStream zstd_dstream;
Marek Behún8509f222019-04-29 22:40:44 +0200345
346/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600347 * zstd_dstream_workspace_bound() - memory needed to initialize a zstd_dstream
348 * @max_window_size: The maximum window size allowed for compressed frames.
Marek Behún8509f222019-04-29 22:40:44 +0200349 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600350 * Return: A lower bound on the size of the workspace that is passed
351 * to zstd_init_dstream().
Marek Behún8509f222019-04-29 22:40:44 +0200352 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600353size_t zstd_dstream_workspace_bound(size_t max_window_size);
Marek Behún8509f222019-04-29 22:40:44 +0200354
355/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600356 * zstd_init_dstream() - initialize a zstd streaming decompression context
357 * @max_window_size: The maximum window size allowed for compressed frames.
358 * @workspace: The workspace to emplace the context into. It must outlive
359 * the returned context.
360 * @workspaceSize: The size of workspace.
361 * Use zstd_dstream_workspace_bound(max_window_size) to
362 * determine how large the workspace must be.
Marek Behún8509f222019-04-29 22:40:44 +0200363 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600364 * Return: The zstd streaming decompression context.
Marek Behún8509f222019-04-29 22:40:44 +0200365 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600366zstd_dstream *zstd_init_dstream(size_t max_window_size, void *workspace,
367 size_t workspace_size);
Marek Behún8509f222019-04-29 22:40:44 +0200368
369/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600370 * zstd_reset_dstream() - reset the context using parameters from creation
371 * @dstream: The zstd streaming decompression context to reset.
Marek Behún8509f222019-04-29 22:40:44 +0200372 *
373 * Resets the context using the parameters from creation. Skips dictionary
374 * loading, since it can be reused.
375 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600376 * Return: Zero or an error, which can be checked using zstd_is_error().
Marek Behún8509f222019-04-29 22:40:44 +0200377 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600378size_t zstd_reset_dstream(zstd_dstream *dstream);
379
Marek Behún8509f222019-04-29 22:40:44 +0200380/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600381 * zstd_decompress_stream() - streaming decompress some of input into output
382 * @dstream: The zstd streaming decompression context.
383 * @output: Destination buffer. `output.pos` is updated to indicate how much
384 * decompressed data was written.
385 * @input: Source buffer. `input.pos` is updated to indicate how much data was
386 * read. Note that it may not consume the entire input, in which case
387 * `input.pos < input.size`, and it's up to the caller to present
388 * remaining data again.
Marek Behún8509f222019-04-29 22:40:44 +0200389 *
390 * The `input` and `output` buffers may be any size. Guaranteed to make some
391 * forward progress if `input` and `output` are not empty.
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600392 * zstd_decompress_stream() will not consume the last byte of the frame until
Marek Behún8509f222019-04-29 22:40:44 +0200393 * the entire frame is flushed.
394 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600395 * Return: Returns 0 iff a frame is completely decoded and fully flushed.
396 * Otherwise returns a hint for the number of bytes to use as the
397 * input for the next function call or an error, which can be checked
398 * using zstd_is_error(). The size hint will never load more than the
399 * frame.
Marek Behún8509f222019-04-29 22:40:44 +0200400 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600401size_t zstd_decompress_stream(zstd_dstream *dstream, zstd_out_buffer *output,
402 zstd_in_buffer *input);
403
404/* ====== Frame Inspection Functions ====== */
Marek Behún8509f222019-04-29 22:40:44 +0200405
406/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600407 * zstd_find_frame_compressed_size() - returns the size of a compressed frame
408 * @src: Source buffer. It should point to the start of a zstd encoded
409 * frame or a skippable frame.
410 * @src_size: The size of the source buffer. It must be at least as large as the
411 * size of the frame.
Marek Behún8509f222019-04-29 22:40:44 +0200412 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600413 * Return: The compressed size of the frame pointed to by `src` or an error,
414 * which can be check with zstd_is_error().
415 * Suitable to pass to ZSTD_decompress() or similar functions.
Marek Behún8509f222019-04-29 22:40:44 +0200416 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600417size_t zstd_find_frame_compressed_size(const void *src, size_t src_size);
Marek Behún8509f222019-04-29 22:40:44 +0200418
419/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600420 * struct zstd_frame_params - zstd frame parameters stored in the frame header
421 * @frameContentSize: The frame content size, or ZSTD_CONTENTSIZE_UNKNOWN if not
422 * present.
Marek Behún8509f222019-04-29 22:40:44 +0200423 * @windowSize: The window size, or 0 if the frame is a skippable frame.
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600424 * @blockSizeMax: The maximum block size.
425 * @frameType: The frame type (zstd or skippable)
426 * @headerSize: The size of the frame header.
Marek Behún8509f222019-04-29 22:40:44 +0200427 * @dictID: The dictionary id, or 0 if not present.
428 * @checksumFlag: Whether a checksum was used.
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600429 *
430 * See zstd_lib.h.
Marek Behún8509f222019-04-29 22:40:44 +0200431 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600432typedef ZSTD_frameHeader zstd_frame_header;
Marek Behún8509f222019-04-29 22:40:44 +0200433
434/**
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600435 * zstd_get_frame_header() - extracts parameters from a zstd or skippable frame
436 * @params: On success the frame parameters are written here.
437 * @src: The source buffer. It must point to a zstd or skippable frame.
438 * @src_size: The size of the source buffer.
Marek Behún8509f222019-04-29 22:40:44 +0200439 *
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600440 * Return: 0 on success. If more data is required it returns how many bytes
441 * must be provided to make forward progress. Otherwise it returns
442 * an error, which can be checked using zstd_is_error().
Marek Behún8509f222019-04-29 22:40:44 +0200443 */
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600444size_t zstd_get_frame_header(zstd_frame_header *params, const void *src,
445 size_t src_size);
Marek Behún8509f222019-04-29 22:40:44 +0200446
Simon Glass94d0a2e2021-09-25 07:03:09 -0600447struct abuf;
448
449/**
450 * zstd_decompress() - Decompress Zstandard data
451 *
452 * @in: Input buffer to decompress
453 * @out: Output buffer to hold the results (must be large enough)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100454 * Return: size of the decompressed data, or -ve on error
Simon Glass94d0a2e2021-09-25 07:03:09 -0600455 */
456int zstd_decompress(struct abuf *in, struct abuf *out);
457
Brandon Maier4b9b25d2023-01-12 10:27:45 -0600458#endif /* LINUX_ZSTD_H */